@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, var,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video, ul, ol, li {
	margin:0;
	padding:0;
	border:0;
	outline:0;
	font-size:100%;
	font-weight:normal;
	vertical-align:top;
	background:transparent;
}

article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section {
	display:block;
}

html, body {
	/*height: 100%;*/
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
body {
	font-family: 'Poppins', sans-serif;
	font-weight: 400;
	font-size: 16px;
	line-height: normal;
	color: #6D6E70;
	padding: 0;
	margin: 0;
	text-size-adjust: none ;
	-webkit-text-size-adjust: none;
	overflow-x: hidden;
}
*,
:after,
:before {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	box-sizing: border-box;
}
.cf:after {
	content: ".";
	display: block;
	clear: both;
	visibility: hidden;
	line-height: 0;
	height: 0;
}
.cf {
	display: block;
}
img {
	display:block;
	max-width:100%;
}
.rounded {
	border-radius: 16px;
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
}
.rounded-full {
	border-radius: 9999px;
    -webkit-border-radius: 9999px;
    -moz-border-radius: 9999px;
}
a {
	color: #1F211F;
	text-decoration: none;
	padding: 0;
	outline: none;
	transition: all 0.3s ease;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
}
a:hover {
	color: #01B130;
	text-decoration: none !important;
}

/**** TYPOGRAPHY START ****/
.title {
	margin-bottom: 48px;
}
h1 {
	font-family: 'Poppins', sans-serif;
	font-size: 60px;
	line-height: 80px;
	font-weight: 700;
	color: #1F211F;
	margin-bottom: 16px;
}
h2 {
	font-family: 'Poppins', sans-serif;
	font-size: 50px;
	line-height: 70px;
	font-weight: 700;
	color: #1F211F;
	margin-bottom: 15px;
}
h3 {
	font-family: 'Poppins', sans-serif;
	font-size: 36px;
	line-height: normal;
	font-weight: 600;
	color: #1F211F;
}
h4 {
	font-family: 'Poppins', sans-serif;
	font-size: 30px;
	line-height: normal;
	font-weight: 400;
	color: #1F211F;
	margin-bottom: 15px;
}
h5 {
	font-family: 'Poppins', sans-serif;
	font-size: 24px;
	line-height: normal;
	font-weight: 400;
	color: #1F211F;
	margin-bottom: 24px;
}
h6 {
	font-family: 'Poppins', sans-serif;
	font-size: 30px;
	line-height: 40px;
	font-weight: 400;
	color: #1F211F;
	margin-bottom: 15px;
}
h6.small {
	font-size: 25px;
}
p {
	font-weight: 400;
	margin-bottom: 30px;
}
.title:last-child,
h1:last-child,
h2:last-child,
h4:last-child,
h5:last-child,
h6:last-child,
p:last-child {
	margin-bottom: 0;
}
.text-center {
	text-align: center !important;
}
.text-right {
	text-align: right !important;
}
.fw-light {
	font-weight: 300;
}
.fw-semibold {
	font-weight: 600;
}
ul {
	list-style-type: disc;
	margin-left: 25px;
	margin-bottom: 30px;
}
ul:last-child {
	margin-bottom: 0;
}
ul li {
	list-style-type: disc;
}
/**** TYPOGRAPHY END ****/

/**** FORM INPUT BUTTON START ****/
.form_list {
	margin: 0 -15px;
}
.form_list li {
	list-style: none;
	padding: 0 15px;
	margin-bottom: 32px;
}
.form_list li:last-child {
	margin-bottom: 0;
}
.form_list li .err {
    font-size: 12px;
    color: #ff0000;
    line-height: 16px;
}
.form_list li .err {
    display: none;
}
.form_list li .err.popped {
    display: inline-block;
}
.success {
	color: #01b130;
}
label {
	font-size: 20px;
	font-weight: 600;
	color: #1F211F;
	display: block;
	margin-bottom: 8px;
}
input[type=number] {
	-moz-appearance: textfield;
	-webkit-appearance: textfield;
	appearance: textfield;
}
textarea {
	resize: none;
	height: 100px;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}
.text-field {
	border: 0;
	width: 100%;
	padding: 0 0 16px 0;
	margin: 0;
	font-family: 'Poppins', sans-serif;
	font-size: 16px;
	line-height: 24px;
	border-bottom: 1px solid #6D6E70;
	-webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    -webkit-transition:all 0.3s ease-in-out;
    -moz-transition:all 0.3s ease-in-out;
    -o-transition:all 0.3s ease-in-out;
    transition:all 0.3s ease-in-out;
}
.text-field:focus {
	outline: none;
	-webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}
.button {
	background-color: #01B130;
	border: 0;
	display: inline-block;
	padding: 10px 32px;
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.5rem;
	text-align: center;
	text-transform: uppercase;
	color: #fff;
	cursor: pointer;
	-webkit-transition:all 0.3s ease-in-out;
    -moz-transition:all 0.3s ease-in-out;
    -o-transition:all 0.3s ease-in-out;
    transition:all 0.3s ease-in-out;
	border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
}
.button:hover,
.button:focus {
	outline: none;
	color: #fff;
	background-color: #1F211F;
}
/**** FORM INPUT BUTTON END ****/

/**** CONTAINER, SPACINGS PADDING MARGIN CLASS START ****/
.container {
	width: 100%;
	max-width: 1400px;
	margin-left: auto;
	margin-right: auto;
	padding-left: 100px;
	padding-right: 100px;
}
.container .small-container {
	padding-left: 0;
	padding-right: 0;
}
.small-container {
	max-width: 1100px;
}
.d-none { display: none !important; }
.d-block { display: block !important; }
.w-100 { width: 100%; }
.mxw-800 {
	max-width: 800px;
}
.mxw-920 {
	max-width: 920px;
}
.mxw-990 {
	max-width: 990px;
}
.mxw-560 {
	max-width: 560px;
}
/* PADDINGS */
.s-pt,
.s-py {
    padding-top: 120px !important;
}
.s-pb,
.s-py {
    padding-bottom: 120px !important;
}
.s-pt-half,
.s-py-half {
    padding-top: 75px !important;
}
.s-pb-half,
.s-py-half {
    padding-bottom: 75px !important;
}
/* PADDINGS */
/* MARGINS */
.ml-auto,
.mx-auto {
	margin-left: auto;
}
.mr-auto,
.mx-auto {
	margin-right: auto;
}
.mb-0 { margin-bottom: 0 !important; }
/* MARGINS */
/**** CONTAINER, SPACINGS PADDING MARGIN CLASS END ****/

/**** FLEX CSS START ****/
.d-flex{
	display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row wrap;
    flex-flow: row wrap;
}
.align-center {
    align-items:center;
    -webkit-align-items:center;
    -ms-align-items:center;
}
.align-start {
    align-items:start;
    -webkit-align-items:start;
    -ms-align-items:start;
}
.align-end {
	align-items: flex-end;
    -webkit-align-items: flex-end;
    -ms-align-items: flex-end;
}
.space-between {
	justify-content: space-between;
    -webkit-justify-content: space-between;
    -ms-justify-content: space-between;
}
.col {
	-ms-flex-preferred-size:0;
    flex-basis:0;
    -webkit-box-flex:1;
    -ms-flex-positive:1;
    flex-grow:1;
    max-width:100%;
}
.col-auto{
    -webkit-box-flex:0;
    -ms-flex:0 0 auto;
    flex:0 0 auto;
    width:auto;
    max-width:none;
}
/**** FLEX CSS END ****/

/**** SITE HEADER START ****/
.site-header {
	padding: 32px;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 10;
	-webkit-transition:all 0.3s ease-in-out;
    -moz-transition:all 0.3s ease-in-out;
    -o-transition:all 0.3s ease-in-out;
    transition:all 0.3s ease-in-out;
}
.site-header.fixed {
	padding: 16px 32px;
	background-color: #fff;
	-webkit-box-shadow: 4px 4px 10px rgba(31, 33, 31, .07);
    -moz-box-shadow: 4px 4px 10px rgba(31, 33, 31, .07);
    box-shadow: 4px 4px 10px rgba(31, 33, 31, .07);
}
.logo {
	max-width: 168px;
}
/**** SITE HEADER END ****/

.light-bg {
	background: #F7F8FA;
}
.main-banner {
	padding: 180px 0;
	min-height: 100vh;
	/* min-height: 800px; */
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	position: relative;
}
.main-banner p {
	color: #1F211F;
	line-height: 24px;
	margin-bottom: 24px;
}
.main-banner p:last-child {
	margin-bottom: 0;
}
.banner-content {
	max-width: 620px;
}
.banner-content p {
	max-width: 460px;
}
.main-banner .blur-bg {
	max-width: 395px;
	padding: 24px;
	margin-top: 48px;
	font-weight: 500;
	background-color: rgba(31, 33, 31, .05);
	backdrop-filter: blur(8px);
	border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
}
.main-banner .blur-bg p {
	font-weight: 500;
	line-height: normal;
	max-width: 100%;
}

.locate-owners .left-block {
	width: 44%;
}
.locate-owners .right-block {
	width: 50%;
}
.locate-owners .list {
	margin: 0;
}
.locate-owners .list li {
	list-style: none;
	border-top: 1px solid #1F211F;
	padding: 32px 0;
}
.locate-owners .list li:last-child {
	border-bottom: 1px solid #1F211F;
}

.testimonial-swiper {
	padding-bottom: 20px;
}
.testimonial-swiper .swiper-arrow {
	margin-top: 32px;
	-webkit-transform: translateX(72px);
    -moz-transform: translateX(72px);
    transform: translateX(72px);
}
.swiper {
	position: relative;
	overflow: hidden;
}
.swiper-pagination {
	margin-top: 32px;
	position: relative;
	bottom: inherit;
	left: inherit;
}
.swiper-pagination-bullet {
	width: 12px;
	height: 12px;
	background: #1F211F;
	opacity: .4;
}
.swiper-pagination-bullet-active {
	opacity: 1;
	background: #1F211F;
}
.swiper-arrow {
	position: relative;
	z-index: 1;
	display: flex;
	justify-content: center;
	width: 184px;
	margin-left: auto;
	margin-right: auto;
}
.swiper-arrow .swiper-button-prev,
.swiper-arrow .swiper-button-next {
	position: relative;
	top: inherit;
	left: inherit;
	right: inherit;
	margin: 0 12px;
	width: 56px;
	height: 56px;
	display: block;
	text-align: center;
	border-radius: 56px;
    -webkit-border-radius: 56px;
    -moz-border-radius: 56px;
	transition: all 0.3s ease;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
}
.swiper-arrow .swiper-button-prev::after,
.swiper-arrow .swiper-button-next::after {
	display: none;
}
.swiper-arrow .swiper-button-prev {
	background: #fff url(../images/prev.svg) left center no-repeat;
}
.swiper-arrow .swiper-button-next {
	background: #fff url(../images/next.svg) right center no-repeat;
}
.swiper-arrow .swiper-button-prev:hover {
	background: #01B130 url(../images/prev.svg) right center no-repeat;
}
.swiper-arrow .swiper-button-next:hover {
	background: #01B130 url(../images/next.svg) left center no-repeat;
}
.testimonial-item {
	max-width: 85%;
	padding: 56px;
	background: #1F211F url(../images/line-bg.png) center center no-repeat;
	background-size: cover;
}
.testimonial-swiper .testimonial-item .content {
	width: 70%;
	position: relative;
	opacity: 0;
	transition: all 0.5s ease;
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-webkit-transform: translateY(50px);
    -moz-transform: translateY(50px);
    transform: translateY(50px);
	transition-delay: 100ms;
}
.testimonial-swiper .swiper-slide.swiper-slide-active .testimonial-item .content {
	opacity: 1;
	-webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    transform: translateY(0);
}
.testimonial-swiper .testimonial-item .content::before {
	content: "";
	display: block;
	width: 54px;
	height: 44px;
	margin-bottom: 32px;
	background: url(../images/quote.svg) left center no-repeat;
}
.testimonial-swiper .content p {
	font-size: 24px;
	color: #fff;
	list-style: normal;
}
.testimonial-swiper .content .author-detail h6 {
	font-size: 1.5rem;
	font-weight: 700;
	line-height: 2.5rem;
	color: #fff;
	margin-bottom: 0;
}
.testimonial-swiper .content .author-detail p {
	font-size: 1rem;
}
.testimonial-swiper .testimonial-item .author-img {
	width: calc(30% + 232px);
	/* width: 30%; */
	padding-left: 80px;
	margin-right: -232px;
	margin-bottom: -160px;
	opacity: 0;
	transition: all 0.5s ease;
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-webkit-transform: translateY(50px);
    -moz-transform: translateY(50px);
    transform: translateY(50px);
	transition-delay: 300ms;
}
.testimonial-swiper .swiper-slide.swiper-slide-active .author-img {
	opacity: 1;
	-webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    transform: translateY(0);
}
.testimonial-item .author-img img {
	width: 100%;
}

.automate-row .img-block {
	width: 50%;
	overflow: hidden;
	position: relative;
}
.automate-row .img-block img {
	width: 100%;
}
.automate-row .img-block::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #1F211F;
	opacity: .4;
}
.automate-row .img-block .img-content {
	position: absolute;
	width: 100%;
	height: 100%;
	padding: 96px;
	z-index: 1;
	columns: #fff;
}
.automate-row .img-block .img-content h2 {
	color: #fff;
}
.automate-row .img-block .img-content h2::before {
	content: "";
	display: block;
	width: 54px;
	height: 44px;
	margin-bottom: 24px;
	background: url(../images/quote-white.svg) left center no-repeat;
}
.automate-row .content-block {
	width: 46%;
	padding-left: 72px;
}
.automate-row .content-block .light-bg {
	padding: 24px;
	margin-bottom: 48px;
}
.features-box {
	width: 48%;
	padding: 48px;
}
.features-box .icon {
	display: block;
	background-color: #fff;
	width: 72px;
	height: 72px;
	padding: 16px;
	margin-bottom: 24px;
	border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
	-webkit-box-shadow: 4px 4px 10px rgba(31, 33, 31, .07);
    -moz-box-shadow: 4px 4px 10px rgba(31, 33, 31, .07);
    box-shadow: 4px 4px 10px rgba(31, 33, 31, .07);
}

