body {
	padding: 0px;
	margin: 0px;
	font-family: 'Poppins';
}
img {
	max-width: 100%;
	height: 0 auto;
}
a {
	text-decoration: none !important;
}
a:focus {
	outline: none;
	outline: 0px auto -webkit-focus-ring-color;
	outline-offset: 0px
}
.btn.active.focus, .btn.active:focus, .btn.focus, .btn.focus:active, .btn:active:focus, .btn:focus {
	outline: none;
	outline-offset: 0px;
}
a:focus, a:hover {
	text-decoration: none !important;
}


@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Regular.eot');
    src: url('../fonts/Poppins-Regular.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Poppins-Regular.woff2') format('woff2'),
        url('../fonts/Poppins-Regular.woff') format('woff'),
        url('../fonts/Poppins-Regular.ttf') format('truetype'),
        url('../fonts/Poppins-Regular.svg#Poppins-Regular') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Medium.eot');
    src: url('../fonts/Poppins-Medium.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Poppins-Medium.woff2') format('woff2'),
        url('../fonts/Poppins-Medium.woff') format('woff'),
        url('../fonts/Poppins-Medium.ttf') format('truetype'),
        url('../fonts/Poppins-Medium.svg#Poppins-Medium') format('svg');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-SemiBold.eot');
    src: url('../fonts/Poppins-SemiBold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Poppins-SemiBold.woff2') format('woff2'),
        url('../fonts/Poppins-SemiBold.woff') format('woff'),
        url('../fonts/Poppins-SemiBold.ttf') format('truetype'),
        url('../fonts/Poppins-SemiBold.svg#Poppins-SemiBold') format('svg');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Bold.eot');
    src: url('../fonts/Poppins-Bold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Poppins-Bold.woff2') format('woff2'),
        url('../fonts/Poppins-Bold.woff') format('woff'),
        url('../fonts/Poppins-Bold.ttf') format('truetype'),
        url('../fonts/Poppins-Bold.svg#Poppins-Bold') format('svg');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Black.eot');
    src: url('../fonts/Poppins-Black.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Poppins-Black.woff2') format('woff2'),
        url('../fonts/Poppins-Black.woff') format('woff'),
        url('../fonts/Poppins-Black.ttf') format('truetype'),
        url('../fonts/Poppins-Black.svg#Poppins-Black') format('svg');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}


