:root {
	--font-8: 8px;
	--font-16: 16px;
	--font-18: 18px;
	--font-20: 20px;
	--font-28: 28px;
	--font-30: 30px;
	--font-36: 36px;
	--font-45: 45px;
	--font-50: 50px;
	--font-60: 60px;
	--font-65: 65px;
	--font-70: 70px;
	--font-80: 80px;
	--font-125: 125px;
	--font-unbounded: 'Unbounded', Sans-serif;
	--font-source-code-pro: 'Source Code Pro', monospace;
	--font-archivo: 'Archivo';
}


/* Keyframe Animation */
@keyframes fade_right {
	0% {
		opacity: 1;
	}

	100% {
		width: 100%;
		opacity: 0;
	}
}

@-webkit-keyframes fade_right {
	0% {
		opacity: 1;
	}

	100% {
		width: 100%;
		opacity: 0;
	}
}


@keyframes slide {
	0% {
		transform: translate(0);
	}

	100% {
		transform: translate(-3840px);
	}
}

@keyframes slide-reverse {
	0% {
		transform: translate(0);
	}

	100% {
		transform: translate(3840px);
	}
}

@keyframes fading {
	0% {
		opacity: 0;
	}

	20% {
		opacity: 0.2;
	}

	40% {
		opacity: 0.4;
	}

	60% {
		opacity: 0.6;
	}

	80% {
		opacity: 0.8;
	}

	100% {
		opacity: 1;
	}
}

@keyframes slideInLeft {
	from {
		transform: translate3d(-100%, 0, 0);
		visibility: visible
	}

	to {
		transform: translate3d(0, 0, 0)
	}
}

@keyframes slideInUp {
	from {
		transform: translate3d(0, 100%, 0);
		visibility: visible
	}

	to {
		transform: translate3d(0, 0, 0)
	}
}

@keyframes slideInRight {
	from {
		transform: translate3d(100%, 0, 0);
		visibility: visible
	}

	to {
		transform: translate3d(0, 0, 0)
	}
}

/* Elementor Header */
/* .loader { display: none !important; } */
.page-template-template-animated-homepage #main-header:after,
.page-template-template-animated-homepage #main-header.fix-header:after {
	content: '';
	position: absolute;
	left: 0;
	top: 0px;
	width: 100%;
	height: 0;
	z-index: -1;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
	pointer-events: none;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
	transform: matrix(1, 0, 0, -1, 0, 0);
	height: 232px !important;
}

/* Common Section */
html:not(.animation-complete) body.page-template-template-animated-homepage {
	overflow: hidden !important;
}

body {
	margin: 0;
	padding: 0;
}

.wrapper {
	max-width: 1360px;
	width: 100%;
	margin: 0 auto;
	padding: 0 30px;
}

.section {
	padding: 250px 0;
	overflow: hidden;
	display: block;
	width: 100%;
	position: relative;
}

.section.pt-0 {
	padding-top: 0;
}

.section.pb-0 {
	padding-bottom: 0;
}

.section.p-0 {
	padding: 0;
}

.min-height-100,
.full-height {
	min-height: 100vh;
}

.full-height-with-center {
	height: 100%;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}

.common-button {
	font-family: var(--font-unbounded) !important;
	text-transform: uppercase;
	font-size: var(--font-20);
	line-height: 1;
	color: #000000 !important;
	background: linear-gradient(267.06deg, #90DBFB 0%, #A3DDCC 49.48%, #BBDFA1 99.48%);
	display: inline-block;
	font-weight: 700;
	border-radius: 10px;
	padding: 27px;
	min-width: 293px;
	text-align: center;
	text-decoration: none !important;
	position: relative;
}

.common-button:hover:before {
	-webkit-animation: fade_right 1s ease;
	-moz-animation: fade_right 1s ease;
	-ms-animation: fade_right 1s ease;
	-o-animation: fade_right 1s ease;
	animation: fade_right 1s ease;
}

.common-button:before {
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 0%;
	background: -moz-linear-gradient(left, rgba(241, 75, 89, 0) 0%, rgba(255, 255, 255, 1) 100%);
	background: -webkit-linear-gradient(left, rgba(241, 75, 89, 0) 0%, rgba(255, 255, 255, 1) 100%);
	background: linear-gradient(to right, rgba(241, 75, 89, 0) 0%, rgba(255, 255, 255, 1) 100%);
	content: "";
	z-index: 1;
}

.d-flex {
	display: flex;
	flex-wrap: wrap;
}

.align-items-center {
	align-items: center;
}

.height-100 {
	height: 100%;
}

.link-button {
	font-size: var(--font-18);
	line-height: 1;
	font-family: var(--font-unbounded) !important;
	text-decoration: none !important;
	display: inline-flex;
	align-items: center;
	transition: 0.5s all;
}

.link-button:after {
	content: "";
	background: url('data:image/svg+xml;utf8,<svg width="10" height="16" viewBox="0 0 10 16" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M2 1C2 1 2.93477 3.61599 4 5C4.96788 6.25753 7 7.74074 7 7.74074C4 10.5 3.5 11.5 2 14.5" stroke="white" stroke-width="3"/></svg>') center center/cover no-repeat;
	border-radius: 100%;
	width: 10px;
	height: 16px;
	display: inline-block;
	margin-left: 14px;
}

.common-button.white-button {
	background: transparent;
	border: 1px solid #ffffff;
	color: #ffffff !important;
	text-decoration: none !important;
	min-width: 282px;
}

body.page-template-template-animated-homepage {
	font-weight: 500;
	font-size: var(--font-16);
	line-height: 1.4375;
}

body.page-template-template-animated-homepage main a {
	font-weight: 700;
	text-decoration: underline;
}

/* Heading */

.big-heading .heading {
	font-family: var(--font-unbounded);
	font-style: normal;
	font-weight: 700;
	font-size: var(--font-80);
	text-transform: uppercase;
	text-align: center;
	max-width: 1144px;
	margin: 0 auto;
	line-height: 1.085714285714286;
}

.big-heading.small .heading {
	font-size: var(--font-60);
	line-height: 1;
}

.big-heading.small-second .heading {
	font-size: var(--font-70);
	line-height: 1.114285714285714;
}

.big-heading .heading span {
	background: linear-gradient(267.06deg, #90DBFB 0%, #A3DDCC 50%, #BBDFA1 100%);
	background-size: 100%;
	background-repeat: repeat;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	-moz-background-clip: text;
	-moz-text-fill-color: transparent;
	display: inline-block;
}


/* hero-banner-section */
.hero-banner-section {
	margin: 0;
	padding: 0;
	width: 100%;
	background: #000000 url('../images/banner-image.jpg') center center / cover no-repeat;
	color: #ffffff;
	position: relative;
	z-index: 1;
}

.hero-banner-section.active-div:before {
	top: -50%;
	opacity: 1;
	transition-delay: 3s;
}

.hero-banner-section:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	margin: auto;
	background-image: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 50%);
	transition: 0.5s all;
	height: 100%;
	opacity: 0;
}

