@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: '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: 'PoppinsSemiBold';
    src: url('../fonts/PoppinsSemiBold.eot');
    src: url('../fonts/PoppinsSemiBold.eot') format('embedded-opentype'),
         url('../fonts/PoppinsSemiBold.woff2') format('woff2'),
         url('../fonts/PoppinsSemiBold.woff') format('woff'),
         url('../fonts/PoppinsSemiBold.ttf') format('truetype'),
         url('../fonts/PoppinsSemiBold.svg#PoppinsSemiBold') 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');
}
*{padding: 0;margin: 0;}
body{padding: 0;margin: 0;font-family: 'PoppinsRegular';font-weight: normal;background-color: #ffffff;overflow-x: hidden;}
p{font-size: 16px;font-weight: 400;}
a{transition: 0.5s;text-decoration: none;}
h1, h2, h3, h4, h5, h6{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: 12px 24px;
    font-size: 15px;
    border: 1px solid;
    transition: 0.5s;
    outline: none;
    border-radius: 10px;
}
.btn-primary{
    border-color: #009ad3;
    background-color: #009ad3;
    color: #ffffff;
}
.btn-success{
    border-color: #fba215;
    background-color: #fba215;
    color: #ffffff;
}
.btn-primary:hover, .btn-primary:focus, .btn-success:hover, .btn-success:focus{
    border-color: #000000;
    background-color: #000000;
    color: #ffffff;
    box-shadow: none;
}
@-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{
    background-color: #ffffff;
}
.header-area.fix{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    -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;
}
.logo{
    width: 100%;
    max-width: 200px;
}
.logo img{
    width: 100%;
    height: auto;
    object-fit: cover;
}
.menu ul{
    padding: 0;
    margin: 0;
}
.menu ul li{
    display: inline-block;
    margin-right: 15px;
}
.menu ul li a {
    display: inline-block;
    transition: 0.5s;
    color: #101010;
    font-size: 15px;
    font-family: 'PoppinsSemiBold';
    padding: 35px 0;
}
.menu {
    margin-right: 20px;
}
/*-- header area stop --*/
/*-- banner area start --*/
.banner{
    height: 604px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url(../images/banner1.jpg);
    position: relative;
}
.banner::after{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url(../images/banner-sape.jpg);
    mix-blend-mode: screen;
}
.banner .container{
    position: relative;
    z-index: 1;
}
.banner-content{
    width: 100%;
    max-width: 570px;
    padding: 50px 0;
}
.banner-content .heading {
    color: #ffffff;
    font-size: 50px;
    font-family: 'PoppinsBold';
    line-height: 60px;
    margin: 0 0 18px;
}
.banner-content .text{
    color: #ffffff;
    font-size: 16px;
    line-height: 26px;
    margin: 0 0 25px;
}
.banner-content .btn-box .btn{
    margin-right: 10px;
}
.banner-content .btn-box .btn:last-child{
    margin-right: 0;
}
/*-- banner area stop --*/
/*-- webtext area start --*/
.webtext {
    margin-bottom: 40px;
}
.webtext .heading{
    color: #1b1b1b;
    font-size: 36px;
    line-height: 46px;
    font-family: 'PoppinsBold';
    margin: 0 0 0;
}
.webtext .text{
    color: #1b1b1b;
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 15px;
}
/*-- webtext area stop --*/
/*-- service area start --*/
.service-box {
    overflow: hidden;
    border-radius: 15px;
    background-color: #ffffff;
    box-shadow: 0 0 40px rgb(0 0 0 / 15%);
}
.service-box .service-img{
    overflow: hidden;
    border-radius: 15px;
    height: 248px;
}
.service-box .service-img img{
    width: 100%;
    object-fit: cover;
    transition: 0.5s;
}
.service-box:hover .service-img img{
    transform: scale(1.1);
}
.service-box .service-text-box {
    text-align: center;
    padding: 15px 15px 8px;
    color: #1b1b1b;
    font-size: 20px;
    font-family: 'PoppinsSemiBold';
}
.service-area .view-all{
    padding-top: 30px;
}
/*-- service area stop --*/
/*-- about area start --*/
.about-area{
    position: relative;
    overflow: hidden;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-image: url(../images/about-bg.jpg);
}
.about-area::before{
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    max-width: 760px;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url(../images/about-shape1.png);
}
.about-area .container{
    position: relative;
    z-index: 1;
}
.about-imgbox {
    height: 482px;
    border-radius: 20px;
    overflow: hidden;
}
.about-imgbox img{
    width: 100%;
    object-fit: cover;
}
.webtext.about-content{
    padding-left: 30px;
}
.webtext.about-content .heading{
    margin-bottom: 15px;
}
/*-- about area stop --*/
/*-- whychooseus area start --*/
.whychooseus-area .webtext{
    margin-bottom: 45px;
}
.whychooseus-box{
    text-align: center;
}
.whychooseus-box .heading {
    font-size: 18px;
    font-family: 'PoppinsBold';
    color: #000000;
    line-height: 28px;
    margin: 0 0 5px;
}
.whychooseus-box .text{
    color: #333333;
    font-size: 14px;
    line-height: 24px;
    margin: 0 0 5px;
}
.whychooseus-box .link{
    font-size: 14px;
    line-height: 24px;
    font-family: 'PoppinsBold';
    text-decoration: underline;
    color: #28a1d8;
    text-transform: capitalize;
    transition: 0.5s;
}
.whychooseus-box .link:hover{
    color: #000000;
}
.whychooseus-box .whychooseus-icon {
    width: 100%;
    max-width: 114px;
    height: 114px;
    border: 1px solid #28a1d8;
    box-shadow: 1px 0 57px rgb(40 161 216 / 70%) inset;
    margin: 0 auto 20px;
    border-radius: 100%;
    padding: 25px;
    transition: 0.5s;
}
.whychooseus-box .whychooseus-icon img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.whychooseus-box:hover .whychooseus-icon{
    transform: rotateY(360deg);
}
.whychooseus-mainbox:nth-child(2) .whychooseus-box .whychooseus-icon, .whychooseus-mainbox:nth-child(5) .whychooseus-box .whychooseus-icon{
    border-color: #fa9b61;
    box-shadow: 1px 0 57px rgb(250 155 97 / 70%) inset;
}
.whychooseus-mainbox:nth-child(3) .whychooseus-box .whychooseus-icon{
    border-color: #4ebd9d;
    box-shadow: 1px 0 57px rgb(78 189 157 / 70%) inset;
}
/*-- whychooseus area stop --*/
/*-- testimonial area start --*/
.testimonial-box {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url(../images/testimonial-bg.jpg);
    overflow: hidden;
    position: relative;
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
    padding: 35px 35px 166px;
}
.testimonial-box::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(250, 156, 97, 0.9);
}
.testimonial-box .heading {
    color: #1b1b1b;
    font-size: 36px;
    line-height: 46px;
    font-family: 'PoppinsBold';
    position: relative;
    margin-bottom: 25px;
}
.getintouch-box {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url(../images/getintouch-bg.jpg);
    overflow: hidden;
    position: relative;
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
    padding: 35px 35px 35px;
}
.getintouch-box::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(40, 160, 216, 0.82);
}
.getintouch-box .heading {
    color: #ffffff;
    font-size: 36px;
    line-height: 46px;
    font-family: 'PoppinsBold';
    position: relative;
    margin-bottom: 10px;
}
.getintouch-box .text {
    color: #ffffff;
    position: relative;
    z-index: 1;
    font-size: 15px;
    line-height: 25px;
    margin: 0 0 20px;
}
.testimonial-area {
    position: relative;
    margin-bottom: -170px;
    z-index: 9;
}
.getintouch-form {
    position: relative;
    z-index: 1;
}
.testimonial-box .sp-testimonial-free-section{
    margin: 0 !important;
    position: relative;
}
.testimonial-box .sp-testimonial-free {
    position: relative;
    padding-top: 110px !important;
    padding-bottom: 60px !important;
}
.testimonial-box .sp-testimonial-free .sp-testimonial-title {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
}
.testimonial-box .sp-testimonial-free .sp-testimonial-title h3{
    color: #ffffff !important;
    font-size: 16px;
    font-style: italic;
    text-align: left !important;
}
.testimonial-box .sp-testimonial-content p {
    padding: 0 !important;
    text-align: left !important;
    font-size: 16px !important;
    color: #ffffff;
}
.testimonial-box .sp-testimonial-free .sp-testimonial-client-image{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 57px;
    height: 57px;
}
.testimonial-box .sp-testimonial-free .sp-testimonial-client-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.testimonial-box .sp-testimonial-free .sp-testimonial-client-rating {
    position: absolute;
    top: 75px;
    left: 0;
}
.testimonial-box .sp-testimonial-free .sp-testimonial-client-rating i.fa{
    font-size: 16px !important;
}
.testimonial-box .sp-testimonial-free-section .testimonial-nav-arrow {
    top: 105%;
}
.testimonial-box .sp-testimonial-free-section .testimonial-nav-arrow.swiper-button-prev {
    left: auto;
    right: 40px;
}
.testimonial-box #sp-testimonial-free-wrapper-38 .sp-testimonial-free-section .testimonial-nav-arrow {
    border: 1px solid #ffffff;
    color: #ffffff;
    border-radius: 8px;
}
/*-- testimonial area stop --*/
/*-- footer area start --*/
.footer-area{
    position: relative;
    background-color: #022b3d;
    overflow: hidden;
}
.footer-area::after{
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 241px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url(../images/footer-sape.png);
}
.footer-logo {
    width: 100%;
    max-width: 220px;
    margin-bottom: 35px;
}
.footer-logo img{
    width: 100%;
    object-fit: cover;
}
.footer-social ul{
    padding: 0;
    margin: 0;
    list-style: none;
}
.footer-social ul li{
    display: inline-block;
}
.footer-social ul li a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 31px;
    height: 31px;
    border-radius: 100%;
    background-color: #28a1d8;
    transition: 0.5s;
    padding: 8px;
}
.footer-social ul li a img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(99%) sepia(1%) saturate(2%) hue-rotate(338deg) brightness(110%) contrast(100%);
}
.footer-social ul li a:hover{
    background-color: #ffffff;
}
.footer-social ul li a:hover img{
    filter: brightness(0) saturate(100%) invert(71%) sepia(34%) saturate(5914%) hue-rotate(167deg) brightness(89%) contrast(90%);
}
.footer .heading{
    color: #03bfec;
    font-size: 20px;
    font-family: 'PoppinsBold';
    margin: 0 0 15px;
}
.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%;
    background-color: #00a0d5;
    font-size: 14px;
    padding: 10px;
}
.footer .footer-contact-media .media-icon img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(93deg) 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: 14px;
    font-weight: 400;
    transition: 0.5s;
}
.footer .footer-contact-media .media-body a:hover {
    color: #00a0d5;
}
.footer ul{
    padding: 0;
    margin: 0;
    list-style: none;
}
.footer ul li {
    position: relative;
    padding: 0;
    padding-left: 14px;
    margin: 0 0 5px;
}
.footer ul li:last-child{
    margin: 0;
}
.footer ul li a{
    color: #ffffff;
    font-size: 14px;
    transition: 0.5s;
}
.footer ul li a:hover{
    color: #00a0d5;
}
.footer ul li::before {
    content: '';
    position: absolute;
    top: 9px;
    left: 0;
    width: 100%;
    max-width: 7px;
    height: 8px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(../images/footer-list-arrow.png);
}
.footer-body {
    padding: 50px 0 50px;
    position: relative;
    z-index: 1;
}
.page-id-7 .footer-body{
    padding-top: 250px;
}
.copyright {
    color: #ffffff;
    font-size: 16px;
    line-height: 26px;
    border-top: 1px solid #ffffff;
    padding: 15px 0;
    position: relative;
    z-index: 1;
}
.copyright a{
    color: #ffffff;
}
.copyright a:hover{
    color: #00a0d5;
}
.back-to-top {
    position: fixed;
    bottom: 15px;
    right: 15px;
    padding: 0.2em;
    background: #00a0d5;
    z-index: 99;
    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: #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: #0099d0;
	position: relative;
	font-size: 15px;
}
.breadcrumb-container a {
	color: #0099d0;
}
.breadcrumb-container a:hover{
    color: #000000;
}
.page {
	margin-top: 0 !important;
}
.form-group{
    margin-bottom: 15px;
}
.form-group p{
    margin: 0;
}
.form-group input, .form-group textarea {
    height: 60px;
    background-color: transparent;
    width: 100%;
    border: 1px solid #ffffff;
    font-size: 15px;
    color: #ffffff;
    border-radius: 10px;
    padding: 10px 20px;
}
.form-group input::placeholder, .form-group textarea::placeholder{
    font-size: 15px;
    color: #ffffff;
}
.form-group textarea{
    height: 110px;
    resize: none;
}
.inner-list-area{
    margin-bottom: 50px;
}
.inner-heading {
    font-size: 28px;
    line-height: 38px;
    font-family: 'PoppinsBold';
    margin: 0 0 20px;
    color: #000000;
}
.inner-heading strong{
    color: #00a0d5;
}
.inner-content {
    color: #000000;
    font-size: 16px;
    line-height: 25px;
    margin-bottom: 20px;
}
.inner-content:last-child {
    margin-bottom: 0;
}
.inner-content ul{
    padding: 0;
    margin: 0;
    list-style-type: none;
}
.inner-content ul li {
    padding: 0 0 0 25px;
    position: relative;
    color: #000000;
    font-size: 16px;
    line-height: 25px;
    margin: 0 0 10px;
}
.inner-content ul li:last-child{
    margin: 0;
}
.inner-content ul li::before{
    content: '';
    position: absolute;
    top: 5px;
    left: 0;
    width: 100%;
    max-width: 15px;
    height: 15px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url(../images/list-check.png);
}
.support-box {
    text-align: center;
    padding: 50px 30px;
    background-color: #e9faff;
}
.support-box .inner-heading {
    margin: 0 0 12px;
}
.service-box .text-box {
    font-size: 15px;
    line-height: 25px;
    color: #000000;
    padding: 0 20px 20px;
    text-align: center;
}
.contact_page_info {
	position:relative;
	padding-left:40px;
	color:#666;
	margin-top:25px;
}
.contact_page_info a, .contact_page_info {
	color:#000000;
}
.contact_page_info strong {
	color:#222;
	font-weight: 600;
	font-size:18px;
}
.contact_page_info img {
	position:absolute;
	top:7px;
	left:0;
	width:30px;
    filter: brightness(0) saturate(100%) invert(41%) sepia(81%) saturate(752%) hue-rotate(157deg) brightness(98%) contrast(104%);
}
.inner-contact-map{
    height: 350px;
    margin-top: 50px;
}
.inner-contact-map iframe{
    width: 100%;
    height: 100%;
}
.inner-contact-form-box .form-group {
    margin-bottom: 0;
}
.inner-contact-form-box .form-group input, .inner-contact-form-box .form-group textarea{
    border-color: #000000;
    color: #000000;
}
.inner-contact-form-box .form-group input::placeholder, .inner-contact-form-box .form-group textarea::placeholder{
    color: #000000;
}
.thankyou_text {
    font-size: 16px;
    color: #000000;
    margin: 0 0 25px;
}