.parallax-section {
	padding: 170px 0;
	background-size: cover;
	background-repeat: no-repeat;
}

.about-row .content-block {
	width: 42.5%;
}
.about-row .img-block {
	width: 50%;
}

.collaborating-swiper .slide-item {
	background-color: #fff;
	padding: 24px;
	position: relative
}
.collaborating-swiper .slide-item::before {
	content: "";
	display: block;
	width: 32px;
	height: 24px;
	margin-bottom: 16px;
	background: url(../images/quote-black.svg) left center no-repeat;
	background-size: 100% auto;
}
.collaborating-swiper .author-detail .img {
	max-width: 48px;
}
.collaborating-swiper .author-detail .detail {
	padding-left: 16px;
}
.collaborating-swiper .author-detail h6 {
	font-size: 16px;
	font-weight: 700;
	line-height: normal;
	margin-bottom: 2px;
}
.collaborating-swiper .author-detail p {
	font-size: 12px;
}

.contact-section .left-block {
	width: 50%;
	padding: 120px;
	background-size: cover;
	background-position: center;
}
.contact-section .left-block * {
	color: #fff;
}
.contact-section .left-block .title {
	max-width: 400px;
	align-self: flex-start;
}
.contact-section .left-block .contact-info {
	width: 100%;
	align-self: flex-end;
}
.contact-info .item:not(:last-child) {
	margin-bottom: 24px;
}
.contact-section .right-block {
	width: 50%;
	padding: 120px;
}

