@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-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: 'Playfair Display';
    src: url('../fonts/PlayfairDisplay-Bold.woff2') format('woff2'),
        url('../fonts/PlayfairDisplay-Bold.woff') format('woff');
    font-weight: bold;
    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: 60px 0;}
input[type=number]::-webkit-inner-spin-button, 
input[type=number]::-webkit-outer-spin-button { 
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
.form-group{
    margin-bottom: 20px;
}
.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;
}
.container{
    position: relative;
    z-index: 91;
}
.btn {
    padding: 12px 24px;
    font-size: 16px;
    font-family: 'Poppins';
    font-weight: 500;
    border: 1px solid;
    transition: 0.5s;
    outline: none;
    border-radius: 8px;
    text-transform: uppercase;
}
.btn-primary {
    border-color: #ef0b62;
    background-color: #ef0b62;
    color: #ffffff;
}
.btn-primary:hover{
    border-color: #00adf0;
    background-color: #00adf0;
    color: #ffffff;
}
.btn-white {
    border-color: #ffffff;
    background-color: #ffffff;
    color: #000000;
}
.btn-white:hover{
    border-color: #00adf0;
    background-color: #00adf0;
    color: #000000;
}
.btn-blue{
    border-color: #00adf0;
    background-color: #00adf0;
    color: #000000;
}
.btn-blue:hover{
    border-color: #ef0b62;
    background-color: #ef0b62;
    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 {
    background-color: #ffffff;
    position: relative;
    z-index: 991;
}
.header-body-area .logo {
    width: 100%;
    max-width: 130px;
    border-right: 1px solid #e1e1e1;
}
.header-right {
    width: 100%;
}
.header-right .menu {
    margin-right: 20px;
}
.menu ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
    display: inline-flex;
}
.menu ul li{
    display: inline-block;
}
.menu ul li a {
    display: inline-block;
    text-transform: uppercase;
    color: #282828;
    font-size: 16px;
    font-weight: 600;
    padding: 35px 14px;
}
.menu ul li a:hover, .menu ul li.active a{
    background-color: #d2f2ff;
}
.header-contact-area {
    padding: 10px 0 10px 100px;
    position: relative;
    background-color: #00adf0;
}
.header-contact-area::after{
    content: '';
    position: absolute;
    top: 0;
    right: -6000px;
    width: 6000px;
    height: 100%;
    background-color: #00adf0;
}
.header-contact-area ul li {
    display: inline-flex;
    align-items: center;
    margin-right: 15px;
}
.header-contact-area ul li:last-child {
    margin-right: 0;
}
.header-contact-area ul li img{
    margin-right: 8px;
}
.header-contact-area ul li a{
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
}
.header-area.fix{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    -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 .menu ul li a{
    padding: 50px 14px;
}
.header-area.fix .header-body-area .logo {
    max-width: 115px;
}
/*-- header area stop --*/
/*-- banner area start --*/
.banner-area{
    background-color: #ef0d63;
    position: relative;
    padding: 40px 0;
    overflow: hidden;
}
.banner-area .shape1 {
    position: absolute;
    top: -90px;
    right: -90px;
    width: 100%;
    max-width: 363px;
    height: 321px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(../images/banner-shape2.png);
}
.banner-area::before{
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    max-width: 111px;
    height: 168px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(../images/banner-shape3.png);
}
.banner-area::after{
    content: '';
    position: absolute;
    bottom: 20px;
    left: 20px;
    width: 100%;
    max-width: 69px;
    height: 143px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(../images/banner-shape4.png);
}
.banner-main-img-box{
    position: relative;
}
.banner-main-img-box img {
  border-radius: 0 100px 0 100px;
}
/*.banner-main-img-box::before {
    content: '';
    position: absolute;
    top: 35px;
    left: 40px;
    right: 0;
    width: 100%;
    max-width: 95px;
    height: 84px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url(../images/banner-shape1.png);
    margin: 0 auto;
}
.banner-img-box{
    overflow: hidden;
    height: 556px;
    border-radius: 160px;
}
.banner-img-box img{
    width: 100%;
    object-fit: cover;
}
.banner-main-img-box .banner-img-main-box:last-child{
    padding-top: 50px;
}*/
.banner-contain-box {
    position: relative;
    padding-left: 20px;
}
.banner-contain-box::after{
    content: '';
    position: absolute;
    top: 32%;
    right: -70px;
    width: 100%;
    max-width: 64px;
    height: 58px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url(../images/banner-shape5.png);
}
.banner-contain-box .heading {
    font-size: 44px;
    font-weight: 400;
    color: #ffffff;
    line-height: 54px;
    margin: 0 0 15px;
}
.banner-contain-box .heading strong{
    font-weight: 700;
}
.banner-contain-box .contain-box {
    color: #ffffff;
    font-size: 15px;
    font-weight: 400;
    line-height: 25px;
    margin-bottom: 25px;
}
.banner-contain-box .btn{
    margin-right: 10px;
}
.banner-contain-box .btn:last-child{
    margin-right: 0;
}
.banner-contain-box .btn-blue:hover{
    background-color: #ffffff;
    border-color: #ffffff;
    color: #000000;
}
/*-- banner area stop --*/
/*-- webtext start --*/
.webtext {
    margin-bottom: 30px;
}
.webtext .heading{
    text-transform: uppercase;
    color: #000000;
    font-size: 36px;
    font-weight: 700;
    line-height: 46px;
}
/*-- webtext stop --*/
/*-- service area start --*/
.service-box {
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 0 20px rgb(0 0 0 / 10%);
    background-color: #ffffff;
	min-height: 100%;
}
.service-box .img-box{
    height: 211px;
    overflow: hidden;
}
.service-area .webtext .heading{
	margin-bottom:15px;
}
.service-area .webtext .content-text{
	width:100%;
	max-width: 65%;
	margin:0 auto;
}
.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 .contain-box {
    padding: 30px 27px;
	min-height: 100%;
}
.service-box .contain-box .heading{
    color: #1b1b1b;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 10px;
}
.service-box .contain-box .conten-text{
    color: #292828;
    font-size: 15px;
    font-weight: 400;
    line-height: 25px;
    margin: 0 0 20px;
}
.service-box .contain-box .btn-blue{
    color: #ffffff;
}
.service-box .contain-box .btn {
    padding: 10px 22px;
}
/*-- service area stop --*/
/*-- whoweare area start --*/
.whoweare-area {
    background-color: #ffeff5;
    position: relative;
    overflow: hidden;
}
.whoweare-area::before {
    content: '';
    position: absolute;
    top: -90px;
    right: -90px;
    width: 100%;
    max-width: 363px;
    height: 321px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(../images/banner-shape2.png);
    filter: brightness(0) saturate(100%) invert(16%) sepia(100%) saturate(5356%) hue-rotate(330deg) brightness(95%) contrast(97%);
}
.whoweare-area::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -8px;
    width: 100%;
    max-width: 127px;
    height: 172px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(../images/who-we-are-shape1.png);
}
.whoweare-area .whoweare-imgbox {
    height: 530px;
    border-radius: 100px;
    border-top-left-radius: 10px;
    overflow: hidden;
}
.whoweare-area .whoweare-imgbox img{
    width: 100%;
    object-fit: cover;
}
.whoweare-content-box .tagline {
    color: #000000;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 28px;
    margin: 0 0 18px;
}
.whoweare-content-box .heading {
    color: #000000;
    font-size: 40px;
    font-weight: 700;
    line-height: 50px;
    padding-bottom: 20px;
    margin-bottom: 20px;
    position: relative;
}
.whoweare-content-box .heading::after{
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    max-width: 60px;
    height: 4px;
    background-color: #000000;
    border-radius: 30px;
}
.whoweare-content-box .content-text{
    color: #000000;
    font-size: 16px;
    line-height: 26px;
    margin: 0 0 15px;
}
.whoweare-content-box {
    padding-left: 30px;
    padding-top: 35px;
}
/*-- whoweare area stop --*/
/*-- whychooseus area start --*/
.whychooseus-area{
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url(../images/whychoseus-bg.jpg) !important;
}
.whychooseus-area .webtext .heading{
    color: #ffffff;
	margin-bottom:10px;
}
.whychooseus-area .webtext .content-text{
	color: #ffffff;
}
.whychooseus-box {
    border-bottom: 1px solid #5cb2d4;
    padding-top: 30px;
    padding-bottom: 30px;
    padding-right: 40px;
    position: relative;
}
.whychooseus-box .content-text{
    color: #ffffff;
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
}
.whychooseus-box .whychooseus-media{
    margin-bottom: 10px;
}
.whychooseus-box .whychooseus-media .media-icon img{
    object-fit: contain;
}
.whychooseus-box .whychooseus-media .media-body{
    padding-left: 15px;
    color: #ffffff;
    font-size: 19px;
    font-weight: 600;
}
.whychooseus-list-area:last-child .whychooseus-box{
    border-bottom: 0;
}
.whychooseus-box::after {
    content: '';
    position: absolute;
    top: 18px;
    right: 20px;
    width: 1px;
    height: 80%;
    background-color: #5cb2d4;
}
.whychooseus-list-area .whychooseus-main-list-box:last-child .whychooseus-box::after{
    display: none;
}
/*-- whychooseus area stop --*/
/*-- footer area start --*/
.footer-area{
    background-color: #03304d;
}
.footer-body-area{
    padding: 40px 0;
}
.footer .heading {
    font-size: 20px;
    font-weight: 600;
    color: #00adf0;
    margin-bottom: 20px;
    text-transform: uppercase;
}
.footer ul li {
    margin-bottom: 8px;
}
.footer ul li:last-child{
    margin-bottom: 0;
}
.footer ul li, .footer ul li a {
    color: #ffffff;
    font-size: 16px;
    font-weight: 400;
    transition: 0.5s;
}
.footer ul li a:hover{
    color: #00adf0;
}
.footer .footer-contact-media {
    margin-bottom: 10px;
}
.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%;
    font-size: 14px;
}
.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: 16px;
    font-weight: 400;
    transition: 0.5s;
}
.footer .footer-contact-media .media-body a:hover{
    color: #69c9c8;
}
.footer-area .footer-bottom {
    padding: 15px 0;
    border-top: 1px solid #153f5a;
	display: flex;
	align-content: center;
	justify-content: space-between;
	flex-direction: row-reverse;
	flex-wrap: wrap;
}
.footer-area .footer-bottom .copyright-text{
    color: #ffffff;
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
}
.footer-area .footer-bottom .copyright-text a{
    color: #ffffff;
}
.footer-area .footer-bottom .copyright-text a:hover{
    color: #00adf0;
}
.footer-body-box{
    position: relative;
}
.footer-body-box::after{
    content: '';
    position: absolute;
    top: 0;
    right: 50px;
    width: 1px;
    height: 100%;
    background-color: #153f5a;
}
.footer-body-box:last-child::after{
    display: none;
}
.footer-social ul li{
    display: inline-block;
    margin-right: 5px;
}
.footer-social ul li:last-child{
    margin-right: 0;
}
.footer-social ul li img{
    object-fit: contain;
    transition: 0.5s;
}
.footer-social ul li a:hover img{
    transform: translate(0px, -5px);
}
.back-to-top {
    position: fixed;
    bottom: 15px;
    right: 15px;
    padding: 0.2em;
    background: #03304d;
    z-index: 1;
    width: 100%;
    max-width: 45px;
    height: 45px;
    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: #00adf0;
}
.footer-area img.support-ndis{
    position: absolute;
    top: -42px;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 100%;
    max-width: 84px;
    height: 84px;
    object-fit: contain;
}
/*-- footer area stop --*/
.site-content, .site-main .widecolumn {
    margin-left: 0px !important;
}
.blog_page_header{
	 background: url("../images/inner-banner.jpg") #eee no-repeat center !important; 
    background-size: cover !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: 150px 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: 80px 0 !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: #00adf0;
	position: relative;
	font-size: 15px;
}
.breadcrumb-container a {
	color: #00adf0;
}
.page {
	margin-top: 0 !important;
}
.error_container {
    display: flex;
    min-height: 50vh;
    align-items: center;
    text-align: center;
}
.error_container img {
    margin-bottom: 20px;
}
.error_container .thankyou_text, .thankyou_text{
    margin-bottom: 20px;
}

