/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
>>> TABLE OF CONTENTS:
# Common
# Animations
# Main Menu
# Banner
# Service
# Call to Action
# Main Footer
# Contact
# Blog
	## Blog Details
# Page Header
# Sidemenu
# Sidebar
# FAQ
# Brand
# Testimonials
# App Screens
# Pricing
# Funfact
# Video
# Team
# Gallery
# error 404
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Common
--------------------------------------------------------------*/

.block-title {
	margin-bottom: 60px;
}

.block-title__bubbles {
	position: relative;
	display: block;
	width: 19px;
	height: 27px;
	padding-bottom: 8px;
	margin-bottom: 15px;
	display: none;
}

.text-center .block-title__bubbles {
	margin-left: auto;
	margin-right: auto;
}

.block-title__bubbles::after,
.block-title__bubbles::before {
	content: "";
	width: 19px;
	height: 19px;
	border-radius: 50%;
	background-color: #30283d;
	opacity: 0.05;
	display: block;
}

.block-title__bubbles::after {
	position: absolute;
	bottom: 0;
	left: calc(50% - 9.5px);
}

.block-title p {
	margin: 0;
	line-height: 1em;
	color: #a92da5;
	font-weight: 500;
	font-size: 18px;
	margin-bottom: 10px;
}

.block-title h3 {
	margin: 0;
	color: var(--thm-black);
	font-weight: 800;
	font-size: 46px;
}

.block-title h3 span {
	position: relative;
	display: inline-block;
}

.block-title h3 span::before {
	content: "";
	width: 100%;
	height: 3px;
	display: block;
	position: absolute;
	bottom: -3px;
	left: 0;
	background-color: #a92da5;
}

/* color customized */

.block-title.color-2 p {
	color: #ee464b;
}

.block-title.color-2 h3 span::before {
	background-color: #ee464b;
}

.block-title.color-3 p {
	color: #1393cf;
}

.block-title.color-3 h3 span::before {
	background-color: #1393cf;
}

.block-title.color-4 p {
	color: #53b024;
}

.block-title.color-4 h3 span::before {
	background-color: #53b024;
}

.block-title.color-5 p {
	color: #fe9c39;
}

.block-title.color-5 h3 span::before {
	background-color: #fe9c39;
}

.thm-btn {
	display: inline-block;
	vertical-align: middle;
	border: none;
	outline: none;
	background-image: linear-gradient(
		90deg,
		#e41256 0%,
		#ffa337 51%,
		#e41256 100%
	);
	text-align: center;
	background-size: 200% auto;
	border-radius: 5px;
	color: #fff;
	padding: 18px 50px;
	font-size: 18px;
	font-weight: 700;
	-webkit-transition: all 0.4s ease;
	transition: all 0.4s ease;
}

.thm-btn:hover {
	color: #fff;
	background-position: right center;
}

.bootstrap-select .btn-light:not(:disabled):not(.disabled).active,
.bootstrap-select .btn-light:not(:disabled):not(.disabled):active,
.bootstrap-select .show > .btn-light.dropdown-toggle {
	background-color: transparent !important;
	box-shadow: none !important;
	outline: none !important;
}

.bootstrap-select > .dropdown-toggle {
	box-shadow: none !important;
}

.bootstrap-select .dropdown-toggle:focus,
.bootstrap-select > select.mobile-device:focus + .dropdown-toggle {
	outline: none !important;
}

.bootstrap-select .dropdown-menu {
	padding-top: 0;
	padding-bottom: 0;
	margin-top: 0;
	z-index: 991;
	border-radius: 0;
}

.bootstrap-select .dropdown-menu > li + li > a {
	border-top: 1px solid var(--thm-gray);
}

.bootstrap-select .dropdown-menu > li.selected > a {
	background: var(--thm-base);
	color: #fff;
}

.bootstrap-select .dropdown-menu > li > a {
	font-size: 16px;
	font-weight: 500;
	padding: 4px 20px;
	color: var(--thm-black);
	-webkit-transition: all 0.4s ease;
	transition: all 0.4s ease;
}

.bootstrap-select .dropdown-menu > li > a:hover {
	background: var(--thm-base);
	color: #fff;
	cursor: pointer;
}

/* datepicker */

.datepicker.dropdown-menu {
	min-width: 17rem;
}

.datepicker table {
	width: 100%;
}

.post-pagination {
	display: -webkit-box;
	display: flex;
	-webkit-box-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	align-items: center;
	flex-wrap: wrap;
}

.post-pagination span,
.post-pagination a {
	border-radius: 50%;
	background-color: #f4f7ff;
	color: #7c7d8a;
	font-size: 18px;
	font-weight: 500;
	text-align: center;
	padding: 0;
	display: -webkit-box;
	display: flex;
	-webkit-box-align: center;
	align-items: center;
	-webkit-box-pack: center;
	justify-content: center;
	width: 57px;
	height: 57px;
	-webkit-transition: all 0.4s ease;
	transition: all 0.4s ease;
}

@media (max-width: 480px) {
	.post-pagination span,
	.post-pagination a {
		width: 40px;
		height: 40px;
		font-size: 16px;
	}
}

.post-pagination a:hover {
	background-color: var(--thm-black);
	color: #fff;
}

.post-pagination span.current,
.post-pagination a.active {
	background-color: var(--thm-base);
	color: #fff;
	cursor: auto;
}

.post-pagination span + a,
.post-pagination a + span,
.post-pagination span + span,
.post-pagination a + a {
	margin-left: 15px;
}

.scroll-to-top {
	display: inline-block;
	width: 45px;
	height: 45px;
	background: var(--thm-base);
	position: fixed;
	bottom: 40px;
	right: 40px;
	z-index: 99;
	text-align: center;
	-webkit-transition: all 0.4s ease;
	transition: all 0.4s ease;
	display: none;
	border-radius: 50%;
	transition: all 0.4s ease;
}

.scroll-to-top i {
	color: #ffffff;
	font-size: 18px;
	line-height: 45px;
}

.scroll-to-top:hover {
	background-color: var(--thm-black);
}

.scroll-to-top:hover i {
	color: #fff;
}

.thm-base-bg {
	background-color: var(--thm-base);
}

.thm-base-bg-2 {
	background-color: var(--thm-base);
}

.thm-gray-bg {
	background-color: var(--thm-gray);
}

/* Cursor Style */
.cursor {
	position: absolute;
	background-color: #fff;
	width: 6px;
	height: 6px;
	border-radius: 100%;
	z-index: 1;
	-webkit-transition: 0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) opacity,
		0.3s cubic-bezier(0.75, -1.27, 0.3, 2.33) -webkit-transform;
	transition: 0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) opacity,
		0.3s cubic-bezier(0.75, -1.27, 0.3, 2.33) -webkit-transform;
	transition: 0.3s cubic-bezier(0.75, -1.27, 0.3, 2.33) transform,
		0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) opacity;
	transition: 0.3s cubic-bezier(0.75, -1.27, 0.3, 2.33) transform,
		0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) opacity,
		0.3s cubic-bezier(0.75, -1.27, 0.3, 2.33) -webkit-transform;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	pointer-events: none;
	z-index: 10000;
	-webkit-transform: scale(1);
	transform: scale(1);
	visibility: hidden;
}

.cursor {
	visibility: visible;
}

.cursor.active {
	opacity: 0.5;
	-webkit-transform: scale(0);
	transform: scale(0);
}

.cursor.hovered {
	opacity: 0.08;
}

.cursor-follower {
	position: absolute;
	background-color: RGBA(255, 255, 255, 0.3);
	width: 50px;
	height: 50px;
	border-radius: 100%;
	z-index: 1;
	-webkit-transition: 0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) opacity,
		0.6s cubic-bezier(0.75, -1.27, 0.3, 2.33) -webkit-transform;
	transition: 0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) opacity,
		0.6s cubic-bezier(0.75, -1.27, 0.3, 2.33) -webkit-transform;
	transition: 0.6s cubic-bezier(0.75, -1.27, 0.3, 2.33) transform,
		0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) opacity;
	transition: 0.6s cubic-bezier(0.75, -1.27, 0.3, 2.33) transform,
		0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) opacity,
		0.6s cubic-bezier(0.75, -1.27, 0.3, 2.33) -webkit-transform;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	pointer-events: none;
	z-index: 10000;
	visibility: hidden;
}

.cursor-follower {
	visibility: visible;
}

.cursor-follower.active {
	opacity: 0.7;
	-webkit-transform: scale(1);
	transform: scale(1);
}

.cursor-follower.hovered {
	opacity: 0.08;
}

.cursor-follower.close-cursor:before {
	position: absolute;
	content: "";
	height: 25px;
	width: 2px;
	background: #fff;
	left: 48%;
	top: 12px;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
	display: inline-block;
}

