/*** ====================================================================
	Reset
====================================================================

 ***/
* {
	margin: 0px;
	padding: 0px;
	border: none;
	outline: none;
}


/*** 

====================================================================
	Global Settings
====================================================================

 ***/


body {
	font-size: 16px;
	color: #74757b;
	line-height: 26px;
	font-weight: 400;
	background: #e6edf4;
	font-family: 'Inter', sans-serif;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center top;
	-webkit-font-smoothing: antialiased;
}

@media (min-width:1200px) {
	.container {
		max-width: 1200px;
		padding: 0px 15px;
	}
}

.large-container {
	max-width: 1550px;
	padding: 0px 15px;
	margin: 0 auto;
}

.container-fluid {
	padding: 0 15px;
}

.auto-container {
	position: static;
	max-width: 1200px;
	padding: 0px 15px;
	margin: 0 auto;
}

.small-container {
	max-width: 680px;
	margin: 0 auto;
}

.boxed_wrapper {
	position: relative;
	margin: 0 auto;
	overflow: hidden !important;
	width: 100%;
	min-width: 300px;
	background: #e6edf4;
}


a {
	text-decoration: none;
	transition: all 500ms ease;
	-moz-transition: all 500ms ease;
	-webkit-transition: all 500ms ease;
	-ms-transition: all 500ms ease;
	-o-transition: all 500ms ease;
}

a:hover {
	text-decoration: none;
	outline: none;
}

input,
button,
select,
textarea {
	font-family: 'Inter', sans-serif;
	font-weight: 400;
	font-size: 16px;
	background: transparent;
}

::placeholder {
	color: #8e8e93;
	opacity: .58;
}

::-webkit-input-placeholder {
	color: #8e8e93;
	opacity: .58;
}

::-moz-input-placeholder {
	color: #8e8e93;
	opacity: .58;
}

::-ms-input-placeholder {
	color: #8e8e93;
	opacity: .58;
}

ul,
li {
	list-style: none;
	padding: 0px;
	margin: 0px;
}

input {
	transition: all 500ms ease;
}

button:focus,
input:focus,
textarea:focus {
	outline: none;
	box-shadow: none;
	transition: all 500ms ease;
}

p {
	position: relative;
	font-family: 'Inter', sans-serif;
	color: #74757b;
	font-weight: 400;
	margin: 0px;
	transition: all 500ms ease;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	position: relative;
	font-family: 'Lexend', sans-serif;
	color: #121113;
	margin: 0px;
	transition: all 500ms ease;
}

/* Preloader */

.handle-preloader {
	align-items: center;
	-webkit-align-items: center;
	display: flex;
	display: -ms-flexbox;
	height: 100%;
	justify-content: center;
	-webkit-justify-content: center;
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	z-index: 9999999;
}

.preloader-close {
	position: fixed;
	z-index: 99999999;
	font-size: 26px;
	background: #fff;
	width: 40px;
	height: 40px;
	line-height: 36px;
	text-align: center;
	border-radius: 50%;
	cursor: pointer;
	right: 30px;
	top: 30px;
}

.handle-preloader .animation-preloader {
	position: absolute;
	z-index: 100;
}

.handle-preloader .animation-preloader .spinner {
	animation: spinner 1s infinite linear;
	border-radius: 50%;
	height: 150px;
	margin: 0 auto 45px auto;
	width: 150px;
}

.handle-preloader .animation-preloader .txt-loading {
	text-align: center;
	user-select: none;
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:before {
	animation: letters-loading 4s infinite;
	content: attr(data-text-preloader);
	left: 0;
	opacity: 0;
	top: 0;
	position: absolute;
}

.handle-preloader .animation-preloader .txt-loading .letters-loading {
	font-family: "Lexend", sans-serif;
	font-weight: 400;
	letter-spacing: 15px;
	display: inline-block;
	position: relative;
	font-size: 70px;
	line-height: 70px;
	text-transform: uppercase;
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(2):before {
	animation-delay: 0.2s;
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(3):before {
	animation-delay: 0.4s;
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(4):before {
	animation-delay: 0.6s;
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(5):before {
	animation-delay: 0.8s;
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(6):before {
	animation-delay: 1s;
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(7):before {
	animation-delay: 1.2s;
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:nth-child(8):before {
	animation-delay: 1.4s;
}

.handle-preloader .loader-section {
	background-color: #ffffff;
	height: 100%;
	position: fixed;
	top: 0;
	width: calc(50% + 1px);
}

.preloader .loaded .animation-preloader {
	opacity: 0;
	transition: 0.3s ease-out;
}

.handle-preloader .animation-preloader .txt-loading .letters-loading {
	color: #ffffff;
}

.handle-preloader .animation-preloader .txt-loading .letters-loading:before {
	color: #ffffff;
}

.handle-preloader .animation-preloader .spinner {
	border: 3px solid #ffffff;
	border-top-color: rgba(255, 255, 255, 0.5);
}

/* AnimaciÃ³n del preloader */
@keyframes spinner {
	to {
		transform: rotateZ(360deg);
	}
}

@keyframes letters-loading {

	0%,
	75%,
	100% {
		opacity: 0;
		transform: rotateY(-90deg);
	}

	25%,
	50% {
		opacity: 1;
		transform: rotateY(0deg);
	}
}

@media screen and (max-width: 767px) {
	.handle-preloader .animation-preloader .spinner {
		height: 8em;
		width: 8em;
	}
}

@media screen and (max-width: 500px) {
	.handle-preloader .animation-preloader .spinner {
		height: 7em;
		width: 7em;
	}

	.handle-preloader .animation-preloader .txt-loading .letters-loading {
		font-size: 40px;
		letter-spacing: 10px;
	}
}


.centred {
	text-align: center;
}

.pull-left {
	float: left;
}

.pull-right {
	float: right;
}


figure {
	margin: 0px;
}

img {
	display: inline-block;
	max-width: 100%;
	height: auto;
	transition-delay: .1s;
	transition-timing-function: ease-in-out;
	transition-duration: .7s;
	transition-property: all;
}

/** button **/


.theme-btn {
	position: relative;
	display: inline-block;
	overflow: hidden;
	vertical-align: middle;
	font-size: 14px;
	line-height: 26px;
	font-weight: 600;
	font-family: 'Lexend', sans-serif;
	text-align: center;
	padding: 12px 38px;
	text-transform: uppercase;
	z-index: 1;
	transition: all 500ms ease;
}

.theme-btn.btn-one {
	color: #121113;
}

.theme-btn.btn-two {
	background: #121113;
	color: #fff;
}

.theme-btn.btn-two:hover {
	color: #121113;
}

.theme-btn.btn-two:before {
	opacity: 1;
}

.theme-btn:before {
	position: absolute;
	content: '';
	width: 0%;
	height: 100%;
	right: 0px;
	top: 0px;
	opacity: 0.1;
	z-index: -1;
	transition: all 500ms ease;
}

.theme-btn.btn-one:before {
	background: #000;
}

.theme-btn:hover:before {
	width: 100%;
	left: 0px;
}

.pagination {
	position: relative;
	display: block;
}

.pagination li {
	position: relative;
	display: inline-block;
	margin: 0px 6px;
}

.pagination li:first-child {
	transform: rotate(180deg);
}

.pagination li a {
	position: relative;
	display: inline-block;
	font-size: 20px;
	font-weight: 500;
	height: 52px;
	width: 52px;
	line-height: 52px;
	border: 1px solid #e8eaed;
	font-family: 'Lexend', sans-serif;
	text-align: center;
	color: #a6a7ab;
	z-index: 1;
	transition: all 500ms ease;
}

.pagination li a:hover,
.pagination li a.current {
	color: #121113;
}

.sec-pad {
	padding: 115px 0px 120px 0px;
}

.mr-0 {
	margin: 0px !important;
}

/** scroll-to-top **/

.scroll-to-top {
	position: fixed;
	right: 0px;
	bottom: 100px;
	transform: rotate(90deg);
	z-index: 99;
}

.scroll-to-top .visible {
	visibility: visible !important;
	opacity: 1 !important;
}

.scroll-to-top .scroll-top-inner {
	opacity: 0;
	visibility: hidden;
}

.scroll-to-top .scroll-top-inner {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-transition: all cubic-bezier(.4, 0, .2, 1) .4s;
	-o-transition: all cubic-bezier(.4, 0, .2, 1) .4s;
	transition: all cubic-bezier(.4, 0, .2, 1) .4s;
}

.scroll-to-top .scroll-bar {
	width: 50px;
	height: 2px;
	margin-right: 10px;
	position: relative;
}

.scroll-to-top .scroll-bar:before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	background-color: #ff6005;
	opacity: .3;
}

.scroll-to-top .scroll-bar .bar-inner {
	position: absolute;
	top: 0;
	right: 0;
	height: 100%;
	background-color: currentColor;
}

.scroll-to-top .scroll-bar-text {
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	transition: all 500ms ease;
}

.scroll-to-top .scroll-bar-text:hover {
	transform: scale(1.1);
}



@-webkit-keyframes ripple {
	70% {
		-webkit-box-shadow: 0 0 0 30px rgba(255, 255, 255, 0);
		box-shadow: 0 0 0 30px rgba(255, 255, 255, 0);
	}

	100% {
		-webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
		box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
	}
}

@keyframes ripple {
	70% {
		-webkit-box-shadow: 0 0 0 30px rgba(255, 255, 255, 0);
		box-shadow: 0 0 0 30px rgba(255, 255, 255, 0);
	}

	100% {
		-webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
		box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
	}
}

.sec-title {
	position: relative;
	display: block;
	margin-bottom: 50px;
}

.sec-title h2 {
	position: relative;
	display: block;
	font-size: 44px;
	line-height: 56px;
	font-weight: 600;
	color: #ff9800;
}

.sec-title.light h2 {
	color: #fff !important;
}





/*** 

====================================================================
												Home-Page-One
====================================================================

***/


/** main-header **/

.main-header {
	position: relative;
	left: 0px;
	top: 0px;
	right: 0px;
	z-index: 999;
	width: 100%;
	transition: all 500ms ease;
	-moz-transition: all 500ms ease;
	-webkit-transition: all 500ms ease;
	-ms-transition: all 500ms ease;
	-o-transition: all 500ms ease;
}

.sticky-header {
	position: fixed;
	opacity: 0;
	visibility: hidden;
	left: 0px;
	top: 0px;
	width: 100%;
	z-index: 0;
	background-color: #fff;
	border-bottom: 1px solid rgba(0, 0, 0, 0.10);
	transition: all 500ms ease;
	-moz-transition: all 500ms ease;
	-webkit-transition: all 500ms ease;
	-ms-transition: all 500ms ease;
	-o-transition: all 500ms ease;
}

.fixed-header .sticky-header {
	z-index: 999;
	opacity: 1;
	visibility: visible;
	-ms-animation-name: fadeInDown;
	-moz-animation-name: fadeInDown;
	-op-animation-name: fadeInDown;
	-webkit-animation-name: fadeInDown;
	animation-name: fadeInDown;
	-ms-animation-duration: 500ms;
	-moz-animation-duration: 500ms;
	-op-animation-duration: 500ms;
	-webkit-animation-duration: 500ms;
	animation-duration: 500ms;
	-ms-animation-timing-function: linear;
	-moz-animation-timing-function: linear;
	-op-animation-timing-function: linear;
	-webkit-animation-timing-function: linear;
	animation-timing-function: linear;
	-ms-animation-iteration-count: 1;
	-moz-animation-iteration-count: 1;
	-op-animation-iteration-count: 1;
	-webkit-animation-iteration-count: 1;
	animation-iteration-count: 1;
}


/** header-top **/


.header-top {
	position: relative;
	width: 100%;
	background: linear-gradient(90deg, #ff6005 0%, #0e7039 100%);
	padding: 12px 100px;
}

.header-top .top-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.header-top .top-inner .single-item {
	position: relative;
	display: block;
	padding-left: 28px;
}

.header-top .top-inner .single-item .icon {
	position: absolute;
	left: 0px;
	top: 2px;
	font-size: 22px;
	font-weight: 400;
}

.header-top .top-inner .single-item h6 {
	display: block;
	font-size: 14px;
	line-height: 24px;
	color: #fff;
	font-weight: 600;
	text-transform: uppercase;
}

.header-top .top-inner .single-item .top-address-text {
	font-family: 'Inter', sans-serif;
	font-size: 15px;
	font-weight: 700 !important;
	letter-spacing: 0;
	text-transform: none;
}

.header-top .top-inner .single-item .top-address-text i {
	font-size: 12px;
	margin-left: 6px;
}

.header-top .top-inner .single-item h6 span {
	font-weight: 500;
	font-family: 'Inter', sans-serif;
	color: #c3c4c8;
	font-size: 16px;
	text-transform: none;
	margin-left: 8px;
}

.header-top .top-inner .single-item h6 span i {
	font-size: 10px;
	position: relative;
	font-weight: 400;
	margin-left: 6px;
	top: 1px;
}

.header-top .top-inner .share-box li {
	position: relative;
	display: inline-flex;
	align-items: center;
	float: left;
	margin-right: 14px;
	min-height: 34px;
}

.header-top .top-inner .share-box li:last-child {
	margin: 0px !important;
}

.header-top .top-inner .share-box li h6 {
	position: relative;
	display: flex;
	align-items: center;
	min-height: 34px;
	font-size: 14px;
	line-height: 1;
	color: #fff;
	font-weight: 600;
	text-transform: uppercase;
	padding-left: 28px;
}

.header-top .top-inner .share-box li h6 i {
	position: absolute;
	left: 0px;
	top: 2px;
	font-size: 22px;
	font-weight: 400;
}

.header-top .top-inner .share-box li a {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	border-radius: 50%;
	font-size: 22px;
	line-height: 1;
	color: #ffffff;
	background: rgba(255, 255, 255, 0.18);
	box-shadow: 0 6px 16px rgba(15, 23, 42, 0.16);
}

.header-top .top-inner .share-box li a.social-facebook {
	background: #1877f2;
}

.header-top .top-inner .share-box li a.social-youtube {
	background: #ff0000;
}

.header-top .top-inner .share-box li a.social-tiktok {
	background: #111111;
}

.header-top .top-inner .share-box li a.social-tiktok .top-social-image {
	display: block;
	width: 21px;
	height: 21px;
	max-width: 21px;
	max-height: 21px;
	object-fit: contain;
	filter: brightness(0) invert(1) drop-shadow(1px 0 0 #25f4ee) drop-shadow(-1px 0 0 #fe2c55);
}

.header-top .top-inner .share-box li a.social-instagram {
	background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
}

.header-top .top-inner .share-box li a:hover {}


/** header-lower **/

.main-header .outer-box {
	position: relative;
	width: 100%;
	padding: 0px 40px 0px 100px;
}

.main-header .outer-box .logo-box {
	position: relative;
	float: left;
	padding: 34.5px 0px;
}

.main-header .outer-box .menu-area {
	position: relative;
	float: right;
}

.main-header .outer-box .shape {
	position: absolute;
	left: 0px;
	top: 0px;
	width: 231px;
	height: 120px;
	background-repeat: no-repeat;
}

.main-header .outer-box .menu-area {
	display: flex;
	align-items: center;
	justify-content: center;
}

.main-header .outer-box .menu-right {
	position: relative;
	display: flex;
	align-items: center;
	margin-left: 40px;
	margin-right: 115px;
}

.main-header .nav-btn {
	position: relative;
	width: 40px;
	height: 20px;
	cursor: pointer;
	margin-right: 50px;
}

.main-header .nav-btn .bar {
	position: absolute;
	width: 100%;
	height: 2px;
	top: 0px;
	left: 0px;
	transition: all 500ms ease;
}

.main-header .nav-btn .bar {
	background-color: #121113;
}

.main-header .nav-btn .bar:nth-child(2) {
	top: 9px;
	left: 10px;
}

.main-header .nav-btn:hover .bar:nth-child(2) {
	left: 0px;
}

.main-header .nav-btn .bar:last-child {
	top: 18px;
}

.main-header .outer-box .menu-right .search-toggler {
	position: relative;
	display: inline-block;
	font-size: 22px;
	line-height: 20px;
	color: #121113;
	margin-right: 80px;
	cursor: pointer;
	transition: all 500ms ease;
}

.main-header .outer-box .menu-right .search-toggler:hover {}

.main-header .outer-box .menu-right .search-toggler:before {
	position: absolute;
	content: '';
	background: #e8eaed;
	width: 1px;
	height: 48px;
	top: -13px;
	right: -40px;
}

.main-header .outer-box .support-box {
	position: relative;
	display: block;
	padding: 0px 0px 0px 57px;
}

.main-header .outer-box .support-box .icon {
	position: absolute;
	left: 0px;
	top: 7px;
}

.main-header .outer-box .support-box h6 {
	display: block;
	font-size: 16px;
	line-height: 24px;
	font-weight: 500;
	color: #75767b;
	margin-bottom: 4px;
}

.main-header .outer-box .support-box h4 {
	position: relative;
	display: block;
	font-size: 20px;
	line-height: 24px;
	font-weight: 500;
	color: #121113;
}

.main-header .outer-box .support-box h4 a {
	display: inline-block;
	color: #121113;
}

.main-header .outer-box .support-box h4 a:hover {}

.main-header .outer-box:before {
	position: absolute;
	content: '';
	background: #f2f2f2;
	width: 375px;
	height: 100%;
	top: 0px;
	right: 0px;
	clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 33% 100%, 0% 0%);
}


/** xs-sidebar **/

.xs-sidebar-group .xs-overlay {
	left: 0%;
	top: 0;
	position: fixed;
	height: 100%;
	width: 20%;
	transform: scaleX(0);
	transform-origin: left center;
	cursor: url(../images/icons/cross-out.png),
		pointer;
	z-index: 9999999;
	border-right: 1px solid rgba(255, 255, 255, 0.10);
	transition: transform .65s .3s cubic-bezier(0.7, 0, 0.2, 1);
}

.xs-sidebar-group.isActive .xs-overlay {
	transform: scaleX(1);
	transition-delay: .03s;
}

.xs-sidebar-group .xs-overlay-2 {
	left: 20%;
	transition-delay: .06s;
}

.xs-sidebar-group .xs-overlay-3 {
	left: 40%;
	transition-delay: .09s;
}

.xs-sidebar-group .xs-overlay-4 {
	left: 60%;
	transition-delay: .12s;
}

.xs-sidebar-group .xs-overlay-5 {
	left: 80%;
	transition-delay: .15s;
}

.xs-sidebar-group .widget-heading {
	position: absolute;
	top: 50px;
	right: 35px;
	z-index: 1;
}

.xs-sidebar-widget {
	position: fixed;
	right: -100%;
	top: 0;
	bottom: 0;
	width: 100%;
	max-width: 460px;
	z-index: 999999999;
	height: 100%;
	-webkit-overflow-scrolling: touch;
	background-color: #fff;
	transition: all 900ms ease;
	visibility: hidden;
	opacity: 0;
}

.xs-sidebar-group.isActive .xs-sidebar-widget {
	opacity: 1;
	visibility: visible;
	right: 0;
	-webkit-transition: all 0.7s cubic-bezier(0.9, 0.03, 0, 0.96) 0.6s;
	-o-transition: all 0.7s cubic-bezier(0.9, 0.03, 0, 0.96) 0.6s;
	transition: all 0.7s cubic-bezier(0.9, 0.03, 0, 0.96) 0.6s;
}

.sidebar-textwidget {
	padding: 50px 40px 50px 40px;
}

.xs-sidebar-group .close-side-widget {
	position: relative;
	display: inline-block;
	width: 40px;
	height: 40px;
	line-height: 40px;
	text-align: center;
	border: 1px solid #0e132d;
	color: #0e132d;
	border-radius: 50%;
	font-weight: 400;
	font-size: 20px;
}

.sidebar-widget-container {
	position: relative;
	opacity: 0;
	visibility: hidden;
}

.xs-sidebar-group.isActive .sidebar-widget-container {
	opacity: 1;
	visibility: visible;
}

.xs-bg-black {
	background-color: #121113;
}

.sidebar-info-contents .content-inner {
	position: relative;
}

.sidebar-info-contents .content-inner .logo {
	padding: 0px 0px 40px;
}

.sidebar-info-contents .content-inner .logo img {
	display: inline-block;
	max-width: 100%;
}

.sidebar-info-contents .content-inner .content-box {
	position: relative;
}

.sidebar-info-contents .content-inner .content-box h4 {
	position: relative;
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 20px;
}

.sidebar-info-contents .content-inner .content-box p {
	position: relative;
	font-size: 15px;
	margin-bottom: 25px;
}

.sidebar-info-contents .content-inner .content-box .theme-btn-two {
	padding: 10px 50px;
}

.sidebar-info-contents .content-inner .contact-info {
	position: relative;
	margin-top: 60px;
}

.sidebar-info-contents .content-inner .contact-info ul li {
	position: relative;
	display: block;
	font-size: 15px;
	color: #75767b;
	margin-bottom: 3px;
}

.sidebar-info-contents .content-inner .contact-info ul li a {
	color: #75767b;
}

.sidebar-info-contents .content-inner .contact-info ul li a:hover {}

.sidebar-info-contents .content-inner .contact-info h4 {
	position: relative;
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 20px;
}

.sidebar-info-contents .content-inner .social-box {
	position: relative;
	margin-top: 20px;
	margin-bottom: 30px;
}

.sidebar-info-contents .content-inner .social-box li {
	position: relative;
	display: inline-block;
	margin-right: 6px;
	transition: all 900ms ease;
	-moz-transition: all 900ms ease;
	-webkit-transition: all 900ms ease;
	-ms-transition: all 900ms ease;
	-o-transition: all 900ms ease;
}

.sidebar-info-contents .content-inner .social-box li a {
	position: relative;
	width: 36px;
	height: 36px;
	color: #75767b;
	z-index: 1;
	font-size: 13px;
	line-height: 36px;
	text-align: center;
	border-radius: 50%;
	display: inline-block;
	background: transparent;
	border: 1px solid #e5e5e5;
	-webkit-transition: all 300ms ease;
	-moz-transition: all 300ms ease;
	-ms-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	transition: all 300ms ease;
}

.sidebar-info-contents .content-inner .social-box li a:hover {
	color: #fff;
}



/*** Search Popup ***/

.search-popup {
	position: fixed;
	left: 0;
	top: 0px;
	width: 100%;
	height: 100%;
	z-index: 99999;
	visibility: hidden;
	opacity: 0;
	overflow: auto;
	background: rgba(0, 0, 0, 0.80);
	padding-bottom: 200px;
	-webkit-transform: translateY(101%);
	-ms-transform: translateY(101%);
	transform: translateY(101%);
	transition: all 700ms ease;
	-moz-transition: all 700ms ease;
	-webkit-transition: all 700ms ease;
	-ms-transition: all 700ms ease;
	-o-transition: all 700ms ease;
}

.search-popup.popup-visible {
	-webkit-transform: translateY(0%);
	-ms-transform: translateY(0%);
	transform: translateY(0%);
	visibility: visible;
	opacity: 1;
}

.search-popup .popup-inner {
	width: 100%;
	background: #fff;
}

.search-popup .upper-box {
	position: relative;
	padding: 70px 70px;
}

.search-popup .overlay-layer {
	position: absolute;
	left: 0px;
	top: 0px;
	right: 0px;
	bottom: 0px;
	display: block;
}

.search-popup .close-search {
	position: relative;
	font-size: 22px;
	color: #141417;
	cursor: pointer;
	z-index: 5;
	top: 11px;
	transition: all 500ms ease;
}

.search-popup .close-search:hover {
	color: red;
}

.search-popup .search-form {
	position: relative;
	width: 100%;
	padding: 100px 0px 250px 0px;
}

.search-popup .search-form .form-group {
	position: relative;
	margin: 0px;
}

.search-popup .search-form fieldset input[type="search"] {
	position: relative;
	height: 90px;
	padding: 20px 0px;
	background: #ffffff;
	line-height: 30px;
	font-size: 20px;
	color: #808080;
	font-family: 'Poppins', sans-serif;
	border: none;
	font-weight: 400;
	border-radius: 0px;
	padding-right: 50px;
	border-bottom: 1px solid #e5e5e5;
}

.search-popup .search-form fieldset button[type="submit"] {
	position: absolute;
	top: 30px;
	right: 0px;
	font-size: 22px;
	color: #141417;
	cursor: pointer;
	transition: all 500ms ease;
}

.search-popup .search-form fieldset input[type="search"]:focus {
	border-color: #141417;
}

.search-popup .form-control:focus {
	box-shadow: none !important;
}


/** main-menu **/

.main-menu {
	float: left;
}

.main-menu .navbar-collapse {
	padding: 0px;
	display: block !important;
}

.main-menu .navigation {
	margin: 0px;
}

.main-menu .navigation>li {
	position: inherit;
	float: left;
	z-index: 2;
	margin: 0px 19px;
	-webkit-transition: all 300ms ease;
	-moz-transition: all 300ms ease;
	-ms-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	transition: all 300ms ease;
}

.main-menu .navigation>li:last-child {
	margin-right: 0px !important;
}

.main-menu .navigation>li:first-child {
	margin-left: 0px !important;
}

.main-menu .navigation>li>a {
	position: relative;
	display: block;
	text-align: center;
	font-size: 14px;
	line-height: 30px;
	padding: 45px 10px;
	font-weight: 700;
	font-family: 'Lexend', sans-serif;
	opacity: 1;
	color: #121113;
	padding-right: 17px;
	z-index: 1;
	text-transform: uppercase;
	-webkit-transition: all 500ms ease;
	-moz-transition: all 500ms ease;
	-ms-transition: all 500ms ease;
	-o-transition: all 500ms ease;
	transition: all 500ms ease;
}

.main-menu .navigation>li.current>a,
.main-menu .navigation>li:hover>a {}

.main-menu .navigation>li.dropdown>a:before {
	position: absolute;
	content: "\f104";
	font-family: 'flaticon';
	top: 45px;
	right: -12px;
	color: #a6a7ab;
	font-size: 10px;
	font-weight: 400;
	transition: all 500ms ease;
}

.main-menu .navigation>li.dropdown.current>a:before,
.main-menu .navigation>li.dropdown:hover>a:before {
	transform: rotate(90deg);
	color: #121113;
}

.main-menu .navigation>li>ul,
.main-menu .navigation>li>.megamenu {
	position: absolute;
	left: inherit;
	top: 100%;
	width: 230px;
	margin-top: 15px;
	padding: 26px 20px 28px 40px;
	z-index: 100;
	display: none;
	opacity: 0;
	visibility: hidden;
	border-radius: 0px;
	background-color: #121113;
	transition: all 500ms ease;
	-moz-transition: all 500ms ease;
	-webkit-transition: all 500ms ease;
	-ms-transition: all 500ms ease;
	-o-transition: all 500ms ease;
}

.main-menu .navigation>li>.megamenu {
	max-width: 1050px;
	margin: 0 auto;
	margin-top: 15px;
	padding: 40px 40px 24px 40px;
	text-align: center;
}

.main-menu .navigation>li>.megamenu img {
	width: 100%;
	transition: all 500ms ease;
}

.main-menu .navigation>li>.megamenu li.image-box {
	margin-bottom: 3px;
}

.main-menu .navigation>li>.megamenu li.image-box a {
	padding: 0px;
}

.main-menu .navigation>li>.megamenu ul li a {
	position: relative;
	display: inline-block;
	font-size: 16px;
	font-family: 'Lexend', sans-serif;
	font-weight: 400;
	color: #c3c4c8;
	padding: 10px 0px;
}

.main-menu .navigation>li>.megamenu ul li:last-child a:hover {
	padding-left: 18px;
}

.main-menu .navigation>li>.megamenu ul li:last-child a:before {
	position: absolute;
	content: "\f106";
	font-family: 'flaticon';
	left: 0px;
	top: 11px;
	font-size: 10px;
	opacity: 0;
	transition: all 500ms ease;
}

.main-menu .navigation>li>.megamenu ul li:last-child a:hover:before {
	opacity: 1;
}

.main-menu .navigation>li>ul.from-right {
	left: auto;
	right: 0px;
}

.main-menu .navigation>li>ul>li {
	position: relative;
	width: 100%;
}

.main-menu .navigation>li>ul>li>a {
	position: relative;
	display: block;
	padding: 6px 0px;
	line-height: 24px;
	font-weight: 400;
	font-size: 16px;
	text-transform: capitalize;
	font-family: 'Lexend', sans-serif;
	color: #c3c4c8;
	text-align: left;
	transition: all 500ms ease;
	-moz-transition: all 500ms ease;
	-webkit-transition: all 500ms ease;
	-ms-transition: all 500ms ease;
	-o-transition: all 500ms ease;
}

.main-menu .navigation>li>ul>li>a:before {
	position: absolute;
	content: "\f106";
	font-family: 'flaticon';
	left: 0px;
	top: 7px;
	font-size: 10px;
	opacity: 0;
	transition: all 500ms ease;
}

.main-menu .navigation>li>ul>li>a:hover {
	padding-left: 17px;
}

.main-menu .navigation>li>ul>li>a:hover:before {
	opacity: 1;
}

.main-menu .navigation>li>.megamenu li>a {
	padding-left: 0px;
}

.main-menu .navigation>li>.megamenu h4 {
	display: block;
	font-size: 20px;
	line-height: 30px;
	color: #ffffff;
}

.main-menu .navigation>li>ul>li>a:hover,
.main-menu .navigation>li>.megamenu li>a:hover {}

.main-menu .navigation>li>ul>li:last-child>a,
.main-menu .navigation>li>.megamenu li:last-child>a {
	border-bottom: none;
}

.main-menu .navigation>li>ul>li.dropdown>a:after {
	font-family: 'Lexend';
	content: "+";
	position: absolute;
	right: 20px;
	top: 6px;
	display: block;
	line-height: 24px;
	font-size: 18px;
	font-weight: 300;
	text-align: center;
	z-index: 5;
}

.main-menu .navigation>li>ul>li>ul {
	position: absolute;
	left: 100%;
	top: 0%;
	margin-left: 30px;
	margin-top: 15px;
	width: 230px;
	z-index: 100;
	padding: 26px 40px 28px 40px;
	display: none;
	border-radius: 0px;
	background-color: #121113;
	transition: all 500ms ease;
	-moz-transition: all 500ms ease;
	-webkit-transition: all 500ms ease;
	-ms-transition: all 500ms ease;
	-o-transition: all 500ms ease;
}

.main-menu .navigation>li>ul>li>ul:before {
	position: absolute;
	content: '';
	background: transparent;
	width: 50px;
	height: 100%;
	left: -50px;
	top: 0px;
}

.main-menu .navigation>li>ul>li>ul.from-right {
	left: auto;
	right: 0px;
}

.main-menu .navigation>li>ul>li>ul>li {
	position: relative;
	width: 100%;
}

.main-menu .navigation>li>ul>li>ul>li:last-child {
	border-bottom: none;
}

.main-menu .navigation>li>ul>li>ul>li>a {
	position: relative;
	display: block;
	padding: 6px 0px;
	line-height: 24px;
	font-weight: 400;
	font-size: 16px;
	text-transform: capitalize;
	font-family: 'Lexend', sans-serif;
	color: #c3c4c8;
	text-align: left;
	transition: all 500ms ease;
	-moz-transition: all 500ms ease;
	-webkit-transition: all 500ms ease;
	-ms-transition: all 500ms ease;
	-o-transition: all 500ms ease;
}

.main-menu .navigation>li>ul>li>ul>li>a:hover {}

.main-menu .navigation>li>ul>li>ul>li.dropdown>a:after {
	font-family: 'Font Awesome 5 Pro';
	content: "\f105";
	position: absolute;
	right: 20px;
	top: 12px;
	display: block;
	line-height: 24px;
	font-size: 16px;
	font-weight: 900;
	z-index: 5;
}

.main-menu .navigation>li.dropdown:hover>ul,
.main-menu .navigation>li.dropdown:hover>.megamenu {
	visibility: visible;
	opacity: 1;
	margin-top: 0px;
	top: 100%;
}

.main-menu .navigation li>ul>li.dropdown:hover>ul {
	visibility: visible;
	opacity: 1;
	top: 0%;
	margin-top: 0px;
}

.main-menu .navigation li.dropdown .dropdown-btn {
	position: absolute;
	right: -32px;
	top: 66px;
	width: 34px;
	height: 30px;
	text-align: center;
	font-size: 18px;
	line-height: 26px;
	color: #3b3b3b;
	cursor: pointer;
	display: none;
	z-index: 5;
	transition: all 500ms ease;
}

.main-menu .navigation li.current.dropdown .dropdown-btn,
.main-menu .navigation li:hover .dropdown-btn {}

.main-menu .navigation li.dropdown ul li.dropdown .dropdown-btn {
	display: none;
}

.menu-area .mobile-nav-toggler {
	position: relative;
	float: right;
	font-size: 40px;
	line-height: 50px;
	cursor: pointer;
	color: #3786ff;
	display: none;
}

.menu-area .mobile-nav-toggler .icon-bar {
	position: relative;
	height: 2px;
	width: 30px;
	display: block;
	margin-bottom: 5px;
	background-color: #ffffff;
	-webkit-transition: all 300ms ease;
	-moz-transition: all 300ms ease;
	-ms-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	transition: all 300ms ease;
}

.menu-area .mobile-nav-toggler .icon-bar:last-child {
	margin-bottom: 0px;
}


/** megamenu-style **/

.main-menu .navigation>li.dropdown>.megamenu {
	position: absolute;
	width: 100%;
	left: 0px;
}

.main-menu .navigation li.dropdown .megamenu li h4 {
	margin-bottom: 10px;
}


/** mobile-menu **/

.nav-outer .mobile-nav-toggler {
	position: relative;
	float: right;
	font-size: 40px;
	line-height: 50px;
	cursor: pointer;
	color: #3786ff;
	display: none;
}

.mobile-menu {
	position: fixed;
	right: 0;
	top: 0;
	width: 300px;
	padding-right: 30px;
	max-width: 100%;
	height: 100%;
	opacity: 0;
	visibility: hidden;
	z-index: 999999;
	transition: all 900ms ease;
}

.mobile-menu .navbar-collapse {
	display: block !important;
}

.mobile-menu .nav-logo {
	position: relative;
	padding: 30px 25px 15px 25px;
	text-align: left;
}

.mobile-menu .nav-logo img {
	max-height: 45px;
	width: auto;
}

.mobile-menu-visible {
	overflow: hidden;
}

.mobile-menu-visible .mobile-menu {
	opacity: 1;
	visibility: visible;
}

.mobile-menu .menu-backdrop {
	position: fixed;
	left: 0%;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	transition: all 900ms ease;
	background-color: #000;
}

.mobile-menu-visible .mobile-menu .menu-backdrop {
	opacity: 0.70;
	visibility: visible;
	right: 100%;
	-webkit-transition: all .8s ease-out 0s;
	-o-transition: all .8s ease-out 0s
}

.mobile-menu .menu-box {
	position: absolute;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	max-height: 100%;
	overflow-y: auto;
	background: #141417;
	padding: 0px 0px;
	z-index: 5;
	opacity: 0;
	visibility: hidden;
	border-radius: 0px;
	-webkit-transform: translateX(100%);
	-ms-transform: translateX(100%);
	transform: translateX(100%);
	transition: all 900ms ease !important;
}

.mobile-menu-visible .mobile-menu .menu-box {
	opacity: 1;
	visibility: visible;
	-webkit-transition: all 0.7s ease;
	-o-transition: all 0.7s ease;
	transition: all 0.7s ease;
	-webkit-transform: translateX(0%);
	-ms-transform: translateX(0%);
	transform: translateX(0%);
}

.mobile-menu .close-btn {
	position: absolute;
	right: 25px;
	top: 10px;
	line-height: 30px;
	width: 24px;
	text-align: center;
	font-size: 16px;
	color: #ffffff;
	cursor: pointer;
	z-index: 10;
	-webkit-transition: all 0.9s ease;
	-moz-transition: all 0.9s ease;
	-ms-transition: all 0.9s ease;
	-o-transition: all 0.9s ease;
	transition: all 0.9s ease;
}

.mobile-menu-visible .mobile-menu .close-btn {
	-webkit-transform: rotate(360deg);
	-ms-transform: rotate(360deg);
	transform: rotate(360deg);
}

.mobile-menu .close-btn:hover {
	-webkit-transform: rotate(90deg);
	-ms-transform: rotate(90deg);
	transform: rotate(90deg);
}

.mobile-menu .navigation {
	position: relative;
	display: block;
	width: 100%;
	float: none;
}

.mobile-menu .navigation li {
	position: relative;
	display: block;
	border-top: 1px solid rgba(255, 255, 255, 0.10);
}

.mobile-menu .navigation:last-child {
	border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.mobile-menu .navigation li>ul>li:first-child {
	border-top: 1px solid rgba(255, 255, 255, 0.10);
}

.mobile-menu .navigation li>a {
	position: relative;
	display: block;
	line-height: 24px;
	padding: 10px 25px;
	font-size: 15px;
	font-weight: 500;
	color: #ffffff;
	text-transform: uppercase;
	-webkit-transition: all 500ms ease;
	-moz-transition: all 500ms ease;
	-ms-transition: all 500ms ease;
	-o-transition: all 500ms ease;
	transition: all 500ms ease;
}

.mobile-menu .navigation li ul li>a {
	font-size: 16px;
	margin-left: 20px;
	text-transform: capitalize;
}

.mobile-menu .navigation li>a:before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	height: 0;
	border-left: 5px solid #fff;
	-webkit-transition: all 500ms ease;
	-moz-transition: all 500ms ease;
	-ms-transition: all 500ms ease;
	-o-transition: all 500ms ease;
	transition: all 500ms ease;
}

.mobile-menu .navigation li.current>a:before {
	height: 100%;
}

.mobile-menu .navigation li.dropdown .dropdown-btn {
	position: absolute;
	right: 6px;
	top: 6px;
	width: 32px;
	height: 32px;
	text-align: center;
	font-size: 16px;
	line-height: 32px;
	color: #ffffff;
	background: rgba(255, 255, 255, 0.10);
	cursor: pointer;
	border-radius: 2px;
	-webkit-transition: all 500ms ease;
	-moz-transition: all 500ms ease;
	-ms-transition: all 500ms ease;
	-o-transition: all 500ms ease;
	transition: all 500ms ease;
	z-index: 5;
}

.mobile-menu .navigation li.dropdown .dropdown-btn.open {
	color: #ffffff;
	-webkit-transform: rotate(90deg);
	-ms-transform: rotate(90deg);
	transform: rotate(90deg);
}

.mobile-menu .navigation li>ul,
.mobile-menu .navigation li>ul>li>ul,
.mobile-menu .navigation>li.dropdown>.megamenu {
	display: none;
}

.mobile-menu .social-links {
	position: relative;
	padding: 0px 25px;
}

.mobile-menu .social-links li {
	position: relative;
	display: inline-block;
	margin: 0px 10px 10px;
}

.mobile-menu .social-links li a {
	position: relative;
	line-height: 32px;
	font-size: 16px;
	color: #ffffff;
	-webkit-transition: all 500ms ease;
	-moz-transition: all 500ms ease;
	-ms-transition: all 500ms ease;
	-o-transition: all 500ms ease;
	transition: all 500ms ease;
}

.mobile-menu .social-links li a:hover {}

div#mCSB_1_container {
	top: 0px !important;
}

.mobile-menu .contact-info {
	position: relative;
	padding: 120px 30px 20px 30px;
}

.mobile-menu .contact-info h4 {
	position: relative;
	font-size: 20px;
	color: #ffffff;
	font-weight: 700;
	margin-bottom: 20px;
}

.mobile-menu .contact-info ul li {
	position: relative;
	display: block;
	font-size: 15px;
	color: rgba(255, 255, 255, 0.80);
	margin-bottom: 3px;
}

.mobile-menu .contact-info ul li a {
	color: rgba(255, 255, 255, 0.80);
}

.mobile-menu .contact-info ul li a:hover {}

.mobile-menu .contact-info ul li:last-child {
	margin-bottom: 0px;
}

.main-header .outer-box {
	position: relative;
}


/** banner-section **/

.banner-section {
	position: relative;
}

.banner-section .slide-item {
	position: relative;
	padding-bottom: 120px;
}

.banner-section .outer-container {
	position: relative;
	width: 100%;
	padding: 0px 260px 0px 100px;
}

.banner-section .outer-container .content-inner,
.banner-section .outer-container .image-box {
	width: 50%;
}

.banner-section .content-box {
	max-width: 700px;
	padding-top: 103px;
}

.banner-carousel .content-box h2 {
	position: relative;
	display: block;
	font-size: 80px;
	line-height: 90px;
	font-weight: 500;
	margin-bottom: 39px;
	opacity: 0;
	-webkit-transform: translateY(50px);
	-moz-transform: translateY(50px);
	-ms-transform: translateY(50px);
	-o-transform: translateY(50px);
	transform: translateY(50px);
	-webkit-transition: all 1000ms ease;
	-moz-transition: all 1000ms ease;
	-ms-transition: all 1000ms ease;
	-o-transition: all 1000ms ease;
	transition: all 1000ms ease;
}

.banner-carousel .active .content-box h2 {
	opacity: 1;
	-webkit-transform: translateY(0);
	-moz-transform: translateY(0);
	-ms-transform: translateY(0);
	-o-transform: translateY(0);
	transform: translateY(0);
	-webkit-transition-delay: 1000ms;
	-moz-transition-delay: 1000ms;
	-ms-transition-delay: 1000ms;
	-o-transition-delay: 1000ms;
	transition-delay: 1000ms;
}

.banner-carousel .content-box p {
	position: relative;
	display: block;
	font-size: 16px;
	line-height: 26px;
	color: #87888d;
	margin-bottom: 33px;
	padding-left: 180px;
	opacity: 0;
	-webkit-transform: translateY(50px);
	-moz-transform: translateY(50px);
	-ms-transform: translateY(50px);
	-o-transform: translateY(50px);
	transform: translateY(50px);
	-webkit-transition: all 1000ms ease;
	-moz-transition: all 1000ms ease;
	-ms-transition: all 1000ms ease;
	-o-transition: all 1000ms ease;
	transition: all 1000ms ease;
}

.banner-carousel .content-box p:before {
	position: absolute;
	content: '';
	width: 150px;
	height: 4px;
	left: 0px;
	top: 11px;
}

.banner-carousel .active .content-box p {
	opacity: 1;
	-webkit-transform: translateY(0);
	-moz-transform: translateY(0);
	-ms-transform: translateY(0);
	-o-transform: translateY(0);
	transform: translateY(0);
	-webkit-transition-delay: 1200ms;
	-moz-transition-delay: 1200ms;
	-ms-transition-delay: 1200ms;
	-o-transition-delay: 1200ms;
	transition-delay: 1200ms;
}

.banner-carousel .content-box .btn-box {
	position: relative;
	display: block;
	padding-left: 180px;
	opacity: 0;
	-webkit-transform: translateY(50px);
	-moz-transform: translateY(50px);
	-ms-transform: translateY(50px);
	-o-transform: translateY(50px);
	transform: translateY(50px);
	-webkit-transition: all 1000ms ease;
	-moz-transition: all 1000ms ease;
	-ms-transition: all 1000ms ease;
	-o-transition: all 1000ms ease;
	transition: all 1000ms ease;
}

.banner-carousel .active .content-box .btn-box {
	opacity: 1;
	-webkit-transform: translateY(0);
	-moz-transform: translateY(0);
	-ms-transform: translateY(0);
	-o-transform: translateY(0);
	transform: translateY(0);
	-webkit-transition-delay: 1400ms;
	-moz-transition-delay: 1400ms;
	-ms-transition-delay: 1400ms;
	-o-transition-delay: 1400ms;
	transition-delay: 1400ms;
}

.banner-carousel .content-box .btn-box .theme-btn {
	padding: 13px 52px;
}

.banner-carousel .image-box .image {
	position: relative;
	display: block;
	opacity: 0;
	clip-path: polygon(0% 0%, 75% 0%, 100% 30%, 100% 100%, 80% 100%, 25% 100%, 0% 70%, 0% 20%);
	-webkit-transform: translateX(100px);
	-moz-transform: translateX(100px);
	-ms-transform: translateX(100px);
	-o-transform: translateX(100px);
	transform: translateX(100px);
	-webkit-transition: all 1000ms ease;
	-moz-transition: all 1000ms ease;
	-ms-transition: all 1000ms ease;
	-o-transition: all 1000ms ease;
	transition: all 1000ms ease;
}

.banner-carousel .active .image-box .image {
	opacity: 1;
	-webkit-transform: translateY(0);
	-moz-transform: translateY(0);
	-ms-transform: translateY(0);
	-o-transform: translateY(0);
	transform: translateY(0);
	-webkit-transition-delay: 1000ms;
	-moz-transition-delay: 1000ms;
	-ms-transition-delay: 1000ms;
	-o-transition-delay: 1000ms;
	transition-delay: 1000ms;
}

.banner-carousel .image-box .image.overlay-layer:before {
	position: absolute;
	content: '';
	background: #000;
	width: 100%;
	height: 100%;
	left: 0px;
	top: 0px;
	opacity: 0.3;
	z-index: 1;
}

.banner-carousel .image-box .image.overlay-laye-2:before {
	position: absolute;
	content: '';
	background: #000;
	width: 100%;
	height: 100%;
	left: 0px;
	top: 0px;
	opacity: 0.1;
	z-index: 1;
}

.banner-carousel .image-box .image img {
	width: 100%;
}

.banner-section .shape .shape-1 {
	position: absolute;
	top: 0px;
	right: 0px;
	width: 123px;
	height: 219px;
	background-color: #ff6005 !important;
	background-image: none !important;
	-webkit-mask-image: url(../images/shape/shape-2.png);
	mask-image: url(../images/shape/shape-2.png);
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-size: 100% 100%;
	mask-size: 100% 100%;
}

.banner-section .shape .shape-2 {
	position: absolute;
	right: 0px;
	bottom: 0px;
	width: 201px;
	height: 216px;
	background-color: #ff6005 !important;
	background-image: none !important;
	-webkit-mask-image: url(../images/shape/shape-3.png);
	mask-image: url(../images/shape/shape-3.png);
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-size: 100% 100%;
	mask-size: 100% 100%;
}

.banner-section .shape .shape-3 {
	position: absolute;
	right: 225px;
	bottom: 160px;
	width: 137px;
	height: 13px;
	background-repeat: no-repeat;
	z-index: 1;
}

.banner-section .shape .shape-4 {
	position: absolute;
	left: 50%;
	bottom: 0px;
	width: 183px;
	height: 21px;
	background-repeat: no-repeat;
}

.banner-section .shape .shape-5 {
	position: absolute;
	left: 340px;
	bottom: 100px;
	width: 137px;
	height: 13px;
	background-repeat: no-repeat;
	z-index: 1;
}

.banner-section .shape .shape-6 {
	position: absolute;
	left: 0px;
	bottom: 0px;
	width: 545px;
	height: 210px;
	background-repeat: no-repeat;
}

.banner-section .shape .shape-7 {
	position: absolute;
	left: 0px;
	bottom: 170px;
	width: 130px;
	height: 219px;
	background-repeat: no-repeat;
}

.banner-section .shape .shape-8 {
	position: absolute;
	left: 44%;
	top: 43%;
	width: 49px;
	height: 18px;
	background-repeat: no-repeat;
	z-index: 1;
}

.owl-dots-none .owl-dots,
.owl-nav-none .owl-nav {
	display: none !important;
}

.banner-section .owl-dots {
	position: absolute;
	right: 260px;
	bottom: 0px;
}

.banner-section .owl-theme .owl-dots .owl-dot span {
	position: relative;
	display: inline-block;
	width: 60px;
	height: 60px;
	border-radius: 50px;
	background: #f6f6f7;
	float: left;
	margin: 0px 20px 0px 0px;
}

.banner-section .owl-theme .owl-dots .owl-dot:last-child span {
	margin: 0px !important;
}

.banner-section .owl-theme .owl-dots .owl-dot.active span {}

.banner-section .owl-theme .owl-dots .owl-dot.active span:before {
	color: #FFF;
}

.banner-section .owl-theme .owl-dots .owl-dot span:before {
	position: absolute;
	content: '0';
	text-align: center;
	font-size: 20px;
	font-family: 'Lexend', sans-serif;
	color: #a6a7ab;
	width: 60px;
	height: 60px;
	line-height: 60px;
	left: 0px;
	top: 0px;
	transition: all 500ms ease;
}

.banner-section .owl-theme .owl-dots .owl-dot:first-child span:before {
	content: '01';
}

.banner-section .owl-theme .owl-dots .owl-dot:nth-child(2) span:before {
	content: '02';
}

.banner-section .owl-theme .owl-dots .owl-dot:nth-child(3) span:before {
	content: '03';
}

.banner-section .owl-theme .owl-dots .owl-dot:nth-child(4) span:before {
	content: '04';
}

.banner-section .owl-theme .owl-dots .owl-dot:nth-child(5) span:before {
	content: '05';
}

.banner-section .curve-text .curved-circle {
	position: absolute;
	top: 0px;
	font-size: 16px;
	font-weight: 600;
	font-family: 'Lexend', sans-serif;
	color: #121113;
	text-transform: uppercase;
}

.banner-section .curve-text {
	position: absolute;
	left: 32%;
	bottom: 20px;
	text-align: center;
	width: 205px;
	height: 205px;
	text-align: center;
}

.banner-section .curve-text .icon-box {
	position: absolute;
	left: 70px;
	top: 65px;
}

.banner-section .curve-text h6 {
	position: absolute;
	left: 65px;
	top: 140px;
	font-size: 14px;
	line-height: 20px;
	font-weight: 600;
	color: #121113;
	text-transform: uppercase;
}

.banner-section .curve-text h6 a {
	display: inline-block;
	color: #121113;
}

.banner-section .curve-text h6 a:hover {}


/** about-section **/

.about-section {
	position: relative;
	padding: 120px 0px;
}

.about-section .title-text {
	position: relative;
	display: block;
	margin-bottom: 48px;
}

.about-section .title-text h2 {
	position: relative;
	display: block;
	font-size: 44px;
	line-height: 56px;
	font-weight: 600;
	color: #ff9800;
}

.about-section .big-column .image-box {
	position: relative;
	display: block;
	margin-right: 20px;
}

.about-section .image {
	position: relative;
	display: block;
	clip-path: polygon(0% 0%, 63% 0%, 100% 23%, 100% 100%, 80% 100%, 25% 100%, 0% 100%, 0% 20%);
}

.about-section .image img {
	width: 100%;
}

.about-section .content-box {
	position: relative;
	display: block;
}

.about-section .content-box h6 {
	position: relative;
	display: block;
	font-size: 16px;
	line-height: 20px;
	font-weight: 600;
	text-transform: uppercase;
	margin-bottom: 7px;
}

.about-section .content-box h2 {
	position: relative;
	display: inline-block;
	font-size: 48px;
	line-height: 50px;
	font-weight: 600;
	margin-bottom: 27px;
	padding-right: 126px;
}

.about-section .content-box h2:before {
	position: absolute;
	content: '';
	background-image: url(../images/shape/shape-10.png);
	width: 112px;
	height: 26px;
	background-repeat: no-repeat;
	top: 13px;
	right: 0px;
}

.about-section .content-box .text {
	margin-bottom: 33px;
}

.about-section .content-box .text p {
	margin-bottom: 16px;
}

.about-section .content-box .text p:last-child {
	margin-bottom: 0px;
}

.about-section .content-box .inner {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 34px;
}

.about-section .content-box .inner:before {
	position: absolute;
	content: '';
	background: #e8eaed;
	width: 2px;
	height: 76px;
	left: 50%;
	transform: translateX(-50%);
	top: 0px;
}

.about-section .content-box .inner .author h4 {
	position: relative;
	display: block;
	font-size: 20px;
	line-height: 26px;
	font-weight: 500;
	margin-bottom: 5px;
}

.about-section .content-box .inner .author .designation {
	position: relative;
	display: block;
	font-size: 16px;
	line-height: 20px;
	font-family: 'Inter', sans-serif;
	color: #75767b;
	font-weight: 500;
}

.theme-btn.btn-two {
	padding: 13px 52px;
}

.about-section .small-column .image-box {
	margin-left: 20px;
}

.about-section .small-column .image-box .image {
	margin-bottom: 35px;
}

.about-section .small-column .image-box .social-links h6 {
	position: relative;
	display: block;
	font-size: 14px;
	line-height: 20px;
	font-weight: 600;
	text-transform: uppercase;
	margin-bottom: 15px;
}

.about-section .small-column .image-box .social-list li {
	position: relative;
	display: inline-block;
	float: left;
	margin-right: 15px;
}

.about-section .small-column .image-box .social-list li:last-child {
	margin: 0px !important;
}

.about-section .small-column .image-box .social-list li a {
	position: relative;
	display: inline-block;
	width: 52px;
	height: 52px;
	line-height: 52px;
	font-size: 16px;
	background: #fff;
	color: #75767b;
	text-align: center;
	border-radius: 50%;
	box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.15);
}

.about-section .small-column .image-box .social-list li a:hover {
	color: #121113;
}

.about-section .small-column .image-box .shape {
	position: absolute;
	left: -80px;
	bottom: 9px;
	width: 294px;
	height: 208px;
	background-repeat: no-repeat;
	z-index: -1;
}


/** service-section **/

.service-section {
	position: relative;
	padding: 111px 0px 120px 0px;
	background: #121113;
}

.service-block-one {
	margin-top: 15px;
}

.service-block-one .inner-box {
	position: relative;
	display: block;
	background: #262427;
}

.service-block-one .inner-box .image-box {
	position: relative;
	display: block;
}

.service-block-one .inner-box .image-box .image {
	position: relative;
	display: block;
	overflow: hidden;
}

.service-block-one .inner-box .image-box .image img {
	width: 100%;
	transition: all 500ms ease;
}

.service-block-one .inner-box:hover .image-box .image img {
	opacity: 0.5;
	transform: scale(1.05);
}

.service-block-one .inner-box .image-box .icon-box {
	position: absolute;
	left: 0px;
	top: -13px;
	width: 66px;
	height: 66px;
	background: #121113;
	z-index: 1;
}

.service-block-one .inner-box .image-box .icon-box:before {
	position: absolute;
	content: '';
	width: 26px;
	height: 26px;
	top: 0px;
	right: -26px;
}

.service-block-one .inner-box .lower-content .text {
	position: relative;
	display: block;
	padding: 30px 40px 28px 30px;
}

.service-block-one .inner-box .lower-content .text h4 {
	position: relative;
	display: block;
	font-size: 20px;
	line-height: 28px;
	font-weight: 500;
	color: #fff;
	margin-bottom: 12px;
}

.service-block-one .inner-box .lower-content .text h4 a {
	display: inline-block;
	color: #fff;
}

.service-block-one .inner-box .lower-content .text h4 a:hover {}

.service-block-one .inner-box .lower-content .text p {
	color: #c3c4c8;
}

.service-block-one .inner-box .lower-content .lower-box {
	position: relative;
	display: flex;
	background: #fff;
	overflow: hidden;
	align-items: center;
	justify-content: space-between;
	padding-right: 40px;
	transition: all 500ms ease;
}

.service-block-one .inner-box:hover .lower-content .lower-box {}

.service-block-one .inner-box .lower-content .lower-box .arrow-icon li {
	position: relative;
	display: inline-block;
	float: left;
	font-size: 50px;
	color: #e8eaed;
	margin-left: -13px;
	transition: all 500ms ease;
}

.service-block-one .inner-box .lower-content .lower-box .arrow-icon li:first-child {
	margin-left: 0px;
}

.service-block-one .inner-box:hover .lower-content .lower-box .arrow-icon li {
	color: #121113;
}

.service-block-one .inner-box .lower-content .lower-box .link a {
	position: relative;
	display: inline-block;
	font-size: 14px;
	line-height: 20px;
	font-family: 'Lexend', sans-serif;
	font-weight: 600;
	text-transform: uppercase;
	color: #121113;
}

.service-block-one .inner-box .lower-content .lower-box .link a i {
	position: relative;
	margin-right: 6px;
	font-size: 12px;
	top: 1px;
	opacity: 0;
	transition: all 500ms ease;
}

.service-block-one .inner-box:hover .lower-content .lower-box .link a i {
	opacity: 1;
}

.service-section .owl-dots {
	position: relative;
	display: block;
	text-align: center;
	margin-top: 55px;
}

.service-section .owl-theme .owl-dots .owl-dot span {
	position: relative;
	display: inline-block;
	background: transparent;
	margin: 0px 18px;
}

.service-section .owl-theme .owl-dots .owl-dot.active span:before {}

.service-section .owl-theme .owl-dots .owl-dot span:before {
	position: absolute;
	content: '0';
	text-align: center;
	font-size: 20px;
	font-family: 'Lexend', sans-serif;
	color: #c3c4c8;
	left: 0px;
	top: 0px;
	transition: all 500ms ease;
}

.service-section .owl-theme .owl-dots .owl-dot:first-child span:before {
	content: '01';
}

.service-section .owl-theme .owl-dots .owl-dot:nth-child(2) span:before {
	content: '02';
}

.service-section .owl-theme .owl-dots .owl-dot:nth-child(3) span:before {
	content: '03';
}

.service-section .owl-theme .owl-dots .owl-dot:nth-child(4) span:before {
	content: '04';
}

.service-section .owl-theme .owl-dots .owl-dot:nth-child(5) span:before {
	content: '05';
}

.service-section .owl-theme .owl-dots .owl-dot span:after {
	position: absolute;
	content: '';
	background: #bbbcc0;
	width: 2px;
	height: 3px;
	right: -23px;
	bottom: -4px;
}

.service-section .owl-theme .owl-dots .owl-dot:last-child span:after {
	display: none;
}

.service-section .owl-nav {
	position: absolute;
	left: 50%;
	bottom: 0px;
	transform: translateX(-50%);
	z-index: 1;
}

.service-section .owl-nav button {
	position: relative;
}

.service-section .owl-nav button span {
	display: none;
}

.service-section .owl-nav button.owl-prev:before {
	position: absolute;
	content: "\f106";
	font-family: 'flaticon';
	left: -113px;
	top: -14px;
	font-size: 24px;
	color: #4f4d52;
	transform: rotate(180deg);
	transition: all 500ms ease;
}

.service-section .owl-nav button.owl-next:before {
	position: absolute;
	content: "\f106";
	font-family: 'flaticon';
	right: -121px;
	top: -15px;
	font-size: 24px;
	color: #4f4d52;
	transition: all 500ms ease;
}

.service-section .owl-nav button:hover:before {
	color: #fff;
}

.service-section .shape .shape-1 {
	position: absolute;
	left: 100px;
	top: 205px;
	width: 137px;
	height: 13px;
	background-repeat: no-repeat;
}

.service-section .shape .shape-2 {
	position: absolute;
	right: 100px;
	bottom: 205px;
	width: 137px;
	height: 13px;
	background-repeat: no-repeat;
}

.float-bob-y {
	animation-name: float-bob-y;
	animation-duration: 2s;
	animation-iteration-count: infinite;
	animation-timing-function: linear;
	-webkit-animation-name: float-bob-y;
	-webkit-animation-duration: 2s;
	-webkit-animation-iteration-count: infinite;
	-webkit-animation-timing-function: linear;
	-moz-animation-name: float-bob-y;
	-moz-animation-duration: 2s;
	-moz-animation-iteration-count: infinite;
	-moz-animation-timing-function: linear;
	-ms-animation-name: float-bob-y;
	-ms-animation-duration: 2s;
	-ms-animation-iteration-count: infinite;
	-ms-animation-timing-function: linear;
	-o-animation-name: float-bob-y;
	-o-animation-duration: 2s;
	-o-animation-iteration-count: infinite;
	-o-animation-timing-function: linear;
}

.float-bob-x {
	animation-name: float-bob-x;
	animation-duration: 15s;
	animation-iteration-count: infinite;
	animation-timing-function: linear;
	-webkit-animation-name: float-bob-x;
	-webkit-animation-duration: 15s;
	-webkit-animation-iteration-count: infinite;
	-webkit-animation-timing-function: linear;
	-moz-animation-name: float-bob-x;
	-moz-animation-duration: 15s;
	-moz-animation-iteration-count: infinite;
	-moz-animation-timing-function: linear;
	-ms-animation-name: float-bob-x;
	-ms-animation-duration: 15s;
	-ms-animation-iteration-count: infinite;
	-ms-animation-timing-function: linear;
	-o-animation-name: float-bob-x;
	-o-animation-duration: 15s;
	-o-animation-iteration-count: infinite;
	-o-animation-timing-function: linear;
}


/** courses-section **/

.courses-section {
	position: relative;
	padding: 111px 0px 120px 0px;
	overflow: hidden;
}

.courses-section .left-column .inner-box {
	position: relative;
	display: block;
	padding-left: 50px;
	padding-right: 35px;
}

.courses-section .right-column .inner-box {
	position: relative;
	display: block;
	padding-left: 35px;
	padding-right: 50px;
}

.courses-section .left-column .inner-box .image-box {
	position: relative;
	display: block;
	clip-path: polygon(0% 0%, 88% 0%, 100% 15%, 100% 100%, 80% 100%, 21% 100%, 0% 73%, 0% 20%);
	margin-bottom: 95px;
}

.courses-section .right-column .inner-box .image-box {
	position: relative;
	display: block;
	clip-path: polygon(12% 0%, 100% 0%, 100% 0%, 100% 74%, 79% 100%, 0% 100%, 0% 100%, 0% 16%);
	margin-top: 95px;
}

.courses-section .inner-box .image-box:before {
	position: absolute;
	content: '';
	background: #000;
	width: 100%;
	height: 100%;
	left: 0px;
	top: 0px;
	opacity: 0.2;
}

.courses-section .left-column .inner-box .image-box img {
	width: 100%;
}

.courses-section .left-column .inner-box .image-box .text {
	position: absolute;
	top: 0px;
	right: 0px;
	width: 140px;
	padding: 20px 15px 21px 25px;
}

.courses-section .right-column .inner-box .image-box .text {
	position: absolute;
	top: 0px;
	left: 0px;
	width: 140px;
	padding: 20px 15px 21px 25px;
	text-align: right;
}

.courses-section .inner-box .image-box .text h6 {
	display: block;
	font-size: 14px;
	line-height: 20px;
	font-weight: 600;
	text-transform: uppercase;
	margin-bottom: 1px;
	color: #FFF
}

.courses-section .inner-box .image-box .text h2 {
	display: inline-block;
	font-size: 48px;
	line-height: 50px;
	font-weight: 500;
	padding-right: 15px;
	margin-bottom: 8px;
	color: #FFF
}

.courses-section .inner-box .image-box .text h2 span {
	position: absolute;
	right: 0px;
	bottom: -10px;
	font-size: 20px;
	color: #FFF
}

.courses-section .inner-box .image-box .text h5 {
	display: block;
	font-size: 16px;
	line-height: 20px;
	font-weight: 500;
	color: #FFF
}

.courses-section .content-box {
	position: relative;
	display: block;
}

.courses-section .content-box h6 {
	display: block;
	font-size: 14px;
	line-height: 20px;
	font-weight: 600;
	color: #75767b;
	text-transform: uppercase;
	margin-bottom: 7px;
}

.courses-section .content-box h2 {
	position: relative;
	display: block;
	font-size: 36px;
	line-height: 46px;
	font-weight: 500;
	margin-bottom: 24px;
}

.courses-section .content-box p {
	margin-bottom: 30px;
}

.courses-section .content-box .inner {
	position: relative;
	display: block;
	margin-bottom: 38px;
}

.courses-section .content-box .inner .single-item {
	position: relative;
	display: block;
	padding: 0px 0px 0px 63px;
}

.courses-section .content-box .inner .single-item:before {
	position: absolute;
	content: '';
	background: #e2e3e6;
	width: 1px;
	height: 44px;
	top: 3px;
	right: 0px;
}

.courses-section .content-box .inner .single-column:last-child .single-item:before {
	display: none;
}

.courses-section .content-box .inner .single-item .icon-box {
	position: absolute;
	left: 0px;
	top: 3px;
}

.courses-section .content-box .inner .single-item h6 {
	font-weight: 500;
	text-transform: uppercase;
	margin-bottom: 9px;
}

.courses-section .content-box .inner .single-item h6 a {
	display: inline-block;
	color: #121113;
}

.courses-section .content-box .inner .single-item h6 a:hover {}

.courses-section .content-box .inner .single-item span {
	display: block;
	font-size: 16px;
	line-height: 20px;
	color: #75767b;
	font-weight: 500;
}

.courses-section .content-box .lower-content {
	position: relative;
	display: block;
	text-align: center;
	padding: 11px 15px 15px 15px;
	background: #ef5a24;
}

.courses-section .content-box .lower-content h5 {
	position: relative;
	display: inline-block;
	font-size: 16px;
	line-height: 20px;
	font-weight: 500;
	padding-left: 30px;
	color: #fff;
	margin-bottom: 0px;
}

.courses-section .content-box .lower-content h5 i {
	position: absolute;
	left: 0px;
	top: 2px;
	font-size: 20px;
}

.courses-section .line-box {
	position: absolute;
	left: 0px;
	top: 0px;
	right: 0px;
	max-width: 1170px;
	width: 100%;
	height: 100%;
	margin: 0 auto;
}

.courses-section .line-box .line {
	position: absolute;
	background: #e8eaed;
	width: 1px;
	height: 100%;
	top: 0px;
}

.courses-section .line-box .line-1 {
	left: 0px;
}

.courses-section .line-box .line-2 {
	left: 50%;
}

.courses-section .line-box .line-3 {
	right: 0px;
}

.courses-section .line-box .line-1:before {
	position: absolute;
	content: '';
	background-image: url(../images/shape/shape-13.png);
	width: 14px;
	height: 72px;
	background-repeat: no-repeat;
	left: -7px;
	bottom: 120px;
}

.courses-section .line-box .line-2:before {
	position: absolute;
	content: '';
	background-image: url(../images/shape/shape-14.png);
	width: 14px;
	height: 100%;
	background-repeat: no-repeat;
	left: -7px;
	bottom: 0px;
	animation: slide 60s linear infinite;
	-webkit-animation: slide 60s linear infinite;
}

.courses-section .line-box .line-3:before {
	position: absolute;
	content: '';
	background-image: url(../images/shape/shape-13.png);
	width: 14px;
	height: 72px;
	background-repeat: no-repeat;
	left: -7px;
	top: 120px;
}

@keyframes slide {
	from {
		background-position: 0 0;
	}

	to {
		background-position: 0px 1500px;
	}
}

@-webkit-keyframes slide {
	from {
		background-position: 0 0;
	}

	to {
		background-position: 0px 1500px;
	}
}

.courses-section .pattern-layer {
	position: absolute;
	left: 0px;
	top: 0px;
	width: 743px;
	height: 600px;
	background-repeat: no-repeat;
}

/** highlights-section **/

.highlights-section {
	position: relative;
	background: #121113;
	padding: 18px 0px;
	padding-left: 50px;
}

.highlights-section .single-item h4 {
	position: relative;
	display: block;
	font-size: 20px;
	line-height: 30px;
	font-weight: 500;
	color: #fff;
	font-style: italic;
	padding-left: 38px;
}

.highlights-section .single-item h4 i {
	position: absolute;
	left: 0px;
	top: 4px;
	font-style: normal;
}

.highlights-section .owl-carousel .owl-stage-outer {
	overflow: visible;
}


/** find-section **/

.find-section {
	position: relative;
}

.find-section .upper-box .bg-color {
	position: absolute;
	left: 0px;
	top: 0px;
	width: 50%;
	height: calc(100% - 320px);
	background: #fff;
}

.find-section .bg-layer {
	position: absolute;
	top: 0px;
	right: 0px;
	width: 50%;
	height: 100%;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
}

.find-section .bg-layer:before {
	position: absolute;
	content: '';
	background: -webkit-linear-gradient(0deg, rgba(18, 17, 19, 1)0%, rgba(18, 18, 19, 0.0) 15%);
	width: 100%;
	height: 100%;
	left: 0px;
	top: 0px;
}

.find-section .bg-layer:after {
	position: absolute;
	content: '';
	width: 100%;
	height: 100%;
	left: 0px;
	bottom: 0px;
	background: -webkit-linear-gradient(90deg, rgba(18, 17, 19, 1), rgba(18, 18, 19, 0.0) 100%);
}

.find-section .upper-box {
	padding: 111px 0px 120px 0px;
}

.find-section .upper-box .content-box p {
	margin-bottom: 33px;
}

.find-section .upper-box .content-box form .form-group {
	position: relative;
	margin-bottom: 0px;
	max-width: 370px;
	width: 100%;
}

.find-section .upper-box .content-box form .form-group input[type='text'] {
	position: relative;
	display: block;
	width: 100%;
	height: 58px;
	background: #f6f6f7;
	border: 1px solid #f6f6f7;
	padding: 10px 30px;
	font-size: 16px;
	font-family: 'Lexend', sans-serif;
	font-weight: 500;
	color: #a6a7ab;
	margin-bottom: 20px;
	transition: all 500ms ease;
}

.find-section .upper-box .content-box form .form-group input:focus {}

.find-section .upper-box .content-box .sec-title {
	margin-bottom: 21px;
}

.find-section .upper-box .content-box form .form-group .theme-btn {
	padding: 13px 40px;
}

.find-section .lower-box {
	position: relative;
	padding: 120px 100px 120px 100px;
}

.find-section .lower-box .bg-color {
	position: absolute;
	left: 0px;
	top: 0px;
	width: 50%;
	height: 100%;
	background: #121113;
}

.find-section .lower-box .clients-logo {
	position: relative;
	display: block;
}

.find-section .lower-box .clients-logo:before {
	position: absolute;
	content: '';
	background: rgba(255, 255, 255, 0.20);
	width: 1px;
	height: 100%;
	top: 0px;
	right: 1px;
}

.find-section .lower-box .clients-logo img {
	position: relative;
	display: block;
	max-width: auto;
	margin: 0 auto;
}

.find-section .upper-box {
	position: relative;
}

.find-section .upper-box .shape .shape-1 {
	position: absolute;
	left: 0px;
	bottom: 0px;
	width: 375px;
	height: 210px;
	background-repeat: no-repeat;
}

.find-section .upper-box .shape .shape-2 {
	position: absolute;
	left: 0px;
	bottom: 165px;
	width: 130px;
	height: 228px;
	background-repeat: no-repeat;
}

.find-section .upper-box .shape .shape-3 {
	position: absolute;
	left: 175px;
	bottom: 100px;
	width: 137px;
	height: 13px;
	background-repeat: no-repeat;
}


/** process-section **/

.process-section {
	position: relative;
	padding: 120px 0px;
}

.process-section .left-column .inner-box {
	position: relative;
	display: block;
	margin-right: 30px;
}

.process-section .left-column .inner-box .sec-title {
	margin-bottom: 43px;
}

.process-section .left-column .inner-box .sec-title h2 {
	margin-bottom: 11px;
}

.process-section .left-column .inner-box .image-box {
	position: relative;
	display: block;
	margin-bottom: 33px;
}

.process-section .left-column .inner-box .image-box .image {
	position: relative;
	display: block;
}

.process-section .left-column .inner-box .image-box .image img {
	width: 100%;
}

.process-section .left-column .inner-box .image-box .video-btn {
	position: absolute;
	left: 20px;
	bottom: 20px;
	z-index: 1;
}

.process-section .left-column .inner-box .image-box .video-btn a {
	position: relative;
	display: inline-block;
	width: 90px;
	height: 52px;
	font-size: 24px;
	color: #fff;
	text-align: center;
	line-height: 58px;
	background: rgba(0, 0, 0, 0.50);
}

.process-section .left-column .inner-box .image-box .video-btn a:hover {
	background: rgba(0, 0, 0, 1);
}

.process-section .left-column .inner-box .single-item {
	position: relative;
	display: block;
	padding: 0px 0px 0px 75px;
}

.process-section .left-column .inner-box .single-item .icon {
	position: absolute;
	left: 0px;
	top: 7px;
}

.process-section .left-column .inner-box .single-item h3 {
	position: relative;
	display: block;
	font-size: 24px;
	line-height: 34px;
	font-weight: 500;
	margin-bottom: 5px;
}

.process-section .left-column .inner-box .single-item p {
	position: relative;
	display: block;
}

.process-section .left-column .inner-box .single-item p a {
	position: relative;
	display: inline-block;
	margin-left: 8px;
	font-size: 14px;
	line-height: 26px;
	font-family: 'Lexend', sans-serif;
	font-weight: 700;
	text-transform: uppercase;
	color: #121113;
}

.process-section .left-column .inner-box .single-item p a i {
	position: relative;
	font-size: 10px;
	margin-right: 6px;
}

.process-section .left-column .inner-box .single-item p a:hover {}

.process-section .left-column .inner-box .shape {
	position: absolute;
	left: -100px;
	top: 0px;
	width: 431px;
	height: 662px;
	background-repeat: no-repeat;
}

.process-section .right-column .inner-box .single-item {
	position: relative;
	display: block;
	max-width: 370px;
	margin-bottom: 43px;
}

.process-section .right-column .inner-box .single-item:nth-child(2) {
	margin-left: 200px;
}

.process-section .right-column .inner-box .single-item .count-text {
	position: absolute;
	top: -9px;
	right: 0px;
	font-size: 115px;
	line-height: 100px;
	font-family: 'Lexend', sans-serif;
	font-weight: 400;
	color: rgba(255, 255, 255, 1);
	text-shadow: -1px -1px 0 #e8eaed, 1px -1px 0 #e8eaed, -1px 1px 0 #e8eaed, 1px 1px 0 #e8eaed;
}

.process-section .right-column .inner-box .single-item .icon {
	position: relative;
	margin-bottom: 27px;
}

.process-section .right-column .inner-box .single-item h4 {
	position: relative;
	display: block;
	font-size: 20px;
	line-height: 24px;
	font-weight: 500;
	margin-bottom: 14px;
}

.process-section .right-column .inner-box .single-item h4 a {
	display: inline-block;
	color: #121113;
}

.process-section .right-column .inner-box .single-item h4 a:hover {}

.process-section .right-column .inner-box .single-item .arrow-shape {
	position: absolute;
	right: -174px;
	top: 42px;
	width: 145px;
	height: 130px;
	background-repeat: no-repeat;
}

.process-section .right-column .inner-box .single-item .arrow-shape-2 {
	position: absolute;
	left: -200px;
	top: 23px;
	width: 145px;
	height: 130px;
	background-repeat: no-repeat;
}

.process-section .right-column .inner-box .btn-box .theme-btn {
	padding: 13px 40px;
}

.process-section .right-column .inner-box .btn-box {
	padding-top: 10px;
}


/** pricing-section **/

.pricing-section {
	position: relative;
	padding: 60px 0px 100px 0px;
	background: #f6f6f7;
}

.pricing-block-one .pricing-table {
	position: relative;
	display: block;
	background: #fff;
	box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.10);
	overflow: hidden;
}

.pricing-block-one .pricing-table .table-header {
	position: relative;
	display: block;
	padding: 31px 35px 24px 35px;
}

.pricing-block-one .pricing-table .table-header h2 {
	position: relative;
	display: inline-block;
	font-size: 60px;
	line-height: 60px;
	font-weight: 600;
	padding-left: 20px;
	padding-right: 43px;
}

.pricing-block-one .pricing-table .table-header h2 .symble {
	position: absolute;
	left: 0px;
	top: -10px;
	font-size: 24px;
}

.pricing-block-one .pricing-table .table-header h2 .text {
	position: absolute;
	top: -12px;
	right: 0px;
	font-size: 26px;
}

.pricing-block-one .pricing-table .table-header h2 .course {
	position: absolute;
	right: -57px;
	bottom: -17px;
	font-size: 14px;
	color: #a6a7ab;
	text-transform: uppercase;
	font-weight: 600;
}

.pricing-block-one .pricing-table .package-box {
	position: relative;
	display: block;
	background: #f6f6f7;
	padding: 16px 40px 15px 40px;
}

.pricing-block-one .pricing-table .package-box h4 {
	display: block;
	font-size: 20px;
	line-height: 30px;
	font-weight: 500;
	margin-bottom: 3px;
}

.pricing-block-one .pricing-table .table-content {
	position: relative;
	display: block;
	padding: 20px 40px 40px 40px;
}

.pricing-block-one .pricing-table .feature-list li {
	position: relative;
	display: block;
	font-size: 16px;
	font-weight: 500;
	font-family: 'Lexend', sans-serif;
	color: #121113;
	padding: 13px 0px;
	border-bottom: 1px solid #e8eaed;
}

.pricing-block-one .pricing-table .feature-list li span {
	float: right;
	color: #75767b;
	font-family: 'Inter', sans-serif;
}

.pricing-block-one .pricing-table .feature-list li:last-child {
	border-bottom: none !important;
}

.pricing-block-one .pricing-table .feature-list {
	margin-bottom: 20px;
}

.pricing-section .sec-title {
	margin-bottom: 10px;
}

.pricing-block-one.active-block {
	margin-top: -53px;
}

.pricing-block-one.active-block .pricing-table {
	background: #121113;
}

.pricing-block-one.active-block .pricing-table .table-header h2 {}

.pricing-block-one.active-block .pricing-table .table-header h2 .course {}

.pricing-block-one.active-block .pricing-table .feature-list li {
	color: #fff;
	border-bottom: 1px solid #414142;
}

.pricing-block-one.active-block .pricing-table .feature-list li span {
	color: #fff;
}

.pricing-block-one.active-block .pricing-table .theme-btn {
	background: #fff;
	color: #121113;
}

.pricing-block-one .pricing-table .table-header .popular {
	position: absolute;
	top: 19px;
	right: -39px;
	font-size: 16px;
	line-height: 20px;
	font-family: 'Lexend', sans-serif;
	font-weight: 600;
	background: #0e7039;
	color: #121113;
	padding: 12.5px 15px;
	text-align: center;
	text-transform: uppercase;
	width: 163px;
	transform: rotate(45deg);
}


/** highlights-style-two **/

.highlights-style-two {
	position: relative;
	padding: 111px 0px 120px 0px;
	background: #121113;
}

.highlights-style-two .sec-title {
	max-width: 550px;
}

.highlights-style-two .sec-title h2 {
	margin-bottom: 21px;
}

.highlights-style-two .sec-title p {
	color: #c3c4c8;
}

.highlights-style-two .single-item {
	position: relative;
	display: block;
	background: #fff;
	padding: 34px 30px 33px 40px;
	margin-bottom: 30px;
}

.highlights-style-two .single-item .inner {
	position: relative;
	padding-left: 90px;
}

.highlights-style-two .single-item .inner .icon-list {
	position: absolute;
	left: 0px;
	top: 10px;
}

.highlights-style-two .single-item .inner .icon-list li {
	position: relative;
	display: inline-block;
	float: left;
	font-size: 44px;
	margin-left: -13px;
	transition: all 500ms ease;
}

.highlights-style-two .single-item .inner .icon-list li:first-child {
	margin-left: 0px;
}

.highlights-style-two .single-item .inner .icon-list li:last-child {
	position: absolute;
	left: 45px;
	top: 0px;
	opacity: 0;
}

.highlights-style-two .single-item:hover .inner .icon-list li:last-child {
	opacity: 1;
}

.highlights-style-two .single-item .inner h4 {
	position: relative;
	display: block;
	font-size: 20px;
	line-height: 30px;
	font-weight: 500;
	margin-bottom: 11px;
}

.highlights-style-two .single-item .inner h4 a {
	display: inline-block;
	color: #121113;
}

.highlights-style-two .single-item .inner h4 a:hover {}

.highlights-style-two .single-column:first-child .single-item {
	clip-path: polygon(0% 0%, 100% 0%, 100% 0%, 100% 65%, 90% 100%, 0% 100%, 0% 100%, 0% 0%);
}

.highlights-style-two .single-column:nth-child(2) .single-item {
	clip-path: polygon(0% 0%, 100% 0%, 100% 15%, 100% 100%, 80% 100%, 11% 100%, 0% 65%, 0% 20%);
}

.highlights-style-two .single-column:nth-child(3) .single-item {
	clip-path: polygon(0% 0%, 90% 0%, 100% 36%, 100% 100%, 80% 100%, 21% 100%, 0% 100%, 0% 20%);
}

.highlights-style-two .single-column:last-child .single-item {
	clip-path: polygon(11% 0%, 100% 0%, 100% 0%, 100% 70%, 100% 100%, 0% 100%, 0% 100%, 0% 36%);
}

.highlights-style-two .bg-layer {
	position: absolute;
	top: 0px;
	right: 0px;
	width: 50%;
	height: 100%;
	background-size: cover;
	background-repeat: no-repeat;
	clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%, 61% 0%);
}

.highlights-style-two .shape .shape-1 {
	position: absolute;
	left: 0px;
	top: 260px;
	width: 240px;
	height: 359px;
	background-repeat: no-repeat;
}

.highlights-style-two .shape .shape-2 {
	position: absolute;
	left: 60%;
	top: 210px;
	width: 137px;
	height: 13px;
	background-repeat: no-repeat;
}


/** advanced-section **/

.advanced-section {
	position: relative;
	padding: 120px 0px;
}

.advanced-section .title-inner {
	position: relative;
	display: block;
	margin-right: 40px;
	margin-top: 11px;
}

.advanced-section .title-inner .sec-title {
	padding-bottom: 29px;
	margin-bottom: 33px;
	border-bottom: 4px solid #121113;
}

.advanced-section .title-inner .download-box {
	position: relative;
	display: block;
	padding: 0px 0px 0px 65px;
}

.advanced-section .title-inner .download-box .icon {
	position: absolute;
	left: 0px;
	top: 7px;
	display: inline-block;
	width: 45px;
	height: 45px;
	line-height: 51px;
	background: #121113;
	font-size: 20px;
	text-align: center;
}

.advanced-section .title-inner .download-box h4 {
	position: relative;
	display: block;
	font-size: 20px;
	line-height: 30px;
	font-weight: 500;
	margin-bottom: 2px;
}

.advanced-section .title-inner .download-box h4 a {
	position: relative;
	display: inline-block;
	color: #121113;
}

.advanced-section .title-inner .download-box h4 a:hover {}

.advanced-section .title-inner .download-box h5 {
	display: block;
	font-size: 16px;
	line-height: 26px;
	font-weight: 500;
	color: #75767b;
	text-transform: uppercase;
}

.advanced-section .image-box {
	position: relative;
	display: block;
	text-align: center;
}

.advanced-section .image-box .shape {
	position: absolute;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 438px;
	background-repeat: no-repeat;
	background-position: center;
}

.advanced-section .image-box .image {
	position: relative;
	display: block;
}

.advanced-section .text-inner {
	position: relative;
	display: block;
	margin-top: 13px;
}

.advanced-section .text-inner p {
	margin-bottom: 29px;
}

.list-style-one li {
	position: relative;
	display: block;
	font-size: 18px;
	line-height: 26px;
	font-family: 'Lexend', sans-serif;
	font-weight: 500;
	color: #121113;
	padding-left: 25px;
	margin-bottom: 20px;
}

.list-style-one li:last-child {
	margin-bottom: 0px;
}

.list-style-one li:before {
	position: absolute;
	content: "\f106";
	font-family: 'flaticon';
	font-size: 14px;
	left: 0px;
	top: 1px;
}


/** testimonial-section **/

.testimonial-section {
	position: relative;
	padding: 120px 0px 120px 0px;
	overflow: hidden;
}

.testimonial-section .bg-layer {
	position: absolute;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: left center;
	background-attachment: fixed;
}

.testimonial-section .bg-layer:before {
	position: absolute;
	content: '';
	background: #121113;
	width: 100%;
	height: 100%;
	left: 0px;
	top: 0px;
	opacity: 0.7;
}

.testimonial-section .bg-layer:after {
	position: absolute;
	content: '';
	background: -webkit-linear-gradient(-180deg, rgba(18, 17, 19, 1)50%, rgba(18, 18, 19, 0.0) 100%);
	width: 100%;
	height: 100%;
	left: 0px;
	top: 0px;
}

.testimonial-section .title-inner {
	position: relative;
	display: block;
}

.testimonial-section .title-inner .sec-title {
	margin-bottom: 26px;
}

.testimonial-section .title-inner .sec-title h2 {
	margin-bottom: 16px;
}

.testimonial-section .title-inner .sec-title p {
	color: #fff;
}

.testimonial-section .title-inner .rating-box {
	position: relative;
	display: block;
	margin-bottom: 13px;
}

.testimonial-section .title-inner .rating-box h4 {
	display: block;
	font-size: 20px;
	line-height: 30px;
	color: #fff;
	font-weight: 500;
	margin-bottom: 12px;
}

.testimonial-section .title-inner .rating-box .rating li {
	position: relative;
	display: inline-block;
	float: left;
	width: 35px;
	height: 35px;
	line-height: 41px;
	font-size: 20px;
	color: #FFC107;
	text-align: center;
	margin-right: 5px;
}

.testimonial-section .title-inner .rating-box .rating li:last-child {
	margin: 0px !important;
}

.testimonial-section .title-inner .review-box p {
	position: relative;
	display: block;
	font-size: 16px;
	font-weight: 500;
	color: #fff;
	margin-bottom: 33px;
}

.testimonial-section .title-inner .review-box .theme-btn {
	background: #fff;
	color: #121113;
	padding: 13px 46px;
}

.testimonil-block-one .inner-box {
	position: relative;
	display: block;
	padding: 34px 30px 40px 40px;
	border: 2px solid #3a383c;
	border-top: none;
	border-right: none;
}

.testimonil-block-one .inner-box:before {
	position: absolute;
	content: '';
	border-top: 2px solid #3a383c;
	width: calc(100% - 100px);
	left: 0px;
	top: 0px;
}

.testimonil-block-one .inner-box:after {
	position: absolute;
	content: '';
	border-right: 2px solid #3a383c;
	height: calc(100% - 100px);
	right: 0px;
	bottom: 0px;
}

.testimonil-block-one .inner-box .border-box {
	position: absolute;
	top: -20px;
	right: 50px;
	background: #3a383c;
	transform: rotate(-45deg);
	height: 141px;
	width: 2px;
}

.testimonil-block-one .inner-box .rating li {
	position: relative;
	display: inline-block;
	float: left;
	font-size: 20px;
	margin-right: 5px;
}

.testimonil-block-one .inner-box .rating li:last-child {
	margin: 0px !important;
}

.testimonil-block-one .inner-box .rating {
	margin-bottom: 12px;
}

.testimonil-block-one .inner-box h4 {
	display: block;
	font-size: 20px;
	line-height: 30px;
	color: #fff;
	font-weight: 500;
	margin-bottom: 20px;
}

.testimonil-block-one .inner-box p {
	display: block;
	color: #c3c4c8;
	margin-bottom: 33px;
}

.testimonil-block-one .inner-box .author-box {
	position: relative;
	display: block;
	padding: 7px 0px 9px 85px;
}

.testimonil-block-one .inner-box .author-box .author-thumb {
	position: absolute;
	left: 0px;
	top: 0px;
	width: 70px;
	height: 70px;
	border: 3px solid #fff;
	border-radius: 50%;
}

.testimonil-block-one .inner-box .author-box .author-thumb img {
	width: 100%;
	border-radius: 50%;
}

.testimonil-block-one .inner-box .author-box h4 {
	margin-bottom: 4px;
}

.testimonil-block-one .inner-box .author-box h6 {
	display: block;
	font-size: 14px;
	line-height: 20px;
	font-weight: 600;
	text-transform: uppercase;
}

.testimonil-block-one .inner-box .bg-shape {
	position: absolute;
	left: 0px;
	bottom: 0px;
	width: 120px;
	height: 110px;
	background: #38363a;
	clip-path: polygon(0% 0%, 30% 0%, 100% 100%, 0% 100%, 0% 0%);
}

.testimonial-section .pattern-layer {
	position: absolute;
	right: 60px;
	top: 50%;
	transform: translateY(-50%);
	width: 183px;
	height: 21px;
	background-repeat: no-repeat;
}


/** news-section **/

.news-section {
	position: relative;
	padding: 111px 0px 120px 0px;
}

.news-block-one .inner-box {
	position: relative;
	display: block;
	transition: all 500ms ease;
}

.news-block-one .inner-box:hover {
	box-shadow: 0px 10px 40px 0px rgba(0, 0, 0, 0.10);
}

.news-block-one .inner-box .image-box {
	position: relative;
	display: block;
	overflow: hidden;
}

.news-block-one .inner-box .image-box .category {
	position: absolute;
	left: 0px;
	top: 0px;
	width: 150px;
	font-size: 14px;
	line-height: 40px;
	font-family: 'Lexend', sans-serif;
	font-weight: 600;
	text-transform: uppercase;
	text-align: center;
	color: #CDDC39;
	border-bottom: 5px solid #fff;
	border-right: 5px solid #fff;
	z-index: 1;
}

.news-block-one .inner-box .image-box .image {
	position: relative;
	display: block;
	overflow: hidden;
}

.news-block-one .inner-box .image-box .image img {
	width: 100%;
	transition: all 500ms ease;
}

.news-block-one .inner-box:hover .image-box .image img {
	transform: scale(1.05);
}

.news-block-one .inner-box .lower-content {
	position: relative;
	display: block;
	padding: 20px 30px 16px 30px;
	background: #f6f6f7;
	clip-path: polygon(0% 0%, 100% 0%, 100% 0%, 100% 60%, 85% 100%, 0% 100%, 0% 100%, 0% 0%);
	transition: all 500ms ease;
}

.news-block-one .inner-box:hover .lower-content {
	clip-path: polygon(0% 0%, 100% 0%, 100% 0%, 100% 100%, 90% 100%, 0% 100%, 0% 100%, 0% 0%);
	background: #fff;
}

.news-block-one .inner-box .lower-content h4 {
	position: relative;
	display: block;
	font-size: 20px;
	line-height: 30px;
	font-weight: 500;
	padding-bottom: 18px;
	margin-bottom: 17px;
	border-bottom: 1px solid #e2e3e6;
}

.news-block-one .inner-box .lower-content h4 a {
	position: relative;
	display: inline-block;
	color: #121113;
}

.news-block-one .inner-box .lower-content h4 a:hover {}

.news-block-one .inner-box .lower-content .post-info li {
	position: relative;
	display: inline-block;
	float: left;
	margin-right: 20px;
	font-size: 16px;
	font-family: 'Lexend', sans-serif;
	color: #75767b;
	padding-left: 22px;
}

.news-block-one .inner-box .lower-content .post-info li:last-child {
	margin: 0px !important;
}

.news-block-one .inner-box .lower-content .post-info li i {
	position: absolute;
	left: 0px;
	top: 5px;
}

.news-block-one .inner-box .lower-content .post-info li a {
	color: #75767b;
}

.news-block-one .inner-box .lower-content .post-info li a:hover {}

.news-block-one .inner-box .lower-content .link-box a {
	position: relative;
	display: inline-block;
	font-size: 12px;
	color: #121113;
	opacity: 0;
}

.news-block-one .inner-box .lower-content .link-box a:hover {}

.news-block-one .inner-box .lower-content .link-box a i {
	margin: 0px -1px;
}

.news-block-one .inner-box:hover .lower-content .link-box a {
	opacity: 1;
}


/** newsletter-section **/

.newsletter-section {
	position: relative;
	padding: 57px 0px 120px 0px;
}

.newsletter-section .big-text {
	position: relative;
	display: block;
	font-size: 200px;
	line-height: 200px;
	font-family: 'Lexend', sans-serif;
	font-weight: 700;
	margin-bottom: 36px;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 1);
	text-shadow: -1px -1px 0 #f1f2f4, 1px -1px 0 #f1f2f4, -1px 1px 0 #f1f2f4, 1px 1px 0 #f1f2f4;
}

.newsletter-section .single-item {
	position: relative;
	display: block;
	padding-left: 240px;
}

.newsletter-section .single-item .image {
	position: absolute;
	left: 0px;
	top: 0px;
	width: 240px;
}

.newsletter-section .single-item .content-box {
	position: relative;
	display: block;
	text-align: center;
	padding: 45px 30px;
}

.newsletter-section .single-item .content-box .icon-box {
	position: relative;
	display: inline-block;
	width: 52px;
	height: 52px;
	line-height: 58px;
	text-align: center;
	font-size: 26px;
	background: #121113;
	border-radius: 50%;
	margin-bottom: 17px;
}

.newsletter-section .single-item .content-box h2 {
	display: block;
	font-size: 30px;
	line-height: 40px;
	font-weight: 500;
	margin-bottom: 7px;
}

.newsletter-section .single-item .content-box p {
	color: #121113;
	margin-bottom: 24px;
}

.newsletter-section .single-item .content-box .download-box h6 {
	position: relative;
	display: block;
	background: #fff;
	padding: 19px 60px 16px 20px;
	font-size: 14px;
	font-weight: 600;
	text-transform: uppercase;
	text-align: left;
}

.newsletter-section .single-item .content-box .download-box h6 button {
	position: absolute;
	top: 0px;
	right: 0px;
	width: 52px;
	height: 52px;
	line-height: 52px;
	font-size: 20px;
	color: #fff;
	background: #121113;
	text-align: center;
	cursor: pointer;
}

.newsletter-section .single-column:last-child .single-item {
	background: #121113;
}

.newsletter-section .single-column:last-child .single-item .content-box .icon-box {
	color: #121113;
}

.newsletter-section .single-column:last-child .single-item .content-box h2 {
	color: #fff;
}

.newsletter-section .single-column:last-child .single-item .content-box p {
	color: #c3c4c8;
}

.newsletter-section .single-item .content-box .subscribe-form .form-group {
	position: relative;
	margin-bottom: 0px;
}

.newsletter-section .single-item .content-box .subscribe-form .form-group input[type='email'] {
	position: relative;
	display: block;
	width: 100%;
	height: 52px;
	font-size: 16px;
	color: #7d7a78;
	background: #fff;
	padding: 10px 70px 10px 20px;
	border: 1px solid #fff;
	transition: all 500ms ease;
}

.newsletter-section .single-item .content-box .subscribe-form .form-group button {
	position: absolute;
	top: 0px;
	right: 0px;
	width: 52px;
	height: 52px;
	line-height: 58px;
	font-size: 24px;
	color: #121113;
	text-align: center;
	cursor: pointer;
	transition: all 500ms ease;
}

.newsletter-section .shape .shape-1 {
	position: absolute;
	left: 100px;
	top: 0px;
	width: 226px;
	height: 76px;
	background-repeat: no-repeat;
}

.newsletter-section .shape .shape-2 {
	position: absolute;
	left: 500px;
	top: 0px;
	width: 303px;
	height: 161px;
	background-repeat: no-repeat;
}

.newsletter-section .shape .shape-3 {
	position: absolute;
	left: 50%;
	top: 0px;
	width: 183px;
	height: 21px;
	background-repeat: no-repeat;
}

.newsletter-section .shape .shape-4 {
	position: absolute;
	top: 0px;
	right: 370px;
	width: 49px;
	height: 30px;
	background-repeat: no-repeat;
}

.newsletter-section .shape .shape-5 {
	position: absolute;
	right: 0px;
	bottom: 87px;
	width: 713px;
	height: 579px;
	background-repeat: no-repeat;
}

.newsletter-section .shape .shape-6 {
	position: absolute;
	right: 250px;
	bottom: 87px;
	width: 587px;
	height: 462px;
	background-repeat: no-repeat;
}

.newsletter-section .shape .shape-7 {
	position: absolute;
	left: 280px;
	bottom: 83px;
	width: 49px;
	height: 30px;
	background-repeat: no-repeat;
}

.newsletter-section .shape .shape-8 {
	position: absolute;
	left: 150px;
	bottom: 305px;
	width: 75px;
	height: 4px;
}

.newsletter-section .shape .shape-9 {
	position: absolute;
	left: 100px;
	top: 220px;
	width: 178px;
	height: 20px;
	background-repeat: no-repeat;
}


/** main-footer **/

.main-footer {
	position: relative;
	background: #121113;
}

.main-footer .bg-layer {
	position: absolute;
	top: 0px;
	left: 0px;
	width: calc(50% - 230px);
	height: 100%;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
}

.main-footer .bg-layer:after {
	position: absolute;
	content: '';
	width: 100%;
	height: 100%;
	left: 0px;
	bottom: 0px;
	background: -webkit-linear-gradient(-180deg, rgba(18, 17, 19, 1)0%, rgba(18, 18, 19, 0.60) 100%);
}

.footer-top {
	position: relative;
	padding: 114px 0px 105px 0px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.footer-top .logo-widget .footer-logo {
	position: relative;
	display: block;
	margin-bottom: 24px;
}

.footer-top .logo-widget h4 {
	position: relative;
	display: block;
	font-size: 20px;
	line-height: 30px;
	color: #fff;
	font-weight: 500;
	margin-bottom: 7px;
}

.footer-top .logo-widget .list li {
	position: relative;
	display: block;
}

.footer-top .logo-widget .list li a {
	position: relative;
	display: block;
	font-size: 18px;
	line-height: 26px;
	font-family: 'Lexend', sans-serif;
	font-weight: 500;
	color: #fff;
	padding: 15px 0px 14px 0px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-top .logo-widget {
	margin-top: 6px;
}

.footer-top .logo-widget .list li a:before {
	position: absolute;
	content: "\f10e";
	font-family: 'flaticon';
	font-size: 40px;
	top: 13px;
	right: -15px;
	color: #fff;
	font-weight: 400;
	transition: all 500ms ease;
}

.footer-top .logo-widget .list li a:hover:before {
	opacity: 0;
}

.footer-top .logo-widget .list li a:after {
	position: absolute;
	content: "\f10f";
	font-family: 'flaticon';
	font-size: 16px;
	top: 15px;
	right: 0px;
	font-weight: 400;
	opacity: 0;
	transition: all 500ms ease;
}

.footer-top .logo-widget .list li a:hover:after {
	opacity: 1;
}

.footer-top .logo-widget .list {
	margin-bottom: 33px;
}

.footer-top .logo-widget .copyright p {
	display: block;
	color: #c3c4c8;
}

.footer-top .logo-widget .copyright p span {}

.ml_40 {
	margin-left: 40px;
}

.footer-top .widget-title {
	position: relative;
	display: block;
	padding-bottom: 13px;
	margin-bottom: 33px;
}

.footer-top .widget-title:before {
	position: absolute;
	content: '';
	width: 50px;
	height: 1px;
	left: 0px;
	bottom: 0px;
}

.footer-top .widget-title h4 {
	display: block;
	font-size: 20px;
	line-height: 30px;
	font-weight: 500;
	color: #fff;
}

.footer-top .links-widget .links-list li {
	position: relative;
	display: block;
	margin-bottom: 14px;
}

.footer-top .links-widget .links-list li:last-child {
	margin-bottom: 0px;
}

.footer-top .links-widget .links-list li a {
	position: relative;
	display: inline-block;
	font-size: 16px;
	line-height: 26px;
	color: #c3c4c8;
	padding-left: 22px;
}

.footer-top .links-widget .links-list li a:hover {}

.footer-top .links-widget .links-list li a:before {
	position: absolute;
	content: '';
	background: #75767b;
	width: 6px;
	height: 6px;
	left: 0px;
	top: 11px;
	transition: all 500ms ease;
}

.footer-top .links-widget .links-list li a:hover:before {}

.footer-top .gallery-widget .image-list {
	position: relative;
	margin: 0px -7.5px;
}

.footer-top .gallery-widget .image-list li {
	position: relative;
	display: inline-block;
	float: left;
	margin: 0px 7.5px 15px 7.5px;
	height: 80px;
}

.footer-top .gallery-widget .image-list li .image {
	position: relative;
	display: inline-block;
	width: 80px;
	height: 80px;
	overflow: hidden;
}

.footer-top .gallery-widget .image-list li .image img {
	width: 100%;
	transition: all 500ms ease;
}

.footer-top .gallery-widget .image-list li .image:hover img {
	opacity: 0.15;
}

.footer-top .gallery-widget .image-list li .image .view-btn {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%) scale(0, 0);
	font-size: 22px;
	color: #121113;
}

.footer-top .gallery-widget .image-list li .image:hover .view-btn {
	transform: translate(-50%, -50%) scale(1, 1);
}

.footer-top .gallery-widget .widget-title {
	margin-bottom: 40px;
}

.footer-bottom {
	position: relative;
	padding: 22px 0px;
}

.footer-bottom .list {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.footer-bottom .list li a {
	position: relative;
	display: inline-block;
	font-size: 16px;
	line-height: 26px;
	color: #c3c4c8;
}

.footer-bottom .list li a:hover {}


/*** 

====================================================================
												Home-Page-Two
====================================================================

***/

.home01_v2 .header-top {
	background: #81b4bf;
}

.home01_v2 .header-top .top-inner .single-item .icon {
	color: #fff;
}

.home01_v2 .header-top .top-inner .single-item h6 span {
	color: #fff;
}

.home01_v2 .header-top .top-inner .share-box li h6 i {
	color: #fff;
}

.home01_v2 .header-top .top-inner .share-box li a {
	color: #fff;
}

.home01_v2 .main-menu .navigation>li.current>a,
.home01_v2 .main-menu .navigation>li:hover>a {}

.theme-btn.btn-three {
	background: transparent;
	color: #3d3d3d;
	padding: 10px 36px;
}

.theme-btn.btn-three:hover {
	color: #fff;
}

.theme-btn.btn-three:before {
	opacity: 1;
}

.home01_v2 .theme-btn.btn-two {
	background: #81b4bf;
	color: #fff !important;
}

.home01_v2 .banner-section .owl-theme .owl-dots .owl-dot.active span:before {
	color: #fff;
}


/** funfact-section **/

.funfact-section {
	position: relative;
	padding: 100px 0px 100px 0px;
}

.funfact-section .title-box {
	position: relative;
	display: block;
	margin-bottom: 27px;
}

.funfact-section .title-box:before {
	position: absolute;
	content: '';
	background: #e4e0e0;
	width: 100%;
	height: 1px;
	left: 0px;
	top: 62px;
}

.funfact-section .title-box:after {
	position: absolute;
	content: '';
	background: #fff;
	width: 430px;
	height: 1px;
	left: 50%;
	transform: translateX(-50%);
	top: 62px;
}

.funfact-section .title-box .big-text {
	position: relative;
	display: block;
	font-size: 120px;
	line-height: 120px;
	font-family: 'Lexend', sans-serif;
	background-image: url(../images/icons/text-bg.png);
	color: transparent;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	font-weight: 700;
	z-index: 1;
	margin-bottom: 7px;
}

.funfact-section .title-box h4 {
	position: relative;
	display: block;
	font-size: 20px;
	line-height: 30px;
	color: #3d3d3d;
	font-weight: 500;
}

.funfact-block-one .inner-box {
	position: relative;
	display: block;
}

.funfact-block-one .inner-box:before {
	position: absolute;
	content: '';
	background: #e4e0e0;
	width: 1px;
	height: 118px;
	top: 0px;
	right: -15px;
}

.funfact-block:last-child .funfact-block-one .inner-box:before {
	display: none;
}

.funfact-block-one .inner-box .icon-box {
	position: relative;
	display: block;
	margin-bottom: 21px;
}

.funfact-block-one .inner-box .count-outer {
	position: relative;
	display: block;
	font-size: 46px;
	line-height: 50px;
	font-family: 'Lexend', sans-serif;
	font-weight: 600;
	margin-bottom: 4px;
}

.funfact-block-one .inner-box h4 {
	display: block;
	font-size: 20px;
	line-height: 30px;
	font-weight: 500;
	color: #3d3d3d;
}

.funfact-section .funfact-inner {
	position: relative;
	padding-bottom: 65px;
}

.funfact-section .funfact-inner .shape {
	position: absolute;
	left: 0px;
	bottom: 0px;
	width: 100%;
	height: 13px;
	background-repeat: repeat-x;
	animation: slide_2 60s linear infinite;
	-webkit-animation: slide_2 60s linear infinite;
}

@keyframes slide_2 {
	from {
		background-position: 0 0;
	}

	to {
		background-position: 1920px 0;
	}
}

@-webkit-keyframes slide_2 {
	from {
		background-position: 0 0;
	}

	to {
		background-position: 1920px 0;
	}
}

.home01_v2 .about-section .title-text h2 {
	color: #3d3d3d;
}

.home01_v2 .about-section .content-box h6 {
	color: #3d3d3d;
}

.home01_v2 .about-section .content-box h2:before {
	background-image: url(../images/shape/shape-37.png);
	width: 126px;
}

.home01_v2 .about-section .content-box h2 {
	padding-right: 141px;
}

.home01_v2 .about-section .small-column .image-box .social-links h6 {}


/** course-style-two **/

.course-style-two {
	position: relative;
	padding-top: 111px;
	background: #eae7e7;
}

.home01_v2 .sec-title h2 {
	color: #3d3d3d;
}

.course-style-two .shape {
	position: absolute;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
}

.course-style-two .image-box {
	position: relative;
	display: block;
	margin-right: 20px;
}

.course-style-two .image-box .image {
	position: relative;
	display: block;
	overflow: hidden;
}

.course-style-two .image-box .image img {
	width: 100%;
}

.course-style-two .image-box .image:before {
	position: absolute;
	top: 0;
	left: -75%;
	z-index: 2;
	display: block;
	content: '';
	width: 50%;
	height: 100%;
	background: -o-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
	background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, .3)));
	background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
	-webkit-transform: skewX(-25deg);
	-ms-transform: skewX(-25deg);
	transform: skewX(-25deg);
	z-index: 1;
}

.course-style-two .image-box .image:hover:before {
	-webkit-animation: shine 1s;
	animation: shine 1s;
}

@-webkit-keyframes shine {
	100% {
		left: 125%;
	}
}

@keyframes shine {
	100% {
		left: 125%;
	}
}

.course-style-two .title-box {
	position: relative;
	display: block;
	padding: 21px 0px 14px 0px;
	border-top: 1px solid #dbd8d8;
	border-bottom: 1px solid #dbd8d8;
	margin-bottom: 33px;
}

.course-style-two .title-box h6 {
	display: block;
	font-size: 14px;
	line-height: 20px;
	font-weight: 600;
	text-transform: uppercase;
	margin-bottom: 4px;
}

.course-style-two .title-box h3 {
	display: block;
	font-size: 24px;
	line-height: 30px;
	font-weight: 500;
	color: #3d3d3d;
}

.course-style-two .title-box .price h2 {
	position: relative;
	display: inline-block;
	font-size: 60px;
	line-height: 60px;
	font-weight: 500;
	padding-left: 48px;
	padding-right: 15px;
}

.course-style-two .title-box .price h2 .text {
	position: absolute;
	left: 0px;
	top: -16px;
	font-size: 14px;
	font-weight: 600;
	text-transform: uppercase;
}

.course-style-two .title-box .price h2 .symble {
	position: absolute;
	right: 0px;
	bottom: -13px;
	font-size: 20px;
}

.course-style-two .text-inner {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 33px;
}

.course-style-two .text-inner .text {
	max-width: 270px;
}

.course-style-two .text-inner .single-item {
	position: relative;
	display: block;
	padding: 0px 0px 0px 65px;
}

.course-style-two .text-inner .single-item .icon-box {
	position: absolute;
	left: 0px;
	top: -1px;
	font-size: 45px;
	line-height: 50px;
}

.course-style-two .text-inner .single-item h6 {
	display: block;
	font-size: 14px;
	line-height: 20px;
	font-weight: 500;
	text-transform: uppercase;
	color: #3d3d3d;
	margin-bottom: 6px;
}

.course-style-two .lower-box {
	position: relative;
	display: block;
	background-image: url(../images/resource/bg-shape.jpg);
	padding: 11px 15px 15px 15px;
	width: 100%;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	text-align: center;
}

.course-style-two .lower-box:before {
	position: absolute;
	content: '';
	background: #000;
	width: 100%;
	height: 100%;
	left: 0px;
	top: 0px;
	opacity: 0.42;
}

.course-style-two .lower-box h5 {
	position: relative;
	display: inline-block;
	font-size: 16px;
	line-height: 24px;
	font-weight: 500;
	padding-left: 30px;
	color: #fff;
}

.course-style-two .lower-box h5 i {
	position: absolute;
	left: 0px;
	top: 4px;
	font-size: 20px;
}

.course-style-two .offer-box {
	margin-top: 120px;
}

.course-style-two .offer-box .single-offer-box {
	position: relative;
	width: 100%;
	background: #81b4bf;
	border-top: 10px solid #fff;
	cursor: pointer;
	transition: all 500ms ease;
}

.course-style-two .offer-box .single-offer-box .content-box {
	position: relative;
	display: block;
	padding-left: 400px;
	padding-top: 21px;
	padding-bottom: 20px;
}

.course-style-two .offer-box .single-offer-box .content-box .image {
	position: absolute;
	left: 0px;
	top: 0px;
}

.course-style-two .offer-box .single-offer-box .content-box h6 {
	display: block;
	font-size: 14px;
	line-height: 20px;
	font-weight: 600;
	text-transform: uppercase;
	color: #fff;
	margin-bottom: 4px;
}

.course-style-two .offer-box .single-offer-box:first-child .content-box h6 {
	color: #7d7a78;
}

.course-style-two .offer-box .single-offer-box .content-box h3 {
	display: block;
	font-size: 24px;
	line-height: 30px;
	color: #fff;
	font-weight: 500;
}

.course-style-two .offer-box .single-offer-box:first-child .content-box h3 {
	color: #3d3d3d;
}

.course-style-two .offer-box .single-offer-box .price {
	padding: 17px 0px 18px 0px;
}

.course-style-two .offer-box .single-offer-box .price h2 {
	position: relative;
	display: inline-block;
	font-size: 60px;
	line-height: 60px;
	font-weight: 500;
	padding-left: 48px;
	padding-right: 15px;
	color: #fff;
}

.course-style-two .offer-box .single-offer-box:first-child .price h2 {
	color: #3d3d3d;
}

.course-style-two .offer-box .single-offer-box .price h2 .text {
	position: absolute;
	left: 0px;
	top: -16px;
	font-size: 14px;
	font-weight: 600;
	text-transform: uppercase;
}

.course-style-two .offer-box .single-offer-box .price h2 .symble {
	position: absolute;
	right: 0px;
	bottom: -13px;
	font-size: 20px;
}

.course-style-two .offer-box .single-offer-box:first-child {
	background: #f4f1f1;
}

.course-style-two .offer-box .single-offer-box:last-child {
	background: #3d3d3d;
}

.home01_v2 .service-section {
	background: #fff;
}

.home01_v2 .service-block-one .inner-box .image-box .icon-box {
	background: #fff;
	font-size: 45px;
}

.home01_v2 .service-block-one .inner-box .image-box .icon-box:before {
	background: #81b4bf;
}

.home01_v2 .service-block-one .inner-box {
	background: #3d3d3d;
	box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.10);
}

.home01_v2 .service-block-one .inner-box .lower-content .lower-box .arrow-icon li {
	color: #f4f1f1;
}

.home01_v2 .service-block-one .inner-box .lower-content .lower-box {
	background: #fff;
}

.home01_v2 .service-block-one .inner-box .lower-content .lower-box .link a i {
	display: none;
}

.home01_v2 .service-block-one .inner-box .lower-content .lower-box .link a {
	color: #3d3d3d;
}

.home01_v2 .service-section .owl-carousel .owl-stage-outer {
	overflow: visible;
}

.home01_v2 .service-section .owl-carousel .owl-stage-outer .owl-item {
	opacity: 0;
}

.home01_v2 .service-section .owl-carousel .owl-stage-outer .owl-item.active {
	opacity: 1;
}

.home01_v2 .service-section .owl-nav button.owl-prev:before,
.home01_v2 .service-section .owl-nav button.owl-next:before {
	color: #e4e0e0;
}

.home01_v2 .highlights-section {
	background: #81b4bf;
}

.home01_v2 .highlights-section .single-item h4 i {
	color: #fff;
}

.home01_v2 .find-section .bg-layer {
	width: 100%;
	height: 100%;
}

.home01_v2 .find-section .bg-layer:before {
	display: none;
}

.home01_v2 .find-section .bg-layer:after {
	display: none;
}

.home01_v2 .find-section .upper-box .bg-color {
	height: 100%;
}

.home01_v2 .process-section .left-column .inner-box .image-box .video-btn a {
	background: transparent;
	font-size: 65px;
	font-weight: 400;
}

.home01_v2 .process-section .left-column .inner-box .single-item .icon {
	font-size: 53px;
}

.home01_v2 .process-section .right-column .inner-box .single-item .icon {
	font-size: 60px;
}

.home01_v2 .process-section .left-column .inner-box .single-item p a i {}

.home01_v2 .pricing-section {
	background: #f4f1f1;
}

.home01_v2 .pricing-block-one .pricing-table {
	background: -webkit-linear-gradient(-90deg, #d4e8ec, #f4fbfc 100%);
}

.home01_v2 .pricing-block-one .pricing-table .package-box h4 {
	color: #83b5c0;
}

.home01_v2 .pricing-block-one .pricing-table .feature-list li {
	border-bottom: 1px solid #e4e0e0;
}

.home01_v2 .pricing-block-one .pricing-table .theme-btn.btn-two {
	background: #fff;
	border: 1px solid #e4e0e0;
}

.home01_v2 .pricing-block-one .pricing-table .theme-btn.btn-two:hover {
	color: #fff !important;
}

.home01_v2 .pricing-block-one .pricing-table .table-header h2 {
	color: #3d3d3d;
}

.home01_v2 .pricing-block-one .pricing-table .table-header h2 .course {
	color: #3d3d3d;
}

.home01_v2 .pricing-block-one.active-block .pricing-table {
	background: -webkit-linear-gradient(-90deg, #fbe0ce, #fdf8f5 100%);
}

.home01_v2 .pricing-block-one .pricing-table .table-header .popular {
	color: #fff;
	box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.10);
}

.home01_v2 .pricing-block-one.active-block .pricing-table .feature-list li {
	color: #3d3d3d;
}

.home01_v2 .pricing-block-one.active-block .pricing-table .feature-list li span {
	color: #7d7a78;
}

.home01_v2 .highlights-style-two {
	background: #3d3d3d;
}

.home01_v2 .highlights-style-two .single-item .inner .icon-list li {}

.home01_v2 .advanced-section .title-inner .download-box .icon {
	color: #fff;
}

.home01_v2 .testimonial-section .bg-layer:before {
	opacity: 0.55;
}

.home01_v2 .testimonial-section .bg-layer:after {
	background: -webkit-linear-gradient(-180deg, rgba(244, 241, 241, 1)50%, rgba(244, 241, 241, 0.0) 60%);
}

.home01_v2 .testimonial-section .title-inner .review-box .theme-btn {
	background: #81b4bf;
}

.home01_v2 .testimonial-section .title-inner .rating-box .rating li {
	color: #fff;
}

.home01_v2 .testimonil-block-one .inner-box {
	border: none;
	background: #fff;
}

.home01_v2 .testimonil-block-one .inner-box:before,
.home01_v2 .testimonil-block-one .inner-box:after {
	display: none;
}

.home01_v2 .testimonil-block-one .inner-box h4 {
	color: #121113;
}

.home01_v2 .testimonil-block-one .inner-box p {
	color: #7d7a78;
}

.home01_v2 .testimonil-block-one .inner-box .author-box .author-thumb {
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.20);
}

.home01_v2 .testimonil-block-one .inner-box {
	box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.10);
	clip-path: polygon(0% 0%, 73% 0%, 100% 23%, 100% 100%, 80% 100%, 25% 100%, 0% 100%, 0% 20%);
}

.home01_v2 .testimonil-block-one .quote-box {
	position: absolute;
	top: 16px;
	right: 42px;
	font-size: 80px;
	color: #81b4bf;
	z-index: 1;
}

.home01_v2 .news-block-one .inner-box .image-box .category {
	background: #fff;
	color: #3d3d3d;
}

.home01_v2 .news-block-one .inner-box .image-box .category:before {
	position: absolute;
	content: '';
	border: 1px solid #e4e0e0;
	width: 100%;
	height: 100%;
	left: 0px;
	top: 0px;
}

.home01_v2 .news-block-one .inner-box .lower-content {
	background: #f4f1f1;
}

.home01_v2 .news-block-one .inner-box:hover .lower-content {
	background: #fff;
}

.home01_v2 .newsletter-section .single-item .content-box .icon-box {
	background: #fff;
}

.home01_v2 .newsletter-section .single-item .content-box h2 {
	color: #fff;
}

.home01_v2 .newsletter-section .single-item .content-box p {
	color: #fcf2ec;
}

.home01_v2 .newsletter-section .single-item .content-box .download-box h6 button {
	background: #3d3d3d;
}

.home01_v2 .newsletter-section .single-column:last-child .single-item {
	background: #83b5c0;
}

.home01_v2 .newsletter-section .single-column:last-child .single-item .content-box .icon-box {
	background: #fff;
	color: #83b5c0;
}

.home01_v2 .newsletter-section .single-column:last-child .single-item .content-box p {
	color: #eef9fb;
}

.home01_v2 .newsletter-section .single-item .content-box .subscribe-form .form-group button {
	color: #fff;
	background: #3d3d3d;
}

.home01_v2 .main-footer {
	background: #3d3d3d;
}

.home01_v2 .footer-top .gallery-widget .image-list li .image .view-btn {
	color: #fff;
}


/*** 

====================================================================
												Home-Page-Three
====================================================================

***/

/** header-style-two **/

.header-style-two {
	position: relative;
	left: 0px;
	top: 0px;
	width: 100%;
	z-index: 99;
}

.home-header,
body:has(.banner-style-two) .header-style-two {
	position: absolute;
}

/* .header-style-two .header-top {
	background: transparent;
} */

.header-style-two .header-top .top-left {
	position: relative;
	display: flex;
	align-items: center;
}

.header-style-two .header-top .top-left .single-item {
	margin-right: 20px;
}

.header-style-two .header-top .top-left .single-item:last-child {
	margin: 0px !important;
}

.header-style-two .header-top .top-left .single-item:first-child h6 {
	/* font-size: 16px; */
	font-family: 'Inter', sans-serif;
	font-weight: 400;
	text-transform: none;
}

.header-style-two .header-top .top-left .single-item:first-child h6 i {
	position: relative;
	font-size: 16px;
	margin-left: 9px;
	top: 1px;
}

.header-style-two .header-top .top-inner .single-item .icon {}

.header-style-two .header-top .top-right {
	position: relative;
	display: flex;
	align-items: center;
}

.header-style-two .header-top .top-right .single-item {
	margin-right: 40px;
}

.header-style-two .header-top .top-right .single-item h6 {
	color: #ffffff;
}

.header-style-two .header-top .top-right .single-item h6 a {
	color: #ffffff;
	font-size: 14px;
	font-family: 'Inter', sans-serif;
	font-weight: 500;
}

.header-style-two .header-top .top-right .single-item h6 a:hover {
	color: #ef5a24;
}

.header-style-two .header-top .top-inner .share-box li h6 i {
	color: #ef5a24;
}

.header-style-two .header-top .top-inner .share-box li h6 {
	color: #ffffff;
}

.header-style-two .header-top .top-inner .share-box li a {
	color: #ffffff;
}

.header-style-two .header-top .top-inner .share-box li a:hover {
	color: #ef5a24;
}

.header-style-two .header-top {
	padding: 15px 100px;
}

.header-style-two .header-lower {
	padding: 0px 0px;
}

.header-style-two .header-lower .outer-box {
	padding: 0px;
	background: #fff;
	padding-left: 40px;
	padding-right: 40px;
	box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.10);
}

.header-style-two .header-lower .outer-box:before {
	display: none;
}

.header-style-two .header-lower .outer-box .main-box {
	border-bottom: 1px solid #e4e0e0;
}

.header-style-two .menu-lower-content {
	position: relative;
	display: flex;
	width: 100%;
	align-items: center;
	justify-content: space-between;
	padding: 10px 0px 12px 0px;
}

.header-style-two .menu-lower-content .text h5 {
	position: relative;
	display: block;
	font-size: 16px;
	line-height: 26px;
	font-weight: 500;
	color: #3d3d3d;
}

.header-style-two .menu-lower-content .text h5 a {
	position: relative;
	display: inline-block;
	font-size: 14px;
	font-weight: 600;
	text-transform: uppercase;
	margin-left: 6px;
}

.header-style-two .menu-lower-content .text h5 a:hover {
	color: #3d3d3d;
}

.header-style-two .menu-lower-content .text h5 a i {
	position: relative;
	font-size: 12px;
	margin-right: 6px;
	top: 1px;
}

.header-style-two .menu-lower-content .option-list {
	position: relative;
	display: flex;
	align-items: center;
}

.header-style-two .menu-lower-content .option-list li {
	position: relative;
	display: inline-block;
	margin-right: 40px;
}

.header-style-two .menu-lower-content .option-list li:last-child {
	margin: 0px !important;
}

.header-style-two .menu-lower-content .option-list li h6 {
	font-size: 14px;
	line-height: 26px;
	font-weight: 600;
	color: #3d3d3d;
	text-transform: uppercase;
	padding-left: 30px;
}

.header-style-two .menu-lower-content .option-list li h6 i {
	position: absolute;
	left: 0px;
	top: 3px;
	font-size: 20px;
}

.header-style-two .menu-lower-content .option-list li h6 a {
	display: inline-block;
	color: #3d3d3d;
}

.header-style-two .menu-lower-content .option-list li h6 a:hover {}

.header-style-two .menu-lower-content .option-list li:before {
	position: absolute;
	content: '';
	background: #e4e0e0;
	width: 1px;
	height: 24px;
	top: 2px;
	right: -20px;
}

.header-style-two .menu-lower-content .option-list li:last-child:before {
	display: none;
}

.header-style-two .outer-box .logo-box {
	padding: 24.5px 0px;
}

.header-style-two .main-menu .navigation>li>a {
	padding-top: 35px;
	padding-bottom: 35px;
}

.header-style-two .main-menu .navigation>li.dropdown>a:before {
	top: 35px;
}

.header-style-two .outer-box .menu-right {
	margin-right: 0px;
}

.theme-btn.btn-four:before {
	opacity: 1;
}


/** banner-style-two **/

.banner-style-two {
	background: #f4f1f1;
}

.banner-style-two .slide-item {
	position: relative;
	padding: 372px 0px 150px 0px;
}

.banner-style-two .content-box {
	position: relative;
	max-width: 600px;
}

.banner-style-two .curve-text .curved-circle {
	position: absolute;
	top: 0px;
	font-size: 16px;
	font-weight: 600;
	font-family: 'Lexend', sans-serif;
	text-transform: uppercase;
}

.banner-style-two .curve-text {
	position: absolute;
	left: -305px;
	top: 100px;
	bottom: 20px;
	text-align: center;
	width: 205px;
	height: 205px;
	text-align: center;
}

.banner-style-two .curve-text .icon-box {
	position: absolute;
	left: 70px;
	top: 65px;
	font-size: 60px;
}

.banner-style-two .curve-text h6 {
	position: absolute;
	left: 65px;
	top: 140px;
	font-size: 14px;
	line-height: 20px;
	font-weight: 600;
	color: #121113;
	text-transform: uppercase;
}

.banner-style-two .curve-text h6 a {
	display: inline-block;
}

.banner-style-two .curve-text h6 a:hover {
	text-decoration: underline;
}

.theme-btn.btn-four {
	background: #84acca;
	color: #fff;
}

.banner-style-two .banner-carousel .slide-item .image-layer {
	position: absolute;
	left: 0px;
	top: 0px;
	width: calc(50% + 385px);
	height: 100%;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	clip-path: polygon(0% 0%, 58% 0%, 100% 100%, 100% 100%, 80% 100%, 28% 100%, 0% 33%, 0% 20%);
}

.banner-style-two .banner-carousel .slide-item .image-layer:before {
	position: absolute;
	content: '';
	background: -webkit-linear-gradient(-90deg, rgba(0, 0, 0, 1)0%, rgba(0, 0, 0, 0.0) 100%);
	width: 100%;
	height: 100%;
	left: 0px;
	top: 0px;
}

.banner-style-two .content-box h2 {
	font-size: 70px;
	line-height: 80px;
	font-weight: 600;
	color: #fff;
	margin-bottom: 19px;
}

.banner-style-two .content-box p {
	padding-left: 0px;
	color: #fff;
	margin-bottom: 33px;
}

.banner-style-two .content-box p:before {
	display: none;
}

.banner-style-two .banner-carousel .content-box .btn-box {
	padding-left: 0px;
}

.banner-style-two .banner-img {
	position: absolute;
	right: 0px;
	bottom: 0px;
	opacity: 0;
	-webkit-transform: translateX(100px);
	-moz-transform: translateX(100px);
	-ms-transform: translateX(100px);
	-o-transform: translateX(100px);
	transform: translateX(100px);
	-webkit-transition: all 1000ms ease;
	-moz-transition: all 1000ms ease;
	-ms-transition: all 1000ms ease;
	-o-transition: all 1000ms ease;
	transition: all 1000ms ease;
}

.banner-style-two .banner-logo-card {
	background: #ffffff;
	padding: 25px 35px;
	border-radius: 20px;
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
	border: 3px solid #ef5a24;
	right: 80px;
	bottom: 90px;
	max-width: 360px;
}

.banner-style-two .banner-logo-card img {
	width: 100%;
	max-width: 280px;
	height: auto;
	object-fit: contain;
}

.banner-style-two .active .banner-img {
	opacity: 1;
	-webkit-transform: translateX(0);
	-moz-transform: translateX(0);
	-ms-transform: translateX(0);
	-o-transform: translateX(0);
	transform: translateX(0);
	-webkit-transition-delay: 1000ms;
	-moz-transition-delay: 1000ms;
	-ms-transition-delay: 1000ms;
	-o-transition-delay: 1000ms;
	transition-delay: 1000ms;
}

.banner-style-two .owl-nav {
	position: absolute;
	left: 100px;
	bottom: 60px;
}

.banner-style-two .owl-nav button.owl-prev:before {
	position: absolute;
	content: "\f106";
	font-family: 'flaticon';
	left: 3px;
	top: 0px;
	font-size: 24px;
	color: #c4c4c4;
	transform: rotate(180deg);
	transition: all 500ms ease;
}

.banner-style-two .owl-nav button.owl-next:before {
	position: absolute;
	content: "\f106";
	font-family: 'flaticon';
	right: -148px;
	top: 0px;
	font-size: 24px;
	color: #c4c4c4;
	transition: all 500ms ease;
}

.banner-style-two .owl-nav button:hover:before {}

.banner-style-two .owl-nav button span {
	display: none;
}

.banner-style-two .owl-dots {
	position: absolute;
	left: 140px;
	bottom: 62px;
}

.banner-style-two .owl-theme .owl-dots .owl-dot span {
	position: relative;
	display: inline-block;
	width: 8px;
	height: 8px;
	background: #a7a7a7;
	margin: 0px 7.5px;
}

.banner-style-two .owl-theme .owl-dots .owl-dot.active span {}

.banner-style-two .shape {
	position: absolute;
	left: calc(50% - 135px);
	top: 0px;
	width: 245px;
	height: 310px;
	background-repeat: no-repeat;
}


/** service-style-two **/

.service-style-two {
	position: relative;
	padding: 113px 0px 120px 0px;
}

.sec-title-two {
	position: relative;
	display: block;
	margin-bottom: 50px;
}

.sec-title-two h5 {
	position: relative;
	display: inline-block;
	font-size: 16px;
	line-height: 24px;
	font-weight: 500;
	text-transform: uppercase;
	color: #a7a7a7;
	padding-left: 17px;
	margin-bottom: 13px;
}

.sec-title-two h5:before {
	position: absolute;
	content: '';
	left: 0px;
	top: 0px;
	width: 4px;
	height: 12px;
	left: 0px;
	top: 6px;
	transform: rotate(17deg);
}

.sec-title-two h2 {
	position: relative;
	display: block;
	font-size: 44px;
	line-height: 50px;
	font-weight: 600;
	color: #3d3d3d;
}

.sec-title-two p {
	margin-top: 14px;
}

.service-style-two .service-block-one .inner-box .image-box .icon-box {
	background: #fff;
	font-size: 45px;
}

.service-style-two .service-block-one .inner-box .image-box .icon-box:before {
	background: #84acca;
}

.service-style-two .service-block-one .inner-box .lower-content .text {
	position: absolute;
	left: 0px;
	bottom: 50px;
	width: 100%;
	background: rgba(0, 0, 0, 0.7);
}

.service-style-two .service-block-one .inner-box {
	box-shadow: 0px 10px 40px 0px rgba(0, 0, 0, 0.10);
}

.service-style-two .service-block-one .inner-box:hover .lower-content .lower-box {}

.service-style-two .service-block-one .inner-box .lower-content .lower-box .arrow-icon li {
	color: #f4f1f1;
}

.service-style-two .service-block-one .inner-box:hover .lower-content .lower-box .arrow-icon li {
	color: #fff;
}

.service-style-two .service-block-one .inner-box .lower-content .lower-box .link a {
	color: #3d3d3d;
}

.service-style-two .service-block-one .inner-box:hover .lower-content .lower-box .link a {
	color: #fff;
}

.service-style-two .service-block-one .inner-box .lower-content .lower-box .link a i {
	color: #fff;
}

.service-style-two .service-block-one .inner-box .lower-content .text h4 a:hover {}


/**  course-style-three **/

.course-style-three {
	position: relative;
	padding: 113px 0px 115px 0px;
	background: #f4f1f1;
}

.course-style-three .shape .shape-1 {
	position: absolute;
	left: 0px;
	top: 250px;
	width: 130px;
	height: 219px;
	background-repeat: no-repeat;
}

.course-style-three .shape .shape-2 {
	position: absolute;
	right: 95px;
	bottom: 120px;
	width: 183px;
	height: 21px;
	background-repeat: no-repeat;
}

.course-block-one .inner-box {
	position: relative;
	display: block;
	background: #fff;
	border: 1px solid #dfdcdc;
	padding: 9px;
	overflow: hidden;
	min-height: 341px;
	transition: all 500ms ease;
}

.course-block-one .inner-box:hover {
	border-color: #fff;
	box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.10);
}

.course-block-one .inner-box .image-box {
	position: relative;
	display: block;
}

.course-block-one .inner-box .image-box .image {
	position: relative;
}

.course-block-one .inner-box .image-box .image:before {
	position: absolute;
	content: '';
	background: #000;
	width: 100%;
	height: 100%;
	left: 0px;
	top: 0px;
	opacity: 0.2;
}

.course-block-one .inner-box .image-box img {
	width: 100%;
	min-height: 341px;
}

.course-block-one .inner-box .image-box .price {
	position: absolute;
	left: 0px;
	top: 0px;
	z-index: 1;
}

.course-block-one .inner-box .image-box .price h2 {
	position: relative;
	display: inline-block;
	font-size: 50px;
	line-height: 50px;
	font-weight: 500;
	background: #fff;
	padding: 1px 14px 15px 59px;
}

.course-block-one .inner-box .image-box .price h2 .text {
	position: absolute;
	left: 8px;
	top: -10px;
	font-size: 14px;
	font-weight: 600;
	text-transform: uppercase;
}

.course-block-one .inner-box .image-box .price h2 .symble {
	position: absolute;
	left: 38px;
	bottom: 4px;
	font-size: 20px;
	font-weight: 500;
}

.course-block-one .inner-box .content-box {
	position: absolute;
	top: 10px;
	right: 10px;
	background: rgba(0, 0, 0, 0.80);
	width: 270px;
	padding: 22px 30px 30px 30px;
	height: calc(100% - 20px);
}

.course-block-one .inner-box .content-box p {
	display: block;
	color: #c4c4c4;
	margin-bottom: 18px;
}

.course-block-one .inner-box .content-box .single-item {
	position: relative;
	display: block;
	padding: 0px 0px 16px 60px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.20);
	margin-bottom: 17px;
}

.course-block-one .inner-box .content-box .single-item:last-child {
	border-bottom: none;
	margin-bottom: 0px;
}

.course-block-one .inner-box .content-box .single-item .icon-box {
	position: absolute;
	left: 0px;
	top: 5px;
}

.course-block-one .inner-box .content-box .single-item h6 {
	display: block;
	font-size: 14px;
	line-height: 24px;
	font-weight: 500;
	text-transform: uppercase;
	color: #fff;
	margin-bottom: 5px;
}

.course-block-one .inner-box .content-box .single-item span {
	position: relative;
	display: block;
	font-size: 16px;
	line-height: 24px;
	font-weight: 500;
	color: #fff;
}

.course-block-one .inner-box .content-box .btn-box a {
	position: relative;
	display: block;
	width: 100%;
	font-size: 14px;
	line-height: 26px;
	font-weight: 600;
	text-transform: uppercase;
	color: #121113;
	background: #fff;
	padding: 13px 15px;
	text-align: center;
}

.course-block-one .inner-box .content-box .btn-box a:hover {
	color: #fff;
}

.course-block-one .inner-box .content-box .btn-box {
	margin-top: 11px;
}

.course-block-one .lower-box {
	position: relative;
	display: block;
	padding: 0px 0px 0px 90px;
	margin-top: 23px;
}

.course-block-one .lower-box .icon-box {
	position: absolute;
	left: 0px;
	top: 7px;
}

.course-block-one .lower-box h6 {
	display: block;
	font-size: 14px;
	line-height: 24px;
	font-weight: 600;
	text-transform: uppercase;
	margin-bottom: 2px;
}

.course-block-one .lower-box h3 {
	display: block;
	font-size: 24px;
	line-height: 30px;
	font-weight: 500;
}

.course-block-one .lower-box h3 a {
	display: inline-block;
	color: #3d3d3d;
}

.course-block-one .lower-box h3 a:hover {}

.course-style-three .owl-nav {
	position: absolute;
	top: -110px;
	right: 0px;
}

.course-style-three .owl-nav button.owl-prev:before {
	position: absolute;
	content: "\f106";
	font-family: 'flaticon';
	left: -109px;
	top: 0px;
	font-size: 20px;
	color: #c4c4c4;
	width: 50px;
	height: 50px;
	line-height: 50px;
	background: #fff;
	text-align: center;
	transform: rotate(180deg);
	transition: all 500ms ease;
}

.course-style-three .owl-nav button.owl-next:before {
	position: absolute;
	content: "\f106";
	font-family: 'flaticon';
	right: 0px;
	top: 0px;
	font-size: 20px;
	color: #c4c4c4;
	width: 50px;
	height: 50px;
	line-height: 50px;
	background: #fff;
	text-align: center;
	transition: all 500ms ease;
}

.course-style-three .owl-nav button.owl-prev:hover:before,
.course-style-three .owl-nav button.owl-next:hover:before {
	color: #fff;
}

.course-style-three .owl-nav button span {
	display: none;
}


/** ourcars-section **/

.ourcars-section {
	position: relative;
	padding: 113px 0px 125px 0px;
}

.car-block-one .inner-box .content-box .lower-box {
	position: relative;
	display: flex;
	background: #f4f1f1;
	overflow: hidden;
	align-items: center;
	justify-content: space-between;
	padding-right: 30px;
	transition: all 500ms ease;
}

.car-block-one .inner-box:hover .content-box .lower-box {}

.car-block-one .inner-box .content-box .lower-box .arrow-icon li {
	position: relative;
	display: inline-block;
	float: left;
	font-size: 50px;
	color: #fff;
	margin-left: -16px;
	transition: all 500ms ease;
}

.car-block-one .inner-box .content-box .lower-box .arrow-icon li:first-child {
	margin-left: -10px;
}

.car-block-one .inner-box .content-box .lower-box .link a {
	position: relative;
	display: inline-block;
	font-size: 14px;
	line-height: 20px;
	font-family: 'Lexend', sans-serif;
	font-weight: 600;
	text-transform: uppercase;
	color: #3d3d3d;
}

.car-block-one .inner-box:hover .content-box .lower-box .link a {
	color: #fff;
}

.car-block-one .inner-box .content-box .lower-box .link a i {
	position: relative;
	margin-right: 6px;
	font-size: 12px;
	top: 1px;
	opacity: 0;
	color: #fff;
	transition: all 500ms ease;
}

.car-block-one .inner-box:hover .content-box .lower-box .link a i {
	opacity: 1;
}

.car-block-one .inner-box {
	position: relative;
	display: block;
	overflow: hidden;
}

.car-block-one .inner-box .image-box {
	position: relative;
	display: block;
	overflow: hidden;
}

.car-block-one .inner-box .image-box img {
	width: 100%;
	transition: all 500ms ease;
}

.car-block-one .inner-box:hover .image-box img {
	transform: scale(1.05);
}

.car-block-one .inner-box .image-box:before {
	position: absolute;
	content: '';
	background: -webkit-linear-gradient(90deg, rgba(0, 0, 0, 1)5%, rgba(0, 0, 0, 0.0) 40%);
	width: 100%;
	height: 100%;
	left: 0px;
	top: 0px;
	z-index: 1;
}

.car-block-one .inner-box .content-box {
	position: absolute;
	left: 10px;
	bottom: 10px;
	width: calc(100% - 20px);
	background: #fff;
	z-index: 1;
}

.car-block-one .inner-box .content-box .text {
	padding: 20px 20px 8px 20px;
}

.car-block-one .inner-box .content-box .text h6 {
	position: relative;
	display: block;
	font-size: 14px;
	line-height: 20px;
	color: #a7a7a7;
	font-weight: 600;
	text-transform: uppercase;
	padding-left: 16px;
	margin-bottom: 2px;
}

.car-block-one .inner-box .content-box .text h6:before {
	position: absolute;
	content: '';
	width: 8px;
	height: 8px;
	left: 0px;
	top: 6px;
}

.car-block-one .inner-box .content-box .text h4 {
	position: relative;
	display: block;
	font-size: 20px;
	line-height: 30px;
	font-weight: 500;
	margin-bottom: 10px;
}

.car-block-one .inner-box .content-box .text h4 a {
	position: relative;
	display: inline-block;
	color: #3d3d3d;
}

.car-block-one .inner-box .content-box .text h4 a:hover {}

.car-block-one .inner-box {
	padding-bottom: 60px;
	background: #000000;
}

.ourcars-section .owl-dots {
	position: relative;
	display: block;
	text-align: center;
	margin-top: 55px;
}

.ourcars-section .owl-theme .owl-dots .owl-dot span {
	position: relative;
	display: inline-block;
	background: transparent;
	margin: 0px 18px;
}

.ourcars-section .owl-theme .owl-dots .owl-dot.active span:before {}

.ourcars-section .owl-theme .owl-dots .owl-dot span:before {
	position: absolute;
	content: '0';
	text-align: center;
	font-size: 20px;
	font-family: 'Lexend', sans-serif;
	color: #a7a7a7;
	left: 0px;
	top: 0px;
	transition: all 500ms ease;
}

.ourcars-section .owl-theme .owl-dots .owl-dot:first-child span:before {
	content: '01';
}

.ourcars-section .owl-theme .owl-dots .owl-dot:nth-child(2) span:before {
	content: '02';
}

.ourcars-section .owl-theme .owl-dots .owl-dot:nth-child(3) span:before {
	content: '03';
}

.ourcars-section .owl-theme .owl-dots .owl-dot:nth-child(4) span:before {
	content: '04';
}

.ourcars-section .owl-theme .owl-dots .owl-dot:nth-child(5) span:before {
	content: '05';
}

.ourcars-section .owl-theme .owl-dots .owl-dot span:after {
	position: absolute;
	content: '';
	background: #a7a7a7;
	width: 2px;
	height: 3px;
	right: -23px;
	bottom: -4px;
}

.ourcars-section .owl-theme .owl-dots .owl-dot:last-child span:after {
	display: none;
}

.ourcars-section .owl-nav {
	position: absolute;
	left: 50%;
	bottom: 0px;
	transform: translateX(-50%);
	z-index: 1;
}

.ourcars-section .owl-nav button {
	position: relative;
}

.ourcars-section .owl-nav button span {
	display: none;
}

.ourcars-section .owl-nav button.owl-prev:before {
	position: absolute;
	content: "\f106";
	font-family: 'flaticon';
	left: -113px;
	top: -14px;
	font-size: 24px;
	color: #c4c4c4;
	transform: rotate(180deg);
	transition: all 500ms ease;
}

.ourcars-section .owl-nav button.owl-next:before {
	position: absolute;
	content: "\f106";
	font-family: 'flaticon';
	right: -121px;
	top: -15px;
	font-size: 24px;
	color: #c4c4c4;
	transition: all 500ms ease;
}

.ourcars-section .owl-nav button:hover:before {}


/** about-style-two **/

.about-style-two {
	position: relative;
	padding-top: 92px;
}

.about-style-two .bg-layer-1 {
	position: absolute;
	left: 0px;
	top: 0px;
	width: calc(50% + 185px);
	height: calc(100% - 343px);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
}

.about-style-two .bg-layer-1:before {
	position: absolute;
	content: '';
	background: #000;
	width: 100%;
	height: 100%;
	left: 0px;
	top: 0px;
	opacity: 0.5;
}

.about-style-two .bg-layer-2 {
	position: absolute;
	top: 0px;
	right: 0px;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-repeat: no-repeat;
}

.about-style-two .bg-layer-2:before {
	position: absolute;
	content: '';
	background: -webkit-linear-gradient(0deg, rgba(0, 0, 0, 1)30%, rgba(0, 0, 0, 0.10) 100%);
	width: 100%;
	height: 100%;
	left: 0px;
	top: 0px;
}

.about-style-two .upper-box {
	position: relative;
	display: block;
	max-width: 500px;
	width: 100%;
	padding-left: 130px;
	padding-top: 107px;
	padding-bottom: 92px;
	margin-left: 70px;
}

.about-style-two .upper-box .title-text {
	position: absolute;
	left: 0px;
	top: 0px;
}

.about-style-two .upper-box .title-text h5 {
	display: block;
	font-size: 16px;
	line-height: 26px;
	color: #fff;
	font-weight: 600;
	text-transform: uppercase;
	margin-bottom: 0px;
}

.about-style-two .upper-box .title-text h2 {
	position: relative;
	display: inline-block;
	font-size: 50px;
	line-height: 60px;
	font-weight: 600;
	padding-right: 137px;
}

.about-style-two .upper-box .title-text h2:before {
	position: absolute;
	content: '';
	background-image: url(../images/shape/shape-53.png);
	width: 126px;
	height: 26px;
	top: 17px;
	right: 0px;
	background-repeat: no-repeat;
}

.about-style-two .upper-box .inner-box p {
	color: #ececec;
	margin-bottom: 24px;
}

.about-style-two .upper-box .inner {
	position: relative;
	display: block;
	padding-left: 75px;
}

.about-style-two .upper-box .inner .icon-box {
	position: absolute;
	left: 0px;
	top: 10px;
	font-size: 55px;
	transform: rotateY(180deg);
}

.about-style-two .upper-box .inner .count-outer {
	position: relative;
	display: block;
	font-size: 50px;
	line-height: 50px;
	color: #fff;
	font-family: 'Lexend', sans-serif;
	font-weight: 600;
	margin-bottom: 5px;
}

.about-style-two .upper-box .inner h4 {
	display: block;
	font-size: 20px;
	line-height: 30px;
	color: #fff;
	font-weight: 500;
}

.about-style-two .lower-box {
	position: relative;
	display: block;
	width: calc(50% + 185px);
	padding: 60px 60px 55px 0px;
	background: #f4f1f1;
}

.about-style-two .lower-box .single-item {
	position: relative;
	display: block;
	padding-left: 60px;
}

.about-style-two .lower-box .single-item .icon-box {
	position: relative;
	display: block;
	font-size: 55px;
	line-height: 50px;
	margin-bottom: 20px;
}

.about-style-two .lower-box .single-item h3 {
	display: block;
	font-size: 24px;
	line-height: 30px;
	font-weight: 500;
	margin-bottom: 14px;
}

.about-style-two .lower-box .single-item p {
	color: #7d7a78;
	margin-bottom: 26px;
}

.about-style-two .lower-box .single-item h6 {
	position: relative;
	display: inline-block;
	padding-left: 16px;
	font-size: 14px;
	line-height: 20px;
	font-weight: 600;
	text-transform: uppercase;
}

.about-style-two .lower-box .single-item h6 a {
	display: inline-block;
	color: #3d3d3d;
}

.about-style-two .lower-box .single-item h6 a:hover {}

.about-style-two .lower-box .single-item h6 i {
	position: absolute;
	font-size: 10px;
	left: 0px;
	top: 2px;
}

.about-style-two .lower-box:before {
	position: absolute;
	content: '';
	background: #dbd8d8;
	width: 1px;
	height: 100%;
	left: 50%;
	transform: translateX(-50%);
	top: 0px;
}

.about-style-two .lower-box .shape .shape-1 {
	position: absolute;
	left: 300px;
	top: 0px;
	width: 209px;
	height: 90px;
	background-repeat: no-repeat;
}

.about-style-two .lower-box .shape .shape-2 {
	position: absolute;
	right: 60px;
	bottom: 0px;
	width: 209px;
	height: 90px;
	background-repeat: no-repeat;
}

.about-style-two .pattern-layer {
	position: absolute;
	left: 77px;
	top: 40px;
	width: 420px;
	height: 420px;
	background-repeat: no-repeat;
	-webkit-animation: zoom-fade 8s infinite linear;
	animation: zoom-fade 8s infinite linear;
}


/** team-section **/

.team-section {
	position: relative;
	padding: 113px 0px 115px 0px;
}

.team-block-one {
	max-width: 370px;
	margin: 0 auto;
}

.team-block-one .inner-box {
	position: relative;
	display: block;
}

.team-block-one .inner-box .image-box {
	position: relative;
	display: block;
	padding-left: 50px;
	padding-right: 50px;
}

.team-block-one .inner-box .image-box .image {
	position: relative;
	display: block;
	overflow: hidden;
}

.team-block-one .inner-box .image-box .image img {
	width: 100%;
	transition: all 500ms ease;
}

.team-block-one .inner-box:hover .image-box .image img {
	transform: scale(1.05);
}

.team-block-one .inner-box .image-box .text {
	position: absolute;
	left: -56px;
	bottom: 44px;
	font-size: 30px;
	line-height: 40px;
	font-weight: 700;
	font-family: 'Inter', sans-serif;
	color: rgba(255, 255, 255, 1);
	text-shadow: -1px -1px 0 #ebe8e8, 1px -1px 0 #ebe8e8, -1px 1px 0 #ebe8e8, 1px 1px 0 #ebe8e8;
	transform: rotate(90deg);
	text-transform: uppercase;
	letter-spacing: 4px;
}

.team-block-one .inner-box .image-box .shape .shape-1 {
	position: absolute;
	top: 0px;
	right: 0px;
	width: 26px;
	height: 175px;
	background-repeat: no-repeat;
}

.team-block-one .inner-box .image-box .shape .shape-2 {
	position: absolute;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 413px;
	background-repeat: no-repeat;
	background-position: center;
	transition: all 500ms ease;
}

.team-block-one .inner-box:hover .image-box .shape .shape-2 {
	opacity: 0;
}

.team-block-one .inner-box .image-box .shape .shape-3 {
	position: absolute;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 413px;
	opacity: 0;
	background-repeat: no-repeat;
	background-position: center;
	transition: all 500ms ease;
}

.team-block-one .inner-box:hover .image-box .shape .shape-3 {
	opacity: 1;
}

.team-block-one .inner-box .social-links {
	position: absolute;
	left: 32px;
	top: 50px;
	z-index: 1;
	transform: scale(0, 0);
	transition: all 500ms ease;
}

.team-block-one .inner-box:hover .social-links {
	transform: scale(1, 1);
}

.team-block-one .inner-box .social-links li {
	position: relative;
	display: block;
	margin-bottom: 10px;
}

.team-block-one .inner-box .social-links li:last-child {
	margin-bottom: 0px;
}

.team-block-one .inner-box .social-links li a {
	position: relative;
	display: inline-block;
	width: 36px;
	height: 36px;
	line-height: 36px;
	font-size: 15px;
	color: #3d3d3d;
	background: #fff;
	text-align: center;
	border-radius: 50%;
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.10);
}

.team-block-one .inner-box .social-links li a:hover {
	color: #fff;
}

.team-block-one .inner-box .lower-content {
	position: relative;
	display: block;
	padding: 23px 0px 0px 50px;
}

.team-block-one .inner-box .lower-content h4 {
	display: block;
	font-size: 20px;
	line-height: 30px;
	font-weight: 500;
	margin-bottom: 5px;
}

.team-block-one .inner-box .lower-content h4 a {
	display: inline-block;
	color: #3d3d3d;
}

.team-block-one .inner-box .lower-content h4 a:hover {}

.team-block-one .inner-box .lower-content .designation {
	position: relative;
	display: block;
	font-size: 14px;
	line-height: 20px;
	font-weight: 600;
	text-transform: uppercase;
}


/** video-section **/

.video-section {
	position: relative;
	background: #84acca;
	padding: 140px 0px;
}

.video-section .bg-layer {
	position: absolute;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
}

.video-section .bg-layer:before {
	position: absolute;
	content: '';
	background: #000;
	width: 100%;
	height: 100%;
	left: 0px;
	top: 0px;
	opacity: 0.1;
}

.video-section .video-btn a {
	position: relative;
	display: inline-block;
	width: 220px;
	height: 220px;
	text-align: center;
	border: 1px solid #e4e0e0;
	border-radius: 50%;
	padding: 77px 0px 50px 0px;
}

.video-section .video-btn a i {
	position: relative;
	display: block;
	font-size: 24px;
	color: #fff;
	margin-bottom: 10px;
}

.video-section .video-btn a span {
	position: relative;
	display: block;
	font-size: 20px;
	line-height: 30px;
	font-family: 'Lexend', sans-serif;
	font-weight: 500;
	color: #fff;
}


/** chooseus-section **/

.chooseus-section {
	position: relative;
	padding: 115px 0px 90px 0px;
	background: #84acca;
}

.chooseus-section .sec-title-two h5,
.chooseus-section .sec-title-two h2 {
	color: #fff;
}

.chooseus-section .sec-title-two h5:before {
	background: #fff;
}

.chooseus-section .title-inner .text p {
	color: #fff;
}

.chooseus-section .title-inner .text {
	margin-top: 34px;
}

.chooseus-section .shape .shape-1 {
	position: absolute;
	top: 0px;
	right: 29%;
	width: 235px;
	height: 133px;
	background-repeat: no-repeat;
}

.chooseus-section .shape .shape-2 {
	position: absolute;
	top: -316px;
	right: 13%;
	width: 293px;
	height: 317px;
	background-repeat: no-repeat;
}

.chooseus-block-one .inner-box {
	position: relative;
	display: block;
	overflow: hidden;
	background: #fff;
	padding: 94px 30px 33px 30px;
	margin-bottom: 30px;
}

.chooseus-block-one .inner-box .count-text {
	position: absolute;
	left: 0px;
	top: 0px;
	width: 70px;
	height: 70px;
	line-height: 70px;
	background: #f4f1f1;
	text-align: center;
	font-size: 24px;
	font-weight: 500;
	font-family: 'Lexend', sans-serif;
	clip-path: polygon(0% 0%, 75% 0%, 100% 30%, 100% 100%, 80% 100%, 25% 100%, 0% 70%, 0% 20%);
	transition: all 500ms ease;
}

.chooseus-block-one .inner-box:hover .count-text {
	color: #fff;
}

.chooseus-block-one .inner-box .icon-box {
	position: absolute;
	top: 30px;
	right: 30px;
	font-size: 60px;
	transform: scale(0, 0);
	transition: all 500ms ease;
}

.chooseus-block-one .inner-box:hover .icon-box {
	transform: scale(1, 1);
}

.chooseus-block-one .inner-box .light-icon {
	position: absolute;
	top: 30px;
	right: 30px;
	transition: all 500ms ease;
}

.chooseus-block-one .inner-box:hover .light-icon {
	transform: scale(0, 0);
}

.chooseus-block-one .inner-box h4 {
	display: block;
	font-size: 20px;
	line-height: 30px;
	font-weight: 500;
	margin-bottom: 12px;
}

.chooseus-block-one .inner-box h4 a {
	display: inline-block;
	color: #3d3d3d;
}

.chooseus-block-one .inner-box h4 a:hover {}


/** gallery-section **/

.gallery-section {
	position: relative;
	padding: 113px 0px 120px 0px;
}

.gallery-block-one .inner-box {
	position: relative;
	display: block;
	overflow: hidden;
	margin-bottom: 30px;
}

.gallery-block-one .inner-box .image-box {
	position: relative;
	display: block;
	overflow: hidden;
	background: #000000;
}

.gallery-block-one .inner-box .image-box img {
	width: 100%;
	transition: all 500ms ease;
}

.gallery-block-one .inner-box:hover .image-box img {
	opacity: 0.35;
	transform: scale(1.05);
}

.gallery-block-one .inner-box .text {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%) scale(0, 0);
	width: 100%;
	text-align: center;
	padding-left: 15px;
	padding-right: 15px;
	transition: all 500ms ease;
}

.gallery-block-one .inner-box:hover .text {
	transform: translate(-50%, -50%) scale(1, 1);
}

.gallery-block-one .inner-box .text h4 {
	position: relative;
	display: block;
	font-size: 20px;
	line-height: 30px;
	color: #fff;
	font-weight: 500;
}

.gallery-block-one .inner-box .text h4 a {
	display: inline-block;
	color: #fff;
}

.gallery-block-one .inner-box .text h4 a:hover {}

.gallery-block-one .inner-box .list {
	position: absolute;
	left: 0px;
	bottom: -54px;
	transition: all 500ms ease;
}

.gallery-block-one .inner-box:hover .list {
	bottom: 0px;
}

.gallery-block-one .inner-box .list li {
	position: relative;
	display: inline-block;
	float: left;
}

.gallery-block-one .inner-box .list li a {
	position: relative;
	display: inline-block;
	width: 54px;
	height: 54px;
	line-height: 60px;
	background: #fff;
	text-align: center;
	font-size: 18px;
	color: #a7a7a7;
}

.gallery-block-one .inner-box .list li a:hover {}

.gallery-block-one .inner-box .list li a:before {
	position: absolute;
	content: '';
	background: #e4e0e0;
	width: 1px;
	height: 20px;
	top: 17px;
	right: 0px;
}

.gallery-block-one .inner-box .list li:last-child a:before {
	display: none;
}

.gallery-section .more-btn {
	margin-top: 60px;
}

.gallery-section .more-btn .theme-btn {
	padding: 13px 52px;
}


/** location-section **/

.location-section {
	position: relative;
	padding: 113px 0px 120px 0px;
	background: #f4f1f1;
}

.location-section .content-box .sec-title-two {
	margin-bottom: 11px;
}

.location-section .content-box p {
	margin-bottom: 33px;
}

.location-section .content-box .sec-title-two h2 {
	line-height: 56px;
}

.location-section .content-box .theme-btn {
	padding: 13px 52px;
}

.location-section .location-box {
	position: relative;
	min-height: 323px;
	margin-left: 70px;
	margin-top: 18px;
}

.location-section .location-box .map {
	position: absolute;
	left: 0px;
	top: 0px;
	width: 597px;
	height: 323px;
	background-repeat: no-repeat;
}

.tabs-box .tab {
	position: relative;
	display: none;
	transition: all 900ms ease;
	-moz-transition: all 900ms ease;
	-webkit-transition: all 900ms ease;
	-ms-transition: all 900ms ease;
	-o-transition: all 900ms ease;
}

.tabs-box .tab.active-tab {
	display: block;
}

.tabs-box .tab {
	transform: scale(0.9, 0.9) translateY(0px);
}

.tabs-box .tab.active-tab {
	transform: scale(1) translateY(0px);
}

.location-section .tab-btns li {
	position: absolute;
	width: 24px;
	height: 24px;
	border-radius: 50%;
	border: 6px solid #fff;
	cursor: pointer;
	transition: all 500ms ease;
}

.location-section .tab-btns li:hover,
.location-section .tab-btns li.active-btn {
	background: #fff;
}

.location-section .tab-btns li .text {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: 30px;
	width: 135px;
	background: #fff;
	text-align: center;
	padding: 9px 15px 11px 15px;
	opacity: 0;
	visibility: hidden;
	box-shadow: 0px 5px 5px 0px #e9e6e6;
	z-index: 1;
	transition: all 500ms ease;
}

.location-section .tab-btns li .text:before {
	position: absolute;
	content: '';
	background: #fff;
	width: 12px;
	height: 12px;
	left: 50%;
	transform: translateX(-50%) rotate(45deg);
	bottom: -6px;
}

.location-section .tab-btns li:hover .text,
.location-section .tab-btns li.active-btn .text {
	opacity: 1;
	visibility: visible;
}

.location-section .tab-btns li .text h5 {
	display: block;
	font-size: 18px;
	line-height: 28px;
	font-weight: 500;
	color: #3d3d3d;
	margin-bottom: 0px;
}

.location-section .tab-btns li .text span {
	position: relative;
	display: block;
	font-size: 16px;
	line-height: 20px;
	color: #7d7a78;
}

.location-section .tab-btns li:first-child {
	left: 50px;
	top: 20px;
}

.location-section .tab-btns li:nth-child(2) {
	left: 50px;
	bottom: 120px;
}

.location-section .tab-btns li:nth-child(3) {
	left: 140px;
	top: 100px;
}

.location-section .tab-btns li:nth-child(4) {
	left: 200px;
	top: 40px;
}

.location-section .tab-btns li:nth-child(5) {
	left: 200px;
	bottom: 60px;
}

.location-section .tab-btns li:nth-child(6) {
	left: 260px;
	bottom: 50px;
}

.location-section .tab-btns li:nth-child(7) {
	top: 115px;
	right: 50px;
}

.location-section .tab-btns li:nth-child(8) {
	top: 120px;
	right: 160px;
}

.location-section .tab-btns li:nth-child(9) {
	top: 140px;
	right: 250px;
}

.location-section .tab-btns li:nth-child(10) {
	bottom: 60px;
	right: 180px;
}

.location-section .tabs-content {
	position: relative;
	display: block;
	margin-top: 60px;
}

.location-section .tabs-content .single-location {
	position: relative;
	display: block;
	background: #fff;
	padding: 23px 30px;
	box-shadow: 0px 5px 30px 0px rgba(0, 0, 0, 0.07);
}

.location-section .tabs-content .single-location .text {
	position: relative;
	display: block;
	padding-left: 60px;
	margin-bottom: 14px;
	min-height: 52px;
}

.location-section .tabs-content .single-location .text .icon {
	position: absolute;
	left: 0px;
	top: 7px;
	font-size: 40px;
}

.location-section .tabs-content .single-location h5 {
	display: block;
	font-size: 18px;
	line-height: 26px;
	font-weight: 500;
	color: #3d3d3d;
}

.location-section .tabs-content .single-location h5 span {
	position: relative;
	display: inline-block;
	font-size: 16px;
	color: #7d7a78;
	font-family: 'Inter', sans-serif;
}


/** testimonial-style-two **/

.testimonial-style-two {
	position: relative;
	padding: 113px 0px 111px 0px;
}

.testimonial-style-two .testimonial-content {
	position: relative;
	padding-right: 170px;
	margin-bottom: 31px;
}

.testimonial-style-two .testimonial-content:last-child {
	padding-right: 0px;
	padding-left: 170px;
	margin-bottom: 0px;
}

.testimonial-style-two .testimonial-content .thumb-box {
	position: absolute;
	top: 12px;
	right: 0px;
	width: 140px;
	height: 140px;
	border-radius: 50%;
}

.testimonial-style-two .testimonial-content:last-child .thumb-box {
	right: inherit;
	left: 0px;
}

.testimonial-style-two .testimonial-content .thumb-box img {
	width: 100%;
	border-radius: 50%;
}

.testimonial-style-two .testimonial-content .text {
	position: relative;
	display: block;
	border: 1px solid #e4e0e0;
	padding: 33px 30px 32px 125px;
	margin-bottom: 34px;
}

.testimonial-style-two .testimonial-content .text .quote-box {
	position: absolute;
	left: 40px;
	top: 30px;
	font-size: 60px;
	color: #84acca;
}

.testimonial-style-two .testimonial-content .text h4 {
	display: block;
	font-size: 20px;
	line-height: 30px;
	color: #3d3d3d;
	font-weight: 500;
	margin-bottom: 10px;
}

.testimonial-style-two .testimonial-content .text p {
	font-size: 18px;
	line-height: 28px;
}

.testimonial-style-two .testimonial-content .author-box {
	padding-left: 90px;
}

.testimonial-style-two .testimonial-content .author-box h5 {
	position: relative;
	display: block;
	font-size: 20px;
	line-height: 30px;
	font-weight: 500;
	color: #3d3d3d;
	margin-bottom: 4px;
}

.testimonial-style-two .testimonial-content .author-box h5 span {
	position: relative;
	display: inline-block;
	font-size: 16px;
	font-family: 'Inter', sans-serif;
	font-weight: 500;
}

.testimonial-style-two .testimonial-content .author-box .rating li {
	position: relative;
	display: inline-block;
	float: left;
	font-size: 18px;
	margin-right: 3px;
}

.testimonial-style-two .testimonial-content .author-box .rating li:last-child {
	margin: 0px !important;
}

.testimonial-style-two .testimonial-content .text .shape-layer {
	position: absolute;
	left: 40px;
	bottom: -1px;
	width: 30px;
	height: 1px;
	background: #fff;
}

.testimonial-style-two .testimonial-content .text .shape-layer:before {
	position: absolute;
	content: '';
	background: #e4e0e0;
	width: 1px;
	height: 30px;
	right: 0px;
	bottom: -30px;
}

.testimonial-style-two .testimonial-content .text .shape-layer:after {
	position: absolute;
	content: '';
	background: #e4e0e0;
	width: 1px;
	height: 41px;
	left: 14px;
	bottom: -35px;
	transform: rotate(-45deg);
}

.testimonial-style-two .image-layer {
	position: absolute;
	left: 0px;
	bottom: 0px;
}

.testimonial-style-two .shape .shape-1 {
	position: absolute;
	left: 0px;
	bottom: 0px;
	width: 545px;
	height: 210px;
	background-repeat: no-repeat;
}

.testimonial-style-two .shape .shape-2 {
	position: absolute;
	left: 340px;
	bottom: 100px;
	width: 137px;
	height: 13px;
	background-repeat: no-repeat;
}

.testimonial-style-two .shape .shape-3 {
	position: absolute;
	left: 100px;
	top: 0px;
	width: 227px;
	height: 263px;
	background-repeat: no-repeat;
}


/** clients-section **/

.clients-section {
	position: relative;
	padding: 60px 0px 60px 0px;
	background: #84acca;
}

.clients-section .inner-box {
	position: relative;
	padding: 0px 100px;
}

.clients-section .clients-logo {
	position: relative;
	display: block;
}

.clients-section .clients-logo img {
	position: relative;
	max-width: auto;
	display: block;
	margin: 0 auto;
}

.clients-section .clients-logo:before {
	position: absolute;
	content: '';
	background: rgba(255, 255, 255, 0.30);
	width: 1px;
	height: 100%;
	top: 0px;
	right: -15px;
}


/** news-style-two **/

.news-style-two {
	position: relative;
	padding: 113px 0px 114px 0px;
}

.news-block-two .inner-box .image-box {
	position: relative;
	display: block;
}

.news-block-two .inner-box .image-box .category {
	position: absolute;
	left: 0px;
	top: 0px;
	width: 150px;
	font-size: 14px;
	line-height: 40px;
	font-family: 'Lexend', sans-serif;
	font-weight: 600;
	text-transform: uppercase;
	text-align: center;
	background: #fff;
	border-bottom: 5px solid #fff;
	border-right: 5px solid #fff;
	z-index: 1;
}

.news-block-two .inner-box .image-box .category:before {
	position: absolute;
	content: '';
	width: 100%;
	height: 100%;
	left: 0px;
	top: 0px;
	border: 1px solid #e4e0e0;
}

.news-block-two .inner-box .image-box .image {
	position: relative;
	display: block;
	overflow: hidden;
	background: #000;
}

.news-block-two .inner-box .image-box .image img {
	width: 100%;
	transition: all 500ms ease;
}

.news-block-two .inner-box:hover .image-box .image img {
	transform: scale(1.05);
	opacity: 0.5;
}

.news-block-two .inner-box .lower-content {
	position: relative;
	display: block;
	padding-top: 19px;
}

.news-block-two .inner-box .lower-content .post-date h5 {
	position: relative;
	display: block;
	font-size: 16px;
	line-height: 26px;
	padding-left: 22px;
	color: #7d7a78;
	margin-bottom: 5px;
}

.news-block-two .inner-box .lower-content .post-date h5 i {
	position: absolute;
	left: 0px;
	top: 5px;
	font-size: 15px;
}

.news-block-two .inner-box .lower-content h4 {
	position: relative;
	display: block;
	font-size: 20px;
	line-height: 30px;
	font-weight: 500;
	color: #3d3d3d;
	margin-bottom: 14px;
}

.news-block-two .inner-box .lower-content h4 a {
	display: inline-block;
	color: #3d3d3d;
}

.news-block-two .inner-box .lower-content h4 a:hover {}

.news-block-two .inner-box .lower-content .link a {
	position: relative;
	display: inline-block;
	font-size: 14px;
	line-height: 20px;
	font-family: 'Lexend', sans-serif;
	font-weight: 600;
	text-transform: uppercase;
	color: #3d3d3d;
	padding-left: 18px;
}

.news-block-two .inner-box .lower-content .link a:hover {}

.news-block-two .inner-box .lower-content .link a i {
	position: absolute;
	left: 0px;
	top: 2px;
	font-size: 12px;
}


/** footer-style-two **/

.footer-style-two {
	position: relative;
}

.footer-style-two .footer-top {
	position: relative;
	padding: 114px 0px 111px 0px;
	background: #3d3d3d;
	border-bottom: none;
}

.footer-style-two .logo-widget {
	position: relative;
	display: block;
	margin-right: 25px;
	margin-top: 6px;
}

.footer-style-two .logo-widget .text {
	margin-bottom: 16px;
}

.footer-style-two .logo-widget .footer-logo {
	position: relative;
	display: block;
	margin-bottom: 24px;
}

.footer-style-two .logo-widget .rating-box {
	position: relative;
	display: block;
	margin-bottom: 13px;
}

.footer-style-two .logo-widget p {
	color: #c4c4c4;
}

.footer-style-two .logo-widget .rating-box h4 {
	display: block;
	font-size: 20px;
	line-height: 30px;
	color: #fff;
	font-weight: 500;
	margin-bottom: 12px;
}

.footer-style-two .logo-widget .rating-box .rating li {
	position: relative;
	display: inline-block;
	float: left;
	margin-right: 5px;
	width: 35px;
	height: 35px;
	line-height: 41px;
	font-size: 18px;
	color: #fff;
	text-align: center;
}

.footer-style-two .logo-widget .rating-box .rating li:last-child {
	margin: 0px !important;
}

.footer-style-two .footer-top .widget-title:before {}

.footer-style-two .links-widget .links-list li {
	position: relative;
	display: block;
	margin-bottom: 14px;
}

.footer-style-two .links-widget .links-list li:last-child {
	margin-bottom: 0px;
}

.footer-style-two .links-widget .links-list li a {
	position: relative;
	display: inline-block;
	font-size: 16px;
	line-height: 26px;
	color: #c3c4c8;
	padding-left: 22px;
}

.footer-style-two .links-widget .links-list li a:hover {}

.footer-style-two .links-widget .links-list li a:before {
	position: absolute;
	content: '';
	background: #75767b;
	width: 6px;
	height: 6px;
	left: 0px;
	top: 11px;
	transition: all 500ms ease;
}

.footer-style-two .links-widget .links-list li a:hover:before {}

.footer-style-two .newsletter-widget h3 {
	display: block;
	font-size: 24px;
	line-height: 34px;
	color: #fff;
	font-weight: 500;
	margin-bottom: 22px;
}

.footer-style-two .newsletter-widget .form-group {
	position: relative;
	margin-bottom: 15px;
}

.footer-style-two .newsletter-widget .form-group:last-child {
	margin-bottom: 0px;
}

.footer-style-two .newsletter-widget .form-group input[type='text'] {
	position: relative;
	display: block;
	width: 100%;
	height: 54px;
	background: #fff;
	font-size: 16px;
	color: #7d7a78;
	padding: 10px 20px;
	padding-right: 50px;
	border: 1px solid #fff;
	transition: all 500ms ease;
}

.footer-style-two .newsletter-widget .form-group input:focus {}

.footer-style-two .newsletter-widget .form-group .icon {
	position: absolute;
	top: 14px;
	right: 20px;
	z-index: 1;
	font-size: 16px;
	color: #a7a7a7;
}

.footer-style-two .newsletter-widget .form-group .theme-btn {
	padding: 13px 39px;
	color: #fff;
}

.footer-style-two .newsletter-widget .text {
	margin-top: 13px;
}

.footer-style-two .newsletter-widget .text p {
	color: #c4c4c4;
}

.footer-style-two .footer-bottom {
	position: relative;
	background: #353535;
	padding: 22px 0px;
}

.footer-style-two .footer-bottom .copyright p {
	color: #c4c4c4;
}

.footer-style-two .footer-bottom .copyright p a:hover {
	color: #fff;
}

.footer-style-two .footer-bottom .footer-nav {
	position: relative;
	display: flex;
	align-items: center;
}

.footer-style-two .footer-bottom .footer-nav li {
	margin-right: 20px;
}

.footer-style-two .footer-bottom .footer-nav li:last-child {
	margin: 0px !important;
}

.footer-style-two .footer-bottom .footer-nav li a {
	display: inline-block;
	color: #c4c4c4;
}

.footer-style-two .footer-bottom .footer-nav li a:hover {}



/*** 

====================================================================
												Home-Page-Four
====================================================================

***/

.home02_v2 .header-style-two .header-top .top-right .single-item h6 {
	color: #FFF;
}

.home02_v2 .theme-btn.btn-four {
	background: #121113;
}

.home02_v2 .banner-carousel .content-box .btn-box .theme-btn:before {
	background: #121113;
}

.service-style-two .outer-container {
	position: relative;
	padding: 0px 100px;
}

.service-style-two .line-box {
	position: absolute;
	left: 0px;
	top: 0px;
	right: 0px;
	max-width: 900px;
	width: 100%;
	height: 100%;
	margin: 0 auto;
}

.service-style-two .line-box .line {
	position: absolute;
	border-right: 1px dashed #dedede;
	width: 1px;
	height: 100%;
}

.service-style-two .line-box .line-1 {
	left: 0px;
}

.service-style-two .line-box .line-2 {
	left: 50%;
}

.service-style-two .line-box .line-3 {
	right: 0px;
}

.home02_v2 .about-style-two .upper-box .title-text h2 {
	color: #fff;
}

.home02_v2 .about-style-two .upper-box .title-text h2:before {
	background-image: url(../images/shape/shape-69.png);
}

.home02_v2 .chooseus-section {
	background: #121113;
}

.chooseus-section .shape .shape-3 {
	position: absolute;
	left: 100px;
	top: 185px;
	width: 137px;
	height: 13px;
	background-repeat: no-repeat;
}

.chooseus-section .shape .shape-4 {
	position: absolute;
	right: 100px;
	bottom: 240px;
	width: 137px;
	height: 13px;
	background-repeat: no-repeat;
}

.home02_v2 .chooseus-block-one .inner-box .count-text {
	background: #f3f3f3;
}

.home02_v2 .chooseus-block-one .inner-box:hover .count-text {
	color: #fff;
}

.home02_v2 .sec-title-two h2 {
	color: #121113;
}

.home02_v2 .sec-title-two.light h2 {
	color: #fff;
}

.home02_v2 .testimonial-style-two .testimonial-content .text .quote-box {
	color: #c3c4c8;
}

.home02_v2 .testimonial-style-two .testimonial-content .author-box h5 span {
	color: #75767b;
}

.home02_v2 .clients-section {
	background: #121113;
}

.footer-style-two .footer-top {
	background: #121113;
}

.footer-style-two .footer-bottom {
	background: #070707;
}



/*** 

====================================================================
												About-Page
====================================================================

***/


/** page-title **/

.page-title {
	position: relative;
	display: block;
	padding: 70px 0px 60px 0px;
	text-align: center;
}

.page-title .bg-layer {
	position: absolute;
	left: 0px;
	top: 0px;
	right: 0px;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
}

.page-title .bg-layer:before {
	position: absolute;
	content: '';
	background: #000;
	width: 100%;
	height: 100%;
	left: 0px;
	top: 0px;
	opacity: 0.25;
}

.page-title .content-box h1 {
	position: relative;
	display: block;
	font-size: 52px;
	line-height: 62px;
	color: #fff;
	font-weight: 700;
	margin-bottom: 15px;
	text-align: center;
}

.page-title .content-box .bread-crumb {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	margin-top: 10px;
}

.page-title .content-box .bread-crumb li {
	position: relative;
	display: inline-block;
	font-size: 14px;
	line-height: 20px;
	font-family: 'Lexend', sans-serif;
	font-weight: 600;
	text-transform: uppercase;
	color: #fff;
	padding-right: 18px;
	margin-right: 9px;
}

.page-title .content-box .bread-crumb li a {
	color: #fff;
}

.page-title .content-box .bread-crumb li a:hover {}

.page-title .content-box .bread-crumb li:before {
	position: absolute;
	content: "\f106";
	font-family: 'flaticon';
	font-size: 10px;
	top: 0px;
	right: 0px;
	font-weight: 400;
}

.page-title .content-box .bread-crumb li:last-child:before {
	display: none;
}


/** about-style-three **/

.about-style-three {
	position: relative;
	padding-top: 120px;
}

.about-style-three .image-box {
	position: relative;
	display: block;
	margin-right: 20px;
}

.about-style-three .image-box .image {
	position: relative;
	display: block;
	overflow: hidden;
}

.about-style-three .image-box .image img {
	width: 100%;
}

.about-style-three .image-box .text {
	position: absolute;
	right: -1px;
	bottom: 0px;
	width: 370px;
	padding: 41px 80px 0px 30px;
	background: #fff;
	text-align: right;
	clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%, 30% 0%);
}

.about-style-three .image-box .text .icon-box {
	position: absolute;
	bottom: 30px;
	right: 0px;
}

.about-style-three .image-box .text .count-outer {
	position: relative;
	display: block;
	font-size: 50px;
	line-height: 50px;
	font-family: 'Lexend', sans-serif;
	font-weight: 600;
	color: #121113;
	margin-bottom: 5px;
}

.about-style-three .image-box .text h4 {
	display: block;
	font-size: 20px;
	line-height: 30px;
	font-weight: 500;
	color: #75767b;
}

.about-style-three .content-box {
	position: relative;
	display: block;
}

.about-style-three .content-box .inner-box {
	position: relative;
	padding-right: 200px;
}

.about-style-three .content-box .inner-box .logo-box {
	position: absolute;
	top: 7px;
	right: 0px;
}

.about-style-three .content-box .inner-box .logo-box .logo {
	position: relative;
	display: block;
	width: 170px;
	height: 155px;
	line-height: 155px;
	text-align: center;
	background: #fff;
	box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.10);
	margin-bottom: 30px;
}

.about-style-three .content-box .inner-box .logo-box .logo:last-child {
	margin-bottom: 0px;
}

.about-style-three .content-box .inner-box .text {
	margin-bottom: 17px;
}

.about-style-three .content-box .inner-box .text p {
	margin-bottom: 25px;
}

.about-style-three .content-box .inner-box .text p:last-child {
	margin-bottom: 0px;
}

.about-style-three .content-box .inner .link-box li {
	position: relative;
	display: block;
	margin-bottom: 10px;
	padding-bottom: 2px;
	border-bottom: 4px solid #121113;
}

.about-style-three .content-box .inner .link-box li:last-child {
	margin-bottom: 0px;
}

.about-style-three .content-box .inner .link-box li a {
	position: relative;
	display: block;
	font-size: 20px;
	line-height: 30px;
	font-family: 'Lexend', sans-serif;
	font-weight: 500;
	color: #121113;
	padding: 11px 0px 10px 0px;
}

.about-style-three .content-box .inner .link-box li a:hover {
	padding-left: 20px;
	color: #fff;
	background: #121113;
}

.about-style-three .content-box .inner .link-box li a:before {
	position: absolute;
	content: "\f10e";
	font-family: 'flaticon';
	font-size: 40px;
	top: 12px;
	right: -15px;
	color: #a6a7ab;
	font-weight: 400;
	transition: all 500ms ease;
}

.about-style-three .content-box .inner .link-box li a:hover:before {
	opacity: 0;
}

.about-style-three .content-box .inner .link-box li a:after {
	position: absolute;
	content: "\f10f";
	font-family: 'flaticon';
	font-size: 16px;
	top: 14px;
	right: 20px;
	font-weight: 400;
	opacity: 0;
	transition: all 500ms ease;
}

.about-style-three .content-box .inner .link-box li a:hover:after {
	opacity: 1;
}

.about-style-three .content-box .sec-title {
	margin-bottom: 31px;
}

.about-style-three .content-box {
	margin-top: -9px;
}


.funfact-section.alternat-2 .funfact-block-one .inner-box .icon-box {
	position: relative;
	display: inline-block;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	margin-bottom: 15px;
}

.funfact-section.alternat-2 .funfact-block-one .inner-box .count-outer {
	color: #121113;
}

.funfact-section.alternat-2 .funfact-block-one .inner-box h4 {
	color: #75767b;
}


/** history-section **/

.history-section {
	position: relative;
	padding: 120px 0px;
	background: #f6f6f7;
}

.history-section .content-box .single-item {
	position: relative;
	display: block;
	padding: 0px 0px 34px 230px;
	margin-bottom: 31px;
	width: auto !important;
	border-bottom: 1px solid #e2e3e6;
}

.history-section .content-box .single-item .image-box {
	position: absolute;
	left: 0px;
	top: 9px;
	width: 170px;
	height: 170px;
}

.history-section .content-box .single-item .image-box img {
	width: 100%;
}

.history-section .content-box .single-item h2 {
	position: relative;
	display: block;
	font-size: 48px;
	line-height: 50px;
	font-weight: 600;
	color: #c3c4c8;
	padding-left: 80px;
	margin-bottom: 16px;
}

.history-section .content-box .single-item h2:before {
	position: absolute;
	content: '';
	background-image: url(../images/icons/icon-35.png);
	width: 55px;
	height: 34px;
	left: 0px;
	top: 9px;
	background-repeat: no-repeat;
}

.history-section .content-box .single-item h4 {
	display: block;
	font-size: 20px;
	line-height: 30px;
	font-weight: 500;
	margin-bottom: 11px;
}

.history-section .bx-viewport {
	height: 450px !important;
}

.history-section .content-box .btn-box {
	padding-left: 230px;
	margin-top: -29px;
}

.theme-btn.btn-five {
	color: #fff;
	background: #121113;
	padding: 13px 30px;
}

.theme-btn.btn-five:before {
	opacity: 1;
}

.theme-btn.btn-five:hover {
	color: #121113;
}

.history-section .bx-controls-direction a {
	position: relative;
	display: inline-block;
	width: 80px;
	height: 52px;
	border: 1px solid #e2e3e6;
	font-size: 16px;
	color: #c3c4c8;
	line-height: 52px;
	text-align: center;
	cursor: pointer;
	transition: all 500ms ease;
}

.history-section .bx-controls-direction a:hover {}

.history-section .bx-controls-direction a.bx-prev {
	margin-right: 10px;
}

.history-section .bx-controls-direction a.bx-prev:before {
	position: absolute;
	content: "\f106";
	font-family: 'flaticon';
	font-size: 20px;
	color: #c3c4c8;
	width: 80px;
	height: 52px;
	line-height: 52px;
	text-align: center;
	left: 0px;
	top: 0px;
	transform: rotate(90deg);
	transition: all 500ms ease;
}

.history-section .bx-controls-direction a.bx-next:before {
	position: absolute;
	content: "\f106";
	font-family: 'flaticon';
	font-size: 20px;
	color: #c3c4c8;
	width: 80px;
	height: 52px;
	line-height: 52px;
	text-align: center;
	left: 0px;
	top: 0px;
	transform: rotate(-90deg);
	transition: all 500ms ease;
}

.history-section .bx-controls-direction a.bx-prev:hover:before,
.history-section .bx-controls-direction a.bx-next:hover:before {
	color: #121113;
}

.history-section .bx-controls-direction {
	position: relative;
	top: 30px;
}

.history-section .content-box {
	position: relative;
}

.history-section .content-box:before {
	position: absolute;
	content: '';
	background: #e2e3e6;
	width: 1px;
	height: calc(100% - 9px);
	left: 200px;
	top: 9px;
}

.history-section .image-inner {
	position: relative;
	display: block;
	margin-left: 30px;
}

.history-section .image-inner .image {
	position: relative;
	display: block;
	clip-path: polygon(0% 0%, 78% 0%, 100% 23%, 100% 100%, 80% 100%, 23% 100%, 0% 78%, 0% 20%);
}

.history-section .image-inner .image img {
	width: 100%;
}

.history-section .shape {
	position: absolute;
	right: 0px;
	top: 240px;
	width: 183px;
	height: 220px;
	background-repeat: no-repeat;
}

.team-section.alternat-2 .team-block-one .inner-box .social-links li a:hover {
	color: #121113;
}

.team-section.alternat-2 .team-block-one .inner-box .lower-content .designation {
	color: #75767b;
}

.team-section.alternat-2 .more-btn {
	position: relative;
	display: block;
	text-align: center;
	margin-top: 45px;
}


/** dedicated-section **/


.dedicated-section {
	position: relative;
	padding: 111px 0px 120px 0px;
	background: #f6f6f7;
}

.dedicated-section .single-column:first-child .single-item .inner-box {
	padding-right: 70px;
}

.dedicated-section .single-column:last-child .single-item .inner-box {
	padding-left: 70px;
}

.dedicated-section .single-item .inner-box {
	position: relative;
	display: block;
	padding-bottom: 70px;
}

.dedicated-section .single-item .inner-box .image-box {
	position: relative;
	display: block;
}

.dedicated-section .single-item .inner-box .image-box img {
	width: 100%;
}

.dedicated-section .single-item .inner-box .content-box {
	position: absolute;
	bottom: 0px;
	width: 370px;
	background: #fff;
	padding: 23px 30px 24px 30px;
	box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.20);
}

.dedicated-section .single-column:first-child .single-item .inner-box .content-box {
	right: 0px;
	clip-path: polygon(0% 0%, 90% 0%, 100% 15%, 100% 100%, 80% 100%, 21% 100%, 0% 100%, 0% 20%);
}

.dedicated-section .single-column:last-child .single-item .inner-box .content-box {
	left: 0px;
	clip-path: polygon(10% 0%, 100% 0%, 100% 0%, 100% 70%, 100% 100%, 0% 100%, 0% 100%, 0% 15%);
}

.dedicated-section .single-item .inner-box .content-box .upper-box {
	position: relative;
	display: block;
	padding-bottom: 17px;
	margin-bottom: 23px;
	padding-left: 63px;
	border-bottom: 4px solid #121113;
}

.dedicated-section .single-item .inner-box .content-box .upper-box .icon-box {
	position: absolute;
	left: 0px;
	top: 7px;
}

.dedicated-section .single-item .inner-box .content-box .upper-box h4 {
	display: block;
	font-size: 20px;
	line-height: 30px;
	font-weight: 500;
}

.dedicated-section .single-item .inner-box .content-box .text p {
	margin-bottom: 15px;
}

.dedicated-section .single-item .inner-box .content-box .text a {
	position: relative;
	display: inline-block;
	font-size: 14px;
	line-height: 20px;
	font-family: 'Lexend', sans-serif;
	font-weight: 600;
	text-transform: uppercase;
	color: #121113;
}

.dedicated-section .single-item .inner-box .content-box .text a i {
	position: relative;
	font-size: 12px;
	margin-right: 8px;
	top: 1px;
}

.dedicated-section .single-item .inner-box .content-box .text a:hover {}

.dedicated-section .inner-content {
	position: relative;
}

.dedicated-section .inner-content .shape {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	top: 85px;
	width: 112px;
	height: 26px;
	background-repeat: no-repeat;
}

.dedicated-section .pattern-layer .pattern-1 {
	position: absolute;
	left: 100px;
	bottom: 190px;
	width: 183px;
	height: 21px;
	background-repeat: no-repeat;
}

.dedicated-section .pattern-layer .pattern-2 {
	position: absolute;
	right: 100px;
	top: 190px;
	width: 183px;
	height: 21px;
	background-repeat: no-repeat;
}

.team-section.team-page {
	padding: 120px 0px 60px 0px;
}

.team-section.team-page .team-block-one .inner-box {
	margin-bottom: 55px;
}


.faq-page-section {
	position: relative;
	padding: 111px 0px 110px 0px;
}

.faq-page-section .upper-box {
	position: relative;
	margin-bottom: 50px;
}

.faq-page-section .upper-box .big-text {
	position: absolute;
	top: 0px;
	right: 0px;
	font-size: 250px;
	line-height: 200px;
	font-family: 'Lexend', sans-serif;
	font-weight: 600;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 1);
	text-shadow: -1px -1px 0 #ebedef, 1px -1px 0 #ebedef, -1px 1px 0 #ebedef, 1px 1px 0 #ebedef;
}

.faq-page-section .upper-box .form-inner {
	position: relative;
	max-width: 370px;
	width: 100%;
}

.faq-page-section .upper-box .form-inner .form-group {
	position: relative;
	margin-bottom: 0px;
}

.faq-page-section .upper-box .form-inner .form-group input[type='search'] {
	position: relative;
	display: block;
	width: 100%;
	height: 60px;
	border: 1px solid #e8eaed;
	padding: 10px 50px 10px 20px;
	font-size: 16px;
	color: #75767b;
	transition: all 500ms ease;
}

.faq-page-section .upper-box .form-inner .form-group button {
	position: absolute;
	top: 20px;
	right: 18px;
	cursor: pointer;
	font-size: 20px;
	color: #121113;
	transition: all 500ms ease;
}

.faq-page-section .upper-box .form-inner .form-group input:focus {}

.faq-page-section .upper-box .form-inner .form-group input:focus+button,
.faq-page-section .upper-box .form-inner .form-group button:hover {}


.accordion-box .block {
	position: relative;
	display: block;
	transition: all 500ms ease;
}

.accordion-box .block .acc-btn {
	position: relative;
	display: block;
	cursor: pointer;
	padding: 24px 50px 22px 0px;
	border-bottom: 1px solid #e8eaed;
	transition: all 500ms ease;
}

.accordion-box .block .acc-btn .icon-outer {
	position: absolute;
	top: 22px;
	right: 23px;
	transition: all 500ms ease;
}

.accordion-box .block .acc-btn .icon-outer:before {
	position: absolute;
	content: '+';
	font-size: 40px;
	font-family: 'Lexend', sans-serif;
	font-weight: 100;
	color: #a6a7ab;
	transition: all 500ms ease;
}

.accordion-box .block .acc-btn.active .icon-outer {
	transform: rotate(45deg);
	top: 18px;
	right: 7px;
}

.accordion-box .block .acc-btn.active .icon-outer:before {
	color: #121113;
}

.accordion-box .block .acc-btn.active {}

.accordion-box .block .acc-btn h4 {
	font-size: 20px;
	line-height: 30px;
	font-weight: 500;
	padding-left: 40px;
	transition: all 500ms ease;
}

.accordion-box .block .acc-btn h4 span {
	position: absolute;
	left: 0px;
	top: -2px;
	text-transform: uppercase;
}

.accordion-box .block .acc-content {
	position: relative;
	display: none;
	padding: 33px 30px 33px 0px;
	border-bottom: 1px solid #e8eaed;
}

.accordion-box .block .acc-content p {
	padding-left: 40px;
}

.accordion-box .block .acc-content p span {
	position: absolute;
	left: 0px;
	top: -1px;
	font-size: 20px;
	line-height: 30px;
	color: #121113;
	font-family: 'Lexend', sans-serif;
	font-weight: 500;
	text-transform: uppercase;
}

.accordion-box .block .acc-content.current {
	display: block;
}


/** error-section **/

.error-section {
	padding: 270px 0px;
}

.error-section h1 {
	position: relative;
	display: block;
	font-size: 200px;
	line-height: 180px;
	font-weight: 600;
	margin-bottom: 10px;
}

.error-section h1 .text {
	position: relative;
}

.error-section h1 .text:before {
	position: absolute;
	content: '';
	width: 105px;
	height: 105px;
	left: 15px;
	top: 75px;
	border-radius: 50%;
	z-index: -1;
}

.error-section h2 {
	display: block;
	font-size: 36px;
	line-height: 50px;
	font-weight: 500;
	margin-bottom: 12px;
}

.error-section p {
	margin-bottom: 34px;
	line-height: 24px;
}

.error-section .form-inner {
	position: relative;
	max-width: 570px;
	width: 100%;
	margin: 0 auto;
	margin-bottom: 30px;
}

.error-section .form-inner .form-group {
	position: relative;
	margin-bottom: 0px;
}

.error-section .form-inner .form-group input[type='search'] {
	position: relative;
	display: block;
	width: 100%;
	height: 60px;
	border: 1px solid #e8eaed;
	padding: 10px 50px 10px 20px;
	font-size: 16px;
	color: #75767b;
	transition: all 500ms ease;
}

.error-section .form-inner .form-group button {
	position: absolute;
	top: 8px;
	right: 8px;
	width: 44px;
	height: 44px;
	line-height: 50px;
	background: #f6f6f7;
	font-size: 20px;
	color: #121113;
	cursor: pointer;
	transition: all 500ms ease;
}

.error-section .form-inner .form-group input:focus {}

.error-section .form-inner .form-group input:focus+button,
.error-section .form-inner .form-group button:hover {}

.error-section .shape .shape-1 {
	position: absolute;
	left: 0px;
	top: 45px;
	width: 100%;
	height: 75px;
	background-repeat: repeat-x;
	animation: slide_2 60s linear infinite;
	-webkit-animation: slide_2 60s linear infinite;
	transform: rotate(-3deg);
}

.error-section .shape .shape-2 {
	position: absolute;
	left: 0px;
	bottom: 48px;
	width: 100%;
	height: 71px;
	background-repeat: repeat-x;
	animation: slide_2 60s linear infinite;
	-webkit-animation: slide_2 60s linear infinite;
	transform: rotate(-3deg);
}

.error-section .shape .shape-3 {
	position: absolute;
	left: 30px;
	bottom: 175px;
	width: 492px;
	height: 292px;
	background-repeat: no-repeat;
}

.error-section .shape .shape-4 {
	position: absolute;
	left: 315px;
	top: 280px;
	width: 224px;
	height: 240px;
	background-repeat: no-repeat;
}

.error-section .shape .shape-5 {
	position: absolute;
	top: 250px;
	right: 120px;
	width: 293px;
	height: 377px;
	background-repeat: no-repeat;
}



/*** 

====================================================================
												Courses-Page
====================================================================

***/


/** about-style-four **/

.about-style-four {
	position: relative;
	padding: 120px 0px 120px 0px;
}

.about-style-four .image-box {
	position: relative;
	display: block;
	margin-right: 80px;
}

.about-style-four .image-box .image {
	position: relative;
	display: block;
	clip-path: polygon(22% 0%, 100% 0%, 100% 0%, 100% 77%, 79% 100%, 0% 100%, 0% 100%, 0% 23%);
}

.about-style-four .image-box .image img {
	width: 100%;
}

.about-style-four .image-box .big-text {
	position: absolute;
	right: -80px;
	bottom: 0px;
	display: block;
	font-size: 140px;
	line-height: 100px;
	font-family: 'Inter', sans-serif;
	font-weight: 800;
	text-transform: uppercase;
	color: transparent;
	-webkit-text-stroke-width: 1px;
	-webkit-text-stroke-color: #e9ebee;
	z-index: 1;
}

.about-style-four .content-box {
	position: relative;
	display: block;
}

.about-style-four .content-box .sec-title {
	background: #fff;
	padding-left: 60px;
	padding-bottom: 60px;
	margin-left: -360px;
	margin-bottom: 0px;
	margin-top: -12px;
}

.about-style-four .content-box .sec-title h2 {
	margin-bottom: 38px;
}

.about-style-four .content-box .inner-box {
	position: relative;
	margin-top: -119px;
}

.about-style-four .content-box .inner-box .text {
	margin-bottom: 27px;
}

.about-style-four .content-box .inner-box .single-item {
	position: relative;
	display: block;
	padding-left: 70px;
	margin-bottom: 25px;
}

.about-style-four .content-box .inner-box .single-item:last-child {
	margin-bottom: 0px;
}

.about-style-four .content-box .inner-box .single-item .icon-box {
	position: absolute;
	left: 0px;
	top: 6px;
	width: 42px;
	height: 42px;
	line-height: 46px;
	font-size: 14px;
	background: #121113;
	text-align: center;
	transition: all 500ms ease;
}

.about-style-four .content-box .inner-box .single-item:hover .icon-box {
	color: #121113;
}

.about-style-four .content-box .inner-box .single-item h4 {
	display: block;
	font-size: 20px;
	line-height: 30px;
	font-weight: 500;
	margin-bottom: 11px;
}

.courses-section.alternat-2 {
	background: #f6f6f7;
}

.mt_100 {
	margin-top: 100px;
}

.chooseus-section.alternat-2 {
	background: #121113;
}

.chooseus-section.alternat-2 .chooseus-block-one .inner-box .count-text {
	background: #f3f3f3;
	color: #121113;
}

.chooseus-section.alternat-2 .chooseus-block-one .inner-box:hover .count-text {}

.chooseus-section .pattern-layer .pattern-1 {
	position: absolute;
	left: 100px;
	top: 205px;
	width: 137px;
	height: 13px;
	background-repeat: no-repeat;
}

.chooseus-section .pattern-layer .pattern-2 {
	position: absolute;
	right: 100px;
	bottom: 205px;
	width: 137px;
	height: 13px;
	background-repeat: no-repeat;
}

.testimonial-style-two.alternat-2 .testimonial-content .text .quote-box {
	color: #c3c4c8;
}

.testimonial-style-two.alternat-2 .testimonial-content .author-box h5 span {
	color: #75767b;
}

.location-section.alternat-2 {
	background: #f6f6f7;
}

.location-section.alternat-2 .tabs-content .single-location h5 {
	color: #121113;
}

.location-section.alternat-2 .tab-btns li:hover,
.location-section.alternat-2 .tab-btns li.active-btn {
	border-color: #121113;
}

.course-style-three.alternat-2 {
	background: #f6f6f7;
	padding-bottom: 60px;
	clip-path: polygon(10% 0%, 100% 0%, 100% 0%, 100% 77%, 100% 100%, 0% 100%, 0% 100%, 0% 15%);
}

.course-style-three.alternat-2 .course-block-one .inner-box .image-box .price h2 {
	color: #121113;
}

.course-style-three.alternat-2 .course-block-one .inner-box .content-box .btn-box a:hover {
	color: #121113;
}

.course-style-three.alternat-2 .course-block-one .lower-box h6 {
	color: #a6a7ab;
}

.course-block-one .lower-box .icon-box-2 {
	position: absolute;
	left: 0px;
	top: 7px;
	opacity: 0;
	transition: all 500ms ease;
}

.course-block-one:hover .lower-box .icon-box-2 {
	opacity: 1;
}

.course-style-three.alternat-2 .course-block-one {
	margin-bottom: 55px;
}

.course-style-three.alternat-2 .course-block-one .lower-box h3 a {
	color: #121113;
}

.course-style-three .shape .shape-3 {
	position: absolute;
	right: 100px;
	bottom: 195px;
	width: 137px;
	height: 13px;
	background-repeat: no-repeat;
}


/** course-details **/

.course-details {
	position: relative;
	padding: 111px 0px 120px 0px;
}

.course-details .content-box {
	position: relative;
	display: block;
}

.course-details .content-box .text {
	margin-bottom: 43px;
}

.course-details .content-box .text p {
	margin-bottom: 26px;
}

.course-details .content-box .text p:last-child {
	margin-bottom: 0px;
}

.course-details .content-box .sec-title {
	margin-bottom: 31px;
}

.course-details .inner-box {
	position: relative;
	display: block;
}

.course-details .inner-box .upper-box {
	position: relative;
	padding-left: 200px;
}

.course-details .inner-box .upper-box .price-box {
	position: absolute;
	left: 0px;
	top: 7px;
	width: 140px;
	padding: 20px 25px 18px 25px;
	clip-path: polygon(0% 0%, 60% 0%, 100% 40%, 100% 100%, 80% 100%, 0% 100%, 0% 73%, 0% 20%);
}

.course-details .inner-box .upper-box .price-box h6 {
	display: block;
	font-size: 14px;
	line-height: 20px;
	font-weight: 600;
	text-transform: uppercase;
	margin-bottom: 1px;
}

.course-details .inner-box .upper-box .price-box h2 {
	display: inline-block;
	font-size: 48px;
	line-height: 50px;
	font-weight: 500;
	padding-right: 15px;
	margin-bottom: 5px;
}

.course-details .inner-box .upper-box .price-box h2 span {
	position: absolute;
	right: 0px;
	bottom: -9px;
	font-size: 20px;
}

.course-details .inner-box .upper-box .price-box h5 {
	display: block;
	font-size: 16px;
	line-height: 26px;
	font-weight: 500;
}

.course-details .inner-box .upper-box .inner h4 {
	display: block;
	font-size: 20px;
	line-height: 30px;
	font-weight: 500;
	margin-bottom: 12px;
}

.course-details .inner-box .upper-box .inner .rating li {
	position: relative;
	display: inline-block;
	float: left;
	width: 35px;
	height: 35px;
	line-height: 41px;
	font-size: 20px;
	color: #121113;
	text-align: center;
	margin-right: 5px;
}

.course-details .inner-box .upper-box .inner .rating li:last-child {
	margin: 0px !important;
}

.course-details .inner-box .upper-box .inner .rating {
	margin-bottom: 13px;
}

.course-details .inner-box .upper-box .inner p {
	font-weight: 500;
	margin-bottom: 17px;
}

.course-details .inner-box .upper-box .inner .feedback {
	position: relative;
	display: block;
	padding-left: 25px;
}

.course-details .inner-box .upper-box .inner .feedback .icon-box {
	position: absolute;
	left: 0px;
	top: -5px;
}

.course-details .inner-box .upper-box .inner .feedback h6 {
	display: block;
	font-size: 14px;
	line-height: 20px;
	font-weight: 600;
	text-transform: uppercase;
}

.course-details .inner-box .upper-box .inner .feedback h6 a {
	display: inline-block;
	color: #121113;
}

.course-details .inner-box .upper-box .inner .feedback h6 a:hover {}

.course-details .inner-box .upper-box {
	margin-bottom: 39px;
}

.course-details .inner-box .lower-box {
	position: relative;
	display: block;
	background: #121113;
}

.course-details .inner-box .lower-box .border-one {
	position: absolute;
	content: '';
	background: rgba(255, 255, 255, 0.20);
	width: 100%;
	height: 1px;
	left: 0px;
	top: 50%;
}

.course-details .inner-box .lower-box .border-two {
	position: absolute;
	content: '';
	background: rgba(255, 255, 255, 0.20);
	width: 1px;
	height: 100%;
	left: 50%;
	top: 0px;
}

.course-details .inner-box .lower-box .single-item {
	position: relative;
	display: block;
	padding: 27px 20px 26px 90px;
}

.course-details .inner-box .lower-box .single-item .icon-box {
	position: absolute;
	left: 30px;
	top: 30px;
}

.course-details .inner-box .lower-box .single-item h6 {
	display: block;
	font-size: 14px;
	line-height: 20px;
	font-weight: 600;
	color: #fff;
	text-transform: uppercase;
	margin-bottom: 6px;
}

.course-details .inner-box .lower-box .single-item span {
	position: relative;
	display: block;
	font-size: 16px;
	line-height: 26px;
	font-weight: 500;
	color: #d2d3d7;
}


.team-section.course-details {
	background: #121113;
}

.team-section.course-details .team-block-one .inner-box .image-box .text {
	font-size: 30px;
	text-shadow: none;
	color: transparent;
	-webkit-text-stroke-width: 1px;
	-webkit-text-stroke-color: #353338;
}

.team-section.course-details .team-block-one .inner-box .social-links li a:hover {
	color: #121113;
}

.team-section.course-details .team-block-one .inner-box .lower-content h4 a {
	color: #fff;
}

.team-section.course-details .team-block-one .inner-box .lower-content h4 a:hover {}



/** trainers-section **/


.trainers-section {
	position: relative;
	padding: 120px 0px 120px 0px;
}

.trainers-section .image-box {
	position: relative;
	display: block;
	margin-right: 30px;
}

.trainers-section .image-box .image {
	position: relative;
	display: block;
	clip-path: polygon(0% 0%, 81% 0%, 100% 25%, 100% 100%, 80% 100%, 19% 100%, 0% 75%, 0% 20%);
}

.trainers-section .image-box .image:before {
	position: absolute;
	content: '';
	background: #000;
	width: 100%;
	height: 100%;
	left: 0px;
	top: 0px;
	opacity: 0.1;
}

.trainers-section .image-box .image img {
	width: 100%;
}

.trainers-section .content-box {
	position: relative;
	display: block;
	margin-right: 30px;
	margin-top: -9px;
}

.trainers-section .content-box .sec-title {
	margin-bottom: 31px;
}

.trainers-section .content-box .text {
	margin-bottom: 30px;
}

.trainers-section .content-box .text p {
	margin-bottom: 26px;
}

.trainers-section .content-box .text p:last-child {
	margin-bottom: 0px;
}

.trainers-section .content-box .support-box {
	position: relative;
	display: block;
	padding: 0px 0px 0px 55px;
}

.trainers-section .content-box .support-box .icon-box {
	position: absolute;
	left: 0px;
	top: 5px;
}

.trainers-section .content-box .support-box h5 {
	display: block;
	font-size: 16px;
	line-height: 20px;
	font-weight: 500;
	color: #75767b;
	margin-bottom: 3px;
}

.trainers-section .content-box .support-box h4 {
	position: relative;
	display: block;
	font-size: 20px;
	line-height: 30px;
	font-weight: 500;
}

.trainers-section .content-box .support-box h4 a {
	display: inline-block;
	color: #121113;
}

.trainers-section .content-box .support-box h4 a:hover {}


/** enquire-section **/

.enquire-section {
	position: relative;
	padding: 112px 0px 113px 0px;
}

.enquire-section .sec-title h2 {
	margin-bottom: 11px;
}

.enquire-section .sec-title p {
	color: #121113;
	font-weight: 500;
}

.nice-select:after {
	width: 8px;
	height: 8px;
	border-bottom: 2px solid #6e6e6e;
	border-right: 2px solid #6e6e6e;
	right: 20px;
}

.nice-select {
	position: relative;
	display: block;
	height: 56px;
	line-height: 56px;
	border: 1px solid #fff !important;
	background: #fff;
	padding: 0px 20px;
	font-size: 16px;
	font-family: 'Inter', sans-serif;
	color: #75767b;
	border-radius: 0px;
}

.enquire-section .form-inner .form-group {
	position: relative;
	display: block;
	margin-bottom: 30px;
}

.enquire-section .form-inner .form-group .select-box {
	min-height: 56px;
}

.enquire-section .form-inner .form-group input[type='text'],
.enquire-section .form-inner .form-group input[type='email'],
.enquire-section .form-inner .form-group textarea {
	position: relative;
	display: block;
	width: 100%;
	height: 56px;
	background: #fff;
	padding: 10px 20px;
	font-size: 16px;
	font-family: 'Inter', sans-serif;
	color: #75767b;
	border: 1px solid #fff;
	transition: all 500ms ease;
}

.enquire-section .form-inner .form-group textarea {
	height: 142px;
	resize: none;
}

.enquire-section .form-inner .form-group input:focus,
.enquire-section .form-inner .form-group textarea:focus {
	border-color: #121113;
}

.enquire-section .form-inner .form-group button {
	position: relative;
	display: block;
	width: 100%;
	font-size: 14px;
	line-height: 24px;
	font-family: 'Lexend', sans-serif;
	font-weight: 600;
	text-transform: uppercase;
	text-align: center;
	color: #121113;
	background: #fff;
	padding: 16px 30px;
	transition: all 500ms ease;
}

.enquire-section .form-inner .form-group button:hover {
	color: #fff;
	background: #121113;
}

.enquire-section .text h5 {
	display: block;
	font-size: 16px;
	line-height: 26px;
	font-weight: 500;
}

.enquire-section .text h5 a {
	color: #121113;
}

.enquire-section .text h5 a:hover {
	text-decoration: underline;
}

.enquire-section .text {
	padding-top: 13px;
}

.enquire-section .shape .shape-1 {
	position: absolute;
	left: 0px;
	bottom: 0px;
	width: 545px;
	height: 210px;
	background-repeat: no-repeat;
}

.enquire-section .shape .shape-2 {
	position: absolute;
	left: 345px;
	bottom: 100px;
	width: 137px;
	height: 13px;
	background-repeat: no-repeat;
}

.enquire-section .shape .shape-3 {
	position: absolute;
	top: 0px;
	right: 0px;
	width: 123px;
	height: 219px;
	background-repeat: no-repeat;
}

.enquire-section .shape .shape-4 {
	position: absolute;
	bottom: 120px;
	right: 100px;
	width: 178px;
	height: 20px;
	background-repeat: no-repeat;
}


/** about-service **/


.about-service {
	position: relative;
	padding: 115px 0px;
}

.about-service .sec-title {
	margin-bottom: 0px;
}

.about-service .text p {
	margin-bottom: 16px;
}

.about-service .text .list li {
	position: relative;
	display: block;
	padding-left: 35px;
	margin-bottom: 10px;
}

.about-service .text .list li:last-child {
	margin-bottom: 0px;
}

.about-service .text .list li:before {
	position: absolute;
	content: "\f12f";
	font-family: 'flaticon';
	font-size: 16px;
	left: 0px;
	top: 1px;
	color: #a6a7ab;
}

.about-service .text .list {
	margin-bottom: 30px;
}

.about-service .text .theme-btn {
	padding: 13px 45px;
}


.service-section.service-page {
	background: #fff;
	padding: 320px 0px 70px 0px;
}

.service-section.service-page .service-block-one .inner-box {
	box-shadow: 0px 10px 40px 0px rgba(0, 0, 0, 0.10);
	background: #121113;
	margin-bottom: 50px;
}

.service-section.service-page .service-block-one .inner-box .image-box .icon-box {
	background: #fff;
}

.service-section.service-page .shape .shape-3 {
	position: absolute;
	left: 275px;
	top: 0px;
	width: 303px;
	height: 161px;
	background-repeat: no-repeat;
}

.service-section.service-page .shape .shape-4 {
	position: absolute;
	left: 50%;
	top: 0px;
	width: 183px;
	height: 21px;
	background-repeat: no-repeat;
}

.service-section.service-page .shape .shape-5 {
	position: absolute;
	top: 0px;
	right: 375px;
	width: 49px;
	height: 30px;
	background-repeat: no-repeat;
}

.service-section.service-page .shape .shape-6 {
	position: absolute;
	top: 90px;
	right: 0px;
	width: 713px;
	height: 579px;
	background-repeat: no-repeat;
}

.service-section.service-page .shape .shape-7 {
	position: absolute;
	right: 100px;
	bottom: 170px;
	width: 137px;
	height: 13px;
	background-repeat: no-repeat;
}

.service-section.service-page .shape .shape-8 {
	position: absolute;
	left: 230px;
	bottom: 320px;
	width: 49px;
	height: 30px;
	background-repeat: no-repeat;
}

.service-section.service-page .shape .shape-9 {
	position: absolute;
	left: 100px;
	top: 35%;
	width: 178px;
	height: 20px;
	background-repeat: no-repeat;
}

.service-section.service-page .big-text {
	position: absolute;
	left: 120px;
	top: 55px;
	font-size: 190px;
	line-height: 200px;
	font-family: 'Lexend', sans-serif;
	font-weight: 700;
	margin-bottom: 36px;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 1);
	text-shadow: -1px -1px 0 #e9ebee, 1px -1px 0 #e9ebee, -1px 1px 0 #e9ebee, 1px 1px 0 #e9ebee;
	z-index: 1;
}

.service-section.service-page-2 {
	padding-top: 111px;
}

.service-section.service-page-2 .service-block-one .inner-box .lower-content .text {
	position: absolute;
	left: 0px;
	bottom: 50px;
	width: 100%;
	background: rgba(0, 0, 0, 0.7);
}

.service-section.service-page-2 .sec-title h2 {
	margin-bottom: 11px;
}

.service-section.service-page .service-block-one .inner-box .lower-content .lower-box .arrow-icon li {
	color: #f6f6f7;
}

.service-section.service-page .service-block-one .inner-box:hover .lower-content .lower-box .arrow-icon li {
	color: #121113;
}


/** service-details **/

.service-details {
	position: relative;
	padding: 120px 0px;
}

.service-details-content {
	position: relative;
	display: block;
}

.service-details-content .content-one {
	margin-bottom: 60px;
}

.service-details-content .content-one .upper-text {
	margin-bottom: 45px;
}

.service-details-content h2 {
	position: relative;
	display: block;
	font-size: 36px;
	line-height: 46px;
	font-weight: 500;
	margin-bottom: 23px;
}

.service-details-content .content-one .two-column .text {
	margin-right: -20px;
}

.service-details-content .content-one .inner-box {
	margin-left: 20px;
	margin-top: 8px;
}

.service-details-content .content-one .inner-box .single-item {
	position: relative;
	display: block;
	background: #f6f6f7;
	padding: 24px 30px 23px 65px;
	margin-bottom: 30px;
	margin-left: 35px;
}

.service-details-content .content-one .inner-box .single-item:last-child {
	margin-bottom: 0px;
}

.service-details-content .content-one .inner-box .single-item .icon-box {
	position: absolute;
	display: inline-block;
	left: -35px;
	top: 35px;
	width: 70px;
	height: 70px;
	line-height: 78px;
	background: #fff;
	box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.15);
	font-size: 24px;
	text-align: center;
	color: #c3c4c8;
}

.service-details-content .content-one .inner-box .single-item h4 {
	display: block;
	font-size: 20px;
	line-height: 30px;
	font-weight: 500;
	margin-bottom: 11px;
}

.service-details-content p {
	color: #75767b;
}

.service-details-content .image-box {
	position: relative;
	display: block;
	margin-bottom: 52px;
}

.service-details-content .image-box img {
	width: 100%;
}

.service-details-content .content-two .text {
	margin-bottom: 37px;
}

.service-details-content .content-two .single-item {
	position: relative;
	display: block;
	padding-left: 60px;
	margin-bottom: 38px;
}

.service-details-content .content-two .single-item .icon-box {
	position: absolute;
	left: 0px;
	top: 6px;
	width: 42px;
	height: 42px;
	line-height: 46px;
	font-size: 18px;
	color: #121113;
	text-align: center;
}

.service-details-content .content-two .single-item h5 {
	display: block;
	font-size: 18px;
	line-height: 26px;
	font-weight: 500;
	margin-bottom: 2px;
}

.service-details-content .content-two .inner-box {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: #f6f6f7;
	padding: 33px 40px 36px 40px;
	margin-top: 16px;
	clip-path: polygon(0% 0%, 95% 0%, 100% 30%, 100% 100%, 80% 100%, 5% 100%, 0% 75%, 0% 20%);
}

.service-details-content .content-two .inner-box .download-option {
	position: relative;
	display: block;
	padding-left: 70px;
}

.service-details-content .content-two .inner-box .download-option .icon-box {
	position: absolute;
	left: 0px;
	top: 7px;
}

.service-details-content .content-two .inner-box .download-option h4 {
	display: block;
	font-size: 20px;
	line-height: 30px;
	font-weight: 500;
	margin-bottom: 5px;
}

.service-details-content .content-two .inner-box .download-option h5 {
	position: relative;
	display: block;
	font-size: 16px;
	line-height: 20px;
	font-family: 'Lexend', sans-serif;
	font-weight: 500;
	color: #75767b;
	margin: 0px;
}

.service-details-content .content-two .inner-box .theme-btn {
	padding: 13px 50px;
}

.service-details-content .content-two {
	margin-bottom: 52px;
}

.service-details-content .content-three .text {
	margin-bottom: 33px;
}

.service-details-content .content-three .tabs-content {
	position: relative;
	padding: 33px 40px 34px 40px;
	border: 1px solid #e8eaed;
}

.service-details-content .content-three .tab-btns li {
	position: relative;
	display: inline-block;
	float: left;
	width: 35%;
	padding: 17px 30px 17px 40px;
	cursor: pointer;
	border: 1px solid #fff;
	border-bottom: none !important;
	transition: all 500ms ease;
}

.service-details-content .content-three .tab-btns li.active-btn {
	border: 1px solid #e8eaed;
}

.service-details-content .content-three .tab-btns li h4 {
	position: relative;
	display: block;
	font-size: 20px;
	line-height: 30px;
	font-weight: 500;
	padding-left: 22px;
	color: #a6a7ab;
	transition: all 500ms ease;
}

.service-details-content .content-three .tab-btns li.active-btn h4 {
	color: #121113;
}

.service-details-content .content-three .tab-btns li h4:before {
	position: absolute;
	content: "\f106";
	font-family: 'flaticon';
	font-size: 14px;
	left: 0px;
	top: 0px;
	opacity: 0;
	transition: all 500ms ease;
}

.service-details-content .content-three .tab-btns li.active-btn h4:before {
	opacity: 1;
}

.service-sidebar {
	position: relative;
	display: block;
}

.service-sidebar .service-category {
	position: relative;
	display: block;
	background: #fff;
	padding: 24px 30px 23px 30px;
	box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.15);
	margin-bottom: 50px;
}

.service-sidebar .service-category h4 {
	position: relative;
	display: block;
	font-size: 20px;
	line-height: 30px;
	font-weight: 500;
	padding-bottom: 12px;
	border-bottom: 1px solid #e8eaed;
	padding-left: 23px;
	margin-bottom: 24px;
}

.service-sidebar .service-category h4:before {
	position: absolute;
	content: "\f106";
	font-family: 'flaticon';
	font-size: 14px;
	left: 0px;
	top: 0px;
	transition: all 500ms ease;
}

.service-sidebar .service-category .category-list li {
	position: relative;
	display: block;
	margin-bottom: 20px;
}

.service-sidebar .service-category .category-list li:last-child {
	margin-bottom: 0px;
}

.service-sidebar .service-category .category-list li a {
	position: relative;
	display: inline-block;
	font-size: 16px;
	line-height: 26px;
	font-weight: 500;
	font-family: 'Lexend', sans-serif;
	color: #121113;
	padding-left: 30px;
}

.service-sidebar .service-category .category-list li a:hover {
	color: #75767b;
}

.service-sidebar .service-category .category-list li a:before {
	position: absolute;
	content: "\f2ec";
	font-family: 'Font Awesome 5 Pro';
	font-size: 12px;
	left: 0px;
	top: 1px;
	color: #a6a7ab;
	transition: all 500ms ease;
}

.service-sidebar .service-category .category-list li a:hover:before,
.service-sidebar .service-category .category-list li a.current:before {
	transform: rotate(90deg);
}

.service-sidebar .service-category .shape {
	position: absolute;
	left: 0px;
	top: -6px;
	width: 100%;
	height: 6px;
	background-repeat: repeat-x;
	animation: slide_2 60s linear infinite;
	-webkit-animation: slide_2 60s linear infinite;
}


.service-sidebar .contact-widget {
	position: relative;
	display: block;
	background: #121113;
	padding: 24px 30px 30px 30px;
	overflow: hidden;
	max-width: 270px;
}

.service-sidebar .contact-widget h4 {
	display: block;
	font-size: 20px;
	line-height: 30px;
	color: #fff;
	font-weight: 500;
	margin-bottom: 10px;
}

.service-sidebar .contact-widget p {
	color: #d2d3d7;
	margin-bottom: 218px;
}

.service-sidebar .contact-widget .image-box {
	position: absolute;
	right: 0px;
	bottom: 107px;
	clip-path: polygon(0% 26%, 100% 0%, 100% 30%, 100% 100%, 100% 74%, 0% 100%, 0% 100%, 0% 20%);
}

.service-sidebar .contact-widget .theme-btn {
	background: #fff;
	color: #121113;
	width: 100%;
	padding: 13px 30px;
}

.service-sidebar .contact-widget .theme-btn:hover {}

.service-sidebar .contact-widget .shape {
	position: absolute;
	left: 0px;
	bottom: 127px;
	width: 240px;
	height: 160px;
	background-repeat: no-repeat;
}



/*** 

====================================================================
												Blog-Page
====================================================================

***/


.news-block-one .inner-box .lower-content h3 {
	position: relative;
	display: block;
	font-size: 24px;
	line-height: 34px;
	font-weight: 500;
	padding-bottom: 18px;
	margin-bottom: 17px;
	border-bottom: 1px solid #e2e3e6;
}

.news-block-one .inner-box .lower-content h3 a {
	position: relative;
	display: inline-block;
	color: #121113;
}

.news-block-one .inner-box .lower-content h3 a:hover {}

.blog-grid {
	padding: 120px 0px;
}

.blog-grid .news-block-one .inner-box {
	margin-bottom: 50px;
}

.blog-page-one .news-block-one .inner-box .lower-content {
	clip-path: polygon(0% 0%, 100% 0%, 100% 0%, 100% 65%, 90% 100%, 0% 100%, 0% 100%, 0% 0%);
}

.blog-page-one .more-btn .theme-btn {
	padding: 13px 50px;
}

.blog-page-one .more-btn {
	margin-top: 10px;
}

.blog-page-two.blog-grid .news-block-one .inner-box {
	margin-bottom: 40px;
}

.blog-page-two .pagination-wrapper {
	margin-top: 20px;
}

.blog-grid .news-block-two .inner-box .image-box .category:before {
	display: none;
}

.blog-grid .news-block-two .inner-box .image-box .category {
	color: #121113;
}

.blog-grid .news-block-two .inner-box .lower-content .post-date h5 i {
	color: #a6a7ab;
}

.blog-grid .news-block-two .inner-box .lower-content h4 a {
	color: #121113;
}

.blog-grid .news-block-two .inner-box .lower-content h4 a:hover {}

.blog-grid .news-block-two .inner-box .lower-content .link a i {}

.blog-grid .news-block-two .inner-box .lower-content .link a {
	color: #121113;
}

.blog-grid .news-block-two .inner-box .lower-content .link a:hover {}

.blog-grid .news-block-two .inner-box {
	margin-bottom: 44px;
}

.blog-page-three .more-btn .theme-btn {
	padding: 13px 50px;
}

.blog-page-three .more-btn {
	margin-top: 10px;
}



/** sidebar-page-container **/

.sidebar-page-container {
	position: relative;
	padding: 120px 0px;
}

.blog-list-one .news-block-one .inner-box .lower-content h3 {
	font-size: 28px;
	line-height: 38px;
	margin-bottom: 14px;
}

.blog-list-one .news-block-one .inner-box {
	margin-bottom: 60px;
}

.blog-list .news-block-one .inner-box .lower-content h3 {
	padding-bottom: 0px;
	border-bottom: none;
}

.blog-list .news-block-one .inner-box {
	box-shadow: none
}

.blog-list .news-block-one .inner-box .lower-content {
	background: transparent;
	clip-path: none;
	padding: 0px;
}

.blog-list .news-block-one .inner-box .lower-content .text {
	background: #f6f6f7;
	border: 1px solid #e8eaed;
	padding: 32px 40px 33px 40px;
}

.blog-list .news-block-one .inner-box .lower-content .lower-box {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 17px 70px 15px 40px;
	background: #fff;
	border: 1px solid #e8eaed;
	border-top: none;
	clip-path: polygon(0% 0%, 100% 0%, 93% 100%, 0% 100%, 0% 0%);
}

.blog-list .news-block-one .inner-box .lower-content .lower-box:before {
	position: absolute;
	content: '';
	background: #e8eaed;
	width: 1px;
	height: 83px;
	top: -12px;
	right: 27px;
	transform: rotate(43deg);
}

.blog-list .news-block-one .inner-box .lower-content .lower-box:after {
	position: absolute;
	content: '';
	background: #e8eaed;
	width: 1px;
	height: 82px;
	top: -12px;
	right: 120px;
	transform: rotate(43deg);
}

.blog-list .news-block-one .inner-box .lower-content .lower-box .share-box {
	position: relative;
}

.blog-list .news-block-one .inner-box .lower-content .lower-box .share-box .share-btn {
	position: relative;
	display: inline-block;
	font-size: 16px;
	color: #a6a7ab;
}

.blog-list .news-block-one .inner-box .lower-content .lower-box .share-box .share-btn:hover {}

.blog-list .news-block-one .inner-box .lower-content .lower-box .share-box .social-links {
	position: absolute;
	right: 20px;
	bottom: 0px;
	opacity: 0;
	visibility: hidden;
	width: 70px;
	transition: all 500ms ease;
}

.blog-list .news-block-one .inner-box .lower-content .lower-box .share-box .social-links:before {
	position: absolute;
	content: '';
	background: transparent;
	width: 15px;
	height: 20px;
	right: -15px;
	top: 0px;
}

.blog-list .news-block-one .inner-box .lower-content .lower-box .share-box:hover .social-links {
	opacity: 1;
	visibility: visible;
	right: 30px;
}

.blog-list .news-block-one .inner-box .lower-content .lower-box .share-box .social-links li {
	position: relative;
	display: inline-block;
	margin-left: 12px;
}

.blog-list .news-block-one .inner-box .lower-content .lower-box .share-box .social-links li:first-child {
	margin-left: 0px;
}

.blog-list .news-block-one .inner-box .lower-content .lower-box .share-box .social-links li a {
	position: relative;
	display: inline-block;
	font-size: 15px;
	color: #a6a7ab;
}

.blog-list .news-block-one .inner-box .lower-content .lower-box .share-box .social-links li a:hover {}


.blog-sidebar {
	position: relative;
	display: block;
}

.blog-sidebar .widget-title {
	position: relative;
	display: block;
	padding-left: 23px;
	margin-bottom: 22px;
}

.blog-sidebar .widget-title:before {
	position: absolute;
	content: "\f106";
	font-family: 'flaticon';
	font-size: 14px;
	left: 0px;
	top: 2px;
	transition: all 500ms ease;
}

.blog-sidebar .widget-title h4 {
	display: block;
	font-size: 20px;
	line-height: 30px;
	font-weight: 500;
}

.blog-sidebar .search-widget .search-inner .form-group {
	position: relative;
	margin: 0px;
}

.blog-sidebar .search-widget .search-inner .form-group input[type='search'] {
	position: relative;
	display: block;
	width: 100%;
	height: 60px;
	border: 1px solid #e8eaed;
	padding: 10px 50px 10px 20px;
	font-size: 16px;
	color: #75767b;
	transition: all 500ms ease;
}

.blog-sidebar .search-widget .search-inner .form-group input:focus {}

.blog-sidebar .search-widget .search-inner .form-group button {
	position: absolute;
	top: 19px;
	right: 17px;
	font-size: 22px;
	color: #121113;
	cursor: pointer;
	transition: all 500ms ease;
}

.blog-sidebar .search-widget .search-inner .form-group input:focus+button,
.blog-sidebar .search-widget .search-inner .form-group button:hover {}

.blog-sidebar .search-widget {
	margin-bottom: 60px;
}

.blog-sidebar .author-widget .image-box {
	position: relative;
	padding: 0px 50px;
	margin-bottom: 24px;
}

.blog-sidebar .author-widget .image-box .image {
	position: relative;
	display: block;
	clip-path: polygon(0% 0%, 78% 0%, 100% 24%, 100% 100%, 80% 100%, 23% 100%, 0% 76%, 0% 20%);
}

.blog-sidebar .author-widget .image-box .image img {
	width: 100%;
}

.blog-sidebar .author-widget .image-box .big-text {
	position: absolute;
	left: -73px;
	top: 65px;
	font-size: 34px;
	line-height: 40px;
	font-weight: 700;
	font-family: 'Inter', sans-serif;
	color: rgba(255, 255, 255, 1);
	text-shadow: -1px -1px 0 #ebe8e8, 1px -1px 0 #ebe8e8, -1px 1px 0 #ebe8e8, 1px 1px 0 #ebe8e8;
	transform: rotate(90deg);
	text-transform: uppercase;
	letter-spacing: 4px;
}

.blog-sidebar .author-widget .image-box .shape {
	position: absolute;
	right: 0px;
	bottom: 0px;
	width: 26px;
	height: 150px;
	background-repeat: no-repeat;
}

.blog-sidebar .author-widget .image-box .signature {
	position: absolute;
	left: 0px;
	bottom: 0px;
}

.blog-sidebar .author-widget .author-content h4 {
	display: block;
	font-size: 20px;
	line-height: 30px;
	font-weight: 500;
	margin-bottom: 7px;
}

.blog-sidebar .author-widget .author-content p {
	margin-bottom: 18px;
}

.blog-sidebar .author-widget .author-content .social-links li {
	position: relative;
	display: inline-block;
	float: left;
	margin-right: 10px;
}

.blog-sidebar .author-widget .author-content .social-links li:last-child {
	margin: 0px !important;
}

.blog-sidebar .author-widget .author-content .social-links li a {
	position: relative;
	display: inline-block;
	width: 36px;
	height: 36px;
	line-height: 36px;
	font-size: 15px;
	border: 1px solid #e8eaed;
	color: #a6a7ab;
	text-align: center;
}

.blog-sidebar .author-widget .author-content .social-links li a:hover {
	color: #121113;
}

.blog-sidebar .author-widget {
	padding-bottom: 40px;
	margin-bottom: 34px;
	border-bottom: 1px solid #e7e9ec;
}

.blog-sidebar .category-widget .category-list li {
	position: relative;
	display: block;
	margin-bottom: 16px;
}

.blog-sidebar .category-widget .category-list li:last-child {
	margin-bottom: 0px;
}

.blog-sidebar .category-widget .category-list li a {
	position: relative;
	display: block;
	font-size: 14px;
	line-height: 24px;
	font-family: 'Lexend', sans-serif;
	text-transform: uppercase;
	font-weight: 500;
	color: #75767b;
}

.blog-sidebar .category-widget .category-list li a span {
	position: relative;
	display: inline-block;
	top: -8px;
}

.blog-sidebar .category-widget .category-list li a:hover {
	color: #121113;
}

.blog-sidebar .category-widget .category-list li a:before {
	position: absolute;
	content: '';
	width: 8px;
	height: 8px;
	border: 2px solid #d2d3d7;
	top: 4px;
	right: 0px;
	transition: all 500ms ease;
}

.blog-sidebar .category-widget .category-list li a:hover:before {}

.blog-sidebar .category-widget .widget-title {
	margin-bottom: 33px;
}

.blog-sidebar .category-widget {
	padding-bottom: 33px;
	margin-bottom: 33px;
	border-bottom: 1px solid #e7e9ec;
}

.blog-sidebar .post-widget .post {
	position: relative;
	display: block;
	padding-left: 100px;
	min-height: 89px;
	margin-bottom: 30px;
}

.blog-sidebar .post-widget .post:last-child {
	margin-bottom: 0px;
}

.blog-sidebar .post-widget .post .post-thumb {
	position: absolute;
	left: 0px;
	top: 5px;
	width: 80px;
	height: 80px;
	background: #121113;
}

.blog-sidebar .post-widget .post .post-thumb img {
	width: 100%;
	opacity: 0.9;
	transition: all 500ms ease;
}

.blog-sidebar .post-widget .post:hover .post-thumb img {
	opacity: 0.25;
}

.blog-sidebar .post-widget .post .post-thumb a {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%) scale(0, 0);
	font-size: 24px;
	z-index: 1;
}

.blog-sidebar .post-widget .post:hover .post-thumb a {
	transform: translate(-50%, -50%) scale(1, 1);
}

.blog-sidebar .post-widget .post .post-date {
	position: relative;
	display: block;
	font-size: 16px;
	line-height: 24px;
	font-family: 'Lexend', sans-serif;
	color: #75767b;
	margin-bottom: 9px;
}

.blog-sidebar .post-widget .post .post-date i {
	margin-right: 8px;
	font-size: 14px;
}

.blog-sidebar .post-widget .post h5 {
	display: block;
	font-size: 18px;
	line-height: 28px;
	font-weight: 500;
}

.blog-sidebar .post-widget .post h5 a {
	display: inline-block;
	color: #121113;
}

.blog-sidebar .post-widget .post h5 a:hover {}

.blog-sidebar .post-widget .widget-title {
	margin-bottom: 30px;
}

.blog-sidebar .post-widget {
	padding-bottom: 36px;
	margin-bottom: 33px;
	border-bottom: 1px solid #e7e9ec;
}

.blog-sidebar .tags-widget .tags-list li {
	position: relative;
	display: inline-block;
	float: left;
	margin-right: 10px;
	margin-bottom: 10px;
}

.blog-sidebar .tags-widget .tags-list li a {
	position: relative;
	display: inline-block;
	font-size: 16px;
	line-height: 24px;
	font-family: 'Lexend', sans-serif;
	color: #75767b;
	background: #f6f6f7;
	padding: 6px 20px;
}

.blog-sidebar .tags-widget .tags-list li a:hover {
	color: #121113;
}

.blog-sidebar .tags-widget .widget-title {
	margin-bottom: 32px;
}

.blog-sidebar .tags-widget {
	padding-bottom: 30px;
	margin-bottom: 40px;
	border-bottom: 1px solid #e7e9ec;
}

.blog-sidebar .newsletter-widget .widget-content {
	position: relative;
	display: block;
	background: #121113;
	padding: 35px 40px 33px 40px;
	clip-path: polygon(0% 0%, 84% 0%, 100% 16%, 100% 100%, 80% 100%, 16% 100%, 0% 84%, 0% 20%);
	max-width: 370px;
}

.blog-sidebar .newsletter-widget .widget-title h4 {
	color: #fff;
}

.blog-sidebar .newsletter-widget .widget-title {
	margin-bottom: 11px;
}

.blog-sidebar .newsletter-widget p {
	color: #d2d3d7;
	margin-bottom: 23px;
}

.blog-sidebar .newsletter-widget .form-inner .form-group {
	position: relative;
	margin-bottom: 10px;
}

.blog-sidebar .newsletter-widget .form-inner .form-group:last-child {
	margin-bottom: 0px;
	padding-top: 9px;
}

.blog-sidebar .newsletter-widget .form-inner .form-group input[type='email'] {
	position: relative;
	display: block;
	width: 100%;
	height: 52px;
	background: #fff;
	font-size: 16px;
	color: #75767b;
	padding: 10px 20px;
}

.blog-sidebar .newsletter-widget .form-inner .form-group button {
	width: 100%;
	padding: 13px 15px;
}

.blog-sidebar .newsletter-widget .shape {
	position: absolute;
	right: 0px;
	top: 60px;
	width: 145px;
	height: 247px;
	background-repeat: no-repeat;
}


/** check-box **/

.check-box input {
	display: none;
}

.check-box {
	margin-bottom: 9px;
}

.check-box:last-child {
	margin-bottom: 0px;
}

.check-box label {
	position: relative;
	font-size: 16px;
	line-height: 26px;
	color: #d2d3d7;
	padding-left: 27px;
	display: inline-block;
	cursor: pointer;
	margin-bottom: 0px;
	transition: all 500ms ease;
}

.check-box label:before {
	position: absolute;
	content: '';
	left: 0px;
	top: 6px;
	width: 16px;
	height: 16px;
	background: #fff;
}

.check-box label:after {
	position: absolute;
	content: '\f00c';
	font-family: 'Font Awesome 5 Pro';
	font-size: 10px;
	left: 0px;
	top: 5px;
	width: 16px;
	height: 16px;
	line-height: 18px;
	color: #121113;
	opacity: 0;
	font-weight: 700;
	text-align: center;
}

.check-box input:checked+label:after {
	opacity: 1;
}


/** blog-list-two **/

.blog-list-two .news-block-one .inner-box {
	position: relative;
	padding-left: 270px;
	margin-bottom: 40px;
}

.blog-list-two .news-block-one .inner-box .image-box {
	position: absolute;
	left: 0px;
	top: 0px;
	width: 250px;
}

.blog-list-two .news-block-one .inner-box .category {
	position: relative;
	display: inline-block;
	font-size: 14px;
	line-height: 20px;
	font-family: 'Lexend', sans-serif;
	font-weight: 600;
	text-transform: uppercase;
	color: #121113;
	padding: 10px 22px;
	margin-bottom: 5px;
}

.blog-list-two .news-block-one .inner-box .lower-content .text {
	padding: 22px 30px 23px 30px;
}

.blog-list-two .news-block-one .inner-box .lower-content h3 {
	margin-bottom: 11px;
}

.blog-list-two .news-block-one .inner-box .lower-content .lower-box {
	clip-path: polygon(0% 0%, 100% 0%, 91% 100%, 0% 100%, 0% 0%);
}

.blog-list-two .news-block-one .inner-box .image-box .image {
	background: #121113;
}

.blog-list-two .news-block-one .inner-box .image-box .image img {
	opacity: 0.9;
	transition: all 500ms ease;
}

.blog-list-two .news-block-one .inner-box:hover .image-box .image img {
	opacity: 0.5;
}

.blog-list-two .pagination-wrapper {
	padding-top: 20px;
}

.blog-list-two .blog-sidebar .author-widget .image-box {
	padding-right: 0px;
}

.blog-list-two .blog-sidebar .author-widget .image-box .signature {
	left: 50px;
}

.blog-list-two .blog-sidebar .post-widget .post {
	padding-left: 0px;
	margin-bottom: 21px;
}

.blog-list-two .blog-sidebar .post-widget .post:last-child {
	margin-bottom: 0px;
}

.blog-list-two .blog-sidebar .tags-widget .tags-list li {
	margin-right: 5px;
	margin-bottom: 5px;
}

.blog-list-two .blog-sidebar .newsletter-widget .shape {
	top: inherit;
	bottom: -13px;
}

.blog-list-two .blog-sidebar .newsletter-widget .widget-content {
	padding-left: 30px;
	padding-right: 30px;
}

.blog-details-header.main-header .outer-box {
	border-bottom: 1px solid #e8eaed;
}

.blog-details-content {
	position: relative;
	display: block;
}

.blog-details-content .content-one .upper-box {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.blog-details-content .content-one .upper-box .category {
	position: relative;
	display: inline-block;
	font-size: 14px;
	line-height: 20px;
	font-family: 'Lexend', sans-serif;
	font-weight: 600;
	text-transform: uppercase;
	color: #121113;
	padding: 10px 22px;
}

.blog-details-content .content-one .upper-box .other-option>li {
	position: relative;
	display: inline-block;
	float: left;
	margin-right: 10px;
}

.blog-details-content .content-one .upper-box .other-option>li>a {
	position: relative;
	display: inline-block;
	width: 40px;
	height: 40px;
	line-height: 40px;
	background: #f6f6f7;
	font-size: 16px;
	border: 1px solid #e3e4e7;
	color: #a6a7ab;
	text-align: center;
	border-radius: 50%;
}

.blog-details-content .content-one .upper-box .other-option>li>a:hover {
	color: #121113;
}

.blog-details-content .content-one .upper-box .other-option .share-box .social-links {
	position: absolute;
	top: -20px;
	right: 0px;
	width: 70px;
	visibility: hidden;
	opacity: 0;
	transition: all 500ms ease;
}

.blog-details-content .content-one .upper-box .other-option .share-box .social-links:before {
	position: absolute;
	content: '';
	background: transparent;
	width: 100%;
	height: 5px;
	left: 0px;
	bottom: -5px;
}

.blog-details-content .content-one .upper-box .other-option .share-box:hover .social-links {
	top: -30px;
	visibility: visible;
	opacity: 1;
}

.blog-details-content .content-one .upper-box .other-option .share-box .social-links li {
	position: relative;
	display: inline-block;
	float: left;
	margin-right: 15px;
}

.blog-details-content .content-one .upper-box .other-option .share-box .social-links li:last-child {
	margin: 0px !important;
}

.blog-details-content .content-one .upper-box .other-option .share-box .social-links li a {
	position: relative;
	display: inline-block;
	font-size: 15px;
	color: #a6a7ab;
}

.blog-details-content .content-one .upper-box .other-option .share-box .social-links li a:hover {}

.blog-details-content .content-one .upper-box {
	margin-bottom: 21px;
}

.blog-details-content .content-one .post-info li {
	position: relative;
	display: inline-block;
	float: left;
	margin-right: 20px;
	font-size: 16px;
	font-family: 'Lexend', sans-serif;
	color: #75767b;
	padding-left: 22px;
}

.blog-details-content .content-one .post-info li:last-child {
	margin: 0px !important;
}

.blog-details-content .content-one .post-info li i {
	position: absolute;
	left: 0px;
	top: 5px;
}

.blog-details-content .content-one .post-info {
	margin-bottom: 44px;
}

.blog-details-content .content-one h2 {
	display: block;
	font-size: 48px;
	line-height: 58px;
	font-weight: 500;
	margin-bottom: 23px;
}

.blog-details-content .content-one .image-box {
	position: relative;
	display: block;
	margin-bottom: 43px;
}

.blog-details-content .content-one .image-box img {
	width: 100%;
}

.blog-details-content .content-one .text p {
	margin-bottom: 26px;
}

.blog-details-content .content-one .text p:last-child {
	margin-bottom: 0px;
}

.blog-details-content .content-one {
	margin-bottom: 34px;
}

.blog-details-content .small-title {
	position: relative;
	display: block;
	margin-bottom: 30px;
	padding-left: 32px;
}

.blog-details-content .small-title:before {
	position: absolute;
	content: "\f106";
	font-family: 'flaticon';
	font-size: 22px;
	left: 0px;
	top: 1px;
}

.blog-details-content .small-title h3 {
	display: block;
	font-size: 28px;
	line-height: 28px;
	font-weight: 500;
}

.blog-details-content .content-two .text {
	margin-bottom: 43px;
}

.blog-details-content .content-two .text p {
	margin-bottom: 26px;
}

.blog-details-content .content-two .text p:last-child {
	margin-bottom: 0px;
}

.blog-details-content .content-two .image-box {
	position: relative;
	display: block;
}

.blog-details-content .content-two .image-box img {
	width: 100%;
}

.blog-details-content .content-two {
	margin-bottom: 47px;
}

.blog-details-content .content-three p {
	margin-bottom: 17px;
}

.blog-details-content .content-three h5 {
	display: block;
	font-size: 18px;
	line-height: 28px;
	font-weight: 500;
	margin-bottom: 16px;
}

.blog-details-content .content-three .list li {
	position: relative;
	display: block;
	padding-left: 35px;
	margin-bottom: 10px;
}

.blog-details-content .content-three .list li:last-child {
	margin-bottom: 0px;
}

.blog-details-content .content-three .list li:before {
	position: absolute;
	content: "\f12f";
	font-family: 'flaticon';
	font-size: 16px;
	left: 0px;
	top: 1px;
	color: #a6a7ab;
}

.blog-details-content .content-three {
	margin-bottom: 44px;
}

.blog-details-content .content-four .image-box {
	position: relative;
	display: block;
	margin-right: 20px;
}

.blog-details-content .content-four .image-box img {
	width: 100%;
}

.blog-details-content .content-four .text p {
	padding-bottom: 33px;
	margin-bottom: 23px;
	border-bottom: 4px solid #121113;
}

.blog-details-content .content-four .text h4 {
	display: block;
	font-size: 20px;
	line-height: 30px;
	color: #75767b;
	margin-bottom: 14px;
}

.blog-details-content .content-four .text h5 {
	display: block;
	font-size: 20px;
	line-height: 30px;
	font-weight: 500;
	margin-bottom: 3px;
}

.blog-details-content .content-four .text .designation {
	position: relative;
	display: block;
	font-size: 16px;
	line-height: 20px;
	font-weight: 500;
}

.blog-details-content .content-four .text .icon-box {
	position: absolute;
	right: 8px;
	bottom: -17px;
	font-size: 120px;
	color: #f6f6f7;
}

.blog-details-content .content-four .two-column {
	margin-bottom: 39px;
}

.blog-details-content .content-four {
	margin-bottom: 41px;
}

.blog-details-content .content-five {
	margin-bottom: 36px;
}

.blog-details-content .post-tags h6 {
	display: block;
	font-size: 14px;
	line-height: 24px;
	font-weight: 600;
	text-transform: uppercase;
	margin-bottom: 13px;
}

.blog-details-content .post-tags .tags-list li {
	position: relative;
	display: inline-block;
	float: left;
	margin-right: 10px;
}

.blog-details-content .post-tags .tags-list li:last-child {
	margin: 0px !important;
}

.blog-details-content .post-tags .tags-list li a {
	position: relative;
	display: inline-block;
	font-size: 16px;
	line-height: 26px;
	font-family: 'Lexend', sans-serif;
	color: #75767b;
	background: #f6f6f7;
	padding: 5px 20px;
}

.blog-details-content .post-tags .tags-list li a:hover {
	color: #121113;
}

.blog-details-content .post-tags {
	padding-bottom: 50px;
	margin-bottom: 43px;
	border-bottom: 1px solid #e8eaed;
}

.blog-details-content .post-btn .single-btn {
	position: relative;
	display: block;
}

.blog-details-content .post-btn .single-btn.prev-btn {
	padding-left: 100px;
}

.blog-details-content .post-btn .single-btn.next-btn {
	padding-right: 100px;
}

.blog-details-content .post-btn .single-btn .icon-box {
	position: absolute;
	top: 7px;
}

.blog-details-content .post-btn .single-btn.prev-btn .icon-box {
	left: 0px;
	transform: rotate(180deg);
}

.blog-details-content .post-btn .single-btn.next-btn .icon-box {
	right: 0px;
}

.blog-details-content .post-btn .single-btn .icon-box a {
	position: relative;
	display: inline-block;
	width: 74px;
	height: 74px;
	line-height: 80px;
	border: 1px solid #e8eaed;
	text-align: center;
	font-size: 24px;
	color: #c3c4c8;
}

.blog-details-content .post-btn .single-btn .icon-box a:hover {
	color: #121113;
}

.blog-details-content .post-btn .single-btn h6 {
	display: block;
	font-size: 14px;
	line-height: 24px;
	color: #75767b;
	text-transform: uppercase;
	font-weight: 600;
	margin-bottom: 8px;
}

.blog-details-content .post-btn .single-btn h5 {
	display: block;
	font-size: 18px;
	line-height: 28px;
	font-weight: 500;
}

.blog-details-content .post-btn {
	margin-bottom: 84px;
}

.blog-details-content .related-post h2 {
	display: block;
	font-size: 36px;
	line-height: 46px;
	font-weight: 500;
	margin-bottom: 40px;
}

.blog-details-content .related-post {
	margin-bottom: 100px;
}

.blog-details-content .comments-form-area {
	position: relative;
	display: block;
	background: #fff;
	box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.10);
	padding: 41px 50px 50px 50px;
}

.blog-details-content .comments-form-area h2 {
	display: block;
	font-size: 36px;
	line-height: 46px;
	font-weight: 500;
	margin-bottom: 3px;
}

.blog-details-content .comments-form-area .title-box {
	margin-bottom: 33px;
}

.blog-details-content .comments-form-area .form-inner .form-group {
	position: relative;
	margin-bottom: 20px;
}

.blog-details-content .comments-form-area .form-inner .form-group:last-child {
	margin-bottom: 0px;
}

.blog-details-content .comments-form-area .form-inner .form-group input[type='text'],
.blog-details-content .comments-form-area .form-inner .form-group input[type='email'],
.blog-details-content .comments-form-area .form-inner .form-group textarea {
	position: relative;
	display: block;
	width: 100%;
	height: 56px;
	border: 1px solid #e8eaed;
	font-size: 16px;
	color: #75767b;
	padding: 10px 20px;
	transition: all 500ms ease;
}

.blog-details-content .comments-form-area .form-inner .form-group textarea {
	height: 120px;
	resize: none;
}

.blog-details-content .comments-form-area .form-inner .form-group input:focus,
.blog-details-content .comments-form-area .form-inner .form-group textarea:focus {
	border-color: #121113;
}

.blog-details-content .comments-form-area .form-inner .form-group button {
	width: 100%;
	padding: 15px 30px;
}



/*** 

====================================================================
												Contact-Page
====================================================================

***/


.contact-section {
	position: relative;
	padding-top: 120px;
}

.contact-section .inner-container {
	position: relative;
	background: #121113;
	clip-path: polygon(0% 0%, 87% 0%, 100% 18%, 100% 100%, 80% 100%, 25% 100%, 0% 100%, 0% 20%);
}

.contact-section .shape {
	position: absolute;
	top: 180px;
	right: 370px;
	width: 183px;
	height: 21px;
	background-repeat: no-repeat;
	z-index: 1;
}

.contact-section .inner-box {
	position: relative;
	width: 100%;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	max-width: 400px;
	padding: 100px 60px;
}

.contact-section .inner-box:before {
	position: absolute;
	content: '';
	background: #121113;
	width: 100%;
	height: 100%;
	left: 0px;
	top: 0px;
	opacity: 0.72;
}

.contact-section .inner-box .single-item {
	position: relative;
	display: block;
	margin-bottom: 33px;
}

.contact-section .inner-box .single-item:last-child {
	margin-bottom: 0px;
}

.contact-section .inner-box .single-item .icon-box {
	position: relative;
	display: block;
	margin-bottom: 19px;
}

.contact-section .inner-box .single-item h4 {
	display: block;
	font-size: 20px;
	line-height: 30px;
	color: #fff;
	font-weight: 500;
	margin-bottom: 11px;
}

.contact-section .inner-box .single-item p {
	color: #afb1b4;
}

.contact-section .inner-box .single-item p a {
	color: #afb1b4;
}

.contact-section .inner-box .single-item p a:hover {}

.contact-section .inner-box .inner {
	margin-bottom: 34px;
}

.contact-section .inner-box .social-links li {
	position: relative;
	display: inline-block;
	float: left;
	margin-right: 15px;
}

.contact-section .inner-box .social-links li:last-child {
	margin: 0px !important;
}

.contact-section .inner-box .social-links li a {
	position: relative;
	display: inline-block;
	width: 52px;
	height: 52px;
	line-height: 52px;
	background: #fff;
	font-size: 16px;
	color: #75767b;
	text-align: center;
	border-radius: 50%;
}

.contact-section .inner-box .social-links li a:hover {
	color: #121113;
}

.contact-section .form-inner {
	position: relative;
	padding: 91px 100px 100px 0px;
}

.contact-section .form-inner .sec-title {
	margin-bottom: 43px;
}

.contact-section .form-inner .sec-title h2 {
	margin-bottom: 12px;
}

.contact-section .form-inner .sec-title p {
	color: #d2d3d7;
}

.contact-section .form-inner form {
	margin: 0px 5px;
}

.contact-section .form-inner form .form-group {
	position: relative;
	margin-bottom: 20px;
	padding: 0px 10px;
}

.contact-section .form-inner form .form-group:last-child {
	margin-bottom: 0px;
}

.contact-section .form-inner form .form-group input[type='text'],
.contact-section .form-inner form .form-group input[type='email'],
.contact-section .form-inner form .form-group textarea {
	position: relative;
	display: block;
	width: 100%;
	height: 52px;
	background: #fff;
	border: 1px solid #fff;
	font-size: 16px;
	color: #75767b;
	padding: 10px 20px;
	transition: all 500ms ease;
}

.contact-section .form-inner form .form-group .nice-select {
	height: 52px;
	line-height: 52px;
}

.contact-section .form-inner form .form-group input:focus,
.contact-section .form-inner form .form-group textarea:focus {}

.contact-section .form-inner form .form-group textarea {
	height: 125px;
	resize: none;
}

.contact-section .form-inner form .form-group button {
	color: #fff;
	background: transparent;
	padding: 12px 50px;
}

.contact-section .form-inner form .form-group button:hover {
	color: #121113;
}

.contact-section .lower-box {
	position: relative;
	width: 100%;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	padding: 22px 30px;
}

.contact-section .lower-box h5 {
	font-size: 16px;
	line-height: 26px;
	font-weight: 500;
}

.contact-section .lower-box h5 a {
	color: #121113;
}

.contact-section .lower-box h5 a:hover {
	text-decoration: underline;
}


/** location-style-two **/

.location-style-two {
	position: relative;
	padding: 111px 0px 115px 0px;
}

.location-style-two .sec-title h2 {
	margin-bottom: 12px;
}

.location-block-one .inner-box {
	position: relative;
	display: block;
}

.location-block-one .inner-box #contact-google-map {
	position: relative;
	width: 100%;
	height: 270px;
	box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.20);
}

.location-block-one .inner-box h3 {
	position: relative;
	display: block;
	font-size: 24px;
	line-height: 34px;
	font-weight: 500;
	padding-left: 30px;
	margin-bottom: 22px;
}

.location-block-one .inner-box h3:before {
	position: absolute;
	content: "\f106";
	font-family: 'flaticon';
	font-size: 18px;
	left: 0px;
	top: 0px;
	transition: all 500ms ease;
}

.location-block-one .inner-box .image-box {
	position: relative;
	display: block;
}

.location-block-one .inner-box .lower-content {
	position: relative;
	display: block;
	margin-top: 23px;
}

.location-block-one .inner-box .image-box img {
	width: 100%;
}

.location-block-one .inner-box .single-item {
	position: relative;
	margin-bottom: 16px;
}

.location-block-one .inner-box .single-item:last-child {
	margin-bottom: 0px;
}

.location-block-one .inner-box .single-item h6 {
	display: block;
	font-size: 14px;
	line-height: 24px;
	font-weight: 600;
	text-transform: uppercase;
	margin-bottom: 8px;
}

.location-block-one .inner-box .single-item p a {
	color: #75767b;
}

.location-block-one .inner-box .single-item p a:hover {}

.location-style-two .shape .shape-1 {
	position: absolute;
	left: 0px;
	bottom: 0px;
	width: 100%;
	height: calc(100% + 310px);
	background: #f6f6f7;
	z-index: -1;
	clip-path: polygon(8% 0%, 100% 0%, 100% 0%, 100% 70%, 100% 100%, 0% 100%, 0% 100%, 0% 15%);
}

.location-style-two .shape .shape-2 {
	position: absolute;
	left: 0px;
	top: 120px;
	width: 130px;
	height: 228px;
	background-repeat: no-repeat;
}

.location-style-two .shape .shape-3 {
	position: absolute;
	right: 100px;
	bottom: 185px;
	width: 137px;
	height: 13px;
	background-repeat: no-repeat;
}

.home01_v2 .menu-area .mobile-nav-toggler .icon-bar {
	background: #fff;
}

.header-style-two .menu-area .mobile-nav-toggler .icon-bar {
	background: #fff;
}

/* Custom Header & Navigation spacing overrides for First Ride */
.main-header .outer-box {
	padding: 0px 20px 0px 20px !important;
}

.main-header .outer-box .menu-area {
	width: calc(100% - 220px) !important;
	justify-content: flex-end !important;
}

.main-header .outer-box .menu-right {
	margin-left: 10px !important;
	margin-right: 10px !important;
}

.main-header .outer-box .support-box {
	margin-left: 10px !important;
}

.main-menu {
	display: flex !important;
	flex-wrap: nowrap !important;
	float: none !important;
	flex-grow: 1 !important;
	justify-content: flex-end !important;
}

.main-menu .navbar-collapse {
	display: flex !important;
	flex-wrap: nowrap !important;
}

.main-menu .navigation {
	display: flex !important;
	flex-wrap: nowrap !important;
	align-items: center !important;
}

.main-menu .navigation>li {
	float: none !important;
	display: inline-block !important;
	margin: 0px 15px !important;
}

.main-menu .navigation>li>a {
	padding-right: 0px !important;
	letter-spacing: -0.2px !important;
	white-space: nowrap !important;
}

@media (min-width: 992px) {
	.header-style-two .main-menu .navigation>li {
		position: relative !important;
		margin: 0 5px !important;
	}

	.header-style-two .main-menu .navigation>li>a {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		min-height: 40px;
		margin: 25px 0;
		padding: 9px 14px !important;
		border-radius: 999px;
		color: #111827;
		letter-spacing: 0 !important;
		background: transparent;
		transition: color 250ms ease, background 250ms ease, box-shadow 250ms ease, transform 250ms ease;
	}

	.header-style-two .main-menu .navigation>li.dropdown>a {
		padding-right: 24px !important;
	}

	.header-style-two .main-menu .navigation>li.dropdown>a:before {
		top: 50%;
		right: 9px;
		transform: translateY(-50%);
		color: #7a8494;
		transition: color 250ms ease, transform 250ms ease;
	}

	.header-style-two .main-menu .navigation>li.current>a {
		color: #ef5a24 !important;
		background: #fff3ed;
		box-shadow: inset 0 0 0 1px rgba(239, 90, 36, 0.18);
	}

	.header-style-two .main-menu .navigation>li:hover>a {
		color: #ffffff !important;
		background: linear-gradient(90deg, #ef5a24 0%, #0e7039 100%);
		box-shadow: 0 10px 22px rgba(15, 23, 42, 0.16);
		transform: translateY(-1px);
	}

	.header-style-two .main-menu .navigation>li.current.dropdown>a:before {
		color: #ef5a24;
	}

	.header-style-two .main-menu .navigation>li.dropdown:hover>a:before {
		color: #ffffff;
		transform: translateY(-50%) rotate(-90deg);
	}
}

@media (min-width: 1201px) {
	.header-style-two .header-lower .outer-box {
		padding-left: 28px !important;
		padding-right: 28px !important;
	}

	.header-style-two .header-lower .outer-box .main-box {
		display: flex !important;
		align-items: center !important;
		justify-content: space-between !important;
		min-height: 88px;
		border-bottom: 0 !important;
	}

	.header-style-two .outer-box .logo-box {
		flex: 0 0 150px;
		padding: 0 !important;
		margin: 0 !important;
	}

	.header-style-two .outer-box .logo-box .logo {
		margin: 0 !important;
	}

	.header-style-two .outer-box .logo-box .logo img {
		display: block;
		max-width: 150px;
		height: auto;
	}

	.header-style-two .outer-box .menu-area {
		display: flex !important;
		align-items: center;
		justify-content: flex-end !important;
		flex: 1 1 auto;
		width: auto !important;
		min-width: 0;
	}

	.header-style-two .main-menu {
		flex: 0 1 auto !important;
		min-width: 0;
	}

	.header-style-two .main-menu .navigation>li {
		margin: 0 3px !important;
	}

	.header-style-two .main-menu .navigation>li>a {
		min-height: 38px;
		margin: 0;
		padding: 8px 10px !important;
		font-size: 13px;
		line-height: 1.2;
	}
}

@media (min-width: 1201px) and (max-width: 1540px) {
	.header-style-two .outer-box .menu-right {
		display: none !important;
	}
}

/* Redesigned 5-Column Pricing Section */
.pricing-grid-v2 {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 20px;
	padding: 40px 0;
	width: 100%;
}

.pricing-card-v2 {
	background-color: #0e7039;
	/* Brand Forest Green */
	border: 3px solid #ef5a24;
	/* Brand Orange Border */
	border-radius: 16px;
	padding: 35px 20px;
	text-align: center;
	color: #ffffff;
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
	transition: all 400ms ease;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	min-height: 520px;
	position: relative;
	overflow: hidden;
}

.pricing-card-v2:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 40px rgba(239, 90, 36, 0.25);
}

.pricing-card-v2 .card-header {
	margin-bottom: 20px;
	background: #f8fafc;
	padding: 18px 12px;
	border-radius: 14px;
	border: 1px solid #f1f5f9;
}

.pricing-card-v2 .card-header h3 {
	font-family: 'Lexend', sans-serif;
	font-size: 22px;
	font-weight: 800;
	color: #0f172a;
	margin-bottom: 12px;
}

.pricing-card-v2 .price-box {
	margin-bottom: 12px;
}

.pricing-card-v2 .price-box .from {
	font-size: 15px;
	font-weight: 500;
	color: #64748b;
	opacity: 1;
	margin-right: 4px;
}

.pricing-card-v2 .price-box .amount {
	font-family: 'Lexend', sans-serif;
	font-size: 42px;
	font-weight: 900;
	color: #ef5a24;
	line-height: 1;
}

.pricing-card-v2 .price-box .period {
	font-size: 15px;
	font-weight: 500;
	color: #64748b;
	opacity: 1;
}

.pricing-card-v2 .description {
	font-size: 13px;
	line-height: 1.5;
	color: #475569;
	opacity: 1;
	margin-bottom: 12px;
	padding: 0 5px;
	min-height: 38px;
}

.pricing-card-v2 .badge-highlight {
	background-color: #ff6005;
	color: #ffffff;
	font-size: 11px;
	font-weight: 700;
	padding: 6px 12px;
	border-radius: 20px;
	text-transform: uppercase;
	display: inline-block;
	margin-bottom: 10px;
	letter-spacing: 0.5px;
}

.pricing-card-v2 .feature-list-v2 {
	list-style: none;
	padding: 0;
	margin: 0 0 25px 0;
	flex-grow: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.pricing-card-v2 .feature-list-v2 li {
	font-size: 14px;
	font-weight: 500;
	color: #334155;
	padding: 10px 0;
	border-bottom: 1px dashed #e2e8f0;
}

.pricing-card-v2 .feature-list-v2 li:last-child {
	border-bottom: none;
}

.pricing-card-v2 .btn-box-v2 {
	margin-top: auto;
}

.pricing-card-v2 .btn-box-v2 .book-btn-v2 {
	background-color: #ef5a24;
	/* Brand Orange */
	color: #FFF;
	/* Charcoal Black */
	font-family: 'Lexend', sans-serif;
	font-size: 15px;
	font-weight: 700;
	text-transform: uppercase;
	padding: 12px 30px;
	border-radius: 30px;
	display: inline-block;
	width: 100%;
	transition: all 300ms ease;
	border: 2px solid #ef5a24;
}

.pricing-card-v2 .btn-box-v2 .book-btn-v2:hover {
	background-color: #ce400e;
	border-color: #ce400e;
	color: #ffffff;
	transform: scale(1.03);
}

/* Responsive Breakpoints for Grid */
@media (max-width: 1400px) {
	.pricing-grid-v2 {
		grid-template-columns: repeat(3, 1fr);
		justify-content: center;
		gap: 25px;
	}
}

@media (max-width: 991px) {
	.pricing-grid-v2 {
		grid-template-columns: repeat(2, 1fr);
		gap: 20px;
	}
}

@media (max-width: 650px) {
	.pricing-grid-v2 {
		grid-template-columns: 1fr;
		max-width: 350px;
		margin: 0 auto;
	}
}

/* ==========================================================================
   Locations Page Custom Styles
   ========================================================================== */
.locations-page-section {
	position: relative;
	padding: 90px 0px 100px;
	background-color: #f9f9fc;
}

.location-filter-wrapper {
	background: #ffffff;
	padding: 30px;
	border-radius: 16px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
	margin-bottom: 50px;
	border: 1fr solid #eee;
}

.location-search-box {
	position: relative;
	max-width: 550px;
	margin: 0 auto 25px;
}

.location-search-box input {
	width: 100%;
	height: 54px;
	padding: 12px 25px 12px 55px;
	border-radius: 30px;
	border: 2px solid #e2e8f0;
	font-size: 16px;
	font-family: 'Lexend', sans-serif;
	transition: all 0.3s ease;
	outline: none;
	background: #fdfdfd;
}

.location-search-box input:focus {
	border-color: #ef5a24;
	box-shadow: 0 0 15px rgba(239, 90, 36, 0.15);
	background: #ffffff;
}

.location-search-box .search-icon {
	position: absolute;
	left: 22px;
	top: 50%;
	transform: translateY(-50%);
	color: #ef5a24;
	font-size: 18px;
}

.region-filter-tabs {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 10px;
}

.region-tab-btn {
	background: #f1f5f9;
	border: none;
	padding: 10px 22px;
	border-radius: 25px;
	font-size: 14px;
	font-weight: 600;
	color: #475569;
	cursor: pointer;
	transition: all 0.3s ease;
	font-family: 'Lexend', sans-serif;
}

.region-tab-btn.active,
.region-tab-btn:hover {
	background: #ef5a24;
	color: #ffffff;
	box-shadow: 0 5px 15px rgba(239, 90, 36, 0.25);
}

.suburbs-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
	gap: 25px;
}

.suburb-card {
	background: #ffffff;
	border-radius: 16px;
	padding: 25px;
	border: 1px solid #eef2f6;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
	transition: all 0.35s ease;
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.suburb-card:hover {
	transform: translateY(-7px);
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
	border-color: rgba(239, 90, 36, 0.3);
}

.suburb-card .card-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 15px;
}

.suburb-card .suburb-icon {
	width: 48px;
	height: 48px;
	background: rgba(239, 90, 36, 0.1);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #ef5a24;
	font-size: 20px;
}

.suburb-card .postcode-badge {
	background: #121113;
	color: #ffffff;
	font-size: 12px;
	font-weight: 700;
	padding: 4px 12px;
	border-radius: 15px;
	letter-spacing: 0.5px;
}

.suburb-card h4 {
	font-size: 20px;
	font-weight: 700;
	color: #121113;
	margin-bottom: 8px;
	font-family: 'Lexend', sans-serif;
}

.suburb-card .region-tag {
	font-size: 13px;
	color: #64748b;
	margin-bottom: 15px;
	display: flex;
	align-items: center;
	gap: 6px;
}

.suburb-card .feature-list {
	list-style: none;
	padding: 0;
	margin: 0 0 20px 0;
}

.suburb-card .feature-list li {
	font-size: 13px;
	color: #475569;
	margin-bottom: 6px;
	display: flex;
	align-items: center;
	gap: 8px;
}

.suburb-card .feature-list li i {
	color: #10b981;
	font-size: 12px;
}

.suburb-card .book-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	background: #f8fafc;
	color: #ef5a24;
	font-weight: 700;
	font-size: 14px;
	padding: 10px 18px;
	border-radius: 25px;
	text-decoration: none;
	transition: all 0.3s ease;
	border: 1px solid #e2e8f0;
	width: 100%;
}

.suburb-card:hover .book-link {
	background: #ef5a24;
	color: #ffffff;
	border-color: #ef5a24;
}

/* Test Centers Section */
.test-centers-section {
	padding: 90px 0;
	background: linear-gradient(135deg, #121113 0%, #1e1d24 100%);
	color: #ffffff;
	position: relative;
	overflow: hidden;
}

.test-centers-section .sec-title h2 {
	color: #ffffff;
}

.test-centers-section .sec-title p {
	color: #94a3b8;
}

.test-centers-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
	gap: 25px;
	margin-top: 40px;
}

.test-center-card {
	background: rgba(255, 255, 255, 0.05);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 16px;
	padding: 28px;
	transition: all 0.35s ease;
}

.test-center-card:hover {
	background: rgba(255, 255, 255, 0.1);
	border-color: #ef5a24;
	transform: translateY(-5px);
}

.test-center-card .tc-header {
	display: flex;
	align-items: center;
	gap: 15px;
	margin-bottom: 15px;
}

.test-center-card .tc-icon {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: #ef5a24;
	color: #ffffff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
}

.test-center-card h4 {
	color: #ffffff;
	font-size: 18px;
	font-weight: 700;
	margin: 0;
}

.test-center-card p {
	color: #cbd5e1;
	font-size: 14px;
	line-height: 1.6;
	margin-bottom: 15px;
}

.test-center-card .tc-badge {
	display: inline-block;
	background: rgba(16, 185, 129, 0.2);
	color: #34d399;
	font-size: 12px;
	font-weight: 600;
	padding: 5px 12px;
	border-radius: 15px;
	border: 1px solid rgba(16, 185, 129, 0.3);
}

/* Feature Highlights */
.location-highlights {
	padding: 80px 0 60px;
	background: #ffffff;
}

.highlight-box {
	text-align: center;
	padding: 30px 20px;
	border-radius: 16px;
	background: #f8fafc;
	border: 1px solid #f1f5f9;
	transition: all 0.3s ease;
	height: 100%;
}

.highlight-box:hover {
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
	transform: translateY(-5px);
	border-color: #ef5a24;
}

.highlight-box .icon {
	width: 65px;
	height: 65px;
	border-radius: 50%;
	background: rgba(239, 90, 36, 0.1);
	color: #ef5a24;
	font-size: 26px;
	margin: 0 auto 20px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.highlight-box h4 {
	font-size: 18px;
	font-weight: 700;
	color: #121113;
	margin-bottom: 10px;
}

.highlight-box p {
	font-size: 14px;
	color: #64748b;
	line-height: 1.6;
}

/* Quick Location Booking Banner */
.location-cta-section {
	padding: 70px 0;
	background: linear-gradient(135deg, #ef5a24 0%, #d94816 100%);
	color: #ffffff;
	border-radius: 24px;
	margin-bottom: 80px;
}

.location-cta-section h2 {
	color: #ffffff;
	font-weight: 800;
	font-size: 32px;
	margin-bottom: 15px;
}

.location-cta-section p {
	color: rgba(255, 255, 255, 0.9);
	font-size: 16px;
	margin-bottom: 25px;
}

/* ==========================================================================
   Home Page Location Section Redesign (location-section-v2)
   ========================================================================== */
.location-section-v2 {
	position: relative;
	padding: 90px 0;
	background: #f8fafc;
}

.location-v2-container {
	background: #ffffff;
	border-radius: 24px;
	padding: 50px 40px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
	border: 1px solid #e2e8f0;
}

.location-v2-content h5 {
	color: #ef5a24;
	font-weight: 700;
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 12px;
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.location-v2-content h2 {
	font-size: 34px;
	font-weight: 800;
	color: #121113;
	line-height: 1.3;
	margin-bottom: 18px;
	font-family: 'Lexend', sans-serif;
}

.location-v2-content p {
	font-size: 15px;
	color: #64748b;
	line-height: 1.7;
	margin-bottom: 25px;
}

.suburb-pills-list {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 30px;
}

.suburb-pill {
	background: #f1f5f9;
	color: #334155;
	font-size: 13px;
	font-weight: 600;
	padding: 8px 16px;
	border-radius: 20px;
	transition: all 0.3s ease;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	text-decoration: none;
}

.suburb-pill.highlight {
	background: rgba(239, 90, 36, 0.1);
	color: #ef5a24;
	font-weight: 700;
}

.suburb-pill:hover {
	background: #ef5a24;
	color: #ffffff;
	transform: translateY(-2px);
}

.booking-guidance-box {
	background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
	border: 1px solid #e2e8f0;
	border-radius: 20px;
	padding: 24px;
	box-shadow: 0 16px 38px rgba(15, 23, 42, 0.05);
}

.booking-guidance-box h4 {
	font-size: 17px;
	font-weight: 800;
	color: #0f172a;
	margin-bottom: 10px;
	display: flex;
	align-items: center;
	gap: 8px;
}

.booking-guidance-box p {
	margin: 0 0 16px;
	color: #64748b;
	font-size: 13.5px;
	line-height: 1.6;
}

.booking-guidance-list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px;
}

.booking-guidance-list span {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	min-height: 38px;
	padding: 9px 10px;
	border: 1px solid #e5edf5;
	border-radius: 8px;
	background: #f8fafc;
	color: #334155;
	font-size: 12.5px;
	font-weight: 800;
}

.booking-guidance-list i {
	color: #15803d;
}

.suburb-pill-more {
	background: #121113;
	color: #ffffff;
	font-weight: 700;
}

.suburb-pill-more:hover {
	background: #ef5a24;
	color: #ffffff;
}

/* Right Card */
.test-centers-preview-card {
	background: linear-gradient(135deg, #121113 0%, #1e1d24 100%);
	border-radius: 20px;
	padding: 35px;
	color: #ffffff;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
	position: relative;
	overflow: hidden;
}

.test-centers-preview-card::before {
	content: '';
	position: absolute;
	top: -50px;
	right: -50px;
	width: 150px;
	height: 150px;
	background: rgba(239, 90, 36, 0.15);
	border-radius: 50%;
	filter: blur(40px);
}

.tc-preview-header {
	margin-bottom: 25px;
}

.tc-preview-header h4 {
	color: #ffffff;
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 6px;
	display: flex;
	align-items: center;
	gap: 10px;
}

.tc-preview-header p {
	color: #94a3b8;
	font-size: 13px;
}

.tc-preview-list {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin-bottom: 25px;
}

.tc-preview-item {
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 12px;
	padding: 12px 18px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	transition: all 0.3s ease;
}

.tc-preview-item:hover {
	background: rgba(255, 255, 255, 0.12);
	border-color: #ef5a24;
	transform: translateX(5px);
}

.tc-preview-item .tc-name {
	font-size: 14px;
	font-weight: 600;
	color: #ffffff;
	display: flex;
	align-items: center;
	gap: 10px;
}

.tc-preview-item .tc-tag {
	font-size: 11px;
	font-weight: 700;
	background: rgba(239, 90, 36, 0.2);
	color: #ef5a24;
	padding: 3px 10px;
	border-radius: 10px;
}

.pickup-banner {
	background: rgba(16, 185, 129, 0.15);
	border: 1px solid rgba(16, 185, 129, 0.3);
	border-radius: 12px;
	padding: 12px 18px;
	color: #34d399;
	font-size: 13px;
	font-weight: 600;
	display: flex;
	align-items: center;
	gap: 10px;
}

@media (max-width: 991px) {
	.location-v2-container {
		padding: 30px 20px;
	}

	.location-v2-content h2 {
		font-size: 26px;
	}

	.test-centers-preview-card {
		margin-top: 30px;
	}
}

/* ==========================================================================
   Footer Style Two Redesign
   ========================================================================== */
.footer-style-two .contact-widget .contact-info-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer-style-two .contact-widget .contact-info-item {
	display: flex;
	align-items: flex-start;
	gap: 15px;
	margin-bottom: 20px;
}

.footer-style-two .contact-widget .contact-info-item .icon-box {
	width: 44px;
	height: 44px;
	border-radius: 10px;
	background: #10b981;
	color: #ffffff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	flex-shrink: 0;
	box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.footer-style-two .contact-widget .contact-info-item .details h6 {
	font-size: 15px;
	font-weight: 700;
	color: #ffffff;
	margin-bottom: 3px;
}

.footer-style-two .contact-widget .contact-info-item .details p,
.footer-style-two .contact-widget .contact-info-item .details a {
	font-size: 14px;
	color: #94a3b8;
	text-decoration: none;
	transition: all 0.3s ease;
	line-height: 1.5;
}

.footer-style-two .contact-widget .contact-info-item .details a:hover {
	color: #ef5a24;
}

.footer-style-two .social-links-list {
	display: flex;
	gap: 10px;
	list-style: none;
	padding: 0;
	margin-top: 15px;
}

.footer-style-two .social-links-list a {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.08);
	color: #ffffff;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
}

.footer-style-two .social-links-list a:hover {
	background: #ef5a24;
	transform: translateY(-3px);
}

/* ==========================================================================
   Premium Footer Refresh
   ========================================================================== */
.footer-style-two {
	position: relative;
	overflow: hidden;
	background:
		linear-gradient(135deg, rgba(239, 90, 36, 0.08), transparent 32%),
		linear-gradient(315deg, rgba(16, 185, 129, 0.1), transparent 36%),
		#090d14;
}

.footer-style-two::before {
	content: '';
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
	background-size: 44px 44px;
	mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.85), transparent 78%);
	pointer-events: none;
}

.footer-style-two .footer-top {
	position: relative;
	z-index: 1;
	padding: 78px 0 66px;
	background: transparent;
}

.footer-premium-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding: 26px 30px;
	margin-bottom: 48px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 8px;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035));
	box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
	backdrop-filter: blur(14px);
}

.footer-kicker {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 10px;
	color: #34d399;
	font-size: 12px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0;
}

.footer-premium-head h3 {
	color: #ffffff;
	font-size: 28px;
	line-height: 1.25;
	font-weight: 800;
	margin: 0;
}

.footer-head-btn,
.footer-cta-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	border-radius: 8px;
	background: linear-gradient(135deg, #f15b24 0%, #17863a 100%);
	color: #ffffff;
	font-size: 14px;
	font-weight: 800;
	text-transform: uppercase;
	padding: 15px 22px;
	box-shadow: 0 14px 34px rgba(239, 90, 36, 0.22);
	white-space: nowrap;
}

.footer-head-btn:hover,
.footer-cta-btn:hover {
	color: #ffffff;
	transform: translateY(-2px);
	box-shadow: 0 18px 40px rgba(16, 185, 129, 0.24);
}

.footer-style-two .footer-widget {
	height: 100%;
}

.footer-style-two .logo-widget .footer-logo {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 180px;
	max-width: 220px;
	padding: 12px 16px;
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.96);
	box-shadow: 0 18px 34px rgba(0, 0, 0, 0.22);
}

.footer-style-two .footer-logo img {
	display: block;
	width: 100%;
	max-width: 188px;
	max-height: 82px;
	object-fit: contain;
}

.footer-style-two .logo-widget p {
	color: #a8b3c7;
	font-size: 15px;
	line-height: 1.75;
}

.footer-trust-row {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 18px 0 20px;
}

.footer-trust-row span {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	padding: 8px 11px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.07);
	border: 1px solid rgba(255, 255, 255, 0.08);
	color: #d7deea;
	font-size: 12px;
	font-weight: 700;
}

.footer-trust-row i {
	color: #34d399;
}

.footer-style-two .footer-top .widget-title {
	margin-bottom: 24px;
}

.footer-style-two .footer-top .widget-title:before {
	background: linear-gradient(90deg, #f15b24, #34d399);
	width: 44px;
	height: 2px;
	bottom: -10px;
	border-radius: 999px;
}

.footer-style-two .footer-top .widget-title h4 {
	color: #ffffff;
	font-size: 18px;
	font-weight: 800;
}

.footer-style-two .links-widget .links-list li {
	margin-bottom: 10px;
}

.footer-style-two .links-widget .links-list li a {
	width: 100%;
	padding: 9px 12px 9px 30px;
	border-radius: 8px;
	color: #b8c2d6;
	font-size: 14px;
	font-weight: 700;
	background: rgba(255, 255, 255, 0.02);
}

.footer-style-two .links-widget .links-list li a:before {
	left: 12px;
	top: 18px;
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: #34d399;
}

.footer-style-two .links-widget .links-list li a:hover {
	color: #ffffff;
	background: rgba(255, 255, 255, 0.08);
	transform: translateX(3px);
}

.footer-style-two .contact-widget .contact-info-item {
	padding: 12px;
	margin-bottom: 10px;
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.045);
	border: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-style-two .contact-widget .contact-info-item .icon-box {
	width: 40px;
	height: 40px;
	border-radius: 8px;
	background: linear-gradient(135deg, #10b981, #0f7d39);
	box-shadow: 0 10px 24px rgba(16, 185, 129, 0.22);
}

.footer-style-two .contact-widget .contact-info-item .details h6 {
	color: #ffffff;
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 0;
}

.footer-style-two .contact-widget .contact-info-item .details p,
.footer-style-two .contact-widget .contact-info-item .details a {
	color: #a8b3c7;
	font-size: 13px;
}

.footer-style-two .newsletter-widget .widget-content {
	position: relative;
	padding: 24px;
	border-radius: 8px;
	background:
		linear-gradient(135deg, rgba(239, 90, 36, 0.16), rgba(16, 185, 129, 0.13)),
		rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.11);
	box-shadow: 0 22px 52px rgba(0, 0, 0, 0.22);
}

.footer-cta-label {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: #ffb084;
	font-size: 12px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0;
	margin-bottom: 14px;
}

.footer-style-two .newsletter-widget h3 {
	color: #ffffff;
	font-size: 22px;
	line-height: 1.25;
	font-weight: 800;
	margin-bottom: 12px;
}

.footer-style-two .newsletter-widget p {
	color: #b8c2d6;
	font-size: 14px;
	line-height: 1.65;
	margin-bottom: 20px;
}

.footer-cta-btn {
	width: 100%;
	padding: 14px 18px;
}

.footer-style-two .social-links-list {
	gap: 9px;
}

.footer-style-two .social-links-list a {
	width: 38px;
	height: 38px;
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.07);
	border: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-style-two .social-links-list a:hover {
	background: linear-gradient(135deg, #f15b24, #17863a);
}

.footer-style-two .footer-bottom {
	position: relative;
	z-index: 1;
	background: rgba(0, 0, 0, 0.34);
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	padding: 20px 0;
}

.footer-style-two .footer-bottom .copyright p,
.footer-style-two .footer-bottom .footer-nav li a {
	color: #9aa7bb;
	font-size: 13px;
}

.footer-style-two .footer-bottom .copyright p span,
.footer-style-two .footer-bottom .copyright p a,
.footer-style-two .footer-bottom .footer-nav li a:hover {
	color: #ff7a45;
}

/* Softer public page canvas */
.contact-cards-section,
.contact-form-section,
.contact-faq-section,
.pricing-section-v2,
.location-section-v2,
.test-centers-section,
.about-premium-intro,
.about-promise-section,
.about-pathway-section {
	background-color: #e6edf4;
}

.contact-card-v2,
.faq-card-v2,
.pricing-card-v2,
.location-card,
.test-centre-card,
.about-proof-grid div,
.about-promise-card,
.about-pathway-card {
	background-color: #f3f6fa;
}

@media only screen and (max-width: 991px) {
	.footer-premium-head {
		align-items: flex-start;
		flex-direction: column;
	}

	.footer-premium-head h3 {
		font-size: 24px;
	}

	.footer-style-two .footer-column {
		margin-bottom: 34px;
	}
}

@media only screen and (max-width: 575px) {
	.footer-style-two .footer-top {
		padding: 56px 0 30px;
	}

	.footer-premium-head {
		padding: 22px;
	}

	.footer-head-btn {
		width: 100%;
	}
}

/* ==========================================================================
   Google Reviews Showcase Section
   ========================================================================== */
.google-reviews-section {
	position: relative;
	padding: 90px 0;
	background-color: #f8fafc;
}

.google-rating-summary {
	background: #ffffff;
	border-radius: 18px;
	padding: 16px 28px;
	display: inline-flex;
	align-items: center;
	gap: 18px;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.04);
	border: 1px solid #e2e8f0;
	margin-top: 15px;
}

.google-rating-summary .g-logo {
	font-size: 30px;
}

.google-rating-summary .score-box {
	display: flex;
	align-items: center;
	gap: 10px;
}

.google-rating-summary .big-score {
	font-size: 26px;
	font-weight: 800;
	color: #121113;
	line-height: 1;
}

.google-rating-summary .stars-list {
	color: #fbbc04;
	font-size: 16px;
	display: flex;
	gap: 3px;
}

.google-rating-summary .review-count {
	font-size: 13px;
	color: #64748b;
	font-weight: 600;
}

.google-review-card {
	background: #ffffff;
	border-radius: 20px;
	padding: 28px;
	border: 1px solid #e2e8f0;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
	transition: all 0.35s ease;
	position: relative;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.google-review-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
	border-color: rgba(66, 133, 244, 0.3);
}

.google-review-card .card-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 16px;
}

.google-review-card .author-info {
	display: flex;
	align-items: center;
	gap: 14px;
}

.google-review-card .avatar {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	object-fit: cover;
	border: 2px solid #e2e8f0;
}

.google-review-card .avatar-initial {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: linear-gradient(135deg, #4285f4 0%, #34a853 100%);
	color: #ffffff;
	font-weight: 700;
	font-size: 18px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.google-review-card .author-details h5 {
	font-size: 16px;
	font-weight: 700;
	color: #121113;
	margin: 0 0 3px;
	font-family: 'Lexend', sans-serif;
}

.google-review-card .author-details span {
	font-size: 12px;
	color: #64748b;
	display: block;
}

.google-review-card .g-icon {
	color: #4285f4;
	font-size: 22px;
}

.google-review-card .stars-row {
	color: #fbbc04;
	font-size: 15px;
	margin-bottom: 12px;
	display: flex;
	align-items: center;
	gap: 4px;
}

.google-review-card .stars-row .verified-tag {
	margin-left: 10px;
	background: rgba(52, 168, 83, 0.1);
	color: #34a853;
	font-size: 11px;
	font-weight: 700;
	padding: 2px 8px;
	border-radius: 10px;
}

.google-review-card p {
	font-size: 14px;
	color: #475569;
	line-height: 1.65;
	font-style: normal;
	margin-bottom: 15px;
}

.google-review-card .review-date {
	font-size: 12px;
	color: #94a3b8;
	font-weight: 500;
}

/* ==========================================================================
   Successful Students / Wall of Fame Section Redesign
   ========================================================================== */
.student-success-card {
	background: #ffffff;
	border-radius: 18px;
	overflow: hidden;
	border: 1px solid #e2e8f0;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
	transition: all 0.35s ease;
	position: relative;
	height: 100%;
}

.student-success-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
	border-color: #10b981;
}

.student-success-card .img-wrapper {
	position: relative;
	height: 220px;
	overflow: hidden;
}

.student-success-card .img-wrapper img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.student-success-card:hover .img-wrapper img {
	transform: scale(1.06);
}

.student-success-card .pass-badge {
	position: absolute;
	top: 15px;
	left: 15px;
	background: #10b981;
	color: #ffffff;
	font-size: 12px;
	font-weight: 700;
	padding: 5px 12px;
	border-radius: 20px;
	box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
	display: flex;
	align-items: center;
	gap: 6px;
}

.student-success-card .rms-badge {
	position: absolute;
	bottom: 15px;
	right: 15px;
	background: rgba(15, 23, 42, 0.85);
	backdrop-filter: blur(4px);
	color: #ffffff;
	font-size: 11px;
	font-weight: 600;
	padding: 4px 10px;
	border-radius: 12px;
}

.student-success-card .card-body {
	padding: 15px;
}

.student-success-card .student-name {
	font-size: 18px;
	font-weight: 700;
	color: #0f172a;
	margin-bottom: 2px;
	font-family: 'Lexend', sans-serif;
}

.student-success-card .student-suburb {
	font-size: 13px;
	color: #64748b;
	display: block;
}

.student-success-card .stars-list {
	color: #fbbc04;
	font-size: 13px;
	margin-bottom: 12px;
	display: flex;
	gap: 3px;
}

.student-success-card .quote-text {
	font-size: 13.5px;
	color: #334155;
	line-height: 1.55;
	margin: 0;
	font-style: italic;
}

/* ==========================================================================
   Shopping Cart / Booking Cart Drawer & Button Styles
   ========================================================================== */
.cart-trigger-btn {
	position: relative;
	background: #ef5a24;
	color: #ffffff;
	border: none;
	width: 45px;
	height: 45px;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(239, 90, 36, 0.35);
	margin-right: 12px;
}

.cart-trigger-btn:hover {
	background: #10b981;
	transform: scale(1.08);
	box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

.cart-count-badge {
	position: absolute;
	top: -4px;
	right: -4px;
	background: #10b981;
	color: #ffffff;
	font-size: 11px;
	font-weight: 800;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 2px solid #ffffff;
}

/* Floating Cart Button */
.floating-cart-btn {
	display: none !important;
}

/* Cart Overlay & Drawer */
.cart-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(15, 23, 42, 0.6);
	backdrop-filter: blur(4px);
	z-index: 9999;
	opacity: 0;
	visibility: hidden;
	transition: all 0.35s ease;
}

.cart-overlay.active {
	opacity: 1;
	visibility: visible;
}

.cart-drawer {
	position: fixed;
	top: 0;
	right: -420px;
	width: 400px;
	max-width: 90vw;
	height: 100%;
	background: #ffffff;
	z-index: 10000;
	box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
	transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
	display: flex;
	flex-direction: column;
}

.cart-drawer.active {
	right: 0;
}

.cart-header {
	padding: 22px 25px;
	background: #0f172a;
	color: #ffffff;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.cart-header h4 {
	font-size: 18px;
	font-weight: 700;
	color: #ffffff;
	margin: 0;
	display: flex;
	align-items: center;
	gap: 10px;
}

.cart-close-btn {
	background: rgba(255, 255, 255, 0.1);
	color: #ffffff;
	border: none;
	width: 34px;
	height: 34px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.2s ease;
}

.cart-close-btn:hover {
	background: #ef5a24;
}

.cart-body {
	flex: 1;
	overflow-y: auto;
	padding: 25px;
}

.cart-empty-state {
	text-align: center;
	padding: 50px 20px;
	color: #94a3b8;
}

.cart-empty-state i {
	font-size: 50px;
	color: #cbd5e1;
	margin-bottom: 15px;
}

.cart-item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 16px;
	background: #f8fafc;
	border: 1px solid #e2e8f0;
	border-radius: 14px;
	margin-bottom: 14px;
}

.cart-item-details h6 {
	font-size: 15px;
	font-weight: 700;
	color: #0f172a;
	margin: 0 0 4px;
}

.cart-item-details p {
	font-size: 13px;
	color: #ef5a24;
	font-weight: 700;
	margin: 0;
}

.cart-item-qty {
	display: flex;
	align-items: center;
	gap: 8px;
}

.qty-btn {
	width: 28px;
	height: 28px;
	border-radius: 6px;
	border: 1px solid #cbd5e1;
	background: #ffffff;
	color: #0f172a;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}

.qty-btn:hover {
	background: #ef5a24;
	color: #ffffff;
	border-color: #ef5a24;
}

.cart-footer {
	padding: 22px 25px;
	background: #f8fafc;
	border-top: 1px solid #e2e8f0;
}

.cart-total-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-size: 18px;
	font-weight: 800;
	color: #0f172a;
	margin-bottom: 18px;
}

.cart-total-price {
	color: #10b981;
}

.checkout-btn {
	width: 100%;
	padding: 14px;
	border-radius: 12px;
	background: #10b981;
	color: #ffffff;
	font-size: 15px;
	font-weight: 700;
	border: none;
	cursor: pointer;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
}

.checkout-btn:hover {
	background: #059669;
	box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
}

/* Toast Alert */
.cart-toast {
	position: fixed;
	bottom: 30px;
	right: 30px;
	background: #0f172a;
	color: #ffffff;
	padding: 14px 24px;
	border-radius: 12px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
	z-index: 10001;
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 14px;
	font-weight: 600;
	transform: translateY(100px);
	opacity: 0;
	transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
	border-left: 4px solid #10b981;
}

.cart-toast.active {
	transform: translateY(0);
	opacity: 1;
}

/* ==========================================================================
   Contact Page Modern Redesign Styles
   ========================================================================== */

/* Hero Banner V2 */
.contact-hero-v2 {
	position: relative;
	background: linear-gradient(135deg, #0f172a 0%, #1e293b 60%, #0f172a 100%);
	padding: 50px 0;
	overflow: hidden;
	color: #ffffff;
}

.contact-hero-v2::before {
	content: '';
	position: absolute;
	top: -50%;
	right: -20%;
	width: 600px;
	height: 600px;
	background: radial-gradient(circle, rgba(239, 90, 36, 0.25) 0%, rgba(239, 90, 36, 0) 70%);
	border-radius: 50%;
	pointer-events: none;
}

.contact-hero-v2::after {
	content: '';
	position: absolute;
	bottom: -40%;
	left: -10%;
	width: 500px;
	height: 500px;
	background: radial-gradient(circle, rgba(16, 185, 129, 0.15) 0%, rgba(16, 185, 129, 0) 70%);
	border-radius: 50%;
	pointer-events: none;
}

.contact-hero-v2 .hero-content {
	position: relative;
	z-index: 2;
	text-align: center;
	max-width: 800px;
	margin: 0 auto;
}

.hero-pill-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 18px;
	background: rgba(239, 90, 36, 0.15);
	border: 1px solid rgba(239, 90, 36, 0.35);
	border-radius: 50px;
	font-size: 13px;
	font-weight: 700;
	color: #ff7d47;
	text-transform: uppercase;
	letter-spacing: 0.8px;
	margin-bottom: 20px;
	backdrop-filter: blur(10px);
}

.contact-hero-v2 h1 {
	font-size: 48px;
	font-weight: 800;
	line-height: 1.2;
	color: #ffffff;
	margin-bottom: 16px;
	letter-spacing: -0.5px;
}

.contact-hero-v2 h1 span {
	background: linear-gradient(135deg, #ef5a24 0%, #ff8a00 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.contact-hero-v2 p {
	font-size: 17px;
	line-height: 1.6;
	color: #94a3b8;
	margin-bottom: 28px;
}

.hero-breadcrumbs {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 10px 22px;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 30px;
	font-size: 14px;
	font-weight: 500;
}

.hero-breadcrumbs a {
	color: #cbd5e1;
	transition: color 0.3s ease;
}

.hero-breadcrumbs a:hover {
	color: #ef5a24;
}

.hero-breadcrumbs span.sep {
	color: #64748b;
}

.hero-breadcrumbs span.current {
	color: #ef5a24;
	font-weight: 700;
}

/* Quick Contact Cards Section */
.contact-cards-section {
	position: relative;
	margin-top: -30px;
	z-index: 10;
	padding-bottom: 50px;
}

.quick-contact-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.contact-card-v2 {
	background: #ffffff;
	border: 1px solid #e2e8f0;
	border-radius: 20px;
	padding: 30px 24px;
	text-align: center;
	transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
	box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
	display: flex;
	flex-direction: column;
	align-items: center;
	position: relative;
	overflow: hidden;
}

.contact-card-v2::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 4px;
	background: linear-gradient(90deg, #ef5a24, #ff8a00);
	opacity: 0;
	transition: opacity 0.3s ease;
}

.contact-card-v2:hover {
	transform: translateY(-8px);
	box-shadow: 0 25px 45px rgba(15, 23, 42, 0.1);
	border-color: rgba(239, 90, 36, 0.3);
}

.contact-card-v2:hover::before {
	opacity: 1;
}

.card-icon-v2 {
	width: 64px;
	height: 64px;
	border-radius: 18px;
	background: linear-gradient(135deg, rgba(239, 90, 36, 0.1) 0%, rgba(239, 90, 36, 0.04) 100%);
	color: #ef5a24;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 26px;
	margin-bottom: 20px;
	transition: all 0.3s ease;
}

.contact-card-v2:hover .card-icon-v2 {
	background: linear-gradient(135deg, #ef5a24 0%, #ff8a00 100%);
	color: #ffffff;
	transform: scale(1.08) rotate(4deg);
}

.contact-card-v2 h4 {
	font-size: 18px;
	font-weight: 700;
	color: #0f172a;
	margin-bottom: 10px;
}

.contact-card-v2 .contact-hours-title {
	font-size: 17px;
	line-height: 1.25;
}

.contact-card-v2 .contact-hours-title span {
	display: block;
	white-space: nowrap;
}

.contact-card-v2 p {
	font-size: 14px;
	line-height: 1.5;
	color: #64748b;
	margin-bottom: 16px;
	flex-grow: 1;
}

.contact-card-v2 .card-action-link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 14px;
	font-weight: 700;
	color: #ef5a24;
	text-decoration: none;
	transition: gap 0.3s ease;
}

.contact-card-v2 .card-action-link:hover {
	gap: 10px;
	color: #d44714;
}

/* Main Split Section */
.contact-main-section {
	padding: 50px 0 90px 0;
	background: #f8fafc;
}

.contact-split-grid {
	display: grid;
	grid-template-columns: 1fr 1.15fr;
	gap: 45px;
	align-items: start;
}

/* Left Column: Info & Trust Hub */
.contact-info-hub {
	display: flex;
	flex-direction: column;
	gap: 32px;
}

.info-hub-header h2 {
	font-size: 34px;
	font-weight: 800;
	color: #0f172a;
	margin-bottom: 14px;
	line-height: 1.25;
}

.info-hub-header p {
	font-size: 16px;
	line-height: 1.6;
	color: #475569;
}

/* Trust Badges List */
.trust-features-list {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.trust-feature-item {
	display: flex;
	align-items: flex-start;
	gap: 16px;
	padding: 18px 20px;
	background: #ffffff;
	border: 1px solid #e2e8f0;
	border-radius: 16px;
	transition: all 0.3s ease;
}

.trust-feature-item:hover {
	border-color: #cbd5e1;
	box-shadow: 0 8px 20px rgba(15, 23, 42, 0.04);
	transform: translateX(4px);
}

.trust-feature-icon {
	width: 42px;
	height: 42px;
	border-radius: 12px;
	background: rgba(16, 185, 129, 0.1);
	color: #10b981;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	flex-shrink: 0;
}

.trust-feature-content h5 {
	font-size: 16px;
	font-weight: 700;
	color: #0f172a;
	margin-bottom: 4px;
}

.trust-feature-content p {
	font-size: 13px;
	color: #64748b;
	margin: 0;
	line-height: 1.45;
}

/* Suburb Pills Card */
.suburbs-coverage-box {
	background: #ffffff;
	border: 1px solid #e2e8f0;
	border-radius: 20px;
	padding: 24px;
}

.suburbs-coverage-box h4 {
	font-size: 17px;
	font-weight: 700;
	color: #0f172a;
	margin-bottom: 14px;
	display: flex;
	align-items: center;
	gap: 8px;
}

.suburb-pills {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.suburb-pill {
	padding: 6px 14px;
	background: #f1f5f9;
	color: #334155;
	border-radius: 20px;
	font-size: 13px;
	font-weight: 600;
	transition: all 0.25s ease;
}

.suburb-pill:hover {
	background: #ef5a24;
	color: #ffffff;
	transform: translateY(-2px);
}

/* Map Preview Card */
.map-preview-card {
	background: #ffffff;
	border: 1px solid #e2e8f0;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 10px 25px rgba(15, 23, 42, 0.05);
}

.map-header-bar {
	padding: 16px 20px;
	background: #0f172a;
	color: #ffffff;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.map-header-bar h5 {
	font-size: 15px;
	font-weight: 700;
	color: #ffffff;
	margin: 0;
	display: flex;
	align-items: center;
	gap: 8px;
}

.map-header-bar a {
	font-size: 12px;
	font-weight: 600;
	color: #ef5a24;
	text-decoration: none;
}

.map-iframe-wrapper {
	position: relative;
	width: 100%;
	height: 220px;
}

.map-iframe-wrapper iframe {
	width: 100%;
	height: 100%;
	border: 0;
}

/* Right Column: Modern Contact Form */
.modern-contact-card {
	background: #ffffff;
	border: 1px solid #e2e8f0;
	border-radius: 24px;
	padding: 40px;
	box-shadow: 0 20px 50px rgba(15, 23, 42, 0.06);
	position: relative;
}

.modern-contact-card .form-title-box {
	margin-bottom: 28px;
}

.modern-contact-card .form-title-box h3 {
	font-size: 28px;
	font-weight: 800;
	color: #0f172a;
	margin-bottom: 8px;
}

.modern-contact-card .form-title-box p {
	font-size: 15px;
	color: #64748b;
}

/* Topic Chips */
.topic-selection-group {
	margin-bottom: 24px;
}

.topic-selection-group label {
	display: block;
	font-size: 13px;
	font-weight: 700;
	color: #334155;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin-bottom: 12px;
}

.chips-flex {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.chip-radio {
	position: relative;
}

.chip-radio input {
	position: absolute;
	opacity: 0;
	width: 0;
	height: 0;
}

.chip-radio label {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 9px 16px;
	background: #fbfdff;
	border: 1.5px solid #edf2f7;
	border-radius: 30px;
	font-size: 13.5px;
	font-weight: 600;
	color: #7b8796;
	cursor: pointer;
	transition: all 0.25s ease;
	margin-bottom: 0;
	text-transform: none;
	letter-spacing: normal;
}

.chip-radio input:checked+label {
	background: rgba(239, 90, 36, 0.055);
	border-color: rgba(239, 90, 36, 0.42);
	color: #d95a2b;
	font-weight: 700;
}

.chip-radio label:hover {
	border-color: #e4ebf3;
	background: #ffffff;
}

/* Input Wrappers */
.form-grid-v2 {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
}

.form-grid-v2 .full-width {
	grid-column: span 2;
}

.form-group-v2 {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.form-group-v2 label {
	font-size: 13.5px;
	font-weight: 700;
	color: #1e293b;
}

.input-with-icon {
	position: relative;
	display: flex;
	align-items: center;
}

.input-icon {
	position: absolute;
	left: 16px;
	color: #b8c3d2;
	font-size: 16px;
	pointer-events: none;
	transition: color 0.3s ease;
}

.input-with-icon input,
.input-with-icon select,
.input-with-icon textarea {
	width: 100%;
	padding: 14px 16px 14px 46px;
	background: #fbfdff;
	border: 1.5px solid #edf2f7;
	border-radius: 12px;
	font-size: 14.5px;
	color: #475569;
	outline: none;
	transition: all 0.3s ease;
	font-family: inherit;
}

.input-with-icon input::placeholder,
.input-with-icon textarea::placeholder {
	color: #8e8e93;
	opacity: .58;
}

.input-with-icon select {
	cursor: pointer;
	appearance: none;
	display: block !important;
	position: static !important;
	opacity: 1 !important;
	visibility: visible !important;
	height: auto !important;
	line-height: 1.45 !important;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2364748b'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 16px center;
	background-size: 16px;
	padding-right: 40px;
}

.input-with-icon select:required:invalid {
	color: #8e8e93;
}

.input-with-icon select option {
	color: #475569;
}

.input-with-icon select option[value=""] {
	color: #8e8e93;
}

.input-with-icon.service-select-wrap select {
	min-height: 54px;
	font-weight: 700;
	color: #64748b;
	background-color: #fbfdff;
	border-color: #edf2f7;
	box-shadow: 0 8px 22px rgba(15, 23, 42, 0.04);
}

.input-with-icon.service-select-wrap select:hover {
	border-color: rgba(239, 90, 36, 0.25);
	background-color: #ffffff;
}

.input-with-icon select + .nice-select,
.input-with-icon .nice-select {
	display: none !important;
}

.input-with-icon textarea {
	padding-top: 14px;
	height: 120px;
	resize: vertical;
}

.input-with-icon input:focus,
.input-with-icon select:focus,
.input-with-icon textarea:focus {
	background: #ffffff;
	border-color: #ef5a24;
	box-shadow: 0 0 0 4px rgba(239, 90, 36, 0.08);
}

.input-with-icon input:focus+.input-icon,
.input-with-icon input:focus~.input-icon,
.input-with-icon select:focus~.input-icon,
.input-with-icon textarea:focus~.input-icon {
	color: #ef5a24;
}

/* Submit Button & Security Note */
.submit-btn-wrapper {
	margin-top: 10px;
}

.btn-submit-v2 {
	width: 100%;
	padding: 16px 28px;
	background: linear-gradient(135deg, #ef5a24 0%, #ff7d47 100%);
	color: #ffffff;
	border: none;
	border-radius: 14px;
	font-size: 16px;
	font-weight: 700;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	transition: all 0.35s ease;
	box-shadow: 0 10px 25px rgba(239, 90, 36, 0.3);
}

.btn-submit-v2:hover {
	background: linear-gradient(135deg, #d44714 0%, #ef5a24 100%);
	transform: translateY(-2px);
	box-shadow: 0 15px 35px rgba(239, 90, 36, 0.4);
}

.btn-submit-v2 i {
	transition: transform 0.3s ease;
}

.btn-submit-v2:hover i {
	transform: translateX(4px);
}

.trust-note-v2 {
	margin-top: 16px;
	text-align: center;
	font-size: 13px;
	color: #64748b;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
}

.trust-note-v2 i {
	color: #10b981;
}

/* Contact FAQ Section */
.contact-faq-section {
	padding: 70px 0 90px 0;
	background: #ffffff;
	border-top: 1px solid #e2e8f0;
}

.section-title-center {
	text-align: center;
	max-width: 650px;
	margin: 0 auto 50px auto;
}

.section-title-center h2 {
	font-size: 34px;
	font-weight: 800;
	color: #0f172a;
	margin-bottom: 12px;
}

.section-title-center p {
	font-size: 16px;
	color: #64748b;
}

.faq-grid-v2 {
	display: grid;
	grid-template-columns: 1fr;
	gap: 12px;
	max-width: 980px;
	margin: 0 auto;
}

.faq-card-v2 {
	background: #ffffff;
	border: 1px solid #e2e8f0;
	border-radius: 8px;
	padding: 0;
	transition: all 0.3s ease;
	overflow: hidden;
	box-shadow: 0 12px 30px rgba(15, 23, 42, 0.04);
}

.faq-card-v2:hover {
	background: #ffffff;
	border-color: rgba(239, 90, 36, 0.3);
	box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
}

.faq-card-v2 summary {
	list-style: none;
	cursor: pointer;
	padding: 20px 22px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
}

.faq-card-v2 summary::-webkit-details-marker {
	display: none;
}

.faq-card-v2 summary span {
	font-size: 17px;
	font-weight: 800;
	color: #0f172a;
	display: flex;
	align-items: center;
	gap: 10px;
	line-height: 1.35;
}

.faq-card-v2 summary span i {
	color: #ef5a24;
	font-size: 18px;
	flex-shrink: 0;
}

.faq-toggle-icon {
	color: #64748b;
	font-size: 13px;
	transition: transform 0.25s ease, color 0.25s ease;
}

.faq-card-v2[open] {
	border-color: rgba(239, 90, 36, 0.32);
	box-shadow: 0 18px 42px rgba(15, 23, 42, 0.08);
}

.faq-card-v2[open] .faq-toggle-icon {
	color: #ef5a24;
	transform: rotate(180deg);
}

.faq-card-v2 p {
	font-size: 14px;
	line-height: 1.6;
	color: #475569;
	margin: 0;
	padding: 16px 22px 22px 50px;
	border-top: 1px solid #eef2f7;
	background: #fbfdff;
}

/* Responsive Rules for Contact Redesign */
@media (max-width: 1024px) {
	.quick-contact-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.contact-split-grid {
		grid-template-columns: 1fr;
		gap: 40px;
	}
}

@media (max-width: 768px) {
	.contact-hero-v2 {
		padding: 34px 0 30px;
	}

	.hero-pill-badge {
		margin-bottom: 12px;
		padding: 7px 12px;
		font-size: 11px;
		letter-spacing: 0;
	}

	.contact-hero-v2 h1 {
		font-size: 34px;
		line-height: 1.08;
		margin-bottom: 10px;
	}

	.contact-hero-v2 p {
		margin-bottom: 0;
		font-size: 15px;
		line-height: 1.45;
	}

	.hero-breadcrumbs {
		display: none;
	}

	.quick-contact-grid {
		grid-template-columns: 1fr;
		gap: 14px;
	}

	.contact-cards-section {
		margin-top: 0;
		padding: 24px 0 34px;
	}

	.contact-card-v2 {
		padding: 22px 18px;
		border-radius: 12px;
	}

	.modern-contact-card {
		padding: 24px;
	}

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

	.form-grid-v2 .full-width {
		grid-column: span 1;
	}

	.faq-grid-v2 {
		grid-template-columns: 1fr;
	}
}

/* ==========================================================================
   Pricing Page Modern Redesign Styles
   ========================================================================== */

/* Integrity Banner Section */
.integrity-section-v2 {
	padding: 70px 0 40px 0;
	background: #ffffff;
}

.integrity-card-v2 {
	background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
	border-radius: 24px;
	padding: 45px 50px;
	color: #ffffff;
	position: relative;
	overflow: hidden;
	box-shadow: 0 20px 45px rgba(15, 23, 42, 0.12);
}

.integrity-card-v2::before {
	content: '';
	position: absolute;
	top: -50%;
	right: -10%;
	width: 500px;
	height: 500px;
	background: radial-gradient(circle, rgba(239, 90, 36, 0.2) 0%, rgba(239, 90, 36, 0) 70%);
	border-radius: 50%;
	pointer-events: none;
}

.integrity-header-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 6px 16px;
	background: rgba(239, 90, 36, 0.2);
	border: 1px solid rgba(239, 90, 36, 0.4);
	border-radius: 30px;
	font-size: 12px;
	font-weight: 700;
	color: #ff7d47;
	text-transform: uppercase;
	letter-spacing: 0.8px;
	margin-bottom: 16px;
}

.integrity-card-v2 h2 {
	font-size: 30px;
	font-weight: 800;
	color: #ffffff !important;
	margin-bottom: 16px;
	line-height: 1.3;
}

.integrity-card-v2 p {
	font-size: 15.5px;
	line-height: 1.7;
	color: #cbd5e1;
	margin-bottom: 28px;
	max-width: 950px;
}

.integrity-highlights-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	padding-top: 24px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.integrity-item {
	display: flex;
	align-items: center;
	gap: 12px;
}

.integrity-item i {
	width: 40px;
	height: 40px;
	border-radius: 12px;
	background: rgba(239, 90, 36, 0.15);
	color: #ef5a24;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	flex-shrink: 0;
}

.integrity-item span {
	font-size: 14px;
	font-weight: 600;
	color: #f1f5f9;
}

/* Pricing Grid Section */
.auto-container-full {
	position: relative;
	max-width: 1650px;
	padding: 0 30px;
	margin: 0 auto;
	width: 100%;
}

.pricing-section-v2 {
	padding: 78px 0 104px;
	background:
		radial-gradient(circle at 18% 18%, rgba(239, 90, 36, 0.12) 0, rgba(239, 90, 36, 0) 28%),
		radial-gradient(circle at 82% 6%, rgba(25, 135, 84, 0.12) 0, rgba(25, 135, 84, 0) 26%),
		linear-gradient(180deg, #071121 0%, #101a2b 335px, #f7f9fc 335px, #ffffff 100%);
	position: relative;
	overflow: hidden;
}

.pricing-section-v2:before {
	content: "";
	position: absolute;
	inset: 0;
	background-image: linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
	background-size: 44px 44px;
	mask-image: linear-gradient(180deg, #000 0%, transparent 58%);
	pointer-events: none;
}

.pricing-section-v2 .auto-container-full {
	position: relative;
	z-index: 1;
}

.pricing-title-premium {
	max-width: 820px;
	margin: 0 auto 28px;
}

.pricing-eyebrow {
	display: inline-flex;
	align-items: center;
	padding: 8px 14px;
	margin-bottom: 16px;
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.08);
	color: #ffb28f;
	font-size: 12px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.7px;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.pricing-title-premium h2 {
	color: #ffffff !important;
	margin-bottom: 12px;
}

.pricing-title-premium p {
	max-width: 650px;
	margin: 0 auto;
	color: #c5d0df;
}

.pricing-assurance-row {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 10px;
	margin-top: 20px;
}

.pricing-assurance-row span {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	padding: 9px 12px;
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 999px;
	color: #edf2f7;
	font-size: 12.5px;
	font-weight: 700;
	box-shadow: 0 10px 26px rgba(0, 0, 0, 0.12);
}

.pricing-assurance-row i {
	color: #ff9b6e;
}

.pricing-concierge-strip {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 22px;
	max-width: 1040px;
	margin: 0 auto 34px;
	padding: 18px 22px;
	background: rgba(255, 255, 255, 0.96);
	border: 1px solid rgba(255, 255, 255, 0.78);
	border-radius: 8px;
	box-shadow: 0 24px 70px rgba(15, 23, 42, 0.18);
}

.pricing-concierge-strip div {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px 12px;
	color: #0f172a;
	font-size: 14px;
}

.concierge-label {
	display: inline-flex;
	align-items: center;
	padding: 6px 9px;
	border-radius: 999px;
	background: #101a2b;
	color: #ffffff;
	font-size: 11px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.pricing-concierge-strip a {
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	gap: 7px;
	color: #ef5a24;
	font-size: 13px;
	font-weight: 900;
}

.pricing-concierge-strip a:hover {
	color: #198754;
}

.pricing-grid-5 {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 18px;
	align-items: stretch;
}

.pricing-card-v2 {
	background: linear-gradient(180deg, #ffffff 0%, #fbfcfe 100%);
	border: 1px solid rgba(214, 220, 230, 0.82);
	border-radius: 8px;
	padding: 26px 18px 18px;
	display: flex;
	flex-direction: column;
	position: relative;
	overflow: hidden;
	transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
	box-shadow: 0 22px 56px rgba(15, 23, 42, 0.1);
}

.pricing-card-v2:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, #ef5a24 0%, #ffb15c 42%, #198754 100%);
}

.pricing-card-v2:after {
	content: "";
	position: absolute;
	top: 4px;
	left: 0;
	right: 0;
	height: 92px;
	background: linear-gradient(180deg, rgba(15, 23, 42, 0.035) 0%, rgba(15, 23, 42, 0) 100%);
	pointer-events: none;
}

.pricing-card-v2:hover {
	transform: translateY(-6px);
	box-shadow: 0 28px 64px rgba(15, 23, 42, 0.14);
	border-color: rgba(239, 90, 36, 0.42);
}

/* Featured Card Styling */
.pricing-card-v2.featured-card {
	border: 1px solid rgba(255, 150, 86, 0.75);
	background: linear-gradient(180deg, #15121f 0, #211525 220px, #fff8f3 220px, #fff8f3 100%);
	box-shadow: 0 34px 82px rgba(239, 90, 36, 0.24);
	transform: translateY(-10px);
}

.pricing-card-v2.featured-card:before {
	height: 5px;
	background: linear-gradient(90deg, #ef5a24 0%, #ff8a00 55%, #198754 100%);
}

.pricing-card-v2.featured-card:hover {
	transform: translateY(-14px);
}

.featured-ribbon {
	position: absolute;
	top: 14px;
	right: 14px;
	background: linear-gradient(135deg, #ef5a24 0%, #ff8a00 100%);
	color: #ffffff;
	padding: 7px 10px;
	border-radius: 999px;
	font-size: 11px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.4px;
	box-shadow: 0 10px 24px rgba(239, 90, 36, 0.36);
}

.plan-header-v2 {
	margin-bottom: 18px;
	padding-right: 4px;
}

.pricing-card-icon {
	position: relative;
	z-index: 1;
	width: 44px;
	height: 44px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 16px;
	border-radius: 8px;
	background: linear-gradient(135deg, #101a2b 0%, #243249 100%);
	color: #ffffff;
	font-size: 17px;
	box-shadow: 0 14px 30px rgba(15, 23, 42, 0.18);
}

.pricing-card-v2:nth-child(2) .pricing-card-icon,
.pricing-card-v2:nth-child(4) .pricing-card-icon {
	background: #198754;
}

.pricing-card-v2.featured-card .pricing-card-icon {
	background: linear-gradient(135deg, #ef5a24 0%, #ff8a00 100%);
	box-shadow: 0 12px 28px rgba(239, 90, 36, 0.25);
}

.pricing-card-v2.featured-card .plan-header-v2 {
	padding-top: 28px;
	margin-bottom: 30px;
}

.plan-badge-v2 {
	display: inline-block;
	padding: 6px 10px;
	background: #f7f9fc;
	color: #475467;
	border: 1px solid #e5eaf0;
	border-radius: 999px;
	font-size: 11px;
	font-weight: 800;
	margin-bottom: 12px;
	text-transform: uppercase;
	letter-spacing: 0.4px;
}

.plan-badge-v2.success-badge {
	background: #effbf4;
	color: #198754;
	border-color: rgba(25, 135, 84, 0.18);
}

.pricing-card-v2.featured-card .plan-badge-v2 {
	background: rgba(255, 255, 255, 0.12);
	color: #ffd0b8;
	border-color: rgba(255, 255, 255, 0.16);
}

.plan-title-v2 {
	font-size: 21px;
	font-weight: 800;
	color: #0f172a;
	margin-bottom: 8px;
	line-height: 1.16;
}

.pricing-card-v2.featured-card .plan-title-v2 {
	color: #ffffff !important;
}

.plan-desc-v2 {
	font-size: 13px;
	color: #667085;
	line-height: 1.5;
	min-height: 58px;
}

.pricing-card-v2.featured-card .plan-desc-v2 {
	color: #f4c9b9;
}

.plan-price-box {
	margin: 0 -6px 20px;
	padding: 16px 6px 18px;
	border-top: 1px solid #edf0f4;
	border-bottom: 1px solid #edf0f4;
	text-align: center;
}

.pricing-card-v2.featured-card .plan-price-box {
	margin-top: 4px;
	border-top-color: rgba(239, 90, 36, 0.15);
	border-bottom-color: rgba(239, 90, 36, 0.15);
}

.plan-price-amount {
	display: flex;
	align-items: baseline;
	justify-content: center;
	gap: 4px;
	flex-wrap: wrap;
}

.plan-price-amount .from-label {
	font-size: 12px;
	font-weight: 800;
	text-transform: uppercase;
	color: #667085;
	margin-right: 3px;
}

.plan-price-amount .currency {
	font-size: 21px;
	font-weight: 800;
	color: #ef5a24;
}

.plan-price-amount .amount {
	font-size: 42px;
	font-weight: 900;
	color: #0f172a;
	line-height: 1;
	letter-spacing: 0;
}

.plan-price-amount.is-placeholder {
	align-items: center;
	flex-direction: column;
	gap: 5px;
	line-height: 1.15;
}

.plan-price-amount.is-placeholder .from-label {
	margin-right: 0;
}

.plan-price-amount.is-placeholder .amount {
	font-size: 20px;
	line-height: 1.15;
	max-width: 9rem;
}

.plan-price-amount .period {
	font-size: 13px;
	font-weight: 600;
	color: #667085;
	margin-left: 3px;
}

.plan-subprice-tag {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-top: 10px;
	padding: 6px 9px;
	border-radius: 999px;
	background: #ecfdf4;
	color: #198754;
	font-size: 11.5px;
	font-weight: 800;
	line-height: 1.2;
}

.pricing-card-v2.featured-card .plan-subprice-tag {
	background: #ffffff;
	color: #168052;
	box-shadow: 0 8px 18px rgba(239, 90, 36, 0.08);
}

.plan-features-list-v2 {
	list-style: none;
	padding: 0;
	margin: 0 0 22px 0;
	display: flex;
	flex-direction: column;
	gap: 11px;
	flex-grow: 1;
}

.plan-features-list-v2 li {
	display: flex;
	align-items: flex-start;
	gap: 9px;
	font-size: 12.8px;
	color: #344054;
	line-height: 1.45;
}

.plan-features-list-v2 li i {
	color: #198754;
	font-size: 14px;
	margin-top: 2px;
	flex-shrink: 0;
}

.plan-features-list-v2 li.feature-warning {
	color: #dc2626;
	font-weight: 800;
}

.plan-features-list-v2 li.feature-warning i {
	color: #dc2626;
}

.plan-action-box {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.btn-add-cart-v2 {
	width: 100%;
	min-height: 44px;
	padding: 12px 13px;
	background: linear-gradient(135deg, #101a2b 0%, #1d2a40 100%);
	color: #ffffff;
	border: none;
	border-radius: 8px;
	font-size: 13px;
	font-weight: 800;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	transition: all 0.3s ease;
}

.btn-add-cart-v2:hover {
	background: linear-gradient(135deg, #ef5a24 0%, #198754 100%);
	color: #ffffff;
	transform: translateY(-1px);
	box-shadow: 0 10px 24px rgba(239, 90, 36, 0.28);
}

.pricing-card-v2.featured-card .btn-add-cart-v2 {
	background: linear-gradient(135deg, #ef5a24 0%, #ff7d47 100%);
	box-shadow: 0 6px 16px rgba(239, 90, 36, 0.3);
}

.pricing-card-v2.featured-card .btn-add-cart-v2:hover {
	background: linear-gradient(135deg, #d44714 0%, #ef5a24 100%);
}

.btn-book-direct-v2 {
	width: 100%;
	min-height: 40px;
	padding: 10px 12px;
	background: rgba(255, 255, 255, 0.7);
	color: #344054;
	border: 1px solid #d8dee8;
	border-radius: 8px;
	font-size: 12.5px;
	font-weight: 800;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 5px;
	transition: all 0.3s ease;
}

.btn-book-direct-v2:hover {
	background: #f5f7fa;
	color: #0f172a;
	border-color: #c8d0dc;
}

/* Responsive Rules for Pricing Redesign */
@media (max-width: 1400px) {
	.pricing-grid-5 {
		grid-template-columns: repeat(3, 1fr);
		gap: 20px;
	}
}

@media (max-width: 992px) {
	.pricing-section-v2 {
		padding: 58px 0 76px;
	}

	.pricing-grid-5 {
		grid-template-columns: repeat(2, 1fr);
		gap: 20px;
	}

	.pricing-card-v2.featured-card {
		transform: none;
	}

	.integrity-highlights-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 640px) {
	.integrity-section-v2 {
		display: none;
	}

	.pricing-section-v2 {
		padding: 18px 0 50px;
		background: linear-gradient(180deg, #f7f9fc 0%, #ffffff 100%);
	}

	.pricing-section-v2:before {
		display: none;
	}

	.pricing-title-premium {
		margin-bottom: 12px;
		text-align: left;
	}

	.pricing-eyebrow,
	.pricing-assurance-row {
		display: none;
	}

	.pricing-title-premium h2 {
		margin-bottom: 6px;
		color: #111827 !important;
		font-size: 22px;
		line-height: 1.12;
	}

	.pricing-title-premium p {
		margin: 0;
		color: #5f6b7a !important;
		font-size: 11.5px;
		line-height: 1.35;
		text-align: left;
	}

	.pricing-concierge-strip {
		align-items: stretch;
		flex-direction: column;
		gap: 8px;
		margin: 0 0 12px;
		padding: 12px;
		box-shadow: 0 10px 22px rgba(15, 23, 42, .06);
	}

	.pricing-concierge-strip div {
		display: block;
		font-size: 11px;
		line-height: 1.35;
	}

	.concierge-label {
		margin: 0 0 5px;
		padding: 5px 8px;
		font-size: 9px;
	}

	.pricing-concierge-strip a {
		width: 100%;
		justify-content: center;
		min-height: 38px;
		border: 1px solid #d29b2f;
		border-radius: 8px;
		background: linear-gradient(180deg, #ffd978 0%, #f3b23f 100%);
		color: #172033;
		font-size: 11px;
	}

	.pricing-grid-5 {
		grid-template-columns: 1fr;
		gap: 10px;
	}

	.pricing-card-v2 {
		display: grid;
		grid-template-columns: 34px minmax(0, 1fr);
		gap: 8px 10px;
		min-height: 0;
		padding: 14px 12px 12px;
		text-align: left;
		box-shadow: 0 10px 24px rgba(15, 23, 42, .06);
	}

	.pricing-card-v2.featured-card {
		background: linear-gradient(180deg, #15121f 0, #211525 146px, #fff8f3 146px, #fff8f3 100%);
	}

	.pricing-card-icon {
		grid-column: 1;
		grid-row: 1 / span 2;
		width: 32px;
		height: 32px;
		margin-bottom: 8px;
		font-size: 13px;
		box-shadow: none;
	}

	.plan-header-v2,
	.pricing-card-v2.featured-card .plan-header-v2 {
		grid-column: 2;
		margin-bottom: 10px;
		padding-top: 0;
	}

	.plan-badge-v2 {
		display: none;
	}

	.plan-title-v2 {
		margin-bottom: 0;
		text-align: left;
		font-size: 17px;
	}

	.plan-desc-v2 {
		display: none;
	}

	.plan-price-box {
		grid-column: 1 / -1;
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 10px;
		margin: 8px 0 10px;
		padding: 10px;
		text-align: left;
	}

	.plan-price-amount {
		justify-content: flex-start;
	}

	.plan-price-amount .amount {
		font-size: 26px;
	}

	.plan-price-amount.is-placeholder {
		align-items: baseline;
		flex-direction: row;
		gap: 6px;
	}

	.plan-price-amount.is-placeholder .from-label {
		font-size: 10px;
	}

	.plan-price-amount.is-placeholder .amount {
		font-size: 18px;
		max-width: none;
	}

	.plan-subprice-tag {
		flex-shrink: 0;
		margin-top: 0;
		font-size: 10px;
	}

	.plan-features-list-v2 {
		grid-column: 1 / -1;
		gap: 6px;
		margin-bottom: 12px;
	}

	.plan-features-list-v2 li {
		font-size: 11px;
		line-height: 1.3;
	}

	.plan-features-list-v2 li:nth-child(n+3) {
		display: none;
	}

	.plan-action-box {
		grid-column: 1 / -1;
	}

	.btn-add-cart-v2 {
		min-height: 38px;
		padding: 9px 11px;
		font-size: 11px;
	}

	.btn-book-direct-v2 {
		display: none;
	}

	.auto-container-full {
		padding: 0 9px;
	}
}

/* Pricing FAQ upgrade */
.pricing-faq-section {
	background: linear-gradient(180deg, #f7f8fb 0%, #ffffff 100%);
	border-top: 1px solid #e1e7ef;
	padding: 74px 0 88px;
}

.pricing-faq-shell {
	display: grid;
	grid-template-columns: minmax(280px, .78fr) minmax(0, 1.22fr);
	gap: 22px;
	align-items: start;
	max-width: 1120px;
	margin: 0 auto;
}

.pricing-faq-summary,
.pricing-faq-item {
	border: 1px solid #dfe6ef;
	border-radius: 8px;
	background: #ffffff;
	box-shadow: 0 18px 42px rgba(15, 23, 42, .07);
}

.pricing-faq-summary {
	position: sticky;
	top: 96px;
	padding: 26px;
	overflow: hidden;
}

.pricing-faq-summary::before {
	content: "";
	position: absolute;
	inset: 0 0 auto;
	height: 5px;
	background: linear-gradient(90deg, #ffb547 0%, #f3c85a 48%, #1c7f4c 100%);
}

.pricing-faq-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	margin-bottom: 14px;
	padding: 7px 10px;
	border-radius: 999px;
	background: #fff7df;
	color: #7a4a00;
	font-size: 11px;
	font-weight: 900;
	text-transform: uppercase;
}

.pricing-faq-summary h2 {
	margin: 0;
	color: #111827;
	font-size: 30px;
	line-height: 1.08;
	letter-spacing: 0;
}

.pricing-faq-summary p {
	margin: 12px 0 0;
	color: #5f6f82;
	font-size: 14px;
	line-height: 1.55;
}

.pricing-faq-mini-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 8px;
	margin-top: 20px;
}

.pricing-faq-mini-grid span {
	display: flex;
	align-items: center;
	gap: 7px;
	min-height: 38px;
	padding: 8px 9px;
	border: 1px solid #e6ebf2;
	border-radius: 8px;
	background: #fafbfc;
	color: #223047;
	font-size: 11px;
	font-weight: 900;
	line-height: 1.2;
}

.pricing-faq-mini-grid i {
	color: #178250;
	font-size: 12px;
}

.pricing-faq-list {
	display: grid;
	gap: 10px;
}

.pricing-faq-item {
	overflow: hidden;
	transition: border-color .22s ease, box-shadow .22s ease, transform .22s ease;
}

.pricing-faq-item:hover {
	border-color: #f0c45a;
	box-shadow: 0 22px 48px rgba(15, 23, 42, .09);
	transform: translateY(-1px);
}

.pricing-faq-item summary {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	min-height: 64px;
	padding: 18px 20px;
	cursor: pointer;
	list-style: none;
}

.pricing-faq-item summary::-webkit-details-marker {
	display: none;
}

.pricing-faq-item summary span {
	display: flex;
	align-items: center;
	gap: 11px;
	color: #111827;
	font-size: 16px;
	font-weight: 900;
	line-height: 1.28;
}

.pricing-faq-item summary span i {
	width: 34px;
	height: 34px;
	flex: 0 0 34px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 8px;
	background: #eef6ff;
	color: #2563eb;
	font-size: 14px;
}

.pricing-faq-toggle {
	color: #708093;
	font-size: 12px;
	transition: transform .2s ease, color .2s ease;
}

.pricing-faq-item[open] {
	border-color: #f0c45a;
	box-shadow: 0 22px 48px rgba(15, 23, 42, .1);
}

.pricing-faq-item[open] .pricing-faq-toggle {
	color: #a16207;
	transform: rotate(180deg);
}

.pricing-faq-item p {
	margin: 0;
	padding: 0 20px 20px 65px;
	color: #5f6f82;
	font-size: 14px;
	line-height: 1.62;
}

@media (max-width: 991px) {
	.pricing-faq-shell {
		grid-template-columns: 1fr;
	}

	.pricing-faq-summary {
		position: relative;
		top: auto;
	}
}

@media (max-width: 640px) {
	.pricing-faq-section {
		padding: 28px 0 34px;
	}

	.pricing-faq-shell {
		gap: 10px;
	}

	.pricing-faq-summary {
		padding: 16px 14px 14px;
		box-shadow: 0 12px 28px rgba(15, 23, 42, .06);
	}

	.pricing-faq-eyebrow {
		margin-bottom: 9px;
		padding: 5px 8px;
		font-size: 9px;
	}

	.pricing-faq-summary h2 {
		font-size: 22px;
	}

	.pricing-faq-summary p {
		font-size: 11.5px;
		line-height: 1.4;
	}

	.pricing-faq-mini-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 6px;
		margin-top: 12px;
	}

	.pricing-faq-mini-grid span {
		min-height: 30px;
		padding: 6px 7px;
		font-size: 9px;
	}

	.pricing-faq-list {
		gap: 7px;
	}

	.pricing-faq-item summary {
		min-height: 48px;
		padding: 10px 12px;
		gap: 8px;
	}

	.pricing-faq-item summary span {
		gap: 8px;
		font-size: 11.5px;
		line-height: 1.24;
	}

	.pricing-faq-item summary span i {
		width: 28px;
		height: 28px;
		flex-basis: 28px;
		font-size: 11px;
	}

	.pricing-faq-toggle {
		font-size: 10px;
	}

	.pricing-faq-item p {
		padding: 0 12px 12px 48px;
		font-size: 10.5px;
		line-height: 1.45;
	}
}

/* ==========================================================================
   About Page Modern Redesign Styles
   ========================================================================== */

/* Story & Mission Section */
.about-story-section {
	padding: 80px 0;
	background: #ffffff;
}

.about-story-grid {
	display: grid;
	grid-template-columns: 1fr 1.1fr;
	gap: 50px;
	align-items: center;
}

.about-stats-card {
	background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
	border-radius: 24px;
	padding: 40px;
	color: #ffffff;
	position: relative;
	overflow: hidden;
	box-shadow: 0 20px 45px rgba(15, 23, 42, 0.12);
}

.about-stats-card::before {
	content: '';
	position: absolute;
	bottom: -40%;
	right: -30%;
	width: 400px;
	height: 400px;
	background: radial-gradient(circle, rgba(239, 90, 36, 0.25) 0%, rgba(239, 90, 36, 0) 70%);
	border-radius: 50%;
	pointer-events: none;
}

.stats-grid-v2 {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 24px;
}

.stat-item-v2 {
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 18px;
	padding: 24px 20px;
	text-align: center;
	backdrop-filter: blur(10px);
	transition: all 0.3s ease;
}

.stat-item-v2:hover {
	background: rgba(239, 90, 36, 0.15);
	border-color: rgba(239, 90, 36, 0.4);
	transform: translateY(-4px);
}

.stat-item-v2 .number {
	font-size: 38px;
	font-weight: 900;
	color: #ef5a24;
	line-height: 1;
	margin-bottom: 8px;
	letter-spacing: -1px;
}

.stat-item-v2 .label {
	font-size: 13.5px;
	font-weight: 600;
	color: #cbd5e1;
	line-height: 1.3;
}

.about-content-hub h2 {
	font-size: 34px;
	font-weight: 800;
	color: #0f172a;
	margin-bottom: 18px;
	line-height: 1.25;
}

.about-content-hub p {
	font-size: 16px;
	line-height: 1.7;
	color: #475569;
	margin-bottom: 24px;
}

.logbook-bonus-box {
	background: linear-gradient(135deg, rgba(239, 90, 36, 0.1) 0%, rgba(255, 138, 0, 0.05) 100%);
	border: 1.5px solid rgba(239, 90, 36, 0.3);
	border-radius: 18px;
	padding: 22px 24px;
	margin-bottom: 24px;
	display: flex;
	align-items: flex-start;
	gap: 16px;
}

.logbook-bonus-icon {
	width: 46px;
	height: 46px;
	border-radius: 14px;
	background: #ef5a24;
	color: #ffffff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 22px;
	flex-shrink: 0;
}

.logbook-bonus-text h4 {
	font-size: 17px;
	font-weight: 800;
	color: #0f172a;
	margin-bottom: 4px;
}

.logbook-bonus-text p {
	font-size: 13.5px;
	color: #475569;
	margin: 0;
	line-height: 1.45;
}

/* Core Values Section */
.values-section-v2 {
	padding: 70px 0 90px 0;
	background: #f8fafc;
}

.values-grid-v2 {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}

.value-card-v2 {
	background: #ffffff;
	border: 1px solid #e2e8f0;
	border-radius: 20px;
	padding: 30px 24px;
	transition: all 0.35s ease;
	box-shadow: 0 10px 25px rgba(15, 23, 42, 0.03);
}

.value-card-v2:hover {
	transform: translateY(-6px);
	box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
	border-color: rgba(239, 90, 36, 0.3);
}

.value-icon-v2 {
	width: 58px;
	height: 58px;
	border-radius: 16px;
	background: rgba(239, 90, 36, 0.1);
	color: #ef5a24;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	margin-bottom: 20px;
	transition: all 0.3s ease;
}

.value-card-v2:hover .value-icon-v2 {
	background: #ef5a24;
	color: #ffffff;
	transform: scale(1.05);
}

.value-card-v2 h4 {
	font-size: 18px;
	font-weight: 800;
	color: #0f172a;
	margin-bottom: 10px;
}

.value-card-v2 p {
	font-size: 14px;
	line-height: 1.55;
	color: #64748b;
	margin: 0;
}

/* Roadmap Section */
.roadmap-section-v2 {
	padding: 80px 0;
	background: #ffffff;
}

.roadmap-grid-v2 {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
	position: relative;
}

.roadmap-step-card {
	background: #f8fafc;
	border: 1px solid #e2e8f0;
	border-radius: 20px;
	padding: 30px 24px;
	position: relative;
	transition: all 0.3s ease;
}

.roadmap-step-card:hover {
	background: #ffffff;
	border-color: #ef5a24;
	box-shadow: 0 15px 35px rgba(239, 90, 36, 0.1);
	transform: translateY(-4px);
}

.step-number-badge {
	width: 36px;
	height: 36px;
	border-radius: 10px;
	background: #0f172a;
	color: #ef5a24;
	font-size: 15px;
	font-weight: 800;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 18px;
}

.roadmap-step-card h4 {
	font-size: 17px;
	font-weight: 800;
	color: #0f172a;
	margin-bottom: 10px;
}

.roadmap-step-card p {
	font-size: 13.5px;
	line-height: 1.5;
	color: #64748b;
	margin: 0;
}

/* CTA Banner V2 */
.about-cta-section {
	padding: 70px 0 90px 0;
	background: #f8fafc;
}

.about-cta-card {
	background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
	border-radius: 24px;
	padding: 50px;
	color: #ffffff;
	text-align: center;
	position: relative;
	overflow: hidden;
	box-shadow: 0 20px 45px rgba(15, 23, 42, 0.12);
}

.about-cta-card h2 {
	font-size: 36px;
	font-weight: 800;
	color: #ffffff;
	margin-bottom: 14px;
}

.about-cta-card p {
	font-size: 17px;
	color: #cbd5e1;
	max-width: 700px;
	margin: 0 auto 30px auto;
}

.about-cta-buttons {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
	flex-wrap: wrap;
}

.btn-cta-primary {
	padding: 15px 30px;
	background: linear-gradient(135deg, #ef5a24 0%, #ff7d47 100%);
	color: #ffffff;
	border-radius: 12px;
	font-size: 15.5px;
	font-weight: 700;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	transition: all 0.3s ease;
	box-shadow: 0 10px 25px rgba(239, 90, 36, 0.3);
}

.btn-cta-primary:hover {
	background: linear-gradient(135deg, #d44714 0%, #ef5a24 100%);
	color: #ffffff;
	transform: translateY(-2px);
}

.btn-cta-secondary {
	padding: 15px 30px;
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.2);
	color: #ffffff;
	border-radius: 12px;
	font-size: 15.5px;
	font-weight: 700;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	transition: all 0.3s ease;
}

.btn-cta-secondary:hover {
	background: rgba(255, 255, 255, 0.2);
	color: #ffffff;
}

/* Responsive Rules for About Redesign */
@media (max-width: 1024px) {
	.about-story-grid {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.values-grid-v2,
	.roadmap-grid-v2 {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 640px) {

	.stats-grid-v2,
	.values-grid-v2,
	.roadmap-grid-v2 {
		grid-template-columns: 1fr;
	}

	.about-cta-card {
		padding: 30px 20px;
	}

	.about-cta-card h2 {
		font-size: 26px;
	}
}

/* About Page Photo Enhancements */
.story-image-box {
	position: relative;
	border-radius: 20px;
	overflow: hidden;
	margin-bottom: 24px;
	box-shadow: 0 15px 35px rgba(15, 23, 42, 0.15);
}

.story-image-box img {
	width: 100%;
	height: 240px;
	object-fit: cover;
	display: block;
	transition: transform 0.5s ease;
}

.story-image-box:hover img {
	transform: scale(1.04);
}

.story-image-box .photo-badge {
	position: absolute;
	bottom: 16px;
	left: 16px;
	background: rgba(15, 23, 42, 0.85);
	color: #ef5a24;
	padding: 6px 14px;
	border-radius: 20px;
	font-size: 12px;
	font-weight: 700;
	backdrop-filter: blur(8px);
	border: 1px solid rgba(239, 90, 36, 0.3);
}

.about-photo-duo {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 16px;
	margin-top: 20px;
}

.about-photo-item {
	border-radius: 14px;
	overflow: hidden;
	height: 120px;
	box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06);
}

.about-photo-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease;
}

.about-photo-item:hover img {
	transform: scale(1.06);
}

/* Card Photo Headers */
.value-card-v2 {
	overflow: hidden;
	padding: 0 0 24px 0 !important;
}

.value-card-photo-header {
	width: 100%;
	height: 150px;
	overflow: hidden;
	position: relative;
}

.value-card-photo-header img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease;
}

.value-card-v2:hover .value-card-photo-header img {
	transform: scale(1.06);
}

.value-card-body {
	padding: 20px 24px 0 24px;
}

/* Roadmap Step Photo Thumbnails */
.step-photo-thumb {
	width: 100%;
	height: 120px;
	border-radius: 12px;
	overflow: hidden;
	margin-bottom: 16px;
}

.step-photo-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease;
}

.roadmap-step-card:hover .step-photo-thumb img {
	transform: scale(1.06);
}

/* Instructor Team Cards */
.instructor-card-v2 {
	background: #ffffff;
	border: 1px solid #e2e8f0;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
	transition: all 0.35s ease;
}

.instructor-card-v2:hover {
	transform: translateY(-8px);
	box-shadow: 0 20px 45px rgba(15, 23, 42, 0.1);
	border-color: rgba(239, 90, 36, 0.3);
}

.instructor-photo-box {
	position: relative;
	width: 100%;
	height: 240px;
	overflow: hidden;
}

.instructor-photo-box img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease;
}

.instructor-card-v2:hover .instructor-photo-box img {
	transform: scale(1.05);
}

.instructor-badge {
	position: absolute;
	bottom: 12px;
	left: 12px;
	background: #ef5a24;
	color: #ffffff;
	padding: 4px 12px;
	border-radius: 20px;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
}

.instructor-details {
	padding: 20px 24px;
}

.instructor-details h4 {
	font-size: 18px;
	font-weight: 800;
	color: #0f172a;
	margin-bottom: 4px;
}

.instructor-details .role {
	font-size: 13px;
	font-weight: 600;
	color: #ef5a24;
	margin-bottom: 10px;
	display: block;
}

.instructor-details p {
	font-size: 13.5px;
	color: #64748b;
	line-height: 1.45;
	margin-bottom: 16px;
}

.instructor-details .btn-book-sm {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 13px;
	font-weight: 700;
	color: #0f172a;
	text-decoration: none;
	transition: color 0.3s ease;
}

.instructor-details .btn-book-sm:hover {
	color: #ef5a24;
}

.meet-instructor{
	grid-template-columns: repeat(3, 1fr);
}

/* About Page Premium Refresh */
.about-premium-intro {
	padding: 86px 0;
	background:
		linear-gradient(115deg, rgba(239, 90, 36, 0.06) 0%, rgba(255, 255, 255, 0) 38%),
		linear-gradient(180deg, #ffffff 0%, #f6f8fb 100%);
}

.about-premium-grid {
	display: grid;
	grid-template-columns: minmax(320px, 0.92fr) minmax(420px, 1.08fr);
	gap: 42px;
	align-items: center;
}

.about-premium-media {
	position: relative;
	min-height: 520px;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 28px 70px rgba(15, 23, 42, 0.16);
}

.about-premium-media::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(15, 23, 42, 0) 42%, rgba(15, 23, 42, 0.72) 100%);
	pointer-events: none;
}

.about-premium-media img {
	width: 100%;
	height: 100%;
	min-height: 520px;
	object-fit: cover;
	display: block;
}

.about-media-note {
	position: absolute;
	left: 24px;
	right: 24px;
	bottom: 24px;
	z-index: 1;
	padding: 18px 20px;
	border-radius: 8px;
	background: rgba(15, 23, 42, 0.9);
	border: 1px solid rgba(255, 255, 255, 0.14);
	color: #ffffff;
	box-shadow: 0 18px 40px rgba(15, 23, 42, 0.24);
}

.about-media-note span {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 8px;
	color: #86efac;
	font-size: 12px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.about-media-note strong {
	display: block;
	color: #ffffff;
	font-size: 18px;
	line-height: 1.35;
}

.about-premium-copy {
	max-width: 720px;
}

.about-premium-eyebrow {
	display: inline-flex;
	align-items: center;
	width: fit-content;
	margin-bottom: 16px;
	padding: 7px 13px;
	border-radius: 999px;
	background: rgba(239, 90, 36, 0.1);
	color: #ef5a24;
	font-size: 12px;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.about-premium-copy h2,
.about-pathway-card h2,
.about-promise-section .section-title-center h2 {
	color: #0f172a;
	font-size: 40px;
	font-weight: 900;
	line-height: 1.12;
	margin-bottom: 18px;
	letter-spacing: 0;
}

.about-premium-copy p,
.about-promise-section .section-title-center p,
.about-pathway-card > div > p {
	color: #64748b;
	font-size: 16px;
	line-height: 1.72;
	margin-bottom: 16px;
}

.about-proof-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
	margin: 28px 0 30px;
}

.about-proof-grid div {
	padding: 18px;
	border-radius: 8px;
	background: #ffffff;
	border: 1px solid #e5e7eb;
	box-shadow: 0 14px 34px rgba(15, 23, 42, 0.06);
}

.about-proof-grid strong {
	display: block;
	color: #0f172a;
	font-size: 22px;
	font-weight: 900;
	line-height: 1.1;
	margin-bottom: 6px;
}

.about-proof-grid span {
	display: block;
	color: #64748b;
	font-size: 13px;
	font-weight: 700;
	line-height: 1.35;
}

.about-premium-actions {
	display: flex;
	align-items: center;
	gap: 12px;
	flex-wrap: wrap;
}

.btn-about-ghost {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 15px 24px;
	border-radius: 8px;
	background: #ffffff;
	border: 1px solid #dbe3ef;
	color: #0f172a;
	font-size: 15px;
	font-weight: 800;
	text-decoration: none;
	transition: all 0.25s ease;
}

.btn-about-ghost:hover {
	color: #ef5a24;
	border-color: rgba(239, 90, 36, 0.4);
	box-shadow: 0 12px 26px rgba(15, 23, 42, 0.08);
	transform: translateY(-2px);
}

.about-promise-section {
	padding: 82px 0;
	background: #ffffff;
}

.about-promise-section .section-title-center {
	max-width: 720px;
	margin: 0 auto 34px;
	text-align: center;
}

.about-promise-section .section-title-center .about-premium-eyebrow {
	margin-left: auto;
	margin-right: auto;
}

.about-promise-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 18px;
}

.about-promise-card {
	position: relative;
	min-height: 245px;
	padding: 26px 24px;
	border-radius: 8px;
	background: #ffffff;
	border: 1px solid #e5e7eb;
	box-shadow: 0 16px 34px rgba(15, 23, 42, 0.06);
	transition: all 0.25s ease;
	overflow: hidden;
}

.about-promise-card::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 3px;
	background: linear-gradient(90deg, #ef5a24 0%, #17843a 100%);
}

.about-promise-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 22px 46px rgba(15, 23, 42, 0.1);
	border-color: rgba(239, 90, 36, 0.28);
}

.about-promise-card i {
	width: 48px;
	height: 48px;
	margin-bottom: 20px;
	border-radius: 8px;
	background: linear-gradient(135deg, #ef5a24 0%, #17843a 100%);
	color: #ffffff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	box-shadow: 0 12px 24px rgba(239, 90, 36, 0.18);
}

.about-promise-card h4 {
	color: #0f172a;
	font-size: 18px;
	font-weight: 900;
	line-height: 1.25;
	margin-bottom: 10px;
}

.about-promise-card p {
	color: #64748b;
	font-size: 14px;
	line-height: 1.62;
	margin: 0;
}

.about-pathway-section {
	padding: 88px 0;
	background:
		linear-gradient(120deg, rgba(239, 90, 36, 0.14) 0%, rgba(239, 90, 36, 0) 34%),
		linear-gradient(135deg, #07111f 0%, #111827 100%);
}

.about-pathway-card {
	display: grid;
	grid-template-columns: minmax(280px, 0.82fr) minmax(480px, 1.18fr);
	gap: 40px;
	align-items: start;
	padding: 42px;
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.055);
	border: 1px solid rgba(255, 255, 255, 0.12);
	box-shadow: 0 26px 70px rgba(0, 0, 0, 0.22);
}

.about-pathway-card h2 {
	color: #ffffff;
}

.about-pathway-card > div > p {
	color: #cbd5e1;
	margin-bottom: 0;
}

.about-pathway-list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
}

.about-pathway-list div {
	position: relative;
	padding: 22px 22px 20px;
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.94);
	border: 1px solid rgba(255, 255, 255, 0.22);
}

.about-pathway-list span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	margin-bottom: 16px;
	border-radius: 8px;
	background: #0f172a;
	color: #ff7d47;
	font-size: 12px;
	font-weight: 900;
}

.about-pathway-list strong {
	display: block;
	color: #0f172a;
	font-size: 17px;
	font-weight: 900;
	line-height: 1.3;
	margin-bottom: 8px;
}

.about-pathway-list p {
	color: #64748b;
	font-size: 13.5px;
	line-height: 1.55;
	margin: 0;
}

.about-cta-card {
	border-radius: 8px;
	background:
		linear-gradient(110deg, rgba(239, 90, 36, 0.18) 0%, rgba(239, 90, 36, 0) 36%),
		linear-gradient(135deg, #0f172a 0%, #17233a 100%);
}

.btn-cta-primary,
.btn-cta-secondary {
	border-radius: 8px;
}

@media (max-width: 1100px) {
	.about-premium-grid,
	.about-pathway-card {
		grid-template-columns: 1fr;
	}

	.about-promise-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 720px) {
	.about-premium-intro,
	.about-promise-section,
	.about-pathway-section {
		padding: 58px 0;
	}

	.about-premium-copy h2,
	.about-pathway-card h2,
	.about-promise-section .section-title-center h2 {
		font-size: 30px;
	}

	.about-premium-media,
	.about-premium-media img {
		min-height: 390px;
	}

	.about-media-note {
		left: 14px;
		right: 14px;
		bottom: 14px;
	}

	.about-proof-grid,
	.about-promise-grid,
	.about-pathway-list {
		grid-template-columns: 1fr;
	}

	.about-pathway-card {
		padding: 24px;
	}

	.about-premium-actions .btn-cta-primary,
	.about-premium-actions .btn-about-ghost {
		width: 100%;
		justify-content: center;
	}
}

/* Final public comfort override: keep large empty areas softer than pure white. */
body,
.boxed_wrapper,
.contact-cards-section,
.contact-form-section,
.contact-faq-section,
.pricing-section-v2,
.location-section-v2,
.test-centers-section,
.about-premium-intro,
.about-promise-section,
.about-pathway-section {
	background-color: #e6edf4;
}

/* Emergency production override: keep the TikTok image from expanding the top bar. */
.main-header .header-top .top-inner .share-box,
.main-header .header-top .top-inner .share-box li {
	display: flex;
	align-items: center;
}

.main-header .header-top .top-inner .share-box li a.social-tiktok {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	flex: 0 0 34px !important;
	width: 34px !important;
	height: 34px !important;
	min-width: 34px !important;
	max-width: 34px !important;
	min-height: 34px !important;
	max-height: 34px !important;
	overflow: hidden !important;
	line-height: 1 !important;
}

.main-header .header-top .top-inner .share-box li a.social-tiktok img.top-social-image {
	display: block !important;
	flex: 0 0 21px !important;
	width: 21px !important;
	height: 21px !important;
	min-width: 21px !important;
	max-width: 21px !important;
	min-height: 21px !important;
	max-height: 21px !important;
	object-fit: contain !important;
}

@media (min-width: 992px) {
	.main-header .header-top {
		min-height: 58px !important;
		max-height: 80px !important;
		overflow: hidden !important;
	}
}

@media (max-width: 767px) {
	.scroll-to-top {
		display: none !important;
	}
}

/* Mobile public menu refresh */
.mobile-menu .menu-backdrop {
	background: rgba(15, 23, 42, 0.32);
}

.mobile-menu-visible .mobile-menu .menu-backdrop {
	opacity: 1;
}

.mobile-menu-visible .mobile-menu,
.mobile-menu-visible .mobile-menu .menu-box {
	opacity: 1 !important;
}

.mobile-menu .menu-box {
	background: #f8fafc;
	border-left: 1px solid #dbe3ee;
	box-shadow: -24px 0 70px rgba(15, 23, 42, 0.22);
}

.mobile-menu .nav-logo {
	padding: 23px 56px 17px 22px;
	background: #ffffff;
	border-bottom: 1px solid #e6ebf2;
}

.mobile-menu .nav-logo img {
	display: block;
	width: 158px;
	max-width: 100%;
	max-height: none;
	height: auto;
}

.mobile-menu .close-btn {
	top: 17px;
	right: 18px;
	width: 34px;
	height: 34px;
	line-height: 34px;
	border-radius: 50%;
	background: #fff1eb;
	border: 1px solid #ffd7c7;
	color: #ef5a24;
}

.mobile-menu .navigation li,
.mobile-menu .navigation li>ul>li:first-child {
	border-top: 1px solid #e8edf4;
}

.mobile-menu .navigation:last-child {
	border-bottom: 1px solid #e8edf4;
}

.mobile-menu .navigation li>a {
	padding: 13px 24px;
	color: #172033;
	font-size: 13px;
	font-weight: 900;
}

.mobile-menu .navigation li.current>a,
.mobile-menu .navigation li>a:hover {
	background: #fff7f2;
	color: #ef5a24;
}

.mobile-menu .navigation li>a:before {
	border-left-color: #ef5a24;
}

.mobile-menu .navigation li.dropdown .dropdown-btn {
	color: #172033;
	background: #eef3f8;
}

.mobile-menu .navigation li.dropdown .dropdown-btn.open {
	color: #ef5a24;
	background: #fff1eb;
}

.mobile-menu .contact-info {
	margin: 28px 22px 18px;
	padding: 22px;
	border: 1px solid #e6ebf2;
	border-radius: 8px;
	background: #ffffff;
	box-shadow: 0 14px 34px rgba(15, 23, 42, 0.07);
}

.mobile-menu .contact-info h4 {
	color: #0f172a;
	font-size: 18px;
}

.mobile-menu .contact-info ul li,
.mobile-menu .contact-info ul li a {
	color: #475467;
	font-size: 13px;
}

.mobile-menu .mobile-menu-actions {
	padding: 18px 22px 0;
}

.mobile-menu .mobile-menu-action {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: 100%;
	min-height: 42px;
	border-radius: 8px;
	color: #ffffff;
	background: linear-gradient(135deg, #ef5a24, #15803d);
	font-size: 13px;
	font-weight: 900;
	text-transform: uppercase;
}

.mobile-menu .fr-install-menu-action {
	margin-bottom: 10px;
	border: 0;
	cursor: pointer;
}

.mobile-menu .fr-install-menu-action[hidden] {
	display: none;
}

.mobile-menu .mobile-menu-install-help {
	margin: -2px 0 12px;
	padding: 10px 12px;
	border: 1px solid #dbe3ee;
	border-radius: 8px;
	color: #475569;
	background: #f8fafc;
	font-size: 12px;
	font-weight: 800;
	line-height: 1.35;
}

.mobile-menu .mobile-menu-install-help[hidden] {
	display: none;
}

.mobile-menu .mobile-menu-action:hover {
	color: #ffffff;
}

.mobile-menu .social-links {
	padding: 0 22px 30px;
}

.mobile-menu .social-links ul {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
}

.mobile-menu .social-links li {
	margin: 0;
}

.mobile-menu .social-links li a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	line-height: 1;
	border: 1px solid transparent;
	border-radius: 10px;
	background: #ffffff;
	color: #172033;
	font-size: 19px;
	box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
	transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.mobile-menu .social-links li a.social-facebook {
	color: #1877f2;
	background: #edf5ff;
	border-color: rgba(24, 119, 242, 0.18);
}

.mobile-menu .social-links li a.social-youtube {
	color: #ff0000;
	background: #fff0f0;
	border-color: rgba(255, 0, 0, 0.16);
}

.mobile-menu .social-links li a.social-tiktok {
	background: #ffffff;
	border-color: #d9e2ee;
}

.mobile-menu .social-links li a.social-instagram {
	color: #ffffff;
	background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 8%, #fd5949 42%, #d6249f 63%, #285aeb 100%);
	border-color: transparent;
}

.mobile-menu .social-links li a img {
	display: block;
	width: 23px;
	height: 23px;
	object-fit: contain;
}

.mobile-menu .social-links li a:hover {
	transform: translateY(-2px);
	box-shadow: 0 14px 30px rgba(15, 23, 42, 0.12);
}

@media only screen and (max-width: 1200px) {
	.header-style-two .outer-box .menu-right {
		display: none !important;
	}

	.main-header .outer-box .menu-area {
		width: auto !important;
	}
}

.fr-mobile-bottom-bar {
	display: none;
}

.mobile-nav-toggler {
	border: 0;
}

.mobile-menu .close-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0;
}

/* ChatGPT/Codex-style typography */
:root {
	--fr-ui-font: "Inter", "OpenAI Sans", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
}

body,
input,
button,
select,
textarea,
p,
a,
label,
small,
strong,
table,
th,
td,
.boxed_wrapper,
.main-menu,
.main-menu .navigation > li > a,
.mobile-menu,
.mobile-menu .navigation li > a,
.theme-btn,
.sec-title,
.sec-title h2,
.banner-carousel .content-box,
.banner-carousel .content-box h1,
.banner-carousel .content-box h2,
.page-title,
.page-title h1,
.footer-style-two,
.footer-style-two h1,
.footer-style-two h2,
.footer-style-two h3,
.footer-style-two h4,
.footer-style-two h5,
.footer-style-two h6,
.fr-mobile-bottom-action {
	font-family: var(--fr-ui-font) !important;
	letter-spacing: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--fr-ui-font) !important;
	letter-spacing: 0;
}

@media only screen and (max-width: 767px) {
	body {
		padding-bottom: calc(56px + env(safe-area-inset-bottom));
	}

	.fr-mobile-bottom-bar {
		position: fixed;
		right: 0;
		bottom: 0;
		left: 0;
		z-index: 999998;
		display: grid;
		grid-template-columns: minmax(0, 1fr);
		justify-items: center;
		gap: 6px;
		padding: 6px 12px calc(6px + env(safe-area-inset-bottom));
		background: rgba(255, 255, 255, .94);
		border-top: 1px solid #dbe3ee;
		box-shadow: 0 -8px 22px rgba(15, 23, 42, .10);
	}

	.mobile-menu-visible .fr-mobile-bottom-bar {
		display: none;
	}

	.fr-mobile-bottom-action {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		gap: 7px;
		width: min(100%, 188px);
		min-height: 36px;
		border-radius: 7px;
		font-size: 10.5px;
		line-height: 1.15;
		font-weight: 900;
		text-align: center;
		text-transform: uppercase;
		box-shadow: 0 8px 16px rgba(15, 23, 42, .10);
	}

	.fr-mobile-bottom-action-primary {
		color: #ffffff;
		background: linear-gradient(135deg, #ef5a24, #15803d);
	}

	.fr-mobile-bottom-action-secondary {
		color: #122033;
		background: #ffffff;
		border: 1px solid #dbe3ee;
	}

	.fr-mobile-bottom-action:hover {
		color: inherit;
	}

	.fr-mobile-bottom-action-primary:hover {
		color: #ffffff;
	}

	.mobile-menu .close-btn {
		top: 13px;
		right: 16px;
		width: 44px;
		height: 44px;
		line-height: 1;
		font-size: 18px;
	}

	.mobile-menu .navigation li>a {
		min-height: 44px;
		display: flex;
		align-items: center;
	}

	.mobile-menu .navigation li.dropdown .dropdown-btn {
		top: 5px;
		right: 10px;
		width: 44px;
		height: 44px;
		line-height: 44px;
	}

	.mobile-menu .mobile-menu-action {
		min-height: 46px;
	}

	.mobile-menu .social-links li a {
		width: 44px;
		height: 44px;
	}
}

/* Prime checkout-inspired theme layer */
:root {
	--fr-checkout-bg: #f3f4f6;
	--fr-checkout-surface: #ffffff;
	--fr-checkout-ink: #111827;
	--fr-checkout-muted: #5f6b7a;
	--fr-checkout-line: #d8dee8;
	--fr-checkout-navy: #243244;
	--fr-checkout-blue: #2563eb;
	--fr-checkout-blue-soft: #eaf4ff;
	--fr-checkout-amber: #f3b23f;
	--fr-checkout-amber-dark: #b76b00;
	--fr-checkout-amber-soft: #fff7df;
}

body,
.boxed_wrapper {
	background: var(--fr-checkout-bg) !important;
	color: var(--fr-checkout-ink);
}

h1,
h2,
h3,
h4,
h5,
h6,
.sec-title h2,
.page-title h1 {
	color: var(--fr-checkout-ink) !important;
}

p,
.sec-title p,
.footer-style-two p {
	color: var(--fr-checkout-muted);
}

a,
.main-menu .navigation > li.current > a,
.main-menu .navigation > li:hover > a,
.service-block-one .inner-box .lower-content .lower-box .link a,
.pricing-block-one .pricing-table .table-header h2 {
	color: var(--fr-checkout-blue);
}

.header-top,
.mobile-menu {
	background: var(--fr-checkout-navy) !important;
}

.header-top .top-inner .single-item h6,
.header-top .top-inner .share-box li h6 {
	color: rgba(255, 255, 255, .86) !important;
}

.header-top .top-inner .single-item .icon,
.header-top .top-inner .share-box li h6 i {
	color: #8ec5ff !important;
}

.header-lower,
.sticky-header,
.main-header .outer-box,
.mobile-menu .menu-box {
	background: var(--fr-checkout-surface) !important;
}

.main-menu .navigation > li > a {
	color: #172033 !important;
	font-size: 13px;
	font-weight: 800;
}

.main-menu .navigation > li.current > a,
.main-menu .navigation > li:hover > a {
	color: var(--fr-checkout-blue) !important;
}

.theme-btn.btn-one,
.footer-head-btn,
.footer-cta-btn,
.fr-mobile-bottom-action-primary,
.mobile-menu .mobile-menu-action {
	color: #172033 !important;
	border: 1px solid #d29b2f !important;
	background: linear-gradient(180deg, #ffd978 0%, var(--fr-checkout-amber) 100%) !important;
	box-shadow: 0 10px 20px rgba(183, 107, 0, .16) !important;
}

.theme-btn.btn-one:before,
.footer-head-btn:before,
.footer-cta-btn:before {
	background: rgba(19, 25, 33, .08) !important;
}

.theme-btn.btn-two,
.fr-mobile-bottom-action-secondary {
	color: #172033 !important;
	border: 1px solid var(--fr-checkout-line) !important;
	background: var(--fr-checkout-surface) !important;
	box-shadow: 0 8px 18px rgba(15, 23, 42, .08) !important;
}

.service-block-one .inner-box,
.pricing-block-one .pricing-table,
.footer-style-two .footer-widget,
.modern-contact-card,
.contact-info-item,
.map-card,
.mobile-menu .navigation li > a {
	border-color: var(--fr-checkout-line) !important;
	background: var(--fr-checkout-surface) !important;
	box-shadow: 0 12px 30px rgba(15, 23, 42, .06) !important;
}

.service-block-one .inner-box .image-box .icon-box,
.footer-trust-row span,
.book-summary-badge,
.mobile-menu .navigation li.current > a:before {
	color: var(--fr-checkout-blue) !important;
	background: var(--fr-checkout-blue-soft) !important;
}

.footer-style-two {
	background: #243244 !important;
}

.footer-style-two h3,
.footer-style-two h4,
.footer-style-two h6,
.footer-style-two a {
	color: #f8fafc;
}

.about-cta-card h2,
.footer-premium-head h3 {
	color: #f8fafc !important;
	-webkit-text-fill-color: #f8fafc !important;
}

.about-cta-card p {
	color: rgba(226, 232, 240, .92) !important;
}

.about-cta-card .btn-cta-primary,
.about-cta-card .btn-cta-secondary,
.footer-premium-head .footer-head-btn {
	-webkit-text-fill-color: currentColor !important;
}

.footer-kicker,
.footer-cta-label {
	color: #8ec5ff !important;
	background: rgba(37, 99, 235, .14) !important;
	border-color: rgba(142, 197, 255, .2) !important;
}

@media only screen and (max-width: 767px) {
	.fr-mobile-bottom-action-primary {
		color: #172033 !important;
		border-color: #e7bc55 !important;
		background: linear-gradient(180deg, #fff1bf 0%, #f7c653 100%) !important;
		box-shadow: 0 8px 16px rgba(183, 107, 0, .12) !important;
	}
}

.scroll-to-top .scroll-bar .bar-inner {
	background: var(--fr-checkout-amber) !important;
}

.contact-hero-v2 h1 {
	color: #f8fafc !important;
}

.contact-hero-v2 h1 span {
	color: #ff7a45 !important;
	-webkit-text-fill-color: #ff7a45 !important;
}

.book-hero h1,
.instructors-hero h1,
.services-hero h1,
.location-hero h1,
.lsp-hero h1 {
	color: #f8fafc !important;
	-webkit-text-fill-color: #f8fafc !important;
}

.book-hero p,
.instructors-hero p,
.services-hero p,
.location-hero p,
.lsp-hero p {
	color: rgba(248, 250, 252, .84) !important;
}

@keyframes frMobileHeroIn {
	from {
		opacity: 0;
		transform: translateY(12px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes frMobileCardIn {
	from {
		opacity: 0;
		transform: translateY(14px) scale(.985);
	}
	to {
		opacity: 1;
		transform: translateY(0) scale(1);
	}
}

@keyframes frCtaSheen {
	from {
		transform: translateX(-140%) skewX(-18deg);
	}
	to {
		transform: translateX(180%) skewX(-18deg);
	}
}

@media (max-width: 767px) and (prefers-reduced-motion: no-preference) {
	.contact-hero-v2 .hero-content,
	.book-hero-content,
	.instructors-hero-content,
	.services-hero-content,
	.location-hero-content,
	.lsp-hero-content,
	.lsp-hero-copy {
		animation: frMobileHeroIn .56s cubic-bezier(.22, .8, .24, 1) both;
	}

	.contact-card-v2,
	.trust-feature-item,
	.faq-card-v2,
	.instructor-card,
	.services-group,
	.service-row,
	.location-card,
	.test-centre-card,
	.pricing-card-v2,
	.book-service-group,
	.book-service-card,
	.book-basket-item,
	.book-payment-option {
		animation: frMobileCardIn .48s cubic-bezier(.22, .8, .24, 1) both;
	}

	.contact-card-v2:nth-child(2),
	.trust-feature-item:nth-child(2),
	.faq-card-v2:nth-child(2),
	.instructor-card:nth-child(2),
	.services-group:nth-child(2),
	.service-row:nth-child(2),
	.location-card:nth-child(2),
	.pricing-card-v2:nth-child(2) {
		animation-delay: .04s;
	}

	.contact-card-v2:nth-child(3),
	.trust-feature-item:nth-child(3),
	.faq-card-v2:nth-child(3),
	.instructor-card:nth-child(3),
	.services-group:nth-child(3),
	.service-row:nth-child(3),
	.location-card:nth-child(3),
	.pricing-card-v2:nth-child(3) {
		animation-delay: .08s;
	}

	.theme-btn.btn-one,
	.fr-mobile-bottom-action-primary,
	.mobile-menu .mobile-menu-action,
	.book-button,
	.book-cart-button,
	.location-button,
	.services-button,
	.btn-add-cart-v2,
	.lsp-btn.primary,
	.btn-submit-v2 {
		position: relative;
		overflow: hidden;
	}

	.theme-btn.btn-one::after,
	.fr-mobile-bottom-action-primary::after,
	.mobile-menu .mobile-menu-action::after,
	.book-button::after,
	.book-cart-button::after,
	.location-button::after,
	.services-button::after,
	.btn-add-cart-v2::after,
	.lsp-btn.primary::after,
	.btn-submit-v2::after {
		content: "";
		position: absolute;
		inset: -45% auto -45% 0;
		width: 42%;
		background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .45), transparent);
		pointer-events: none;
		animation: frCtaSheen 3.8s ease-in-out infinite;
	}
}

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		animation-duration: .001ms !important;
		animation-iteration-count: 1 !important;
		scroll-behavior: auto !important;
		transition-duration: .001ms !important;
	}
}

/* Compact mobile contact page */
.contact-faq-more {
	display: none;
}

@media (max-width: 767px) {
	.contact-hero-v2 {
		padding: 22px 0 18px !important;
	}

	.contact-hero-v2::before,
	.contact-hero-v2::after {
		opacity: .28;
	}

	.contact-hero-v2 .hero-content {
		padding: 0 8px;
	}

	.hero-pill-badge {
		margin-bottom: 9px !important;
		padding: 5px 10px !important;
		border-radius: 999px !important;
		font-size: 9px !important;
		line-height: 1.1 !important;
	}

	.contact-hero-v2 h1 {
		max-width: 285px;
		margin: 0 auto 8px !important;
		font-size: 24px !important;
		line-height: 1.08 !important;
	}

	.contact-hero-v2 p {
		max-width: 295px;
		margin: 0 auto !important;
		font-size: 11px !important;
		line-height: 1.35 !important;
	}

	.contact-cards-section {
		margin-top: 0 !important;
		padding: 10px 0 12px !important;
	}

	.quick-contact-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
		gap: 8px !important;
	}

	.contact-card-v2 {
		align-items: flex-start !important;
		min-height: 96px;
		padding: 10px !important;
		border-radius: 8px !important;
		text-align: left !important;
		box-shadow: 0 8px 18px rgba(15, 23, 42, .05) !important;
	}

	.contact-card-v2::before {
		height: 2px;
		opacity: 1;
	}

	.card-icon-v2 {
		width: 30px !important;
		height: 30px !important;
		margin-bottom: 7px !important;
		border-radius: 8px !important;
		font-size: 13px !important;
	}

	.contact-card-v2 h4,
	.contact-card-v2 .contact-hours-title {
		margin-bottom: 4px !important;
		font-size: 12px !important;
		line-height: 1.15 !important;
	}

	.contact-card-v2 .contact-hours-title span {
		white-space: normal !important;
	}

	.contact-card-v2 p {
		margin-bottom: 6px !important;
		font-size: 10px !important;
		line-height: 1.25 !important;
	}

	.contact-card-v2 .card-action-link {
		display: inline-flex !important;
		align-items: center;
		justify-content: center;
		width: 100%;
		min-height: 44px;
		padding: 0 10px;
		border: 1px solid rgba(239, 90, 36, .16);
		border-radius: 8px;
		background: #fff7ed;
		margin-top: auto;
		font-size: 10.5px !important;
		line-height: 1.1 !important;
	}

	.contact-main-section {
		padding: 0 0 22px !important;
	}

	.contact-split-grid {
		gap: 10px !important;
	}

	.modern-contact-card {
		order: 1;
		padding: 14px !important;
		border-radius: 8px !important;
	}

	.modern-contact-card .form-title-box {
		margin-bottom: 12px !important;
	}

	.modern-contact-card .form-title-box h3 {
		margin-bottom: 4px !important;
		font-size: 21px !important;
		line-height: 1.15 !important;
	}

	.modern-contact-card .form-title-box p,
	.trust-note-v2 {
		font-size: 10.5px !important;
		line-height: 1.35 !important;
	}

	.topic-selection-group {
		margin-bottom: 12px !important;
	}

	.topic-selection-group label {
		margin-bottom: 7px !important;
		font-size: 9.5px !important;
		letter-spacing: 0 !important;
	}

	.chips-flex {
		display: grid !important;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 7px !important;
	}

	.chip-radio label {
		justify-content: center;
		width: 100%;
		min-height: 34px;
		padding: 7px 8px !important;
		border-radius: 999px !important;
		font-size: 10px !important;
		line-height: 1.1 !important;
	}

	.form-grid-v2 {
		gap: 10px !important;
	}

	.form-group-v2 {
		gap: 4px !important;
	}

	.form-group-v2 label {
		font-size: 10.5px !important;
	}

	.input-icon {
		left: 12px !important;
		font-size: 12px !important;
	}

	.input-with-icon input,
	.input-with-icon select,
	.input-with-icon textarea,
	.input-with-icon.service-select-wrap select {
		min-height: 42px !important;
		padding: 10px 12px 10px 36px !important;
		border-radius: 8px !important;
		font-size: 11.5px !important;
		box-shadow: none !important;
	}

	.input-with-icon select {
		padding-right: 34px !important;
		background-position: right 12px center !important;
	}

	.input-with-icon textarea {
		height: 76px !important;
		min-height: 76px !important;
	}

	.submit-btn-wrapper {
		margin-top: 8px !important;
	}

	.btn-submit-v2 {
		min-height: 42px !important;
		padding: 11px 14px !important;
		border-radius: 8px !important;
		font-size: 12px !important;
		box-shadow: 0 8px 16px rgba(183, 107, 0, .15) !important;
	}

	.contact-info-hub {
		order: 2;
		gap: 8px !important;
	}

	.info-hub-header,
	.map-preview-card {
		display: none !important;
	}

	.trust-features-list {
		gap: 7px !important;
	}

	.trust-feature-item {
		gap: 8px !important;
		padding: 9px 10px !important;
		border-radius: 8px !important;
	}

	.trust-feature-icon {
		width: 28px !important;
		height: 28px !important;
		border-radius: 8px !important;
		font-size: 12px !important;
	}

	.trust-feature-content h5 {
		margin-bottom: 0 !important;
		font-size: 11.5px !important;
		line-height: 1.25 !important;
	}

	.trust-feature-content p {
		display: none !important;
	}

	.booking-guidance-box {
		padding: 12px !important;
		border-radius: 8px !important;
		box-shadow: 0 8px 18px rgba(15, 23, 42, .05) !important;
	}

	.booking-guidance-box h4 {
		margin-bottom: 5px !important;
		font-size: 13px !important;
	}

	.booking-guidance-box p {
		display: none !important;
	}

	.booking-guidance-list {
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
		gap: 6px !important;
	}

	.booking-guidance-list span {
		min-height: 30px !important;
		padding: 6px 7px !important;
		border-radius: 7px !important;
		font-size: 9px !important;
		line-height: 1.15 !important;
	}

	.contact-faq-section {
		padding: 26px 0 30px !important;
	}

	.contact-page-faq .section-title-center {
		margin-bottom: 14px !important;
	}

	.contact-page-faq .section-title-center h2 {
		font-size: 22px !important;
		line-height: 1.1 !important;
	}

	.contact-page-faq .section-title-center p {
		font-size: 10.5px !important;
		line-height: 1.35 !important;
	}

	.contact-page-faq .faq-grid-v2 {
		gap: 7px !important;
	}

	.contact-page-faq .faq-card-v2:nth-of-type(n+7) {
		display: none !important;
	}

	.faq-card-v2 summary {
		min-height: 44px;
		padding: 11px 12px !important;
		gap: 10px !important;
	}

	.faq-card-v2 summary span {
		gap: 8px !important;
		font-size: 11.5px !important;
		line-height: 1.25 !important;
	}

	.faq-card-v2 summary span i {
		font-size: 12px !important;
	}

	.faq-card-v2 p {
		padding: 10px 12px 12px 32px !important;
		font-size: 10.5px !important;
		line-height: 1.45 !important;
	}

	.contact-faq-more {
		display: flex;
		justify-content: center;
		margin-top: 12px;
	}

	.contact-faq-more a {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		gap: 7px;
		min-height: 40px;
		padding: 10px 14px;
		border: 1px solid var(--fr-checkout-line);
		border-radius: 8px;
		background: #ffffff;
		color: #172033;
		font-size: 11px;
		font-weight: 900;
		text-transform: uppercase;
		box-shadow: 0 8px 18px rgba(15, 23, 42, .08);
	}

	.footer-style-two .footer-top {
		padding: 20px 0 14px !important;
	}

	.footer-premium-head,
	.footer-style-two .links-widget,
	.footer-style-two .newsletter-widget {
		display: none !important;
	}

	.footer-style-two .footer-column {
		margin-bottom: 8px !important;
	}

	.footer-style-two .footer-widget {
		height: auto !important;
		padding: 12px !important;
		border: 1px solid var(--fr-checkout-line) !important;
		border-radius: 8px !important;
		background: #ffffff !important;
		box-shadow: 0 8px 18px rgba(15, 23, 42, .06) !important;
	}

	.footer-style-two .footer-widget h4,
	.footer-style-two .footer-widget h6,
	.footer-style-two .footer-widget a,
	.footer-style-two .footer-widget p {
		color: #172033 !important;
	}

	.footer-style-two .logo-widget .footer-logo {
		min-width: 116px !important;
		max-width: 136px !important;
		padding: 7px 9px !important;
		margin-bottom: 8px !important;
		box-shadow: 0 8px 18px rgba(15, 23, 42, .08) !important;
	}

	.footer-style-two .footer-logo img {
		max-width: 118px !important;
		max-height: 48px !important;
	}

	.footer-style-two .logo-widget p {
		margin-bottom: 8px !important;
		font-size: 10.5px !important;
		line-height: 1.4 !important;
	}

	.footer-trust-row {
		margin: 8px 0 !important;
		gap: 6px !important;
	}

	.footer-trust-row span {
		padding: 5px 7px !important;
		border-color: #dbeafe !important;
		font-size: 9px !important;
		line-height: 1.1 !important;
	}

	.footer-style-two .social-links-list {
		gap: 7px !important;
		margin-top: 8px !important;
	}

	.footer-style-two .social-links-list a {
		width: 32px !important;
		height: 32px !important;
		border-radius: 8px !important;
		color: #172033 !important;
		background: #f3f6fa !important;
	}

	.footer-style-two .contact-widget .widget-title {
		margin-bottom: 8px !important;
	}

	.footer-style-two .footer-top .widget-title h4 {
		font-size: 13px !important;
	}

	.footer-style-two .footer-top .widget-title:before {
		display: none !important;
	}

	.footer-style-two .contact-widget .contact-info-item {
		gap: 9px !important;
		padding: 8px !important;
		margin-bottom: 6px !important;
		border-radius: 7px !important;
		background: #f8fafc !important;
	}

	.footer-style-two .contact-widget .contact-info-item .icon-box {
		width: 30px !important;
		height: 30px !important;
		border-radius: 7px !important;
		font-size: 12px !important;
		box-shadow: none !important;
	}

	.footer-style-two .contact-widget .contact-info-item .details h6 {
		margin-bottom: 2px !important;
		font-size: 9.5px !important;
	}

	.footer-style-two .contact-widget .contact-info-item .details p,
	.footer-style-two .contact-widget .contact-info-item .details a {
		font-size: 10.5px !important;
		line-height: 1.25 !important;
	}

	.footer-style-two .contact-widget .contact-info-item .details a {
		display: inline-flex !important;
		align-items: center;
		min-height: 32px;
	}

	.footer-style-two .footer-bottom {
		padding: 10px 0 !important;
		background: #ffffff !important;
		border-top: 1px solid var(--fr-checkout-line) !important;
	}

	.footer-style-two .footer-bottom .bottom-inner,
	.footer-style-two .footer-bottom .copyright,
	.footer-style-two .footer-bottom .footer-nav {
		float: none !important;
		text-align: center !important;
	}

	.footer-style-two .footer-bottom .copyright p,
	.footer-style-two .footer-bottom .footer-nav li a {
		color: #5f6b7a !important;
		font-size: 10px !important;
		line-height: 1.35 !important;
	}

	.footer-style-two .footer-bottom .copyright p a,
	.footer-style-two .footer-bottom .footer-nav li a {
		display: inline-flex !important;
		align-items: center;
		min-height: 32px;
	}

	.footer-style-two .footer-bottom .footer-nav {
		display: flex !important;
		flex-wrap: wrap;
		justify-content: center;
		gap: 4px 12px;
		margin-top: 4px !important;
	}

	.footer-style-two .footer-bottom .footer-nav li {
		margin: 0 !important;
	}
}

/* Public footer cleanup: one lighter section instead of stacked CTA cards. */
.footer-style-two {
	background: #eef3f8 !important;
	border-top: 1px solid #d8dee8 !important;
	color: #172033 !important;
}

.footer-style-two::before,
.footer-premium-head {
	display: none !important;
}

.footer-style-two .footer-top {
	padding: 34px 0 22px !important;
	background: transparent !important;
}

.footer-style-two .footer-column {
	margin-bottom: 0 !important;
}

.footer-style-two .footer-widget {
	height: auto !important;
	padding: 0 !important;
	border: 0 !important;
	background: transparent !important;
	box-shadow: none !important;
}

.footer-style-two .logo-widget .footer-logo {
	min-width: 0 !important;
	max-width: 170px !important;
	padding: 8px 10px !important;
	margin-bottom: 10px !important;
	border: 1px solid #d8dee8 !important;
	border-radius: 8px !important;
	background: #ffffff !important;
	box-shadow: none !important;
}

.footer-style-two .footer-logo img {
	max-width: 142px !important;
	max-height: 54px !important;
}

.footer-style-two h3,
.footer-style-two h4,
.footer-style-two h5,
.footer-style-two h6,
.footer-style-two a,
.footer-style-two .footer-top .widget-title h4,
.footer-style-two .newsletter-widget h3,
.footer-style-two .contact-widget .contact-info-item .details h6 {
	color: #172033 !important;
	-webkit-text-fill-color: #172033 !important;
}

.footer-style-two p,
.footer-style-two .logo-widget p,
.footer-style-two .newsletter-widget p,
.footer-style-two .contact-widget .contact-info-item .details p,
.footer-style-two .contact-widget .contact-info-item .details a,
.footer-style-two .links-widget .links-list li a {
	color: #5f6b7a !important;
	-webkit-text-fill-color: #5f6b7a !important;
}

.footer-style-two .logo-widget p {
	margin-bottom: 10px !important;
	font-size: 13px !important;
	line-height: 1.55 !important;
}

.footer-style-two .footer-top .widget-title {
	margin-bottom: 16px !important;
}

.footer-style-two .footer-top .widget-title:before {
	width: 34px !important;
	height: 2px !important;
	background: #ef5a24 !important;
}

.footer-style-two .links-widget .links-list li {
	margin-bottom: 6px !important;
}

.footer-style-two .links-widget .links-list li a {
	padding: 6px 0 6px 14px !important;
	border-radius: 0 !important;
	background: transparent !important;
	box-shadow: none !important;
}

.footer-style-two .links-widget .links-list li a:before {
	left: 0 !important;
	top: 15px !important;
	background: #10b981 !important;
}

.footer-style-two .contact-widget .contact-info-item {
	gap: 10px !important;
	padding: 10px !important;
	margin-bottom: 8px !important;
	border: 1px solid #d8dee8 !important;
	border-radius: 8px !important;
	background: #ffffff !important;
	box-shadow: none !important;
}

.footer-style-two .contact-widget .contact-info-item .icon-box {
	width: 34px !important;
	height: 34px !important;
	border-radius: 8px !important;
	background: #e8f6ee !important;
	color: #11843b !important;
	box-shadow: none !important;
}

.footer-trust-row span {
	padding: 6px 9px !important;
	color: #11843b !important;
	border-color: #c9efd7 !important;
	background: #e8f6ee !important;
	font-size: 11px !important;
}

.footer-style-two .social-links-list a {
	width: 34px !important;
	height: 34px !important;
	color: #172033 !important;
	border: 1px solid #d8dee8 !important;
	background: #ffffff !important;
	box-shadow: none !important;
}

.footer-style-two .newsletter-widget .widget-content {
	padding: 15px !important;
	border: 1px solid #d8dee8 !important;
	border-radius: 8px !important;
	background: #ffffff !important;
	box-shadow: none !important;
}

.footer-cta-label {
	color: #b76b00 !important;
	border-color: #f1d28a !important;
	background: #fff7df !important;
}

.footer-cta-btn {
	width: auto !important;
	min-height: 40px !important;
	padding: 10px 14px !important;
}

.footer-style-two .footer-bottom {
	padding: 11px 0 !important;
	background: #e3ebf3 !important;
	border-top: 1px solid #d8dee8 !important;
}

.footer-style-two .footer-bottom .copyright p,
.footer-style-two .footer-bottom .footer-nav li a {
	color: #5f6b7a !important;
}

.footer-style-two .footer-bottom .copyright p span,
.footer-style-two .footer-bottom .copyright p a {
	color: #cf4212 !important;
	-webkit-text-fill-color: #cf4212 !important;
}

@media only screen and (max-width: 991px) {
	.footer-style-two .footer-column {
		margin-bottom: 24px !important;
	}
}

@media only screen and (max-width: 575px) {
	.footer-style-two .footer-top {
		padding: 24px 0 14px !important;
	}

	.footer-style-two .footer-widget {
		padding: 0 !important;
	}
}