.testimonial-area .sp-testimonial-free-section .sp-testimonial-title h3 {
    text-align: left !important;
    padding-left: 60px !important;
	width: 100% !important;
	line-height: 1.1 !important;
}
.testimonial-area .sp-testimonial-free-section .sp-testimonial-item {
    text-align: left;
    background-color: #ffffff !important;
	box-shadow: rgb(60 64 67 / 30%) 0px 1px 2px 0px !important;
    padding: 20px 20px;
    position: relative;
    border-radius: 20px;
	min-height: 325px !important;
	margin: 5px 0;
}
.testimonial-area .sp-testimonial-free-section .sp-testimonial-client-testimonial p {
    padding: 0 !important;
    text-align: left !important;
    font-size: 14px !important;
    line-height: 22px !important;
    margin: 0 !important;
}
.testimonial-area #sp-testimonial-free-wrapper-48 .sp-testimonial-free-section .sp-testimonial-client-image {
    position: absolute;
    top: 16%;
    left: 7%;
}
.testimonial-area .sp-testimonial-free-section .sp-testimonial-client-testimonial, .testimonial-area .sp-testimonial-free-section .sp-testimonial-client-testimonial p {
    padding-top: 30px;
}
.testimonial-area #sp-testimonial-free-wrapper-48 .sp-testimonial-free-section .sp-testimonial-client-rating {
    position: absolute;
    top: 27%;
    left: 24%;
}
.testimonial-area #sp-testimonial-free-wrapper-48 .sp-testimonial-free-section .sp-testimonial-client-testimonial{
    margin-bottom: 0;
}
.testimonial-area #sp-testimonial-free-wrapper-48 .sp-testimonial-free-section .testimonial-nav-arrow {
    border: none !important;
}
.testimonial-area .sp-testimonial-free-section .testimonial-nav-arrow {
    font-size: 40px !important;
}
.testimonial-area #sp-testimonial-free-wrapper-48 .sp-testimonial-free-section .testimonial-nav-arrow:hover {
    background: transparent !important;
    border-color: transparent !important;
    color: #00adf0 !important;
}
.testimonial-area #sp-testimonial-free-wrapper-48 .sp-testimonial-free-section .testimonial-nav-arrow {
    color: #000000 !important;
}
.testimonial-area .webtext{
    margin-bottom: 10px;
}
.testimonial-area .sp-testimonial-free-section .testimonial-nav-arrow {
    top: 70% !important;
}
.testimonial-area.p-80{
    padding-bottom: 100px;
}
.testimonial-area{
    position: relative;
    overflow: hidden;
}
.testimonial-area::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 116px;
    height: 170px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(../images/testimonial-shape1.png);
}
.testimonial-area::after{
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    max-width: 111px;
    height: 168px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(../images/banner-shape3.png);
}
.inner_page_heading {
	color: #111;
	font-weight: bold;
	font-size: 30px;
	line-height: 40px;
	position: relative;
}
.inner_page_heading strong {
	color: #00adf0;
}
.inner_page_text {
    color: #666;
    margin-top: 20px;
	font-size: 16px;
	line-height: 26px;
}
.inner_page_list ul {
	padding: 0;
	margin: 0;
}
.inner_page_list ul li {
	list-style: none;
	position: relative;
	padding-left: 24px;
	color: #666;
	margin-top: 4px;
}
.inner_page_list ul li:before {
	background: url("/wp-content/uploads/2024/11/check-box.png") no-repeat;
	background-size: 100%;
	width: 17px;
	height: 17px;
	position: absolute;
	content: "";
	top: 3px;
	left: 0;
}
.half_list ul {
	display: flex;
	flex-wrap: wrap;
}
.half_list ul li {
	width: 50%;
}
.inner_bottom_box {
    border: 1px solid #eee;
    padding: 40px 30px;
    margin-top: 55px;
    text-align: center;
    margin-bottom: 40px;
}
.testimonial-area .sp-testimonial-free-section .sp-testimonial-title {
    margin: 0 0 18px 0;
    padding: 18px 0 0px;
}

