@font-face {
    font-family: 'PoppinsBold';
    src: url('../fonts/PoppinsBold.eot');
    src: url('../fonts/PoppinsBold.eot') format('embedded-opentype'),
         url('../fonts/PoppinsBold.woff2') format('woff2'),
         url('../fonts/PoppinsBold.woff') format('woff'),
         url('../fonts/PoppinsBold.ttf') format('truetype'),
         url('../fonts/PoppinsBold.svg#PoppinsBold') format('svg');
}
@font-face {
    font-family: 'PoppinsExtraBold';
    src: url('../fonts/PoppinsExtraBold.eot');
    src: url('../fonts/PoppinsExtraBold.eot') format('embedded-opentype'),
         url('../fonts/PoppinsExtraBold.woff2') format('woff2'),
         url('../fonts/PoppinsExtraBold.woff') format('woff'),
         url('../fonts/PoppinsExtraBold.ttf') format('truetype'),
         url('../fonts/PoppinsExtraBold.svg#PoppinsExtraBold') format('svg');
}
@font-face {
    font-family: 'PoppinsLight';
    src: url('../fonts/PoppinsLight.eot');
    src: url('../fonts/PoppinsLight.eot') format('embedded-opentype'),
         url('../fonts/PoppinsLight.woff2') format('woff2'),
         url('../fonts/PoppinsLight.woff') format('woff'),
         url('../fonts/PoppinsLight.ttf') format('truetype'),
         url('../fonts/PoppinsLight.svg#PoppinsLight') format('svg');
}
@font-face {
    font-family: 'PoppinsMedium';
    src: url('../fonts/PoppinsMedium.eot');
    src: url('../fonts/PoppinsMedium.eot') format('embedded-opentype'),
         url('../fonts/PoppinsMedium.woff2') format('woff2'),
         url('../fonts/PoppinsMedium.woff') format('woff'),
         url('../fonts/PoppinsMedium.ttf') format('truetype'),
         url('../fonts/PoppinsMedium.svg#PoppinsMedium') format('svg');
}
@font-face {
    font-family: 'PoppinsRegular';
    src: url('../fonts/PoppinsRegular.eot');
    src: url('../fonts/PoppinsRegular.eot') format('embedded-opentype'),
         url('../fonts/PoppinsRegular.woff2') format('woff2'),
         url('../fonts/PoppinsRegular.woff') format('woff'),
         url('../fonts/PoppinsRegular.ttf') format('truetype'),
         url('../fonts/PoppinsRegular.svg#PoppinsRegular') format('svg');
}
@font-face {
    font-family: 'PlayfairDisplayBold';
    src: url('../fonts/PlayfairDisplayBold.eot');
    src: url('../fonts/PlayfairDisplayBold.eot') format('embedded-opentype'),
         url('../fonts/PlayfairDisplayBold.woff2') format('woff2'),
         url('../fonts/PlayfairDisplayBold.woff') format('woff'),
         url('../fonts/PlayfairDisplayBold.ttf') format('truetype'),
         url('../fonts/PlayfairDisplayBold.svg#PlayfairDisplayBold') format('svg');
}
@font-face {
    font-family: 'PlayfairDisplayRegular';
    src: url('../fonts/PlayfairDisplayRegular.eot');
    src: url('../fonts/PlayfairDisplayRegular.eot') format('embedded-opentype'),
         url('../fonts/PlayfairDisplayRegular.woff2') format('woff2'),
         url('../fonts/PlayfairDisplayRegular.woff') format('woff'),
         url('../fonts/PlayfairDisplayRegular.ttf') format('truetype'),
         url('../fonts/PlayfairDisplayRegular.svg#PlayfairDisplayRegular') format('svg');
}
*{padding: 0;margin: 0;}
body{padding: 0;margin: 0;font-family: 'PoppinsRegular';overflow-x: hidden;box-sizing: border-box;}
p{font-size: 16px;font-weight: 400;}
a{transition: 0.5s;text-decoration: none;}
ul, li{padding: 0;margin: 0;list-style-type: none;}
.card, .card-body, .card-footer, .card-image{box-shadow: none;padding: 0;border-radius: 0;background-color: transparent;border: none;}
.heading{font-family: 'PlayfairDisplayBold';}
.p-80{padding: 70px 0;}
input[type=number]::-webkit-inner-spin-button, 
input[type=number]::-webkit-outer-spin-button { 
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
.form-control {
    height: 60px;
    border-radius: 15px;
    border: 1px solid #f4f2f2;
    background-color: #f4f2f2;
    padding: 10px 20px;
    font-size: 15px;
    font-weight: 400;
    color: #484848;
}
.form-control:focus{
    box-shadow: none;
    border-color: #f4f2f2;
    background-color: #f4f2f2;
}
.form-control::placeholder{
    font-size: 15px;
    font-weight: 400;
    color: #484848;  
}
textarea.form-control {
    resize: none;
    height: 140px;
    padding: 20px;
}
.btn1, .btn2 {
    display: inline-block;
    position: relative;
    background-color: #68a318;
    color: #ffffff;
    border-radius: 0;
    border: 1px solid #68a318;
    padding: 16px 25px;
    padding-left: 15px;
    font-size: 14px;
    font-family: 'PoppinsMedium';
    transition: 0.5s;
    text-transform: uppercase;
    border: none;
}
.btn1::before, .btn2::before {
    content: '';
    position: absolute;
    top: 0;
    left: -30px;
    width: 30px;
    height: 101%;
    background: #61a432;
    clip-path: polygon(100% 0, 0 100%, 100% 100%);
    transition: 0.5s;
}

.btn2 {
    background: #8cc63e;
    padding-left: 20px;
    padding-right: 15px;
}
.btn2::before {
    background: #8cc63e;
    left: auto;
    right: -30px;
    clip-path: polygon(0 0, 0 100%, 100% 0);
}
.btn1:hover{
    background: #8cc63e;
    color: #fff;
}
.btn1:hover::before{
    background: #8cc63e;
}
.btn2:hover{
    background: #68a318;
    color: #fff;
}
.btn2:hover::before{
    background: #68a318;
}
.btn{
    text-transform: uppercase;
    color: #ffffff;
    background: #8cc63e;
    border-radius: 30px;
    transition: 0.5s;
    font-family: 'PoppinsMedium';
    font-size: 14px;
    padding: 12px 24px;
	border: none;
}
.btn:hover, .btn:focus{
    background: #68a318;
    color: #fff;
}
@-webkit-keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
    }
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
/*-- header css start --*/
.logo {
    width: 100%;
    max-width: 300px;
    padding-right: 90px;
    height: 100px;
    display: flex;
    align-items: center;
    position: relative;
}
.logo img{
    width: 100%;
    object-fit: contain;
}
.logo::before {
    content: '';
    position: absolute;
    top: 0;
    right: -28px;
    width: 100%;
    max-width: 60px;
    height: 100%;
    background-color: #fff;
    clip-path: polygon(0 0, 0% 100%, 100% 0);
    z-index: 1;
}
.logo::after {
    content: '';
    position: absolute;
    top: 0;
    right: 2px;
    width: 2px;
    height: 108%;
    background: #8cc63e;
    transform: rotate(31deg);
}
.header-area{
    background: #fff;
}
.header-right-area {
    width: 100%;
    max-width: 75%;
}
.header-contact-area{
    padding: 10px 0 10px 40px;
    position: relative;
    background: #8cc63e;
}
.header-contact-area::after{
    content: '';
    position: absolute;
    top: 0;
    right: -4000px;
    width: 4000px;
    height: 100%;
    background: #8cc63e;
}
.header-contact ul li{
    display: inline-flex;
    align-items: center;
    padding-right: 10px;
    margin-right: 10px;
    position: relative;
}
.header-contact ul li::after {
    content: '';
    position: absolute;
    top: 2px;
    right: 0;
    width: 1.5px;
    height: 80%;
    background: #fff;
}
.header-contact ul li:last-child{
    padding-right: 0;
    margin-right: 0;
}
.header-contact ul li:last-child::after{
    display: none;
}
.header-contact ul li a{
    font-size: 14px;
    color: #ffffff;
}
.header-contact ul li img{
    width: auto;
    height: 18px;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(99%) sepia(1%) saturate(2%) hue-rotate(58deg) brightness(104%) contrast(101%);
    margin-right: 8px;
}
.header-social ul li{
    display: inline-block;
    margin-right: 2px;
}
.header-social ul li:last-child{
    margin-right: 0;
}
.header-social ul li a{
    display: inline-block;
}
.header-social ul li img{
    width: auto;
    height: 18px;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(99%) sepia(1%) saturate(2%) hue-rotate(58deg) brightness(104%) contrast(101%);
}
.menu ul li{
    display: inline-block;
    margin-right: 35px;
}
.menu ul li a {
    color: #000000;
    font-size: 14px;
    transition: 0.5s;
    padding: 15px 0;
    display: inline-block;
    text-transform: capitalize;
}
.header-menu-area{
    padding-left: 55px;
}
.header-area.fix {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9;
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    box-shadow: 0 0 12px rgb(0 0 0 / 10%);
}
.header-area.fix .header-contact-area{
    display: none !important;
}
.header-area.fix .logo {
    height: auto;
}
.header-area.fix .logo::before, .header-area.fix .logo::after{
    display: none;
}
.header-area.fix .menu ul li a {
    padding: 25px 0;
}
.header-area.fix .btn1{
    padding: 24px 28px;
    padding-left: 30px;
    font-size: 16px;
}
.header-area.fix .btn1::before {
    left: -29px;
    height: 100%;
}
/*-- header css stop --*/
/*-- banner area start --*/
.banner-area{
    position: relative;
    height: 621px;
}
.banner-area img{
    width: 100%;
    object-fit: cover;
}
.banner-area .banner-content-area{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}
.banner-content{
    width: 100%;
    max-width: 548px;
    height: 621px;
    position: relative;
}
.banner-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: -22%;
    width: 807px;
    height: 621px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(../images/banner-shape1.png);
}
.banner-content .heading {
    color: #ffffff;
    font-size: 45px;
    line-height: 55px;
    margin: 0 0 20px;
}
.banner-content .content-text {
    color: #ffffff;
    font-size: 16px;
    line-height: 26px;
    margin: 0 0 20px;
    padding-right: 115px;
}
.banner-content .w-100{
    position: relative;
}
/*-- banner area stop --*/
/*-- webtext start --*/
.webtext .heading{
    color: #000000;
    font-size: 38px;
    line-height: 38px;
    text-transform: capitalize;
}
.webtext .tagline{
    color: #8cc63e;
    font-size: 24px;
    font-family: 'PlayfairDisplayBold';
    line-height: 34px;
    margin: 0 0 0;
}
.webtext .text{
    color: #373737;
    font-size: 16px;
    line-height: 26px;
}
/*-- webtext stop --*/
/*-- service area start --*/
.service-box {
    background: #fff;
    border-radius: 40px;
    box-shadow: 0 0 10px rgb(0 0 0 / 10%);
    padding: 12px;
    padding-bottom: 0;
}
.service-box .img-box{
    width: 100%;
    height: 203px;
    overflow: hidden;
    border-radius: 40px;
}
.service-box .img-box img{
    width: 100%;
    object-fit: cover;
    transition: 0.5s;
}
.service-box:hover .img-box img{
    transform: scale(1.1);
}
.service-box .content-box {
    padding-top: 50px;
    position: relative;
    padding-bottom: 40px;
}
.service-box .content-box .heading{
    font-family: 'PlayfairDisplayRegular';
    color: #000000;
    font-size: 18px;
    line-height: 28px;
    margin: 0 0 10px;
}
.service-box .content-box .content-text{
    color: #000000;
    font-size: 14px;
    font-family: 'PoppinsLight';
    line-height: 24px;
}
.service-box .content-box .btn {
    position: absolute;
    bottom: -20px;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 130px;
}
.service-box .content-box .icon {
    width: 100%;
    max-width: 83px;
    height: 83px;
    background-color: #ffffff;
    box-shadow: 0 0 12px rgb(140 198 62 / 70%) inset;
    border-radius: 100%;
    position: absolute;
    top: -45px;
    left: 0;
    right: 0;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    transition: 0.5s;
}
.service-box:hover .content-box .icon{
    transform: rotateY(360deg);
}
.service-box .content-box .icon img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(58%) sepia(72%) saturate(2989%) hue-rotate(50deg) brightness(96%) contrast(81%);
}
.service-area .webtext{
    margin: 0 0 35px;
}
/*-- service area stop --*/
/*-- about area start --*/
.about-area{
    background: #f5ffe8;
}
.about-area .about-img-box {
    width: 731px;
    overflow: hidden;
    clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
    position: relative;
    left: -21%;
}
.about-area .about-img-box img{
    width: 100%;
    object-fit: cover;
}
.webtext.about-content-box {
    padding-left: 40px;
}
.webtext.about-content-box .tagline{
    margin: 0 0 10px;
}
.webtext.about-content-box .heading{
    margin: 0 0 20px;
}
.webtext.about-content-box .text{
    margin: 0 0 25px;
}
/*-- about area stop --*/
/*-- whychoose area start --*/
.whychoose-box .icon {
    width: 100%;
    max-width: 88px;
    height: 88px;
    background: #8cc63e;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    padding: 18px;
    position: relative;
    z-index: 1;
    transition: 0.5s;
}
.whychoose-box .icon img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(100%) sepia(1%) saturate(5631%) hue-rotate(124deg) brightness(113%) contrast(100%);
}
.whychoose-box:hover .icon{
    transform: rotateY(360deg);
}
.whychoose-box .whychoose-text {
    text-align: center;
    color: #1d1d1d;
    background: #ffffff;
    box-shadow: 0 0 8px rgb(208 208 208);
    font-size: 18px;
    font-family: 'PlayfairDisplayRegular';
    line-height: 28px;
    padding: 45px 40px 20px;
    border-radius: 20px;
    position: relative;
    margin-top: -35px;
}
.whychoose-box .whychoose-text::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 196px;
    height: 50%;
    box-shadow: 0 0 8px rgb(208 208 208);
    background: #fff;
    margin: 0 auto;
    border-radius: 20px;
    z-index: -1;
}
.whychoose-area .webtext{
    margin: 0 0 35px;
}
.about-area.whychoose-area {
    background: #fff;
}
.whychoose-box {
    position: relative;
    z-index: 1;
}
.whychoose-listing-area{
    position: relative;
}
.whychoose-listing-area::before {
    content: '';
    position: absolute;
    top: 62%;
    left: -54px;
    right: 0;
    width: 1260px;
    height: 15px;
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url(../images/whychoose-shape1.png);
    margin: 0 auto;
}
/*-- whychoose area stop --*/
/*-- getintouch area start --*/
.getintouch-area{
    background-color: #8cc63e;
}
.getintouch-imgbox{
    width: 732px;
    position: relative;
    clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
    right: 69px;
}
.getintouch-imgbox img{
    width: 100%;
    object-fit: cover;
}
.getintouch-form-box {
    padding: 15px 0 0;
}
.getintouch-form-box .webtext .heading{
    color: #fff;
}
.getintouch-form-box {
    width: 100%;
    max-width: 92%;
}
/*-- getintouch area stop --*/
/*-- footer area start --*/
.footer-area{
    background: #1c3001;
}
.footer-body-area{
    padding: 60px 0;
}
.footer-logo{
    width: 100%;
    max-width: 170px;
    margin-bottom: 35px;
}
.footer-logo img{
    width: 100%;
    object-fit: cover;
}
.ndis-logo{
    width: 100%;
    max-width: 131px;
}
.ndis-logo img{
    width: 100%;
    object-fit: cover;
}
.footer .footer-heading{
    text-transform: uppercase;
    color: #fff;
    font-size: 18px;
    font-family: 'PoppinsBold';
    line-height: 28px;
    margin: 0 0 15px;
}
.footer .footer-contact-media .media-icon {
    width: 100%;
    max-width: 30px;
    height: 30px;
    border-radius: 100%;
    background-color: #8cc63e;
    padding: 7px;
}
.footer .footer-contact-media .media-icon img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%) hue-rotate(73deg) brightness(103%) contrast(103%);
}
.footer .footer-contact-media .media-body{
    padding-left: 8px;
}
.footer .footer-contact-media .media-body, .footer .footer-contact-media .media-body a{
    color: #ffffff;
    font-size: 15px;
    font-weight: 400;
    transition: 0.5s;
}
.footer .footer-contact-media .media-body a:hover{
    color: #3bb54b;
}
.footer-contact-media{
    margin-bottom: 15px;
}
.footer ul li{
    margin-bottom: 8px;
}
.footer ul li a{
    color: #ffffff;
    font-size: 14px;
    transition: 0.5s;
}
.footer ul li a:hover{
    color: #61a432;
}
.copyright {
    border-top: 1px solid #495934;
    color: #ffffff;
    font-size: 14px;
    padding: 15px 0;
}
.copyright a{
    color: #ffffff;
}
.copyright a:hover{
   color: #61a432; 
}
.back-to-top {
    position: fixed;
    bottom: 15px;
    right: 15px;
    padding: 0.2em;
    background: #8cc63e;
    z-index: 1;
    width: 100%;
    max-width: 57px;
    height: 57px;
    border-radius: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: #fff;
    cursor: pointer;
    transition: 0.5s;
}
.back-to-top:hover{
    background-color: #1c3001;
}
/*-- footer area stop --*/
.site-content, .site-main .widecolumn {
    margin-left: 0px !important;
}
.page .entry-header, .blog_page_header {
    background: url("../images/inner-banner.jpg") #eee no-repeat center;
    background-size: cover !important;
    max-width: 100% !important;
    padding: 100px 0 !important;
    margin: 0 !important;
    position: relative;
    overflow: hidden;
    text-align: center;
}
.blog_page_header{
	margin-bottom: 50px !important;
}
.page .entry-header:before, .blog_page_header:before {
	background: rgba(0, 0, 0, 0.7);
	position: absolute;
	content: "";
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
}
.page .entry-content {
	max-width: 100% !important;
	padding: 0px !important;
}
.content-area, .content-sidebar {
    padding-top: 0px !important;
}
.page .entry-title, .blog_page_title {
    color: #fff;
	position: relative;
    font-size: 32px;
	font-weight: 600;
    text-transform: none;
    z-index: 99;
	margin-bottom: 3px;
}
.breadcrumb-container {
    width: 100%;
	color: #86c751;
	position: relative;
	font-size: 15px;
}
.breadcrumb-container a {
	color: #86c751;
}
.page {
	margin-top: 0 !important;
}
.form-group input, .form-group select, .form-group textarea{
    width: 100%;
    height: 50px;
    font-size: 14px;
    font-family: 'PoppinsLight';
    outline: none;
	border:1px solid #cdcdcd;
}
.form-group select option{
    color: #000000;
}
.form-group p{
    margin-bottom: 0;
}
.wpcf7 input[type="file"] {
    background-color: #fff;
}
.form-group textarea{
    height: 120px;
    resize: none;
}
.getintouch-form-box .form-group{
    margin-bottom: 10px;
}
.getintouch-form-box .form-group textarea {
    height: 50px;
    margin-bottom: 25px;
}
.getintouch-form-box .form-group input, .getintouch-form-box .form-group select, .getintouch-form-box .form-group textarea{
    background-color: transparent;
    padding-left: 0;
    padding-right: 0;
    border: none;
    border-bottom: 1px solid #a0d972;
    color: #ffffff;
}
.getintouch-form-box .form-group input::placeholder, .getintouch-form-box .form-group textarea::placeholder{
    color: #ffffff;
}
.testimonial-area .webtext{
    margin-bottom: 40px;
}
.testimonial-body-area .sp-testimonial-item {
    padding: 10px;
}
.testimonial-body-area .sp-testimonial-free {
    background: #fff !important;
    border-radius: 10px !important;
    box-shadow: 0 0 12px rgb(0 0 0 / 15%);
    padding: 65px 20px 20px;
    position: relative;
}
.testimonial-body-area .sp-testimonial-free .sp-testimonial-content p {
    padding: 0;
    text-align: left;
    color: #1b1b1b;
    font-size: 14px;
    margin-bottom: 0;
    line-height: 24px;
}
.testimonial-body-area .sp-testimonial-free .sp-testimonial-client-rating {
    position: absolute;
    top: 35px;
    left: 20px;
}
.testimonial-body-area .sp-testimonial-free .sp-testimonial-client-name{
    text-align: right;
    font-style: italic;
    font-size: 14px;
}
.testimonial-body-area .sp-testimonial-free .sp-testimonial-client-testimonial{
    margin-bottom: 12px;
}
.sp-testimonial-free-section .testimonial-nav-arrow {
    font-size: 30px !important;
    border: none !important;
    top: 62% !important;
}
.error_container {
  display: flex;
  min-height: 100vh;
  align-items: center;
  text-align: center;
}
.error_container img {
  margin-bottom: 20px;
}
.thankyou_text {
    color: #000000;
    font-size: 15px;
    margin: 0 0 15px;
}
.error_container img, img.thankyou-img{
	filter: brightness(0) saturate(100%) invert(97%) sepia(8%) saturate(3333%) hue-rotate(26deg) brightness(79%) contrast(96%);
}
.page-id-32 .entry-header{
	margin-bottom:50px !important;
}
.inner-section {
    padding: 60px 0;
}
.inner-heading {
    font-size: 32px;
	font-family: 'PlayfairDisplayBold';
    line-height: 42px;
    margin-bottom: 20px;
    color: #000000;
}
.contact_page_info {
	position:relative;
	padding-left:47px;
	color:#666;
	margin-bottom:15px;
}
.contact_page_info:last-child{
    margin-bottom: 0;
}
.contact_page_info a {
	color:#666;
}
.contact_page_info strong {
	color:#222;
	font-weight: 600;
	font-size:18px;
}
.contact_page_info img {
	position:absolute;
	top:7px;
	left:0;
	width:35px;
    filter: brightness(0) saturate(100%) invert(97%) sepia(8%) saturate(3333%) hue-rotate(26deg) brightness(79%) contrast(96%);
}
.map-box {
    height: 350px;
    width: 100%;
    margin-top: 30px;
    margin-bottom: 30px;
}
.map-box iframe{
    width: 100%;
    height: 100%;
}
.page-id-20 input[type="submit"] {
    background-color: #8ec63e;
    color: #fff;
}
.inner-section:nth-of-type(2n) {
    background-color: #e4ffcf;
}
.inner-content ul {
    padding: 0;
    margin: 0;
    list-style: none;
}
.inner-content ul li {
    position: relative;
    color: #000000;
    font-size: 16px;
    line-height: 26px;
    margin: 0 0 8px;
    padding-left: 28px;
}
.inner-content ul li::before {
    content: '';
    position: absolute;
    top: 5px;
    left: 0;
    width: 100%;
    max-width: 20px;
    height: 20px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url(../images/check.png);
	filter: brightness(0) saturate(100%) invert(68%) sepia(40%) saturate(651%) hue-rotate(43deg) brightness(96%) contrast(89%);
}
.inner-content {
    font-size: 16px;
    line-height: 26px;
    color: #000000;
    margin-bottom: 15px;
}
.inner-section.call-us-area {
    text-align: center;
    background: #86c751;
    padding: 40px 0;
}
.ref_form_box {
	background: url("../images/testimonial_bg.jpg") no-repeat center;
	background-size: cover;
	padding: 35px;
	margin-bottom: 30px;
	border: 1px solid #ddd;
	border-radius: 10px;
}
.ref_form_box p {
	margin-bottom: 0 !important;
}
.ref_form_box_heading {
	color: #111;
	font-size: 26px;
	font-family: 'PlayfairDisplayBold';
	line-height: 30px;
}
.ref_form_box_heading strong{
	font-weight:normal;
}
.ref_form_box_label {
	color: #666;
	margin-top: 15px;
}
.ref_form_box_input input {
	width: 100%;
	min-height: 44px;
	margin-top: 2px;
	border: 1px solid #ccc !important;
	color: #555;
}
.ref_form_box_input select {
	background: url("../images/dropdown.png") #fff no-repeat center right 10px;
	width: 100%;
	min-height: 44px;
	margin-top: 2px;
	border: 1px solid #ccc !important;
	border-radius: 2px;
	color: #555;
	padding: 10px 30px 10px 12px;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}
