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

body {
	font-size: 16px;
	color: #74757b;
	line-height: 26px;
	font-weight: 400;
	background: #ffffff;
	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: 0px;
}

.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;
}


a {
	text-decoration: none !important;
	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;
}

::-webkit-input-placeholder {
	color: inherit;
}

::-moz-input-placeholder {
	color: inherit;
}

::-ms-input-placeholder {
	color: inherit;
}

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: #ffffff;
}

.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: 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: #f4244f;
	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;
}

.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: #121113;
	padding: 5px 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: 18px;
	font-weight: 400;
}

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

.header-top .top-inner .single-item h6 span {
	font-weight: 500;
	font-family: 'Inter', sans-serif;
	color: #c3c4c8;
	font-size: 13px;
	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-block;
	float: left;
	margin-right: 20px;
}

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

.header-top .top-inner .share-box li h6 {
	position: relative;
	display: block;
	font-size: 12px;
	line-height: 24px;
	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-block;
	font-size: 16px;
	line-height: 24px;
	color: #c3c4c8;
}

.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: 7px 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-box.clearfix {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.main-menu .navigation>li>a {
	position: relative;
	display: block;
	text-align: center;
	font-size: 12px;
	line-height: 30px;
	padding: 25px 0px;
	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: 0px;
	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: #222;
	-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: 50px 25px;
	text-align: left;
	padding-bottom: 100px;
}

.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;
	/* margin-left: 40px; */
	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-repeat: no-repeat;
}

.banner-section .shape .shape-2 {
	position: absolute;
	right: 0px;
	bottom: 0px;
	width: 201px;
	height: 216px;
	background-repeat: no-repeat;
}

.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;
	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: #121113;
}

.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 0px 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;
}

.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-69.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: 60px 0px 100px 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;
}

.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;
}

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

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

.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: #121113;
}

.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: 111px 0px 120px 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: 100px;
}

.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: #fee100;
	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: #121113;
	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: #121113;
	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: absolute;
	left: 0px;
	top: 0px;
}

.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: 40px;
}

.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: #3d3d3d;
}

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

.header-style-two .header-top .top-right .single-item h6 a:hover {}

.header-style-two .header-top .top-inner .share-box li h6 i {}

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

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

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

.header-style-two .header-top {
	/* padding: 27px 100px; */
	padding: 10px 100px;

}

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

.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: 2.5px 0px; */
	padding: 10px 0px;
	margin: auto;

}

.header-style-two .main-menu .navigation>li>a {
	/* padding-top: 35px; */
	/* padding-bottom: 35px; */
	padding-top: 20px;
	padding-bottom: 20px;

}

.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: 50px  0px 50px  0px;
}

.banner-style-two .content-box {
	position: relative;
	max-width: 600px;
	/* margin: 0 auto; */
	padding: 20px;
	z-index: 2;
	/* keep it above background */
	color: white;
	/* if background is dark */
}

.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 {
  position: relative;
  height: 600px; /* ✅ Set your desired banner height */
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .banner-style-two .banner-carousel .slide-item {
    height: 400px;
  }
}

@media screen and (max-width: 480px) {
  .banner-style-two .banner-carousel .slide-item {
    height: 300px;
  }
}
.banner-style-two .banner-carousel .slide-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner-style-two .banner-carousel .slide-item .image-layer {
	position: absolute;
	left: 0;
	top: 0;
	/* width: calc(50% + 385px); */
	width: 100%;
	height: 100%;
	background-repeat: no-repeat;
	background-position: bottom;
	background-size: cover;
	 z-index: 1;

    filter: blur(0px);
    opacity: 1;

	/* 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, rgb(108, 106, 106)0%, rgba(101, 96, 96, 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 .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: 30px;
}

.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: -163px;
	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: 32px;
}

.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 0px 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);
	margin-top : 2em;
}

.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;
}

.service-details .shape {
    position: absolute;
    left: 100px;
    top: 0px;
    width: 227px;
    height: 263px;
    background-repeat: no-repeat;
}
/** news-style-two **/

.news-style-two {
	position: relative;
	padding: 113px 0px 0px 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: #121113;
}

.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;
}

.home02_v2 .footer-style-two .footer-top {
	background: #121113;
}

.home02_v2 .footer-style-two .footer-bottom {
	background: #070707;
}



/*** 

====================================================================
												About-Page
====================================================================

***/


/** page-title **/

.page-title {
	position: relative;
	display: block;
	padding: 143px 0px 25px 0px;
}

.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.15;
}

.page-title .content-box h1 {
	position: relative;
	display: block;
	font-size: 60px;
	line-height: 70px;
	color: #fff;
	font-weight: 600;
	margin-bottom: 112px;
	text-align: center;
}

.page-title .content-box .bread-crumb li {
	position: relative;
	display: inline-block;
	float: left;
	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-32.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: 50%;
	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;
}
@media all  and (max-width: 768px) {
	.main-box {
		
    display: flex !important
;
align-items: center !important;
	}
}