/*--------------------------------------------------------------
>>> 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
--------------------------------------------------------------*/


/*--------------------------------------------------------------
# Common
--------------------------------------------------------------*/

/*font-family: 'Barlow', sans-serif;*/

:root {
	--thm-font: 'Barlow', sans-serif;
	--thm-base: #ee464b;
	--thm-base-rgb: 238, 70, 75;
	--thm-black: #272839;
	--thm-black-rgb: 39, 40, 57;
	--thm-gray: #f4f4f8;
}


body {
	font-family: var(--thm-font);
	color: #7c7d8a;
	font-size: 18px;
	line-height: 34px;
	font-weight: 500;
}

a:active,
a:hover,
a:focus,
a:visited {
	text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--thm-font);
}

.page-wrapper {
	position: relative;
	margin: 0 auto;
	width: 100%;
	min-width: 300px;
	overflow: hidden;
}

@media (min-width: 1200px) {
	.container {
		max-width: 1200px;
	}
}

.block-title {
	margin-bottom: 50px;
}

.block-title__bubbles {
	position: relative;
	display: block;
	width: 19px;
	height: 27px;
	padding-bottom: 8px;
	margin-bottom: 15px;
}

.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: #ee464b;
	font-weight: 500;
	font-size: 18px;
}

.block-title h3 {
	margin: 0;
	color: var(--thm-black);
	font-weight: 800;
	font-size: 46px;
}


.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: 600;
	-webkit-transition: all .4s ease;
	transition: all .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 .4s ease;
	transition: all .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 a {
	border-radius: 50%;
	background-color: #fff;
	color: var(--thm-black);
	font-size: 18px;
	font-weight: 600;
	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 .4s ease;
	transition: all .4s ease;
}

@media(max-width: 480px) {
	.post-pagination a {
		width: 40px;
		height: 40px;
		font-size: 16px;
	}
}

.post-pagination a:hover {
	background-color: var(--thm-black);
	color: #fff;
}

.post-pagination a.active {
	background-color: var(--thm-base);
	color: #fff;
	cursor: auto;
}

.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 .4s ease;
	transition: all .4s ease;
	display: none;
	border-radius: 50%;
	transition: all .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);
}






/*--------------------------------------------------------------
# Main Menu
--------------------------------------------------------------*/


.main-nav__header-one {
	width: 100%;
	border-bottom: 1px solid rgba(255, 255, 255, .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 .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: 16px;
	font-weight: 500;
	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), .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;
	padding: 9px 45.25px;
}

.header__btn:hover {
	background-color: #fff;
	color: var(--thm-black);
}

.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 .4s ease;
	transition: all .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: 0;
	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: 50px;
	padding-bottom: 50px;
}

.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: uppercase;
	line-height: 80px;
	font-weight: 300;
	color: #fff;
	margin-top: 10px;
	margin-bottom: 25px;
}

.banner-one__content p {
	margin: 0;
	font-size: 18px;
	line-height: 32px;
	font-weight: 300;
	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: inline-block;
	background-color: rgba(0, 0, 0, .1);
	text-transform: uppercase;
	font-size: 11px;
	font-weight: 600;
	color: #ffffff;
	letter-spacing: .2em;
	border-radius: 5px;
	overflow: hidden;
	padding-left: 30px;
	line-height: 40px;
}

.banner-one__content .banner-one__tag-line a {
	display: inline-block;
	vertical-align: middle;
	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;
}