.inner-testimonial-box {
    padding: 30px;
    border-radius: 20px;
    background-color: #ffffff;
    box-shadow: 0 0 10px rgb(0 0 0 / 10%);
    margin-bottom: 25px;
}
.inner-testimonial-box .admin-box {
    margin-bottom: 15px;
}
.inner-testimonial-box .admin-box .admin-icon{}
.inner-testimonial-box .admin-box .admin-icon img{}
.inner-testimonial-box .admin-box .admin-body {
    padding-left: 10px;
}
.inner-testimonial-box .admin-box .admin-body .heading {
    color: #212121;
    font-size: 17px;
    font-weight: 600;
}
.inner-testimonial-box .contain-box {
    color: #323232;
    font-size: 14px;
    line-height: 24px;
    font-weight: 400;
}
.contact_map{
	margin-top:50px;
}
.contact_map iframe{
	width:100%;
	height:350px;
}
.contact_page_info {
	position:relative;
	padding-left:47px;
	color:#666;
	margin-top:25px;
}
.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;
}
.contact_form p {
	margin-bottom: 0 !important;
}
.contact_form input {
    min-height: 45px;
    border: 1px solid #ccc !important;
    width: 100%;
}
.contact_form textarea {
    height: 150px;
    border: 1px solid #ccc !important;
	resize: none;
}
.contact_form .contact_btn input {
    min-height: 45px;
    border: none !important;
    width: auto;
    background: #07b963 !important;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 500;
}
.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-weight: bold;
	font-size: 26px;
	line-height: 30px;
}
.ref_form_box_heading strong {
	color: #00adef;
	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("/wp-content/uploads/2024/11/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: #ef0b62 !important;
	font-size: 16px;
	margin-top: 20px;
	border-radius: 30px;
	padding: 13px 30px 12px;
}
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: #00adef;
	border-color: #00adef;
}
.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);
}
.contact_page_info a:hover{
	color:#00adf0;
}
/*-- feedback area start --*/
.feedback-body-area {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}
.feedback-body-area .feedback-box {
    text-align: center;
    width: 100%;
    background-color: #d2f2ff;
    border-radius: 15px;
    padding: 50px 25px;
	transition: 0.5s;
}
.feedback-body-area .feedback-box:hover {
    background-color: #00adef;
}
.feedback-body-area .feedback-box p{
	margin-bottom:0;
}
.feedback-body-area .feedback-box .btn {
    font-size: 15px;
    padding: 10px 20px;
}
.feedback-body-area .feedback-box .feedback-heading {
    font-size: 20px;
    font-weight: 600;
    color: #000000;
    text-transform: capitalize;
    line-height: 30px;
    margin-bottom: 20px;
	transition: 0.5s;
}
.feedback-body-area .feedback-box:hover .feedback-heading{
	color:#ffffff;
}
.feedback-body-area .feedback-box .feedback-icon {
    width: 100%;
    max-width: 105px;
    margin: 0 auto 15px;
}
.feedback-body-area .feedback-box .feedback-icon img {
    width: 100%;
    object-fit: cover;
    filter: brightness(0) saturate(100%) invert(15%) sepia(76%) saturate(4503%) hue-rotate(325deg) brightness(103%) contrast(104%);
}
.feedback-body-area .feedback-box:hover .feedback-icon img{
	filter: brightness(0) saturate(100%) invert(98%) sepia(10%) saturate(2%) hue-rotate(314deg) brightness(116%) contrast(100%);
}
.feedback-body-area .feedback-box .btn-primary:hover{
	border-color:#ffffff;
	background-color:#ffffff;
	color:#000000;
}
.form-sec {
    background: #d2f2ff;
    padding: 50px;
    border-radius: 30px;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}
