@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Bold.woff2') format('woff2'),
        url('../fonts/Poppins-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Light.woff2') format('woff2'),
        url('../fonts/Poppins-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Regular.woff2') format('woff2'),
        url('../fonts/Poppins-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Regular.woff2') format('woff2'),
        url('../fonts/Poppins-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-SemiBold.woff2') format('woff2'),
        url('../fonts/Poppins-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Medium.woff2') format('woff2'),
        url('../fonts/Poppins-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-ExtraBold.woff2') format('woff2'),
        url('../fonts/Poppins-ExtraBold.woff') format('woff');
    font-weight: bolder;
    font-style: normal;
    font-display: swap;
}
*{padding: 0;margin: 0;}
body{padding: 0;margin: 0;font-family: 'Poppins';font-weight: normal;background-color: #fff;overflow-x: hidden;}
p{font-size: 16px;font-weight: 400;}
a{transition: 0.5s;text-decoration: none;}
h1, h2, h3, h4, h5, h6{font-family: "Poppins", sans-serif;font-weight: 700;padding: 0;margin: 0;}
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;}
.p-80{padding: 80px 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;
}
.btn {
    padding: 14px 30px;
    font-size: 16px;
    font-family: 'Poppins';
    font-weight: 500;
    border: 1px solid;
    transition: 0.5s;
    outline: none;
    text-transform: capitalize;
    border-radius: 30px;
}
.btn-primary{
    border-color: #7ea44d;
    background-color: #7ea44d;
    color: #ffffff;
}
.btn-primary:focus, .btn-primary:hover, .btn-secondary:focus, .btn-secondary:hover{
    border-color: #000000;
    background-color: #000000;
}
.btn-secondary{
    border-color: #39005e;
    background-color: #39005e;
    color: #ffffff;
}
@-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 area start --*/
.header-area {
    position: relative;
    z-index: 999;
}
.header-body-area {
    background-color: #ffffff;
    padding: 0;
}
.header-body{
    position: relative;
}
.header-body .logo {
    width: 100%;
    max-width: 156px;
    padding: 0 5px 10px;
    background-color: #ffffff;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 10px;
    box-shadow: 0px 10px 20px -10px rgb(0 0 0 / 10%);
}
.header-body .logo img{
    width: 100%;
	height:auto;
    object-fit: cover;
}
.menu {
    margin-right: 30px;
}
.menu ul li {
    display: inline-block;
    margin-right: 30px;
}
.menu ul li:last-child{
    margin-right: 0;
}
.menu ul li a {
    color: #282828;
    font-size: 16px;
    font-weight: 500;
    transition: 0.5s;
    letter-spacing: 0.5px;
    padding: 30px 0;
    display: inline-block;
    text-transform: capitalize;
}
.menu ul li.active a, .menu ul li a:hover{
    color: #7aa556;
}
.header-social ul li:last-child{
    margin-right: 0;
}
.header-area.fix .header-body-area {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    -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%);
    z-index: 99;
}
.header-body .btn{
    margin-right: 10px;
}
.header-body .btn:last-child{
    margin-right: 0;
}
/*-- header area stop --*/
/*-- webtext start --*/
.webtext .heading{
    color: #0a0a0a;
    font-size: 40px;
    font-weight: bolder;
    line-height: 50px;
    margin: 0 0 15px;
}
.webtext .webtext-content{
    color: #0a0a0a;
    font-size: 16px;
    font-weight: 500;
    line-height: 26px;
}
/*-- webtext stop --*/
/*-- banner area start --*/
.banner-area{
    width: 100%;
    height: 100dvh;
    position: relative;
    overflow: hidden;
}
.banner-area img{
    width: 100%;
    object-fit: cover;
}
/* .banner-area::after{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;    
} */
.banner-area .banner-content-area{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 1;
}
.banner-content-area .banner-content{
    width: 100%;
    max-width: 950px;
    margin: 0 auto;
    text-align: center;
}
.banner-content-area .banner-content .heading {
    text-transform: capitalize;
    color: #fffefe;
    font-size: 60px;
    font-weight: bolder;
    line-height: 75px;
    margin-bottom: 25px;
}
.banner-content-area .banner-content .text {
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    line-height: 26px;
    width: 100%;
    max-width: 80%;
    margin: 0 auto 30px;
}
.banner-content .banner-btn .btn{
    margin-right: 10px;
}
.banner-content .banner-btn .btn:last-child{
    margin-right: 0;
}
/*-- banner area stop --*/
/*-- getintouch area start --*/
.getintouch-area {
    position: relative;
    background-color: #39005e;
    min-height: 617px;
}
.getintouch-area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background-color: #ffffff;
}
.getintouch-area .container{
    position: relative;
    z-index: 1;
}
.getintouch-img {
    position: relative;
    padding: 0 15px;
}
.getintouch-img img{
    position: relative;
    width: 100%;
    object-fit: cover;
    z-index: 1;
}
.getintouch-img::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 85%;
    left: 0;
    bottom: 0;
    background-color: #7ea44d;
    border-top-left-radius: 43%;
    border-top-right-radius: 43%;
}
.webtext.getintouch-content {
    padding-left: 25px;
    padding-top: 105px;
    margin-bottom: 85px;
}
/*-- getintouch area stop --*/
/*-- about area start --*/
.about-area.p-80{
    padding: 100px 0;
}
.about-img{
    width: 100%;
    position: relative;
}
.about-img img{
    width: 100%;
    object-fit: cover;
    position: relative;
    z-index: 1;
    border-radius: 20px;
}
.about-img .shape {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #7da34d;
    border-radius: 20px;
    transform: rotate(-10deg);
    overflow: hidden;
}
.about-img .shape::before{
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 311px;
    height: 170px;
    background-color: #39005e;
}
.about-img .shape::after{
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    max-width: 311px;
    height: 170px;
    background-color: #39005e;
}
.webtext.about-content {
    padding-right: 50px;
    padding-top: 70px;
}
.webtext.about-content .webtext-content{
    margin-bottom: 20px;
}
/*-- about area stop --*/
/*-- plan area start --*/
.webtext.plan-content-box .webtext-content{
    margin-bottom: 20px;
}
.plan-area .plan-icon-box{
    height: 215px;
    border-radius: 20px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url(../images/plan-box-shape1.jpg);
    overflow: hidden;
    padding: 20px;
    margin-bottom: 24px;
}
.plan-area .plan-icon-box img{
    width: auto;
    height: 100%;
    object-fit: contain;
}
.plan-area .plan-icon-box:last-child{
    background-image: url(../images/plan-box-shape2.jpg);
}
.plan-area .plan-main-icon-box:last-child{
    display: flex;
    flex-direction: column-reverse;
}
.plan-area .plan-main-icon-box:first-child {
    transform: translate(0px, 25px);
}
.webtext.plan-content-box {
    padding-left: 30px;
}
.plan-area.p-80 {
    padding-top: 30px;
}
/*-- plan area stop --*/
/*-- whychoose area start --*/
.whychoose-area{
    position: relative;
    overflow: hidden;
    background-color: #3a015e;
}
.whychoose-area .container{
    position: relative;
}
.whychoose-area .webtext {
    margin-bottom: 50px;
}
.whychoose-area .webtext .heading{
    color: #ffffff;
}
.whychoose-box .icon {
    width: 100%;
    max-width: 105px;
    height: 105px;
    background-color: #7ea44d;
    border-radius: 100%;
    margin: 0 auto 20px;
}
.whychoose-box .text {
    color: #ffffff;
    font-size: 14px;
    font-weight: 300;
    padding: 0 32px;
}
.whychoose-main-box{
    position: relative;
}
.whychoose-main-box::after {
    content: '';
    position: absolute;
    top: 21%;
    right: -28%;
    width: 100%;
    max-width: 160px;
    height: 2px;
    border-top: 1px dashed #ffffff;
}
.whychoose-main-box:last-child::after {
    max-width: 100px;
    right: -7%;
}
.whychoose-main-box:first-child::before {
    content: '';
    position: absolute;
    top: 21%;
    left: -7%;
    width: 100%;
    max-width: 100px;
    height: 2px;
    border-top: 1px dashed #ffffff;
}
.whychoose-main-box .whychoose-box{
    position: relative;
}
.whychoose-main-box:first-child .whychoose-box::before {
    content: '';
    top: 18.5%;
    left: -15%;
    position: absolute;
    width: 100%;
    max-width: 15px;
    height: 15px;
    border-top: 1px solid #ffffff;
    border-left: 1px solid #ffffff;
    transform: rotate(-45deg);
}
.whychoose-main-box:last-child .whychoose-box::after {
    content: '';
    top: 22%;
    right: -15%;
    position: absolute;
    width: 100%;
    max-width: 15px;
    height: 15px;
    border-top: 1px solid #ffffff;
    border-left: 1px solid #ffffff;
    transform: rotate(135deg);
}
.whychoose-area::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(../images/s.png);
    opacity: 0.6;
}
/*-- whychoose area stop --*/
/*-- testimonial area start --*/
.testimonial-area {
    background-color: #f7f7f7;
}
.testimonial-area .webtext{
    margin-bottom: 40px;
}
.testimonial-box{
    background-color: #ffffff;
    border-radius: 20px;
    padding: 25px;
}
.testimonial-box .rating {
    width: 100%;
    max-width: 67px;
    margin: 0 0 10px;
}
.testimonial-box .rating img{
    width: 100%;
    object-fit: cover;
}
.testimonial-box .text{
    color: #0a0a0a;
    font-size: 16px;
    font-weight: 300;
    line-height: 26px;
    margin-bottom: 15px;
}
.testimonial-box .testimonial-media{
    padding-top: 15px;
    border-top: 1px solid #afafaf;
}
.testimonial-box .testimonial-media .testimonial-icon {
    width: 100%;
    max-width: 55px;
    height: 55px;
    overflow: hidden;
    border-radius: 100%;
}
.testimonial-box .testimonial-media .testimonial-icon img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.testimonial-box .testimonial-media .testimonial-body{
    padding-left: 15px;
}
.testimonial-box .testimonial-media .testimonial-body .media-heading{
    color: #0a0a0a;
    font-size: 16px;
    font-weight: 500;
    line-height: 26px;
}
.testimonial-box .testimonial-media .testimonial-body .media-text{
    color: #0a0a0a;
    font-size: 13px;
    font-weight: 300;
}
.testimonial-carousel .owl-dots{
    padding-top: 30px;
}
.testimonial-carousel .owl-dots .owl-dot span{
    width: 15px;
    height: 15px;
}
/*-- testimonial area stop --*/
/*-- footer area start --*/
.footer-area{
    background-color: #39005e;
}
.footer-logo {
    width: 100%;
    max-width: 168px;
    background-color: #ffffff;
    padding: 12px;
    margin-bottom: 25px;
}
.footer-logo img{
    width: 100%;
    object-fit: cover;
}
.footer-social ul{
    padding: 0;
    margin: 0;
    list-style-type: none;
}
.footer-social ul li{
    display: inline-block;
    margin-right: 5px;
}
.footer-social ul li a {
    width: 100%;
    min-width: 32px;
    max-width: 32px;
    height: 32px;
    border: 1px solid #ffffff;
    border-radius: 100%;
    display: inline-flex;
    padding: 6px;
}
.footer-social ul li a img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(66%) sepia(46%) saturate(474%) hue-rotate(44deg) brightness(84%) contrast(80%);
}
.footer-social ul li a:hover{
    background-color: #ffffff;
}
.footer .heading {
    color: #ffffff;
    font-size: 20px;
    font-weight: 600;
    line-height: 30px;
    margin: 0 0 20px;
}
.footer ul{
    padding: 0;
    margin: 0;
    list-style-type: none;
}
.footer ul li {
    margin: 0 0 8px;
}
.footer ul li:last-child{
    margin: 0;
}
.footer ul li a{
    color: #ffffff;
    font-size: 14px;
    font-weight: 300;
    transition: 0.5s;
}
.footer ul li a:hover{
    color: #7aa556;
}
.footer .footer-contact-media {
    margin-bottom: 12px;
}
.footer .footer-contact-media:last-child{
    margin-bottom: 0;
}
.footer .footer-contact-media .media-icon {
    width: 100%;
    max-width: 35px;
    height: 35px;
    border-radius: 100%;
    border: 1px solid #ffffff;
    padding: 8px;
}
.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: 14px;
    font-weight: 300;
    transition: 0.5s;
}
.footer .footer-contact-media .media-body a:hover {
    color: #7aa556;
}
.footer .footer-contact-media .media-icon img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(66%) sepia(46%) saturate(474%) hue-rotate(44deg) brightness(84%) contrast(80%);
}
.copyright {
    text-align: center;
    color: #ffffff;
    font-size: 14px;
    font-weight: 300;
    border-top: 1px solid #ffffff;
    padding: 20px 0;
}
.copyright a{
    color: #ffffff;
}
.copyright a:hover{
    color: #7ea44d;
}
.back-to-top {
    position: fixed;
    bottom: 15px;
    right: 15px;
    padding: 0.2em;
    background: #7ea44d;
    z-index: 1;
    width: 100%;
    max-width: 50px;
    height: 50px;
    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: #000000;
}
/*-- footer area stop --*/
.site-content, .site-main .widecolumn {
    margin-left: 0px !important;
}
.page .entry-header, .blog_page_header {
    /*background: url("../images/banner.jpg") #eee no-repeat center !important;*/
    background-size: cover !important;
    max-width: 100% !important;
    padding: 100px 0 !important;
    margin: 0 0 50px !important;
    position: relative;
    overflow: hidden;
    text-align: center;
}
.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: #7aa556;
    position: relative;
    font-size: 15px;
    font-weight: 300;
}
.breadcrumb-container a {
	color: #7aa556;
}
.page {
	margin-top: 0 !important;
}
.banner-area .ms-slide-info {
	position: absolute !important;
	top: 0;
	left: 0;
	width: 100% !important;
	height: 100dvh;
	background-color: rgb(57 0 94 / 60%);
	margin-top: 0 !important;
}
.banner-area .ms-bullets {
    bottom: 35% !important;
    right: 0 !important;
    display: block !important;
    width: 100% !important;
    opacity: 1 !important;
    z-index: 9999;
}
.banner-area .ms-bullets .ms-bullet {
    width: 15px;
    height: 15px;
    background: none;
    margin: 4px;
    background-position: -34px -117px;
    background-color: #bda7be;
    border-radius: 100%;
}
.banner-area .ms-bullets .ms-bullet.ms-bullet-selected{
    background-color: #ffffff;
}
.banner-area .ms-bullets.ms-dir-h .ms-bullets-count {
    right: -47.5%;
}
.form-group p{
    margin: 0;
}
.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    height: 68px;
    font-size: 16px;
    font-weight: 500;
    border: 1px solid #ffffff;
    border-radius: 10px;
    padding: 15px 15px;
}
.getintouch-form-box {
    padding-left: 25px;
}
.thankyou_text{
    font-size: 16px;
    font-weight: 500;
    color: #000000;
    margin: 0 0 15px;
}
.error_container {
    display: flex;
    min-height: 100vh;
    align-items: center;
    text-align: center;
  }
  .error_container img {
    margin-bottom: 20px;
  }
  .error_container img, img.thanku-img{
    filter: brightness(0) saturate(100%) invert(58%) sepia(60%) saturate(350%) hue-rotate(44deg) brightness(91%) contrast(87%);
  }