.header {
	width: 100%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 999;
	background: #fff;
	-moz-transition: all 0.5s ease 0s;
	-webkit-transition: all 0.5s ease 0s;
	transition: all 0.5s ease 0s;
}
.darkHeader {
	box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.3);
}
.logo {
	margin-top: 6px;
	margin-bottom: 6px;
}
.logo img {
	width: 235px;
}
.header_menu ul {
	list-style-type: none;
	padding: 0;
	margin: 0;
}
.header_menu ul li {
	position: relative;
	border-right: 1px solid rgba(0, 0, 0, 0.05);
}
.header_menu ul li:last-child {
	border-right: none;
}
.header_menu ul li a {
	display: block;
	color: #252525;
	font-style: normal;
	font-size: 15px;
	text-decoration: none;
	position: relative;
	text-transform: uppercase;
	z-index: 99;
	font-weight: 600;
	padding: 30px 14px;
	-moz-transition: all 0.5s ease 0s;
	-webkit-transition: all 0.5s ease 0s;
	transition: all 0.5s ease 0s;
}
.header_menu ul li a:before {
	position: absolute;
	content: "";
	top: 0;
	left: 0;
	width: 0;
	border-top: 4px solid #239a3d;
	-moz-transition: all 0.5s ease 0s;
	-webkit-transition: all 0.5s ease 0s;
	transition: all 0.5s ease 0s;
}
.header_menu ul li a:hover, .header_menu ul li.active a {
	color: #f42c4f;
}
.header_menu ul li a:hover:before, .header_menu ul li.active a:before {
	width: 100%;
}
.header_btn1 {
	display: inline-block;
	font-weight: 500;
	vertical-align: top;
	font-size: 15px;
	padding: 10px 30px;
	text-transform: uppercase;
	border-radius: 10px 0;
	margin-left: 10px;
	background: #f42c4f;
	color: #fff !important;
	-moz-transition: all 0.5s ease 0s;
	-webkit-transition: all 0.5s ease 0s;
	transition: all 0.5s ease 0s;
}
.header_btn1:hover {
	background: #239a3d;
}
.header_btn2 {
	display: inline-block;
	font-weight: 500;
	vertical-align: top;
	font-size: 15px;
	padding: 10px 20px;
	text-transform: uppercase;
	border-radius: 0 10px;
	margin-left: 10px;
	background: #00a7d5;
	color: #fff !important;
	-moz-transition: all 0.5s ease 0s;
	-webkit-transition: all 0.5s ease 0s;
	transition: all 0.5s ease 0s;
}
.header_btn2:hover {
	background: #239a3d;
}
.home_banner_section {
	margin-top: 80px;
}
.home_service_sec {
	padding: 70px 0;
}
.home_service_sec_heading {
	font-weight: 900;
	font-size: 38px;
	color: #080808;
	line-height: 42px;
}
.home_service_sec_subheading {
	color: #171717;
	font-weight: 500;
	font-size: 15px;
	margin-top: 5px;
}
#service_slide {
	margin-top: 40px;
}
.home_service_block_img {
	border-radius: 8px;
}
.home_service_block_content {
	background: #fff;
	box-shadow: 0px 4px 14.4px 0.6px rgba(0, 0, 0, 0.08);
	border-radius: 8px;
	width: 85%;
	padding: 20px 15px;
	margin: -30px auto 10px;
	position: relative;
	z-index: 9;
}
.home_service_block_heading {
	font-weight: bold;
	font-size: 18px;
	color: #5c498a;
}
.home_service_block_text {
	color: #666;
	font-size: 15px;
	margin-top: 15px;
}
.home_service_block_btn {
	display: inline-block;
	color: #f42c4f !important;
	font-size: 15px;
	font-weight: 500;
	margin-top: 15px;
	position: relative;
	padding-right: 18px;
	-moz-transition: all 0.5s ease 0s;
	-webkit-transition: all 0.5s ease 0s;
	transition: all 0.5s ease 0s;
}
.home_service_block_btn:hover {
	color: #239a3d !important;
	padding-right: 20px;
}
.home_service_block_btn:before {
	position: absolute;
	content: "";
	top: 8px;
	right: 0;
	background: #00a7d5;
	width: 9px;
	height: 10px;
	clip-path: polygon(0 0, 0% 100%, 100% 50%);
}
#service_slide .owl-prev {
	background: url("../images/prev_icon.png") no-repeat center !important;
	width: 20px;
	height: 38px;
	border-radius: 0;
	font-size: 0 !important;
	float: left;
}
#service_slide .owl-next {
	background: url("../images/next_icon.png") no-repeat center !important;
	width: 20px;
	height: 38px;
	border-radius: 0;
	font-size: 0 !important;
	float: right;
}
#service_slide .owl-dots {
	display: none !important;
}
#service_slide .owl-nav {
	position: absolute;
	top: 50%;
	left: -50px;
	right: -50px;
	transform: translate(0, -50%);
	margin-top: 0;
}
.home_welcome_section {
	background: #f3f3f3;
	padding: 70px 0 0;
}
.home_welcome_section_subheading {
	background: url("../images/fav.png") no-repeat center left;
	font-weight: 600;
	color: #171717;
	background-size: 40px;
	padding: 5px 0 5px 50px;
}
.home_welcome_section_heading {
	font-weight: 900;
	color: #171717;
	font-size: 38px;
	line-height: 42px;
	margin-top: 20px;
}
.home_welcome_section_heading strong {
	font-weight: 900;
	color: #d82b74;
}
.home_welcome_section_text {
	color: #555;
	font-weight: 500;
	font-size: 15px;
	margin-top: 20px;
}
.home_welcome_section_btn {
	display: inline-block;
	font-weight: 500;
	font-size: 15px;
	padding: 11px 25px;
	text-transform: uppercase;
	border-radius: 10px 0;
	margin-top: 20px;
	background: #239a3d;
	color: #fff !important;
	-moz-transition: all 0.5s ease 0s;
	-webkit-transition: all 0.5s ease 0s;
	transition: all 0.5s ease 0s;
}
.home_welcome_section_btn:hover {
	background: #f42c4f;
}
.home_welcome_right {
	padding-left: 50px;
}
.home_welcome_img img {
	border-radius: 10px;
}
.home_choose_sec {
	background: url("../images/choose_bg.png") #f3f3f3 no-repeat center right;
	padding: 90px 0;
}
.home_choose_sec:before {
	position: absolute;
	content: "";
	top: 0;
	bottom: 0;
	left: 50%;
	transform: translate(-50%, 0);
	width: 385px;
	border-right: 1px solid rgba(0, 0, 0, 0.05);
	border-left: 1px solid rgba(0, 0, 0, 0.05);
}
.home_choose_sec .container {
	position: relative;
	z-index: 9;
}
.home_choose_sec_heading {
	font-weight: 900;
	font-size: 30px;
	color: #171717;
}
.home_choose_block_heading {
	font-weight: bold;
	color: #df2771;
	font-size: 17px;
	width: 190px;
	line-height: 22px;
}
.home_choose_block_text {
	color: #555;
	font-size: 15px;
	margin-top: 10px;
}
.home_choose_block img {
	background: #e6e6e6;
	width: 65px;
	height: 65px;
	border-radius: 50%;
	object-fit: cover;
	padding: 20px 10px 0 0;
	min-width: 65px;
	margin-right: 15px;
}
.home_choose_block {
	margin-top: 40px;
	padding: 0 30px;
}
.home_other_section {
	padding: 0 0 5px;
	background: #f3f3f3;
}
.home_other_section .container {
	margin-bottom: -100px;
}
.home_other_section_left {
	background: #fff69e;
	padding: 35px;
	border-radius: 15px;
	min-height: 100%;
}
.home_other_section_left_heading {
	font-weight: 900;
	color: #171717;
	font-size: 30px;
}
.home_other_section_left_list ul {
	padding: 0;
	margin: 20px 0 0;
}
.home_other_section_left_list ul li {
	list-style: none;
	position: relative;
	padding-left: 20px;
	color: #232323;
	font-weight: 500;
	margin-top: 10px;
}
.home_other_section_left_list ul li:before {
	position: absolute;
	content: "";
	top: 4px;
	left: 0;
	width: 13px;
	height: 16px;
	background: #239a3d;
	clip-path: polygon(0 0, 0% 100%, 100% 50%);
}
.home_other_section_left_list ul li:after {
	position: absolute;
	content: "";
	top: 5px;
	left: 0;
	width: 13px;
	height: 16px;
	background: #f42c4f;
	clip-path: polygon(0 0, 0% 100%, 100% 50%);
	transform: rotate(30deg);
}
.home_other_section_right_inner {
	background: url("../images/form_bg.jpg") no-repeat center;
	background-size: cover;
	padding: 35px;
	border-radius: 15px;
	min-height: 100%;
}
.home_other_section_right_inner:before {
	background: rgba(0, 0, 0, 0.85);
	position: absolute;
	content: "";
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
}
.home_other_section_right_inner div {
	position: relative;
	z-index: 9;
}
.home_other_section_right_heading {
	background: url("../images/fav.png") no-repeat center left;
	background-size: 50px;
	font-weight: 900;
	font-size: 30px;
	padding-left: 60px;
}
.home_quality_section {
	background: url("../images/quality_bg.png") #00a7d5 no-repeat center top;
	padding: 155px 0 60px;
	color: #fff;
	font-weight: bold;
	font-size: 30px;
	line-height: 40px;
}
.home_quality_section img {
	border-radius: 50%;
	margin-right: 25px;
}
.home_testimonial_section {
	padding: 70px 0;
}
.home_testimonial_section_subheading {
	font-weight: 500;
	color: #f42c4f;
}
.footer {
	background: #191919;
	padding: 50px 0 25px;
}
.footer_top_heading {
    font-size: 22px;
	color: #f4e45b;
	font-weight: bold;
	text-transform: uppercase;
}
.footer_contact_info ul {
	padding: 0;
	margin: 20px 0 0;
}
.footer_contact_info ul li {
	color: #fff;
	position: relative;
	font-size: 15px;
	font-weight: 500;
	list-style: none;
	margin-top: 15px;
	padding-left: 35px;
}
.footer_contact_info ul li img {
	position: absolute;
	top: 1px;
	left: 0;
	max-width: 22px;
}
.footer_contact_info ul li a {
	color: #fff;
}
.footer_menu ul {
    list-style-type: none;
    padding: 0;
    margin: 18px 0 0;
}
.footer_menu ul li {
	color: #eee;
	font-size: 15px;
    position: relative;
    margin-top: 2px;
}
.footer_menu ul li a {
	color: #fff;
	font-style: normal;
	text-decoration: none;
	position: relative;
	z-index: 99;
	-moz-transition: all 0.5s ease 0s;
	-webkit-transition: all 0.5s ease 0s;
	transition: all 0.5s ease 0s;
}
.footer_menu ul li a:hover, .footer_menu ul li.active a {
	color: #f42c4f;
}
.footer_social {
	margin-left: 20px;
}
.footer_social img {
	width: 35px;
}
.footer_social a {
	margin-left: 5px;
}
.footer_top_block {
	border-left: 1px solid rgba(255, 255, 255, 0.15);
	padding-left: 35px;
}
.footer_top_block:first-child {
	border-left: none;
	padding-left: 12px;
}
.footer_privacy {
	border-top: 1px solid rgba(255, 255, 255, 0.15);
	margin-top: 35px;
	text-align: center;
	color: #fff;
	font-size: 14px;
	text-transform: uppercase;
	padding: 25px 0 0;
}
.footer_privacy a {
	color: #fff;
}
#back-to-top {
	background: #239a3d;
    position: fixed;
    bottom: 15px;
    right: 15px;
    z-index: 9999;
	text-transform: uppercase;
    cursor: pointer;
    border-radius: 50%;
    text-decoration: none;
    transition: opacity 0.2s ease-out;
    opacity: 0;
}
#back-to-top.show {
    opacity: 1;
}
.ms-slide-info {
	background: url("../images/banner_bg.png") no-repeat center left;
	background-size: cover;
	position: absolute !important;
	top: 0;
	right: 0;
	bottom: 0;
	width: auto !important;
	max-width: 420px;
  	padding: 0 9% 0 120px;
	margin-top: 0 !important;
	display: flex;
	align-items: center;
}
.banner_subheading {
	font-weight: 600;
	color: #0a0a0a;
}
.banner_heading {
	font-weight: 900;
	font-size: 38px;
	color: #0a0a0a;
	text-transform: uppercase;
	line-height: 40px;
	margin-top: 15px;
}
.banner_btn1 {
	display: inline-block;
	font-weight: 500;
	font-size: 17px;
	padding: 11px 25px;
	text-transform: uppercase;
	border-radius: 10px 0;
	margin-top: 20px;
	margin-right: 5px;
	background: #239a3d;
	color: #fff !important;
	-moz-transition: all 0.5s ease 0s;
	-webkit-transition: all 0.5s ease 0s;
	transition: all 0.5s ease 0s;
}
.banner_btn2 {
	display: inline-block;
	font-weight: 500;
	font-size: 17px;
	padding: 11px 25px;
	text-transform: uppercase;
	border-radius: 10px 0;
	margin-top: 20px;
	background: #00a7d5;
	color: #fff !important;
	-moz-transition: all 0.5s ease 0s;
	-webkit-transition: all 0.5s ease 0s;
	transition: all 0.5s ease 0s;
}
.ms-nav-prev {
	background: url("../images/prev_icon.png") no-repeat center !important;
}
.ms-nav-next {
	background: url("../images/next_icon.png") no-repeat center !important;
}
.home_form p {
	margin-bottom: 0 !important;
}
.home_form input {
	min-height: 46px;
	border: none !important;
	width: 100%;
	margin-top: 15px;
	border-radius: 4px;
}
.home_form select {
	background: url("../images/dropdown.png") #fff no-repeat center right 10px;
	min-height: 46px;
	border: none !important;
	width: 100%;
	margin-top: 15px;
	padding: 0 30px 0 12px;
	border-radius: 4px;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}