.frm-title{
	color: #fff;
	font-size: 24px;
	font-weight: 600;
	margin-top: 15px;
}
.frm-title p{
	margin-bottom:0;
	color: #212121;
}
.form-sec .frm_fld {
	margin-top: 10px;
}
.form-sec .frm_fld input {
    margin-top: 0;
    height: 55px;
    padding: 10px 15px;
    font-size: 15px;
    font-weight: 400;
    color: #212121;
    border: 1px solid #ffffff;
}
.form-sec .wpcf7-list-item-label {
    font-weight: 400;
    font-size: 15px;
    color: #212121;
    padding-left: 25px;
}
.form-sec .wpcf7-list-item{
	display:block !important;
}
.form-sec .first span.wpcf7-list-item{
	margin: 0 15px 0 0 !important;
	display: inline-block !important;
}
.form-sec .wpcf7-list-item-label::before {
    height: 15px;
    width: 15px;
    border-radius: 50%;
    background-color: transparent;
    border: 1px solid #212121;
    top: 3px;
}
.form-sec .wpcf7-list-item label .wpcf7-list-item-label::after {
    left: 5px;
    top: 5px;
}
.frm_label{
	font-size: 17px;
	font-weight: 500;
	color: #fff;
	line-height: 1.3;
	margin-bottom: 10px;
}
.frm_label strong{
	color:#ff0000;
}
.frm_label p {
    margin-bottom: 0;
    font-size: 16px;
    color: #00adf0;
    font-weight: 500;
    line-height: 27px;
}
.form-sec .frm_fld textarea {
    width: 100%;
    height: 130px;
    padding: 15px;
    border: 1px solid #ffffff;
    font-size: 15px;
    font-weight: 400;
    color: #212121;
	resize:none;
}
.form-sec .wpcf7-submit {
    padding: 10px 20px;
}
/*-- feedback area stop --*/
.footer_fixed_buttons {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
    z-index: 99;
}
.footer_btn1 {
    background: #ef0b62;
    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: #00adf0;
    width: 50%;
    float: left;
    color: #fff !important;
    padding: 10px 0;
    text-decoration: none !important; 
    text-transform: capitalize;
}
.post .entry-summary, .post .entry-content {
    color: #666;
}
.more-link {
    background: #000;
    display: block;
    color: #fff !important;
    text-transform: capitalize;
    text-decoration: none !important;
    font-size: 18px;
    font-weight: 500;
    padding: 10px 0 10px 18px;
    width: 217px;
    margin-top: 30px;
    border-radius: 50px;
}
.more-link:hover {
    background: #ef0b62;
}
.wp-block-latest-posts.wp-block-latest-posts__list li {
    padding: 8px 0 9px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1) !important;
}