.cursor-follower.close-cursor:after {
	position: absolute;
	content: "";
	height: 25px;
	width: 2px;
	background: #fff;
	right: 48%;
	top: 12px;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

/*preloader*/

.preloader {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	z-index: 999;
	background-color: #fff;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: -webkit-box;
	display: flex;
	-webkit-box-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	align-items: center;
}

.lds-ripple {
	display: inline-block;
	position: relative;
	width: 80px;
	height: 80px;
}

.lds-ripple div {
	position: absolute;
	border: 4px solid #e41256;
	opacity: 1;
	border-radius: 50%;
	-webkit-animation: lds-ripple 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
	animation: lds-ripple 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

.lds-ripple div:nth-child(2) {
	-webkit-animation-delay: -0.5s;
	animation-delay: -0.5s;
}

@-webkit-keyframes lds-ripple {
	0% {
		top: 36px;
		left: 36px;
		width: 0;
		height: 0;
		opacity: 1;
	}

	100% {
		top: 0px;
		left: 0px;
		width: 72px;
		height: 72px;
		opacity: 0;
	}
}

@keyframes lds-ripple {
	0% {
		top: 36px;
		left: 36px;
		width: 0;
		height: 0;
		opacity: 1;
	}

	100% {
		top: 0px;
		left: 0px;
		width: 72px;
		height: 72px;
		opacity: 0;
	}
}

.icon-box-wrapper {
	position: relative;
}

.icon-box-with-bubble {
	position: relative;
	overflow: hidden;
}

.icon-box-with-bubble::before,
.icon-box-with-bubble::after {
	content: "";
	width: 100%;
	height: 100%;
	background-color: #fff;
	opacity: 0.1;
	position: absolute;
	top: -35%;
	right: -35%;
	border-radius: 50%;
	transform: scale(0);
	transform-origin: right center;
	transition: transform 500ms ease 0ms;
}

.icon-box-wrapper:hover .icon-box-with-bubble::after,
.icon-box-wrapper:hover .icon-box-with-bubble::before {
	transform: scale(1);
}

.icon-box-with-bubble::after {
	top: -50%;
	right: -50%;
	transition-delay: 200ms;
}

.icon-box-with-bubble i {
	position: relative;
}

/*--------------------------------------------------------------
# Animations
--------------------------------------------------------------*/

@keyframes ImgBounce {
	0% {
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}

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

@keyframes shapeMover {
	0%,
	100% {
		transform: perspective(400px) translateY(0) rotate(0deg) translateZ(0px)
			translateX(0);
	}

	50% {
		transform: perspective(400px) rotate(-15deg) translateZ(20px)
			translateY(20px) translateX(20px);
	}
}

@keyframes bubbleMover {
	0% {
		-webkit-transform: translateY(0px) translateX(0) rotate(0);
		transform: translateY(0px) translateX(0) rotate(0);
	}

	30% {
		-webkit-transform: translateY(30px) translateX(50px) rotate(15deg);
		transform: translateY(30px) translateX(50px) rotate(15deg);
		-webkit-transform-origin: center center;
		transform-origin: center center;
	}

	50% {
		-webkit-transform: translateY(50px) translateX(100px) rotate(45deg);
		transform: translateY(50px) translateX(100px) rotate(45deg);
		-webkit-transform-origin: right bottom;
		transform-origin: right bottom;
	}

	80% {
		-webkit-transform: translateY(30px) translateX(50px) rotate(15deg);
		transform: translateY(30px) translateX(50px) rotate(15deg);
		-webkit-transform-origin: left top;
		transform-origin: left top;
	}

	100% {
		-webkit-transform: translateY(0px) translateX(0) rotate(0);
		transform: translateY(0px) translateX(0) rotate(0);
		-webkit-transform-origin: center center;
		transform-origin: center center;
	}
}

@keyframes banner3Shake {
	0% {
		-webkit-transform: rotate3d(0, 1, 0, 0deg);
		transform: rotate3d(0, 1, 0, 0deg);
	}

	30% {
		-webkit-transform: rotate3d(0, 0, 1, 5deg);
		transform: rotate3d(0, 0, 1, 5deg);
	}

	60% {
		-webkit-transform: rotate3d(1, 0, 0, 0deg);
		transform: rotate3d(1, 0, 0, 0deg);
	}

	80% {
		-webkit-transform: rotate3d(0, 0, 1, 5deg);
		transform: rotate3d(0, 0, 1, 5deg);
	}

	100% {
		-webkit-transform: rotate3d(0, 1, 0, 0deg);
		transform: rotate3d(0, 1, 0, 0deg);
	}
}

/*--------------------------------------------------------------
# Main Menu
--------------------------------------------------------------*/

.main-nav__header-one {
	width: 100%;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	position: absolute;
	top: 0;
	left: 0;
	z-index: 91;
}

.main-nav__header-one .container {
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.main-nav__logo-box h1 {
	color: #fff;
	margin: 0;
	font-size: 30px;
	padding-top: 15px;
	padding-bottom: 15px;
}

.main-nav__logo-box .side-menu__toggler {
	font-size: 20px;
	color: #fff;
	display: none;
}

.main-nav__main-navigation .main-nav__navigation-box {
	margin: 0;
	padding: 0;
	list-style: none;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: -webkit-box;
	display: flex;
	-webkit-box-align: center;
	align-items: center;
}

.main-nav__main-navigation .main-nav__navigation-box,
.main-nav__main-navigation .main-nav__navigation-box ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.main-nav__main-navigation .main-nav__navigation-box > li + li {
	margin-left: 45px;
}

.main-nav__main-navigation .main-nav__navigation-box > li {
	position: relative;
	padding: 38.75px 0px;
}

.main-nav__main-navigation .main-nav__navigation-box > li > a {
	color: #ffffff;
	font-size: 17px;
	font-weight: 600;
	font-family: var(--thm-font);
	position: relative;
	-webkit-transition: all 500ms ease;
	transition: all 500ms ease;
}

.main-nav__main-navigation .main-nav__navigation-box > li > a::before {
	content: "";
	width: 100%;
	height: 1px;
	background-color: #fff;
	position: absolute;
	top: calc(100% + 3px);
	left: 0;
	transform: scale(0, 1);
	transform-origin: right center;
	transition: transform 500ms ease;
}

.main-nav__main-navigation .main-nav__navigation-box > li:hover > a,
.main-nav__main-navigation .main-nav__navigation-box > li.current > a,
.main-nav__main-navigation
	.main-nav__navigation-box
	> li.current-menu-item
	> a {
	color: #fff;
}

.main-nav__main-navigation .main-nav__navigation-box > li:hover > a::before,
.main-nav__main-navigation .main-nav__navigation-box > li.current > a::before,
.main-nav__main-navigation
	.main-nav__navigation-box
	> li.current-menu-item
	> a::before {
	transform: scale(1, 1);
	transform-origin: left center;
}

/* Dropdown menu */

.main-nav__main-navigation .dropdown-btn {
	display: none;
}

.main-nav__main-navigation .main-nav__navigation-box > li ul {
	position: absolute;
	width: 230px;
	background-color: #fff;
	border-top: 2px solid var(--thm-black);
	box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05),
		-2px 0px 5px 1px rgba(0, 0, 0, 0.05);
	-webkit-transform-origin: top;
	transform-origin: top;
	visibility: hidden;
	opacity: 0;
	z-index: 991;
	-webkit-transition: opacity 500ms ease, visibility 500ms ease,
		-webkit-transform 500ms ease;
	transition: opacity 500ms ease, visibility 500ms ease,
		-webkit-transform 500ms ease;
	transition: transform 500ms ease, opacity 500ms ease, visibility 500ms ease;
	transition: transform 500ms ease, opacity 500ms ease, visibility 500ms ease,
		-webkit-transform 500ms ease;
}

.main-nav__main-navigation .main-nav__navigation-box > li ul > li {
	position: relative;
}

.main-nav__main-navigation .main-nav__navigation-box > li ul > li + li {
	border-top: 1px solid rgba(var(--thm-black-rgb), 0.3);
}

.main-nav__main-navigation .main-nav__navigation-box > li ul > li > a {
	display: block;
	color: var(--thm-black);
	font-size: 14px;
	font-family: var(--thm-font);
	word-break: break-all;
	padding-top: 9.5px;
	padding-bottom: 9.5px;
	padding-left: 20px;
	padding-right: 20px;
	-webkit-transition: all 500ms ease;
	transition: all 500ms ease;
}

.main-nav__main-navigation .main-nav__navigation-box > li ul > li:hover > a {
	color: #fff;
	background-color: var(--thm-black);
}

/* Second level menu */

.main-nav__main-navigation .main-nav__navigation-box > li > ul {
	top: 100%;
	left: 0;
	-webkit-transform: translateY(30px);
	transform: translateY(30px);

	visibility: hidden;
	opacity: 0;
}

.main-nav__main-navigation .main-nav__navigation-box > li:hover > ul {
	-webkit-transform: translateY(0);
	transform: translateY(0);
	visibility: visible;
	opacity: 1;
}

/* Third level menu */

.main-nav__main-navigation .main-nav__navigation-box > li > ul > li > ul {
	top: 0;
	left: 100%;
	-webkit-transform: translateX(30px);
	transform: translateX(30px);
	visibility: hidden;
	opacity: 0;
}

.main-nav__main-navigation .main-nav__navigation-box > li > ul > li:hover > ul {
	-webkit-transform: translateX(0px);
	transform: translateX(0px);
	visibility: visible;
	opacity: 1;
}

/* After Third level menu */

.main-nav__main-navigation
	.main-nav__navigation-box
	> li
	> ul
	> li
	> ul
	> li
	ul {
	display: none;
}

.header__btn {
	background-image: none;
	border: 2px solid #fff;
	background-color: #fff;
	color: var(--thm-black);
	padding: 9px 45.25px;
}

.header__btn:hover {
	background-color: var(--thm-black);
	border-color: var(--thm-black);
	color: #fff;
}

.stricked-menu .header__btn:hover {
	background-color: var(--thm-base);
	color: #fff;
}

.stricked-menu {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 999;
	background-color: var(--thm-black);
	box-shadow: 0px 6px 13px 0px rgba(0, 0, 0, 0.06);
	opacity: 0;
	-webkit-transform: translateY(-110%);
	transform: translateY(-110%);
	-webkit-transition: all 0.4s ease;
	transition: all 0.4s ease;
}

.stricked-menu.stricky-fixed {
	opacity: 1;
	-webkit-transform: translateY(0%);
	transform: translateY(0%);
}

.stricked-menu .main-nav__navigation-box > li {
	padding-top: 25px;
	padding-bottom: 25px;
}

/*--------------------------------------------------------------
# Banner
--------------------------------------------------------------*/

.banner-one {
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	position: relative;
}

.banner-one::before {
	content: "";
	width: 100%;
	height: 200px;
	position: absolute;
	bottom: -1px;
	left: 0;
	background-color: #fff;
	clip-path: polygon(71.5% 0, 0% 100%, 100% 100%);
}

@media (max-width: 991px) {
	.banner-one::before {
		height: 80px;
	}
}

.banner-one .container {
	position: relative;
	padding-top: 320px;
	padding-bottom: 275px;
}

.banner-one__moc {
	position: absolute;
	bottom: 45px;
	right: -30px;
	animation: ImgBounce 5s ease-in-out 0s infinite alternate;
}

.banner-one__content h3 {
	margin: 0;
	font-size: 70px;
	text-transform: capitalize;
	line-height: 80px;
	font-weight: 800;
	color: #fff;
	margin-top: 10px;
	margin-bottom: 25px;
}

.banner-one__content p {
	margin: 0;
	font-size: 20px;
	line-height: 36px;
	font-weight: 600;
	color: #ffffff;
}

.banner-one__btn {
	padding: 16px 56px;
	background-image: none;
	border: 2px solid #fff;
	margin-top: 40px;
}

.banner-one__btn:hover {
	background-color: #fff;
	color: var(--thm-black);
}

.banner-one__content .banner-one__tag-line {
	display: flex;
	max-width: 415px;
	background-color: rgba(0, 0, 0, 0.1);
	text-transform: uppercase;
	font-size: 12px;
	font-weight: 700;
	color: #ffffff;
	letter-spacing: 0.2em;
	border-radius: 5px;
	overflow: hidden;
	padding-left: 30px;
	line-height: 40px;
	justify-content: space-between;
	align-items: center;
}

.banner-one__content .banner-one__tag-line a {
	display: flex;
	align-items: center;
	background-color: #feec66;
	color: #23242b;
	padding-left: 30px;
	padding-right: 30px;
	margin-left: 25px;
	transition: all 500ms ease;
}

.banner-one__content .banner-one__tag-line a:hover {
	background-color: var(--thm-black);
	color: #fff;
}

.banner-one .video-popup {
	background-color: #272839;
	width: 120px;
	height: 120px;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	font-size: 30px;
	color: #fff;
	border-radius: 50%;
	transition: all 500ms ease;
	position: absolute;
	bottom: 0;
	left: 112%;
	z-index: 10;
}

.banner-one .video-popup:hover {
	background-color: #feec66;
	color: #23242b;
}

[class*="banner-one__shape-"] {
	position: absolute;
}

.banner-one__shape-moc-1 {
	top: 15%;
	right: -9%;
	-webkit-transform-origin: center bottom;
	transform-origin: center bottom;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-animation-name: bounce;
	animation-name: bounce;
	-webkit-animation-timing-function: ease-out;
	animation-timing-function: ease-out;
	-webkit-animation-duration: 5s;
	animation-duration: 5s;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
}

.banner-one__shape-1 {
	top: 3%;
	left: 0;
}

.banner-one__shape-2 {
	top: 17%;
	left: 7%;
	-webkit-transform-origin: center bottom;
	transform-origin: center bottom;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-animation-name: banner3Shake;
	animation-name: banner3Shake;
	-webkit-animation-timing-function: ease-out;
	animation-timing-function: ease-out;
	-webkit-animation-duration: 5s;
	animation-duration: 5s;
	-webkit-animation-delay: 1s;
	animation-delay: 1s;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
}

.banner-one__shape- {
	bottom: 19%;
	left: 6%;
}

.banner-one__shape-3 {
	top: 19%;
	right: 45%;
	-webkit-animation-name: bubbleMover;
	animation-name: bubbleMover;
	-webkit-animation-timing-function: linear;
	animation-timing-function: linear;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
	animation-duration: 8s;
}

.banner-one__shape-4 {
	bottom: 19%;
	left: 6%;
	-webkit-animation-name: bubbleMover;
	animation-name: bubbleMover;
	-webkit-animation-timing-function: linear;
	animation-timing-function: linear;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
	animation-duration: 10s;
}

.banner-one__shape-5 {
	bottom: 19%;
	right: 6%;
	-webkit-animation-name: shapeMover;
	animation-name: shapeMover;
	-webkit-animation-duration: 9s;
	animation-duration: 9s;
	-webkit-animation-timing-function: linear;
	animation-timing-function: linear;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
	animation-delay: 2s;
}

/* banner two */

.banner-two {
	background-repeat: no-repeat;
	background-size: cover;
	padding-top: 290px;
	padding-bottom: 535px;
	position: relative;
	z-index: 11;
}

.banner-two__content h3 {
	margin: 0;
	font-weight: 800;
	font-size: 70px;
	line-height: 1;
	color: #fff;
	margin-bottom: 35px;
}

.banner-two__tag-line {
	background-color: rgba(0, 0, 0, 0.1);
	text-transform: uppercase;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.2em;
	color: #fff;
	display: flex;
	max-width: 415px;
	justify-content: space-between;
	align-items: center;
	overflow: hidden;
	border-radius: 5px;
	padding-left: 30px;
	margin: 0;
	margin-bottom: 25px;
}

.banner-two__tag-line a {
	padding-left: 30px;
	padding-right: 30px;
	margin-left: 30px;
	background-color: #feec66;
	color: #23242b;
	transition: all 500ms ease;
}

.banner-two__tag-line a:hover {
	color: #feec66;
	background-color: #23242b;
}

.banner-two__shape-image-1 {
	position: absolute;
	top: 15%;
	left: 15%;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-animation-name: globeRotate;
	animation-name: globeRotate;
	-webkit-animation-timing-function: linear;
	animation-timing-function: linear;
	-webkit-animation-duration: 10s;
	animation-duration: 10s;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
}

.banner-two__shape-image-2 {
	position: absolute;
	bottom: 40%;
	left: 40%;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-animation-name: rocketMove;
	animation-name: rocketMove;
	-webkit-animation-timing-function: linear;
	animation-timing-function: linear;
	-webkit-animation-duration: 6s;
	animation-duration: 6s;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
}

@-webkit-keyframes globeRotate {
	8% {
		-webkit-transform: perspective(200px) rotateX(0deg);
		transform: perspective(200px) rotateX(0deg);
	}

	100% {
		-webkit-transform: perspective(200px) rotateX(360deg);
		transform: perspective(200px) rotateX(360deg);
	}
}

@keyframes globeRotate {
	8% {
		-webkit-transform: perspective(200px) rotateX(0deg);
		transform: perspective(200px) rotateX(0deg);
	}

	100% {
		-webkit-transform: perspective(200px) rotateX(360deg);
		transform: perspective(200px) rotateX(360deg);
	}
}

@-webkit-keyframes rocketMove {
	8% {
		-webkit-transform: perspective(600px) translateY(0) translateX(0)
			rotate(0);
		transform: perspective(600px) translateY(0) translateX(0) rotate(0);
		opacity: 1;
	}

	100% {
		-webkit-transform: perspective(600px) translateY(-400px)
			translateX(-300px) rotate(0);
		transform: perspective(600px) translateY(-400px) translateX(-300px)
			rotate(0);
		opacity: 0;
	}
}

@keyframes rocketMove {
	8% {
		-webkit-transform: perspective(600px) translateY(0) translateX(0)
			rotate(0);
		transform: perspective(600px) translateY(0) translateX(0) rotate(0);
		opacity: 1;
	}

	100% {
		-webkit-transform: perspective(600px) translateY(-400px)
			translateX(-300px) rotate(0);
		transform: perspective(600px) translateY(-400px) translateX(-300px)
			rotate(0);
		opacity: 0;
	}
}

[class*="banner-two__rect-"] {
	position: absolute;
	width: 110px;
	height: 20px;
	background-color: #000000;
	opacity: 0.08;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-animation-name: reactangleRotate;
	animation-name: reactangleRotate;
	-webkit-animation-timing-function: linear;
	animation-timing-function: linear;
	-webkit-animation-duration: 5s;
	animation-duration: 5s;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
	-webkit-transform-origin: center center;
	transform-origin: center center;
}

.banner-two__rect-1 {
	background-color: #fff;
}

.banner-two__rect-6,
.banner-two__rect-2 {
	background-color: #fff;
	width: 88px;
}

.banner-two__rect-5,
.banner-two__rect-3 {
	width: 44px;
	height: 10px;
}

.banner-two__rect-5 {
	background-color: #fff;
}

.banner-two__rect-1 {
	top: 25%;
	left: 5%;
}

.banner-two__rect-2 {
	top: 15%;
	left: 40%;
}

.banner-two__rect-3 {
	left: 20%;
	bottom: 40%;
}

.banner-two__rect-4 {
	left: 50%;
	top: 45%;
}

.banner-two__rect-5 {
	top: 10%;
	right: 30%;
}

.banner-two__rect-6 {
	top: 60%;
	right: 10%;
}

@-webkit-keyframes reactangleRotate {
	8%,
	100% {
		-webkit-transform: perspective(110px) rotateX(0deg) scale(1, 1)
			rotateZ(0) translatez(0);
		transform: perspective(110px) rotateX(0deg) scale(1, 1) rotateZ(0)
			translatez(0);
	}

	30%,
	80% {
		-webkit-transform: perspective(110px) rotateX(180deg) scale(1, 1.05)
			rotateZ(180deg) translatez(5px);
		transform: perspective(110px) rotateX(180deg) scale(1, 1.05)
			rotateZ(180deg) translatez(5px);
	}

	60% {
		-webkit-transform: perspective(110px) rotateX(360deg) scale(1, 1.05)
			rotateZ(360deg) translatez(10px);
		transform: perspective(110px) rotateX(360deg) scale(1, 1.05)
			rotateZ(360deg) translatez(10px);
	}
}

@keyframes reactangleRotate {
	8%,
	100% {
		-webkit-transform: perspective(110px) rotateX(0deg) scale(1, 1)
			rotateZ(0) translatez(0);
		transform: perspective(110px) rotateX(0deg) scale(1, 1) rotateZ(0)
			translatez(0);
	}

	30%,
	80% {
		-webkit-transform: perspective(110px) rotateX(180deg) scale(1, 1.05)
			rotateZ(180deg) translatez(5px);
		transform: perspective(110px) rotateX(180deg) scale(1, 1.05)
			rotateZ(180deg) translatez(5px);
	}

	60% {
		-webkit-transform: perspective(110px) rotateX(360deg) scale(1, 1.05)
			rotateZ(360deg) translatez(10px);
		transform: perspective(110px) rotateX(360deg) scale(1, 1.05)
			rotateZ(360deg) translatez(10px);
	}
}

.banner-two__moc {
	position: absolute;
	top: 140px;
	right: 0;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-animation-name: shapeRotate;
	animation-name: shapeRotate;
	-webkit-animation-timing-function: linear;
	animation-timing-function: linear;
	-webkit-animation-duration: 3s;
	animation-duration: 3s;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
	-webkit-transform-origin: center center;
	transform-origin: center center;
}

@-webkit-keyframes shapeRotate {
	0%,
	100% {
		-webkit-transform: translateY(0px);
		transform: translateY(0px);
	}

	20%,
	80% {
		-webkit-transform: translateY(10px);
		transform: translateY(10px);
	}

	60% {
		-webkit-transform: translateY(20px);
		transform: translateY(20px);
	}
}

@keyframes shapeRotate {
	0%,
	100% {
		-webkit-transform: translateY(0px);
		transform: translateY(0px);
	}

	20%,
	80% {
		-webkit-transform: translateY(10px);
		transform: translateY(10px);
	}

	60% {
		-webkit-transform: translateY(20px);
		transform: translateY(20px);
	}
}

.banner-two__btn {
	border: 2px solid #fff;
	background-image: none;
	padding: 16px 56px;
}

.banner-two__btn:hover {
	background-color: #feec66;
	border-color: #feec66;
	color: #23242b;
}

/*--------------------------------------------------------------
# Service
--------------------------------------------------------------*/

.service-one {
	padding-bottom: 90px;
	padding-top: 80px;
}

@media (min-width: 992px) {
	.service-one {
		padding-top: 0;
	}
}

.service-one__col {
	padding-left: 15px;
	padding-right: 15px;
	flex: 1 1 20%;
	text-align: center;
}

.service-one__single {
	margin-bottom: 30px;
	padding-top: 40px;
	padding-bottom: 40px;
	border-style: solid;
	border-width: 1px;
	border-color: rgb(232, 232, 239);
	background-color: rgb(255, 255, 255);
	box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.04);
	position: relative;
}

.service-one__single::before {
	content: "";
	width: 100%;
	height: 3px;
	background-color: #a92da5;
	position: absolute;
	top: -1px;
	left: 0;
	transform: scale(0, 1);
	transform-origin: left center;
	transition: transform 500ms ease;
}

.service-one__single:hover::before {
	transform: scale(1, 1);
	transform-origin: right center;
}

.service-one__single h3 {
	color: var(--thm-black);
	font-size: 18px;
	font-weight: 600;
	margin: 0;
}

.service-one__icon {
	width: 111px;
	height: 111px;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 15px;
	overflow: hidden;
	position: relative;
	background-color: #a92da5;
	border-radius: 50%;
}

.service-one__icon::before,
.service-one__icon::after {
	content: "";
	width: 100%;
	height: 100%;
	background-color: #fff;
	opacity: 0.1;
	position: absolute;
	top: -35%;
	right: -35%;
	border-radius: 50%;
	transform: scale(0);
	transform-origin: right center;
	transition: transform 500ms ease 0ms;
}

.service-one__single:hover .service-one__icon::after,
.service-one__single:hover .service-one__icon::before {
	transform: scale(1);
}

.service-one__icon::after {
	top: -50%;
	right: -50%;
	transition-delay: 200ms;
}

.service-one__single i {
	width: 111px;
	height: 111px;
	border-radius: 50%;
	font-size: 52px;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	margin-left: auto;
	margin-right: auto;
	background-size: 200% auto;
	transition: all 500ms ease;
	position: relative;
	z-index: 20;
}

.service-one__col:nth-child(1) .service-one__single::before,
.service-one__col:nth-child(1) .service-one__icon {
	background-color: #a92da5;
}

.service-one__col:nth-child(2) .service-one__single::before,
.service-one__col:nth-child(2) .service-one__icon {
	background-color: #1393cf;
}

.service-one__col:nth-child(3) .service-one__single::before,
.service-one__col:nth-child(3) .service-one__icon {
	background-color: #ee464b;
}

.service-one__col:nth-child(4) .service-one__single::before,
.service-one__col:nth-child(4) .service-one__icon {
	background-color: #fe9c39;
}

.service-one__col:nth-child(5) .service-one__single::before,
.service-one__col:nth-child(5) .service-one__icon {
	background-color: #53b024;
}

/* services two */

.service-two {
	position: relative;
	z-index: 10;
}

.service-two__shape-1 {
	position: absolute;
	top: -28%;
	right: 5%;
	-webkit-transform-origin: center bottom;
	transform-origin: center bottom;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-animation-name: bounce;
	animation-name: bounce;
	-webkit-animation-timing-function: ease-out;
	animation-timing-function: ease-out;
	-webkit-animation-duration: 5s;
	animation-duration: 5s;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
}

.service-two__shape-2 {
	position: absolute;
	top: 1%;
	left: 10%;
	-webkit-transform-origin: center bottom;
	transform-origin: center bottom;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-animation-name: banner3Shake;
	animation-name: banner3Shake;
	-webkit-animation-timing-function: ease-out;
	animation-timing-function: ease-out;
	-webkit-animation-duration: 5s;
	animation-duration: 5s;
	-webkit-animation-delay: 1s;
	animation-delay: 1s;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
}

.service-page .service-two__single {
	margin-bottom: 30px;
}

.service-two__single {
	position: relative;
	margin-bottom: 60px;
	padding-top: 60px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	text-align: center;
	background-color: white;
	border: 1px solid #e8e8ef;
	box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.04);
	transition: all 500ms ease;
}

.service-two__single:hover {
	box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.04);
}

.service-two__icon {
	width: 121px;
	height: 121px;
	border-radius: 50%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	text-align: center;
	position: relative;
	background-color: #1393cf;
}

[class*="col-"]:nth-child(2) .service-two__icon {
	background-color: #ee464b;
}

[class*="col-"]:nth-child(3) .service-two__icon {
	background-color: #53b024;
}

[class*="col-"]:nth-child(4) .service-two__icon {
	background-color: #a92da5;
}

[class*="col-"]:nth-child(5) .service-two__icon {
	background-color: #fe9c39;
}

[class*="col-"]:nth-child(6) .service-two__icon {
	background-color: #272839;
}

.service-two__icon i {
	color: #fff;
	font-size: 63px;
	position: relative;
}

.service-two__title {
	margin: 0;
	color: #272839;
	font-size: 20px;
	line-height: 34px;
	letter-spacing: 0em;
	text-align: center;
	margin-top: 20px;
	margin-bottom: 30px;
	font-weight: 700;
}

.service-two__title a {
	color: inherit;
	-webkit-transition: all 0.4s ease;
	transition: all 0.4s ease;
}

.service-two__title a:hover {
	color: #e41256;
}

.service-two__text {
	margin: 0;
	color: #7c7d8a;
	font-size: 18px;
	line-height: 34px;
	font-weight: 500;
	max-width: 243px;
	padding-left: 10px;
	padding-right: 10px;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 45px;
}

.service-two__btn {
	border-top: 1px solid #e8e8ef;
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 0.2em;
	color: #7c7d8a;
	width: 100%;
	font-weight: 600;
	position: relative;
	padding: 17px 0;
	-webkit-transition: all 0.4s ease;
	transition: all 0.4s ease;
}

.service-two__btn:before {
	content: "";
	width: 95px;
	height: 3px;
	background-color: #1393cf;
	position: absolute;
	top: -1px;
	left: 50%;
	-webkit-transform: translateX(-50%) scale(1, 1);
	transform: translateX(-50%) scale(1, 1);
	-webkit-transform-origin: center center;
	transform-origin: center center;
	-webkit-transition: -webkit-transform 0.4s ease;
	transition: -webkit-transform 0.4s ease;
	transition: transform 0.4s ease;
	transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}

.service-two__btn span {
	position: relative;
	z-index: 10;
}

.service-two__btn:hover {
	color: #fff;
}

.service-two__btn:hover:before {
	-webkit-transform: translateX(-50%) scale(0, 1);
	transform: translateX(-50%) scale(0, 1);
}

.service-two__btn::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	transform: scale(1, 0);
	transform-origin: top center;
	background-color: #1393cf;
	transition: transform 500ms ease;
}

.service-two__btn:hover::after {
	transform: scale(1, 1);
}

[class*="col-"]:nth-child(2) .service-two__btn:after,
[class*="col-"]:nth-child(2) .service-two__btn:before {
	background-color: #ee464b;
}

[class*="col-"]:nth-child(3) .service-two__btn:after,
[class*="col-"]:nth-child(3) .service-two__btn:before {
	background-color: #53b024;
}

[class*="col-"]:nth-child(4) .service-two__btn:after,
[class*="col-"]:nth-child(4) .service-two__btn:before {
	background-color: #a92da5;
}

[class*="col-"]:nth-child(5) .service-two__btn:after,
[class*="col-"]:nth-child(5) .service-two__btn:before {
	background-color: #fe9c39;
}

[class*="col-"]:nth-child(6) .service-two__btn:after,
[class*="col-"]:nth-child(6) .service-two__btn:before {
	background-color: #272839;
}

/*--------------------------------------------------------------
# Call to Action
--------------------------------------------------------------*/

