/*======================
   01.fonts
========================*/
@import url('https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root{
	--orange: #E84E0F;
	--green: #15934C;
	--dark: #000000;
	--light: #f0f0f0;
}

/*======================
   02. Basic css
========================*/
::-moz-selection{
	background-color: var(--orange);
	color: #fff;
}
::selection{
	background-color: var(--orange);
	color: #fff;
}
html{
	font-size: 62.5%;
}
a, button, img{
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}
html,
body,
div,
span,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
strong,
i,
ol,
ul,
li,
form,
label,
footer,
header,
menu,
nav,
section {
	margin: 0;
	padding: 0;
}

body {
	line-height: 1.5;
	font-family: "Barlow", sans-serif;
	background-color: #fff;
	color: var(--dark);
	font-weight: 500;
	font-size: 2rem;
}

ol,
ul {
	list-style: none;
}
a{
	color: inherit;
}
a:hover {
	text-decoration: none;
	color: var(--orange);
}
p a{
	color: inherit;
}
p a:hover{
	color: var(--orange);
}

button:focus,
a:focus,
input:focus,
textarea:focus,
select:focus{
	outline: none;
}
h1{
	font-size: 6rem;
	font-weight: 800;
	line-height: 1;
}
h2{
	font-size: 5rem;
	font-weight: 800;
	line-height: 1;
}
h1 span, h2 span, h3 span, h4 span{
	color: var(--orange);
}
h3{
	font-size: 4rem;
	font-weight: 800;
	line-height: 1.1;
}
h4{
	font-size: 3rem;
	font-weight: 800;
	line-height: 1.1;
}
h5{
	font-size: 2.5rem;
	font-weight: 800;
	line-height: 1.1;
}
h6{
	font-size: 2rem;
	font-weight: 700;
}


/* page loader  */
#preloader {
	position: fixed;
	background: #fff;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 99999;
	height: 100vh;
	width: 100vw;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
}
.loader3 {
	width: 5.0rem;
	height: 5.0rem;
	display: inline-block;
	padding: .0rem;
	text-align: left;
}

.loader3 span {
	position: absolute;
	display: inline-block;
	width: 5.0rem;
	height: 5.0rem;
	border-radius: 100%;
	background: var(--orange);
	-webkit-animation: loader3 1.5s linear infinite;
	animation: loader3 1.5s linear infinite;
}

.loader3 span:last-child {
	animation-delay: -0.9s;
	-webkit-animation-delay: -0.9s;
}

@keyframes loader3 {
  	0% {
    	-webkit-transform: scale(0, 0);
    	        transform: scale(0, 0);
    	opacity: 0.8;
  	}
  	100% {
    	-webkit-transform: scale(1, 1);
    	        transform: scale(1, 1);
    	opacity: 0;
  	}
}