.inner_page_heading {
    color: #0a0a0a;
    font-weight: bolder;
    font-size: 30px;
    line-height: 35px;
    position: relative;
    margin-bottom: 15px;
}
.inner_page_heading strong{
    color: #7aa556;
}
.contact_page_info {
    position: relative;
    padding-left: 47px;
    color: #666;
    margin-bottom: 15px;
    font-weight: 500;
}
.contact_page_info img{
    filter: brightness(0) saturate(100%) invert(56%) sepia(47%) saturate(383%) hue-rotate(50deg) brightness(96%) contrast(91%);
}
.contact_page_info a {
	color:#666;
    font-weight: 500;
}
.contact_page_info a:hover{
    color: #7aa556;
}
.contact_page_info strong {
	color:#0a0a0a;
	font-weight: 600;
	font-size:18px;
}
.contact_page_info img {
	position:absolute;
	top:7px;
	left:0;
	width:35px;
}
.contact-map {
    height: 350px;
    margin-top: 50px;
}
.contact-map iframe{
    width: 100%;
    height: 100%;
}
.contact-form-box .form-group input, .contact-form-box .form-group textarea {
    background-color: #f1f1f1;
    height: 58px;
    font-weight: 300;
    font-size: 15px;
}
.contact-form-box .form-group textarea{
    height: 120px;
    resize: none;
}
.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;
    font-weight: 500;
}
.ref_form_box_heading {
	color: #111;
	font-weight: bold;
	font-size: 26px;
	line-height: 30px;
}
.ref_form_box_heading strong {
    color: #7aa556;
}
.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;
    font-weight: 500;
}
.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;
    font-weight: 500;
}
.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: #7aa556 !important;
    font-size: 16px;
    margin-top: 20px;
    border-radius: 30px;
    padding: 13px 30px 12px;
}
.ref_form_box .contact_btn input:hover{
    border-color: #000000;
    background-color: #000000 !important;
}
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: #7aa556;
    border-color: #7aa556;
}
.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-page-content {
    font-size: 16px;
    font-weight: 300;
    color: #000000;
    line-height: 26px;
    margin-bottom: 15px;
	text-align: justify;
}
.inner-page-listing {
    margin-bottom: 15px;
}
.inner-page-listing ul li {
    font-size: 16px;
    font-weight: 300;
    color: #000000;
    line-height: 26px;
    margin-bottom: 7px;
    position: relative;
    padding-left: 25px;
}
.inner-page-listing ul li:before {
    background: url("https://jrtechnologiesweb.in/demo/mate-support-plus/wp-content/uploads/2025/03/check.png") no-repeat;
    background-size: 100%;
    width: 17px;
    height: 17px;
    position: absolute;
    content: "";
    top: 4px;
    left: 0;
}
.inner-box-list{
	margin-bottom:50px;
}
.inner_bottom_box {
    padding: 50px 135px;
    border: 1px solid #efefef;
    border-radius: 20px;
}
.webtext .webtext-content ul li{
	position:relative;
	margin-bottom:8px;
	padding-left: 25px;
}
.webtext .webtext-content ul li::before{
	background: url(https://jrtechnologiesweb.in/demo/mate-support-plus/wp-content/uploads/2025/03/check.png) no-repeat;
    background-size: 100%;
    width: 17px;
    height: 17px;
    position: absolute;
    content: "";
    top: 4px;
    left: 0;
}
.footer-phone{
	display:none;
	flex-direction:row;
	position:fixed;
	bottom:0;
	left:0;
	width:100%;
	z-index: 999;
}
.footer-phone a {
	width: 100%;
	max-width: 50%;
	padding: 12px;
	text-align: center;
	background-color: #000000;
	font-weight: 500;
	text-transform: uppercase;
	color:#ffffff;
}
.footer-phone a.call {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	max-width: 48px;
	height: 48px;
	background-color: #fff;
	border-radius: 100%;
	right: 0;
	margin: 0 auto;
}
.footer-phone a.call img{
	width:100%;
	height:100%;
	object-fit:cover;
	filter: brightness(0) saturate(100%) invert(0%) sepia(96%) saturate(0%) hue-rotate(180deg) brightness(104%) contrast(99%);
}
.footer-phone a:nth-child(2) {
	background-color: #7ea44d;
}
/*-- responsive start --*/
@media (min-width:1517.78px){
    .webtext.getintouch-content {
        margin-bottom: 210px;
    }
}
@media (max-width:1199.98px){
	.header-body .logo {
		max-width: 135px;
	}
	.menu ul li a {
		font-size: 15px;
		padding: 25px 0;
	}
	.menu ul li {
		margin-right: 20px;
	}
	.banner-area .ms-slide-info, .banner-area .banner-content-area {
		height: 100%;
	}
	.banner-area .ms-bullets {
		bottom: 5% !important;
	}
	.banner-content-area .banner-content .heading {
		font-size: 45px;
		line-height: 55px;
		margin-bottom: 15px;
	}
	.banner-content-area .banner-content .text {
		font-size: 15px;
		line-height: 25px;
		width: 100%;
		max-width: 80%;
		margin: 0 auto 30px;
	}
	.banner-content .banner-btn .btn {
		margin-right: 5px;
	}
	.btn {
		padding: 12px 24px;
		font-size: 15px;
	}
	.banner-area {
		height: 660px;
	}
	.p-80 {
		padding: 40px 0;
	}
	.webtext.getintouch-content {
		padding-top: 45px;
		margin-bottom: 75px;
	}
	.getintouch-area::before {
		height: 54%;
	}
	.webtext .heading {
		font-size: 32px;
		line-height: 42px;
		margin: 0 0 10px;
	}
	.webtext .webtext-content {
		font-size: 15px;
		line-height: 25px;
	}
	.webtext.about-content {
		padding-right: 30px;
		padding-top: 45px;
	}
	.webtext.about-content .webtext-content {
		margin-bottom: 12px;
	}
	.webtext.plan-content-box {
		padding-left: 15px;
	}
	.whychoose-area .webtext {
		margin-bottom: 30px;
	}
	.whychoose-main-box::after {
		top: 21%;
		right: -24%;
		max-width: 110px;
	}
	.whychoose-main-box:first-child::before {
		left: 0%;
		max-width: 60px;
	}
	.whychoose-main-box:first-child .whychoose-box::before {
		left: -8%;
	}
	.whychoose-main-box:last-child::after {
		max-width: 60px;
		right: 0%;
	}
	.whychoose-main-box:last-child .whychoose-box::after {
		right: -7%;
	}
	.whychoose-box .icon {
		margin: 0 auto 15px;
	}
	.whychoose-box .text {
		padding: 0;
	}
	.testimonial-box {
		padding: 20px;
	}
	.testimonial-box .text {
		font-size: 15px;
		line-height: 25px;
		margin-bottom: 15px;
	}
	.about-area.p-80 {
		padding: 70px 0 40px;
	}
	.footer-logo {
		max-width: 130px;
		padding: 10px;
	}
	.footer .heading {
		margin: 0 0 12px;
	}
	.copyright {
		padding: 15px 0;
	}
	.testimonial-carousel .owl-dots {
		padding-top: 15px;
	}
}
@media (max-width:991.98px){
	.header-body-area {
		padding: 15px 0;
	}
	.primary-navigation {
		display: none;
	}
	.banner-area {
		height: 511px;
	}
	.webtext .heading {
		font-size: 28px;
		line-height: 38px;
	}
	.webtext.getintouch-content {
		padding-top: 0px;
		margin-bottom: 60px;
	}
	.getintouch-area::before {
		height: 44%;
	}
	.banner-content-area .banner-content .heading {
		font-size: 40px;
		line-height: 50px;
	}
	.webtext.about-content {
		padding-right: 0;
		padding-top: 25px;
	}
	.about-img .shape {
		transform: rotate(-5deg);
	}
	.whychoose-main-box:first-child .whychoose-box::before, .whychoose-main-box::after, .whychoose-main-box:last-child .whychoose-box::after, .whychoose-main-box:first-child::before {
		display:none;
	}
	.plan-area .plan-icon-box {
		height: 150px;
	}
	.testimonial-box {
		padding: 15px;
	}
	.testimonial-box .text {
		font-size: 13px;
		line-height: 23px;
	}
	.testimonial-box .testimonial-media .testimonial-icon {
		max-width: 50px;
		height: 50px;
	}
	.testimonial-box .testimonial-media .testimonial-body {
		padding-left: 10px;
	}
	.testimonial-box .testimonial-media .testimonial-body .media-heading {
		font-size: 13px;
		line-height: 20px;
	}
	.whychoose-box .icon {
		max-width: 85px;
		height: 85px;
		padding: 22px;
	}
	.whychoose-box .icon img{
		width:100%;
		height:100%;
		object-fit:contain;
	}
	.whychoose-main-box .whychoose-box {
		margin-bottom: 20px;
	}
	.testimonial-area .webtext {
		margin-bottom: 25px;
	}
	.footer-social{
		margin-bottom:15px;
	}
	.footer {
		margin-bottom: 15px;
	}
	.header-right {
		padding-right: 60px;
	}
	.footer-phone{
		display:flex;
	}
	.back-to-top {
		bottom: 60px;
	}
	.page .entry-header, .blog_page_header {
		padding: 70px 0 !important;
		margin-bottom: 25px !important;
	}
	.inner-box-img {
		margin-bottom: 25px;
	}
	.inner-box-list {
		margin-bottom: 25px;
	}
	.inner_page_heading {
		font-size: 25px;
		line-height: 35px;
		margin-bottom: 10px;
	}
	.inner-page-content {
		font-size: 14px;
		line-height: 24px;
	}
	#rmp_menu_trigger-90 {
		padding: 0 !important;
	}
	.inner_bottom_box {
		padding: 50px;
	}
	.inner-page-listing ul li {
		font-size: 14px;
	}
	.inner_bottom_box .inner-page-content{
		margin:0;
	}
	.copyright {
		padding: 15px 0 60px;
	}
	.contact_page_info img {
		width: 25px;
	}
	.contact_page_info {
		padding-left: 35px;
		font-size:14px;
	}
	.contact_page_info strong {
		font-size: 16px;
	}
	.contact-map {
		height: 300px;
		margin-top: 25px;
	}
	.contact-form-box .form-group input, .contact-form-box .form-group textarea {
		background-color: #fff;
	}
	.ref_form_box {
		padding: 20px;
		margin-bottom: 30px;
		margin: 0 auto 25px;
		width: 100%;
		max-width: 95%;
	}
	.ref_form_box_heading {
		font-size: 24px;
	}
}
@media (max-width:767.98px){
	.header-body .logo {
		max-width: 105px;
	}
	.header-right {
		padding-right: 30px;
	}
	.copyright {
		padding: 15px 0 65px;
	}
	.banner-content-area .banner-content .heading {
		font-size: 30px;
		line-height: 40px;
	}
	.banner-content-area .banner-content .text {
		font-size: 14px;
		line-height: 24px;
		max-width: 100%;
		margin: 0 auto 20px;
	}
	.banner-area {
		height: 426px;
	}
	.getintouch-area::before{
		display:none;
	}
	.getintouch-area {
		background-color: #fff;
		min-height: auto;
	}
	.getintouch-img {
		padding: 0;
		margin-bottom: 25px;
	}
	.getintouch-form-box {
		padding-left: 0;
	}
	.webtext.getintouch-content {
		padding-left: 0;
		margin-bottom: 25px;
	}
	.form-group input, .form-group select, .form-group textarea {
		height: 52px;
		font-size: 15px;
		border-color: #3b005b;
	}
	.form-group textarea{
		height:100px;
	}
	.about-img {
		margin-bottom: 25px;
	}
	.webtext.plan-content-box {
		padding-left: 0;
		padding-top: 25px;
	}
	.plan-area .plan-icon-box {
		height: 160px;
		padding: 30px;
	}
	.inner-box-img {
		margin-bottom: 25px;
	}
}
@media (max-width:639.98px){
	.banner-content-area .banner-content .heading {
		font-size: 25px;
		line-height: 35px;
		margin-bottom: 10px;
	}
	.banner-content-area .banner-content .text {
		font-size: 12px;
		line-height: 22px;
		margin: 0 auto 12px;
	}
	.header-right {
		padding-right: 70px;
	}
	.banner-area {
		height: 320px;
	}
	.about-area.p-80 {
		padding: 20px 0 10px;
	}
	.webtext .heading {
		font-size: 24px;
		line-height: 34px;
	}
	.about-img .shape {
		transform: rotate(-2deg);
	}
	.about-img {
		margin-bottom: 0;
	}
	.copyright {
		font-size: 13px;
	}
	.inner_bottom_box {
		padding: 30px;
	}
	.inner_page_heading {
		font-size: 24px;
		line-height: 34px;
	}
}
@media (max-width:479.98px){
	.header-right{
		display:none !important;
	}
	.header-body-area {
		height: 78px;
	}
	.banner-content-area .banner-content .heading {
		font-size: 20px;
		line-height: 28px;
		margin-bottom: 5px;
	}
	.btn {
		padding: 8px 16px;
		font-size: 12px;
	}
	.banner-area .ms-bullets .ms-bullet {
		width: 10px;
		height: 10px;
		margin:2px;
	}
	.banner-area .ms-bullets {
		bottom: 3% !important;
		left: -15px;
	}
	.banner-area {
		height: 273px;
	}
	.whychoose-box .text {
		font-size: 12px;
	}
	.testimonial-carousel .owl-dots {
		padding-top: 0;
	}
	.testimonial-carousel .owl-dots .owl-dot span {
		width: 10px;
		height: 10px;
	}
	button, .button, input[type="button"], input[type="reset"], input[type="submit"] {
		padding: 8px 16px !important;
		font-size: 12px !important;
	}
	#rmp-menu-wrap-90 .rmp-menu-item-link {
		font-weight: 500 !important;
	}
	.page .entry-header, .blog_page_header {
		padding: 35px 0 !important;
	}
	.page .entry-title, .blog_page_title {
		font-size: 25px;
	}
	.breadcrumb-container {
		font-size: 14px;
	}
	.inner_bottom_box {
		padding: 20px;
	}
	.inner_page_heading {
		font-size: 20px;
		line-height: 30px;
	}
}
@media (max-width:375px){
	.banner-content-area .banner-content .heading {
		font-size: 16px;
		line-height: 22px;
	}
	.banner-content-area .banner-content .text {
		font-size: 10px;
		line-height: 18px;
	}
	.banner-area {
		height: 238px;
	}
	.webtext .heading {
		font-size: 20px;
		line-height: 30px;
	}
	.webtext .webtext-content {
		font-size: 14px;
		line-height: 24px;
	}
	#rmp_menu_trigger-90 {
		padding: 0 !important;
	}
	.footer-body-area.p-80 {
		padding: 40px 0 15px;
	}
}