.cta-one {
	position: relative;
	background-color: #fff;
	z-index: 10;
	padding-top: 0px;
}

[class*="cta-one__shape-"] {
	position: absolute;
}

.cta-one__shape-1 {
	top: 240px;
	left: 190px;
	-webkit-animation-name: bubbleMover;
	animation-name: bubbleMover;
	-webkit-animation-timing-function: linear;
	animation-timing-function: linear;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
	animation-duration: 12s;
}

.cta-one__shape-2 {
	top: 240px;
	right: 240px;
	-webkit-animation-name: shapeMover;
	animation-name: shapeMover;
	-webkit-animation-duration: 9s;
	animation-duration: 9s;
	-webkit-animation-timing-function: linear;
	animation-timing-function: linear;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
}

[class*="cta-one__circle-"] {
	position: absolute;
	border-radius: 50%;
	background-color: #f4f7ff;
}

.cta-one__circle-1 {
	width: 1170px;
	height: 1170px;
	left: calc(50% - 585px);
	bottom: calc(0% - 585px);
	opacity: 0.4;
}

.cta-one__circle-2 {
	width: 926px;
	height: 926px;
	left: calc(50% - 463px);
	bottom: calc(0% - 463px);
}

.cta-one__circle-3 {
	width: 717px;
	height: 717px;
	left: calc(50% - 358.5px);
	bottom: calc(0% - 358.5px);
	opacity: 0.3;
}

.cta-one .container {
	position: relative;
	padding-top: 90px;
}

.cta-one__image-wrap {
	margin-top: 60px;
	position: relative;
	z-index: 10;
}

.cta-one__content {
	position: relative;
}

.cta-one__content h3 {
	margin: 0;
	color: var(--thm-black);
	font-weight: 800;
	font-size: 46px;
}

.cta-one__content h3 span {
	position: relative;
}

.cta-one__content h3 span::before {
	content: "";
	width: 100%;
	height: 3px;
	background-color: #a82da4;
	position: absolute;
	bottom: -3px;
	left: 0;
	display: block;
}

.cta-one__content p {
	margin: 0;
	color: #7c7d8a;
	font-weight: 500;
	font-size: 24px;
	margin-top: 25px;
}

.cta-one__btn {
	background-image: none;
	background-color: #a82da4;
	margin-top: 55px;
}

.cta-one__btn:hover {
	background-color: var(--thm-black);
	color: #fff;
}

/* cta one style two */

.cta-one__style-two {
	position: relative;
	box-shadow: 0px 10px 90px 0px rgba(0, 0, 0, 0.1);
	background-color: #fd9b39;
	max-width: 1410px;
	margin-left: auto;
	margin-right: auto;
	width: 100%;
}

.cta-one__style-two [class*="cta-one__style-two__shape-"] {
	position: absolute;
}

.cta-one__style-two__shape-1 {
	top: -10px;
	left: 0;
}

.cta-one__style-two__shape-2 {
	top: -100px;
	right: 0;
}

.cta-one__style-two p {
	margin: 0;
	font-size: 18px;
	color: #fff;
	font-weight: 500;
}

.cta-one__style-two h3 {
	margin: 0;
	font-weight: 800;
	color: #fff;
	font-size: 46px;
}

.cta-one__style-two h3 span {
	display: inline-block;
	position: relative;
}

.cta-one__style-two h3 span::before {
	content: "";
	width: 100%;
	height: 3px;
	display: block;
	position: absolute;
	bottom: -3px;
	left: 0;
	background-color: #ffffff;
}

.cta-one__style-two__content {
	padding-top: 60px;
}

.cta-one__style-two .thm-btn {
	background-image: none;
	background-color: #ee464b;
	color: #fff;
	margin-top: 30px;
}

.cta-one__style-two .thm-btn:hover {
	background-color: var(--thm-black);
	color: #fff;
}

.cta-one__style-two .cta-one__image-wrap {
	margin: 0;
}

.cta-one__style-two .cta-one__image-wrap .img-fluid {
	max-width: none;
	float: left;
	position: relative;
	left: 15px;
	margin-top: -55px;
}

.cta-two {
	background-color: var(--thm-gray);
	background-image: url(../images/background/cta-2-bg.jpg);
	padding-top: 120px;
	padding-bottom: 360px;
	position: relative;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	margin-bottom: -240px;
}

.cta-two .container {
	position: relative;
}

[class*="cta-two__shape-"] {
	position: absolute;
}

.cta-two__shape-1 {
	top: -8%;
	left: 7%;
	-webkit-animation-name: bubbleMover;
	animation-name: bubbleMover;
	-webkit-animation-timing-function: linear;
	animation-timing-function: linear;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
	animation-duration: 12s;
}

.cta-two__shape-2 {
	bottom: -751px;
	right: 0;
}

.cta-two__shape-3 {
	top: 5%;
	right: 3%;
	-webkit-animation-name: bubbleMover;
	animation-name: bubbleMover;
	-webkit-animation-timing-function: linear;
	animation-timing-function: linear;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
	animation-duration: 8s;
}

.cta-two__moc {
	position: absolute;
	top: -15px;
	right: -30px;
	animation: ImgBounce 10s ease-in-out 0s infinite alternate;
}

.cta-two__content .block-title {
	margin-bottom: 40px;
}

.cta-two__content {
	max-width: 500px;
}

.cta-two__content > p {
	margin: 0;
	font-size: 24px;
	font-weight: 400;
	line-height: 40px;
	color: #7c7d8a;
	margin-bottom: 40px;
}

.cta-two__list {
	margin-bottom: 40px;
}

.cta-two__list li {
	position: relative;
	padding-left: 25px;
	font-size: 18px;
	color: #7c7d8a;
	line-height: 40px;
	font-weight: 600;
}

.cta-two__list li > i {
	position: absolute;
	top: 50%;
	left: 0%;
	transform: translateY(-50%);
	color: #a92da5;
}

.cta-two__progress {
	width: 100%;
	max-width: 500px;
}

.cta-two__progress + .cta-two__progress {
	margin-top: 20px;
}

.cta-two__progress-top {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 10px;
}

.cta-two__progress-top p {
	margin: 0;
	color: var(--thm-black);
	font-size: 18px;
	font-weight: 700;
}

.cta-two__progress-top span {
	color: #7c7d8a;
	font-size: 16px;
	font-weight: 600;
}

.cta-two__progress-line {
	width: 100%;
	height: 8px;
	border-radius: 4px;
	overflow: hidden;
	position: relative;
	background-color: #fff;
}

.cta-two__progress-line > span {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	background-color: #fe9c39;
	border-radius: 4px;
}

/* cta two layout two */

.cta-two__layout-two {
	position: relative;
}

.cta-two__layout-two .cta-two__layout-two-shape-1 {
	bottom: -0px;
	right: 0;
	position: absolute;
}

.cta-two__layout-two .cta-two__layout-two-shape-2 {
	bottom: 0px;
	right: -10px;
	position: absolute;
	-webkit-transform-origin: center bottom;
	transform-origin: center bottom;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-animation-name: banner3Shake;
	animation-name: banner3Shake;
	-webkit-animation-timing-function: ease-out;
	animation-timing-function: ease-out;
	-webkit-animation-duration: 5s;
	animation-duration: 5s;
	-webkit-animation-delay: 1s;
	animation-delay: 1s;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
}

.cta-two__layout-two-content {
	padding-left: 70px;
}

.cta-two__layout-two__list {
	margin-bottom: 0;
	background-color: #a92da5;
	padding-left: 30px;
	padding-right: 30px;
	padding-top: 19px;
	padding-bottom: 19px;
	margin-top: -10px;
	margin-bottom: 40px;
}

.cta-two__layout-two__list li {
	position: relative;
	font-size: 18px;
	font-weight: 500;
	color: #ffffff;
	padding-left: 35px;
}

.cta-two__layout-two__list li > i {
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	font-size: 18px;
	color: #fff;
}

.circle-two__layout-progress {
	display: flex;
	align-items: center;
}

.circle-two__layout-progress-box {
	position: relative;
	flex-shrink: 0;
}

.circle-two__layout-progress-box span {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	display: block;
	font-size: 20px;
	font-weight: 600;
	color: #7c7d8a;
	line-height: 1;
}

.circle-two__layout-progress-box .circle-progress canvas {
	transform: rotate(90deg);
	display: block;
}

.circle-two__layout-progress-content h3 {
	margin: 0;
	color: #272839;
	font-size: 20px;
	line-height: 30px;
	margin-left: 20px;
	font-weight: bold;
}

.cta-two__layout-summery {
	margin-bottom: 50px;
}

.cta-two__layout-summery p {
	margin: 0;
}

.cta-two__layout-summery p span {
	color: var(--thm-base);
}

.cta-two__layout-two .cta-two__layout-two-moc {
	max-width: none;
	float: right;
	margin-top: 20px;
}

/* style three */

.cta-two__style-three {
	position: relative;
	padding-top: 150px;
}

[class*="cta-two__style-three__shape-"] {
	position: absolute;
}

.cta-two__style-three__shape-1 {
	top: -50px;
	left: 95px;
	display: none;
	-webkit-transform-origin: center bottom;
	transform-origin: center bottom;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-animation-name: banner3Shake;
	animation-name: banner3Shake;
	-webkit-animation-timing-function: ease-out;
	animation-timing-function: ease-out;
	-webkit-animation-duration: 5s;
	animation-duration: 5s;
	-webkit-animation-delay: 1s;
	animation-delay: 1s;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
}

.cta-two__style-three__shape-2 {
	top: 200px;
	right: 75px;
	-webkit-animation-name: bubbleMover;
	animation-name: bubbleMover;
	-webkit-animation-timing-function: linear;
	animation-timing-function: linear;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
	animation-duration: 12s;
}

.cta-two__style-three .container {
	position: relative;
	z-index: 10;
}

.cta-two__style-three__list {
	display: grid;
	grid-column-gap: 25px;
	grid-template-columns: repeat(2, 1fr);
	margin-bottom: 40px;
	max-width: 470px;
	margin-top: 40px;
}

.cta-two__style-three__list li {
	position: relative;
	padding-left: 55px;
	padding-right: 30px;
	color: #272839;
	font-size: 16px;
	font-weight: 600;
	background-color: #fff;
	padding-top: 13.5px;
	padding-bottom: 13.5px;
	box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
}

.cta-two__style-three__list li > i {
	position: absolute;
	top: 50%;
	left: 30px;
	transform: translateY(-50%);
	font-size: 18px;
	color: #1393cf;
}

.cta-two__style-three-summery {
	max-width: 470px;
}

.cta-two__style-three-summery p {
	margin: 0;
	color: #7c7d8a;
	font-size: 18px;
	line-height: 36px;
	font-weight: 500;
}

.cta-two__style-three__box {
	display: flex;
	max-width: 470px;
}

.cta-two__style-three__box-icon {
	width: 87px;
	height: 87px;
	background-color: #53b024;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	border-radius: 50%;
}

.cta-two__style-three__box-icon i {
	font-size: 48px;
	color: #fff;
}

.cta-two__style-three__box-content {
	margin-left: 20px;
}

.cta-two__style-three__box-content h3 {
	margin: 0;
	color: #272839;
	font-size: 20px;
	font-weight: bold;
}

.cta-two__style-three__box-content p {
	font-size: 18px;
	font-weight: 500;
	color: #7c7d8a;
	margin: 0;
	margin-top: 5px;
}

.cta-two__style-three-moc {
	float: right;
}

.cta-three {
	position: relative;
	padding-bottom: 120px;
}

.cta-three .container {
	position: relative;
}

[class*="cta-three__shape-"] {
	position: absolute;
}

.cta-three__shape-1 {
	top: -20%;
	left: -3%;
	z-index: -1;
}

.cta-three__shape-2 {
	top: -8%;
	right: 0;
}

.cta-three__shape-3 {
	bottom: 15%;
	right: 0;
	-webkit-transform-origin: center bottom;
	transform-origin: center bottom;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-animation-name: banner3Shake;
	animation-name: banner3Shake;
	-webkit-animation-timing-function: ease-out;
	animation-timing-function: ease-out;
	-webkit-animation-duration: 5s;
	animation-duration: 5s;
	-webkit-animation-delay: 1s;
	animation-delay: 1s;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
}

.cta-three__moc {
	position: absolute;
	top: -40px;
	left: 55px;
	animation: ImgBounce 10s ease-in-out 0s infinite alternate;
}

.cta-three__content {
	padding-left: 70px;
}

.cta-three__box {
	display: flex;
	position: relative;
}

.cta-three__box + .cta-three__box {
	margin-top: 40px;
}

.cta-three__box::before {
	content: "";
	width: 1px;
	height: 110%;
	background-color: #e8e8ef;
	position: absolute;
	left: 43.5px;
	top: 87px;
}

.cta-three__box:last-child::before {
	display: none;
}

.cta-three__box-icon {
	width: 87px;
	background-color: #a92da5;
	height: 87px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	position: relative;
	top: 5px;
	transition: all 500ms ease;
	flex-shrink: 0;
}

.cta-three__box-icon i {
	font-size: 44px;
	color: #fff;
	position: relative;
}

.cta-three__box:nth-child(1) .cta-three__box-icon {
	background-color: #a92da5;
}

.cta-three__box:nth-child(2) .cta-three__box-icon {
	background-color: #1393cf;
}

.cta-three__box:nth-child(3) .cta-three__box-icon {
	background-color: #53b024;
}

.cta-three__box-content {
	padding-left: 25px;
}

.cta-three__box-content h3 {
	margin: 0;
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 15px;
	color: var(--thm-black);
}

.cta-three__box-content p {
	margin: 0;
	font-size: 18px;
	line-height: 34px;
	font-weight: 500;
	max-width: 380px;
}

.cta-three__btn {
	margin-top: 50px;
}

.cta-three__style-two .cta-three__moc {
	left: auto;
	top: 0;
	right: 0;
}

.cta-three__style-two .cta-three__content {
	padding-left: 0;
}

.cta-three__style-two .cta-three__box .cta-three__box-icon i {
	font-size: 42px;
}

.cta-three__style-two .cta-three__box:nth-child(1) .cta-three__box-icon {
	background-color: #fe9c39;
}

.cta-three__style-two .cta-three__box:nth-child(2) .cta-three__box-icon {
	background-color: #53b024;
}

.cta-three__style-two .cta-three__btn {
	background-color: #ee464b;
	background-image: none;
	color: #fff;
}

.cta-three__style-two .cta-three__btn:hover {
	color: #fff;
	background-color: var(--thm-black);
}

.cta-three__style-two .cta-three__shape-1 {
	top: -210px;
	right: auto;
	left: 100px;
	transform-origin: center bottom;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-animation-name: bounce;
	animation-name: bounce;
	-webkit-animation-timing-function: ease-out;
	animation-timing-function: ease-out;
	-webkit-animation-duration: 5s;
	animation-duration: 5s;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
}

/*--------------------------------------------------------------
# Main Footer
--------------------------------------------------------------*/

.site-footer {
	background-color: #272839;
	position: relative;
	overflow: hidden;
}

[class*="site-footer__shape-"] {
	position: absolute;
}

.site-footer__shape-1 {
	top: -2.5%;
	left: 3%;
	-webkit-animation-name: shapeMover;
	animation-name: shapeMover;
	-webkit-animation-duration: 9s;
	animation-duration: 9s;
	-webkit-animation-timing-function: linear;
	animation-timing-function: linear;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
	z-index: 1;
	animation-delay: 0s;
}

.site-footer__shape-2 {
	bottom: 20%;
	right: 4%;
	-webkit-animation-name: shapeMover;
	animation-name: shapeMover;
	-webkit-animation-duration: 9s;
	animation-duration: 9s;
	-webkit-animation-timing-function: linear;
	animation-timing-function: linear;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
	z-index: 1;
	animation-delay: 2s;
}

.site-footer__shape-3 {
	position: absolute;
	left: calc(50% - 231.5px);
	bottom: calc(0% - 231px);
	opacity: 0.15;
	-webkit-transform-origin: center bottom;
	transform-origin: center bottom;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-animation-name: bounce;
	animation-name: bounce;
	-webkit-animation-timing-function: ease-out;
	animation-timing-function: ease-out;
	-webkit-animation-duration: 5s;
	animation-duration: 5s;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
	z-index: 1;
}

.site-footer .container {
	position: relative;
	z-index: 20;
}

.site-footer__upper {
	padding-bottom: 100px;
	padding-top: 140px;
}

/*footer widgets*/

.footer-widget__title {
	margin: 0;
	font-weight: 700;
	font-size: 20px;
	color: #fff;
	margin-bottom: 40px;
}

.footer-widget__title a {
	color: inherit;
	transition: all 500ms ease;
}

.footer-widget__title a:hover {
	color: var(--thm-base);
}

.footer-widget p {
	margin: 0;
	font-size: 16px;
	line-height: 32px;
	font-weight: 500;
	color: #a3a4b3;
}

.footer-widget p + p {
	margin-top: 25px;
}

.footer-widget p a {
	color: var(--thm-base);
	transition: all 500ms ease;
}

.footer-widget p a:hover {
	color: #fff;
}

.footer-widget__logo {
	display: inline-block;
	margin-top: -5px;
	margin-bottom: 20px;
}

.footer-widget__links-wrap {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: space-between;
	position: relative;
	z-index: 10;
}

@media (min-width: 992px) {
	.footer-widget__links-wrap {
		padding-right: 70px;
	}

	.footer-widget__about {
		padding-right: 44px;
	}
}

.footer-widget:not(.widget_recent_comments) ul,
.footer-widget__links ul {
	margin: 0;
	padding: 0;
	list-style: none;
	margin-bottom: 0;
}

.footer-widget ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.footer-widget:not(.widget_recent_comments) ul li,
.footer-widget__links ul li {
	line-height: 1em;
	font-size: 16px;
	font-weight: 500;
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
}

.footer-widget:not(.widget_recent_comments) ul li + li,
.footer-widget__links ul li + li {
	margin-top: 23px;
}

.footer-widget:not(.widget_recent_comments) ul li a,
.footer-widget__links ul li a {
	color: #c5c5cc;
	display: block;
	font-weight: 500;
	position: relative;
	transition: transform 500ms ease, color 500ms ease;
}

.footer-widget:not(.widget_recent_comments) ul li a:hover,
.footer-widget__links ul li a:hover {
	color: var(--thm-base);
	transform: translateX(20px);
}

.footer-widget.widget_rss ul li a:hover {
	transform: translateX(0);
}

.footer-widget:not(.widget_recent_comments):not(.widget_rss) ul li a::before,
.footer-widget__links ul li a::before {
	content: "\f101";
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	font-size: 14px;
	color: var(--thm-base);
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-40%) translateX(-20px);
	opacity: 0;
	transition: all 500ms ease;
}

.footer-widget:not(.widget_recent_comments) ul li a:hover::before,
.footer-widget__links ul li a:hover::before {
	opacity: 1;
}

.footer-widget__mc-form
	input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]) {
	display: block;
	width: 100%;
	border: none;
	outline: none;
	background-color: #fff;
	font-size: 16px;
	font-weight: 500;
	text-align: center;
	border-radius: 5px;
	height: 70px;
}

.footer-widget__mc-form ::placeholder {
	color: #7c7d8a;
	opacity: 1;
}

.footer-widget__mc-btn {
	width: 100%;
	padding-left: 0;
	padding-right: 0;
	margin-top: 10px;
	background-color: #ee464b;
	background-image: none;
}