.hero-banner-section:after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 50%);
	z-index: -1;
}

.animation-start .hero-banner-section:after {
	animation: fading 3s normal linear;
}

.hero-banner-marquee-text {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-content: center;
	padding: 175px 0 20px 0;
	width: 100%;
	overflow: hidden;
}

.slide-text,
.hero-tagline {
	font-family: var(--font-source-code-pro);
	font-weight: 400;
	font-style: normal;
	font-size: 1.249vw;
	line-height: 1.596vw;
	letter-spacing: 0.05em;
	color: #ffffff;
	white-space: nowrap;
	position: relative;
}

.slide-text.hidden {
	opacity: 0;
	animation-play-state: paused;
	transition: 0.4s all linear;
	-webkit-transition: 0.4s all linear;
	-o-transition: 0.4s all linear;
}

.animation-start .slide-text {
	animation: slide 200s linear infinite;
}

.animation-start .slide-text:nth-child(odd) {
	animation: slide-reverse 200s linear infinite;
}

.animation-slide {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	opacity: 0;
	transition: 1s all linear;
	-webkit-transition: 1s all linear;
	-ms-transition: 1s all linear;
	-moz-transition: 1s all linear;
	-o-transition: 1s all linear;
}

.animation-start .slide-text.main-slide {
	transition: 0.6s all;
	-webkit-transition: 0.6s all;
	-o-transition: 0.6s all;
	transition-delay: 0.1s;
	-webkit-transition-delay: 0.1s;
	-moz-transition-delay: 0.1s;
	-ms-transition-delay: 0.1s;
	-o-transition-delay: 0.1s;
	right: 0;
}

.animation-start .animation-slide {
	opacity: 1;
	transition-delay: 0.1s;
}

.animation-start .main-slide>div:nth-child(1) {
	opacity: 0;
	transition: 0.5s;
	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
	-ms-transition: 0.5s;
	-o-transition: 0.5s;
	transition-delay: 0.1s;
	-webkit-transition-delay: 0.1s;
	-moz-transition-delay: 0.1s;
	-ms-transition-delay: 0.1s;
	-o-transition-delay: 0.1s;
}

.animation-start .slide-text.main-slide.stop {
	animation-play-state: paused;
}

.letter {
	transition: .5s all linear;
}

.animation-start .slide-text.main-slide.stop .letter {
	opacity: 0;
}

.hero-banner-content {
	margin: 0;
	padding: 0;
	top: 0;
	left: 0;
	right: 0;
	position: absolute;
	text-align: center;
	opacity: 0;
	visibility: hidden;
}

.hero-banner-content .hero-content-header {
	font-variant-numeric: tabular-nums;
	margin-bottom: 10px;
	transition: 0.5s all;
	display: block;
	width: 100%;
	text-align: center;
}

.hero-content-body .banner-heading {
	font-weight: 700;
	font-size: var(--font-125);
	margin: 0 0 19px 0;
	opacity: 0;
	transition: 1s all;
	-webkit-transition: 1s all;
	-moz-transition: 1s all;
	-ms-transition: 1s all;
	-o-transition: 1s all;
	transition-delay: 1.8s;
	display: inline-block;
	line-height: 1;
}