.ref_form_box_input textarea {
	resize: none;
	height: 144px;
	margin-top: 2px;
	border: 1px solid #ccc !important;
	color: #555;
}
.ref_form_box .contact_btn input {
    font-weight: 600;
    background: #61a432 !important;
    font-size: 16px;
    margin-top: 20px;
    border-radius: 30px;
    padding: 13px 30px 12px;
    color: #fff;
}
span.wpcf7-list-item {
	margin: 0 !important;
	display: block;
}
.wpcf7-list-item label {
	display: block;
	position: relative;
	margin-top: 8px;
	color: #555;
	cursor: pointer;
	font-size: 16px;
	font-weight: 500;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}
.half_check .wpcf7-list-item {
	width: 45%;
}
.wpcf7-list-item label input {
	position: absolute;
	opacity: 0;
	cursor: pointer;
	height: 0;
	width: 0;
}
.wpcf7-list-item-label {
	position: relative;
	padding-left: 22px;
}
.wpcf7-list-item-label::before {
	position: absolute;
	top: 1px;
	left: 0;
	height: 16px;
	width: 16px;
	background-color: #eee;
	border: 1px solid #ccc;
	border-radius: 50%;
}
.wpcf7-list-item label:hover input ~ .wpcf7-list-item-label:before {
	background-color: #ccc;
}
.wpcf7-list-item label input:checked ~ .wpcf7-list-item-label:before {
	background-color: #61a432;
	border-color: #61a432;
}
.wpcf7-list-item-label:after {
	content: "";
	position: absolute;
	display: none;
}
.wpcf7-list-item label input:checked ~ .wpcf7-list-item-label:after {
	display: block;
}
.wpcf7-list-item label .wpcf7-list-item-label:after {
	left: 6px;
	top: 3px;
	width: 5px;
	height: 9px;
	border: solid #fff;
	border-width: 0 1px 1px 0;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}