.footer-widget__mc-btn:hover {
	background-color: #a82da4;
	color: #ffffff;
}

/* footer bottom */

.site-footer__bottom .inner-container {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-top: 39.5px;
	padding-bottom: 39.5px;
}

.site-footer__bottom .inner-container.text-center {
	justify-content: center;
	text-align: center;
}

.site-footer__bottom .inner-container > p {
	margin: 0;
	font-size: 16px;
	font-weight: 500;
	color: #a3a4b3;
}

.site-footer__bottom .inner-container > p a {
	color: var(--thm-base);
	transition: all 500ms ease;
}

.site-footer__bottom .inner-container > p a:hover {
	color: #fff;
}

.site-footer__social {
	display: flex;
	align-items: center;
}

.site-footer__social a {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #a82da4;
	color: #fff;
	font-size: 16px;
	background-size: 200% auto;
	transition: all 500ms ease;
}

.site-footer__social a:hover {
	background-color: #fff !important;
	color: var(--thm-black);
}

.site-footer__social a + a {
	margin-left: 10px;
}

.site-footer__social a:nth-child(1) {
	background-color: #a82da4;
}

.site-footer__social a:nth-child(2) {
	background-color: #1393cf;
}

.site-footer__social a:nth-child(3) {
	background-color: #ee464b;
}

.site-footer__social a:nth-child(4) {
	background-color: #fe9c39;
}

.main-footer-one {
	position: relative;
	overflow: hidden;
	z-index: 11;
}

.main-footer-one p a {
	transition: 500ms ease;
}

.main-footer-one p a:hover {
	color: #fff;
}

#footer-shapes {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}

.bottom-footer {
	position: relative;
}

.bottom-footer .elementor-container {
	padding-top: 39.5px;
	padding-bottom: 39.5px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/

.contact-one {
	padding-top: 120px;
	position: relative;
}

.contact-page .contact-one {
	padding-top: 90px;
}

.contact-one .container {
	position: relative;
	z-index: 11;
}

[class*="contact-one__shape-"] {
	position: absolute;
}

.contact-one__shape-1 {
	bottom: -241px;
	left: 0;
	z-index: 11;
}

.contact-one__shape-2 {
	right: 2%;
	top: -62px;
	-webkit-animation-name: bubbleMover;
	animation-name: bubbleMover;
	-webkit-animation-timing-function: linear;
	animation-timing-function: linear;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
	animation-duration: 8s;
}

.contact-one__shape-3 {
	right: -231.5px;
	bottom: -90px;
	z-index: 11;
	-webkit-transform-origin: center bottom;
	transform-origin: center bottom;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-animation-name: bounce;
	animation-name: bounce;
	-webkit-animation-timing-function: ease-out;
	animation-timing-function: ease-out;
	-webkit-animation-duration: 5s;
	animation-duration: 5s;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
}

@media (min-width: 992px) {
	.contact-one__content {
		padding-right: 30px;
	}
}

.contact-one__images {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.contact-one__infos {
	margin-top: 45px;
	border-style: solid;
	border-width: 1px;
	border-color: rgb(220, 224, 232);
	background-color: rgb(255, 255, 255);
	box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.05);
	position: relative;
	margin-left: 20px;
	padding: 50px;
	padding-right: 30px;
	background-image: url(../images/background/contact-1-dot-1.png);
	background-repeat: no-repeat;
	background-position: 90% -22%;
}

.contact-one__infos::before {
	width: calc(100% + 20px);
	height: 100%;
	background-color: #a82da4;
	position: absolute;
	top: -20px;
	left: -20px;
	content: "";
	z-index: -1;
}

.contact-one__infos-single {
	display: flex;
	align-items: flex-start;
}

.contact-one__infos-single + .contact-one__infos-single {
	margin-top: 25px;
}

.contact-one__infos-icon {
	width: 70px;
	height: 70px;
	border-radius: 50%;
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #ee464b;
	font-size: 24px;
	background-color: #ffeaeb;
	margin-right: 20px;
	flex-shrink: 0;
	transition: all 500ms ease;
}

.contact-one__infos-single:hover .contact-one__infos-icon {
	background-color: #ee464b;
	color: #fff;
}

.contact-one__infos-icon i {
	position: relative;
	color: inherit;
}

.contact-one__infos-single:nth-child(2) .contact-one__infos-icon {
	background-color: #fcedde;
	color: #fe9c39;
}

.contact-one__infos-single:nth-child(2):hover .contact-one__infos-icon {
	background-color: #fe9c39;
	color: #fff;
}

.contact-one__infos-single:nth-child(3) .contact-one__infos-icon {
	background-color: #ecf8e6;
	color: #53b024;
}

.contact-one__infos-single:nth-child(3):hover .contact-one__infos-icon {
	background-color: #53b024;
	color: #fff;
}

.contact-one__infos-single h3 {
	margin: 0;
	color: var(--thm-black);
	font-size: 18px;
	font-weight: 700;
	line-height: 1em;
}

.contact-one__infos-single p {
	font-weight: 500;
	color: #7c7d8a;
	font-size: 20px;
	line-height: 36px;
	margin: 0;
	margin-top: 5px;
}

.contact-one__infos-single p a {
	color: inherit;
	transition: all 500ms ease;
}

.contact-one__infos-single p a:hover {
	color: var(--thm-base);
}

.contact-one__form
	input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]),
.contact-one__form textarea {
	display: block;
	border: none;
	outline: none;
	width: 100%;
	margin-bottom: 30px;
	background-color: #f4f7ff;
	border: 1px solid #dae2f6;
	font-size: 16px;
	font-weight: 500;
	color: #7c7d8a;
	padding-left: 30px;
	height: 68px;
}

.contact-one__form textarea {
	height: 188px;
	padding-top: 20px;
}

.contact-one__form ::placeholder {
	opacity: 1;
	color: #7c7d8a;
}

.contact-one__form
	.bootstrap-select:not([class*="col-"]):not([class*="form-control"]):not(
		.input-group-btn
	) {
	width: 100%;
}

.contact-one__form br {
	display: none;
}

.contact-one__form .bootstrap-select > .dropdown-toggle {
	border-radius: 0;
	padding-left: 30px;
	margin-bottom: 10px;
	background-color: var(--thm-gray);
	font-size: 16px;
	font-weight: 500;
	color: #7c7d8a;
	padding-left: 30px;
	height: 68px;
	padding-right: 30px;
}

.contact-one__form .bootstrap-select .dropdown-toggle .filter-option {
	display: flex;
	align-items: center;
}

.contact-one__form label.error {
	display: block;
}

.contact-one__form .thm-btn {
	background-color: #ee464b;
	background-image: none;
}

.contact-one__form .thm-btn:hover {
	background-color: #a82da4;
}

.contact-two {
	padding-top: 120px;
	padding-bottom: 100px;
	background-color: #f4f4f8;
	position: relative;
}

.contact-two
	.contact-one__form
	input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]),
.contact-two .contact-one__form textarea {
	background-color: #fff;
	color: #7c7d8a;
}

.contact-two .contact-one__form ::placeholder {
	color: #7c7d8a;
}

.contact-two .contact-one__form .thm-btn {
	margin-left: auto;
	margin-right: auto;
	display: block;
}

.contact-two .container {
	max-width: 720px;
	position: relative;
}

[class*="contact-two__shape-"] {
	position: absolute;
}

.contact-two__shape-1 {
	top: 60px;
	right: 0;
}

.contact-two__shape-2 {
	bottom: 105px;
	right: 0;
}

.contact-two__shape-3 {
	top: 110px;
	left: 230px;
}

/*--------------------------------------------------------------
# Blog
--------------------------------------------------------------*/

.blog-one__home {
	padding-top: 120px;
	padding-bottom: 90px;
	background-color: var(--thm-gray);
	position: relative;
	background-image: url(../images/background/blog-bg-1-1.jpg);
	background-repeat: no-repeat;
	background-position: top right;
	background-size: cover;
}

.blog-one-home-two .blog-one__home {
	background-color: transparent;
	background-image: none;
	padding-top: 0;
}

.blog-one-home-two .blog-one__shape-1 {
	right: -11%;
}

.blog-one__grid {
	padding-top: 120px;
	padding-bottom: 120px;
}

.blog-one__shape-1 {
	position: absolute;
	top: 3%;
	right: 3%;
	-webkit-transform-origin: center bottom;
	transform-origin: center bottom;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-animation-name: banner3Shake;
	animation-name: banner3Shake;
	-webkit-animation-timing-function: ease-out;
	animation-timing-function: ease-out;
	-webkit-animation-duration: 5s;
	animation-duration: 5s;
	-webkit-animation-delay: 1s;
	animation-delay: 1s;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
}

.blog-one .container {
	position: relative;
	z-index: 20;
}

.blog-one__single {
	margin-bottom: 60px;
}

.blog-details__content.tag-sticky-2,
.blog-details__content.sticky,
.blog-one__single.tag-sticky-2,
.blog-one__single.sticky {
	position: relative;
}

.blog-details__content.tag-sticky-2::before,
.blog-details__content.sticky::before,
.blog-one__single.tag-sticky-2::before,
.blog-one__single.sticky::before {
	position: absolute;
	top: 10px;
	right: 10px;
	content: "";
	width: 60px;
	height: 60px;
	background-color: var(--thm-base);
	z-index: 10;
	clip-path: polygon(50% 0%, 100% 0, 100% 100%, 50% 50%, 0 100%, 0 0);
}

.blog-one__single:not(.has-post-thumbnail) .blog-one__meta {
	margin-top: -10px;
}

.blog-one__image {
	background-color: #a82da4;
	padding: 10px;
	position: relative;
	background-size: 200% auto;
	overflow: hidden;
}

.blog-one__image > img {
	width: 100%;
	transform: scale(1);
	transition: all 500ms ease;
}

.blog-one__single:hover .blog-one__image {
	background-position: right center;
}

.blog-one__single:hover .blog-one__image > img {
	opacity: 0.5;
	transform: scale(1.1);
}

.blog-one__content {
	padding-top: 35px;
	padding-bottom: 45px;
	padding-left: 50px;
	padding-right: 50px;
	position: relative;
	border: 1px solid #e8e8ef;
	background-color: #fff;
	transition: 500ms ease;
}

.blog-one__grid .blog-one__single:hover .blog-one__content {
	box-shadow: 0px 20px 20px 0px rgba(0, 0, 0, 0.05);
}

@media (max-width: 375px) {
	.blog-one__content {
		padding-top: 30px;
		padding-bottom: 30px;
		padding-left: 25px;
		padding-right: 25px;
	}
}

.blog-one__meta {
	display: flex;
	margin: 0;
	align-items: center;
}

.blog-one__meta li {
	display: flex;
	align-items: center;
}

.blog-one__meta li span,
.blog-one__meta li a {
	color: #7c7d8a;
	font-size: 14px;
	font-weight: 500;
	display: flex;
	align-items: center;
	transition: all 500ms ease;
}

.blog-one__meta li i {
	color: #ee464b;
	margin-right: 5px;
}

.blog-one__meta li + li {
	margin-left: 15px;
}

.blog-one__meta li a:hover {
	color: var(--thm-black);
}

.blog-one__link {
	display: block;
	width: 68px;
	height: 68px;
	background-color: #a82da4;
	display: flex;
	text-align: center;
	font-size: 18px;
	align-items: center;
	justify-content: center;
	color: #fff;
	position: absolute;
	bottom: -34px;
	right: 10px;
	transition: all 500ms ease;
	background-size: 200% auto;
}

.blog-one__link:hover {
	color: #fff;
	background-color: var(--thm-black) !important;
	background-position: right center;
}

@media (max-width: 375px) {
	.blog-one__link {
		width: 50px;
		height: 50px;
		bottom: -25px;
		font-size: 14px;
	}
}

.blog-one__content h3 {
	color: var(--thm-black);
	margin: 0;
	font-size: 26px;
	line-height: 40px;
	font-weight: bold;
	word-wrap: anywhere;
}

@media (max-width: 375px) {
	.blog-one__content h3 {
		font-size: 22px;
		line-height: 1.3em;
	}
}

.blog-one__content h3 a {
	transition: all 500ms ease;
	color: inherit;
}

.blog-one__content h3 a:hover {
	color: var(--thm-base);
}

.blog-one [class*="col-"]:nth-child(1) .blog-one__image,
.blog-one [class*="col-"]:nth-child(1) .blog-one__btn,
.blog-one [class*="col-"]:nth-child(1) .blog-one__link {
	background-color: #a82da4;
}

.blog-one [class*="col-"]:nth-child(2) .blog-one__image,
.blog-one [class*="col-"]:nth-child(2) .blog-one__btn,
.blog-one [class*="col-"]:nth-child(2) .blog-one__link {
	background-color: #fe9c39;
}

.blog-one [class*="col-"]:nth-child(3) .blog-one__image,
.blog-one [class*="col-"]:nth-child(3) .blog-one__btn,
.blog-one [class*="col-"]:nth-child(3) .blog-one__link {
	background-color: #1393cf;
}

.blog-one [class*="col-"]:nth-child(4) .blog-one__image,
.blog-one [class*="col-"]:nth-child(4) .blog-one__btn,
.blog-one [class*="col-"]:nth-child(4) .blog-one__link {
	background-color: #53b024;
}

.blog-one [class*="col-"]:nth-child(5) .blog-one__image,
.blog-one [class*="col-"]:nth-child(5) .blog-one__btn,
.blog-one [class*="col-"]:nth-child(5) .blog-one__link {
	background-color: #272839;
}

.blog-one [class*="col-"]:nth-child(6) .blog-one__image,
.blog-one [class*="col-"]:nth-child(6) .blog-one__btn,
.blog-one [class*="col-"]:nth-child(6) .blog-one__link {
	background-color: #ee464b;
}

.blog-one [class*="col-"]:nth-child(7) .blog-one__image,
.blog-one [class*="col-"]:nth-child(7) .blog-one__btn,
.blog-one [class*="col-"]:nth-child(7) .blog-one__link {
	background-color: #a82da4;
}

.blog-one [class*="col-"]:nth-child(8) .blog-one__image,
.blog-one [class*="col-"]:nth-child(8) .blog-one__btn,
.blog-one [class*="col-"]:nth-child(8) .blog-one__link {
	background-color: #fe9c39;
}

.blog-one [class*="col-"]:nth-child(9) .blog-one__image,
.blog-one [class*="col-"]:nth-child(9) .blog-one__btn,
.blog-one [class*="col-"]:nth-child(9) .blog-one__link {
	background-color: #1393cf;
}

.blog-one [class*="col-"]:nth-child(10) .blog-one__image,
.blog-one [class*="col-"]:nth-child(10) .blog-one__btn,
.blog-one [class*="col-"]:nth-child(10) .blog-one__link {
	background-color: #272839;
}

.blog-one [class*="col-"]:nth-child(11) .blog-one__image,
.blog-one [class*="col-"]:nth-child(11) .blog-one__btn,
.blog-one [class*="col-"]:nth-child(11) .blog-one__link {
	background-color: #ee464b;
}

.blog-one [class*="col-"]:nth-child(12) .blog-one__image,
.blog-one [class*="col-"]:nth-child(12) .blog-one__btn,
.blog-one [class*="col-"]:nth-child(12) .blog-one__link {
	background-color: #fe9c39;
}

.blog-one__btn {
	background-image: none;
	padding: 8px 29px;
}

.blog-one__btn:hover {
	background-color: var(--thm-black) !important;
	color: #fff;
}

.blog-sidebar .blog-one__image {
	margin-bottom: 22px;
}

.blog-sidebar .blog-one__content {
	border: none;
	padding: 0;
	box-shadow: none;
}

.blog-sidebar .blog-one__link {
	width: auto;
	height: auto;
	position: relative;
	bottom: auto;
	right: auto;
}

.blog-sidebar .blog-one__content p {
	margin: 0;
	font-size: 18px;
	font-weight: 500;
	line-height: 34px;
	margin-top: 20px;
	margin-bottom: 33px;
}

.blog-sidebar .blog-one__content h3 {
	font-size: 30px;
	font-weight: bold;
}

.blog-sidebar .blog-one__meta li a {
	font-size: 18px;
}

.blog-sidebar .blog-one__single {
	margin-bottom: 60px;
}

@media (min-width: 1200px) {
	.blog-sidebar .blog-one__single {
		margin-right: 30px;
	}
}

.blog-sidebar {
	padding-top: 120px;
	padding-bottom: 120px;
}

/*--------------------------------------------------------------
## Blog Details
--------------------------------------------------------------*/

.blog-details {
	padding-top: 120px;
	padding-bottom: 120px;
}

.blog-details__content img {
	max-width: 100%;
	height: auto;
}

.blog-details__image {
	margin-bottom: 30px;
	padding: 10px;
	background-color: #fe9c39;
}

.blog-details__image > img {
	width: 100%;
}

.blog-details__content .blocks-gallery-caption {
	margin-bottom: 20px;
}

.blog-details__content .blog-one__meta {
	margin-bottom: 30px;
}

.blog-details__content p {
	margin: 0;
	line-height: 1.8em;
	margin-bottom: 30px;
}

.blog-details__content .blog-one__meta li a {
	font-size: 18px;
}

.blog-details__bottom {
	border-top: 1px solid #e8e8ef;
	padding-top: 30px;
	padding-bottom: 30px;
	margin-top: 50px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
}

.blog-details__tags {
	margin: 0;
	display: flex;
	align-items: center;
}

.blog-details__tags span {
	font-size: 20px;
	font-weight: 600;
	color: var(--thm-black);
}

.blog-details__tags a {
	color: #7c7d8a;
	font-size: 16px;
	font-weight: 500;
	margin-left: 5px;
	transition: all 500ms ease;
}

.blog-details__tags a:not(:last-of-type)::after {
	content: ",";
}

.blog-details__tags a:hover {
	color: var(--thm-base);
}

.blog-details .post-nav-links {
	color: var(--thm-black);
	margin-top: 20px;
}

.blog-details .post-nav-links span,
.blog-details .post-nav-links a {
	padding: 0px 14px;
	background-color: var(--thm-base);
	color: #fff;
	margin: 0 2.5px;
	display: inline-block;
}

.blog-details .post-nav-links span {
	background-color: var(--thm-black);
	color: #fff;
}

.author-one {
	padding: 60px;
	background-color: var(--thm-gray);
	position: relative;
	margin-bottom: 60px;
}

.author-one__image,
.author-one__content {
	display: table-cell;
	vertical-align: middle;
}

.author-one__image {
	width: 170px;
}

.author-one__content {
	padding-left: 40px;
}

.author-one__content h3 {
	margin: 0;
	color: var(--thm-black);
	font-weight: 600;
	font-size: 20px;
}

.author-one__content p {
	margin: 0;
	font-size: 18px;
	line-height: 34px;
	font-weight: 500;
	color: #7c7d8a;
	margin-top: 40px;
}

.comment-one__title,
.comment-form__title {
	margin: 0;
	color: var(--thm-black);
	font-size: 26px;
	font-weight: 800;
	margin-bottom: 60px;
}

.comment-one__single {
	position: relative;
	border-bottom: 1px solid #e8e8ef;
	margin-bottom: 60px;
	padding-bottom: 50px;
}

.comment-one__image,
.comment-one__content {
	display: table-cell;
	vertical-align: top;
}

.comment-one__image {
	width: 90px;
}

.comment-one__image > img {
	width: 100%;
	border-radius: 50%;
}

