/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Common
# Animations
# Main Menu
# Sidemenu
# Banner One
# Page Header
# Footer
# Blog One
	## Blog Grid
	## Blog Details
# Sidebar
# Contact
# Call to Action One
	## Call to Action Two
	## Call to Action Three
	## Call to Action Four
# FAQ
# App shots
# Funfact
# Testimonials
# Pricing
# Video
# Brand One
# Service One
--------------------------------------------------------------*/


/*--------------------------------------------------------------
# Common
--------------------------------------------------------------*/


/*
font-family: 'Quicksand', sans-serif;
*/

:root {
	--thm-font: 'Nunito', sans-serif;
	--thm-base: #ff864c;
	--thm-base-rgb: 255, 134, 76;
	--thm-primary: #1293c8;
	--thm-primary-rgb: 18, 147, 200;
	--thm-black: #3f1474;
	--thm-black-rgb: 63, 20, 116;
}


body {
	font-family: var(--thm-font);
	color: #8b7f9a;
	font-size: 18px;
	line-height: 36px;
	font-weight: 600;
	letter-spacing: -.02em;
}

a:active,
a:hover,
a:focus,
a:visited {
	text-decoration: none;
}


.page-wrapper {
	position: relative;
	margin: 0 auto;
	width: 100%;
	min-width: 300px;
	overflow: hidden;
}

@media (min-width: 1200px) {
	.container {
		max-width: 1200px;
	}
}

/* block title */

.block-title {
	margin-bottom: 60px;
}

.block-title h3 {
	margin: 0;
	font-weight: 800;
	color: var(--thm-black);
	font-size: 46px;
	position: relative;
	top: -10px;
}

@media(max-width: 575px) {
	.block-title h3 {
  padding: 20px;
  text-align: center;
}
}

@media(max-width: 480px) {
	.block-title h3 {
  padding: 20px;
  text-align: center;
}
}

@media(max-width: 375px) {
	.block-title h3 {
  padding: 20px;
  text-align: center;
}
}



.block-title h3 span {
	color: var(--thm-base);
}

.block-title p {
	margin: 0;
	color: #8b7f9a;
	font-size: 20px;
	position: relative;
	top: 5px;
}


.thm-btn {
	display: inline-block;
	vertical-align: middle;
	border: none;
	outline: none;
	font-size: 14px;
	font-weight: 800;
	color: #fff;
	border-radius: 26px;
	background-size: auto 200%;
	background-image: linear-gradient(0deg, #1293c8 0%, #1fe4f2 51%, #1293c8 100%);
	-webkit-transition: all .4s ease;
	transition: all .4s ease;
	background-position: top;
	padding: 4px 35px;
	position: relative;
	overflow: hidden;
}

.thm-btn::before {
	content: '';
	position: absolute;
	background-color: #fff;
	border-radius: 50%;
	opacity: 0.2;
	width: 32px;
	height: 32px;
	top: 50%;
	transform: translateY(-50%);
	left: 10px;
}

.thm-btn:hover::before {
	animation: thmBtnRipple 2s cubic-bezier(0.47, 2.02, 0.31, -0.36) infinite;
}

@keyframes thmBtnRipple {
	0% {
		left: 10px;
	}

	100% {
		left: calc(100% - 10px);
	}
}

.thm-btn:hover {
	color: #fff;
	background-position: bottom;
}


/* bootstrap select */

.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-primary);
	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-primary);
	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%;
	border-width: 1px;
	border-style: solid;
	border-color: rgba(225, 90, 19, .2);
	color: #9ca3a9;
	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;
}

.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;
}


.preloader {
	position: fixed;
	background-color: #fff;
	background-position: center center;
	background-repeat: no-repeat;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 9991;
	display: -webkit-box;
	display: flex;
	-webkit-box-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	align-items: center;
	text-align: center;
}

.preloader__image {
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-animation-name: preloaderMove;
	animation-name: preloaderMove;
	-webkit-animation-duration: 1.5s;
	animation-duration: 1.5s;
	animation-timing-function: linear;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
}