.site-footer {
	background-color: #1F211F;
	padding: 80px 0;
	color: #fff;
}
.site-footer a {
	color: #fff;
}
.site-footer a:hover {
	color: #01B130;
}
.footer-logo {
	width: 20%;
}
.footer-logo a {
	display: block;
	max-width: 168px;
	margin: 0;
}
.footer-menu {
	text-align: center;
}
.footer-menu li {
	list-style: none;
	display: inline-block;
	margin:0 30px;
}
.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, .1);
	padding-top: 32px;
	margin-top: 32px;
}
.copyright {
	width: 60%;
	text-align: center;
}
.copyright .copy-text {
	display: inline-block;
	padding-right: 50px;
}
.copyright a {
	display: inline-block;
	margin: 0 15px;
}
.social-media {
	width: 20%;
	margin: 0;
	text-align: right;
}
.social-media li {
	display: inline-block;
	margin-right: 10px;
}
.social-media li:last-child {
	margin-right: 0;
}
.social-media li a {
	display: block;
	width: 40px;
	height: 40px;
	border: 1px solid #3B3C3B;
	background-position: center;
	background-repeat: no-repeat;
	border-radius: 40px;
    -webkit-border-radius: 40px;
    -moz-border-radius: 40px;
}
.social-media li a:hover {
	background-color: #01B130;
}
.social-media li a.facebook { background-image: url(../images/facebook.svg); }
.social-media li a.twitter { background-image: url(../images/twitter.svg); }
.social-media li a.linkedin { background-image: url(../images/linkedin.svg); }