.home_form textarea {
	height: 100px;
	border: none !important;
	resize: none;
	margin-top: 15px;
	border-radius: 4px;
}
.home_form .contact_btn input {
	background: #f42c4f !important;
	min-height: 46px;
	border: none !important;
	width: auto;
	margin-top: 15px;
	font-weight: 500;
	font-size: 15px;
	text-transform: capitalize;
	border-radius: 10px 0;
}
.sp-testimonial-free {
	background: url("../images/quote_icon.png") no-repeat top right 20px !important;
}
.sp-testimonial-post-title {
	text-align: left !important;
	font-size: 18px !important;
}
.sp-testimonial-content, .sp-testimonial-content p, .sp-testimonial-client-name {
	text-align: left !important;
}
.sp-testimonial-client-name {
	font-size: 18px !important;
}
.sp-testimonial-client-testimonial {
	margin-bottom: 0 !important;
}
.home_testimonial_slide {
	margin-top: 50px;
}
.sp-testimonial-free-section .testimonial-nav-arrow {
	font-size: 40px !important;
	top: 70% !important;
}
.site-content, .site-main .widecolumn {
    margin-left: 0px !important;
}
.page .entry-header, .blog_page_header {
    background: url("../images/banner.jpg") #eee no-repeat;
    background-size: cover !important;
    max-width: 100% !important;
    padding: 200px 0 110px !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: 35px;
	font-weight: bold;
    text-transform: none;
    z-index: 99;
	margin-bottom: 3px;
}
.breadcrumb-container {
    width: 100%;
	color: #00a7d5;
	position: relative;
	font-size: 15px;
}
.breadcrumb-container a {
	color: #00a7d5;
}
.page {
	margin-top: 0 !important;
}
.inner_page_heading {
	font-weight: 600;
	color: #222;
	font-size: 28px;
	line-height: 30px;
	position: relative;
	padding-bottom: 12px;
}
.inner_page_heading strong {
	font-weight: 600;
	color: #49b848;
}
.inner_page_heading:before {
	position: absolute;
	content: "";
	bottom: 0;
	left: 0;
	width: 35px;
	border-bottom: 4px solid #f42c4f;
	border-radius: 30px;
}
.inner_page_text {
	color: #666;
	margin-top: 20px;
}
.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("../images/check.png") no-repeat;
	background-size: 100%;
	width: 17px;
	height: 17px;
	position: absolute;
	content: "";
	top: 3px;
	left: 0;
}
.inner_page_mid_section {
	background: #fffce0;
	padding: 60px 0;
	margin: 60px 0;
}
.inner_page_bottom_box {
	background: #f42c4f;
	border-radius: 25px 0px;
	padding: 40px 30px;
	text-align: center;
	margin-top: 60px;
}
.inner_page_bottom_box_heading {
	font-weight: 600;
	color: #fff;
	font-size: 25px;
	line-height: 28px;
	position: relative;
	padding-bottom: 12px;
}
.inner_page_bottom_box_heading::before {
	position: absolute;
	content: "";
	bottom: 0;
	left: 50%;
	transform: translate(-50%, 0);
	width: 35px;
	border-bottom: 4px solid #fff;
	border-radius: 30px;
}
.inner_page_bottom_box_text {
	color: rgba(255, 255, 255, 0.9);
	margin-top: 20px;
}
.contact_page_info {
	position:relative;
	padding-left:45px;
	color:#666;
	margin-top:25px;
}
.contact_page_info a {
	color:#666;
}
.contact_page_info strong {
	color:#222;
	font-weight: 500;
	font-size:18px;
}
.contact_page_info img {
	position:absolute;
	top:7px;
	left:0;
	width:35px;
}
.contact_form {
	margin-top: 10px;
}
.contact_form p {
	margin-bottom: 0 !important;
}
.contact_form input {
    margin-top: 15px;
    min-height: 45px;
    border: 1px solid #ccc !important;
    width: 100%;
	border-radius: 0;
}
.contact_form select {
	background: url("../images/dropdown.png") no-repeat center right 10px;
    margin-top: 15px;
    min-height: 45px;
    border: 1px solid #ccc !important;
    width: 100%;
	border-radius: 0;
	padding: 0 30px 0 12px;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}