.scroll-to-top {
	display: inline-block;
	width: 45px;
	height: 45px;
	background-image: linear-gradient(0deg, #7b22b0 0%, #e867ff 51%, #7b22b0 100%);
	position: fixed;
	bottom: 40px;
	right: 40px;
	z-index: 99;
	text-align: center;
	-webkit-transition: all .4s ease;
	transition: all .4s ease;
	display: none;
	outline: none;
	background-size: auto 200%;
	border-radius: 50%;
	transition: all .4s ease;
}

.scroll-to-top i {
	color: #ffffff;
	font-size: 18px;
	line-height: 45px;
}

.scroll-to-top:hover {
	background-position: bottom;
}

.scroll-to-top:hover i {
	color: #fff;
}



/* 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);
}

/*--------------------------------------------------------------
# Animations
--------------------------------------------------------------*/


@keyframes preloaderMove {
	0% {
		-webkit-transform-origin: center;
		transform-origin: center;
		-webkit-transform: rotate3d(0, 0, 1, -360deg);
		transform: rotate3d(0, 0, 1, -360deg);
	}

	100% {
		-webkit-transform-origin: center;
		transform-origin: center;
		-webkit-transform: none;
		transform: none;
	}
}


@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(-45deg) 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 bubbleMover2 {
	0% {
		-webkit-transform: translateY(0px) translateX(0) rotate(0);
		transform: translateY(0px) translateX(0) rotate(0);
	}

	30% {
		transform: translateY(10px) translateX(20px) rotate(5deg);
		-webkit-transform-origin: center center;
		transform-origin: center center;
	}

	50% {
		transform: translateY(20px) translateX(40px) rotate(20deg);
		-webkit-transform-origin: right bottom;
		transform-origin: right bottom;
	}

	80% {
		transform: translateY(30px) translateX(40px) rotate(5deg);
		-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% {
		transform: rotate3d(0, 0, 1, 15deg);
	}

	60% {
		-webkit-transform: rotate3d(1, 0, 0, 0deg);
		transform: rotate3d(1, 0, 0, 0deg);
	}

	80% {
		transform: rotate3d(0, 0, 1, 15deg);
	}

	100% {
		-webkit-transform: rotate3d(0, 1, 0, 0deg);
		transform: rotate3d(0, 1, 0, 0deg);
	}
}


@keyframes banner3ShakeReverse {
	0% {
		-webkit-transform: rotate3d(0, 1, 0, 0deg);
		transform: rotate3d(0, 1, 0, 0deg);
	}

	30% {
		transform: rotate3d(0, 0, 1, -15deg);
	}

	60% {
		-webkit-transform: rotate3d(1, 0, 0, 0deg);
		transform: rotate3d(1, 0, 0, 0deg);
	}

	80% {
		transform: rotate3d(0, 0, 1, -15deg);
	}

	100% {
		-webkit-transform: rotate3d(0, 1, 0, 0deg);
		transform: rotate3d(0, 1, 0, 0deg);
	}
}


/*--------------------------------------------------------------
# Main Menu
--------------------------------------------------------------*/

.site-header-one {
	border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.site-header-one__fixed-top {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 91;
}

.site-header-one .container-fluid {
	display: -webkit-box;
	display: flex;
	-webkit-box-align: center;
	align-items: center;
	flex-wrap: wrap;
	padding-left: 100px;
	padding-right: 100px;
	width: 100%;
}

@media(max-width: 1470px) {
	.site-header-one .container-fluid {
		padding-left: 50px;
		padding-right: 50px;
	}
}

@media(max-width: 1360px) {
	.site-header-one .container-fluid {
		padding-left: 30px;
		padding-right: 30px;
	}
}

.site-header-one__logo .side-menu__toggler {
	display: none;
	font-size: 22px;
	margin-left: 30px;
	color: #fff;
	cursor: pointer;
}


.main-nav__main-navigation ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.main-nav__main-navigation .main-nav__navigation-box {
	display: -webkit-box;
	display: flex;
	-webkit-box-align: center;
	align-items: center;
	margin-left: 125px;
}

@media(max-width: 1510px) {
	.main-nav__main-navigation .main-nav__navigation-box {
		margin-left: 75px;
	}
}

@media(max-width: 1360px) {
	.main-nav__main-navigation .main-nav__navigation-box {
		margin-left: 30px;
	}
}

.main-nav__main-navigation .main-nav__navigation-box>li {
	padding: 39px 0;
	position: relative;
}

.main-nav__main-navigation .main-nav__navigation-box>li+li {
	margin-left: 60px;
}
@media(max-width: 1440px) {
	.main-nav__main-navigation .main-nav__navigation-box > li + li {
		margin-left: 40px;
	}
}
.main-nav__main-navigation .main-nav__navigation-box>li>a {
	font-size: 16px;
	font-weight: 800;
	color: #fff;
	display: block;
	-webkit-transition: 500ms;
	transition: 500ms;
	position: relative;
}


.main-nav__main-navigation .main-nav__navigation-box>li.current>a,
.main-nav__main-navigation .main-nav__navigation-box>li:hover>a {
	color: var(--thm-base);
}

.main-nav__main-navigation .dropdown-btn {
	display: none;
}



/* Dropdown menu */

.main-nav__main-navigation .dropdown-btn {
	display: none;
}

.main-nav__main-navigation .main-nav__navigation-box>li ul {
	position: absolute;
	width: 210px;
	background-color: #fff;
	border-top: 4px solid var(--thm-base);
	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-base-rgb), .3);
}

.main-nav__main-navigation .main-nav__navigation-box>li ul>li>a {
	display: block;
	color: var(--thm-black);
	font-size: 16px;
	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;
}

/* stricked menu */
.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__main-navigation .main-nav__navigation-box>li {
	padding: 26px 0;
}

/* main nav btn */

.main-nav__right {
	display: flex;
	align-items: center;
	margin-left: auto;
}

.main-nav__cta {
	display: flex;
	align-items: center;
	margin-right: 84px;
}

.main-nav__cta span {
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
	flex-direction: column;
	margin-left: 20px;
}

.main-nav__cta i,
.main-nav__cta b {
	line-height: 1em;
	font-style: normal;
	font-weight: 400;
	color: #fff;
	display: block;
}

.main-nav__cta i {
	font-size: 14px;
	font-weight: 600;
	margin-bottom: 10px;
}

.main-nav__cta b {
	font-size: 18px;
	font-weight: 800;
}




/*--------------------------------------------------------------
# Sidemenu
--------------------------------------------------------------*/

.side-menu__block {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	z-index: 1000;
	-webkit-transform: scale(0, 1);
	transform: scale(0, 1);
	-webkit-transform-origin: left center;
	transform-origin: left center;
	-webkit-transition: -webkit-transform .7s ease;
	transition: -webkit-transform .7s ease;
	transition: transform .7s ease;
	transition: transform .7s ease, -webkit-transform .7s ease;
}

.side-menu__block.active {
	-webkit-transform: scale(1, 1);
	transform: scale(1, 1);
}

.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: .7;
}

.side-menu__block-overlay .cursor-follower {
	background-color: rgba(255, 255, 255, 0.3);
}

.side-menu__block-inner {
	position: relative;
	max-width: 532px;
	width: 100%;
	margin-right: auto;
	height: 100vh;
	background-color: #F6F6FE;
	z-index: 999999;
	overflow-y: auto;
	padding: 40px 0;
	padding-top: 20px;
	position: relative;
}

@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: 100px;
	padding-right: 40px;
}

.mobile-nav__container {
	padding-left: 100px;
	padding-right: 100px;
	padding-top: 50px;
}



.mobile-nav__container ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.mobile-nav__container li.dropdown ul {
	display: none;
	padding-left: 0.5em;
}

.mobile-nav__container li.dropdown {
	position: relative;
}

.mobile-nav__container li.dropdown .dropdown-btn {
	border: none;
	outline: none;
	background-color: transparent;
	color: #9ca3a9;
	font-size: 14px;
	padding-left: 10px;
	padding-right: 10px;
	width: auto;
	-webkit-transform: rotate(90deg);
	transform: rotate(90deg);
	-webkit-transition: transfrom 500ms ease;
	transition: transfrom 500ms ease;
}

.mobile-nav__container li.dropdown .dropdown-btn.open {
	-webkit-transform: rotate(-90deg);
	transform: rotate(-90deg);
}

.mobile-nav__container li+li {
	margin-top: 5px;
}

.mobile-nav__container li a {
	font-family: var(--special-font-smb);
	display: block;
	-webkit-transition: all 500ms ease;
	transition: all 500ms ease;
	position: relative;
	font-size: 17px;
	font-family: var(--heading-font);
	color: var(--thm-black);
}

.mobile-nav__container li a:hover {
	color: var(--thm-base);
}

.mobile-nav__container li.current-menu-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: 40px;
}

.side-menu__social a {
	background-image: linear-gradient(0deg, #1293c8 0%, #1fe4f2 51%, #1293c8 100%);
	display: flex;
	justify-content: center;
	align-items: center;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	color: #fff;
	font-size: 16px;
	background-size: auto 200%;
	transition: all 500ms ease;
}

.side-menu__social a:hover {
	background-position: bottom;
}

.side-menu__social a:nth-child(2) {
	background-image: linear-gradient(0deg, #ff5f5e 0%, #ffc52f 51%, #ff5f5e 100%);
}

.side-menu__social a:nth-child(3) {
	background-image: linear-gradient(0deg, #7b22b0 0%, #e867ff 51%, #7b22b0 100%);
}

.side-menu__social a:nth-child(4) {
	background-image: linear-gradient(0deg, #388e3c 0%, #b6e66d 51%, #388e3c 100%);
}

.side-menu__social a+a {
	margin-left: 10px;
}

.side-menu__content {
	padding-left: 100px;
	padding-right: 100px;
	padding-bottom: 50px;
}

.side-menu__content p {
	margin: 0;
	font-size: 14px;
	line-height: 32px;
	color: #7c7d8a;
	letter-spacing: .02em;
}

.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-primary);
}

.side-menu__sep {
	width: calc(100% - 200px);
	margin-left: auto;
	margin-right: auto;
	height: 1px;
	background-color: #fff;
	margin-top: 70px;
	margin-bottom: 70px;
}

.side-menu__text p {
	font-size: 14px;
	line-height: 32px;
	color: #7c7d8a;
	margin: 0;
	margin-bottom: 25px;
}


.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;
	}

}