@keyframes blink {
    0% {
      	opacity: .2;
    }
    20% {
      	opacity: 1;
    }
    100% {
      	opacity: 0;
    }
}
.scroll-down {
	display: none;
	position: absolute;
	bottom: 50px;
	left: 50%;
	transform: translateX(-50%);
	width: 100%;
}
.scroll-down span {
	display: block;
	font-size: 13px;
	font-weight: 400;
	line-height: normal;
	color: #1F211F;
	letter-spacing: 8px;
	text-transform: uppercase;
	width: 100%;
	padding: 0 15px ;
	text-align: center;
}
.scroll-down .dot {
    display: block;
    width: 8px;
    height: 8px;
    margin: 0 auto 10px auto;
    background: #1F211F;
    border-radius: 8px;
    font-size: 0;
    animation-name: blink;
    animation-duration: 1.4s;
    animation-iteration-count: infinite;
    animation-fill-mode: both;
    padding: 0;
}
.scroll-down .dot:nth-child(2) {
  	animation-delay: .2s;
}
.scroll-down .dot:nth-child(3) {
	animation-delay: .4s;
	margin-bottom: 20px;
}
.scroll-down .arrow {
	display: block;
	width: 60px;
	height: 60px;
	margin: 15px auto 0 auto;
	background-image: url(../images/down-arrow-white.svg);
	background-color: #1F211F;
	background-position: center;
	background-repeat: no-repeat;
	-webkit-box-shadow: 0px -6px 8px rgba(0, 0, 0, .16);
	-moz-box-shadow: 0px -6px 8px rgba(0, 0, 0, .16);
	box-shadow: 0px -6px 8px rgba(0, 0, 0, .16);
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
}
.scroll-down .arrow:hover {
	background-color: #01B130;
}