/*====================Responsive===================*/

@media only screen and (min-width : 300px) and (max-width : 1023px){
	.header-contact-area, .menu-area{
		display: none !important;
	}
	.banner-area .shape1, .whoweare-area::before, .banner-main-img-box::before, .heading br, .whychooseus-box::after, .footer-body-box::after{
		display: none;
	}
	.header-body-area .logo img{
		width: 85px;
		height: auto;
	}
	.header-area {
		padding: 3px 0;
	}
	.header-area{
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		z-index: 999;
		animation: none !important;
	}
	.banner-area {
		margin-top: 97px;
	}
	.header-body-area .logo{
		border-right: none;
	}
	.banner-main-img-box img {
  border-radius: 10px;
}
	.banner-contain-box .heading, .webtext .heading, .whoweare-content-box .heading, .webtext .heading, .inner_page_heading, .page .entry-title, .blog_page_title{
		font-size: 28px;
		line-height: 1.2;
	}
	.banner-contain-box{
		padding-left: 0;
	}
	.service-box .contain-box{
		 padding: 30px 20px;
	}
	.service-area, .whoweare-area, .whychooseus-area, .testimonial-area{
		padding: 40px 0;
	}
	.service-area .webtext .content-text{
		 width: auto;
	     max-width: 100%;
	}
	.whoweare-content-box {
		padding-left: 0;
		padding-top: 0;
	}
	.whychooseus-box{
		border: none;
	}
	.footer{
		margin-top: 30px;
	}
	.footer-social{
		margin-bottom: 10px;
	}
	.footer-area .footer-bottom {
		display: flex;
		align-content: center;
		justify-content: flex-end;
		flex-direction: row-reverse;
		flex-wrap: wrap;
	}
	  .page .entry-header, .blog_page_header {
        margin: 97px 0 50px !important;
        padding: 100px 0 !important;
    }
	.footer-area .footer-bottom{
		padding-bottom: 60px;
	}
}