/*--------------------------------------------------------------
# Banner One
--------------------------------------------------------------*/

.banner-one {
	padding-top: 200px;
	padding-bottom: 86px;
	background-image: linear-gradient(-27deg, #30006b 0%, #4c1294 100%);
	position: relative;
}

[class*=banner-one__bg-shape-] {
	position: absolute;
	z-index: 8;
}

.banner-one__bg-shape-1 {
	top: 17%;
	right: 43%;
	-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__bg-shape-2 {
	top: 34%;
	left: 6%;
	-webkit-transform-origin: center bottom;
	transform-origin: center bottom;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-animation-name: banner3ShakeReverse;
	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: 0s;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
}

.banner-one__bg-shape-3 {
	bottom: 22%;
	left: 8%;
	-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__bg-shape-4 {
	top: 40%;
	right: 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__bg-shape-5 {
	bottom: 12%;
	right: 38.5%;
	-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 .container {
	position: relative;
	z-index: 10;
}

.banner-one::before {
	content: '';
	width: 100%;
	height: 100%;
	background-image: url(../images/shapes/banner-bg-shape-1-1.png);
	background-repeat: no-repeat;
	background-position: top right;
	position: absolute;
	top: 0;
	right: 0;
}

.banner-one::after {
	content: '';
	background-image: url(../images/shapes/banner-bg-texture-1-1.png);
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}

.banner-one__content h3 {
	margin: 0;
	font-size: 70px;
	color: #fff;
	letter-spacing: -.02em;
	font-weight: 800;
}

.banner-one__content p {
	margin: 0;
	font-size: 18px;
	line-height: 36px;
	color: #fff;
	margin-top: 31px;
}

.banner-one__btn {
	padding: 4px 35px;
	border-radius: 31px;
	font-size: 16px;
	background-image: linear-gradient(0deg, #ff5f5e 0%, #ffc52f 51%, #ff5f5e 100%);
	margin-top: 41px;
}

.banner-one__image img {
	animation: ImgBounce 5s ease-in-out 0s infinite alternate;
}

/*--------------------------------------------------------------
# Page Header
--------------------------------------------------------------*/

.page-header {
	background-color: var(--thm-black);
	background-image: url(../images/backgrounds/page-header-bg-1-1.jpg);
	background-repeat: no-repeat;
	background-position: right bottom;
	background-size: cover;
	padding-bottom: 84px;
	padding-top: 186px;
}

.page-header .container {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.page-header h2 {
	color: #fff;
	margin: 0;
	font-size: 46px;
	font-weight: 800;
}

.thm-breadcrumb {
	margin-bottom: 0;
	display: flex;
	align-items: center;
}

.thm-breadcrumb li {
	display: flex;
	align-items: center;
	font-size: 16px;
	font-weight: 800;
	color: #fff;
}

.thm-breadcrumb li a {
	color: inherit;
}

.thm-breadcrumb li:not(:last-of-type)::after {
	content: '-';
	margin-left: 10px;
	margin-right: 10px;
}


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

.site-footer {
	background-color: #f4f0f9;
}

.site-footer__upper {
	padding-top: 90px;
	padding-bottom: 40px;
}

.footer-widget {
	margin-bottom: 40px;
}

@media(min-width: 1200px) {
	.footer-widget__links {
		margin-left: -30px;
	}

	.footer-widget__contact {
		margin-left: -60px;
	}
}

.footer-widget__title {
	margin: 0;
	font-size: 20px;
	font-weight: bold;
	color: var(--thm-black);
	margin-bottom: 30px;
}

.footer-widget p {
	margin: 0;
	color: #8b7f9a;
	font-size: 16px;
	line-height: 34px;
}

.footer-widget__links-list li {
	line-height: 1em;
}

.footer-widget__links-list li+li {
	margin-top: 21px;
}

.footer-widget__links-list li a {
	color: #8b7f9a;
	font-size: 16px;
	transition: all 500ms ease;
}

.footer-widget__links-list li a:hover {
	color: var(--thm-base);
}

.footer-widget__contact-list li {
	font-size: 16px;
	line-height: 26px;
	color: #8b7f9a;
	position: relative;
	padding-left: 24px;
}

.footer-widget__contact-list li+li {
	margin-top: 15px;
}

.footer-widget__contact-list li i {
	font-size: 14px;
	color: var(--thm-base);
	position: absolute;
	top: 7px;
	left: 0;
}

.footer-widget__contact-list li a {
	color: inherit;
	transition: all 500ms ease;
}

.footer-widget__contact-list li a:hover {
	color: var(--thm-black);
}

.footer-widget__newsletter p {
	color: #8b7f9a;
	font-size: 16px;
	line-height: 32px;
	margin: 0;
}

.footer-widget__newsletter-form {
	width: 100%;
	background-color: #fff;
	border-radius: 15px;
	position: relative;
	margin-bottom: 20px;
}

.footer-widget__newsletter-form input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]) {
	border: none;
	outline: none;
	width: 100%;
	height: 71px;
	border-radius: 15px;
	background-color: #fff;
	color: #8b7f9a;
	font-size: 16px;
	padding-left: 30px;
}

.footer-widget__newsletter-form ::placeholder {
	opacity: 1;
	color: #8b7f9a;
}

.footer-widget__newsletter-form button[type=submit] {
	border: none;
	outline: none;
	background-position: top;
	background-size: auto 200%;
	width: 47px;
	height: 47px;
	background-image: linear-gradient(0deg, #7b22b0 0%, #e867ff 51%, #7b22b0 100%);
	color: #fff;
	font-size: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	border-radius: 50%;
	right: 10px;
	top: 50%;
	transform: translateY(-50%);
	transition: all 500ms ease;
}

.footer-widget__newsletter-form button[type=submit]:hover {
	background-position: bottom;
	color: #fff;
}

.footer-widget__about a.logo {
	position: relative;
	top: -10px;
}

.footer-widget__about p {
	margin-top: 10px;
	margin-bottom: 18px;
}

/* footer bottom */
.site-footer__bottom .inner-container {
	border-top: 2px solid #ffffff;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-top: 30.5px;
	padding-bottom: 30.5px;
}

.site-footer__bottom p {
	margin: 0;
	color: #8b7f9a;
	font-size: 16px;
}

.footer-social {
	display: flex;
	align-items: center;
}

.footer-social a {
	background-image: linear-gradient(0deg, #1293c8 0%, #1fe4f2 51%, #1293c8 100%);
	display: flex;
	justify-content: center;
	align-items: center;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	color: #fff;
	font-size: 16px;
	background-size: auto 200%;
	transition: all 500ms ease;
}

.footer-social a:hover {
	background-position: bottom;
}

.footer-social a:nth-child(2) {
	background-image: linear-gradient(0deg, #ff5f5e 0%, #ffc52f 51%, #ff5f5e 100%);
}

.footer-social a:nth-child(3) {
	background-image: linear-gradient(0deg, #7b22b0 0%, #e867ff 51%, #7b22b0 100%);
}

.footer-social a:nth-child(4) {
	background-image: linear-gradient(0deg, #388e3c 0%, #b6e66d 51%, #388e3c 100%);
}

.footer-social a+a {
	margin-left: 10px;
}



/*--------------------------------------------------------------
# Sidebar
--------------------------------------------------------------*/


@media (max-width: 991px) {
	.sidebar {
		margin-top: 50px;
	}
}

.sidebar__title {
	margin: 0;
	color: var(--thm-black);
	font-size: 22px;
	font-weight: 700;
	margin-bottom: 30px;
}

.sidebar__single:not(.sidebar__search) {
	padding: 50px;
	background-color: #f4f0f9;
	border-radius: 15px;
}

@media (max-width: 1199px) {
	.sidebar__single:not(.sidebar__search) {
		padding: 30px;
	}
}

.sidebar__single+.sidebar__single {
	margin-top: 30px;
}

.sidebar__post__single+.sidebar__post__single {
	margin-top: 30px;
}

.sidebar__post-image,
.sidebar__post-content {
	display: table-cell;
	vertical-align: middle;
}

.sidebar__post-image {
	width: 60px;
}

.sidebar__post-image .inner-block {
	width: 100%;
}

.sidebar__post-image .inner-block>img {
	width: 100%;
	border-radius: 50%;
}

.sidebar__post-content {
	padding-left: 20px;
}

.sidebar__post-title {
	margin: 0;
	font-size: 16px;
	line-height: 28px;
	font-weight: 600;
	color: #8b7f9a;
	font-family: var(--thm-font);
}

.sidebar__post-title a {
	color: inherit;
	-webkit-transition: all .4s ease;
	transition: all .4s ease;
}

.sidebar__post-title a:hover {
	color: var(--thm-black);
}

.sidebar__category-list {
	margin: 0;
	padding: 0;
	list-style: none;
}

.sidebar__category-list-item {
	line-height: 1em;
}

.sidebar__category-list-item a {
	color: #8b7f9a;
	font-size: 16px;
	font-weight: 500;
	display: block;
	position: relative;
	-webkit-transition: all .4s ease;
	transition: all .4s ease;
}


.sidebar__category-list-item a:hover {
	color: var(--thm-base);
}

.sidebar__category-list-item+.sidebar__category-list-item {
	margin-top: 27px;
}

.sidebar__tags-list {
	margin: 0;
	padding: 0;
	list-style: none;
	margin-top: -10px;
}

.sidebar__tags-list-item {
	display: inline-block;
	vertical-align: middle;
	line-height: 1em;
}

.sidebar__tags-list-item a {
	display: block;
	color: #8b7f9a;
	font-size: 16px;
	font-weight: 600;
	line-height: 1em;
	-webkit-transition: all .4s ease;
	transition: all .4s ease;
}

.sidebar__tags-list-item a:hover {
	color: var(--thm-black);
}

.sidebar__search-form {
	width: 100%;
	height: 72px;
	background-image: linear-gradient(90deg, #ff5f5e 0%, #ffc52f 100%);
	position: relative;
	border-radius: 15px;
}

.sidebar__search-form input {
	width: 100%;
	height: 100%;
	background-color: transparent;
	border: none;
	outline: none;
	color: #fff;
	padding-left: 40px;
	padding-right: 40px;
}

.sidebar__search-form ::-webkit-input-placeholder {
	opacity: 1;
	color: #fff;
}

.sidebar__search-form :-ms-input-placeholder {
	opacity: 1;
	color: #fff;
}

.sidebar__search-form ::-ms-input-placeholder {
	opacity: 1;
	color: #fff;
}

.sidebar__search-form ::-moz-placeholder {
	opacity: 1;
	color: #fff;
}

.sidebar__search-form ::placeholder {
	opacity: 1;
	color: #fff;
}

.sidebar__search-form button[type=submit] {
	background-color: transparent;
	border: none;
	outline: none;
	position: absolute;
	top: 50%;
	right: 50px;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	cursor: pointer;
	padding: 0;
	-webkit-transition: all .4s ease;
	transition: all .4s ease;
}

.sidebar__search-form button[type=submit] i {
	font-size: 16px;
	color: #fff;
	-webkit-transition: all .4s ease;
	transition: all .4s ease;
}



/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact-box {
  -webkit-box-shadow: 0 2px 2px rgba(10, 16, 20, 0.16), 0 0 2px rgba(10, 16, 20, 0.01);
  box-shadow: 0 2px 2px rgba(10, 16, 20, 0.16), 0 0 2px rgba(10, 16, 20, 0.01);
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
}

textarea.form-control {
  height: auto !important;
}

.error {
  margin: 8px 0px;
  display: none;
  color: #FE6847;
}

#ajaxsuccess {
  font-size: 16px;
  width: 100%;
  display: none;
  clear: both;
  margin: 8px 0px;
}

.error_message {
  padding: 10px;
  margin-bottom: 20px;
  text-align: center;
  color: #FE6847;
  border: 2px solid #FE6847;
}

.contact-loader {
  display: none;
}

#success_page {
  text-align: center;
  margin-bottom: 50px;
}

.custom-form .form-control {
  height: 44px;
  font-size: 14px;
  background-color: #f9f9f9;
  padding-left: 20px;
  border: none;
}

.custom-form .form-control:focus {
  outline: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
}


/*--------------------------------------------------------------
# Call to Action One
--------------------------------------------------------------*/

.cta-one {
	overflow: hidden;
	background-color: var(--thm-black);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	background-attachment: fixed;
	background-blend-mode: hard-light;
	position: relative;
	padding-top: 111.5px;
	padding-bottom: 111.5px;
}

.cta-one::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	opacity: 0.9;
	background-color: var(--thm-black);
}

[class*=cta-one__bg-shape-] {
	position: absolute;
}

.cta-one__bg-shape-1 {
	top: calc(50% - 257px);
	left: calc(0% - 269.5px);
	-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;
}

.cta-one .container {
	position: relative;
}

.cta-one .my-auto {
	width: 100%;
}

.cta-one [class*=col-] {
	position: relative;
}

.cta-one h3 {
	margin: 0;
	color: #fff;
	font-size: 46px;
	font-weight: 800;
	margin-bottom: 22px;
}

.cta-one p {
	margin: 0;
	font-size: 20px;
	font-weight: bold;
	color: #c3afdd;
}

.cta-one__btn {
	padding: 4px 35px;
	border-radius: 31px;
	font-size: 16px;
	background-image: linear-gradient(0deg, #ff5f5e 0%, #ffc52f 51%, #ff5f5e 100%);
}

/*--------------------------------------------------------------
## Call to Action Two
--------------------------------------------------------------*/

.cta-two {
	background-color: #f4f0f9;
	padding-top: 75px;
	padding-bottom: 363px;
	margin-bottom: -290px;
	position: relative;
}

[class*=cta-two__bg-shape-] {
	position: absolute;
}

.cta-two__bg-shape-1 {
	top: 0;
	right: 0;
}

.cta-two__bg-shape-2 {
	bottom: 0;
	left: 0;
}

.cta-two .container {
	position: relative;
}

.cta-two__content {
	padding-top: 45px;
}

.cta-two__content .block-title {
	margin-bottom: 26px;
}

.cta-two__content>p {
	margin: 0;
	margin-bottom: 52px;
	color: #8b7f9a;
	font-size: 18px;
	line-height: 34px;
	text-align:justify;
}

.cta-two__btn {
	padding: 4px 35px;
	border-radius: 31px;
	font-size: 16px;
	background-image: linear-gradient(180deg, #7b22b0 0%, #e867ff 51%, #7b22b0 100%);
}

.cta-two__content-image {
	position: relative;
	left: -47px;
}

/*--------------------------------------------------------------
## Call to Action Two
--------------------------------------------------------------*/

.cta-2 {
	background-color: #f4f0f9;
	padding-top: 75px;
	padding-bottom: 363px;
	margin-bottom: -290px;
	position: relative;
}

[class*=cta-two__bg-shape-] {
	position: absolute;
}

.cta-2__bg-shape-1 {
	top: 0;
	right: 0;
}

.cta-2__bg-shape-2 {
	bottom: 0;
	left: 0;
}

.cta-2 .container {
	position: relative;
}

.cta-2__content {
	padding-top: 45px;
}

.cta-2__content .block-title {
	margin-bottom: 26px;
}

.cta-2__content>p {
	margin: 0;
	margin-bottom: 52px;
	color: #8b7f9a;
	font-size: 18px;
	line-height: 34px;
	text-align:justify;
}

.cta-2__btn {
	padding: 4px 35px;
	border-radius: 31px;
	font-size: 16px;
	background-image: linear-gradient(180deg, #7b22b0 0%, #e867ff 51%, #7b22b0 100%);
}

.cta-2__content-image {
	position: relative;
	left: -47px;
}

/*--------------------------------------------------------------
## Call to Action Three
--------------------------------------------------------------*/

.cta-three {
	padding-bottom: 0px;
	padding-top: 177px;
	position: relative;
}

[class*=cta-three__bg-shape-] {
	position: absolute;
}

.cta-three__bg-shape-1 {
	top: 0;
	right: 0;
}

.cta-three__bg-shape-2 {
	bottom: 110px;
	left: 0;
	-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-three .container {
	position: relative;
}


.cta-three__content .block-title {
	margin-bottom: 40px;
}

.cta-three__icon-wrap {
	display: -webkit-box;
	display: flex;
	-webkit-box-align: center;
	align-items: center;
	margin-bottom: 50px;
}

.cta-three__icon-single {
	display: -webkit-box;
	display: flex;
	-webkit-box-align: center;
	align-items: center;
}

.cta-three__icon-single+.cta-three__icon-single {
	margin-left: 30px;
}

.cta-three__icon i {
	width: 101px;
	height: 101px;
	margin-right: 20px;
	display: -webkit-box;
	display: flex;
	-webkit-box-align: center;
	align-items: center;
	-webkit-box-pack: center;
	justify-content: center;
	text-align: center;
	border-radius: 50%;
	color: #fff;
	font-size: 64px;
	background-size: auto 200%;
	background-image: linear-gradient(0deg, #7b22b0 0%, #e867ff 51%, #7b22b0 100%);
	background-position: top;
	transition: all 500ms ease;
}

.cta-three__icon-single:hover .cta-three__icon i {
	background-position: bottom;
}

.cta-three__icon-single:nth-child(2) .cta-three__icon i {
	background-image: linear-gradient(0deg, #388e3c 0%, #b6e66d 51%, #388e3c 100%);
}

.cta-three__icon-single h3 {
	margin: 0;
	color: var(--thm-black);
	font-size: 20px;
	line-height: 30px;
	font-weight: bold;
}

.cta-three__text {
	margin-bottom: 53px;
}

.cta-three__text p {
	margin: 0;
	font-size: 18px;
	line-height: 30px;
	font-weight: 600;
	color: #8b7f9a;
	text-align: justify;
}

.cta-three__btn {
	padding: 4px 35px;
	border-radius: 31px;
	font-size: 16px;
}

.cta-three__image {
	position: relative;
}

.cta-three__image::before {
	content: '';
	position: absolute;
	top: calc(41% - 261px);
	left: calc(50% - 261px);
	width: 522px;
	height: 522px;
	border-radius: 50%;
	background-image: linear-gradient(0deg, #ff5f5e 0%, #ffc52f 100%);
}

.cta-three__image img {
	position: relative;
	left: -28px;
	top: -88px;
	animation: ImgBounce 5s ease-in-out 0s infinite alternate;
}

/*--------------------------------------------------------------
## Call to Action Four
--------------------------------------------------------------*/

.cta-four {
	position: relative;
	padding-top: 120px;
	padding-bottom: 120px;
	background-color: #f4f0f9;
}

[class*=cta-four__bg-shape-] {
	position: absolute;
}

.cta-four__bg-shape-1 {
	top: 30;
	left: 44px;
	-webkit-animation-name: bubbleMover2;
	animation-name: bubbleMover2;
	-webkit-animation-timing-function: linear;
	animation-timing-function: linear;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
	animation-duration: 12s;
}

.cta-four__bg-shape-2 {
	top: 0;
	right: 0;
}

.cta-four .container {
	position: relative;
}

.cta-four__content .block-title {
	margin-bottom: 37px;
}

.cta-four__content .block-title h3 {
	letter-spacing: -.02em;
}

.cta-four__text {
	margin-bottom: 43px;
}

.cta-four__text p {
	margin: 0;
	color: #8b7f9a;
	font-size: 24px;
	line-height: 40px;
	font-weight: 500;
}

.cta-four__list {
	margin-bottom: 40px;
}

.cta-four__list li {
	color: #8b7f9a;
	position: relative;
	padding-left: 35px;
	font-weight: 600;
	font-size: 18px;
}

.cta-four__list li+li {
	margin-top: 4px;
}

.cta-four__list li>i {
	position: absolute;
	top: 50%;
	left: 0;
	font-size: 18px;
	background-image: linear-gradient(0deg, #1293c8 0%, #1fe4f2 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}

.cta-four__btn {
	padding: 4px 35px;
	border-radius: 31px;
	font-size: 16px;
	background-image: linear-gradient(0deg, #ff5f5e 0%, #ffc52f 51%, #ff5f5e 100%);
}

.cta-four__images {
	display: inline-block;
}

.cta-four__images>img {
	border-radius: 15px;
	box-shadow: 0px 0px 60px 0px rgba(5, 5, 6, 0.1);
}


.cta-four__images>img+img {
	margin-top: 30px;
}


.cta-four__porgress__bar-wrap {
	margin-bottom: 60px;
}

.cta-four__porgress__bar+.cta-four__porgress__bar {
	margin-top: 10px;
}

.cta-four__porgress__bar-top {
	display: -webkit-box;
	display: flex;
	-webkit-box-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	align-items: center;
	margin-bottom: 5px;
}

.cta-four__porgress__bar-top h3 {
	font-size: 18px;
	font-weight: 700;
	color: var(--thm-black);
	margin: 0;
}

.cta-four__porgress__bar-top p {
	margin: 0;
	font-size: 16px;
	font-weight: 700;
	color: #8b7f9a;
}

.cta-four__porgress__bar-line {
	width: 100%;
	height: 8px;
	border-radius: 4px;
	background-color: #ffffff;
	position: relative;
	overflow: hidden;
}

.cta-four__porgress__bar-line span {
	position: absolute;
	height: 100%;
	top: 0;
	left: 0;
	border-radius: 4px;
	background-image: linear-gradient(90deg, #7b22b0 0%, #e867ff 100%);
}



/*--------------------------------------------------------------
# Funfact
--------------------------------------------------------------*/

/*
* 12. fact styles
*/
.fact-one {
  padding-top: 120px;
}
.fact-one .container {
  z-index: 10;
  position: relative;
}

@media(max-width: 575px) {
	.fact-one {
  padding-left: 130px;
  padding-top:30px;
}
}

@media(max-width: 480px) {
	.fact-one {
  padding-left: 130px;
  padding-top:30px;
}
}

@media(max-width: 375px) {
	.fact-one {
  padding-left: 130px;
  padding-top:30px;
}
} 
.fact-one__single {
  -webkit-box-shadow: 0px 20px 60px 0px rgba(42, 40, 51, 0.05);
          box-shadow: 0px 20px 60px 0px rgba(42, 40, 51, 0.05);
  width: 220px;
  height: 220px;
  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;
  padding: 20px;
  position: relative;
}
.fact-one__single:before {
  content: '';
  position: absolute;
  top: 10px;
  bottom: 10px;
  left: 10px;
  right: 10px;
  border-radius: 50%;
  background-image: linear-gradient(40deg, #ff43c0 0%, #ffa95c 100%);
}
.fact-one__inner {
  width: 100%;
  height: 100%;
  -webkit-box-shadow: 0px 20px 40px 0px rgba(255, 118, 142, 0.3);
          box-shadow: 0px 20px 40px 0px rgba(255, 118, 142, 0.3);
  border-radius: 50%;
  position: relative;
  background-color: #fff;
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.fact-one__inner h3,
.fact-one__inner p {
  margin: 0;
}
.fact-one__inner h3 {
  color: #2a2833;
  font-weight: 400;
  font-size: 40px;
  line-height: 1em;
}
.fact-one__inner p {
  text-transform: uppercase;
  letter-spacing: .2em;
  font-size: 12px;
  font-weight: 500;
  color: #74727a;
  line-height: 1em;
  margin-top: 10px;
}
.fact-one [class*=col-]:nth-child(1) .fact-one__inner {
  -webkit-box-shadow: inset 0px 20px 40px 0px rgba(255, 118, 142, 0.3);
          box-shadow: inset 0px 20px 40px 0px rgba(255, 118, 142, 0.3);
}
.fact-one [class*=col-]:nth-child(1) .fact-one__single:before {
  background-image: linear-gradient(40deg, #ff43c0 0%, #ffa95c 100%);
}
.fact-one [class*=col-]:nth-child(2) .fact-one__inner {
  -webkit-box-shadow: inset 0px 20px 60px 0px rgba(141, 142, 255, 0.3);
          box-shadow: inset 0px 20px 60px 0px rgba(141, 142, 255, 0.3);
}
.fact-one [class*=col-]:nth-child(2) .fact-one__single:before {
  background-image: linear-gradient(40deg, #0db8ff 0%, #f332ff 100%);
}
.fact-one [class*=col-]:nth-child(3) .fact-one__inner {
  -webkit-box-shadow: inset 0px 20px 40px 0px rgba(58, 212, 173, 0.3);
          box-shadow: inset 0px 20px 40px 0px rgba(58, 212, 173, 0.3);
}
.fact-one [class*=col-]:nth-child(3) .fact-one__single:before {
  background-image: linear-gradient(40deg, #39aeff 0%, #3cff53 100%);
}
.fact-one [class*=col-]:nth-child(4) .fact-one__inner {
  -webkit-box-shadow: inset 0px 20px 40px 0px rgba(255, 178, 71, 0.3);
          box-shadow: inset 0px 20px 40px 0px rgba(255, 178, 71, 0.3);
}
.fact-one [class*=col-]:nth-child(4) .fact-one__single:before {
  background-image: linear-gradient(40deg, #ff703e 0%, #ffec4e 100%);
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/


.testimonials-one {
	background-color: #f4f0f9;
	padding: 120px 0;
	padding-bottom: 190px;
	position: relative;
}

.testimonials-one .container {
	position: relative;
}

.testimonials-one__bg-shape-1 {
	position: absolute;
	top: 50%;
	left: -140px;
	transform: translateY(-50%);
	animation-name: mapMover;
	animation-duration: 5s;
	animation-timing-function: linear;
	animation-iteration-count: infinite;
	transition: all .4s ease;
	transform-origin: center center;
}

.testimonials-one__bg-shape-2 {
	position: absolute;
	bottom: 0;
	right: 0;
}

@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: 35px;
}

.testimonials-one__single p {
	margin: 0;
	color: #8b7f9a;
	font-size: 24px;
	line-height: 46px;
}

.testimonials-one__single h3 {
	color: var(--thm-base);
	font-weight: 800;
	font-size: 20px;
	margin: 0;
	margin-top: 40px;
}

.testimonials-one__single span {
	font-size: 16px;
	font-weight: 600;
	color: #8b7f9a;
}

.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: #f4f0f9;
	right: 0;
	display: flex;
	align-items: center;
}

.testimonials-one .bx-wrapper .bx-controls-direction a {
	text-indent: 0;
	background-image: none;
	font-size: 24px;
	position: relative;
	top: 0px;
	width: 62px;
	height: 62px;
	color: var(--thm-black);
	background-color: #fff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	transition: all .4s ease;
	z-index: 91;
}

.testimonials-one .bx-wrapper .bx-controls-direction a:hover {
	opacity: 1;
	color: var(--thm-base);
}

.testimonials-one .bx-wrapper .bx-prev {
	left: 0px;
	margin-right: 25px;
}

.testimonials-one .bx-wrapper .bx-next {
	right: 0px;
}

#testimonials-slider-pager {
	width: 521px;
	height: 521px;
	border-radius: 50%;
	position: relative;
	animation-name: tesiMove;
	animation-duration: 5s;
	animation-timing-function: linear;
	animation-iteration-count: infinite;
	transition: all .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:before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 174px;
	height: 174px;
	border-radius: 50%;
}

#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: 110px;
	left: 32px;
}

#testimonials-slider-pager .testimonials-slider-pager-one .pager-item:nth-child(2) {
	top: 110px;
	right: 32px;
}

#testimonials-slider-pager .testimonials-slider-pager-one .pager-item:nth-child(3) {
	bottom: 110px;
	left: 32px;
}

#testimonials-slider-pager .testimonials-slider-pager-one .pager-item:nth-child(4) {
	bottom: 110px;
	right: 32px;
}

#testimonials-slider-pager .testimonials-slider-pager-one .pager-item:nth-child(5) {
	bottom: 0px;
	left: 50%;
	transform: translateX(-50%);
}

#testimonials-slider-pager .testimonials-slider-pager-one .pager-item:nth-child(6) {
	top: 0px;
	left: 50%;
	transform: translateX(-50%);
}

#testimonials-slider-pager .testimonials-slider-pager-one .pager-item>img {
	width: 100%;
	border-radius: 50%;
	transition: all .4s ease;
}

#testimonials-slider-pager .testimonials-slider-pager-one .pager-item.active img {
	opacity: .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 .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-slider-pager .testimonials-slider-pager-two .pager-item::after {
	content: '';
	width: 77px;
	height: 63px;
	background-image: url(../images/shapes/testi-qoute-1-1.png);
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translate(-50%, 50%);
}



/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/


.pricing-one {
	position: relative;
	padding-top: 120px;
	padding-bottom: 90px;
}


.pricing-one .animated {
	-webkit-animation-duration: 1500ms;
	animation-duration: 1500ms;
}


.pricing-one__single {
	text-align: center;
	box-shadow: 0px 10px 60px 0px rgba(45, 1, 100, 0.1);
	border-radius: 15px;
	background-color: #fff;
	position: relative;
	margin-bottom: 30px;
}



.pricing-one__single::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	border-radius: 15px;
	-webkit-transform: scale(0, 1);
	transform: scale(0, 1);
	transform-origin: left;
	-webkit-transition: -webkit-transform 500ms ease;
	background-color: #3f1474;
	transition: -webkit-transform 500ms ease;
	transition: transform 500ms ease;
	transition: transform 500ms ease, -webkit-transform 500ms ease;
}

.pricing-one [class*=col-]:nth-child(2) .pricing-one__single::before,
.pricing-one__single:hover::before {
	-webkit-transform: scale(1, 1);
	transform: scale(1, 1);
	transform-origin: right;
}


.pricing-one__inner {
	position: relative;
	overflow: hidden;
	padding-left: 20px;
	padding-right: 20px;
	padding-top: 20px;
	padding-bottom: 30px;
}

.pricing-one__single h3 {
	margin: 0;
	color: var(--thm-base);
	font-size: 60px;
	font-weight: 800;
	position: relative;
	line-height: 1em;
	-webkit-transition: all 500ms;
	transition: all 500ms;
}

.pricing-one [class*=col-]:nth-child(2) .pricing-one__single h3,
.pricing-one__single:hover h3 {
	color: #fff;
}

.pricing-one__single p {
	margin: 0;
	font-size: 20px;
	font-weight: 700;
	color: var(--thm-black);
	position: relative;
	margin-bottom: 5px;
	line-height: 1em;
	-webkit-transition: all 500ms ease;
	transition: all 500ms ease;
}

.pricing-one [class*=col-]:nth-child(2) .pricing-one__single p,
.pricing-one__single:hover p {
	color: #c3afdd;
}


.pricing-one__list {
	margin-bottom: 0;
	position: relative;
	border-top: 1px solid #f4f0f9;
	padding-bottom: 55px;
	padding-top: 55px;
	margin-top: 60px;
	-webkit-transition: all 500ms ease;
	transition: all 500ms ease;
}

.pricing-one [class*=col-]:nth-child(2) .pricing-one__list,
.pricing-one__single:hover .pricing-one__list {
	border-color: #53268a;
}

.pricing-one__list li {
	line-height: 1em;
	font-size: 18px;
	font-weight: 600;
	-webkit-transition: all 500ms ease;
	transition: all 500ms ease;
	color: #8b7f9a;
}

.pricing-one [class*=col-]:nth-child(2) .pricing-one__list li,
.pricing-one__single:hover .pricing-one__list li {
	color: #c3afdd;
}

.pricing-one__list li i {
	color: var(--thm-base);
	font-size: 14px;
	margin-right: 10px;
}

.pricing-one__list li+li {
	margin-top: 24px;
}


.pricing-one__inner::before {
	content: '';
	position: absolute;
	bottom: 0;
	right: 0;
	width: 302px;
	height: 304px;
	background-image: url(../images/shapes/pricing-shape-1-1.png);
	transform: perspective(600px) scaleX(0);
	-webkit-transition: opacity 500ms ease, -webkit-transform 500ms ease;
	transition: opacity 500ms ease, -webkit-transform 500ms ease;
	transition: transform 500ms ease, opacity 500ms ease;
	transition: transform 500ms ease, opacity 500ms ease, -webkit-transform 500ms ease;
	transform-origin: left;
	opacity: 0;
}

.pricing-one [class*=col-]:nth-child(2) .pricing-one__inner::before,
.pricing-one__single:hover .pricing-one__inner::before {
	transform: perspective(600px) scaleX(1);
	transform-origin: right;
	opacity: 1;
}

.pricing-one__inner>i {
	font-size: 64px;
	background-image: linear-gradient(90deg, #1293c8 0%, #1fe4f2 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	margin-bottom: 20px;
	display: block;
}

.pricing-one [class*=col-]:nth-child(2) .pricing-one__inner>i {
	background-image: linear-gradient(90deg, #ff5f5e 0%, #ffc52f 100%);
}

.pricing-one [class*=col-]:nth-child(3) .pricing-one__inner>i {
	background-image: linear-gradient(90deg, #388e3c 0%, #b6e66d 100%);
}

.pricing-one__btn {
	padding: 4px 35px;
	border-radius: 31px;
	font-size: 16px;
	background-image: linear-gradient(0deg, #ff5f5e 0%, #ffc52f 51%, #ff5f5e 100%);
}




.pricing-one .block-title {
	margin-bottom: 40px;
}

.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: .4s;
	transition: .4s;
	background-image: linear-gradient(90deg, #7b22b0 0%, #e867ff 100%);
}


.pricing-one .slider:before {
	position: absolute;
	content: "";
	height: 26px;
	width: 26px;
	left: 6px;
	bottom: 6px;
	-webkit-transform: translateX(0px);
	transform: translateX(0px);
	background-color: #fff;
	-webkit-transition: .4s;
	transition: .4s;
}



.pricing-one .switch.off .slider:before {
	-webkit-transform: translateX(42px);
	transform: 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: flex;
	-webkit-box-align: center;
	align-items: center;
	-webkit-box-pack: center;
	justify-content: center;
	margin-bottom: 60px;
}

.pricing-one ul.switch-toggler-list li a {
	font-size: 18px;
	font-weight: 600;
	color: #737789;
	padding-left: 10px;
	padding-right: 10px;
	display: block;
}

.pricing-one ul.switch-toggler-list li.active a {
	color: var(--thm-black);
}


/*--------------------------------------------------------------
# Industry Details
--------------------------------------------------------------*/
.industry {
	margin-top: 10px;
	padding-top: 0vh;
	padding-bottom: 0vh;
	text-align: center;
	/* background-image: url(../img/services-bg.png); */
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	font-family: "Open Sans", sans-serif;
}

.industry p{
	font-size: 14px;
	margin-left:100px;
	margin-right:100px;
}

.industry .col-md-3 {
	padding-left: 0px;
	padding-right: 0px;
}

.flip-container {
  perspective: 1000;
}
/* turning on hover */

.flip-container:hover .flipper {
  transform: rotateY(180deg);
  -webkit-transform: rotateY(180deg);
  -webkit-transition-delay: 0s;
    -moz-transition-delay: 0s;
    -ms-transition-delay: 0s;
    -o-transition-delay: 0s;
    transition-delay: 0s;
}

.flip-container,
.front,
.back {
  width: 285px;
  height: 200px;
  text-align: center;
  font-size: 30px;
}
/* flipping speed here */

.front {
	padding: 10px 20px;
}

.front .icon {
	width: 90px;
	height: 90px;
	line-height: 100px;
	text-align: center;
	background-color: transparent;
	border: 2px solid #fff;
	border-radius: 50%;
	margin: 20px auto;
}

.flip-container img {
	margin-bottom: 20px;
	
}


.front h4 {
	margin-top: 0px;
	font-size: 16px;
	text-transform: uppercase;
	font-weight: 700;
	color: #fff;
}

.flipper {
  -webkit-transition: 0.3s all;   
-webkit-transition-delay: 0.3s; 
-moz-transition: 0.3s all;   
-moz-transition-delay: 5s; 
-ms-transition: 0.3s all;   
-ms-transition-delay: 5s; 
-o-transition: 0.3s all;   
-o-transition-delay: 5s; 
transition: 0.3s all;   
transition-delay: 0.3s; 
  transform-style: preserve-3d;
  position: relative;
}
/* making the the other side hidden while flipping */


.front,
.back {
  backface-visibility: hidden;
  position: absolute;
  top: 0;
  left: 0;
}
/* front side is in front of a back side */

.front {
  z-index: 2;
  color: white;
  /* for firefox 31 */
	transform: rotateY(0deg);
}
/* back side */

.back {
  transform: rotateY(180deg);
}

.back p {
  color: #fff;
  padding: 20px 20px;
  font-size: 14px;
  text-align:center;
  margin-left:10px;
  margin-right:10px;
}

.first-service .front,
.first-service .back {
	background-color: #3f1474;
}

.second-service .front,
.second-service .back {
	background-color: #ff864c;
}

.third-service .front,
.third-service .back {
	background-color: #3f1474;
}

.fourth-service .front,
.fourth-service .back {
	background-color: #ff864c;
}

/*--------------------------------------------------------------
# Brand
--------------------------------------------------------------*/

.brand-one {
	position: relative;
	z-index: 11;
	padding-top: 93.5px;
	padding-bottom: 93.5px;
	/* background-image: linear-gradient(90deg, #4453ac 0%, #03a9db 100%); */
}

.brand-one img {
	opacity: 0.6;
	transition: all 500ms ease;
}

.brand-one img:hover {
	opacity: 1;
}


/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-bg {
  background: linear-gradient(180deg, #f2f6fa 0%, #fff 100%);
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  font-family: "Poppins", sans-serif;
  color: #213b52;
}

.section-title h2::before {
  content: '';
  position: absolute;
  display: block;
  width: 120px;
  height: 1px;
  background: #ddd;
  bottom: 1px;
  left: calc(50% - 60px);
}

.section-title h2::after {
  content: '';
  position: absolute;
  display: block;
  width: 40px;
  height: 3px;
  background: #fdc134;
  bottom: 0;
  left: calc(50% - 20px);
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

#footer {
  background: #3f1474;
  padding: 0 0 25px 0;
  color: #eee;
  font-size: 14px;
}

#footer .footer-top {
  background: #eee;
  padding: 60px 0 30px 0;
}

#footer .footer-top .footer-info {
  margin-bottom: 30px;
}

#footer .footer-top .footer-info h3 {
  font-size: 26px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  color: #fff;
}

#footer .footer-top .footer-info img {
  height: 40px;
  margin-bottom: 10px;
}

#footer .footer-top .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Raleway", sans-serif;
  color: #fff;
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #FEA47F;
  color: #eee;
  line-height: 1;
  padding: 10px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
  background: #80cbc4;
  color: #fff;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  color: #fd7e14;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 12px;
  /* border-bottom: 1px solid #28a9e2; */
  text-align: center;
  margin-right: 120px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 5px;
  color: #fd7e14;
  font-size: 18px;
}

#footer .footer-top .footer-links ul li {
  /* border-bottom: 1px solid #262c44; */
  padding: 4px 0;
  font-size: 14px;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #3f1474;
}

#footer .footer-top .footer-links ul a:hover {
  color: #3f1474;
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top .footer-contact p {
  line-height: 26px;
  color: #fd7e14;
  
}

#footer .copyright {
  text-align: center;
  padding-top: 30px;
}

#footer .credits {
  text-align: center;
  font-size: 13px;
  color: #ddd;
}
#footer .credits a {
  text-align: center;
  font-size: 13px;
  color: #fd7e14;
}

#contact {
  padding: 70px 0;
  background: url(assets/images/1.jpg) no-repeat center center #ffffff;

}
#contact .contact-info {
  margin-bottom: 1px;
  text-align: center;
}

#contact .contact-info i {
  font-size: 48px;
  display: inline-block;
  margin-bottom: 10px;
  color: #fff;
}

#contact .contact-info address,
#contact .contact-info p {
  margin-bottom: 0;
  color: #000;
  font-size: 14px;

}

#contact .contact-info h3 {
  font-size: 14px;
  margin-bottom: 1px;
  font-weight: bold;
  text-transform: uppercase;
  color: #333333; 
}

#contact .contact-info a {
  color: #000;
  font-size: 14px;
  
}

#contact .contact-info a:hover {
  color: #fd7e14;
}

#contact .contact-info .contact-phone ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#contact .contact-info .contact-phone ul i {
  padding-right: 5px;
  color:  #fd7e14;
  font-size: 14px;
  margin-left: 2px;
}

#contact .contact-info .contact-phone  ul li {
  padding: 1px 0;
}

#contact .contact-info .contact-email ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#contact .contact-info .contact-email ul i {
  padding-right: 5px;
  color: #80cbc4;
  font-size: 14px;
  margin-left: 80px;
}

#contact .contact-info .contact-email  ul li {
  padding: 1px 0;
   float: left;
   font-size: 14px;
}