.contact_form textarea {
    margin-top: 15px;
    height: 150px;
    border: 1px solid #ccc !important;
	resize: none;
	border-radius: 0;
}
.contact_form .contact_btn input {
    min-height: 45px;
    border: none !important;
    width: auto;
    background: #f42c4f !important;
    border-radius: 10px 0;
    font-size: 16px;
    font-weight: 500;
}
.contact_map {
	margin-top: 55px;
}
.contact_map iframe, #post-15 {
	margin-bottom: 0 !important;
}
.review_page_box {
	margin-bottom: 30px;
}
.review_page_box_inner {
	background: url("../images/quote_icon.png") no-repeat;
	background-position: 20px 30px;
	border: 1px solid #ddd;
	padding: 90px 20px 25px;
	min-height: 100%;
	border-radius: 8px;
}
.review_page_box_text {
	color: #666;
}
.review_page_box_name {
	color: #f42c4f;
	font-weight: 600;
	margin-top: 20px;
	font-size: 18px;
}
.inner_page_img img {
	border-radius: 10px;
}
.ref_form_box {
	background: #00a7d5;
	padding: 35px;
	margin-bottom: 30px;
	border-radius: 10px;
}
.ref_form_box p {
	margin-bottom: 0 !important;
}
.ref_form_box_heading {
	color: #fff;
	font-weight: bold;
	font-size: 26px;
	line-height: 30px;
}
.ref_form_box_heading strong {
	color: #fff;
	font-weight: bold;
}
.ref_form_box_label {
	color: #fff;
	margin-top: 15px;
}
.ref_form_box_input input {
	width: 100%;
	min-height: 44px;
	margin-top: 2px;
	border: none !important;
	color: #555;
	border-radius: 3px;
}
.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: none !important;
	color: #555;
	border-radius: 3px;
	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-radius: 3px;
	border: none !important;
	color: #555;
}
.ref_form_box .contact_btn input {
	font-weight: 500;
	background: #f42c4f !important;
	font-size: 16px;
	margin-top: 20px;
	border-radius: 10px 0;
	padding: 10px 30px;
}
span.wpcf7-list-item {
	margin: 0 !important;
	display: block;
}
.wpcf7-list-item label {
	display: block;
	position: relative;
	margin-top: 8px;
	color: #fff;
	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: 2px;
	left: 0;
	height: 16px;
	width: 16px;
	background-color: #fff;
	border-radius: 50%;
}
.wpcf7-list-item label:hover input ~ .wpcf7-list-item-label:before {
	background-color: #f42c4f;
}
.wpcf7-list-item label input:checked ~ .wpcf7-list-item-label:before {
	background-color: #f42c4f;
	border-color: #f42c4f;
}
.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);
}
.footer_fixed_buttons {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	text-align: center;
	z-index: 99;
}
.footer_btn1 {
	background: #00a7d5;
	color: #fff !important;
	width: 50%;
	float: left;
	padding: 10px 0;
}
.footer_btn2 {
	background: #fff;
	position: absolute;
	top: 0;
	left: 50%;
	transform: translate(-50%, 0);
	height: 44px;
	width: 44px;
	border-radius: 50%;
	padding: 10px 12px 0;
}
.footer_btn3 {
	background: #f42c4f;
	color: #fff !important;
	width: 50%;
	float: left;
	padding: 10px 0;
}
.thankyou_text {
	color: #666;
}
.thankyou_btn {
	display: inline-block;
	background: #f42c4f;
	color: #fff !important;
	margin-top: 20px;
	padding: 10px 20px;
	border-radius: 10px 0;
}
.error_container {
	display: flex;
	min-height: 100vh;
	align-items: center;
	text-align: center;
}
.error_container img {
	margin-bottom: 20px;
}
.post .entry-summary, .post .entry-content {
	color: #666;
}
.more-link {
	display: block;
	background: #f42c4f;
	color: #fff !important;
	margin-top: 20px;
	text-transform: capitalize;
	border-radius: 10px 0;
	padding: 10px 0 11px 15px;
	font-size: 15px;
	width: 185px;
}


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