@media only screen and (max-width : 320px) {
 .banner-contain-box, .whoweare-content-box{
		margin-top: 30px;
	}
	.whychooseus-box {;
		padding-top: 20px;
		padding-bottom: 20px;
		padding-right: 30px;
	}
	.banner-main-img-box .banner-img-main-box:last-child {
		padding-top: 0;
	}
	.inner_page_img img{
		margin-bottom: 30px;
	}
	.contact_right{
		margin-top: 30px;
	}
}

@media only screen and (min-width : 321px) and (max-width : 480px) {
	.banner-contain-box, .whoweare-content-box{
		margin-top: 30px;
	}
	.whychooseus-box {;
		padding-top: 20px;
		padding-bottom: 20px;
		padding-right: 30px;
	}
	.banner-main-img-box .banner-img-main-box:last-child {
		padding-top: 0;
	}
	.inner_page_img img{
		margin-bottom: 30px;
	}
	.contact_right{
		margin-top: 30px;
	}
}

@media only screen and (min-device-width : 375px) and (max-device-width : 667px) and (orientation : portrait) {

}

@media only screen and (min-device-width : 414px) and (max-device-width : 736px) and (orientation : portrait) {

}

@media only screen and (min-width : 481px) and (max-width : 767px) {
	.banner-main-img-box .banner-img-main-box:last-child {
		padding-top: 0;
	}
	.banner-contain-box, .whoweare-content-box{
		margin-top: 30px;
	}
	.whychooseus-box {;
		padding-top: 20px;
		padding-bottom: 20px;
		padding-right: 30px;
	}
	.inner_page_img img{
		margin-bottom: 30px;
	}
	.contact_right{
		margin-top: 30px;
	}
}