.comment-one__content {
	padding-left: 40px;
	padding-right: 105px;
}

.comment-one__date {
	display: flex;
	color: var(--thm-base);
	font-size: 16px;
	font-weight: 500;
	margin-bottom: 25px;
}

.comment-one__date span {
	margin-left: 10px;
	margin-right: 10px;
}

.comment-one__content h3 {
	margin: 0;
	font-size: 20px;
	color: var(--thm-black);
	font-weight: 600;
}

.comment-one__content p {
	margin: 0;
	font-size: 18px;
	line-height: 34px;
	color: #7c7d8a;
	font-weight: 500;
}

.comment-one__btn {
	padding: 8px 29.5px;
	position: absolute;
	top: 0;
	right: 0;
}

/*--------------------------------------------------------------
# Page Header
--------------------------------------------------------------*/

.page-header {
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	position: relative;
	padding-top: 225px;
	padding-bottom: 100px;
	background-image: url(../images/background/inner-banner-bg.png);
}

.page-header .container {
	position: relative;
}

.page-header h2 {
	margin: 0;
	color: #fff;
	font-size: 60px;
	line-height: 1.25em;
	max-width: 70%;
	word-break: break-all;
	font-weight: bold;
}

@media (max-width: 991px) {
	.page-header h2 {
		max-width: 100%;
	}
}

.page-header h2 b {
	color: inherit;
}

.thm-breadcrumb {
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 0;
	align-items: center;
	margin-bottom: 10px;
}

.thm-breadcrumb li {
	color: #fff;
	font-size: 16px;
	font-weight: 600;
}

.thm-breadcrumb li b {
	color: inherit;
}

.thm-breadcrumb li a {
	color: inherit;
}

.thm-breadcrumb li:not(:last-of-type)::after {
	content: "-";
	color: #fff;
	font-size: 16px;
	margin-left: 10px;
	margin-right: 10px;
}

.thm-breadcrumb li.current span,
.thm-breadcrumb li span {
	border-bottom: 1px solid #fff;
}

.page-header__home-link {
	position: absolute;
	bottom: -41.5px;
	right: 19.5%;
	display: flex;
	width: 83px;
	height: 83px;
	border-radius: 50%;
	align-items: center;
	justify-content: center;
	text-align: center;
	background-color: var(--thm-black);
	font-size: 30px;
	color: #fff;
	transition: all 500ms ease;
	border: 10px solid #ffffff;
	z-index: 20;
}

.page-header__home-link:hover {
	background-color: #fff;
	color: var(--thm-black);
}

/*--------------------------------------------------------------
# Sidemenu
--------------------------------------------------------------*/

.side-menu__block {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	z-index: 1000;
	transform: translateX(-100%);
	-webkit-transform-origin: left center;
	transform-origin: left center;
	transition: transform 500ms ease 500ms, visibility 500ms ease 500ms;
	visibility: hidden;
}

body.admin-bar .side-menu__block {
	top: 32px;
}

@media (max-width: 600px) {
	body.admin-bar .side-menu__block.is-adminbar {
		top: 0;
	}
}

.side-menu__block .mCSB_inside > .mCSB_container {
	margin-right: 0;
}

.side-menu__block.active {
	transform: translateX(0%);
	visibility: visible;
	transition: transform 500ms ease 0ms, visibility 500ms ease 0ms;
}

.side-menu__block-overlay {
	width: 100%;
	height: 100%;
	background-color: var(--thm-black);
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 999;
	opacity: 0.7;
}

.side-menu__block-overlay .cursor-follower {
	background-color: rgba(var(--thm-black-rgb), 0.3);
}

.side-menu__block-inner {
	position: relative;
	max-width: 430px;
	width: 100%;
	margin-right: auto;
	height: 100vh;
	background-color: var(--thm-black);
	z-index: 999999;
	overflow-y: auto;
	padding: 40px 0;
	padding-top: 20px;
	position: relative;
	opacity: 0;
	visibility: hidden;
	transform: translateX(-100%);
	transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms,
		transform 500ms ease 0ms;
}

.side-menu__block.active .side-menu__block-inner {
	opacity: 1;
	visibility: visible;
	transform: translateX(0);
	transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms,
		transform 500ms ease 500ms;
}

@media (max-width: 575px) {
	.side-menu__block-inner {
		max-width: 480px;
	}
}

@media (max-width: 480px) {
	.side-menu__block-inner {
		max-width: 400px;
	}
}

@media (max-width: 375px) {
	.side-menu__block-inner {
		max-width: 300px;
	}
}

.side-menu__block-inner .mCustomScrollBox {
	width: 100%;
}

.side-menu__top {
	display: -webkit-box;
	display: flex;
	-webkit-box-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	justify-content: space-between;
	padding-left: 30px;
	padding-right: 30px;
}

.mobile-nav__container {
	padding-left: 30px;
	padding-right: 30px;
	padding-top: 50px;
}

.mobile-nav__container ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.mobile-nav__container ul li {
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav__container li.menu-item-has-children ul {
	display: none;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav__container li.menu-item-has-children {
	position: relative;
}

.mobile-nav__container li.menu-item-has-children .dropdown-btn {
	border: none;
	outline: none;
	background-color: transparent;
	color: #fff;
	width: auto;
	-webkit-transform: rotate(90deg);
	transform: rotate(90deg);
	-webkit-transition: transfrom 500ms ease;
	transition: transfrom 500ms ease;
	position: absolute;
	top: calc(50% - 15px);
	right: 0;
	background-color: var(--thm-base);
	display: flex;
	width: 30px;
	height: 30px;
	padding: 0;
	justify-content: center;
	align-items: center;
	font-size: 18px;
}

.mobile-nav__container li.menu-item-has-children .dropdown-btn.open {
	-webkit-transform: rotate(-90deg);
	transform: rotate(-90deg);
}

.mobile-nav__container li a {
	text-transform: uppercase;
	color: #a3a4b3;
	font-size: 18px;
	font-weight: 500;
	display: block;
	font-family: var(--thm-font);
	-webkit-transition: all 500ms ease;
	transition: all 500ms ease;
	position: relative;
	padding: 8px 0;
}

.mobile-nav__container li a:hover {
	color: var(--thm-base);
}

.mobile-nav__container li.current-menu-item > a,
.mobile-nav__container li.current-page-item > a,
.mobile-nav__container li.current > a {
	color: var(--thm-base);
}

.side-menu__social {
	display: -webkit-box;
	display: flex;
	-webkit-box-align: center;
	align-items: center;
	margin-top: 50px;
	margin-bottom: 40px;
}

.side-menu__social a {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 16px;
	background-size: 200% auto;
	transition: all 500ms ease;
	background-color: #a82da4;
}

.side-menu__social a:hover {
	background-position: right center;
}

.side-menu__social a + a {
	margin-left: 10px;
}

.side-menu__social a:nth-child(1) {
	background-color: #a82da4;
}

.side-menu__social a:nth-child(2) {
	background-color: #1393cf;
}

.side-menu__social a:nth-child(3) {
	background-color: #ee464b;
}

.side-menu__social a:nth-child(4) {
	background-color: #fe9c39;
}

.side-menu__content {
	padding-left: 30px;
	padding-right: 30px;
}

.side-menu__content p {
	margin: 0;
	font-size: 18px;
	line-height: 30px;
	font-weight: 500;
	color: #a3a4b3;
	letter-spacing: 0.02em;
	margin-top: 50px;
}

.side-menu__content p + p {
	margin-top: 30px;
}

.side-menu__content p a {
	color: var(--thm-base);
	-webkit-transition: all 500ms ease;
	transition: all 500ms ease;
}

.side-menu__content p a:hover {
	color: var(--thm-base);
}

.side-menu__sep {
	width: calc(100% - 60px);
	margin-left: auto;
	margin-right: auto;
	height: 1px;
	background-color: #fff;
	opacity: 0.1;
	margin-top: 70px;
	margin-bottom: 70px;
	display: none;
}

.side-menu__text p {
	font-size: 16px;
	line-height: 32px;
	font-weight: 500;
	color: #7c7d8a;
	margin: 0;
}

.side-menu__text a {
	color: var(--thm-base);
	-webkit-transition: all 500ms ease;
	transition: all 500ms ease;
}

.side-menu__text a:hover {
	color: var(--thm-black);
}

.side-menu__block__copy {
	font-size: 16px;
	font-weight: 500;
	color: #7c7d8a;
	margin: 0;
}

@media (max-width: 575px) {
	.side-menu__top,
	.side-menu__content,
	.mobile-nav__container {
		padding-left: 50px;
		padding-right: 50px;
	}

	.side-menu__sep {
		margin-top: 40px;
		margin-bottom: 40px;
		width: calc(100% - 100px);
	}
}

@media (max-width: 480px) {
	.side-menu__top,
	.side-menu__content,
	.mobile-nav__container {
		padding-left: 25px;
		padding-right: 25px;
	}

	.side-menu__sep {
		width: calc(100% - 50px);
	}

	.side-menu__social {
		margin-top: 40px;
	}

	.side-menu__social a {
		width: 45px;
		height: 45px;
	}
}

/*--------------------------------------------------------------
# Sidebar
--------------------------------------------------------------*/

.sidebar-single:not(.sidebar__search) {
	background-color: #f4f7ff;
	padding: 50px;
}

.sidebar-single + .sidebar-single {
	margin-top: 30px;
}

.sidebar__title {
	margin: 0;
	color: var(--thm-black);
	font-weight: 600;
	font-size: 24px;
	margin-bottom: 25px;
	line-height: 1em;
	margin-top: -5px;
}

.sidebar__title a {
	color: inherit;
	transition: all 500ms ease;
}

.sidebar__title a:hover {
	color: var(--thm-base);
}

.sidebar-single .searchform,
.sidebar__search-form {
	background-image: linear-gradient(90deg, #4a0e8f 0%, #b430a7 100%);
	display: block;
	width: 100%;
	position: relative;
}

.sidebar-single .searchform {
	background-image: none;
	background-color: #fff;
}

.sidebar-single
	.searchform
	input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]),
.sidebar__search-form
	input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]) {
	display: block;
	width: 100%;
	border: none;
	outline: none;
	background-color: transparent;
	color: #fff;
	font-size: 16px;
	padding-left: 40px;
	height: 70px;
}

.sidebar-single
	.searchform
	input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]) {
	padding-left: 20px;
	height: 70px;
	color: var(--thm-black);
}

.sidebar-single .searchform ::placeholder,
.sidebar__search-form ::placeholder {
	opacity: 1;
	color: #fff;
}

.sidebar-single .searchform ::placeholder {
	color: var(--thm-black);
}

.sidebar-single .searchform button[type="submit"],
.sidebar__search-form button[type="submit"] {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: auto;
	right: 40px;
	color: #fff;
	border: none;
	outline: none;
	background-color: transparent;
}

.sidebar-single .searchform button[type="submit"] {
	right: 35px;
	color: var(--thm-black);
}

.sidebar__post-single {
	position: relative;
	padding-left: 80px;
}

.sidebar__post-single + .sidebar__post-single {
	margin-top: 30px;
}

.sidebar__post-single > img {
	border-radius: 50%;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
}

.sidebar__post-single h3 {
	font-size: 16px;
	line-height: 28px;
	color: #7c7d8a;
	margin: 0;
}

.sidebar__post-single h3 a {
	color: inherit;
}

.sidebar__post-single h3 a:hover {
	color: var(--thm-base);
}

.sidebar-single ul,
.sidebar__cat-list {
	margin: 0;
	padding: 0;
	list-style: none;
}

.sidebar-single:not(.widget_recent_comments) ul > li,
.sidebar__cat-list li {
	line-height: 1em;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
}

.sidebar-single:not(.widget_recent_comments) ul li + li,
.sidebar__cat-list li + li {
	margin-top: 20px;
}

.sidebar-single:not(.widget_recent_comments) ul li,
.sidebar-single:not(.widget_recent_comments) ul li a,
.sidebar__cat-list li a {
	color: #7c7d8a;
	font-size: 16px;
	font-weight: 500;
	transition: all 500ms ease;
}

.sidebar-single:not(.widget_recent_comments) ul li a:hover,
.sidebar__cat-list li a:hover {
	color: var(--thm-base);
}

.sidebar__tags-list {
	margin-top: -10px;
}

.sidebar__tags-list a {
	font-size: 16px;
	line-height: 34px;
	color: #7c7d8a;
	font-weight: 500;
	transition: all 500ms ease;
}

.sidebar__tags-list a:hover {
	color: var(--thm-base);
}

/*--------------------------------------------------------------
# FAQ
--------------------------------------------------------------*/

.faq-one {
	padding: 120px 0;
	position: relative;
	counter-reset: faqNumber;
}

[class*="faq-one__shape-"] {
	position: absolute;
}

.faq-one__shape-1 {
	top: -145.5px;
	left: 4%;
	-webkit-transform-origin: center bottom;
	transform-origin: center bottom;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-animation-name: banner3Shake;
	animation-name: banner3Shake;
	-webkit-animation-timing-function: ease-out;
	animation-timing-function: ease-out;
	-webkit-animation-duration: 5s;
	animation-duration: 5s;
	-webkit-animation-delay: 1s;
	animation-delay: 1s;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
}

.faq-one__shape-3 {
	left: 4%;
	bottom: -4%;
	z-index: 11;
	-webkit-transform-origin: center bottom;
	transform-origin: center bottom;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-animation-name: banner3Shake;
	animation-name: banner3Shake;
	-webkit-animation-timing-function: ease-out;
	animation-timing-function: ease-out;
	-webkit-animation-duration: 5s;
	animation-duration: 5s;
	-webkit-animation-delay: 1s;
	animation-delay: 1s;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
}

.faq-one__shape-2 {
	top: 0;
	right: 0;
}

.faq-one .container {
	position: relative;
}

@media (min-width: 992px) {
	.faq-one .container {
		max-width: 1000px;
	}
}

.faq-accrodion .accrodion {
	position: relative;
	-webkit-transition: all 0.4s ease;
	transition: all 0.4s ease;
	counter-increment: faqNumber;
}

.faq-accrodion .accrodion:before {
	content: "";
	position: absolute;
	top: -1px;
	bottom: -1px;
	left: 0px;
	right: 0px;
	border-radius: 0px;
	-webkit-transform: scaleX(0);
	transform: scaleX(0);
	background-image: linear-gradient(90deg, #4a0e8f 0%, #b330a7 100%);
	-webkit-transition: -webkit-transform 0.4s ease;
	transition: -webkit-transform 0.4s ease;
	transition: transform 0.4s ease;
	transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}

.faq-accrodion .accrodion + .accrodion {
	margin-top: 20px;
}

.faq-accrodion .accrodion.active {
	box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.04);
}

.faq-accrodion .accrodion.active .accrodion-inner {
	margin: 0 1px;
}

.faq-accrodion .accrodion.active:before {
	-webkit-transform: scaleX(1);
	transform: scaleX(1);
}

.faq-accrodion .accrodion.active .accrodion-title {
	padding-bottom: 0;
}

.faq-accrodion .accrodion.active .accrodion-title h4 {
	color: #ee464b;
}

.faq-accrodion .accrodion .accrodion-inner {
	background-color: #fff;
	padding: 30.5px 0;
	border-style: solid;
	border-width: 1px;
	border-color: #e8e8ef;
	border-radius: 0px;
	position: relative;
	-webkit-transition: all 0.4s ease;
	transition: all 0.4s ease;
}

.faq-accrodion .accrodion .accrodion-title {
	padding: 0px 40px;
	cursor: pointer;
	position: relative;
	-webkit-transition: all 0.4s ease;
	transition: all 0.4s ease;
}

@media (max-width: 375px) {
	.faq-accrodion .accrodion .accrodion-title {
		padding-right: 50px;
	}
}