.inner-review-box {
    padding: 30px;
    background-color: #fff;
    box-shadow: 0 0 10px rgb(0 0 0 / 14%);
    border-radius: 10px;
}
.inner-review-box .text{
	font-size:14px;
	color:#000000;
	line-height:24px;
	margin-bottom:12px;
}
.inner-review-box .admin-heading{
	color:#1b1b1b;
	font-size:14px;
	font-family: 'PoppinsBold';
	text-align:right;
	font-style:italic;
}
.inner-review-box .star{
	width:100%;
	max-width:97px;
	margin:0 0 12px;
}
.inner-review-box .star img{
	width:100%;
	object-fit:cover;
}
.sp-testimonial-free-section .testimonial-nav-arrow {
    background: transparent !important;
    color: #777777 !important;
}
.header-area.fix .primary-navigation .menu-item-has-children > a:after{
	right: -15px;
    top: 32px;
}
.header-area.fix .menu ul li ul li a {
    padding: 18px 12px;
}
.img-box img{
	width:100%;
	object-fit:cover;
}
.wpcf7-spinner {
    display: block !important;
}
.joinus-form-box input[type="submit"]{
	background-color:#68a318;
	color:#ffffff;
}
/* footer_fixed_buttons css  */
.footer_fixed_buttons {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
    z-index: 99;
}