@media only screen and (min-width : 300px) and (max-width : 1023px) {
.header_right, .home_choose_sec::before {
  display: none !important;
}
.logo {
  margin-top: 8px;
  margin-bottom: 9px;
}
.logo img {
  width: 175px;
}
.home_banner_section {
  margin-top: 60px;
}
.ms-view, .ms-slide {
   min-height: 300px !important;
}
.ms-slide-bgcont img {
   object-fit: cover;
}
.ms-slide-info {
  background: none;
  padding: 0 4%;
}
.banner_heading {
  font-weight: bold;
  font-size: 28px;
  line-height: 30px;
  margin-top: 10px;
}
.banner_btn1, .banner_btn2 {
  font-size: 15px;
  padding: 10px 20px;
}
.ms-slide:before {
	position: absolute;
	content: "";
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 9;
	background: #fff69e;
	opacity: 0.5;
}
.home_service_sec, .home_choose_sec, .home_testimonial_section {
  padding: 40px 0;
}
.home_service_sec_heading, .home_welcome_section_heading, .home_choose_sec_heading, .home_other_section_left_heading, .home_other_section_right_heading, .page .entry-title, .blog_page_title {
  font-weight: bold;
  font-size: 26px;
  line-height: 29px;
}
#service_slide .owl-nav {
  position: static;
  left: 0;
  right: 0;
  transform: none;
  margin-top: 0;
}
#service_slide .owl-prev, #service_slide .owl-next {
  float: none;
}
.home_welcome_section {
  padding: 40px 0 0;
}
.home_welcome_right {
  padding-left: 12px;
  margin-top: 30px;
}
.home_choose_block {
  margin-top: 30px;
  padding: 0 12px;
}
.home_choose_sec {
  background-size: 95px;
}
.home_other_section_left, .home_other_section_right_inner {
  padding: 35px 20px;
}
.home_other_section_right {
  margin-top: 30px;
}
.home_quality_section img {
  margin-right: 20px;
  width: 100px;
}
.home_quality_section {
  padding: 130px 0 40px;
  font-weight: 600;
  font-size: 17px;
  line-height: 25px;
}
.footer_top_heading {
  font-size: 20px;
}
.footer_top_block {
  border-left: none;
  padding-left: 12px;
  margin-top: 30px;
}
.footer {
  padding: 10px 0 60px;
}
.page .entry-header, .blog_page_header {
  padding: 130px 0 65px !important;
  margin: 0 0 40px !important;
}
.inner_page_img {
  margin-bottom: 25px;
}
.inner_page_heading, .inner_page_bottom_box_heading {
  font-size: 23px;
  line-height: 27px;
}
.inner_page_mid_section {
  padding: 40px 0;
  margin: 40px 0;
}
.inner_page_bottom_box {
  padding: 30px 20px;
  margin-top: 40px;
}
.contact_right {
  margin-top: 40px;
}
.ref_form_box {
  padding: 25px;
}
.ref_form_box_heading {
  font-size: 23px;
  line-height: 27px;
}
#back-to-top {
  bottom: 55px;
}
}