@-webkit-keyframes loader3 {
  	0% {
    	-webkit-transform: scale(0, 0);
    	opacity: 0.8;
  	}
  	100% {
    	-webkit-transform: scale(1, 1);
    	opacity: 0;
  	}
}
/*Hamburger-menu START CSS*/
.hamburger-menu {
	cursor: pointer;
	display: none;
	z-index: 999;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
}
.hamburger-menu span {
	background: var(--dark);
	width: 4.5rem;
	height: .4rem;
	display: block;
	margin: .4rem 0;
	border-radius: 2rem;
	-webkit-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.hamburger-menu .line-top.current {
	-webkit-transform: translateY(300%) rotate(135deg);
	-ms-transform: translateY(300%) rotate(135deg);
	transform: translateY(300%) rotate(135deg);
}
.hamburger-menu .line-center.current {
	opacity: 0;
}
.hamburger-menu .line-bottom.current {
	-webkit-transform: translateY(-290%) rotate(-135deg);
	-ms-transform: translateY(-290%) rotate(-135deg);
	transform: translateY(-290%) rotate(-135deg);
}
.container{
	padding-left: 1.5rem;
	padding-right: 1.5rem;
}
header {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1024;
	width: 100%;
	-webkit-transition: 0.3s;
	-o-transition:  0.3s;
	transition:  0.3s;
	padding: 2rem 0;
	background-color: #fff;
}
header::before{
	content: '';
	width: 100%;
	height: 0.7rem;
	display: block;
	background: -o-linear-gradient(left, var(--orange) 0%, var(--green) 100%);
	background: -webkit-gradient(linear, left top, right top, from(var(--orange)), to(var(--green)));
	background: linear-gradient(to right, var(--orange) 0%, var(--green) 100%);
	position: relative;
	top: -2rem;
}

/*sticky START CSS*/
header.sticky {
   -webkit-box-shadow: 0 .8rem 2.0rem 0 rgba(0, 0, 0, .1);
   box-shadow: 0 .8rem 2.0rem 0 rgba(0, 0, 0, .1);
   background-color: #fff;
}
.header2{
	background-color: #fff;
}
.logo{
	display: block;
	width: 100%;
	max-width: 28rem;
}
.logo img{
	display: block;
}
.menu{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
	-webkit-column-gap: 2rem;
	   -moz-column-gap: 2rem;
	        column-gap: 2rem;
}
.menu>ul{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
.menu>ul>li {
   padding: 1rem 1rem;
   -webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
	margin-right: 2rem;
}
.menu>ul>li>a {
	font-size: 1.8rem;
	font-weight: 600;
	color: var(--dark);
	line-height: 1;
	padding: 0;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}
.menu>ul>li>a.active,
.menu>ul>li>a:hover {
	color: var(--green) !important;
}
header .button{
	font-size: 1.6rem;
	-webkit-column-gap: 1rem;
	   -moz-column-gap: 1rem;
	        column-gap: 1rem;
}
/*button*/
.button {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding: 1.2rem 2.6rem;
	color: #fff;
	border-radius: 0rem;
	font-weight: 700;
	font-size: 2rem;
	line-height: 1.5;
	text-align: left;
	border: none;
	background-color: var(--orange);
	-webkit-column-gap: 1.5rem;
	-moz-column-gap: 1.5rem;
	column-gap: 1.5rem;
	text-transform: capitalize;
	border-radius: 0.8rem;
}
.button::after{
	content: '\EA6E';
	font-family: 'remixicon' !important;
	width: 1.4rem;
	font-weight: 400;
}
.button:hover{
	background-color: var(--dark);
	color: #fff;
	-webkit-box-shadow: 0.1rem 1rem 4rem rgba(0, 0, 0, 0.16);
	        box-shadow: 0.1rem 1rem 4rem rgba(0, 0, 0, 0.16);
}
.green_btn{
	background-color: var(--green);
	color: #fff;
}
.green_btn:hover{
	color: #fff;
	background-color: var(--dark);
}
.black_btn{
	background: var(--dark);
	color: #fff;
}
.black_btn:hover{
	background-color: #fff;
	color: var(--dark);
}
.button_wrapper{
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-column-gap: 1.5rem;
	   -moz-column-gap: 1.5rem;
	        column-gap: 1.5rem;
	        row-gap: 1.5rem;
}
.button_wrapper .button{
	min-width: 20rem;
}
/*return-to-top START CSS*/

.back-to-top {
	width: 4rem;
	text-align: center;
	display: none;
	position: fixed;
	bottom: 3.0rem;
	right: 2.0rem;
	z-index: 1000;
}
.back-to-top img{
	filter: drop-shadow(0 0 3rem rgba(0, 0, 0, 0.3));
}
/*Home area*/
.home_area {
	position: relative;
	z-index: 1;
	color: #fff;
	padding: 29rem 0 15.5rem;
	background-size: cover;
	background-position: center center;
}
.home_area::before{
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
	z-index: -2;
	background-color: var(--dark);
	opacity: 0.8;
	mix-blend-mode: multiply;
}
.home_content{
	max-width: 97rem;
}
.home_content p{
	font-size: 2.4rem;
	margin-top: 2rem;
}
.top_text {
	font-size: 2.6rem;
	text-transform: uppercase;
	color: var(--orange);
	font-weight: 700;
	letter-spacing: 0.05rem;
	margin-bottom: 3rem;
}

/*about area*/
.about_area{
	padding: 0rem 0 12rem;
}
.about_area img, .about_area iframe {
	border: none;
	width: 100%;
	-o-object-fit: cover;
	   object-fit: cover;
	aspect-ratio: 1.7/1;
	height: auto;
}
.about_area .container>.row{
	padding-top: 8rem;
}
.about_area .container>.row:nth-child(odd){
	-webkit-box-orient: horizontal;
	-webkit-box-direction: reverse;
	    -ms-flex-direction: row-reverse;
	        flex-direction: row-reverse;
}
.about_content{
	max-width: 69rem;
}
.about_content h2{
	font-size: 4rem;
	margin-bottom: 3rem;
}
.about_content h2 span{
	color: var(--green);
}
.about_content p{
	margin-top: 2rem;
}
.about_content ul{
	margin-top: 1rem;
	list-style: disc;
	padding-left: 2rem;
}
.about_content ul li::marker{
	color: var(--orange);
}


.row:not(.no-gutters){
	margin-left: -1.5rem;
	margin-right: -1.5rem;
}
.row:not(.no-gutters)>div{
	padding-left: 1.5rem;
	padding-right: 1.5rem;
}
.lg_gutters:not(.no-gutters){
	margin-left: -4rem;
	margin-right: -4rem;
}
.lg_gutters:not(.no-gutters)>div{
	padding-left: 4rem;
	padding-right: 4rem;
}
.md_gutters:not(.no-gutters){
	margin-left: -3rem;
	margin-right: -3rem;
}
.md_gutters:not(.no-gutters)>div{
	padding-left: 3rem;
	padding-right: 3rem;
}
.heading_wrap{
	max-width: 110rem;
}
.heading_wrap p{
	margin-top: 1.5rem;
}
/*How it work area*/
.how_area{
	background-color: var(--light);
	padding: 12rem 0 0;
}
.listar-feature-item-wrapper {
  margin-bottom: 8.0rem;
}
.listar-feature-item {
  height: calc(100% - 3.0rem);
}
.listar-feature-item .listar-feature-item-inner {
  padding: 5.0rem 3.0rem;
  border-radius: .6rem;
  z-index: 5;
  position: relative;
  height: 100%;
}

.listar-feature-item .listar-feature-item-inner {
  padding-top: 6.0rem;
  padding-bottom: 8.0rem;
}

.listar-feature-item .listar-feature-item-inner:before {
  border: 0;
  -webkit-box-shadow: 12.0rem .0rem 15.0rem rgba(80, 80, 80, 0.15),
    1.0rem .0rem 1.0rem rgba(80, 80, 80, 0.02);
          box-shadow: 12.0rem .0rem 15.0rem rgba(80, 80, 80, 0.15),
    1.0rem .0rem 1.0rem rgba(80, 80, 80, 0.02);
  border-radius: 100.0rem;
  background: rgba(255, 255, 255, 0);
  background: -webkit-gradient(
    left top,
    right top,
    color-stop(0%, rgba(255, 255, 255, 0)),
    color-stop(40%, rgba(255, 255, 255, 0)),
    color-stop(100%, rgba(255, 255, 255, 1))
  );
  background: -o-linear-gradient(
    left,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0) 40%,
    rgba(255, 255, 255, 1) 100%
  );
  background: -webkit-gradient(
    linear,
    left top, right top,
    from(rgba(255, 255, 255, 0)),
    color-stop(40%, rgba(255, 255, 255, 0)),
    to(rgba(255, 255, 255, 1))
  );
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0) 40%,
    rgba(255, 255, 255, 1) 100%
  );
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff',endColorstr='#ffffff',GradientType=1);
}
.listar-feature-item .listar-feature-item-inner:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.listar-feature-right-border {
  position: absolute;
  width: calc(100% + 2.4rem);
  height: calc(100% + 2.4rem);
  top: -1.2rem;
  left: 50%;
  overflow: hidden;
}
.listar-feature-items {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.listar-feature-right-border:before,
.listar-hovering-features
  .listar-feature-item
  a:hover
  ~ .listar-feature-item-inner
  .listar-feature-right-border:before {
  border: 1.1rem solid #2f53bf;
}
.listar-feature-right-border:before,
.listar-hovering-features
  .listar-feature-item
  a:hover
  ~ .listar-feature-item-inner
  .listar-feature-right-border:before,
.listar-hovering-features-grey
  .listar-feature-item
  a:hover
  ~ .listar-feature-item-inner
  .listar-feature-right-border:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border: 1.1rem solid var(--green);
  border-radius: 80.0rem;
  left: -50%;
}
.listar-feature-item .listar-feature-block-content-wrapper {
  position: relative;
  display: block;
  text-decoration: none;
  margin: -3.0rem;
  padding: 3.0rem;
  height: calc(100% + 10.0rem);
}
.listar-features-design-2 .listar-feature-item-wrapper {
  margin-bottom: 12.0rem;
}
.listar-feature-item.listar-feature-has-link .listar-feature-item-inner:after {
  content: "";
  background-color: #fff;
  z-index: 6;
  position: absolute;
  background-repeat: no-repeat;
  background-position: center center;
}
.listar-feature-icon-wrapper {
	width: 14.8rem;
	height: 14.8rem;
	line-height: 14.8rem;
	border-radius: 50.0rem;
	position: relative;
	background-color: #fff;
	-webkit-box-shadow: .8rem .8rem 3.0rem rgba(0, 0, 0, 0.06);
	        box-shadow: .8rem .8rem 3.0rem rgba(0, 0, 0, 0.06);
	-webkit-transform: rotate(0deg);
	-ms-transform: rotate(0deg);
	transform: rotate(0deg);
	left: 50%;
	vertical-align: middle;
	margin-left: -7.4rem;
	top: -6.6rem;
	margin-top: -7.4rem;
	margin-bottom: -3rem;
}

