/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Common
# Animations
# Main Menu
# Sidemenu
# Banner One
# Page Header
# Footer
# Blog One
	## Blog Grid
	## Blog Details
# Sidebar
# Call to Action One
	## Call to Action Two
	## Call to Action Three
	## Call to Action Four
# FAQ
# Funfact
# Pricing
# Brand One
# Service One
--------------------------------------------------------------*/


/*--------------------------------------------------------------
# Common
--------------------------------------------------------------*/


/*
font-family: 'Quicksand', sans-serif;
*/

:root {
	--thm-font: 'Exo 2', sans-serif;
	--thm-sun: #fded01;
	--thm-base: #ffc506;
	--thm-base-rgb: 255, 134, 76;
	--thm-primary: #229348;
	--thm-primary-rgb: 18, 147, 13;
	--thm-black: rgb(247, 235, 208);
	--thm-black-rgb: 63, 20, 18;
}


body {
	background-color: #7e2d1d;
	background-image: url(/img/pattern.png);
	background-repeat: repeat;
	background-position: right top;
	background-size: 24px;
	font-family: var(--thm-font);
	color: #ffffff;
	font-size: 18px;
	line-height: 36px;
	font-weight: 500;
	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;
}

/* responsive */
@media (min-width: 1200px) {
	.container {
		max-width: 1200px;
	}
}


@media (max-width: 870px) {
	.service-one__single {text-align: right;}
	.service-one__icon {position: absolute !important; left: 20px !important; bottom: 15px !important;}
}

.card-header {
    padding: .75rem 1.25rem;
    margin-bottom: 0;
	color: #421 !important;
    background-color: #fbd513;
    border-bottom: 2px solid #421;
    border-bottom: 2px solid rgba(30,10,0,.7);
}

.table-striped tbody tr:nth-of-type(2n+1) {
    background-color: rgba(247, 232, 31, 0.2);
}
.table td, .table th {
    border-top: 1px solid #f7efc1;
}
/* block title */

.block-title {
	margin-bottom: 60px;
}

.block-title h3 {
	margin: 0;
	font-weight: 800;
	color: var(--thm-base);
	font-size: 46px;
	position: relative;
	top: -10px;
}

.block-title h3 span {
	color: var(--thm-base);
}

.block-title p {
	margin: 0;
	color: #f5ebda;
	font-size: 20px;
	position: relative;
	top: 5px;
}