@media only screen and (min-width : 768px) and (max-width : 1024px) and (orientation : portrait) {

}

@media only screen and (min-width : 768px) and (max-width : 1024px) and (orientation : landscape) {
   .btn{
	   padding: 12px 12px;
	   font-size: 15px;
	}
	.nav-menu {
        margin-right: 0 !important;
    }
	.site-navigation a{
		 font-size: 15px !important;
	}
	.header-area.fix .primary-navigation a{
		padding: 53px 13px;
	} 
	.testimonial-area .sp-testimonial-free-section .sp-testimonial-item {
		min-height: 385px !important;
	}
}

/* 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) {

}

/* 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) {

}

/* 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) {

}

@media only screen and (min-width : 1025px) and (max-width : 1199px) and (orientation : portrait) {
   .btn{
	   padding: 12px 12px;
	   font-size: 15px;
	}
	.nav-menu {
        margin-right: 0 !important;
    }
	.site-navigation a{
		 font-size: 15px !important;
	}
	.header-area.fix .primary-navigation a{
		padding: 53px 13px;
	} 
	.header-body-area .logo{
		border-right: none;
	}
	.testimonial-area .sp-testimonial-free-section .sp-testimonial-item {
		min-height: 385px !important;
	}
}

@media only screen and (min-width : 1025px) and (max-width : 1199px) and (orientation : landscape) {
	.btn{
	   padding: 12px 12px;
	   font-size: 15px;
	}
	.nav-menu {
        margin-right: 0 !important;
    }
	.site-navigation a{
		 font-size: 15px !important;
	}
	.header-area.fix .primary-navigation a{
		padding: 53px 13px;
	} 
	.header-body-area .logo{
		border-right: none;
	}
	.testimonial-area .sp-testimonial-free-section .sp-testimonial-item {
		min-height: 385px !important;
	}
}

/* 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) {
   .btn{
	   padding: 12px 12px;
	   font-size: 15px;
	}
	.nav-menu {
        margin-right: 0 !important;
    }
	.site-navigation a{
		 font-size: 15px !important;
	}
	.header-area.fix .primary-navigation a{
		padding: 53px 13px;
	} 
	.header-body-area .logo{
		border-right: none;
	}
}

/* @media screen and (min-width: 1424px) {

}

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

}

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

}

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

}

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

} */