.footer_btn1 {
    background: #8cc63e;
    width: 50%;
    float: left;
    color: #fff !important;
    padding: 10px 0;
    text-decoration: none !important;
    text-transform: capitalize;
}

.footer_btn2 {
    background: #fff;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, 0);
    height: 44px;
    width: 44px;
    border-radius: 50%;
    padding-top: 9px;
}

.footer_btn3 {
    background: #000;
    width: 50%;
    float: left;
    color: #fff !important;
    padding: 10px 0;
    text-decoration: none !important;
    text-transform: capitalize;
}
.rmp-container .rmp-menu-title .rmp-menu-title-image {
    width: 150px !important;
    height: auto !important;
}
/* blog page css  */
.more-link {
    display: block;
    background: #68a318;
    width: fit-content;
    margin: 15px 0;
    padding: 15px 25px;
    border-radius: 15px;
    color: #fff;
	text-transform: capitalize;
	transition: all 0.5s ease;
    text-decoration: none !important;
}
.more-link:hover{
	background: #8cc63e !important;
	color: #fff !important;
}

.post .entry-title{
	font-size: 30px !important;
	font-weight: 600 !important;
}

.widget_block{
	position: relative;	
}
.widget_block::before{
    content: '';
    width: 100%;
    height: 3px;
    background: #000;
    position: absolute;
    left: 0;
    top: -15px;
}
#block-8::before{
	content: none;
}
#block-7 {
    margin-bottom: 10px;
}