.hero-content-intro {
	/* max-width: 38.541666666666664%; */
	max-width: 734px;
	margin: 0 auto;
	opacity: 0;
	transition: 0.3s all;
	-webkit-transition: 0.3s all;
	-moz-transition: 0.3s all;
	-ms-transition: 0.3s all;
	-o-transition: 0.3s all;
	transition-delay: 3.1s;
}

.hero-content-intro p {
	font-weight: 500;
	font-size: var(--font-30);
	line-height: 1;
	margin-bottom: 0;
	font-family: var(--font-unbounded);
}

.hero-content-intro .common-button {
	margin-top: 38px;
}

.active-div .hero-content-body .banner-heading {
	opacity: 1;
}

.active-div .hero-content-intro {
	opacity: 1;
}

.active-div .hero-content-header {
	margin-top: -100px;
	transition-delay: 3s;
	opacity: 0;
}

/* intro-about-section */
.intro-image {
	margin-bottom: 250px;
}

/* testimonial-section */
/* section.testimonial-section { padding: 250px 0; } */
.testimonial-grid {
	background: url('../images/background-second.jpg') center center / cover no-repeat;
	border-radius: 20px;
	padding: 100px 37px;
	margin: 77px 0 0 0;
}

.testimonial-row {
	margin: 0 -16.5px;
	display: flex;
	flex-wrap: wrap;
}

.testimonial-grid .col-3 {
	width: 33.33%;
	padding: 0 16.5px;
	display: flex;
	display: -webkit-box;
	flex-direction: column;
	/* -webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	align-items: stretch; */
}

.testimonial-block {
	background: rgba(255, 255, 255, 0.2);
	border-radius: 20px;
	padding: 38px 25px 28px 25px;
	/* height: 100%; */
	display: flex;
	flex-direction: column;
}

.testimonial-block h3 {
	font-size: var(--font-28);
	line-height: 1.071428571428571;
	margin: 0 0 15px;
}

.testimonial-footer {
	margin-top: auto;
}

.start-rating {
	display: flex;
	flex-wrap: wrap;
	list-style-type: none;
	margin-bottom: 28px;
}

.start-rating li {
	margin-right: 4px;
}

.start-rating li img {
	width: 25px;
}

.testimonial-content {
	margin-bottom: 51px;
}

.testimonial-footer-content {
	text-align: center;
	margin-top: 39px;
}

.testimonial-footer-content p {
	font-weight: 300;
}

/* blog-section */
/* .blog-section { padding: 250px 0; } */
.blog-grid-header {
	text-align: left;
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	margin-bottom: 41px;
}

.blog-grid-header .big-heading .heading {
	text-align: left;
}

.blog-grid {
	display: flex;
	flex-wrap: wrap;
	margin: -20px -30px;
}

.blog-grid .col-3 {
	width: 33.33%;
	padding: 20px 30px;
	display: flex;
	display: -webkit-box;
	flex-direction: column;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	align-items: stretch;
}

.blog-grid .col-3.full-blog {
	width: 100%;
	margin-top: 78px;
}

.full-blog .blog-block {
	width: calc(100% - 18px);
	border: 1px solid #FFFFFF;
	border-radius: 20px;
	background: transparent;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	flex-direction: unset;
	margin-left: auto;
}

.full-blog .blog-block .blog-image {
	width: 49.68944099378882%;
	margin-left: -55px;
	background: transparent;
	margin-top: -108px;
	margin-bottom: -30px;
	border-radius: 20px;
	max-height: 456px;
	overflow: hidden;
	margin-bottom: 25px;
}

.full-blog .blog-block .blog-image img {
	object-fit: cover;
	width: 100%;
	height: 100%;
}

.full-blog .blog-block .blog-content {
	width: 39.984472049689444%;
	margin-top: 9px;
	display: flex;
	flex-direction: column;
}

.blog-content {
	/* height: 100%; */
	display: flex;
	flex-direction: column;
}

.full-blog .blog-heading {
	margin-bottom: 23px;
}

.full-blog .blog-info {
	margin-bottom: 14px;
}

.full-blog .blog-heading h3 {
	font-size: var(--font-36);
	line-height: 0.972222222222222;
	max-width: 90%;
}

.blog-block {
	/* height: 100%; */
	background: rgba(255, 255, 255, 0.1);
	border-radius: 20px;
	padding: 30px 35px;
	display: flex;
	flex-direction: column;
}

.blog-cat {
	display: inline-block;
	margin-bottom: 20px;
}

.blog-cat div {
	font-family: var(--font-unbounded);
	font-style: normal;
	font-weight: 600;
	font-size: var(--font-8);
	color: rgba(255, 255, 255, 0.5);
	line-height: 1;
	border: 1px solid rgba(255, 255, 255, 0.5);
	padding: 8px 12px;
	border-radius: 5px;
	display: inline-block;
}

.blog-info {
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 22px;
}

.blog-info div {
	font-weight: 700;
	font-family: var(--font-unbounded);
	font-size: 12px;
	line-height: 20px;
	color: #ffffff;
}

.blog-info div:last-child:after {
	display: none;
}