.listar-feature-icon-inner {
  width: 12.0rem;
  height: 12.0rem;
  line-height: 12.0rem;
  border-radius: 50.0rem;
  position: relative;
  display: inline-block;
  vertical-align: middle;
  -webkit-box-shadow: 1.0rem 1.0rem 2.0rem rgba(0, 0, 0, 0.14);
          box-shadow: 1.0rem 1.0rem 2.0rem rgba(0, 0, 0, 0.14);
  background: #fff;
}
.listar-feature-icon-inner div {
  -webkit-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg);
  display: inline-block;
  position: relative;
  width: 12.0rem;
  height: 12.0rem;
  line-height: 12.0rem;
  text-align: left;
}
.listar-feature-icon-inner img {
  position: relative;
  margin: 0 auto;
  vertical-align: middle;
  display: inline-block;
  width: auto;
  left: 50%;
  -webkit-transform: translate(-50%);
  -ms-transform: translate(-50%);
  transform: translate(-50%);
  height: 7rem;
}
.listar-feature-item img,
.listar-feature-item i {
  position: relative;
  display: inline-block;
  border-bottom: 0;
  font-size: 4.0rem;
  top: 0;
  padding: 0;
  color: var(--green);
}
.listar-feature-with-image .listar-feature-content-wrapper {
  top: 0;
}
.listar-feature-content-wrapper {
  position: relative;
  margin-top: -1.5rem;
}
.listar-feature-item .listar-feature-item-title {
  padding-top: 0;
  margin: 0 0 3.0rem;
  text-align: center;
  line-height: 1.5;
}
.listar-feature-item
  .listar-feature-item-title.listar-feature-counter-added
  > span {
  margin-left: 2.5rem;
  border-radius: 0 5.0rem 5.0rem 0;
}
.listar-feature-item .listar-feature-item-title > span {
  -webkit-box-shadow: 1.5rem 2.0rem 3.0rem rgba(80, 80, 80, 0.12),
    .5rem .0rem 4.0rem rgba(80, 80, 80, 0.1);
          box-shadow: 1.5rem 2.0rem 3.0rem rgba(80, 80, 80, 0.12),
    .5rem .0rem 4.0rem rgba(80, 80, 80, 0.1);
  padding: 1.0rem 2.0rem;
  display: inline-block;
  position: relative;
  background-color: #fff;
  font-weight: 700;
}
.listar-feature-item .listar-feature-item-title > span span {
  -webkit-box-shadow: 1.5rem 1.5rem 3.0rem rgba(80, 80, 80, 0.2),
    .5rem .0rem 8.0rem rgba(80, 80, 80, 0.15);
          box-shadow: 1.5rem 1.5rem 3.0rem rgba(80, 80, 80, 0.2),
    .5rem .0rem 8.0rem rgba(80, 80, 80, 0.15);
  padding: 1.0rem 0;
  display: inline-block;
  width: 5.0rem;
  height: 5.0rem;
  line-height: 3.0rem;
  white-space: nowrap;
  position: absolute;
  top: -.3rem;
  left: -4.0rem;
  border-radius: 5.0rem;
  background-color: #fff;
}
.listar-feature-item .listar-feature-item-title span {
  display: inline-block;
  font-size: 1.4rem;
  line-height: normal;
  text-shadow: none;
  border-radius: 5.0rem;
  color: #252525;
  font-size: 1.8rem;
}
.listar-feature-item-excerpt {
  padding: 0 2.0rem;
}
.listar-feature-item-excerpt {
  color: #252525;
  position: relative;
  top: 0;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}