/* mediaquery start here */

/* mobile screen  iphone SE */
@media only screen and (min-width : 321px) and (max-width : 480px) {
	.header-right-area{
		display: none !important;
	}
	.logo::before{
		content:none;
	}
	.logo::after{
		content:none;
	}
	.header-area {
		position: fixed;
		z-index: 9;
		width: 100%;
	}
	.logo img {
		width: 150px;
	}
	.header-area.fix{
		animation: none;
	}
	.header-area.fix .logo {
		height: 100px;
		padding-right: 0;
	}
	.banner-area {
		height: 490px;
		margin-top: 100px;
	}
	.banner-content::before {
		width: 644px;
		height: 556px;
	}
	.banner-content .heading {
		font-size: 30px;
		line-height: 34px;
	}
	.banner-content .content-text {
		padding-right: 0;
	}
	.banner-area img {
		object-position: right;
	}
	.p-80 {
		padding: 50px 0;
	}
	.about-area .about-img-box {
		clip-path: none;
	}
	.webtext.about-content-box {
		padding: 0 10px 50px;
	}
	.webtext .heading {
		font-size: 30px;
	}
	.getintouch-imgbox{
		clip-path: none;
	}
	.getintouch-form-box{
		max-width: 100%;
	}
	.footer-body-area {
		padding: 50px 0 30px;
	}
	.copyright {
		padding: 15px 0 60px;
	}
	.back-to-top {
		bottom: 100px;
	}
	.page .entry-header, .blog_page_header {
		margin-top: 100px !important;
	}
	.page .entry-title, .blog_page_title {
		font-size: 26px;
	}
	.inner-heading {
		font-size: 26px;
		line-height: 30px;
	}
}