.faq-accrodion .accrodion .accrodion-title:before {
	content: "\f067";
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	width: 57px;
	height: 57px;
	border-radius: 50%;
	font-size: 14px;
	color: #ffffff;
	text-align: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	position: absolute;
	top: 50%;
	right: 40px;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	opacity: 1;
	background-image: linear-gradient(90deg, #4a0e8f 0%, #b430a7 100%);
	transition: all 500ms ease;
}

.faq-accrodion .accrodion .accrodion-title::after {
	content: "\f068";
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	width: 57px;
	height: 57px;
	border-radius: 50%;
	font-size: 14px;
	color: #ffffff;
	text-align: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	position: absolute;
	top: 50%;
	right: 40px;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	opacity: 0;

	background-image: linear-gradient(90deg, #e41256 0%, #ffa337 100%);
	transition: all 500ms ease;
}

.faq-accrodion .accrodion.active .accrodion-title::before {
	opacity: 0;
}

.faq-accrodion .accrodion.active .accrodion-title::after {
	opacity: 1;
}

.faq-accrodion .accrodion .accrodion-title h4 {
	margin: 0;
	color: #30283d;
	font-size: 20px;
	font-weight: 500;
}

@media (max-width: 375px) {
	.faq-accrodion .accrodion .accrodion-title h4 {
		line-height: 1.4em;
	}
}

.faq-accrodion .accrodion .accrodion-content .inner {
	padding: 0 40px;
	padding-right: 155px;
	padding-top: 35px;
	padding-bottom: 0px;
}

.faq-accrodion .accrodion .accrodion-content p {
	margin: 0;
	color: #7c7d8a;
	font-size: 18px;
	line-height: 34px;
	font-weight: 500;
}

.faq-one__layout-two .container {
	max-width: 1200px;
}

.faq-one__layout-two .block-title {
	margin-bottom: 0;
}

.faq-one__layout-two .faq-one__content {
	margin-bottom: 50px;
}

@media (min-width: 992px) {
	.faq-one__layout-two .faq-one__content {
		margin-bottom: 0;
	}
}

.faq-one__layout-two .faq-one__content > p {
	margin: 0;
	color: #7c7d8a;
	font-size: 18px;
	font-weight: 600;
	line-height: 34px;
	margin-top: 50px;
	margin-bottom: 50px;
}

.faq-one__layout-two .faq-accrodion .accrodion .accrodion-inner {
	border-color: #dae2f6;
}

.faq-one__layout-two .faq-accrodion .accrodion .accrodion-title h4 {
	font-size: 20px;
	font-weight: 600;
	color: #272839;
}

.faq-one__layout-two .faq-accrodion .accrodion .accrodion-content p {
	color: #7c7d8a;
}

.faq-one__layout-two .faq-accrodion .accrodion .accrodion-title::after,
.faq-one__layout-two .faq-accrodion .accrodion .accrodion-title::before {
	background-color: #a82da4;
	width: 45px;
	height: 45px;
	font-size: 14px;
	right: 20px;
	background-image: none;
}

.faq-one__layout-two .faq-accrodion .accrodion .accrodion-title::after {
	background-color: #fe9c39;
}

.faq-one__layout-two .faq-accrodion .accrodion::before {
	display: none;
}

.faq-one__layout-two .faq-accrodion .accrodion + .accrodion {
	margin-top: 10px;
}

.faq-one__layout-two .faq-accrodion .accrodion .accrodion-content .inner {
	padding-right: 40px;
}

.faq-one__layout-two .faq-accrodion .accrodion .accrodion-content .inner {
	padding-top: 30px;
}

/*--------------------------------------------------------------
# Brand
--------------------------------------------------------------*/

.brand-one {
	position: relative;
	z-index: 11;
	background-color: #1393cf;
}

.brand-one img {
	opacity: 0.6;
	transition: all 500ms ease;
}

.brand-one img:hover {
	opacity: 1;
}

.brand-one__home-two {
	background-color: #fff;
	background-image: none;
	max-width: 1410px;
	box-shadow: 0px -18px 50px 0px rgb(0, 0, 0, 0.1);
	margin-left: auto;
	margin-right: auto;
	position: relative;
	margin-top: -60px;
	z-index: 11;
}

.brand-one__home-two::before {
	content: "";
	width: calc(100% - 120px);
	bottom: -30px;
	height: 100%;
	background-color: #f4f7ff;
	transform: translateX(-50%);
	position: absolute;
	left: 50%;
	z-index: 1;
}

.brand-one__home-two::after {
	content: "";
	background-color: #fff;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 2;
}

.brand-one__home-two .container {
	position: relative;
	z-index: 10;
}

.brand-one__home-two img {
	opacity: 0.4;
}

.brand-one__home-two img:hover {
	opacity: 1;
}

.brand-one__carousel .owl-item {
	position: relative;
	padding-top: 120px;
	padding-bottom: 120px;
	cursor: pointer;
}

.brand-one__carousel .owl-item .hover-text {
	position: absolute;
	top: 50px;
	background-color: #fff;
	left: 30px;
	color: #272839;
	font-size: 14px;
	font-weight: 600;
	min-width: 160px;
	text-align: center;
	opacity: 0;
	transform: translateY(-20%);
	padding-top: 8px;
	padding-bottom: 8px;
	transition: opacity 500ms ease, transform 500ms ease;
	box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
}

.brand-one__home-two .brand-one__carousel .owl-item .hover-text {
	background-color: #272839;
	color: #fff;
}

.brand-one__carousel .owl-item:hover .hover-text {
	opacity: 1;
	transform: translateY(0);
}

.brand-one__carousel .owl-item .hover-text::before {
	content: "";
	background-image: url(../images/shapes/brand-hover-arrow.png);
	width: 13px;
	height: 7px;
	position: absolute;
	top: 100%;
	left: 10px;
}

.brand-one__home-two .brand-one__carousel .owl-item .hover-text::before {
	background-image: url(../images/shapes/brand-hover-arrow-dark.png);
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/

.testimonials__one {
	background-color: #f4f4f8;
	padding: 120px 0;
	position: relative;
	background-image: url(../images/background/testi-bg-1-1.jpg);
	background-repeat: no-repeat;
	background-position: top center;
}

.testimonials__about .testimonials__one {
	background-color: #fff;
	padding-top: 90px;
}

[class*="testimonials__one-shape-"] {
	position: absolute;
}

.testimonials__one-shape-1 {
	top: -43px;
	left: 2%;
	-webkit-animation-name: bubbleMover;
	animation-name: bubbleMover;
	-webkit-animation-timing-function: linear;
	animation-timing-function: linear;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
	animation-duration: 8s;
}

.testimonials__one-shape-2 {
	top: 6%;
	right: 6%;
	-webkit-animation-name: shapeMover;
	animation-name: shapeMover;
	-webkit-animation-duration: 9s;
	animation-duration: 9s;
	-webkit-animation-timing-function: linear;
	animation-timing-function: linear;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
}

.testimonials__one .map-img {
	position: absolute;
	top: 50%;
	left: 10%;
	transform: translateY(-50%);
	animation-name: mapMover;
	animation-duration: 5s;
	animation-timing-function: linear;
	animation-iteration-count: infinite;
	transition: all 0.4s ease;
	transform-origin: center center;
}

@keyframes mapMover {
	0% {
		transform: translateY(-50%) translateX(0);
	}

	50% {
		transform: translateY(-55%) translateX(-20px);
	}

	100% {
		transform: translateY(-50%) translateX(0);
	}
}

.testimonials__one .block-title {
	margin-bottom: 40px;
}

.testimonials__one .testimonials__one__single p {
	margin: 0;
	color: #7c7d8a;
	font-size: 24px;
	line-height: 46px;
	font-weight: 500;
}

.testimonials__one .testimonials__one__single h3 {
	color: #ee464b;
	font-weight: 600;
	font-size: 20px;
	margin: 0;
	margin-top: 40px;
}

.testimonials__one__single span {
	margin: 0;
	display: block;
	color: #7c7d8a;
	font-size: 16px;
	font-weight: 600;
}

.testimonials__one .testi-carousel-one .owl-nav {
	margin: 0;
	position: absolute;
	bottom: -10px;
	right: 0;
	background-color: #f2fff8;
}

.testimonials__one .testi-carousel-one .owl-nav [class*="owl-"] {
	margin: 0px 5px;
	padding: 0;
	background-color: transparent;
	opacity: 0.3;
	color: var(--thm-black);
	font-size: 32px;
	transition: all 0.4s ease;
}

.testimonials__one .testi-carousel-one .owl-nav [class*="owl-"]:hover {
	opacity: 1;
}

.testimonials__one .bx-wrapper {
	border: none;
	box-shadow: none;
	background-color: transparent;
	margin-bottom: 0;
}

.testimonials__one .bx-wrapper ul.slider {
	padding: 0;
	margin: 0;
}

.testimonials__one .bx-wrapper .bx-controls-direction {
	position: absolute;
	bottom: -10px;
	background-color: #f4f4f8;
	display: flex;
	align-items: center;
	right: 0;
	margin-left: -5px;
	margin-right: -5px;
	z-index: 9;
}

.testimonials__one .bx-wrapper .bx-controls-direction a {
	text-indent: 0;
	background-image: none;
	font-size: 22px;
	position: relative;
	top: auto;
	left: auto;
	right: auto;
	bottom: auto;
	color: #ee464b;
	transition: all 0.4s ease;
	width: 62px;
	height: 62px;
	background-color: #ffffff;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
	margin: 0 5px;
}

.testimonials__one .bx-wrapper .bx-controls-direction a:hover {
	opacity: 1;
	background-color: #272839;
	color: #fff;
}

#testimonials-slider-pager {
	width: 474px;
	height: 474px;
	border-radius: 50%;
	position: relative;
	background-image: url(../images/shapes/testi-circle.png);
	background-position: center center;
	background-repeat: no-repeat;
	animation-name: tesiMove;
	animation-duration: 5s;
	animation-timing-function: linear;
	animation-iteration-count: infinite;
	transition: all 0.4s ease;
	transform-origin: center center;
}

@keyframes tesiMove {
	0% {
		transform: rotate(0deg);
	}

	15% {
		transform: rotate(2deg);
	}

	33% {
		transform: rotate(4deg);
	}

	66% {
		transform: rotate(2deg);
	}

	100% {
		transform: rotate(0deg);
	}
}

#testimonials-slider-pager .testimonials-slider-pager-one .pager-item {
	width: 71px;
	height: 71px;
	display: inline-block;
	vertical-align: middle;
	position: absolute;
}

#testimonials-slider-pager
	.testimonials-slider-pager-one
	.pager-item:nth-child(1) {
	top: 70px;
	left: 10px;
}

#testimonials-slider-pager
	.testimonials-slider-pager-one
	.pager-item:nth-child(2) {
	top: 70px;
	right: 10px;
}

#testimonials-slider-pager
	.testimonials-slider-pager-one
	.pager-item:nth-child(3) {
	bottom: 70px;
	left: 10px;
}

#testimonials-slider-pager
	.testimonials-slider-pager-one
	.pager-item:nth-child(4) {
	bottom: 70px;
	right: 10px;
}

#testimonials-slider-pager
	.testimonials-slider-pager-one
	.pager-item:nth-child(5) {
	bottom: -35px;
	left: 50%;
	transform: translateX(-50%);
}

#testimonials-slider-pager
	.testimonials-slider-pager-one
	.pager-item:nth-child(6) {
	top: -35px;
	left: 50%;
	transform: translateX(-50%);
}

#testimonials-slider-pager .testimonials-slider-pager-one .pager-item > img {
	width: 100%;
	border-radius: 50%;
	transition: all 0.4s ease;
}

#testimonials-slider-pager
	.testimonials-slider-pager-one
	.pager-item.active
	img {
	opacity: 0.75;
	transform: scale(0.95);
}

#testimonials-slider-pager .testimonials-slider-pager-two .pager-item {
	width: 163px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) scale(0);
	opacity: 0;
	transition: all 0.4s ease;
}

#testimonials-slider-pager .testimonials-slider-pager-two .pager-item.active {
	opacity: 1;
	transform: translate(-50%, -50%) scale(0.95);
}

#testimonials-slider-pager .testimonials-slider-pager-two .pager-item > img {
	width: 100%;
	border-radius: 50%;
}

/* testimonials two */
.testimonials-two {
	background-size: cover;
	padding-top: 520px;
	padding-bottom: 170px;
	position: relative;
	z-index: 10;
}

[class*="testimonials__two-shape-"] {
	position: absolute;
}

.testimonials__two-shape-1 {
	top: 540px;
	left: 160px;
	-webkit-animation-name: bubbleMover;
	animation-name: bubbleMover;
	-webkit-animation-timing-function: linear;
	animation-timing-function: linear;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
	animation-duration: 8s;
}

.testimonials__two-shape-2 {
	top: 330px;
	right: 130px;
	-webkit-animation-name: bubbleMover;
	animation-name: bubbleMover;
	-webkit-animation-timing-function: linear;
	animation-timing-function: linear;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
	animation-duration: 8s;
}

.testimonials__two-shape-3 {
	bottom: 75px;
	right: -60px;
	-webkit-animation-name: shapeMover;
	animation-name: shapeMover;
	-webkit-animation-duration: 9s;
	animation-duration: 9s;
	-webkit-animation-timing-function: linear;
	animation-timing-function: linear;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
}

.testimonials-two .owl-carousel .owl-item img {
	display: inline;
	width: auto;
}

.testimonials-two .block-title {
	margin-bottom: 30px;
}

.testimonials-two__image {
	overflow: hidden;
	position: relative;
	display: inline-block;
	float: right;
}

.testimonials-two__image > img {
	border-radius: 50% !important;
	max-width: 100% !important;
	display: block !important;
}

.testimonials-two__image-block {
	position: relative;
}

.testimonials-two__qoute {
	width: 77px;
	height: 77px;
	background-color: #fe9c39;
	border-radius: 50%;
	text-align: center;
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.testimonials-two__content {
	padding-left: 50px;
}

.testimonials-two__text {
	margin: 0;
	color: #7c7d8a;
	font-size: 24px;
	line-height: 46px;
	font-weight: 500;
}

.testimonials-two__bottom {
	margin-top: 30px;
}

.testimonials-two__sep,
.testimonials-two__title {
	margin: 0;
	font-size: 20px;
	color: #ee464b;
	font-weight: 600;
}

.testimonials-two__designation {
	margin: 0;
	color: #7c7d8a;
	font-size: 16px;
	font-weight: 500;
	display: block;
}

.testimonials-two__sep {
	margin-left: 17px;
	margin-right: 17px;
}

.testimonials-two__button-block {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	position: absolute;
	top: 50%;
	left: 0;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	z-index: 99;
}

[class*="testimonials-two__button__"] {
	width: 92px;
	height: 92px;
	background-color: #252758;
	border-radius: 50%;
	border: none;
	outline: none !important;
	background-position: center center;
	background-size: 100% 100%;
	cursor: pointer;
}

[class*="testimonials-two__button__"] + [class*="testimonials-two__button__"] {
	margin-top: 10px;
}

.testimonials-two__button__prev-btn,
.testimonials-two__button__next-btn {
	position: relative;
	overflow: hidden;
}

.testimonials-two__button__prev-btn:before,
.testimonials-two__button__next-btn:before {
	content: "\e904";
	font-family: "zimed-icon";
	color: #fff;
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%) rotate(90deg);
	transform: translate(-50%, -50%) rotate(90deg);
	z-index: 100;
	font-size: 24px;
}

.testimonials-two__button__prev-btn:after,
.testimonials-two__button__next-btn:after {
	content: "";
	background-color: #252758;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	opacity: 0.4;
}

.testimonials-two__button__next-btn:before {
	transform: translate(-50%, -50%) rotate(-90deg);
}

/* testimonails three */

.testimonials-three {
	position: relative;
	z-index: 23;
}

.testimonials__three-shape-1 {
	position: absolute;
	top: -140px;
	left: 90px;
	-webkit-transform-origin: center bottom;
	transform-origin: center bottom;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-animation-name: banner3Shake;
	animation-name: banner3Shake;
	-webkit-animation-timing-function: ease-out;
	animation-timing-function: ease-out;
	-webkit-animation-duration: 5s;
	animation-duration: 5s;
	-webkit-animation-delay: 1s;
	animation-delay: 1s;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
}

.testimonials-three .block-title {
	margin-bottom: 60px;
}

.testimonials-three .block-summery {
	margin: 0;
	margin-top: 20px;
}

.testimonials-three__single .testimonials-three__thumb,
.testimonials-three .testimonials-three__single .testimonials-three__thumb {
	width: 85px;
	position: absolute;
	bottom: -30px;
	left: 60px;
	box-shadow: 0 0 0 1px #fe9c39;
	padding: 6px;
}

.testimonials-three__single {
	border-style: solid;
	border-width: 1px;
	border-color: #dae2f6;
	background-color: #ffffff;
	box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
	padding: 60px;
	padding-top: 45px;
	padding-bottom: 80px;
	position: relative;
	margin-bottom: 30px;
}

.testimonials-three__single::before {
	content: "";
	width: 100%;
	height: 50px;
	position: absolute;
	bottom: 0;
	left: 0;
	background-image: url(../images/shapes/testi-shape-1-1.png);
	opacity: 0;
	transition: opacity 500ms ease;
}

.testimonials-three__single:hover::before {
	opacity: 1;
}

.testimonials-three__single p {
	margin: 0;
	color: #7c7d8a;
	font-size: 20px;
	line-height: 38px;
	margin-bottom: 35px;
}

.testimonials-three__single h3 {
	margin: 0;
	color: #ee464b;
	font-size: 20px;
	font-weight: 600;
	line-height: 1;
}

.testimonials-three__single span {
	margin: 0;
	display: block;
	font-size: 16px;
	font-weight: 600;
	color: #7c7d8a;
	line-height: 1;
	margin-top: 10px;
}

.testimonials-three .owl-dots {
	margin-top: 35px !important;
}

.testimonials-three .owl-dots .owl-dot span {
	background-color: #272839;
	width: 7px;
	height: 7px;
	opacity: 0.2;
	margin-left: 2.5px;
	margin-right: 2.5px;
	transition: background 500ms ease, transform 500ms ease, opacity 500ms ease;
}

.testimonials-three .owl-dots .owl-dot.active span {
	opacity: 1;
	transform: scale(1.2);
	background-color: #ee464b;
}

.testimonials-four .testimonials-three__single {
	margin-bottom: 60px;
}

/*--------------------------------------------------------------
# App Screens
--------------------------------------------------------------*/

.app-shot-one {
	padding-top: 115px;
	padding-bottom: 170px;
	position: relative;
}

[class*="app-shot__shape-"] {
	position: absolute;
}

.app-shot__shape-2 {
	top: 3%;
	left: 12%;
	-webkit-animation-name: bubbleMover;
	animation-name: bubbleMover;
	-webkit-animation-timing-function: linear;
	animation-timing-function: linear;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
	animation-duration: 8s;
}

.app-shot__shape-1 {
	right: -231.5px;
	top: -90px;
	z-index: 11;
	-webkit-transform-origin: center bottom;
	transform-origin: center bottom;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-animation-name: bounce;
	animation-name: bounce;
	-webkit-animation-timing-function: ease-out;
	animation-timing-function: ease-out;
	-webkit-animation-duration: 5s;
	animation-duration: 5s;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
}

.app-shot-one__bg {
	position: absolute;
	bottom: 25%;
	left: 0;
}

.app-shot-one .container-fluid {
	max-width: 1595px;
	width: 100%;
	position: relative;
}

.app-shot-one .app-shot-one__carousel {
	padding-top: 100.5px;
	padding-bottom: 100.5px;
	margin-top: -20px;
}

.app-shot-one .app-shot-one__carousel:before {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	background-image: url(../images/shapes/app-screen-moc6.png);
	background-position: center center;
	background-repeat: no-repeat;
	width: 305px;
	height: 651px;
	background-size: 100% auto;
	box-shadow: 0px 0px 60px 0px rgba(5, 5, 6, 0.05);
}

@media (max-width: 1440px) {
	.app-shot-one .app-shot-one__carousel:before {
		-webkit-transform: translate(-50%, -49%) scaleY(0.95);
		transform: translate(-50%, -49%) scaleY(0.95);
	}
}

@media (max-width: 1280px) {
	.app-shot-one .app-shot-one__carousel:before {
		-webkit-transform: translate(-50%, -49%) scale(0.8);
		transform: translate(-50%, -49%) scale(0.8);
	}
}

.app-shot-one .app-shot-one__carousel .owl-dots {
	position: absolute;
	bottom: -60px;
	left: 0;
	text-align: center;
	z-index: 10;
	width: 100%;
}

.app-shot-one .app-shot-one__carousel .owl-dots .owl-dot span {
	width: 7px;
	height: 7px;
	background-color: #30283d;
	-webkit-transform: scale(1);
	transform: scale(1);
	opacity: 0.2;
	margin: 0 3px;
	-webkit-transition: opacity 0.4s ease, background 0.4s ease,
		-webkit-transform 0.4s ease;
	transition: opacity 0.4s ease, background 0.4s ease,
		-webkit-transform 0.4s ease;
	transition: transform 0.4s ease, opacity 0.4s ease, background 0.4s ease;
	transition: transform 0.4s ease, opacity 0.4s ease, background 0.4s ease,
		-webkit-transform 0.4s ease;
}

.app-shot-one .app-shot-one__carousel .owl-dots .owl-dot:hover span,
.app-shot-one .app-shot-one__carousel .owl-dots .owl-dot.active span {
	opacity: 1;
	background-color: #ee464b;
	-webkit-transform: scale(1.285);
	transform: scale(1.285);
}

.app-shot-one .owl-item img {
	-webkit-transition: -webkit-transform 0.4s ease;
	transition: -webkit-transform 0.4s ease;
	transition: transform 0.4s ease;
	transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}

/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/

.pricing-one {
	position: relative;
}

.pricing-one__normal-layout .container {
	position: relative;
	z-index: 20;
}

.pricing-one__sep {
	width: 100%;
	height: 1px;
	background-color: #e8e8ef;
	display: block;
	margin-bottom: 120px;
}

.pricing-one__single {
	text-align: center;
	border-style: solid;
	border-width: 1px;
	border-color: #dae2f6;
	background-color: #ffffff;
	box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
	padding-left: 20px;
	padding-right: 20px;
	transition: all 500ms ease;
}

.pricing-one__single:hover {
	background-color: #272839;
	border-color: #272839;
}

.pricing-one__inner {
	position: relative;
	overflow: hidden;
	padding-top: 60px;
	padding-bottom: 20px;
}

.pricing-one__icon {
	position: relative;
	color: #fff;
	font-size: 64px;
}

.pricing-one__bottom {
	background-color: #f4f7ff;
	padding-top: 45px;
	padding-bottom: 50px;
	margin-top: 50px;
	translation: all 500ms ease;
}

.pricing-one__single:hover .pricing-one__bottom {
	background-color: rgba(244, 247, 255, 0.05);
}