/**** RESPONSIVE CSS START ****/
@media(max-width: 1280px) {
	h2 {
		font-size: 42px;
		line-height: 62px;
	}
	h4 {
		font-size: 26px;
	}
	h5 {
		font-size: 20px;
	}
	.container {
		padding-left: 50px;
		padding-right: 50px;
	}
	.s-pt,
	.s-py {
		padding-top: 90px !important;
	}
	.s-pb,
	.s-py {
		padding-bottom: 90px !important;
	}
	.s-pt-half,
	.s-py-half {
		padding-top: 50px !important;
	}
	.s-pb-half,
	.s-py-half {
		padding-bottom: 50px !important;
	}
	.testimonial-swiper .testimonial-item .author-img {
		width: calc(30% + 92px);
		margin-right: -92px;
		margin-bottom: 0;
		padding-left: 40px;
	}
	.testimonial-swiper .content p {
		font-size: 20px;
	}
	.testimonial-swiper .content .author-detail h6 {
		font-size: 20px;
	}
	.testimonial-swiper .swiper-arrow {
		-webkit-transform: translateX(0);
		-moz-transform: translateX(0);
		transform: translateX(0);
	}
	.testimonial-item {
		max-width: 95%;
	}
	.automate-row .img-block {
		width: 50%;
	}
	.automate-row .content-block {
		width: 50%;
		padding-left: 50px;
	}
	.features-box {
		padding: 38px;
	}
	.features-box h2 {
		font-size: 32px;
		line-height: normal;
	}
	.contact-section .left-block,
	.contact-section .right-block {
		padding: 80px 50px;
	}
	.site-footer {
		padding: 50px 0;
	}
}
@media(max-width: 991px) {
	h1 {
		font-size: 50px;
		line-height: 62px;
	}
	h2 {
		font-size: 36px;
		line-height: 46px;
	}
	h4 {
		font-size: 22px;
	}
	h5 {
		font-size: 18px;
	}
	.locate-owners .left-block {
		width: 100%;
		margin-bottom: 30px;
	}
	.locate-owners .right-block {
		width: 100%;
	}
	.locate-owners .right-block img {
		margin: 0 auto;
	}
	.testimonial-item {
		width: 100%;
		padding: 32px;
	}
	.testimonial-swiper {
		padding-top: 40px;
		padding-bottom: 0;
	}
	.testimonial-swiper .testimonial-item .content {
		width: 100%;
		order: 2;
		text-align: center;
	}
	.testimonial-swiper .testimonial-item .content::before {
		margin: 0 auto 32px auto;
	}
	.testimonial-swiper .content p {
		font-size: 18px;
	}
	.testimonial-swiper .testimonial-item .author-img {
		width: 200px;
		padding: 0;
		max-width: 100%;
		margin: -70px auto 30px auto;
	}
	.automate-row .img-block {
		width: 100%;
		margin-bottom: 30px;
	}
	.automate-row .content-block {
		width: 100%;
		padding: 0;
	}
	.automate-row .content-block .light-bg {
		margin-bottom: 32px;
	}
	.features-box {
		width: 100%;
		margin-bottom: 30px;
	}
	.features-box:last-child {
		margin-bottom: 0;
	}
	.parallax-section {
		padding: 100px 0;
	}
	.about-row .content-block {
		width: 100%;
		margin-bottom: 30px;
	}
	.about-row .img-block {
		width: 100%;
	}
	.contact-section .left-block,
	.contact-section .right-block {
		padding: 50px 30px;
	}
	.site-footer {
		padding: 30px 0;
	}
	.footer-logo {
		width: 100%;
		margin-bottom: 20px;
	}
	.footer-logo a {
		margin: 0 auto;
	}
	.copyright {
		width: 100%;
		margin-bottom: 20px;
	}
	.social-media {
		width: 100%;
		text-align: center;
	}
}
@media(max-width: 767px) {
	.s-pt,
	.s-py {
		padding-top: 50px !important;
	}
	.s-pb,
	.s-py {
		padding-bottom: 50px !important;
	}
	.s-pt-half,
	.s-py-half {
		padding-top: 35px !important;
	}
	.s-pb-half,
	.s-py-half {
		padding-bottom: 35px !important;
	}
	.contact-section .left-block,
	.contact-section .right-block {
		width: 100%;
	}
	.main-banner {
		background-position: 30% center !important;
		align-items: flex-start;
		-webkit-align-items: flex-start;
		-ms-align-items: flex-start;
	}
	/*.main-banner .blur-bg {
		background-color: rgba(255, 255, 255, 0.25);
	}*/
	.hide-m {
		display: none !important;
	}
	
}
@media(max-width: 575px) {
	.title {
		margin-bottom: 32px;
	}
	h1 {
		font-size: 36px;
		line-height: 46px;
	}
	h2 {
		font-size: 30px;
		line-height: 40px;
	}
	h4 {
		font-size: 20px;
	}
	.container {
		padding-left: 20px;
		padding-right: 20px;
	}
	.site-header {
		padding: 16px;
	}
	.site-header.fixed {
		padding: 12px 16px;
	}
	.site-header .button {
		padding: 6px 22px;
	}
	.logo {
		max-width: 120px;
	}
	label {
		font-size: 16px;
	}
	.button {
		padding: 10px 22px;
		font-size: 14px;
		display: block;
	}
	.form_list li .button {
		width: 100%;
	}
	.main-banner {
		padding: 130px 0 220px 0;
	}
	.main-banner .blur-bg {
		padding: 16px;
		margin-top: 32px;
	}
	.main-banner .banner-content {
		display: -webkit-box;
	    display: -moz-box;
	    display: -ms-flexbox;
	    display: -webkit-flex;
	    display: flex;
	    -webkit-flex-direction: column;
	    flex-direction: column;
	}
	.main-banner .banner-content .scroll-cta {
		order: 4;
	}
	.main-banner .banner-content .blur-bg {
		order: 3;
		margin: 0 0 32px 0;
	}
	.scroll-down {
		display: block;
	}
	.locate-owners .list li {
		padding: 16px 0;
	}
	.locate-owners .list li h4 {
		font-size: 16px;
	}
	.testimonial-item {
		padding: 22px;
	}
	.automate-row .img-block .img-content {
		padding: 36px;
	}
	.automate-row .content-block .light-bg {
		padding: 14px;
	}
	.features-box h2 {
		font-size: 26px;
	}
	.features-box {
		padding: 28px;
	}
	.contact-section .left-block,
	.contact-section .right-block {
		padding: 50px 20px;
	}
}
@media(max-width: 411px) {
	h1 {
		font-size: 32px;
		line-height: 42px;
	}
	.container {
		padding-left: 15px;
		padding-right: 15px;
	}
	.contact-section .left-block,
	.contact-section .right-block {
		padding: 50px 15px;
	}
}
/**** RESPONSIVE CSS END ****/