/* mobile screen rotate */
@media only screen and (min-width : 481px) and (max-width : 767px) {
	.header-right-area{
		display: none !important;
	}
	.logo::before{
		content:none;
	}
	.logo::after{
		content:none;
	}
	.header-area {
		position: fixed;
		z-index: 9;
		width: 100%;
	}
	.logo img {
		width: 150px;
	}
	.header-area.fix{
		animation: none;
	}
	.header-area.fix .logo {
		height: 100px;
		padding-right: 0;
	}
	.banner-area {
		height: 490px;
		margin-top: 100px;
	}
	.banner-content::before {
		width: 644px;
		height: 556px;
	}
	.banner-content .heading {
		font-size: 30px;
		line-height: 34px;
	}
	.banner-content .content-text {
		padding-right: 0;
	}
	.banner-area img {
		object-position: right;
	}
	.about-area .about-img-box {
		width: 731px !important;
	}
	.p-80 {
		padding: 50px 0;
	}
	.about-area .about-img-box {
		clip-path: none;
	}
	.webtext.about-content-box {
		padding: 0 10px 50px;
	}
	.webtext .heading {
		font-size: 30px;
	}
	.getintouch-imgbox{
		clip-path: none;
	}
	.getintouch-form-box{
		max-width: 100%;
	}
	.footer-body-area {
		padding: 50px 0 30px;
	}
	.copyright {
		padding: 15px 0 60px;
	}
	.back-to-top {
		bottom: 100px;
	}
	.page .entry-header, .blog_page_header {
		margin-top: 100px !important;
	}
	.page .entry-title, .blog_page_title {
		font-size: 26px;
	}
	.inner-heading {
		font-size: 26px;
		line-height: 30px;
	}
}