.pricing-one__single h3 {
	margin: 0;
	color: #272839;
	font-size: 60px;
	font-weight: 400;
	position: relative;
	line-height: 1em;
	margin-top: 5px;
	transition: all 500ms ease;
}

.pricing-one__single:hover h3 {
	color: #fff;
}

.pricing-one__icon-wrap {
	width: 130px;
	height: 130px;
	background-color: #a92da5;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	margin-left: auto;
	margin-right: auto;
	overflow: hidden;
	margin-bottom: 30px;
	position: relative;
}

.pricing-one__icon-wrap::before,
.pricing-one__icon-wrap::after {
	content: "";
	width: 100%;
	height: 100%;
	background-color: #fff;
	opacity: 0.1;
	position: absolute;
	top: -35%;
	right: -35%;
	border-radius: 50%;
	transform: scale(0);
	transform-origin: right center;
	transition: transform 500ms ease 0ms;
}

.pricing-one__single:hover .pricing-one__icon-wrap::after,
.pricing-one__single:hover .pricing-one__icon-wrap::before {
	transform: scale(1);
}

.pricing-one__icon-wrap::after {
	top: -50%;
	right: -50%;
	transition-delay: 200ms;
}

.pricing-one__single p {
	margin: 0;
	font-size: 16px;
	font-weight: 700;
	color: #7c7d8a;
	text-transform: uppercase;
	letter-spacing: 0.2em;
	position: relative;
	line-height: 1em;
	transition: all 500ms ease;
}

.pricing-one__single:hover p {
	color: #c6c6cd;
}

.pricing-one__line {
	position: absolute;
	top: 0;
	left: 45px;
	max-width: none !important;
	height: auto !important;
}

.pricing-one__list {
	margin-bottom: 50px;
	position: relative;
}

.pricing-one__list li {
	line-height: 1em;
	font-size: 18px;
	font-weight: 500;
	color: #7c7d8a;
	transition: all 500ms ease;
}

.pricing-one__single:hover .pricing-one__list li {
	color: #c6c6cd;
}

.pricing-one__list li i {
	color: #272839;
	font-size: 14px;
	margin-right: 5px;
	transition: all 500ms ease;
}

.pricing-one__single:hover .pricing-one__list li i {
	color: #c6c6cd;
}

.pricing-one__list li + li {
	margin-top: 20px;
}

.pricing-one__single span {
	display: block;
	text-transform: uppercase;
	line-height: 1em;
	color: #7c7d8a;
	font-weight: 500;
	position: relative;
	font-size: 12px;
	letter-spacing: 0.2em;
	margin-top: 20px;
	transition: all 500ms ease;
}

.pricing-one__single:hover span {
	color: #c6c6cd;
}

.pricing-one__btn {
	position: relative;
	background-color: #a92da5;
	background-image: none;
}

.pricing-one__btn:hover {
	background-color: #fff !important;
	color: #272839;
}

.pricing-one .block-title {
	margin-bottom: 30px;
}

.pricing-one .switch {
	position: relative;
	display: inline-block;
	width: 79px;
	height: 36px;
	vertical-align: middle;
	margin: 0;
}

.pricing-one .switch input {
	display: none;
}

.pricing-one .slider {
	position: absolute;
	cursor: pointer;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	-webkit-transition: 0.4s;
	transition: 0.4s;
	background-color: #fe9c39;
}

.pricing-one .slider:before {
	position: absolute;
	content: "";
	height: 26px;
	width: 26px;
	left: 6px;
	top: 50%;
	-webkit-transform: translateY(-50%) translateX(0px);
	transform: translateY(-50%) translateX(0px);
	background-color: #fff;
	-webkit-transition: 0.4s;
	transition: 0.4s;
}

.pricing-one .switch.off .slider:before {
	-webkit-transform: translateY(-50%) translateX(42px);
	transform: translateY(-50%) translateX(42px);
}

.pricing-one .slider.round {
	border-radius: 34px;
}

.pricing-one .slider.round:before {
	border-radius: 50%;
}

.pricing-one ul.switch-toggler-list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	margin-bottom: 50px;
}

.pricing-one ul.switch-toggler-list li a {
	font-size: 18px;
	font-weight: 500;
	color: #7c7d8a;
	padding-left: 10px;
	padding-right: 10px;
	display: block;
}

.pricing-one ul.switch-toggler-list li:first-child {
	order: 0;
}

.pricing-one ul.switch-toggler-list li:last-child {
	order: 1;
}

.pricing-one ul.switch-toggler-list li:nth-child(2) {
	order: 2;
}

.pricing-one ul.switch-toggler-list li.active a {
	color: var(--thm-black);
}

.pricing-one .animated {
	animation-duration: 1500ms;
}

.pricing-home-two {
	position: relative;
}

.pricing-home-two .pricing-one {
	padding-top: 40px;
}

.pricing-home-two .pricing-one .container {
	position: relative;
	z-index: 12;
}

.pricing-home-two .pricing-one__sep {
	display: none;
}

[class*="pricing-one__shape-"] {
	position: absolute;
}

.pricing-one__shape-1 {
	top: 40px;
	right: 140px;
	-webkit-transform-origin: center bottom;
	transform-origin: center bottom;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-animation-name: banner3Shake;
	animation-name: banner3Shake;
	-webkit-animation-timing-function: ease-out;
	animation-timing-function: ease-out;
	-webkit-animation-duration: 5s;
	animation-duration: 5s;
	-webkit-animation-delay: 1s;
	animation-delay: 1s;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
}

.pricing-one__shape-2 {
	top: -30px;
	left: -300px;
	-webkit-transform-origin: center bottom;
	transform-origin: center bottom;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-animation-name: bounce;
	animation-name: bounce;
	-webkit-animation-timing-function: ease-out;
	animation-timing-function: ease-out;
	-webkit-animation-duration: 5s;
	animation-duration: 5s;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
}

/* color customize */

[class*="col-"]:nth-child(2) .pricing-one__icon-wrap {
	background-color: #ee464b;
}

[class*="col-"]:nth-child(2) .pricing-one__btn {
	background-color: #ee464b;
}

[class*="col-"]:nth-child(3) .pricing-one__icon-wrap {
	background-color: #53b024;
}

[class*="col-"]:nth-child(3) .pricing-one__btn {
	background-color: #53b024;
}

/*--------------------------------------------------------------
# Funfact
--------------------------------------------------------------*/

.funfact-one {
	padding-top: 110px;
	padding-bottom: 115px;
	position: relative;
}

[class*="funfact-one__shape-"] {
	position: absolute;
	display: none;
}

@media (min-width: 576px) {
	[class*="funfact-one__shape-"] {
		display: block;
	}
}

.funfact-one__shape-1 {
	top: 20px;
	left: 0;
}

.funfact-one__shape-2 {
	bottom: -10%;
	left: 14%;
	z-index: 11;
	-webkit-transform-origin: center bottom;
	transform-origin: center bottom;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-animation-name: banner3Shake;
	animation-name: banner3Shake;
	-webkit-animation-timing-function: ease-out;
	animation-timing-function: ease-out;
	-webkit-animation-duration: 5s;
	animation-duration: 5s;
	-webkit-animation-delay: 1s;
	animation-delay: 1s;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
}

.funfact-one__shape-3 {
	bottom: -100%;
	right: 4%;
	-webkit-animation-name: shapeMover;
	animation-name: shapeMover;
	-webkit-animation-duration: 9s;
	animation-duration: 9s;
	-webkit-animation-timing-function: linear;
	animation-timing-function: linear;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
}

.funfact-one__single {
	display: flex;
	border: 1px solid #dae2f6;
	padding: 30px;
	background-color: #fff;
	align-items: center;
	box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
}

.funfact-one__icon {
	width: 85px;
	height: 85px;
	position: relative;
	background-color: #f8e5f7;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-right: 20px;
	transition: all 500ms ease;
	flex-shrink: 0;
}

.funfact-one__icon::before,
.funfact-one__icon::after {
	content: "";
	width: 100%;
	height: 100%;
	background-color: #fff;
	opacity: 0.1;
	position: absolute;
	top: -35%;
	right: -35%;
	border-radius: 50%;
	transform: scale(0);
	transform-origin: right center;
	transition: transform 500ms ease 0ms;
}

.funfact-one__single:hover .funfact-one__icon::after,
.funfact-one__single:hover .funfact-one__icon::before {
	transform: scale(1);
}

.funfact-one__icon::after {
	top: -50%;
	right: -50%;
	transition-delay: 200ms;
}

.funfact-one__icon i {
	position: relative;
	color: #a92da5;
	font-size: 32px;
	transition: all 500ms ease;
}

.funfact-one__single:hover .funfact-one__icon i {
	color: #fff !important;
}

.funfact-one__content h3 {
	margin: 0;
	font-size: 26px;
	color: #272839;
	font-weight: 600;
	line-height: 1;
	margin-bottom: 10px;
}

.funfact-one__content p {
	margin: 0;
	font-size: 16px;
	line-height: 1;
	color: #7c7d8a;
	font-weight: 600;
}

/* color customize */

[class*="col-"]:nth-child(1) .funfact-one__icon {
	background-color: #f8e5f7;
}

[class*="col-"]:nth-child(1) .funfact-one__icon i {
	color: #a92da5;
}

[class*="col-"]:nth-child(1) .funfact-one__single:hover .funfact-one__icon {
	background-color: #a92da5;
}

[class*="col-"]:nth-child(2) .funfact-one__icon {
	background-color: #f1fafe;
}

[class*="col-"]:nth-child(2) .funfact-one__icon i {
	color: #1393cf;
}

[class*="col-"]:nth-child(2) .funfact-one__single:hover .funfact-one__icon {
	background-color: #1393cf;
}

[class*="col-"]:nth-child(3) .funfact-one__icon {
	background-color: #ffeaeb;
}

[class*="col-"]:nth-child(3) .funfact-one__icon i {
	color: #ee464b;
}

[class*="col-"]:nth-child(3) .funfact-one__single:hover .funfact-one__icon {
	background-color: #ee464b;
}

[class*="col-"]:nth-child(4) .funfact-one__icon {
	background-color: #fcedde;
}

[class*="col-"]:nth-child(4) .funfact-one__icon i {
	color: #fe9c39;
}

[class*="col-"]:nth-child(4) .funfact-one__single:hover .funfact-one__icon {
	background-color: #fe9c39;
}

/* funfact two */

.funfact-two {
	position: relative;
	z-index: 15;
}

[class*="funfact-two__shape-"] {
	position: absolute;
}

.funfact-two__shape-1 {
	top: -120px;
	left: 0;
}

.funfact-two__shape-2 {
	top: -170px;
	left: 160px;
}

.funfact-two__shape-3 {
	top: -90px;
	right: -231px;
	-webkit-transform-origin: center bottom;
	transform-origin: center bottom;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-animation-name: bounce;
	animation-name: bounce;
	-webkit-animation-timing-function: ease-out;
	animation-timing-function: ease-out;
	-webkit-animation-duration: 5s;
	animation-duration: 5s;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
}

.funfact-two .block-title {
	margin-bottom: 20px;
}

.funfact-two__single {
	position: relative;
	border-radius: 50%;
	background-color: white;
	width: 220px;
	height: 220px;
	margin-left: auto;
	margin-right: auto;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	overflow: hidden;
}

.funfact-two__single-outer {
	width: 220px;
	height: 220px;
	margin-left: auto;
	margin-right: auto;
	border-radius: 50%;
	-webkit-box-shadow: 0px 10px 60px 0px rgba(37, 39, 88, 0.05);
	box-shadow: 0px 10px 60px 0px rgba(37, 39, 88, 0.05);
	margin-top: 40px;
}