.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;
    text-align: left;
}
.ref_form_box_heading {
	color: #111;
	font-weight: bold;
	font-size: 26px;
	line-height: 30px;
    text-align: left;
}
.ref_form_box_heading strong {
	color: #0099d0;
	font-weight: bold;
}
.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: #0099d0 !important;
    font-size: 16px;
    margin-top: 20px;
    border-radius: 30px;
    padding: 13px 30px 12px;
    border: 1px solid #0099d0;
    color: #ffffff;
}
.ref_form_box .contact_btn input:hover{
    border-color: #000000;
    background: #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: #0099d0;
	border-color: #0099d0;
}
.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-service-area p{
    margin-bottom: 0;
}
.inner-review-box {
    background-color: #ffffff;
    padding: 30px;
    box-shadow: 0 0 15px rgb(0 0 0 / 11%);
    border-radius: 15px;
}
.inner-review-box .text-box {
    font-size: 15px;
    color: #000000;
    line-height: 24px;
}
.inner-review-box .text-box strong {
    display: block;
    padding-top: 12px;
}
.inner-review-box .inner-review-img {
    width: 100%;
    max-width: 60px;
    height: 60px;
    overflow: hidden;
    border-radius: 100%;
    margin-bottom: 20px;
}
.inner-review-box .inner-review-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.inner-review-box .inner-review-star {
    width: 100%;
    max-width: 75px;
    margin: 0 0 12px;
}
.inner-review-box .inner-review-star img{
    width: 100%;
    object-fit: cover;
}
.error_container {
    display: flex;
    min-height: 100vh;
    align-items: center;
    text-align: center;
}
.mobile-contact {
	display: none;
	justify-content: space-between;
	position: fixed;
	width: 100%;
	bottom: 0;
	left: 0;
	z-index: 999;
}
.mobile-contact .link {
	width: 100%;
	max-width: 50%;
	text-align: center;
	background-color: #00a0d5;
	color: #ffffff;
	text-transform: uppercase;
	padding: 10px;
}
.mobile-contact .phone {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	margin: 0 auto;
	width: 44px;
	height: 44px;
	background-color: #ffffff;
	padding: 8px;
	border-radius: 100%;
}
.mobile-contact .phone img{
	width:100%;
	height:100%;
	object-fit:content;
}
.mobile-contact .link:nth-child(2){
	background-color:#43b098;
}
.acknotxt img {
  display: block;
  margin:40px auto;
}
.acknotxt {
  color: #fff;
  font-size: 14px;
  line-height: 1.6;
}
.event-contain {
    padding: 50px 25px;
    text-align: center;
    background-color: #ffffff;
    box-shadow: 0 0 10px rgb(185 185 185 / 52%);
    font-size: 15px;
    line-height: 26px;
    border-radius: 20px;
	margin-bottom: 35px;
}
.event-contain a{
	color:#009ad3;
}
.event-gallery-area .inner-heading{
	text-align:center;
}
#rl-gallery-container-1 .rl-basicgrid-gallery .rl-gallery-item {
    height: 200px;
}
#rl-gallery-container-1 .rl-gallery .rl-gallery-link {
    width: 100%;
    height: 100%;
    display: flex;
}
.rl-basicgrid-gallery .rl-gallery-item img {
    height: auto;
    width: 100%;
    object-fit: cover;
}
.new-event-gallery .rl-basicgrid-gallery .rl-gallery-item img {
    height: 260px;
}
/*-- responsive css start --*/
@media (max-width:991.98px){
	.logo {
		max-width: 160px;
	}
	.header-area {
		padding: 10px 0;
	}
	.primary-navigation{
		display:none;
	}
	.banner {
		height: 405px;
	}
	.banner-content .heading {
		font-size: 35px;
		line-height: 45px;
		margin: 0 0 12px;
	}
	.banner-content .text {
		font-size: 15px;
		line-height: 25px;
		margin: 0 0 15px;
	}
	.btn {
		padding: 10px 20px;
		font-size: 15px;
	}
	.p-80 {
		padding: 40px 0;
	}
	.webtext .heading {
		font-size: 30px;
		line-height: 40px;
	}
	.webtext {
		margin-bottom: 30px;
	}
	.about-area::before{
		display:none;
	}
	.webtext.about-content {
		padding-left: 0;
	}
	.webtext .text {
		font-size: 15px;
		line-height: 25px;
		margin-bottom: 12px;
	}
	.whychooseus-area .webtext {
		margin-bottom: 25px;
	}
	.whychooseus-box .whychooseus-icon {
		max-width: 95px;
		height: 95px;
		margin: 0 auto 12px;
		padding: 22px;
	}
	.service-box .text-box {
		font-size: 14px;
		line-height: 24px;
	}
	.whychooseus-box .heading {
		font-size: 16px;
		line-height: 24px;
	}
	.whychooseus-box .text {
		font-size: 12px;
		line-height: 20px;
	}
	.testimonial-box {
		border-radius: 35px;
		padding: 30px;
		margin-bottom: 25px;
	}
	.testimonial-box .heading {
		font-size: 28px;
		line-height: 38px;
		margin-bottom: 15px;
	}
	.getintouch-box {
		padding: 30px;
		border-radius: 30px;
	}
	.page-id-7 .footer-body {
		padding-top: 210px;
	}
	.footer-logo {
		max-width: 200px;
		margin-bottom: 25px;
	}
	.footer-social {
		margin-bottom: 20px;
	}
	.footer {
		margin-bottom: 20px;
	}
	.footer-body {
		padding: 50px 0 20px;
	}
	.copyright {
		font-size: 15px;
		line-height: 25px;
		padding: 15px 0 55px;
	}
	.mobile-contact {
		display: flex;
	}
	.back-to-top {
		bottom: 60px;
	}
	.header-right {
		padding-right: 55px;
	}
	.page .entry-header, .blog_page_header {
		padding: 70px 0 !important;
	}
	.inner-img-box {
		margin-bottom: 25px;
	}
	.inner-heading {
		font-size: 25px;
		line-height: 35px;
		margin: 0 0 15px;
	}
	.inner-content {
		font-size: 15px;
		margin-bottom: 15px;
	}
	.inner-content ul li {
		font-size: 15px;
		margin: 0 0 8px;
	}
	.support-box {
		padding: 30px;
	}
	.support-box .inner-heading {
		margin: 0 0 10px;
	}
	.service-box .service-img {
		height: 225px;
	}
	.inner-review-box {
		margin: 0 0 20px;
	}
	.inner-heading {
		font-size: 24px;
		line-height: 34px;
		margin: 0 0 12px;
	}
	.contact_page_info {
		margin-top: 0;
		margin-bottom: 15px;
		font-size: 15px;
	}
	.contact_page_info img {
		width: 25px;
	}
	.contact_page_info strong {
		font-size: 16px;
	}
	.inner-contact-map {
		height: 300px;
		margin-top: 20px;
	}
	.ref_form_box {
		padding: 25px;
		margin-bottom: 20px;
	}
	.ref_form_box_heading {
		font-size: 24px;
		line-height: 28px;
	}
	.ref_form_box_label {
		font-size: 14px;
	}
}
@media (max-width:767.98px){
	.header-right {
		padding-right: 25px;
	}
	.banner {
		height: 340px;
	}
	.banner-content {
		max-width: 100%;
		padding: 30px 0;
	}
	.banner-content .heading {
		font-size: 32px;
		line-height: 42px;
	}
	.webtext .heading {
		font-size: 25px;
		line-height: 35px;
	}
	.service-box .service-img {
		height: auto;
	}
	.about-imgbox {
		margin: 0 0 25px;
	}
	.whychooseus-box .whychooseus-icon {
		max-width: 90px;
		height: 90px;
		padding: 20px;
	}
	.whychooseus-box {
		margin: 0 0 15px;
	}
	.service-box {
		margin-bottom: 25px;
	}
	.testimonial-box .heading, .getintouch-box .heading {
		font-size: 25px;
		line-height: 35px;
	}
	.getintouch-box .text {
		font-size: 14px;
		line-height: 24px;
		margin: 0 0 15px;
	}
	.footer-logo {
		max-width: 190px;
		margin-bottom: 20px;
	}
	.inner-contact-map {
		height: 280px;
		margin-top: 5px;
	}
	.ref_form_box_heading {
		font-size: 22px;
		line-height: 25px;
	}
	.wpcf7-list-item-label {
		font-size: 14px;
	}
	.ref_form_box .contact_btn input {
		font-size: 15px;
		margin-top: 15px;
		padding: 10px 25px;
	}
}
@media (max-width:639.98px){
	.logo {
		max-width: 130px;
	}
	#rmp_menu_trigger-230 {
		top: 13px !important;
		width: 40px !important;
		height: 40px !important;
	}
	.header-right {
		padding-right: 60px;
	}
	.banner {
		height: 285px;
	}
	.banner-content .heading {
		font-size: 28px;
		line-height: 38px;
		margin: 0 0 5px;
	}
	.banner-content .text {
		font-size: 14px;
		line-height: 24px;
		margin: 0 0 12px;
	}
	.btn {
		padding: 8px 16px;
		font-size: 14px;
	}
	.webtext {
		margin-bottom: 25px;
	}
	.service-area .view-all {
		padding-top: 0;
	}
	.webtext.about-content .heading {
		margin-bottom: 12px;
	}
	.getintouch-form p{
		margin:0;
	}
	.copyright {
		font-size: 14px;
		line-height: 24px;
	}
	.footer-logo {
		max-width: 175px;
	}
	.back-to-top {
		max-width: 50px;
		height: 50px;
	}
	.page .entry-header, .blog_page_header {
		margin-bottom: 20px !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-heading {
		font-size: 24px;
		line-height: 34px;
		margin: 0 0 12px;
	}
	.inner-content {
		font-size: 14px;
		margin-bottom: 12px;
	}
	.inner-list-area {
		margin-bottom: 25px;
	}
	.inner-content ul li {
		font-size: 14px;
		margin:0 0 5px;
	}
	.inner-img-box {
		margin-bottom: 20px;
	}
	.inner-heading {
		font-size: 22px;
		line-height: 32px;
		margin: 0 0 10px;
	}
	.support-box {
		padding: 20px;
	}
	.inner-review-box .inner-review-img {
		margin-bottom: 10px;
	}
	.inner-review-box .text-box {
		font-size: 14px;
	}
	.ref_form_box {
		padding: 20px;
	}
	.testimonial-box .sp-testimonial-content p {
		font-size: 14px !important;
		margin-bottom: 0 !important;
		line-height: 24px !important;
	}
	.testimonial-box .sp-testimonial-client-testimonial{
		margin-bottom:0 !important;
	}
}
@media (max-width:479.98px){
	.logo {
		max-width: 125px;
	}
	.header-right {
		padding-right: 55px;
	}
	.banner {
		height: 280px;
	}
	.banner-content .heading {
		font-size: 25px;
		line-height: 35px;
	}
	.banner-content .text {
		line-height: 22px;
	}
	.banner-content .btn-box .btn {
		margin-right: 5px;
	}
	.p-80 {
		padding: 30px 0;
	}
	.footer-logo {
		max-width: 160px;
	}
	.footer-body{
		padding-bottom:10px;
	}
	.about-imgbox {
		height: auto;
		margin-bottom:15px;
	}
	.webtext.about-content .heading {
		margin-bottom: 10px;
	}
	.inner-heading {
		font-size: 20px;
		line-height: 30px;
	}
	.service-box.service-box-inner {
		margin-bottom: 0;
	}
	button, .button, input[type="button"], input[type="reset"], input[type="submit"] {
		padding: 10px 20px;
		font-size: 14px;
	}
}
@media (max-width:375px){
	.banner-content .text {
		font-size: 12px;
		line-height: 22px;
	}
	.banner-content .heading {
		font-size: 22px;
		line-height: 32px;
	}
	.webtext .heading {
		font-size: 24px;
		line-height: 34px;
	}
	.service-box .service-text-box {
		font-size: 18px;
		padding-bottom:5px;
	}
	.service-box .text-box {
		font-size: 13px;
		line-height: 22px;
	}
	.testimonial-box {
		border-radius: 20px;
		padding: 25px;
		margin-bottom: 20px;
	}
	.getintouch-box {
		padding: 25px;
		border-radius: 20px;
	}
	.getintouch-box .text {
		font-size: 13px;
		line-height: 22px;
	}
}
/*-- responsive css stop --*/