/* iPhone X/XS */
@media only screen and (min-device-width: 375px) and (max-device-width: 812px) and (-webkit-min-device-pixel-ratio: 3) and (orientation: landscape) {
	.header-right-area{
		display: none !important;
	}
	.logo::before{
		content:none;
	}
	.logo::after{
		content:none;
	}
	.header-area {
		position: fixed;
		z-index: 9;
		width: 100%;
	}
	.logo img {
		width: 150px;
	}
	.header-area.fix{
		animation: none;
	}
	.header-area.fix .logo {
		height: 100px;
		padding-right: 0;
	}
	.banner-area {
		height: 490px;
		margin-top: 100px;
	}
	.banner-content::before {
		width: 644px;
		height: 556px;
	}
	.banner-content .heading {
		font-size: 30px;
		line-height: 34px;
	}
	.banner-content .content-text {
		padding-right: 0;
	}
	.banner-area img {
		object-position: right;
	}
	.about-area .about-img-box {
		left: -22% !important; 
	}
	.p-80 {
		padding: 50px 0;
	}
	.about-area .about-img-box {
		width: 400px;
		height: 425px;
	}
	.webtext.about-content-box {
		padding: 0 10px 50px;
	}
	.webtext .heading {
		font-size: 30px;
	}
	.getintouch-form-box{
		max-width: 100%;
	}
	.footer-body-area {
		padding: 50px 0 30px;
	}
	.copyright {
		padding: 15px 0 60px;
	}
	.back-to-top {
		bottom: 100px;
	}
	.page .entry-header, .blog_page_header {
		margin-top: 100px !important;
	}
	.page .entry-title, .blog_page_title {
		font-size: 26px;
	}
	.inner-heading {
		font-size: 26px;
		line-height: 30px;
	}
}