.thm-btn {
	display: inline-block;
	vertical-align: middle;
	border: none;
	outline: none;
	font-size: 18px;
	font-weight: 800;
	color: #fff;
	border-radius: 2em;
	background-size: auto 200%;
	background-image: linear-gradient(0deg, #4e4 0%, #583 51%, #3e3 100%);
	-webkit-transition: all .4s ease;
	transition: all .4s ease;
	border: 2px solid #ff8;
	background-position: top;
	padding: 6px 36px;
	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: 400;
	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: 2em !important;
	border-width: 1px;
	border-style: solid;
	border-color: rgba(225, 90, 19, .7);
	color: #c32;
	background-color: #f5bc02;
	font-size: 20px;
	font-weight: 800;
	text-align: center;
	padding: 5px;
	display: -webkit-box;
	display: flex;
	-webkit-box-align: center;
	align-items: center;
	-webkit-box-pack: center;
	justify-content: center;
	width: 50px;
	height: 50px;
	-webkit-transition: all .4s ease;
	transition: all .4s ease;
}

.post-pagination a:hover {
	color: #421;
	background-color: #fded01;
	border-color: rgba(225, 90, 19, .7);
}

.post-pagination a.active {
	color: #421;
	background-color: #fded01;
	cursor: auto;
}

.post-pagination a+a, .post-pagination li+li  {
	margin-left: 15px;
}


/*--------------------------------------------------------------
# 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 {
	background-color: #fded01;
	background-image: linear-gradient(0deg, #fded01 0%, #fded01 51%, #fad000 100%);
	border-bottom: 8px solid #fcbc03;
	position: relative;
}

.site-header-one::after {
	position: absolute; bottom: -20px;left: 0; right: 0;
	width: 100%; height: 24px;
	display: block;
	content: "";
	background: url(/img/line.png) repeat-x center center;
	background-size: 24px;
}

.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: 30px;
		padding-right: 30px;
	}
}

@media(max-width: 1360px) {
	.site-header-one .container-fluid {
		padding-left: 15px;
		padding-right: 15px;
	}
}

.site-header-one__logo .side-menu__toggler {
	display: none;
	font-size: 28px;
	margin-left: 30px;
	background: #531;padding: 3px 5px; border-radius: 4px;
	color: #ff1;
	cursor: pointer;
	opacity: 1;
}

.site-header-one__logo .side-menu__toggler:hover {
	color: #f31;
}

.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-left1: 50px;
}

@media(max-width: 3100px) {
	.main-nav__main-navigation .main-nav__navigation-box {
		margin-left: 225px;
	}
	.main-nav__main-navigation .main-nav__navigation-box>li+li {
		margin-left: 35px;
	}
}
@media(max-width: 1780px) {
	.main-nav__main-navigation .main-nav__navigation-box {
		margin-left: 110px;
	}
	.main-nav__main-navigation .main-nav__navigation-box>li+li {
		margin-left: 25px;
	}
}
@media(max-width: 1620px) {
	.main-nav__main-navigation .main-nav__navigation-box {
		margin-left: 45px;
	}
	.main-nav__main-navigation .main-nav__navigation-box>li+li {
		margin-left: 20px;
	}
	.main-nav__main-navigation .main-nav__navigation-box>li>a {
		font-size: 14pt; padding: 5px 12px !important;
	}
}
@media(max-width: 1560px) {
	.main-nav__main-navigation .main-nav__navigation-box {
		margin-left: 30px;
	}
	.main-nav__main-navigation .main-nav__navigation-box>li+li {
		margin-left: 15px;
	}
	.main-nav__main-navigation .main-nav__navigation-box>li>a {
		font-size: 14pt; padding: 4px 11px !important;
	}
}

@media(max-width: 1360px) {
	.main-nav__main-navigation .main-nav__navigation-box {
		margin-left: 12px;
	}
	.main-nav__main-navigation .main-nav__navigation-box>li+li {
		margin-left: 14px;
	}
	.main-nav__main-navigation .main-nav__navigation-box>li>a {
		font-size: 12pt; padding: 4px 8px !important;
	}
}

@media(max-width: 1250px) {
	.main-nav__main-navigation .main-nav__navigation-box {
		margin-left: 12px;
	}
	.main-nav__main-navigation .main-nav__navigation-box>li+li {
		margin-left: 20px;
	}
	.main-nav__main-navigation .main-nav__navigation-box>li>a {
		font-size: 12pt; padding: 3px 6px !important;
	}
}
.main-nav__main-navigation .main-nav__navigation-box>li {
	padding: 19px 0;
	position: relative;
}

.main-nav__main-navigation .main-nav__navigation-box>li+li {
	margin-le1ft: 25px;
}

.main-nav__main-navigation .main-nav__navigation-box>li>a {
	font-size1: 14pt;
	line-height: 18pt;
	font-weight: 800;
	color: #321;
	border-radius: 2em;
	padding: 4px 8px;
	display: block;
	position: relative;
}
.main-nav__main-navigation .main-nav__navigation-box>li>a:hover {
	color: var(--thm-sun);
	background: #321; border-radius: 2em;
	box-shadow: inset 0px 2px 8px 0px rgba(15, 15, 15, 0.5);
	display: block;
	position: relative;
}



.main-nav__main-navigation .dropdown-btn {
	display: none;
}




/* 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: #fded01;
	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: 14px 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;
	transition-duration: 0.1s;
}

.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: .5;
}


.side-menu__block-inner {
	position: relative;
	max-width: 420px;
	width: 100%;
	margin-right: auto;
	height: 100vh;
	background-color: #521906;
	z-index: 999999;
	overflow-y: auto;
	padding: 30px 0;
	position: relative;
}

@media(max-width: 575px) {
	.side-menu__block-inner {
		max-width: 410px;
	}
}

@media(max-width: 480px) {
	.side-menu__block-inner {
		max-width: 360px;
	}
}

@media(max-width: 375px) {
	.side-menu__block-inner {
		max-width: 280px;
	}
}

.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: 50px;
	padding-right: 20px;
}

.mobile-nav__container {
	padding: 30px;
}



.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+li {
	margin-top: 5px;
}

.mobile-nav__container li a {
	display: block;
	-webkit-transition: all 300ms ease;
	transition: all 300ms ease;
	position: relative;
	color: #321;
	background: var(--thm-sun); padding: 5px 10px !important; border-radius: 2em;
	border: 1px solid #542;
	box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.2), -2px 0px 5px 1px rgba(0, 0, 0, 0.3);
}

.mobile-nav__container li a:hover {
	color: var(--thm-sun);
	background: #421; border-radius: 1em;
	border: 1px solid var(--thm-sun);
}


.side-menu__content {
	padding: 0 30px;
}

.side-menu__content p {
	margin: 0;
	font-size: 16px;
	line-height: 24px;
	letter-spacing: .02em;
}

.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% - 50px);
	margin-left: auto;
	margin-right: auto;
	height: 1px;
	background-color: #922916;
	margin-top: 40px;
	margin-bottom: 20px;
}

.side-menu__text p {
	font-size: 14px;
	line-height: 32px;
	color: #9c7d5a;
	margin: 0;
	margin-bottom: 25px;
}

.side-menu__close-btn {
	color: #f32;
	padding: 5px;
	font-size: 22px;
}
.side-menu__close-btn:hover {
	color: #fb3;
}
.sidebar-brand {
	opacity: 1;
	visibility: visible;position:relative;
	-webkit-transition: opacity .5s ease;
	transition: opacity .5s ease;
	font-weight: 800;line-height: 1.3;
	font-size: 32px;
	letter-spacing: 0px;text-shadow: 1px 1px 0px rgb(255, 204, 108);
	color: #fa3; }
.sidebar-brand:before{
		content:attr(data-content);
		position:absolute;left:0;right:0;top:0;bottom:0;
		-webkit-text-stroke:1px rgb(50, 51, 34);
	  opacity: 0.5;}
 .sidebar-brand span {
		color: rgb(8, 255, 82);text-shadow: 1px 1px 0px rgb(151, 245, 143);}
 

@media(max-width: 575px) {

	.side-menu__top,
	.side-menu__content,
	.mobile-nav__container {
		padding-left: 30px;
		padding-right: 30px;
	}

	.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);
	}

}


/*--------------------------------------------------------------
# Banner One
--------------------------------------------------------------*/

.banner-one {
	padding-top: 150px;
	padding-bottom: 86px;
	position: relative;
}

[class*=banner-one__bg-shape-] {
	position: absolute;
	z-index: 8;
}


.banner-one .container {
	position: relative;
	z-index: 10;
}

/*--
.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: 60px;
	color: #fe3;text-shadow: 1px 2px 3px #111;
	letter-spacing: -.02em;
	font-weight: 800;
}

.banner-one__content p {
	margin: 0;
	font-size: 18px;
	padding: 10px; 
	margin-top: 20px;
	border-radius: 6px;
	background: #922916;
    border: 2px solid #840c00;
    border-bottom: 4px solid #840c00;
	line-height: 24px;
	color: #ffe575;
	text-shadow: 1px 2px 2px rgba(34, 9, 1, 0.63);
}

.banner-one__btn {
	padding: 12px 60px;
	border-radius: 2em;
	font-size: 18px;
	background-image: linear-gradient(0deg, #ff0e0e 0%, #ff5f2f 51%, #ff0f0f 100%);
	margin-top: 35px;
}

.banner-one__image img {
	animation: ImgBounce 5s ease-in-out 0s infinite alternate;
}

/*--------------------------------------------------------------
# Page Header
--------------------------------------------------------------*/
.page-header {
    padding-bottom: 25px;
    padding-top: 100px;
    border-bottom1: 8px solid #fcbc03;
}

.page-header .container {
	display: block;
	align-items: center;
}

.page-header h2 {
	margin: 15px 0;
	font-size: 38px;
	font-weight: 800;
	color: #fded01;
	text-shadow: 1px 2px 3px #321;
	text-align: center;
}
.page-header .desc {
	color: #fffddc;
	margin: 15px 0;
	border-radius: 2em 1em;
	background: #922916;
    border: 4px dashed #840c00;
	box-shadow: 0px 0px 0px 4px #922916;
	font-size: 20px; line-height: 1.3; padding: 15px;
	text-shadow: 1px 1px 2px #521;
	text-align: center;
	position: relative;
}
.desc::before {
	content: "";
	position: absolute; right: -50px; top: -75px;
	width: 120px; height: 120px;
	background-image: url(/img/infobee.png);
	background-repeat: no-repeat;
	background-size: 80px;opacity: 0.7;
	background-position: center center;

}

.thm-breadcrumb {
	margin-bottom: 0;
	display: flex;
	align-items: center;
}

.thm-breadcrumb li {
	display: flex;
	align-items: center;
	font-size: 16px;
	font-weight: 600;
	color: #fff;
	opacity: 0.9;
}

.thm-breadcrumb li a {
	color: #fed;
	font-weight: 800;
}

.thm-breadcrumb li:not(:last-of-type)::after {
	content: '/';
	font-size: 15px;margin-bottom: -3px;
	margin-left: 10px;
	margin-right: 10px;
	opacity: 0.5;
}

/*--------------------------------------------------------------
# Wrapper pages content
--------------------------------------------------------------*/
.wrapper {
	background-color: #ffec84;
	border: #521 double 6px;
	box-shadow: 8px 8px 0px 0px rgba(25, 15, 5, 0.4);
	border-radius: 2em 1em;
	padding: 15px;
	color: #421;
}
.wrapper .title {
	color: #c22;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

.site-footer {
	background-color: #421;
	color: #ffefbb;
}

.site-footer__upper {
	padding-top: 90px;
	padding-bottom: 40px;
}

.footer-widget {
	margin-bottom: 20px;
}

.footer-widget__title {
	margin: 0;
	font-size: 20px;
	font-weight: bold;
	color: #f9c840;
	margin-bottom: 20px;
}

.footer-widget p {
	margin: 0;
	margin-right: 5px;
	color: #ffefbb;
	font-size: 14pt;
	line-height: 20pt;
}

.footer-widget__links-list {
	align-items: center;
	border-radius: 1em;
	background-color: #321;
	margin-top: -25px;
	padding: 7px 5px;
}
@media(min-width: 991px) {

	.footer-widget__links-list {
		display: flex;
	}
	.footer-widget__links-list li {
		margin-left: 5px;
		line-height: 16pt;
		display: flex;
		justify-content: center;
		align-items: center;
	}
}

@media(max-width: 990px) {

	.footer-widget__links-list {
		display: block;
	}
	.footer-widget__links-list li {
		margin-left: 5px;
		line-height: 16pt;
		display: inline-block;
		justify-content: center;
		align-items: center;
	}
}

.footer-widget__links-list li a {
	color: #ffefbb; padding: 3px 7px;
	font-size: 18px;
	transition: all 200ms ease;
}

.footer-widget__links-list li a:hover {
	color: #fe3; 
}

.footer-widget__links-list li i {
	opacity: 0.7;
	margin-right: 3px;
}

.footer-widget__newsletter {
	color: #d6c49c;
	font-size: 16px;
	line-height: 26px;
	margin: 0;
}


.footer-widget__about a.sidebar-brand {
	position: relative;
	top: -5px;
}

.footer-widget__about p {
	margin-top: 5px;
	line-height: 22px;
	margin-bottom: 15px;
	font-weight: 300 !important;
}

/* footer bottom */
.site-footer__bottom .inner-container {
	border-top: 3px solid #842;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 2px;
}

.site-footer__bottom p {
	margin: 0; padding: 0;
	color: #e9c870;
	font-size: 15px;
	text-align: center;
}

.flatfootbee {
	content: "";
	position: absolute; right: 27%; bottom: 10px;
	width: 130px; height: 130px;
	background-image: url(/img/bee.png);
	background-repeat: no-repeat;
	background-size: 120px;opacity: 0.7;
	background-position: center center;
	background-blend-mode: hard-light;
}

/*--------------------------------------------------------------
# Blog One
--------------------------------------------------------------*/

.blog-one {
	background-color: #ffdc17;
	padding-top: 20px;
	padding-bottom: 90px;
	position: relative;
}

.blog-one .container {
	position: relative;
}

.blog-one__single {
	background-color: #ffdc17;
	margin-bottom: 30px;
}
.blog-one__single:hover {
	border-radius: 0px 0px 2em 1em;
	margin-bottom: 30px;
}

.blog-one__image {
	overflow: hidden;padding: 2px;
	border-radius: 0px;
	background-color: #421;
}

.blog-one__image>img {
	width: 100%;
	opacity: 1;
	-webkit-transform: scale(1.0);
	transform: scale(1.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;
}

.blog-one__single:hover .blog-one__image>img {
	-webkit-transform: scale(1.05);
	transform: scale(1.05);
	opacity: 0.3;
}

.blog-one__content {
	text-align: center;
	padding: 15px 10px;
	position: relative;
}

.blog-one__content::after {
	content: '';
	width: 100%;
	height: 4px;
	background-color: #421;
	position: absolute;
	bottom: 0;
	left: 0;
	border-radius: 0px;
	transition: all 400ms ease;
}

.blog-one__single:hover .blog-one__content::after {
	height: 100%;
	border-radius: 0px 0px 2em 1em;
	transition: all 400ms ease;
}

.blog-one__content h3 {
	margin: 0;
	font-size: 22px;
	line-height: 32px;
	font-weight: 800;
	color: #c21;
	margin-top: 10px;
	position: relative;
	z-index: 20;
}

.blog-one__content a {
	color: inherit;
	transition: all 300ms ease;
}

.blog-one__single:hover .blog-one__content h3 a,
.blog-one__content h3 a:hover {
	color: #fc2;
}

.blog-one__meta {
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	z-index: 20;
}

.blog-one__meta a+a {
	margin-left: 5px;
}

.blog-one__meta a {
	color: #a31 !important;
	font-size: 16px;
	font-weight: 600;
	display: flex;
	align-items: center;
	justify-content: center;
	line-height: 1em;
	transition: all 500ms ease;
}

.blog-one__meta a i {
	color: #a31;
	margin-right: 5px;
	transition: all 200ms ease;
}

.blog-one__single:hover {
	color: #fc2;
}


/*--------------------------------------------------------------
## Blog Grid
--------------------------------------------------------------*/

.blog-grid {
	padding-top: 20px;
	padding-bottom: 20px;
}

.blog-grid .post-pagination {
	margin-top: 30px;
}


/*--------------------------------------------------------------
## Blog Details
--------------------------------------------------------------*/


.blog-details {
	padding-top: 65px;
	padding-bottom: 50px;
}
.blog-details__content {
	background-color: #ffec84;
	border: #521 double 8px;
	box-shadow: 8px 8px 0px 0px rgba(25, 15, 5, 0.4);
	border-radius: 0em;
	padding: 10px 15px 25px;
	color: #421;
}
.blog-details__content .blog-one__meta2 {
	background-color: #521; display: inline-block;
	padding: 5px 7px; margin: 0;
	border-radius: 1em;
	font-size: 16px;
	line-height: 16px;
	color: #ffec84;
}
.blog-details__content .blog-one__meta2 i {
	padding-right: 3px;
}
.blog-details__content .blog-one__meta2 span {
	color: #fe1;
	font-weight: 600;
}
.blog-details__content h3 {
	margin: 0;
	font-size: 46px;
	line-height: 58px;
	color: #a31;
	font-weight: 800;
	margin-bottom: 5px;
}

.blog-details__content p {
	margin: 0;
	font-size: 18px;
	line-height: 28px;
	font-weight: 500;
}

.blog-details__content p+p {
	margin-top: 20px;
}

.blog-details__image {
	margin-bottom: 20px;
}

.blog-details__image>img {
	border-radius: 10px;
	width: 100%;
}


.comment-one {
	margin-bottom: 25px;
}

.comment-one__single {
	display: -webkit-box;
	display: flex;
	position: relative;
	padding-bottom: 20px;
	margin-bottom: 20px;
}

.comment-one__content {
	padding: 16px 20px;
	background-color: #fff9c7;
	box-shadow: 4px 4px 0px 0px rgba(5, 5, 6, 0.2);
	border-radius: 0 1em 1em 1em;
}

.comment-one__single:hover .comment-one__content {
	background: #fff;
}
.comment-one__content .comment-one__date {
	color: var(--thm-base);
	font-size: 16px;
	font-weight: 600;
	margin: 0;
	margin-bottom: 10px;
	border-bottom: 1px solid rgba(68, 51, 51, 0.349);
}

.comment-one__content .comment-one__date span {
	margin-left: 5px;
	margin-right: 5px;
}

.comment-one__image {
	width: 60px;
}

.comment-one__image i {
	border-radius: 2em 0 0 2em;
	background: #840c00;
	color: #fe4;
	font-size: 28px;
	padding: 20px;
}

.comment-one__single:hover .comment-one__image i {
	
	background: #fe4;
	color: #421;
}
.comment-one__content {
	padding-left: 20px;
}

.comment-one__content h3 {
	margin: 0;
	font-size: 20px;color: #ff3f2e;
	font-weight: 800;
	line-height: 1em;
}

.comment-one__content p {
	color: #531;
	margin: 0;
	font-size: 18px;
	line-height: 28px;
	font-weight: 500;
}





/*--------------------------------------------------------------
# Call to Action One
--------------------------------------------------------------*/

.cta-one {
	overflow: hidden;
	position: relative;
	padding-top: 50px;
	padding-bottom: 100px;
}

.cta-one .container {
	position: relative;
}

.cta-one .my-auto {
	width: 100%;
}

.cta-one [class*=col-] {
	position: relative;
}
.cta-one h3 {
	margin: 0;
	color: #433;
	font-size: 38px;
	font-weight: 800;
	margin-bottom: 20px;
}

.cta-one p {
	margin: 0;
	font-size: 22px;
	font-weight: bold;
	color: #433;
}

.cta-one__content {
	background-color: #ffce2e;
	box-shadow: 12px 12px 0px 0px rgba(55, 35, 1, 0.7);
	padding: 15px;
}
.cta-one__content2 {
	border: 4px dashed #421;
	padding: 25px 25px 0;
	position: relative;
}

@media (min-width: 492px) {
	.cta-one__content2::before {
		content: "";
		position: absolute; right: 10px; bottom: 10px;
		width: 130px; height: 130px;
		background-image: url(/img/footer-bg.png);
		background-repeat: no-repeat;
		background-size: 100px;
		background-position: center center;
		background-blend-mode: hard-light;
	}
	}
@media (min-width: 992px) {
	.cta-one__content2::before {
		content: "";
		position: absolute; right: 5px; top: -45px;
		width: 300px; height: 300px;
		background-image: url(/img/footer-bg.png);
		background-repeat: no-repeat;
		background-size: 235px;
		background-position: center center;
		background-blend-mode: hard-light;
	}
	}
@media (min-width: 1200px) {
.cta-one__content2::before {
	content: "";
	position: absolute; right: 25px; top: -45px;
	width: 350px; height: 350px;
	background-image: url(/img/footer-bg.png);
	background-repeat: no-repeat;
	background-size: 275px;
	background-position: center center;
	background-blend-mode: hard-light;
}
}
.cta-one__content h3, .cta-one__content p {
	font-weight: 800;
}

.cta-one__btn {
	padding: 10px 50px;
	border-radius: 2em;
	font-size: 16pt;margin: 15px auto 35px;
	background-image: linear-gradient(0deg, #ff0e0e 0%, #ff5f2f 51%, #ff0f0f 100%);
}

/*--------------------------------------------------------------
## Call to Action Two
--------------------------------------------------------------*/

.cta-two {
	background-color: #ffde23;
	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: 20px;
}

.cta-two__content>p {
	padding: 15px; border-radius: 1em;
	margin: 0;
	margin-bottom: 52px;
	color: #fef1d9;
	font-size: 18px;
	line-height: 28px;
	text-shadow: 1px 0 1px rgb(34, 28, 18);
}

.cta-two__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: 36px;
	font-weight: 600;
	color: #8b7f9a;
}

.cta-three__btn {
	padding: 13px 57px;
	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: -18px;
	top: -88px;
	animation: ImgBounce 5s ease-in-out 0s infinite alternate;
}

/*--------------------------------------------------------------
## Call to Action Four
--------------------------------------------------------------*/

.cta-four {
	position: relative;
	padding-top: 100px;
	padding-bottom: 100px;
}
.cta-four__wrapper {
	background-color: #ffec84;
	border1: #ffc400 solid 8px;
	box-shadow: 0px 2px 0px 16px rgba(5, 5, 6, 0.3);
	border-radius: 1em 0;
	padding-top: 25px;
	padding-bottom: 25px;
}

.cta-four__bg-shape-1 {
	top: 0;
	left: 0px;
	-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 {
	position: absolute;
	top: 0; 
	right: 0;width: 100%;height: 100%;
	background-image: url(/img/hive.png);
	background-repeat: no-repeat;
	background-size: cover;opacity: 0.1;
	background-position: center center;
	background-blend-mode: hard-light;
}

.cta-four .container {
	position: relative;
}

.cta-four__content {
	margin-left: 50px;
}
.cta-four__content .block-title {
	margin-bottom: 30px;
}

.cta-four__content .block-title h3 {
	letter-spacing: -.03em;
	color: #432 !important;
}
.cta-four__content .block-title h3 span{
	letter-spacing: -.03em;
	color: #c31 !important;
}


.cta-four__list {
	margin-bottom: 30px;
	margin-left: 10px;
}

.cta-four__list li {
	color: #431;
	position: relative;
	padding-left: 32px;
	font-weight: 600;
	font-size: 14pt;
}

.cta-four__list li+li {
	margin-top: 6px;
}

.cta-four__list li>i {
	position: absolute;
	top: 12%; width: 29px;
	left: -12px;
	font-size: 22pt;
	background-image: linear-gradient(0deg, rgb(9, 194, 33) 0%, rgb(42, 194, 28) 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

.cta-four__btn {
	padding: 13px 57px;
	border-radius: 31px;
	font-size: 16px;
	background-image: linear-gradient(0deg, #ff0e0e 0%, #ff5f2f 51%, #ff0f0f 100%);
}

.cta-four__images {
	display: inline-block;
	margin: 0 auto;
	text-align: center;
}

.cta-four__images>img {
	border-radius: 5px;max-width: 90%;
}




/*--------------------------------------------------------------
# FAQ
--------------------------------------------------------------*/

.faq-one {
	padding-bottom: 120px;
	position: relative;
}



.faq-one .container {
	position: relative;
}


.faq-one .accrodion {
	position: relative;
	-webkit-transition: all .4s ease;
	transition: all .4s ease;
	background-color: #ffc400;
	border: 4px solid #ffc400;
	border-radius: 15px;
}


.faq-one .accrodion+.accrodion {
	margin-top: 10px;
}

.faq-one .accrodion.active {
	background-color: #ffde23;
}

.faq-one .accrodion.active .accrodion-inner {
	margin: 0 0px;
}

.faq-one .accrodion.active .accrodion-title {
	padding-bottom: 0;
}


.faq-one .accrodion .accrodion-inner {
	padding: 19.5px 0;
	border-radius: 0px;
	position: relative;
	-webkit-transition: all .4s ease;
	transition: all .4s ease;
}

.faq-one .accrodion .accrodion-title {
	padding: 0px 40px;
	cursor: pointer;
	position: relative;
	-webkit-transition: all .4s ease;
	transition: all .4s ease;
}

@media (max-width: 375px) {
	.faq-one .accrodion .accrodion-title {
		padding-right: 50px;
	}
}

.faq-one .accrodion .accrodion-title:before {
	content: '\f061';
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
	font-size: 14px;
	color: #821;
	text-align: center;
	display: -webkit-box;
	display: flex;
	-webkit-box-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	align-items: center;
	position: absolute;
	top: 50%;
	right: 40px;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	opacity: 1;

	-webkit-transition: all 500ms ease;

	transition: all 500ms ease;

}

.faq-one .accrodion .accrodion-title::after {
	content: '\f063';
	font-weight: 900;
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
	font-size: 14px;
	color: #821;
	text-align: center;
	display: -webkit-box;
	display: flex;
	-webkit-box-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	align-items: center;
	position: absolute;
	top: 50%;
	right: 40px;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	opacity: 0;

	-webkit-transition: all 500ms ease;

	transition: all 500ms ease;

}

.faq-one .accrodion.active .accrodion-title::before {
	opacity: 0;
}

.faq-one .accrodion.active .accrodion-title::after {
	opacity: 1;
}

.faq-one .accrodion .accrodion-title h4 {
	margin: 0;
	color: #821;
	font-size: 18px;
	font-weight: 800;
}

@media (max-width: 375px) {
	.faq-one .accrodion .accrodion-title h4 {
		line-height: 1.3em;
	}
}

.faq-one .accrodion .accrodion-content .inner {
	padding: 0 40px;
	padding-top: 23px;
}

.faq-one .accrodion .accrodion-content p {
	margin: 0;
	color: #521;
	font-size: 18px;
	line-height: 26px;
	font-weight: 600;
}


/*--------------------------------------------------------------
# Funfact
--------------------------------------------------------------*/

.funfact-one {
	position: relative;
	margin-top: -50px;
	margin-bottom: -100px;
}

.funfact-one__single {
	text-shadow: 1px 2px 3px rgba(5, 5, 6, 0.1);
	margin-bottom: 55px;
	margin-top: 50pt;
	min-height: 170px;
	background-size: auto 200%;
	text-align: center;
	border-radius: 25px 15px 25px;
	background-position: top;
	background-image: linear-gradient(0deg, #361a09cc 0%, #6e0e07a6 51%, #461000 100%);
	transition: all 500ms ease;
	position: relative;
	border: 2px solid #f5bc02;
	box-shadow: 4px 4px 0px 0px rgba(5, 5, 6, 0.2);
}

.funfact-one__single::before {
	content: '';
	width: 159px;
	min-height: 162px;
	opacity: 0.15;
	position: absolute;
	bottom: 0;
	right: 0;
	transform: perspective(100px) 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;
	opacity: 0;
	transform-origin: right;
}

.funfact-one__single:hover {
	background-position: bottom;
}

.funfact-one__single:hover::before {
	opacity: 0.15;
	transform: perspective(200px) scaleX(1);
}

.funfact-one__single span { 
	background-color: #f5bc02;
	border: 2px dashed #6e1f07dc;
	box-shadow: inset 4px 4px 5px 0px rgba(5, 5, 6, 0.2);
	width: 100px;
	height: 100px; margin: -50px auto -50px auto;
	display: block;
	border-radius: 100%;
}

.funfact-one__single img {
	padding: 15px;
	z-index: 10;
	-webkit-transform: scale(0.9);
	transform: scale(0.9);
	-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;
	background-image: linear-gradient(180deg, #f29e1f 30%, #c83c12 100%);
	-webkit-background-clip: text; -webkit-text-fill-color: transparent;
	opacity: 0.8;
}

.funfact-one__single:hover img {
	-webkit-transform: scale(1.0);
	transform: scale(1.0);
	opacity: 1;
}
.funfact-one__single h3 {
	text-shadow: 2px 2px 3px rgba(5, 5, 6, 0.2);
	margin: 0;
	margin-top: 60px;
	color: #ffde23;
	font-weight: 800;
	font-size: 140%;
	line-height: 1em;
	margin-bottom: 15px;
	position: relative;
}

.funfact-one__single p {
	text-shadow: 1px 3px 2px rgba(5, 5, 6, 0.1);
	font-size: 100%;
	opacity: 0.95;
	font-weight: 500;
	color: #ffebc2;
	margin: 0;
	position: relative;
	line-height: 1em;
}




/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/

.pricing-one {
	position: relative;
	padding: 0px;
}



.pricing-one__single {
	text-align: center;
	box-shadow: 4px 4px 4px 0px rgba(5, 5, 6, 0.2);
	border-radius: 15px;
	background-color: #ffc400;
	border: 8px solid #ffc400;
	position: relative;
	margin-bottom: 30px;
}
.pricing-one__inner {
	position: relative;
	overflow1: hidden;
	border-radius: 14px;
	padding: 0 5px 0; margin-top: 4px;
}

.pricing-one__image {
	padding: 15px 15px 0; margin: 0;
	background: url("/img/farm-bg.jpg") no-repeat center center;
	background-size: cover;
	border: 2px #421 solid;
	border-radius: 13px;
}

.pricing-one__single h3 {
	margin: 0 5px; height: 27px;
	margin-top: -22px;
	color: #421;
	background-color: #ffc400;
	border-radius: 0 0 1em 1em;
	font-size: 22px;
	font-weight: 800;
	position: relative;
	line-height: 1;
	-webkit-transition: all 400ms;
	transition: all 400ms;
}

.pricing-one__single h3::after {
	content: "";
	position: absolute; left: 0;top: 5px;
	border: 2px #421 solid;
	border-top: 0px #ffc400 solid;
	border-radius: 0 0 1em 1em;
	width: 100%; height: 22px;
}

.pricing-one__single h4 {
	margin: 0; height: 30px;
	margin-top: -7px;
	color: #421;
	font-size: 22px;
	font-weight: 800;
	position: relative;
	line-height: 1;
	-webkit-transition: all 400ms;
	transition: all 400ms;
}

.pricing-one__single:hover h3 {
	color: #e32;
}



.pricing-one__list {
	margin: 0;
	position: relative;
	padding-bottom: 15px;
	padding-top: 15px;
	margin-top: 0px;
	-webkit-transition: all 500ms ease;
	transition: all 500ms ease;
}

.pricing-one__list li {
	line-height: 1em;
	font-size: 18px;
	padding: 7px 5px;
	font-weight: 600;
	-webkit-transition: all 500ms ease;
	transition: all 500ms ease;
	color: #421;
}

.pricing-one__list li span{
	color: #e21;
}
.pricing-one__single:hover .pricing-one__list li {
	color: #432;
}
.pricing-one__list li+li {
	margin-top: 10px;
}
.pricing-one__list li:nth-child(1),.pricing-one__list li:nth-child(2) {
	border-bottom: 2px rgba(22, 11, 0, 0.2) solid;
}


.pricing-one__list li i {
	color: red;
	font-size: 12px;
	margin-right: 10px;
}



.pricing-one__inner::before {
	content: '';
	position: absolute;
	border-radius: 14px;
	bottom: 0;
	right: 0;
	width: 100%;
	height: 100%;
	background: #fded01;
	transform: perspective(100px) scaleX(0.3);
	-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__single:hover .pricing-one__inner::before {
	transform: perspective(300px) 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: 8px 36px;
	border-radius: 2em 1em;
	font-size: 16px;color: #fed;
	text-shadow: 0px 1px 2px rgba(5, 5, 6, 0.2);
	background-image: linear-gradient(0deg, #ff0e0e 0%, #ff5f2f 51%, #ff0f0f 100%);
	margin-bottom: -30px;
	position: relative;
	overflow: hidden;
}

.pricing-one__single:hover .pricing-one__btn {
	background-image: linear-gradient(0deg, #ff5f2f 0%, #ff0f0f 90%);

}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/

.testimonials-one {
	padding: 10px 0 0px;
	position: relative;
}

.testimonials-one .container {
	position: relative;
}

.testimonials-one .block-title {
	margin-bottom: 15px;
}

.testimonials-one__single {
	padding: 15px;margin: 5px;
	background-color: #fff9c7e8;border-radius: 1em 2em;background: #fff9c7e8;
	box-shadow: 4px 4px 0px 0px rgba(5, 5, 6, 0.2);
	position: relative;
}
.testimonials-one__single p {
	margin: 5px;
	color: #433;
	font-size: 24px;
	line-height: 32px;padding: 5px;
}
.testimonials-one__single::before {
	content: "”";
	position: absolute;
	right: 10px; bottom: 0;
	color:#433;opacity: 0.3;
	font-size:75px;
}

.testimonials-one__single h3 {
	color: #ff3f2e;
	border-bottom: 1px solid rgba(68, 51, 51, 0.349);
	font-weight: 800;
	font-size: 24px;
	padding: 0 0 7px;
	margin: 0 5px 0;
}

.testimonials-one__single span {
	font-size: 16px;
	font-weight: 400;
	margin-left: 25px;
	color: #ffa010;
}

.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: relative;
	top: -130px;left: -7%;
	width: 115%;
	display: block;
	align-items: center;
}

.testimonials-one .bx-wrapper .bx-controls-direction a {
	text-indent: 0;
	font-size: 24px;
	top: 0px;
	width: 48px;
	height: 48px;
	color: #c32;
	background-color:#f5bc02;
	border-radius: 2em 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	transition: all .3s ease;
	z-index: 91;
}

.testimonials-one .bx-wrapper .bx-controls-direction a:hover {
	opacity: 1;
	color: #421;
	background-color: #fded01;
}

.testimonials-one .bx-wrapper .bx-prev {
	left: 0px;
	position: absolute;
}

.testimonials-one .bx-wrapper .bx-next {
	position: absolute;
	right: 0px;
}


/*--------------------------------------------------------------
# Brand One
--------------------------------------------------------------*/

.brand-one {
	border-bottom: 2px solid #f4f0f9;
	padding-top: 117px;
	padding-bottom: 117px;
}

.brand-one img {
	opacity: 0.3;
	transition: all 500ms ease;
}

.brand-one img:hover {
	opacity: 0.6;
}

/*--------------------------------------------------------------
# Service One
--------------------------------------------------------------*/

.service-one {
	padding-bottom: 90px;
	padding-top: 120px;
}

.service-one__single {
	margin-bottom: 30px;
	padding: 30px;
	padding-top: 36px;
	border-radius: 1em 2em;
	background-color: #fded01;
	box-shadow: inset 0px 4px 28px 0px rgba(245, 121, 100, 0.7);
	position: relative;
	border: #ffc400 2px solid;
}

.service-one__single:hover {
	box-shadow: inset 0px 6px 24px 0px rgba(245, 121, 100, 0.6);
}

.service-one__icon {
	height: 72px;
	width: 72px;
	background-size: auto 180%;
	background-position: top;
	border-radius: 2em 4px 2em 2em;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	background-image: linear-gradient(0deg, #831 0%, #321 25%, #621 100%);
	position: relative;
	border: 2px solid #fded01;
}

.service-one__icon {
	background-position: bottom;
}

.service-one__single:hover .service-one__icon {
	border-radius: 2em 2em 4px 2em;
}
.service-one__icon i {
	font-size: 32px;
	color: #fded01;
}

.service-one__single h3 {
	font-size: 22px;
	font-weight: 800;
	color: #531;
	margin: 0;
	margin-bottom: 28px;
	transition: all 500ms ease;
	position: relative;
}

.service-one__single p {
	font-size: 16px;
	line-height: 30px;
	font-weight: bold;
	color: #531;
	margin-bottom: 23px;
	transition: all 500ms ease;
	position: relative;
}
.form-control {
	font-size: 16px;
	line-height: 30px;
	border: 2px solid #fac20c;
	border-bottom: 2px solid #fac20c;
	background: #fffbca;
	height: 55px;
	border-radius: 2em;
	padding: 7px 15px !important;
	margin: 15px auto 15px;
}
.form-control:hover {
	background: #fffcfc;
}