@media only screen and (max-width : 320px) {

}

@media only screen and (min-width : 321px) and (max-width : 480px) {

}

@media only screen and (min-width : 481px) and (max-width : 767px) {

}

@media only screen and (min-width : 768px) and (max-width : 1024px) and (orientation : portrait) {
.ms-slide-info {
  background: url("../images/banner_bg.png") no-repeat center left;
  padding: 0 9% 0 120px;
  max-width: 300px;
}
.ms-slide:before {
	display: none;
}
.home_welcome_right, .home_other_section_right, .contact_right {
  margin-top: 0;
}
.inner_page_img {
  margin-bottom: 0;
}
}

@media only screen and (min-width : 768px) and (max-width : 1024px) and (orientation : landscape) {
.header_menu ul li a {
  font-size: 14px;
  padding: 30px 8px;
}
.home_choose_sec::before {
  width: 320px;
}
}

/* 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) {
.ms-slide-info {
  background: url("../images/banner_bg.png") no-repeat center left;
  padding: 0 9% 0 120px;
  max-width: 300px;
}
.ms-slide:before {
	display: none;
}
.home_welcome_right, .home_other_section_right, .contact_right {
  margin-top: 0;
}
.inner_page_img {
  margin-bottom: 0;
}
}

/* 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) {
.ms-slide-info {
  background: url("../images/banner_bg.png") no-repeat center left;
  padding: 0 9% 0 120px;
  max-width: 300px;
}
.ms-slide:before {
	display: none;
}
.home_welcome_right, .home_other_section_right, .contact_right {
  margin-top: 0;
}
.inner_page_img {
  margin-bottom: 0;
}
}

/* 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) {
.ms-slide-info {
  background: url("../images/banner_bg.png") no-repeat center left;
  padding: 0 9% 0 120px;
  max-width: 300px;
}
.ms-slide:before {
	display: none;
}
.home_welcome_right, .home_other_section_right, .contact_right {
  margin-top: 0;
}
.inner_page_img {
  margin-bottom: 0;
}
}

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

}

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

}

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

}

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

}

@media screen and (min-width: 1920px) {
.ms-slide-info {
  padding-right: 16%;
}
}

@media screen and (min-width: 2048px) {
.ms-slide-info {
  padding-right: 18%;
}
}

@media screen and (min-width: 2550px) {
.ms-slide-info {
  padding-right: 24%;
}
}