/* iPhone XR */
@media only screen and (min-device-width: 414px) and (max-device-width: 896px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: landscape) {
	.header-right-area{
		display: none !important;
	}
	.logo::before{
		content:none;
	}
	.logo::after{
		content:none;
	}
	.header-area {
		position: fixed;
		z-index: 9;
		width: 100%;
	}
	.logo img {
		width: 150px;
	}
	.header-area.fix{
		animation: none;
	}
	.header-area.fix .logo {
		height: 100px;
		padding-right: 0;
	}
	.banner-area {
		height: 490px;
		margin-top: 100px;
	}
	.banner-content::before {
		width: 644px;
		height: 556px;
	}
	.banner-content .heading {
		font-size: 30px;
		line-height: 34px;
	}
	.banner-content .content-text {
		padding-right: 0;
	}
	.banner-area img {
		object-position: right;
	}
	.about-area .about-img-box {
		left: -22% !important; 
	}
	.p-80 {
		padding: 50px 0;
	}
	.about-area .about-img-box {
		width: 400px;
		height: 425px;
	}
	.webtext.about-content-box {
		padding: 0 10px 50px;
	}
	.webtext .heading {
		font-size: 30px;
	}
	.getintouch-form-box{
		max-width: 100%;
	}
	.footer-body-area {
		padding: 50px 0 30px;
	}
	.copyright {
		padding: 15px 0 60px;
	}
	.back-to-top {
		bottom: 100px;
	}
	.page .entry-header, .blog_page_header {
		margin-top: 100px !important;
	}
	.page .entry-title, .blog_page_title {
		font-size: 26px;
	}
	.inner-heading {
		font-size: 26px;
		line-height: 30px;
	}
}

/* iPhone XS Max */
@media only screen and (min-device-width: 414px) and (max-device-width: 896px) and (-webkit-min-device-pixel-ratio: 3) and (orientation: landscape) {

}
/* ipad screen  */
@media only screen and (min-width : 768px) and (max-width : 1024px) and (orientation : portrait) {
	.header-right-area{
		display: none !important;
	}
	.logo::before{
		content:none;
	}
	.logo::after{
		content:none;
	}
	.header-area {
		position: fixed;
		z-index: 9;
		width: 100%;
	}
	.logo img {
		width: 150px;
	}
	.header-area.fix{
		animation: none;
	}
	.header-area.fix .logo {
		height: 100px;
		padding-right: 0;
	}
	.banner-area {
		height: 490px;
		margin-top: 100px;
	}
	.banner-content::before {
		width: 644px;
		height: 556px;
	}
	.banner-content .heading {
		font-size: 30px;
		line-height: 34px;
	}
	.banner-content .content-text {
		padding-right: 0;
	}
	.banner-area img {
		object-position: right;
	}
	.p-80 {
		padding: 50px 0;
	}
	.about-area .about-img-box {
		width: 400px;
		height: 425px;
	}
	.webtext.about-content-box {
		padding: 0 10px 50px;
	}
	.webtext .heading {
		font-size: 30px;
	}
	.getintouch-form-box{
		max-width: 100%;
	}
	.footer-body-area {
		padding: 50px 0 30px;
	}
	.copyright {
		padding: 15px 0 60px;
	}
	.back-to-top {
		bottom: 100px;
	}
	.page .entry-header, .blog_page_header {
		margin-top: 100px !important;
	}
	.page .entry-title, .blog_page_title {
		font-size: 26px;
	}
	.inner-heading {
		font-size: 26px;
		line-height: 30px;
	}
}

/* ipad rotate */
@media only screen and (min-width : 768px) and (max-width : 1024px) and (orientation : landscape) {
	.header-right-area{
		display: none !important;
	}
	.logo::before{
		content:none;
	}
	.logo::after{
		content:none;
	}
	.header-area {
		position: fixed;
		z-index: 9;
		width: 100%;
	}
	.logo img {
		width: 150px;
	}
	.header-area.fix{
		animation: none;
	}
	.header-area.fix .logo {
		height: 100px;
		padding-right: 0;
	}
	.banner-area {
		height: 490px;
		margin-top: 100px;
	}
	.banner-content::before {
		width: 955px;
		height: 556px;
	}
	.banner-content .heading {
		font-size: 30px;
		line-height: 34px;
	}
	.banner-content .content-text {
		padding-right: 0;
	}
	.banner-area img {
		object-position: right;
	}
	.p-80 {
		padding: 50px 0;
	}
	.about-area .about-img-box {
		left: -50%;
	}
	.webtext.about-content-box {
		padding: 0 10px 50px;
	}
	.webtext .heading {
		font-size: 30px;
	}
	.getintouch-form-box{
		max-width: 100%;
	}
	.footer-body-area {
		padding: 50px 0 30px;
	}

	.page .entry-header, .blog_page_header {
		margin-top: 100px !important;
	}
	.page .entry-title, .blog_page_title {
		font-size: 26px;
	}
	.inner-heading {
		font-size: 26px;
		line-height: 30px;
	}
}
/* iPad Pro 10.5 inch */
@media only screen and (min-device-width: 1112px) and (max-device-width: 1112px) and (orientation: landscape) and (-webkit-min-device-pixel-ratio: 2) {

}

/* iPad Pro 12.9 inch */
@media only screen and (min-device-width: 1024px) and (max-device-width: 1024px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 2) {

}

@media screen and (min-width: 1424px) {
	.banner-content::before {
		left: -165%;
		width: 2000px;
	}
}

@media screen and (min-width: 1624px) {

}

@media screen and (min-width: 1920px) {

}

@media screen and (min-width: 2048px) {

}

@media screen and (min-width: 2550px) {

}



@media (min-width: 1025px) and (max-width: 1199px){

}