.pset {
  padding-top: 8.0rem;
  padding-bottom: 3.0rem;
}
.listar-map-button-text span {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  font-size: 1.5rem;
  height: 4.4rem;
  line-height: 1.6;
  padding: 1.0rem 2.5rem;
  -webkit-box-shadow: 0 0 3.1rem rgba(0, 0, 0, 0.65), 0 0 .4rem rgba(0, 0, 0, 0.06);
          box-shadow: 0 0 3.1rem rgba(0, 0, 0, 0.65), 0 0 .4rem rgba(0, 0, 0, 0.06);
  border-radius: 5.0rem;
  background-color: rgba(35, 40, 45, 0.9);
  color: #fff;
  text-shadow: .1rem .1rem rgba(0, 0, 0, 0.2);
}
.listar-map-button-text span {
  background-color: #fff;
  color: #252525;
  text-shadow: none;
  -webkit-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
.listar-map-button-text span:after {
  border: 1.2rem solid #fff;
}
.listar-map-button-text span:after {
  content: "";
  position: absolute;
  top: -1.4rem;
  left: -1.4rem;
  width: calc(100% + 2.8rem);
  height: calc(100% + 2.8rem);
  border-radius: 3.6rem;
}
.listar-map-button:hover .listar-map-button-text span {
  padding: 1.0rem 4.3rem 1.0rem 5.1rem;
  -webkit-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
.listar-feature-item.listar-feature-has-link .listar-feature-item-inner:after {
  margin-left: -2.5rem;
  width: 5.0rem;
  height: 5.0rem;
  border-radius: 5.0rem;
  -webkit-box-shadow: 1.0rem 1.0rem 4.0rem rgba(80, 80, 80, 0.15),
    1.5rem 1.5rem 3.0rem rgba(80, 80, 80, 0.05), 0 0 12.0rem rgba(80, 80, 80, 0.6);
          box-shadow: 1.0rem 1.0rem 4.0rem rgba(80, 80, 80, 0.15),
    1.5rem 1.5rem 3.0rem rgba(80, 80, 80, 0.05), 0 0 12.0rem rgba(80, 80, 80, 0.6);
  bottom: -3.0rem;
  color: #555;
  line-height: 5.2rem;
}
.brand_cta_content ul{
	margin-top: 2rem;
}

/*testimonial area*/
.testi_wrapper {
	padding: 12rem 0;
	border-top: 0.1rem solid #bebebe;
}
.testi_carousel .single_client {
	padding: 3.5rem;
	border: .2rem solid #dddddd;
	border-radius: 1.0rem;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}
.testi_carousel .single_client p {
	font-weight: 400;
	font-size: 2.2rem;
	line-height: 1.4;
	margin-top: 1.5rem;
}
.testi_carousel .single_client i {
	font-size: 7.0rem;
	display: block;
	line-height: 0.8;
	color: var(--green);
}
.client_info{
	margin-top: 3rem;
	font-size: 2.2rem;
}
.client_info strong{
	color: var(--green);
}
.owl-nav{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	margin-top: 2rem;
	-webkit-column-gap: 1.5rem;
	   -moz-column-gap: 1.5rem;
	        column-gap: 1.5rem;
}
.owl-nav button{
	height: 4.5rem;
	width: 4.5rem;
	background-color: var(--orange);
	color: #fff;
	padding: 0;
	border-radius: 0.8rem;
	font-size: 2.2rem;
}
.owl-nav button:hover{
	background-color: var(--green);
}
/*faq area*/
.faq_area{
	padding: 10rem 0;
	background-color: var(--light);
}
.accordion{
	overflow: hidden;
}
.accordion-content {display: none;}
.accordion-content.default {display: block;}
.accordion_item{
   border-bottom: 0.1rem solid var(--green);
   padding: 2.5rem 0rem;
  -webkit-column-break-inside: avoid;
     -moz-column-break-inside: avoid;
          break-inside: avoid;
}
.accordion_item:last-child{
	border-bottom: none;
	padding-bottom: 0;
}
.accordion-toggle{
	position: relative;
	padding-right: 6rem;
	cursor: pointer;
}
.accordion-toggle h5{
	font-size: 2.2rem;
	font-weight: 700;
}
.accordion-toggle::before {
	content: '\EA4E';
	font-family: 'remixicon' !important;
	position: absolute;
	right: 0;
	top: -0.7rem;
	font-size: 150%;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
	color: var(--dark);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
}
.accordion-toggle.active::before{
   content: '\EA78';
}
.accordion-content {
   padding-top: 2rem;
}
.accordion-content p{
	max-width: 139rem;
}
.faq_btn{
	position: absolute;
	right: 1.5rem;
	top: 0;
	text-align: center;
}

/*contact area*/
.contact_area {
	background-image: url(../img/map.svg);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
	position: relative;
	padding: 12rem 0;
	z-index: 1;
}
.contact_area::before {
	position: absolute;
	content: '';
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #ffffff;
	opacity: 0.7;
	z-index: -1;
}
aside {
	border: .1rem solid #ababab;
	padding: 3.0rem;
	height: 100%;
	background-color: #ffffff;
	border-radius: 0.8rem;
}
aside h4 {
	line-height: 0.8;
	border-bottom: .1rem solid #ababab;
	padding-bottom: 1.5rem;
	color: #000000;
	margin-bottom: 4rem;
}
aside .address ul li {
	border-bottom: .1rem solid #ababab;
	margin: 1.5rem 0 0;
	padding-bottom: 1.5rem;
}
aside .address ul li:last-child {
	border-bottom: none;
	padding-bottom: 0;
}
aside .address ul li a {
	display: block;
	color: inherit;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}
aside .address ul li a:hover {
	color: var(--green);
}
aside ul li strong {
	color: #000000;
	position: relative;
	padding-left: 2.5rem;
	margin-bottom: .5rem;
	display: inline-block;
}
aside ul li strong::before {
	position: absolute;
	content: '';
	left: 0;
	top: .9rem;
	width: 1.5rem;
	height: 1.5rem;
	background-color: var(--green);
}
.inputBox,
.textBox {
	height: 5rem;
	width: 100%;
	padding: 0 2rem;
	border: .1rem solid #ababab;
	background-color: #ffffff;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
	border-radius: 0.8rem;
	margin-bottom: 2.5rem;
	font-size: 1.8rem;
	font-weight: 500;
}
.textBox {
	height: 14.0rem;
	resize: none;
	padding-top: 1.0rem;
}
.inputBox:focus,
.textBox:focus {
	border-color: #fe4c1c;
	-webkit-box-shadow: none;
	box-shadow: none;
}

/*cta area*/
.cta_area{
	background-color: var(--green);
	color: #fff;
	padding: 11rem 0 8rem;
	position: relative;
	z-index: 1;
	overflow: hidden;
}
.cta_area::after {
	position: absolute;
	content: '';
	left: 0;
	top: 0;
	background: -o-repeating-linear-gradient(342deg, rgba(222, 242, 250, 0.25), rgba(222, 242, 250, 0.25) 2.5rem, var(--green) 2.5rem, var(--green) 4.0rem);
	background: repeating-linear-gradient(108deg, rgba(222, 242, 250, 0.25), rgba(222, 242, 250, 0.25) 2.5rem, var(--green) 2.5rem, var(--green) 4.0rem);
	width: 100%;
	height: 3rem;
}
.cta_area h3{
	font-weight: 700;
}
.cta_area p {
	margin-top: 2.5rem;
	max-width: 92rem;
	margin-left: auto;
	margin-right: auto;
}
/*footer*/
footer{
	padding: 0rem 0 4rem;
	position: relative;
	z-index: 1;
}
.footer_logo{
	display: block;
	width: 100%;
	max-width: 30rem;
	margin-top: 4rem;
	margin-left: auto;
	margin-right: auto;
}
.footer_bottom{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-column-gap: 2rem;
	   -moz-column-gap: 2rem;
	        column-gap: 2rem;
	-ms-flex-wrap: wrap-reverse;
	    flex-wrap: wrap-reverse;
	row-gap: 1rem;
	border-top: 0.1rem solid #000;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	font-size: 1.6rem;
	padding-top: 4rem;
	margin-top: 6rem;
}
.footer_bottom ul{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}
.footer_bottom ul li:not(:last-child){
	border-right: 0.1rem solid #000;
	margin-right: 1rem;
	padding-right: 1.1rem;
}


/*result area*/
.result_area{
	background-color: var(--light);
	padding: 10rem 0;
}
.result_box {
	box-shadow: 0 .2rem 3.0rem rgba(0, 0, 0, 0.10);
	border-radius: 1.5rem;
	height: 100%;
	background-color: #fff;
	padding: 6rem 3rem;
	font-size: 1.8rem;
}
.number_box {
	height: 14rem;
	width: 14rem;
	border-radius: 50%;
	font-size: 4.5rem;
	font-weight: 700;
	color: var(--green);
	background-color: #fafbfb;
	white-space: nowrap;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 1rem;
}


.why_act_area{
	padding: 10rem 0;
	border-bottom: 0.1rem solid #bebebe;
}
.why_act_area ul{
	list-style: disc;
	padding-top: 2rem;
	padding-left: 2.2rem;
}
.why_act_area ul li{
	margin-top: 1.5rem;
	font-size: 2.2rem;
}
.why_act_area ul li::marker{
	color: var(--orange);
}
.response.success {
  color: green;
}
.response.error {
  color: red;
}