#contact .contact-address,
#contact .contact-phone,
#contact .contact-email {
  margin-bottom: 20px;
}

.contact_form {
    border: 1px solid #ededed;
    box-shadow: 0 5px 14px rgba(0, 0, 0, 0.1);
    background-color: #f2f3f5;
    padding: 40px 30px;
}

.contact_form .form-control {
    background-color: #fff;
    margin-bottom: 30px;
    border: 1px solid #ebebeb;
    box-sizing: border-box;
    color: #bcbcbc;
    font-size: 14px;
    outline: 0 none;
    padding: 10px 25px;
    height: 55px;
    resize: none;
    box-shadow: none !important;
    width: 100%;
	border-radius: 0px;
}

.contact_form textarea {
    color: #bcbcbc;
    padding: 20px 25px !important;
    height: 160px !important;
}

.contact_form .form-control::-webkit-input-placeholder {
    color: #bcbcbc;
}

.contact_form .form-control::-moz-placeholder {
    opacity: 1;
    color: #bcbcbc;
}

.contact_form .form-control::-ms-input-placeholder {
    color: #bcbcbc;
}

.contact_form textarea.form-control{
	min-height: 225px;
}

.form-group{
	position: relative;
}

.help-block{
	position: absolute;
	top: 100%;
	left: 0px;
}