.funfact-two__single:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: -webkit-gradient(
		linear,
		left top,
		right top,
		from(#5128c4),
		color-stop(50%, #7541d1),
		to(#b16aeb)
	);
	background-image: linear-gradient(
		90deg,
		#5128c4 0%,
		#7541d1 50%,
		#b16aeb 100%
	);
	border-radius: 50%;
	-webkit-transform: scale(0, 0);
	transform: scale(0, 0);
	-webkit-transition: -webkit-transform 0.4s ease;
	transition: -webkit-transform 0.4s ease;
	transition: transform 0.4s ease;
	transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}

.funfact-two__single:before {
	-webkit-transform: scale(1, 1);
	transform: scale(1, 1);
}

.funfact-two [class*="col-"]:nth-child(1) .funfact-two__single:before {
	background-image: linear-gradient(90deg, #4453ac 0%, #03a9db 100%);
}

.funfact-two [class*="col-"]:nth-child(2) .funfact-two__single:before {
	background-image: linear-gradient(90deg, #e41256 0%, #ffa337 100%);
}

.funfact-two [class*="col-"]:nth-child(3) .funfact-two__single:before {
	background-image: linear-gradient(90deg, #4a0e8f 0%, #b430a7 100%);
}

.funfact-two [class*="col-"]:nth-child(4) .funfact-two__single:before {
	background-image: linear-gradient(90deg, #0349a6 0%, #15c27b 100%);
}

.funfact-two__title {
	margin: 0;
	color: #252758;
	font-size: 50px;
	line-height: 1em;
	position: relative;
	font-weight: 500;
	-webkit-transition: all 0.4s ease;
	transition: all 0.4s ease;
}

.funfact-two__tag-line {
	color: #ffffff;
	font-size: 18px;
	margin: 0;
	line-height: 1em;
	margin-top: 20px;
	position: relative;
	-webkit-transition: all 0.4s ease;
	transition: all 0.4s ease;
	font-weight: 400;
}

.funfact-two__single .funfact-two__title,
.funfact-two__single .funfact-two__tag-line {
	color: #fff;
}

[class*="funfact-two__dot-"] {
	position: absolute;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background-color: #ffffff;
	opacity: 0.3;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-animation-name: dotsAnim;
	animation-name: dotsAnim;
	-webkit-animation-timing-function: cubic-bezier(0.39, 0.58, 0.57, 1);
	animation-timing-function: cubic-bezier(0.39, 0.58, 0.57, 1);
	-webkit-animation-duration: 5s;
	animation-duration: 5s;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
}

.funfact-two__dot-1 {
	top: 45px;
	left: 60px;
}

.funfact-two__dot-2 {
	left: 45px;
	bottom: 60px;
}

.funfact-two__dot-3 {
	right: 45px;
	top: 120px;
}

.funfact-one__boxed {
	background-color: #fff;
	background-image: none;
	max-width: 1410px;
	box-shadow: 0px -18px 50px 0px rgb(0, 0, 0, 0.1);
	margin-left: auto;
	margin-right: auto;
	position: relative;
	z-index: 22;
	padding-top: 50px;
	padding-bottom: 50px;
}

.funfact-one__boxed::before {
	content: "";
	width: calc(100% - 120px);
	bottom: -30px;
	height: 100%;
	background-color: #f4f7ff;
	transform: translateX(-50%);
	position: absolute;
	left: 50%;
	z-index: 1;
}

.funfact-one__boxed::after {
	content: "";
	background-color: #fff;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 2;
}

.funfact-one__boxed .container {
	position: relative;
	z-index: 10;
}

.funfact-one__boxed .funfact-one__single {
	padding: 30px 0;
	border: 0;
	box-shadow: none;
}

.funfact-one__boxed [class*="col-"] + [class*="col-"] {
	border-left: 1px solid #dae2f6;
}

.funfact-one__boxed [class*="col-"] + [class*="col-"] .funfact-one__single {
	padding-left: 40px;
}

/*--------------------------------------------------------------
# Video
--------------------------------------------------------------*/

.video-one__box {
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	position: relative;
	min-height: 581px;
	overflow: hidden;
}

.video-one__content {
	width: 493px;
	height: 493px;
	background-color: #ee464b;
	position: absolute;
	bottom: 50%;
	left: 50%;
	transform: translate(-50%, 50%);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	text-align: center;
	width: 100%;
	padding: 30px;
	height: 350px;
}

@media (min-width: 768px) {
	.video-one__content {
		height: 493px;
		width: 493px;
	}
}

@media (min-width: 1200px) {
	.video-one__content {
		bottom: -115px;
		left: -45px;
		align-items: flex-end;
		justify-content: flex-start;
		flex-direction: row;
		padding-left: 103px;
		padding-bottom: 173px;
		transform: translate(0%, 0%);
		text-align: left;
	}
}

.video-one__content::before {
	content: "";
	width: 100%;
	height: 100%;
	background-color: #272839;
	opacity: 0.2;
	position: absolute;
	left: 80px;
	bottom: 100px;
	border-radius: 50%;
	z-index: 7;
}

.video-one__content::after {
	content: "";
	width: 100%;
	height: 100%;
	border-radius: 50%;
	background-color: #ee464b;
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: 8;
}

.video-one__content h3 {
	font-weight: 700;
	color: #fff;
	font-size: 50px;
	margin: 0;
	position: relative;
	z-index: 10;

	line-height: 1.3em;
}

@media (min-width: 1200px) {
	.video-one__content h3 {
		line-height: 50px;
	}
}

.video-one__content .video-popup {
	width: 89px;
	height: 89px;
	border-radius: 50%;
	background-color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	color: var(--thm-black);
	font-size: 18px;
	flex-shrink: 0;
	margin-bottom: 40px;
	z-index: 10;
	position: relative;
	top: auto;
	right: auto;
	margin-left: auto;
	margin-right: auto;
	transition: color 500ms ease, background-color 500ms ease;
}

.video-one__content .video-popup:hover {
	background-color: var(--thm-black);
	color: #fff;
}

@media (min-width: 1200px) {
	.video-one__content .video-popup {
		position: absolute;
		top: 22.5px;
		right: 22.5px;
		margin-left: 0;
		margin-right: 0;
	}
}

.video-one__content .video-popup::before {
	content: "";
	position: absolute;
	width: 124px;
	height: 124px;
	border-radius: 50%;
	border: 2px solid #fff;
	opacity: 0.4;
	top: calc(50% - 62px);
	left: calc(50% - 62px);
	-webkit-animation: videoBtnAnim 3s ease-in infinite;
	animation: videoBtnAnim 3s ease-in infinite;
}

.video-one__content .video-popup::after {
	content: "";
	position: absolute;
	width: 160px;
	height: 160px;
	border-radius: 50%;
	border: 2px solid #fff;
	opacity: 0.15;
	top: calc(50% - 80px);
	left: calc(50% - 80px);
	-webkit-animation: videoBtnAnim 5s ease-in-out infinite;
	animation: videoBtnAnim 5s ease-in-out infinite;
}

@keyframes videoBtnAnim {
	0% {
		-webkit-transform: scale(0.8);
		transform: scale(0.8);
	}

	25% {
		-webkit-transform: scale(1);
		transform: scale(1);
	}

	50% {
		-webkit-transform: scale(1.2);
		transform: scale(1.2);
	}

	75% {
		-webkit-transform: scale(1);
		transform: scale(1);
	}

	100% {
		-webkit-transform: scale(0.8);
		transform: scale(0.8);
	}
}

/* video two */

.video-two {
	background-color: #272839;
	padding-top: 130px;
	padding-bottom: 180px;
}

.video-two .jarallax-img {
	opacity: 0.5;
}

.video-two__content h3 {
	margin: 0;
	font-size: 60px;
	font-weight: bold;
	color: #ffffff;
	margin-top: 40px;
}

.video-two__content .video-popup {
	width: 89px;
	height: 89px;
	border-radius: 50%;
	background-color: #fe9c39;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	color: #ffffff;
	font-size: 20px;
	flex-shrink: 0;
	z-index: 10;
	position: relative;
	margin-left: auto;
	margin-right: auto;
	transition: color 500ms ease, background-color 500ms ease;
}

.video-two__content .video-popup:hover {
	background-color: var(--thm-black);
	color: #fff;
}

.video-two__content .video-popup::before {
	content: "";
	position: absolute;
	width: 124px;
	height: 124px;
	border-radius: 50%;
	border: 2px solid #fff;
	opacity: 0.4;
	top: calc(50% - 62px);
	left: calc(50% - 62px);
	-webkit-animation: videoBtnAnim 3s ease-in infinite;
	animation: videoBtnAnim 3s ease-in infinite;
}

.video-two__content .video-popup::after {
	content: "";
	position: absolute;
	width: 160px;
	height: 160px;
	border-radius: 50%;
	border: 2px solid #fff;
	opacity: 0.15;
	top: calc(50% - 80px);
	left: calc(50% - 80px);
	-webkit-animation: videoBtnAnim 5s ease-in-out infinite;
	animation: videoBtnAnim 5s ease-in-out infinite;
}

/*--------------------------------------------------------------
# Call to action four
--------------------------------------------------------------*/

.cta-four {
	background-repeat: no-repeat;
	background-size: cover;
	background-position: top left;
	padding-top: 430px;
	padding-bottom: 390px;
}

.cta-four__about .cta-four {
	padding-top: 90px;
	padding-bottom: 120px;
	background-color: #fff !important;
}

[class*="cta-four__bg-shape-"] {
	position: absolute;
}

.cta-four__bg-shape-1 {
	bottom: 190px;
	right: 0;
}

.cta-four__about .cta-four__bg-shape-1 {
	bottom: 65px;
}

.cta-four__bg-shape-2 {
	bottom: 145px;
	right: 0;
	-webkit-transform-origin: center bottom;
	transform-origin: center bottom;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-animation-name: banner3Shake;
	animation-name: banner3Shake;
	-webkit-animation-timing-function: ease-out;
	animation-timing-function: ease-out;
	-webkit-animation-duration: 5s;
	animation-duration: 5s;
	-webkit-animation-delay: 1s;
	animation-delay: 1s;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
}

.cta-four__about .cta-four__bg-shape-2 {
	bottom: -65px;
	right: 24px;
}

.cta-four__bg-shape-3 {
	top: 135px;
	left: 180px;
	-webkit-animation-name: bubbleMover;
	animation-name: bubbleMover;
	-webkit-animation-timing-function: linear;
	animation-timing-function: linear;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
	animation-duration: 12s;
}

.cta-four__image {
	position: relative;
	right: 30px;
}

.cta-four__content .block-title {
	margin-bottom: 35px;
}

.cta-four__content > p {
	margin: 0;
	color: #7c7d8a;
	font-size: 18px;
	line-height: 34px;
}

.cta-four__content ul {
	margin: 0;
	margin-top: 35px;
	margin-bottom: 50px;
}

.cta-four__content ul li {
	position: relative;
	color: #7c7d8a;
	font-size: 18px;
	line-height: 34px;
	padding-left: 25px;
}

.cta-four__content ul li > i {
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	color: #ee464b;
}

.cta-four__btn {
	background-color: #ee464b;
	background-image: none;
}

.cta-four__btn:hover {
	background-color: var(--thm-black);
}

/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/

.team-one {
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	padding-top: 120px;
	padding-bottom: 90px;
	position: relative;
}

[class*="team-one__bg-shape-"] {
	position: absolute;
}

.team-one__bg-shape-1 {
	top: 60px;
	left: 145px;
	-webkit-animation-name: bubbleMover;
	animation-name: bubbleMover;
	-webkit-animation-timing-function: linear;
	animation-timing-function: linear;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
	animation-duration: 12s;
}

.team-one .container {
	position: relative;
}

.team-one__single {
	text-align: center;
	margin-bottom: 20px;
	max-width: 270px;
	margin-left: auto;
	margin-right: auto;
	position: relative;
}

.team-one__image {
	overflow: hidden;
	background-color: var(--thm-black);
	position: relative;
}

/*
[class*="col-"]:nth-child(2) .team-one__image {
  background-color: #1393cf;
}

[class*="col-"]:nth-child(3) .team-one__image {
  background-color: #ee464b;
}

[class*="col-"]:nth-child(4) .team-one__image {
  background-color: #fe9c39;
} */

.team-one__single .team-one__image {
	transition: all 500ms ease;
}

.team-one__single .team-one__image > img {
	width: 100%;
	transition: all 500ms ease;
	opacity: 1;
}

.team-one__single:hover .team-one__image {
	background-color: var(--thm-black) !important;
}

.team-one__single:hover .team-one__image > img {
	opacity: 0.6;
}

.team-one__content {
	background-color: #fff;
	border: 1px solid #dae2f6;
	border-top: 0;
	padding-top: 20px;
	padding-bottom: 20px;
	opacity: 1;
	visibility: visible;
	transform: scale(1, 1);
	transform-origin: top center;
	box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
	transition: transform 500ms ease, opacity 500ms ease, visibility 500ms ease;
}

.team-one__single:hover .team-one__content {
	transform: scale(1, 0);
	opacity: 0;
	visibility: hidden;
	transition: transform 500ms ease, opacity 500ms ease, visibility 500ms ease;
}

.team-one__hover h3,
.team-one__content h3 {
	color: #272839;
	font-size: 22px;
	font-weight: 600;
	margin: 0;
	line-height: 1.4;
}

.team-one__hover p,
.team-one__content p {
	margin: 0;
	color: #7c7d8a;
	font-size: 16px;
	font-weight: 500;
}

.team-one__hover {
	background-color: #fff;
	border: 1px solid #dae2f6;
	border-top: 0;
	padding-top: 20px;
	padding-bottom: 30px;
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	opacity: 0;
	visibility: hidden;
	transform: scale(1, 0);
	transform-origin: top center;
	box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
	transition: transform 500ms ease, opacity 500ms ease, visibility 500ms ease;
}

@media (min-width: 1200px) {
	.team-one__hover {
		bottom: -64px;
	}
}

.team-one__single:hover .team-one__hover {
	transform: scale(1, 1);
	opacity: 1;
	visibility: visible;
	transition: transform 500ms ease, opacity 500ms ease, visibility 500ms ease;
}

.team-one__social {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 10px;
}

.team-one__social a {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #a82da4;
	color: #fff;
	font-size: 16px;
	background-size: 200% auto;
	transition: all 500ms ease;
}

.team-one__social a:hover {
	background-color: var(--thm-black) !important;
	color: #fff;
}

.team-one__social a + a {
	margin-left: 10px;
}

.team-one__social a:nth-child(1) {
	background-color: #a82da4;
}

.team-one__social a:nth-child(2) {
	background-color: #1393cf;
}

.team-one__social a:nth-child(3) {
	background-color: #ee464b;
}

.team-one__social a:nth-child(4) {
	background-color: #fe9c39;
}

/*--------------------------------------------------------------
# Gallery
--------------------------------------------------------------*/

.gallery-one__single {
	position: relative;
	margin-bottom: 30px;
	overflow: hidden;
}

.gallery-one__single img {
	width: 100%;
	-webkit-transform: scale(1);
	transform: scale(1);
	-webkit-transition: -webkit-transform 0.4s ease;
	transition: -webkit-transform 0.4s ease;
	transition: transform 0.4s ease;
	transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}

.gallery-one__content {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	color: #fff;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: -webkit-box;
	display: flex;
	-webkit-box-align: center;
	align-items: center;
	-webkit-box-pack: center;
	justify-content: center;
	text-align: center;
	opacity: 0;
	-webkit-transition: opacity 0.4s ease;
	transition: opacity 0.4s ease;
}

.gallery-one__content:before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	opacity: 0.9;
	background-color: #ee464b;
}

.gallery-one__content .image-link {
	color: #fff;
	position: relative;
	font-size: 80px;
	font-weight: 300;
}

.gallery-one__single:hover img {
	-webkit-transform: scale(1.05);
	transform: scale(1.05);
}

.gallery-one__single:hover .gallery-one__content {
	opacity: 1;
}

/* service widgets */

.service-widget__menu ul {
	margin: 0;
	padding: 0;
	list-style: none;
	border: 1px solid #e8e8ef;
}

.service-widget__menu ul li a {
	color: #7c7d8a;
	font-size: 18px;
	font-weight: 500;
	border-bottom: 1px solid #e8e8ef;
	display: block;
	padding-left: 50px;
	padding-right: 50px;
	line-height: 79px;
	transition: all 500ms ease;
}

.service-widget__menu ul li.current_page_item a,
.service-widget__menu ul li a:hover {
	background-color: #f4f4f8;
	color: #ee464b;
}

.service-widget__menu ul li.current_page_item a i,
.service-widget__menu ul li a:hover i {
	color: #7c7d8a;
}

.service-widget__menu ul li:last-child a {
	border-bottom: 0;
}

.service-widget__menu ul li a::before {
	content: "\f105";
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	margin-right: 15px;
}

.service-widget__cta {
	margin-top: 30px;
	margin-bottom: 30px !important;
	background-color: #2a2d3b;
	padding: 50px;
}

.service-widget__cta h3 {
	margin: 0;
	font-size: 22px;
	font-weight: 600;
	color: #fff;
	margin-top: -7px;
	margin-bottom: 20px;
}

.service-widget__cta p {
	font-size: 17px;
	line-height: 36px;
	color: #ffffff;
	font-weight: 500;
	margin: 0;
}

.service-widget__cta .call-box {
	display: flex;
	align-items: center;
	margin-top: 30px;
}

.service-widget__cta .call-box i {
	width: 56px;
	height: 56px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	font-size: 26px;
	color: #fff;
	border-radius: 50%;
	background-color: #fe9c39;
	margin-right: 15px;
	background-size: 200% auto;
}

.service-widget__cta .call-box a {
	font-size: 30px;
	font-weight: 600;
	color: #fff;
	line-height: 1;
}

.service-widget__btn {
	width: 100%;
	background-image: none;
	background-color: #ee464b;
}

.service-widget__btn:hover {
	background-color: var(--thm-black);
	color: #ffffff;
}

.service-page__faq .faq-one {
	padding: 0;
}

.service-page__faq .faq-one .container {
	padding-left: 0;
	padding-right: 0;
}

.service-page__faq .faq-accrodion .accrodion::after {
	display: none;
}

.service-page__faq .faq-accrodion .accrodion .accrodion-title {
	padding-left: 40px;
	padding-right: 40px;
}

.service-page__faq .faq-accrodion .accrodion .accrodion-content .inner {
	padding-left: 40px;
	padding-right: 40px;
}

.service-page__faq .faq-accrodion .accrodion .accrodion-title::after,
.service-page__faq .faq-accrodion .accrodion .accrodion-title::before {
	right: 40px;
}

.service-details__icon-wrap {
	display: flex;
	justify-content: flex-end;
	margin-right: 30px;
	margin-top: -70px;
}

.service-details__icon {
	width: 121px;
	height: 121px;
	border-radius: 50%;
	background-color: #1393cf;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	text-align: center;
	position: relative;
}

.service-details__icon i {
	color: #fff;
	font-size: 63px;
	position: relative;
}

.icon__list-style-two ul {
	display: grid;
	grid-row-gap: 15px;
	grid-template-columns: repeat(1, 1fr);
	margin-bottom: 40px;
	max-width: 470px;
	margin-top: 40px;
}

.icon__list-style-two ul li {
	position: relative;
	padding-left: 55px !important;
	padding-right: 30px !important;
	color: #272839;
	font-size: 16px;
	font-weight: 600;
	background-color: #fff;
	padding-top: 13.5px !important;
	padding-bottom: 13.5px !important;
	box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
}

.icon__list-style-two ul li i {
	position: absolute;
	top: 50%;
	left: 30px;
	transform: translateY(-50%);
	font-size: 18px;
	color: #1393cf !important;
}

/*--------------------------------------------------------------
# error 404
--------------------------------------------------------------*/

.error-404 {
	padding-bottom: 120px;
	padding-top: 120px;
}

.error-404__image {
	margin-bottom: 50px;
}

.error-404 h2 {
	margin: 0;
	color: #272839;
	font-size: 46px;
	font-weight: 800;
}

.error-404 p {
	margin: 0;
	color: #7c7d8a;
	font-weight: 300;
	font-size: 24px;
	margin-top: 20px;
	margin-bottom: 60px;
}

.error-404 .searchform {
	background-color: #f4f7ff;
	border-radius: 5px;
	width: 100%;
	max-width: 470px;
	display: flex;
	position: relative;
	margin-left: auto;
	margin-right: auto;
	align-items: center;
	margin-bottom: 20px;
	height: 70px;
}

.error-404 .searchform input[type="text"] {
	width: 100%;
	height: 100%;
	background-color: transparent;
	color: #7c7d8a;
	font-size: 16px;
	padding-left: 40px;
	font-weight: 500;
	border: none;
	outline: none;
}

.error-404 .searchform ::placeholder {
	color: #7c7d8a;
	opacity: 1;
}

.error-404 .searchform button[type="submit"] {
	width: auto;
	border: none;
	outline: none;
	background-color: transparent;
	color: #272839;
	font-size: 16px;
	position: absolute;
	top: 50%;
	right: 40px;
	transform: translateY(-50%);
}

.error-404 .thm-btn {
	background-color: #ee464b;
	background-image: none;
}

.error-404 .thm-btn:hover {
	background-color: var(--thm-black);
	color: #fff;
}

/* sidebar Customize */

#categories-2 {
}

#categories-2 ul li > a {
	position: relative;
	display: block;
	width: 100%;
}

#categories-2 ul li > a::before {
	content: "\f105";
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
}

#search-2 {
	padding: 0;
	background-color: #a82da4;
}

#search-2 .searchform {
	background-color: transparent;
}

#search-2
	.searchform
	input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]) {
	background-color: transparent;
	color: #fff;
	padding-left: 40px;
	height: 70px;
}

#search-2 .searchform ::placeholder {
	opacity: 1;
	color: #fff;
}

#search-2 .searchform button[type="submit"] {
	color: #fff;
	right: 35px;
}

.sidebar-single.widget_smart_recent_entries .srpw-ul li {
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
	margin-top: 0;
}

.sidebar-single.widget_smart_recent_entries .srpw-ul li a img {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	position: relative;
	top: 5px;
}

.sidebar-single.widget_smart_recent_entries .srpw-ul li .srpw-content {
	width: calc(100% - 80px);
}

.sidebar-single.widget_smart_recent_entries
	.srpw-ul
	li
	.srpw-content
	.srpw-title {
	font-size: 16px;
	line-height: 24px;
	color: #7c7d8a;
	font-weight: 600;
	text-transform: capitalize;
	margin-bottom: 5px;
	display: block;
	transition: all 500ms ease;
}

.sidebar-single.widget_smart_recent_entries
	.srpw-ul
	li
	.srpw-content
	.srpw-title:hover {
	color: var(--thm-base);
}

.sidebar-single.widget_smart_recent_entries .srpw-ul li .srpw-alignleft {
	margin-right: 20px;
}

.sidebar-single.widget_smart_recent_entries
	.srpw-ul
	li
	.srpw-content
	.srpw-meta {
	margin-top: 10px;
}

.sidebar-single.widget_smart_recent_entries
	.srpw-ul
	li
	.srpw-content
	.srpw-time {
	font-size: 14px;
}

/*--------------------------------------------------------------
# Feature One
--------------------------------------------------------------*/

.feature-one {
	background-color: #531191;
	background-image: linear-gradient(
		45deg,
		#531191 0%,
		#3333b0 48%,
		#1355cf 100%
	);
	padding-top: 120px;
	padding-bottom: 120px;
}

.feature-one .container {
	position: relative;
}

.feature-one .block-title h3 {
	color: #fff;
}

.feature-one__tab-content p {
	margin: 0;
	color: #fff;
	font-size: 18px;
	font-weight: 500;
	line-height: 34px;
}

.feature-one__list {
	margin-top: 40px;
	margin-bottom: 0;
}

.feature-one__list li {
	position: relative;
	color: #fff;
	font-size: 18px;
	font-weight: 500;
	padding-left: 27px;
}

.feature-one__list li + li {
	margin-top: 5px;
}

.feature-one__list li > i {
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	font-size: 18px;
	color: #fe9c39;
}

.feature-one .floated-text {
	margin: 0;
	text-transform: uppercase;
	line-height: 1;
	letter-spacing: 0.2em;
	color: #fff;
	opacity: 0.06;
	font-weight: 500;
	font-size: 200px;
	position: absolute;
	bottom: -65px;
	left: 0;
	width: 100%;
	text-align: center;
}

.feature-one__tab-title {
	margin-bottom: 0;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-column-gap: 10px;
	margin-bottom: 45px;
}

.feature-one__tab-title li {
	background-color: rgba(255, 255, 255, 0.3);
	color: #fff;
	font-size: 16px;
	font-weight: bold;
	text-align: center;
	padding-top: 10px;
	padding-bottom: 10px;
	cursor: pointer;
	transition: all 500ms ease;
}

.feature-one__tab-title li span {
	position: relative;
	top: -2px;
}

.feature-one__tab-title li:hover,
.feature-one__tab-title li.active {
	background: #fe9c39;
	color: #fff;
}

.feature-one__tab-content {
	display: none;
}

.feature-one__tab-content.active {
	display: block;
}

[class*="feature-one__shape-"] {
	position: absolute;
}

.feature-one__shape-1 {
	top: 80px;
	left: 200px;
	-webkit-animation-name: shapeMover;
	animation-name: shapeMover;
	-webkit-animation-duration: 9s;
	animation-duration: 9s;
	-webkit-animation-timing-function: linear;
	animation-timing-function: linear;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
	z-index: 1;
	animation-delay: 0s;
}

.feature-one__shape-2 {
	top: -181.5px;
	right: -192px;
}

.feature-one__shape-3 {
	top: 297px;
	left: -200px;
}

.feature-one__shape-4 {
	right: 55px;
	top: 335px;
	-webkit-transform-origin: center bottom;
	transform-origin: center bottom;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-animation-name: banner3Shake;
	animation-name: banner3Shake;
	-webkit-animation-timing-function: ease-out;
	animation-timing-function: ease-out;
	-webkit-animation-duration: 5s;
	animation-duration: 5s;
	-webkit-animation-delay: 1s;
	animation-delay: 1s;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
}

/*-----------------------
widget style update
----------------------------*/

.sidebar .widget_recent_entries ul li {
	display: flex;
	align-items: center;
	justify-content: flex-start;
}

.sidebar .widget_recent_entries ul li::before {
	content: "\f302";
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	font-size: 16px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #1393cf;
	width: 44px;
	height: 44px;
	color: #fff;
	margin-right: 20px;
	transition: all 500ms ease;
}

.sidebar .widget_recent_entries ul li:hover::before {
	background-color: var(--thm-black);
	color: #fff;
}

.sidebar .widget_recent_entries ul li:hover a {
	color: var(--thm-base);
}

.sidebar .widget_pages ul li > a,
.sidebar .widget_meta ul li > a,
.sidebar ul.menu li > a {
	position: relative;
	display: block;
	width: 100%;
}

.sidebar .widget_meta ul li > a::before,
.sidebar .widget_pages ul li > a::before,
.sidebar ul.menu li > a::before {
	content: "\f105";
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
}