.blog-info .blog-time {
	font-size: 14px;
	font-weight: 300;
	line-height: 20px;
	opacity: 0.5;
	font-family: var(--font-archivo);
}

.blog-info div:after {
	content: "|";
	display: inline-block;
	margin: 0 7px;
}

.blog-heading {
	margin-bottom: 29px;
}

.blog-heading h3 {
	font-size: 26px;
	line-height: 1.230769230769231;
	font-weight: 500 !important;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
}

.blog-description {
	margin-bottom: 46px;
}

.blog-description p {
	font-weight: 300;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	overflow: hidden;
}

.blog-link {
	text-align: right;
	margin-top: auto;
}

/* features-image-section */

section.features-image-section {
	margin: 0;
	padding-bottom: 90px;
	text-align: center;
	overflow: hidden;
	background: url('../images/background-third.jpg') center center / cover no-repeat;
	position: relative;
	z-index: 1;
}

.features-image-section:after {
	content: "";
	background-image: linear-gradient(180deg, #000000 0%, #F2295B03 100%);
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
}

.features-image-section .big-heading {
	margin-bottom: 40px
}

.feature-image-gallery {
	margin-top: 16px;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	margin-left: -15px;
	margin-right: -15px;
}

.feature-image-gallery .gallery-slide {
	width: 33.33%;
	padding: 0 15px;
	opacity: 0;
	animation-duration: 1.25s;
	animation-delay: 0.5s;
	transition: 0.2s all;
	transition-delay: 0.5s;
	opacity: 0;
}

.feature-image-gallery .gallery-slide img {
	max-width: 100%;
	width: 100%;
}


.features-image-section .common-button {
	opacity: 0;
	transition: 0.5s all;
}

section.features-image-section.active .common-button {
	opacity: 1;
	transition-delay: 2s;
}

section.features-image-section.active .feature-image-gallery .gallery-slide {
	animation-name: slideInUp;
	opacity: 1;
}

section.features-image-section.active .feature-image-gallery .gallery-slide:nth-child(1) {
	animation-name: slideInLeft;
}

section.features-image-section.active .feature-image-gallery .gallery-slide:nth-child(3) {
	animation-name: slideInRight;
}



/* feature-block-row */
.feature-block-row {
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	padding-top: 154px !important;
}

.feature-block-row .left-part {
	/* width: 44.30769230769231%; */
	width: 46.307692%;
}

.align-center {
	display: flex;
	align-items: center;
	height: 100%;
	justify-content: flex-end;
}

.feature-block-row .right-part {
	width: 60.15384615384615%;
	margin-right: -15.84615384615384%;
}

.feature-block-contents {
	position: relative;
	height: 100%;
}

.feature-block-content {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.feature-image {
	display: none;
	max-width: 370px;
	margin: 0 auto 30px auto;
}

.feature-block-content .big-heading {
	margin-bottom: 27px;
}

.feature-block-content p {
	font-weight: 300;
	max-width: 78%;
}

.feature-block-content .big-heading .heading {
	font-size: var(--font-50);
	font-weight: 700;
	text-align: left;
}

.feature-block-images {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	justify-content: center;
	margin-top: 300px;
}

.feature-block-images .feature-block-image {
	margin-top: -300px;
}

.feature-block-images .feature-block-image.ignore {
	display: none;
}

.feature-block-images .feature-block-image.ignore.active {
	display: block !important;
}



.feature-block-images .feature-block-image:nth-child(4) {
	z-index: 1;
}

.feature-block-images .feature-block-image:nth-child(3) {
	z-index: 2;
}

.feature-block-images .feature-block-image:nth-child(2) {
	z-index: 3;
}

.feature-block-images .feature-block-image:nth-child(1) {
	z-index: 4;
}


/* squirrel-pattern-block-section */

.squirrel-pattern {
	position: fixed;
	left: 0;
	width: 100vw;
	height: 100vh;
	top: 0;
	bottom: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	transform: scale(0.8) rotate(10deg);
	transition: 0.5s all;
	-webkit-transition: 0.5s all;
	-moz-transition: 0.5s all;
	-ms-transition: 0.5s all;
	-o-transition: 0.5s all;
	max-width: 1440px;
	margin: 0 auto;
	right: 0;
}

.squirrel-pattern:after {
	content: "";
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100vw;
	height: 100vh;
	transform: scale(1.2) rotate(-10deg);
	transition: 0.5s all;
	-webkit-transition: 0.5s all;
	-moz-transition: 0.5s all;
	-ms-transition: 0.5s all;
	-o-transition: 0.5s all;
	background: #000000 url('../images/banner-image.jpg') center center / cover no-repeat;
}

.squirrel-pattern.pattern-active {
	opacity: 1;
	visibility: visible;
	transform: scale(1) rotate(0);
}

.squirrel-pattern.pattern-active:after {
	transform: scale(1) rotate(0);
}


.squirrel-pattern-bg {
	position: fixed;
	/* top: -130px; */
	/* top: 30; */
	top: 0;
	bottom: 0;
	width: 100vw;
	height: calc(100vh + 190px);
	max-width: initial;
	display: inherit;
	background: #000000 url(../images/banner-image.jpg) center center / cover no-repeat;
	transform: scale(0.8) rotate(-14deg);
	transition: 0.8s all;
	-webkit-transition: 0.8s all;
	-moz-transition: 0.8s all;
	-ms-transition: 0.8s all;
	-o-transition: 0.8s all;
	opacity: 0;
	visibility: hidden;
	display: flex;
	align-items: center;
}

.squirrel-pattern-bg:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: #000000 url(../images/banner-image.jpg) center center / cover no-repeat;
	transform: scale(1.2);
}

.squirrel-pattern-bg.pattern-active {
	opacity: 1;
	visibility: visible;
	transform: scale(1) rotate(-7.55deg);
}

.svg-image-rotate {
	margin: 0 auto;
	width: 175.931944%;
	max-width: unset;
	position: relative;
	z-index: 1;
	transform-origin: 30.91% 34.75%;
	left: -208px;
	top: 140px;
}

.drop-shadow {
	transition: 0.5s all;
	-webkit-transition: 0.5s all;
	-moz-transition: 0.5s all;
	-ms-transition: 0.5s all;
	-o-transition: 0.5s all;
}

.rotate-complete .drop-shadow {
	opacity: 0;
}

.svg-image-rotate .left,
.svg-image-rotate .right,
.svg-image-rotate .top,
.svg-image-rotate .bottom {
	position: absolute;
	height: 1000vw;
	width: 1000vw;
	background: #000;
	z-index: -1;
	margin: 0.5px;
	/* margin-top: -130px; */
}

.svg-image-rotate img {
	width: 100%;
	position: relative;
	left: 0;
	z-index: 3;
}

.svg-image-rotate .left {
	transform: translateX(-100%) translateY(-50%);
	bottom: 0;
	top: 0;
}


.svg-image-rotate .right {
	top: 0;
	transform: translateX(100%) translateY(-50%);
	right: 0;
}


.svg-image-rotate .top {
	left: 0;
	right: 0;
	transform: translateY(-100%) translateX(-50%);
	top: 0;
}


.svg-image-rotate .bottom {
	left: 0;
	transform: translateY(100%) translateX(-50%);
	bottom: 0;
	right: 0;
}


.squirrel-pattern svg path {
	opacity: 0;
	transition: 0.1s all linear;
	-webkit-transition: 0.1s all linear;
	-moz-transition: 0.1s all linear;
	-ms-transition: 0.1s all linear;
	-o-transition: 0.1s all linear;
}

.squirrel-pattern.pattern-active svg path {
	opacity: 1;
}

.grid-row {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -7.5px;
}

.grid-row .col-3 {
	padding: 7.5px;
	width: 25%;
	display: flex;
	display: -webkit-box;
	flex-direction: column;
	/* -webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	align-items: stretch; */
}

.border-block {
	border: 1px solid #FFFFFF;
	border-radius: 20px;
	padding: 37px 25px;
	/* height: 100%; */
	display: flex;
	flex-direction: column;
}

.border-block h3 {
	margin: 0 0 23px 0;
	font-size: var(--font-28);
	line-height: 1;
}

.border-block p {
	font-size: var(--font-16);
	line-height: 1.375
}

.button {
	margin-top: auto;
}

.border-block a {
	margin-top: auto;
}

.border-block p {
	font-weight: 400;
}

.border-block .link-button {
	margin-top: 45px;
}

.squirrel-pattern-section {
	margin: 0;
	padding: 0 0 0 0;
	position: relative;
	overflow: hidden;

}

.squirrel-pattern-section>.d-flex {
	padding-top: 154px;
}

.section-common-padding.pb-0 {
	padding-bottom: 0;
}

.squirrel-pattern-block-section {
	position: relative;
	z-index: 2;
	padding: 225px 0;
}

.squirrel-pattern-text-block {
	margin: 0;
	padding: 0;
}

.squirrel-pattern-text-block .big-heading .heading {
	font-size: var(--font-65);
	line-height: 0.953846153846154;
	text-align: left;
	margin-bottom: 35px;
}

.squirrel-pattern-text-block p {
	font-family: var(--font-unbounded);
	font-weight: 500;
	font-size: var(--font-20);
	line-height: 1.4;
	max-width: 532px;
}

.squirrel-pattern-section .wrapper {
	display: flex;
	/* align-items: center; */
	flex-wrap: wrap;
	justify-content: space-between;
}

.squirrel-pattern-section .left-part {
	width: 53%;
	padding-top: 6%;
	position: relative;
}


/* .animated-squirrel-text:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    transform: translate(33%, -49%);
    width: 20.042vw;
    background: #000000;
    filter: blur(2.604vw);
    height: 20.042vw;
    z-index: 1;
} */

.animated-squirrel-text {
	position: relative;
}

.animated-squirrel-text>.animated-text {
	z-index: 2;
}

.animated-squirrel-text {
	position: relative;
	min-height: 54px;
}

.animated-squirrel-text>.animated-text {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: auto;
}

.animated-text .banner-heading {
	opacity: 0;
}

.animated-squirrel-text .big-heading .heading {
	font-size: var(--font-45);
	text-align: right;
}

.squirrel-pattern-section .right-part {
	width: 42.46153846153846%;
}

.animated-squirrel-text .big-heading .heading i {
	font-style: unset;
	display: inline-block;
	text-align: center;
}





/* Responsive CSS */
@media only screen and (max-width:1366px) {
	:root {
		--font-18: 17px;
		--font-20: 19px;
		--font-28: 26px;
		--font-30: 28px;
		--font-36: 34px;
		--font-45: 42px;
		--font-50: 47px;
		--font-60: 56px;
		--font-65: 61px;
		--font-70: 66px;
		--font-80: 75px;
		--font-125: 118px;
	}

	.section {
		padding: 237px 0;
	}

	.common-button {
		padding: 25px;
		min-width: 277px;
	}

	.common-button.white-button {
		min-width: 267px;
	}

	/* testimonial-grid */
	.testimonial-grid {
		padding: 94px 35px;
		margin: 73px 0 0 0;
	}

	.testimonial-row {
		margin: 0 -15px;
	}

	.testimonial-grid .col-3 {
		padding: 0 15px;
	}

	.start-rating {
		margin-bottom: 26px;
	}

	.testimonial-content {
		margin-bottom: 51px;
	}

	.testimonial-footer-content {
		margin-top: 36px;
	}

	/* Blog */
	.blog-grid {
		margin-left: -28px;
		margin-right: -28px;
	}

	.blog-grid .col-3 {
		padding: 18px 28px;
	}

	.blog-block {
		padding: 30px 33px;
	}

	.blog-info {
		margin-bottom: 22px;
	}

	.blog-description {
		margin-bottom: 43px;
	}

	.full-blog .blog-block .blog-image {
		margin-left: -50px;
		margin-bottom: 23px;
		margin-top: -102px;
	}

	.blog-heading h3 {
		font-size: 24px;
	}

	.full-blog .blog-heading {
		margin-bottom: 21px;
	}

	.blog-grid .col-3.full-blog {
		margin-top: 73px;
	}

	.features-image-section .big-heading {
		margin-bottom: 37px;
	}

	section.features-image-section {
		padding-bottom: 85px;
	}

	.hero-banner-marquee-text {
		padding: 166px 0 18px 0;
	}

	.hero-content-intro .common-button {
		margin-top: 36px;
	}

	.intro-image {
		margin-bottom: 237px;
	}

	.border-block {
		padding: 35px 23px;
	}

	.border-block .link-button {
		margin-top: 42px;
	}

	.squirrel-pattern-text-block .big-heading .heading {
		margin-bottom: 33px;
	}

	.feature-block-images {
		margin-top: 284px;
	}

	.feature-block-images .feature-block-image {
		margin-top: -284px;
	}

	.feature-block-row .right-part {
		width: 56.153846%;
	}
}

@media only screen and (max-width:1342px) {
	.wrapper {
		padding: 0 20px;
	}
}

@media only screen and (max-width:1200px) {
	:root {
		--font-20: 18px;
		--font-28: 23px;
		--font-30: 25px;
		--font-36: 30px;
		--font-45: 37px;
		--font-50: 41px;
		--font-60: 56px;
		--font-65: 53px;
		--font-70: 66px;
		--font-80: 75px;
		--font-125: 118px;
	}

	.section {
		padding: 208px 0;
	}

	.common-button {
		padding: 22px;
		min-width: 244px;
	}

	.common-button.white-button {
		min-width: 235px;
	}

	/* testimonial-grid */
	.testimonial-grid {
		padding: 83px 30px;
		margin: 64px 0 0 0;
	}

	.testimonial-row {
		margin: 0 -13px;
	}

	.testimonial-grid .col-3 {
		padding: 0 13px;
	}

	.start-rating {
		margin-bottom: 23px;
	}

	.testimonial-content {
		margin-bottom: 48px;
	}

	.testimonial-footer-content {
		margin-top: 32px;
	}

	/* Blog */
	.blog-grid {
		margin-left: -25px;
		margin-right: -25px;
	}

	.blog-grid .col-3 {
		padding: 16px 25px;
	}

	.blog-block {
		padding: 28px 29px;
	}

	.blog-info {
		margin-bottom: 20px;
	}

	.blog-heading {
		margin-bottom: 27px;
	}

	.blog-description {
		margin-bottom: 38px;
	}

	.full-blog .blog-block .blog-content {
		width: 50%;
	}

	.full-blog .blog-block .blog-image {
		margin-left: -40px;
		margin-bottom: 20px;
		margin-top: -90px;
	}

	.blog-heading h3 {
		font-size: 21px;
	}

	.full-blog .blog-heading {
		margin-bottom: 19px;
	}

	.blog-grid .col-3.full-blog {
		margin-top: 65px;
	}

	.features-image-section .big-heading {
		margin-bottom: 33px;
	}

	section.features-image-section {
		padding-bottom: 75px;
	}

	.hero-banner-marquee-text {
		padding: 175px 0 16px 0;
	}

	.hero-content-intro .common-button {
		margin-top: 31px;
	}

	.intro-image {
		margin-bottom: 208px;
	}

	.border-block {
		padding: 30px 20px;
	}

	.border-block .link-button {
		margin-top: 37px;
	}

	.squirrel-pattern-text-block .big-heading .heading {
		margin-bottom: 29px;
	}

	.feature-block-images {
		margin-top: 250px;
	}

	.feature-block-images .feature-block-image {
		margin-top: -250px;
	}
}

@media only screen and (max-width:1024px) {
	:root {
		--font-18: 15px;
		--font-20: 17px;
		--font-28: 19px;
		--font-30: 21px;
		--font-36: 25px;
		--font-45: 32px;
		--font-50: 35px;
		--font-60: 45px;
		--font-65: 38px;
		--font-70: 58px;
		--font-80: 56px;
		--font-125: 104px;
	}

	.section {
		padding: 177px 0;
	}

	.intro-about-section {
		min-height: auto;
	}

	/* Hero Banner */


	/* testimonial-grid */
	.testimonial-grid {
		padding: 71px 26px;
		margin: 54px 0 0 0;
	}

	.testimonial-row {
		margin: 0 -11px;
	}

	.testimonial-grid .col-3 {
		padding: 0 11px;
	}

	.start-rating {
		margin-bottom: 19px;
	}

	.testimonial-content {
		margin-bottom: 42px;
	}

	.testimonial-footer-content {
		margin-top: 27px;
	}

	/* Blog */
	.blog-grid {
		margin-left: -21px;
		margin-right: -21px;
	}

	.blog-grid .col-3 {
		padding: 14px 21px;
	}

	.blog-block {
		padding: 25px 24px;
	}

	.blog-info {
		margin-bottom: 18px;
	}

	.blog-heading {
		margin-bottom: 24px;
	}

	.blog-description {
		margin-bottom: 32px;
	}

	.full-blog .blog-block .blog-image {
		margin-left: -34px;
		margin-bottom: 17px;
		margin-top: -76px;
	}

	.blog-heading h3 {
		font-size: 18px;
	}

	.full-blog .blog-heading {
		margin-bottom: 16px;
	}

	.blog-grid .col-3.full-blog {
		margin-top: 55px;
	}

	.features-image-section .big-heading {
		margin-bottom: 28px;
	}

	section.features-image-section {
		padding-bottom: 64px;
	}

	.hero-content-intro {
		max-width: 500px;
		padding: 0 30px;
	}

	.hero-banner-marquee-text {
		padding: 124px 0 14px 0;
	}

	.hero-content-intro .common-button {
		margin-top: 27px;
	}

	.intro-image {
		margin-bottom: 177px;
	}

	.border-block {
		padding: 26px 17px;
	}

	.border-block .link-button {
		margin-top: 32px;
	}

	.squirrel-pattern-text-block .big-heading .heading {
		margin-bottom: 24px;
	}

	.feature-block-images {
		margin-top: 213px;
	}

	.squirrel-pattern-section .right-part {
		width: 46%;
	}

	/* .feature-block-images .feature-block-image { margin-top: -213px; } */

	.feature-block-row {
		padding-top: 0 !important;
	}
}

@media only screen and (max-width:991px) {
	.feature-block-row .left-part {
		width: 100%;
	}

	.feature-block-row .right-part {
		width: 100%;
		display: none !important;
	}

	/* .feature-block-row { flex-direction: column; justify-content: space-between;} */
	/* .feature-block-contents { height: auto; } */
	.feature-block-content .big-heading .heading {
		text-align: center;
	}

	.feature-block-content p {
		max-width: 100%;
		text-align: center;
	}

	.grid-row .col-3 {
		width: 50%;
	}

	.feature-image {
		display: block;
	}

	.blog-heading h3 {
		max-width: 100%;
	}
}

@media only screen and (max-width:991px) {
	.squirrel-pattern-section .left-part {
		display: none;
	}

	.squirrel-pattern-section .right-part {
		margin: 0 auto;
		text-align: center;
	}

	.squirrel-pattern-text-block .big-heading .heading {
		text-align: center;
	}

	.min-height-100:not(.hero-banner-section),
	.full-height:not(.hero-banner-section) {
		min-height: auto;
	}

	.height-100 {
		height: auto;
	}

	.feature-block-content {
		position: unset;
		height: auto;
		margin-bottom: 70px;
	}

	.feature-block-contents {
		height: auto !important;
	}

	.feature-block-content:last-child {
		margin-bottom: 0;
	}

	.full-blog .blog-block .blog-image {
		max-height: auto;
	}

}

@media only screen and (max-width:767px) {
	:root {

		--font-30: 20px;
		--font-36: 24px;
		--font-45: 30px;
		--font-50: 34px;
		--font-60: 42px;
		--font-65: 46px;
		--font-70: 49px;
		--font-80: 56px;
		--font-125: 88px;
	}

	.section {
		padding: 133px 0;
	}


	.big-heading .heading br {
		display: none;
	}

	/* testimonial-grid */
	.testimonial-grid {
		padding: 53px 19px;
		margin: 41px 0 0 0;
	}

	.testimonial-row {
		margin: 0 -8px;
	}

	.testimonial-grid .col-3 {
		padding: 0 8px;
		width: 100%;
		margin-bottom: 16px;
	}

	.testimonial-grid .col-3:last-child {
		margin-bottom: 0;
	}

	.start-rating {
		margin-bottom: 14px;
	}

	.testimonial-content {
		margin-bottom: 36px;
	}

	.testimonial-footer-content {
		margin-top: 20px;
	}

	/* Blog */
	.blog-grid {
		margin-left: -15px;
		margin-right: -15px;
	}

	.blog-heading h3,
	.blog-description p {
		-webkit-line-clamp: initial;
	}

	.blog-content {
		height: auto;
	}

	.blog-grid .col-3 {
		padding: 20px 15px;
		width: 100%;
		display: block;
	}

	.blog-block {
		padding: 21px 18px;
	}

	.blog-info {
		margin-bottom: 15px;
	}

	.blog-heading {
		margin-bottom: 20px;
	}

	.blog-description {
		margin-bottom: 24px;
	}

	.full-blog .blog-block .blog-image {
		margin-left: -25px;
		margin-bottom: 13px;
		margin-top: -57px;
	}

	.blog-grid .col-3.full-blog {
		margin-top: 41px;
	}

	.blog-grid-header {
		flex-direction: column;
		align-items: center;
	}

	.blog-grid-header .big-heading {
		margin-bottom: 30px;
	}

	.blog-grid-header .big-heading .heading {
		text-align: center;
	}

	.features-image-section .big-heading {
		margin-bottom: 21px;
	}

	.feature-image-gallery .gallery-slide {
		padding: 0 10px;
	}

	.feature-image-gallery {
		width: 200vw;
		margin: 0 -50vw;
		overflow: hidden;
		margin-top: 30px;
	}

	section.features-image-section {
		padding-bottom: 47px;
	}

	.hero-banner-marquee-text {
		padding: 93px 0 10px 0;
	}

	.slide-text,
	.hero-tagline {
		font-size: 16px;
	}

	.hero-content-intro .common-button {
		margin-top: 20px;
	}

	.slide-text,
	.hero-tagline {
		display: inline-flex;
		justify-content: center;
	}

	.intro-image {
		margin-bottom: 133px;
	}

	.border-block {
		padding: 20px;
	}

	.grid-row .col-3 {
		width: 50%;
	}

	.border-block .link-button {
		margin-top: 23px;
	}

	.squirrel-pattern-section .left-part {
		display: none;
	}

	.squirrel-pattern-section .left-part,
	.squirrel-pattern-section .right-part {
		width: 100%;
	}

	.squirrel-pattern-section .right-part {
		margin-top: 40px;
	}

	.squirrel-pattern-text-block .big-heading .heading {
		text-align: center;
	}

	.squirrel-pattern-text-block p {
		margin: 0 auto;
		text-align: center;
	}

	.squirrel-pattern svg {
		width: 100vw;
		height: 100vh;
		opacity: 0.3;
		zoom: 1.5;
	}


	.feature-block-images {
		margin-top: 159px;
	}

	.feature-block-images .feature-block-image {
		margin-top: -159px;
	}

	.common-button {
		padding: 18px;
		font-size: 14px;
		min-width: 215px;
	}

	.link-button {
		font-size: 14px
	}
}

@media only screen and (max-width:680px) {
	:root {
		--font-30: 20px;
		--font-36: 24px;
		--font-45: 30px;
		--font-50: 34px;
		--font-60: 42px;
		--font-65: 46px;
		--font-70: 49px;
		--font-80: 42px;
		--font-125: 66px;
	}

	.section {
		padding: 60px 0;
	}


	/* testimonial-grid */
	.testimonial-grid {
		padding: 44px 16px;
		margin: 34px 0 0 0;
	}

	.testimonial-content {
		margin-bottom: 27px;
	}

	/* Blog */
	.full-blog .blog-block {
		width: 100%;
	}

	.full-blog .blog-block .blog-image {
		width: 100%;
		margin: 0 0 20px 0;
	}

	.full-blog .blog-block .blog-image img {
		height: auto;
		min-height: 260px;
	}

	.full-blog .blog-block .blog-content {
		width: 100%;
	}

	.blog-grid .col-3.full-blog {
		margin-top: 34px;
	}

	section.features-image-section {
		padding-bottom: 40px;
	}

	.hero-banner-marquee-text {
		padding: 77px 0 20px 0;
	}


	.intro-image {
		margin-bottom: 111px;
	}

	.grid-row .col-3 {
		width: 100%;
	}

	.border-block .link-button {
		margin-top: 20px;
	}

	.feature-block-images {
		margin-top: 133px;
	}

	.feature-block-images .feature-block-image {
		margin-top: -133px;
	}
}

@media only screen and (max-width:480px) {
	:root {
		--font-50: 30px;
		--font-60: 32px;
		--font-65: 36px;
		--font-70: 39px;
		--font-80: 32px;
		--font-125: 60px;
	}

	.intro-image {
		margin-bottom: 83px;
	}

	.feature-block-images {
		margin-top: 100px;
	}

	.feature-block-images .feature-block-image {
		margin-top: -100px;
	}
}

.hero-tagline span {
	min-width: 18px;
	display: inline-block;
	text-align: center;
}