[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-3 {
	bottom: 19%;
	left: 6%;
}

.banner-one__shape-4 {
	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-5 {
	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-6 {
	bottom: 29%;
	right: 30%;
	-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;
}

.banner-one__shape-7 {
	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;
}



/*--------------------------------------------------------------
# Call to Action
--------------------------------------------------------------*/

.cta-one {
	position: relative;
	background-color: #fff;
	z-index: 10;
	padding-top: 65px;
}

[class*=cta-one__circle-] {
	position: absolute;
	opacity: 0.03;
	border-radius: 50%;
	background-color: var(--thm-black);
}

.cta-one__circle-1 {
	width: 999px;
	height: 999px;
	left: calc(50% - 499.5px);
	bottom: calc(0% - 499.5px);
}

.cta-one__circle-2 {
	width: 792px;
	height: 792px;
	left: calc(50% - 396px);
	bottom: calc(0% - 396px);
}

.cta-one__circle-3 {
	width: 613px;
	height: 613px;
	left: calc(50% - 306.5px);
	bottom: calc(0% - 306.5px);
}

.cta-one .container {
	position: relative;
	padding-top: 80px;
	padding-bottom: 120px;
}

.cta-one__content {
	position: relative;
}

.cta-one__content h3 {
	margin: 0;
	color: var(--thm-black);
	font-weight: 800;
	font-size: 46px;
}

.cta-one__content p {
	margin: 0;
	color: #7c7d8a;
	font-weight: 300;
	font-size: 24px;
	margin-top: 25px;
}

.cta-one__btn {
	background-image: linear-gradient(90deg, #15c27b 0%, #28a745 51%, #a0ffc2 100%);
	margin-top: 55px;
}

.cta-one__btn_2 {
	background-image: linear-gradient(90deg, #ee464b 0%, #dc3545 51%, #ef6161 100%);
	margin-top: 55px;
}

.cta-two {
	background-color: var(--thm-gray);
	padding-top: 120px;
	padding-bottom: 360px;
	position: relative;
	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: -6%;
	right: 9%;
	-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__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: 30px;
	right: -30px;
	animation: ImgBounce 10s ease-in-out 0s infinite alternate;
}

.cta-two__content .block-title {
	margin-bottom: 40px;
}

.cta-two__content>p {
	margin: 0;
	font-size: 18px;
	font-weight: 500;
	line-height: 34px;
	color: #7c7d8a;
	margin-bottom: 50px;
}

.cta-three {
	position: relative;
	padding-bottom: 120px;
}

.cta-three .container {
	position: relative;
}

[class*=cta-three__shape-] {
	position: absolute;
}

.cta-three__shape-1 {
	top: -14%;
	left: -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: -45px;
	left: -47px;
	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: 37.5px;
	top: 75px;
}

.cta-three__box:last-child::before {
	display: none;
}

.cta-three__box-icon i {
	width: 75px;
	background-image: linear-gradient(90deg, #4a0e8f 0%, #b430a7 51%, #4a0e8f 100%);
	height: 75px;
	border-radius: 50%;
	font-size: 44px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	color: #fff;
	position: relative;
	top: 5px;
	background-size: 200% auto;
	transition: all 500ms ease;
}

.cta-three__box:hover .cta-three__box-icon i {
	background-position: right center;
}

.cta-three__box:nth-child(1) .cta-three__box-icon i {
	background-image: linear-gradient(90deg, #4a0e8f 0%, #b430a7 51%, #4a0e8f 100%);

}

.cta-three__box:nth-child(2) .cta-three__box-icon i {
	background-image: linear-gradient(90deg, #4453ac 0%, #03a9db 51%, #4453ac 100%);

}

.cta-three__box-content {
	padding-left: 25px;
}

.cta-three__box-content h3 {
	margin: 0;
	font-size: 22px;
	font-weight: 600;
	margin-bottom: 15px;
	color: var(--thm-black);
}

.cta-three__box-content p {
	margin: 0;
	font-size: 18px;
	line-height: 34px;
	font-weight: 500;
}

.cta-three__btn {
	margin-top: 50px;
}

/*--------------------------------------------------------------
# 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;
	animation-delay: 0s;
}

.site-footer__shape-2 {
	bottom: 15%;
	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;
	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;
}

.site-footer .container {
	position: relative;
	z-index: 20;
}

.site-footer__upper {
	padding-bottom: 100px;
	padding-top: 140px;
}


/* footer bottom */

.site-footer__bottom .inner-container {
	border-top: 1px solid rgba(255, 255, 255, .1);
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-top: 39.5px;
	padding-bottom: 39.5px;
}

.site-footer__bottom .inner-container>p {
	margin: 0;
	font-size: 16px;
	font-weight: 500;
	color: #a3a4b3;
}

.site-footer__social {
	display: flex;
	align-items: center;
	justify-content: center;
}

.site-footer__social a {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	background-image: linear-gradient(90deg, #0349a6 0%, #15c27b 51%, #0349a6 100%);
	color: #fff;
	font-size: 16px;
	background-size: 200% auto;
	transition: all 500ms ease;
}

.site-footer__social a:hover {
	background-position: right center;
}

.site-footer__social a+a {
	margin-left: 10px;
}

.site-footer__social .fa-facebook-f {
	background-image: linear-gradient(90deg, #0349a6 0%, #15c27b 51%, #0349a6 100%);
}

.site-footer__social .fa-twitter {
	background-image: linear-gradient(90deg, #4453ac 0%, #03a9db 51%, #4453ac 100%);
}

.site-footer__social .fa-instagram {
	background-image: linear-gradient(90deg, #4a0e8f 0%, #b430a7 51%, #4a0e8f 100%);
}

.site-footer__social .fa-pinterest-p {
	background-image: linear-gradient(90deg, #e41256 0%, #ffa337 51%, #e41256 100%);

}
