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: 'Playfair Display';
    src: url('../fonts/PlayfairDisplay-Regular.eot');
    src: url('../fonts/PlayfairDisplay-Regular.eot?#iefix') format('embedded-opentype'),
        url('../fonts/PlayfairDisplay-Regular.woff2') format('woff2'),
        url('../fonts/PlayfairDisplay-Regular.woff') format('woff'),
        url('../fonts/PlayfairDisplay-Regular.ttf') format('truetype'),
        url('../fonts/PlayfairDisplay-Regular.svg#PlayfairDisplay-Regular') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}



.common_btn span {
    position: relative;
    z-index: 1;
	display: block;
	border-radius: 10px;
	padding: 10px 20px;
	-moz-transition: all 0.5s ease 0s;
	-webkit-transition: all 0.5s ease 0s;
	transition: all 0.5s ease 0s;
}
.common_btn:after{
   content: "";
    position: absolute;
    z-index: -2;
    left: -50%;
    top: -50%;
    width: 200%;
    height: 200%;
    background-color: transparent;
    background-repeat: no-repeat;
    background-size: 50% 50%, 50% 50%;
    background-position: 0 0, 100% 0, 100% 100%, 0 100%;
    background-image: linear-gradient(90deg, rgba(177,130,38,0)  0%, rgba(177,130,38,1) 50%, rgba(177,130,38,0) 100%);
    -webkit-animation: rotate 1s linear infinite;
    animation: rotate 3s linear infinite;
}
@-webkit-keyframes rotate {
    100% {
        transform: rotate(360deg);
    }
}
@keyframes rotate {
    100% {
        transform: rotate(360deg);
    }
}
.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 10px rgba(0, 0, 0, 0.12);
}
.logo img {
	width: 230px;
}
.header_menu ul {
	list-style-type: none;
	padding: 0;
	margin: 0;
}
.header_menu ul li {
	position: relative;
	margin-right: 25px;
}
.header_menu ul li a {
	display: block;
	color: #333;
	font-style: normal;
	font-size: 16px;
	text-decoration: none;
	position: relative;
	font-weight: 500;
	z-index: 99;
	padding: 33px 0;
	-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: #11b982;
}
.header_menu ul li a:before {
	position: absolute;
	content: "";
	border-top: 3px solid #11b982;
	top: 0;
	left: 50%;
	transform: translate(-50%, 0);
	width: 0;
	-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:before, .header_menu ul li.active a:before {
	width: 100%;
}
.header_btn {
	overflow: hidden;
	position: relative;
	display: inline-block;
	padding: 2px;
	border-radius: 10px;
	margin-left: 12px;
	color: #fff !important;
	-moz-transition: all 0.5s ease 0s;
	-webkit-transition: all 0.5s ease 0s;
	transition: all 0.5s ease 0s;
}
.header_btn span {
	background: #11b982;
}
.header_btn:hover {
	background: #005e6e;
}
.home_banner_section {
	margin-top: 88px;
}
.home_banner_section video {
	width: 100%;
	max-height: 700px;
	object-fit: cover;
}
.home_banner_section:before {
	background: rgba(0, 0, 0, 0.7);
	position: absolute;
	content: "";
	top: 0;
	right: 0;
	bottom: 6px;
	left: 0;
}
.home_banner_content {
	position: absolute;
	top: 50%;
	left: 0;
	width: 100%;
	transform: translate(0, -50%);
}
.banner_subheading {
	background-image: -moz-linear-gradient( -1deg, rgb(17,185,130) 0%, rgba(17,185,130,0.99) 1%, rgba(57,16,83,0) 100%);
	background-image: -webkit-linear-gradient( -1deg, rgb(17,185,130) 0%, rgba(17,185,130,0.99) 1%, rgba(57,16,83,0) 100%);
	background-image: -ms-linear-gradient( -1deg, rgb(17,185,130) 0%, rgba(17,185,130,0.99) 1%, rgba(57,16,83,0) 100%);
	border-radius: 30px;
	font-size: 13px;
	padding: 7px 20px;
  	letter-spacing: 2px;
}
.banner_heading {
	font-family: 'Playfair Display';
	font-size: 55px;
	line-height: 1.1;
	margin-top: 20px;
}
.banner_list ul {
	padding: 0;
	margin: 25px 0 10px;
}
.banner_list ul li {
	list-style: none;
	color: #fff;
	font-size: 17px;
	margin-top: 3px;
	position: relative;
	padding-left: 20px;
}
.banner_list ul li::before {
	position: absolute;
	content: "";
	top: 4px;
	left: -3px;
	width: 16px;
	height: 16px;
	background: #11b982;
	border-radius: 50%;
	animation: pulse2 2s infinite;
}
.banner_list ul li:after {
	position: absolute;
	content: "";
	top: 7px;
	left: 0;
	width: 10px;
	height: 10px;
	background: #fff;
	border-radius: 50%;
}
@keyframes pulse2{
    0%{
        transform:scale(0.8);
        opacity:0.7;
    }
    100%{
        transform:scale(1.5);
        opacity:0;
    }
}
.banner_btn {
	background: #11b982;
	display: inline-block;
	padding: 11px 25px;
	border-radius: 10px;
	margin-top: 25px;
	color: #fff !important;
	-moz-transition: all 0.5s ease 0s;
	-webkit-transition: all 0.5s ease 0s;
	transition: all 0.5s ease 0s;
}
.banner_btn:hover {
	background: #005e6e;
	color: #fff !important;
}
.banner_phone {
	vertical-align: top;
	color: #fff;
	margin: 20px 0 0 20px;
}
.banner_phone a {
	color: #fff;
	font-weight: 600;
	font-size: 18px;
}
.banner_phone img {
	background: #11b982;
	width: 45px;
	margin-right: 10px;
	border-radius: 50%;
	padding: 7px;
	animation: tilt-shaking .2s infinite;
}
@keyframes tilt-shaking {
  0% {
    transform:rotate(0deg)
  }
  25% {
    transform:rotate(7deg)
  }
  50% {
    transform:rotate(0 eg)
  }
  75% {
    transform:rotate(-7deg)
  }
  100% {
    transform:rotate(0deg)
  }
}
.banner_right_box_icon {
	background: #fff;
	width: 75px;
	border-radius: 50%;
	margin: 0 auto 15px;
	overflow: hidden;
	padding: 8px;
}
.banner_right_box {
	background: rgba(255, 255, 255, 0.15);
	border: 1px solid rgba(255, 255, 255, 0.2);
	padding: 55px 40px;
	border-radius: 20px;
	overflow: hidden;
	position: relative;
}
.banner_right_box::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -150%;
  width: 60%;
  height: 200%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.5),
    transparent
  );
  transform: rotate(25deg);
  animation: sheen 4s infinite;
}
@keyframes sheen {
  0% {
    left: -150%;
  }
  100% {
    left: 200%;
  }
}
.banner_right_box_heading {
	font-weight: 600;
	font-size: 28px;
	line-height: 1.2;
	/* animation: flipVertical 4s linear infinite; */
}
.banner_right_box_heading span {
	display: inline-block;
  	animation: wave 1.5s linear infinite;
}
@keyframes wave {
  0%   { transform: translateY(0); }
  25%  { transform: translateY(-12px); }
  50%  { transform: translateY(0); }
  75%  { transform: translateY(12px); }
  100% { transform: translateY(0); }
}

@keyframes flipVertical {
  0% {
    transform: rotateX(0deg);
  }

  50% {
    transform: rotateX(360deg);
  }

  100% {
    transform: rotateX(360deg);
  }
}
.banner_right_box_text {
	font-size: 17px;
	margin-top: 20px;
}
.home_progress_section {
	background: url(../images/progress_bg.png) no-repeat left bottom;
	background-size: 100px;
	padding: 70px 0 120px;
}
.home_progress_section_subheading {
  background: linear-gradient(
    90deg,
    rgba(17, 185, 130, 1) 0%,
    rgba(9, 20, 39, 0.25) 50%,
    rgba(255, 255, 255, 1) 100%
  );
  background-size: 200% 200%;
  border-radius: 30px;
  font-size: 13px;
  padding: 7px 25px;
  letter-spacing: 2px;
  animation: gradientMove 3s ease infinite;
}

@keyframes gradientMove {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}
.home_progress_section_heading {
	font-family: 'Playfair Display';
	color: #170225;
	font-size: 40px;
	line-height: 1.2;
}
.timeline {
	width:100%;
	position:relative;
	display:flex;
	justify-content:space-between;
	align-items:flex-start;
	margin-top: 40px;
}
.timeline::before {
    content:"";
    position:absolute;
    top:32px;
    left:0;
    width:100%;
    height:2px;
    background:#d8d8d8;
    z-index:1;
}
.progress-line {
    position:absolute;
    top:32px;
    left:0;
    height:2px;
    background:#11b982;
    z-index:2;
    animation:fillLine 8s infinite;
}
@keyframes fillLine{
    0%{
        width:0%;
    }
    100%{
        width:100%;
    }
}
.step_progress {
    position:relative;
    z-index:3;
    width:25%;
    text-align:center;
}
.circle_progress {
	width: 64px;
	height: 64px;
	margin: auto;
	border-radius: 50%;
	background: #222;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: 0.4s ease;
	position: relative;
	padding: 7px;
}
.circle_progress::after{
    content:"";
    position:absolute;
    inset:-10px;
    border-radius:50%;
    background:rgba(16,201,143,0.25);
    transform:scale(0);
    animation:pulse 2s infinite;
}
@keyframes pulse{
    0%{
        transform:scale(0.8);
        opacity:0.7;
    }
    100%{
        transform:scale(1.5);
        opacity:0;
    }
}
.title_progress {
	font-family: 'Playfair Display';
	color: #170225;
	font-size: 18px;
	line-height: 1.2;
	margin-top: 20px;
}
.step_progress:nth-child(2) .circle_progress{
    animation:activate 8s infinite;
}
.step_progress:nth-child(3) .circle_progress{
    animation:activate 8s infinite 2s;
}
.step_progress:nth-child(4) .circle_progress{
    animation:activate 8s infinite 4s;
}
.step_progress:nth-child(5) .circle_progress{
    animation:activate 8s infinite 6s;
}

@keyframes activate{
    0%,20%{
        background:#222;
        box-shadow:none;
    }

    25%,100%{
        background:#11b982;
        box-shadow:0 0 25px rgba(16,201,143,0.7);
    }
}
.home_service_box {
	margin-top: 30px;
}
.home_service_box_inner {
	background: #091427;
	padding: 35px 26px;
	border-radius: 15px;
	min-height: 100%;
}
.home_service_box_heading {
	font-family: 'Playfair Display';
	font-size: 22px;
	line-height: 1.2;
	margin-top: 20px;
}
.home_service_box_btn {
	position: relative;
	display: inline-block;
	padding: 11px 22px;
	margin-top: 20px;
	background: #11b982;
	color: #fff !important;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	overflow: hidden;
	z-index: 1;
}
.home_service_box_btn::before {
	content: "";
	position: absolute;
	inset: -2px;
	border-radius: 5px;
	background: linear-gradient(
	90deg,
	#ffffff,
	#091427,
	#ffffff,
	#091427,
	#ffffff
	);
	background-size: 300% 300%;
	animation: borderAnimation 5s linear infinite;
	z-index: -2;
}
.home_service_box_btn::after {
	content: "";
	position: absolute;
	inset: 1px;
	background: #11b982;
	border-radius: 5px;
	z-index: -1;
}
@keyframes borderAnimation {
  0% {
    background-position: 0% 50%;
  }

  100% {
    background-position: 300% 50%;
  }
}

.all_service_btn {
	position: relative;
	display: inline-block;
	padding: 10px 20px;
	margin-top: 35px;
	background: #11b982;
	color: #fff !important;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	overflow: hidden;
	z-index: 1;
}
.all_service_btn::before {
	content: "";
	position: absolute;
	inset: -2px;
	border-radius: 5px;
	background: linear-gradient(
	90deg,
	#ffffff,
	#091427,
	#ffffff,
	#091427,
	#ffffff
	);
	background-size: 300% 300%;
	animation: borderAnimation2 5s linear infinite;
	z-index: -2;
}
.all_service_btn::after {
	content: "";
	position: absolute;
	inset: 2px;
	background: #11b982;
	border-radius: 5px;
	z-index: -1;
}
@keyframes borderAnimation2 {
  0% {
    background-position: 0% 50%;
  }

  100% {
    background-position: 300% 50%;
  }
}
.home_about_sec {
	background: url(../images/about_bg.png) no-repeat right bottom 30px;
	background-size: 100px;
	padding: 90px 0;
}
.home_about_sec_text {
	color: #666;
	margin-top: 30px;
}
.home_choose_section {
	background: #091427;
	padding: 90px 0;
	isolation: isolate;
}
.home_choose_section::after {
	content: "";
	position: absolute;
	left: 50%;
	bottom: -350px;
	transform: translateX(-50%) translateY(120px);
	width: 1400px;
	height: 650px;
	background: radial-gradient(
	ellipse at center,
	rgba(17, 185, 130, 0.75) 0%,
	rgba(17, 185, 130, 0.4) 35%,
	rgba(17, 185, 130, 0.12) 60%,
	transparent 80%
	);
	filter: blur(90px);
	opacity: 0;
	animation: glowLoop 4s ease-in-out infinite;
	z-index: -1;
}
@keyframes glowLoop {
  0% {
    transform: translateX(-50%) translateY(180px) scale(0.8);
    opacity: 0;
  }

  25% {
    transform: translateX(-50%) translateY(0) scale(1);
    opacity: 1;
  }

  75% {
    transform: translateX(-50%) translateY(-20px) scale(1.05);
    opacity: 0.9;
  }

  100% {
    transform: translateX(-50%) translateY(180px) scale(0.8);
    opacity: 0;
  }
}
.home_choose_block {
	margin-top: 55px;
}
.home_choose_block_icon {
	background: #11b982;
	display: inline-block;
	margin: 0 auto;
	border-radius: 50%;
	padding: 16px;
	width: 65px;
	animation: pulse 1.8s infinite;
}
.home_choose_block_text {
	margin-top: 25px;
}
@keyframes pulse {
	0% {
		transform: scale(1);
		box-shadow: 0 0 0 0 rgba(17, 185, 130, 0.7);
	}

	70% {
		transform: scale(1.08);
		box-shadow: 0 0 0 18px rgba(17, 185, 130, 0);
	}

	100% {
		transform: scale(1);
		box-shadow: 0 0 0 0 rgba(17, 185, 130, 0);
	}
}
.home_faq_section {
	padding: 90px 0;
	background: url(../images/progress_bg.png) no-repeat left center;
  	background-size: 100px;
}
.home_book_section {
	padding: 100px 0;
}
.home_book_section_inner {
	background: url(../images/progress_bg.png) #091427 no-repeat left center;
	padding: 60px 20px;
	border-radius: 20px;
}
.home_book_section_btn {
	position: relative;
	display: inline-block;
	padding: 10px 20px;
	margin-top: 35px;
	background: #fff;
	color: #091427 !important;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	overflow: hidden;
	z-index: 1;
}
.home_book_section_btn::before {
	content: "";
	position: absolute;
	inset: -2px;
	border-radius: 5px;
	background: linear-gradient(
	90deg,
	#ffffff,
	#091427,
	#ffffff,
	#091427,
	#ffffff
	);
	background-size: 300% 300%;
	animation: borderAnimation2 5s linear infinite;
	z-index: -2;
}
.home_book_section_btn::after {
	content: "";
	position: absolute;
	inset: 2px;
	background: #fff;
	border-radius: 5px;
	z-index: -1;
}
.footer {
	background: #091427;
	padding: 60px 0;
}
.footer_logo img {
	filter: brightness(0) invert(1);
	width: 200px;
}
.footer_social {
	margin-top: 20px;
}
.footer_social img {
	width: 33px;
	background: #11b982;
	border-radius: 50%;
	padding: 4px;
}
.footer_social a {
	margin: 0 2px;
}
.footer_top_heading {
    font-size: 23px;
	font-weight: 600;
	color: #fff;
	line-height: 1.2;
}
.footer_menu ul {
    list-style-type: none;
    padding: 0;
    margin: 18px 0 0;
}
.footer_menu ul li {
    position: relative;
    margin-top: 4px;
}
.footer_menu ul li a {
	color: #fff;
	font-style: normal;
	text-decoration: none;
	font-size: 15px;
	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: #11b982;
	padding-left: 2px;
}
.footer_contact_info ul {
	padding: 0;
	margin: 20px 0 0;
}
.footer_contact_info ul li {
	color: #fff;
	position: relative;
	list-style: none;
	font-size: 15px;
	margin-top: 18px;
	padding-left: 36px;
}
.footer_contact_info ul li img {
	position: absolute;
	top: -3px;
	left: 0;
	width: 28px;
	background: #11b982;
	border-radius: 50%;
	padding: 4px;
}
.footer_contact_info ul li a {
	color: #fff;
}
.footer_top_block:nth-child(2) {
	padding-left: 30px;
}
.footer_top_block:nth-child(3) {
	padding-left: 50px;
}
.footer_bottom {
	padding: 20px 0 0;
	color: #fff;
	font-size: 14px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	margin-top: 40px;
}
.footer_bottom a {
	color: #fff;
}
#back-to-top {
	background: #11b982;
    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;
}
.sp-easy-accordion .sp-ea-single .ea-header a {
	font-weight: 500 !important;
	font-size: 17px !important;
	padding: 12px 15px !important;
}
.sp-testimonial-free {
	background: #dfecfd !important;
	border: 1px solid #ccdef5 !important;
	border-radius: 10px !important;
	position: relative;
	padding: 60px 20px 25px !important;
	min-height: 260px;
}
.sp-testimonial-client-rating {
	position: absolute;
	top: 30px;
	left: 20px;
}
.sp-testimonial-content, .sp-testimonial-content p {
	font-size: 15px !important;
	padding: 0 !important;
	text-align: left !important;
}
.sp-testimonial-client-name {
	margin: 0 !important;
	font-size: 17px !important;
	font-weight: 500 !important;
	text-align: right !important;
}
.home_testimonial_slider {
	margin-top: 40px;
}
.site-content, .site-main .widecolumn {
    margin-left: 0px !important;
}
.page .entry-header, .blog_page_header {
    display: none;
}
.page .entry-content {
	max-width: 100% !important;
	padding: 0px !important;
}
.content-area, .content-sidebar {
    padding-top: 0px !important;
}
.breadcrumb-container {
	width: 100%;
	color: #999;
	position: relative;
	font-size: 14px;
}
.breadcrumb-container a {
	color: #11b982;
}
.page {
	margin-top: 0 !important;
}
.inner_page_banner {
	background: url(../images/inner_banner.jpg) no-repeat right top;
	background-size: cover;
	padding: 80px 0 60px;
	position: relative;
	margin-top: 88px;
}
.inner_page_banner:before {
	position: absolute;
	content: "";
	top: 0;
	bottom: 0;
	left: 0;
	width: 85%;
	background: #051222;
	background: linear-gradient(90deg, rgba(5, 18, 34, 1) 20%, rgba(5, 18, 34, 0) 100%);
}
.inner_page_banner.about-bg{
	background: url(../images/about-banner.jpg) no-repeat right top;
	background-size: cover;
}
.inner_page_banner.service-bg{
	background: url(../images/service-banner.jpg) no-repeat right top;
	background-size: cover;
}
.inner_page_banner.faq-bg{
	background: url(../images/faq-banner.jpg) no-repeat right top;
	background-size: cover;
}
.inner_page_banner.pricing-bg{
	background: url(../images/pricing-banner.jpg) no-repeat right top;
	background-size: cover;
}
.inner_page_banner.contact-bg{
	background: url(../images/contact-banner.jpg) no-repeat right top;
	background-size: cover;
}
.inner_page_banner .container {
	position: relative;
	z-index: 9;
}
.inner_page_banner_heading {
	font-family: 'Playfair Display';
	font-size: 35px;
	line-height: 1.2;
	margin-top: 15px;
	text-transform: uppercase;
}
.inner_page_banner_heading strong {
	font-weight: normal;
	color: #11b982;
}
.inner_page_banner_text {
	margin-top: 15px;
}
.service_list_container {
	padding: 70px 0;
}
.service_list_page_subheading {
	color: #11b982;
	font-weight: 500;
	margin-bottom: 5px;
}
.service_list_page_heading {
	font-family: 'Playfair Display';
	color: #170225;
	font-size: 35px;
	line-height: 1.2;
	text-transform: uppercase;
}
.service_list_page_text {
	color: #666;
	margin-top: 15px;
	padding: 0 20%;
}
.service_page_box {
	margin-top: 35px;
}
.service_page_box_inner {
	box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.15);
	border-radius: 10px;
	padding: 0 0 5px;
	min-height: 100%;
	overflow: hidden;
}
.service_page_box_heading {
	font-family: 'Playfair Display';
	color: #170225;
	font-size: 22px;
	line-height: 1.2;
	padding: 0 20px;
	text-transform: uppercase;
}
.service_page_box_text {
	color: #666;
	padding: 15px 20px 0;
}
.service_page_box_list {
	padding: 15px 20px 0;
}
.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;
}
.service_page_box_btn {
	margin-left: 20px;
}
.service_page_box_icon {
	background: #11b982;
	width: 70px;
	border-radius: 50%;
	border: 3px solid #fff;
	padding: 15px;
	margin: -30px 0 15px 15px;
	position: relative;
}
.service_choose_container {
	background: #f0f4fb;
	padding: 70px 0;
}
.service_choose_box {
	margin-top: 35px;
}
.service_choose_box_inner {
	box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.1);
	border-radius: 10px;
	padding: 30px 20px;
	min-height: 100%;
	background: #fff;
	color: #666;
}
.service_choose_box_inner strong {
	font-family: 'Playfair Display';
	color: #170225;
	font-size: 22px;
	line-height: 1.2;
	display: block;
	font-weight: normal;
	margin-bottom: 8px;
}
.service_choose_box_inner img {
	background: #11b982;
	width: 65px;
	border-radius: 50%;
	padding: 5px;
	margin-right: 15px;
}
.inner_page_cta_section {
	background: url(../images/cta_bg.jpg) no-repeat center top;
	background-size: cover;
	padding: 60px 0 40px;
	position: relative;
}
.inner_page_cta_section:before {
	position: absolute;
	content: "";
	top: 0;
	bottom: 0;
	left: 0;
	width: 85%;
	background: #051222;
	background: linear-gradient(90deg, rgba(5, 18, 34, 1) 20%, rgba(5, 18, 34, 0) 100%);
}
.inner_page_cta_section .container {
	position: relative;
	z-index: 9;
}
.inner_page_spec_section {
	padding: 30px 0;
}
.inner_page_spec_box {
	display: flex;
	align-items: center;
	border-right: 1px solid #ddd;
	padding-left: 30px;
	color: #666;
	line-height: 1.3;
}
.inner_page_spec_box:first-child {
	padding-left: 12px;
}
.inner_page_spec_box:last-child {
	border-right: none;
}
.inner_page_spec_box img {
	width: 40px;
	margin-right: 15px;
}
.contact_banner_box {
	display: inline-flex;
	align-items: center;
	color: #fff;
	font-size: 15px;
	margin-top: 20px;
	border-right: 1px solid rgba(255, 255, 255, 0.2);
	padding-right: 20px;
	margin-right: 20px;
}
.contact_banner_box img {
	background: #11b982;
	border-radius: 50%;
	width: 50px;
	margin-right: 10px;
	padding: 5px;
}
.contact_banner_box_heading {
	font-weight: 500;
	font-size: 16px;
}
.contact_page_container {
	padding: 70px 0;
}
.contact_page_left_box {
	background: #f0f4fb;
	border: 1px solid #e5eefd;
	border-radius: 15px;
	padding: 30px;
	min-height: 100%;
}
.contact_page_right_box {
	background: #051222;
	border-radius: 15px;
	padding: 30px;
	min-height: 100%;
}
.contact_page_form p {
	margin-bottom: 0 !important;
}
.contact_page_form .contact_input {
	position: relative;
	margin-top: 15px;
}
.contact_page_form .contact_input::before {
	position: absolute;
	content: "";
	background-size: 100% !important;
	width: 18px;
	height: 18px;
	top: 14px;
	left: 25px;
	z-index: 9;
	opacity: 0.6;
}
.name_input:before {
	background: url(../images/form_icon1.png) no-repeat;
}
.phone_input:before {
	background: url(../images/form_icon2.png) no-repeat;
}
.email_input:before {
	background: url(../images/form_icon3.png) no-repeat;
}
.service_input:before {
	background: url(../images/form_icon4.png) no-repeat;
}
.property_input:before {
	background: url(../images/form_icon5.png) no-repeat;
}
.bedroom_input:before {
	background: url(../images/form_icon8.png) no-repeat;
}
.date_input:before {
	background: url(../images/form_icon6.png) no-repeat;
}
.message_input:before {
	background: url(../images/form_icon7.png) no-repeat;
}
.contact_page_form .contact_input input {
	width: 100%;
	min-height: 46px;
	border-radius: 5px;
	border: 1px solid #ddd !important;
	padding-left: 42px;
}
.contact_page_form .contact_input select {
	background: url(../images/dropdown.png) #fff no-repeat center right 10px;
	width: 100%;
	min-height: 46px;
	border-radius: 5px;
	border: 1px solid #ddd !important;
	padding-left: 40px;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}
.contact_page_form .contact_input textarea {
	resize: none;
	height: 150px;
	border-radius: 5px;
	border: 1px solid #ddd !important;
	padding-left: 40px;
}
.contact_page_form .contact_btn input {
	width: 100%;
	min-height: 46px;
	border-radius: 5px;
	border: none !important;
	padding-left: 42px;
	background: #11b982 !important;
	font-size: 16px;
	font-weight: 500;
	text-transform: none;
	margin-top: 15px;
}
.contact_page_form {
	margin-top: 10px;
}
.contact_page_spec {
	font-size: 12px;
	color: #666;
}
.contact_page_spec strong {
	font-size: 15px;
	color: #333;
	font-weight: 500;
	display: block;
}
.contact_page_spec img {
	width: 28px;
	margin-right: 8px;
}
.contact_page_right_box_heading {
	color: #11b982;
	font-weight: 600;
}
.contact_page_right_box_list ul {
	padding: 0;
	margin: 20px 0 0;
}
.contact_page_right_box_list ul li {
	list-style: none;
	display: flex;
	align-items: start;
	color: #ddd;
	font-size: 15px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	padding: 15px 0;
}
.contact_page_right_box_list ul li strong {
	display: block;
	font-weight: 500;
	color: #fff;
	font-size: 16px;
}
.contact_page_right_box_list ul li a {
	color: #ddd;
}
.contact_page_right_box_list ul li img {
	background: #11b982;
	border-radius: 50%;
	width: 45px;
	margin-right: 15px;
	padding: 7px;
}
.contact_follow_heading {
	margin: 30px 0 10px;
	font-weight: 500;
	font-size: 17px;
}
.contact_social {
	display: flex;
	align-items: center;
}
.contact_social a {
	margin-right: 8px;
}
.contact_social img {
	border: 2px solid #fff;
	width: 34px;
	border-radius: 50%;
	padding: 3px;
}
.contact_page_map {
	margin-top: 60px;
}
.contact_page_map iframe {
	border-radius: 15px;
}
.contact_page_bottom_section {
	padding: 60px 0;
}
.contact_page_bottom_section_inner {
	background: #051222;
	border-radius: 15px;
	padding: 20px;
}
.contact_page_bottom_section_icon img {
	background: #11b982;
	border-radius: 50%;
	width: 60px;
	padding: 7px;
}
.contact_page_bottom_section_heading {
	font-family: 'Playfair Display';
	font-size: 25px;
	line-height: 1.2;
}
.contact_page_bottom_section_text {
	font-size: 15px;
	margin-top: 5px;
}
.pricing_page_banner {
	padding: 120px 0;
}
.pricing_help_box {
	background: #195245;
	border-radius: 10px;
	margin-top: 30px;
	padding: 20px;
	color: #ddd;
	line-height: 1.3;
	font-size: 15px;
}
.pricing_help_box strong {
	color: #fff;
	font-size: 16px;
	font-weight: 500;
	display: block;
	margin-bottom: 10px;
}
.pricing_help_box a {
	display: block;
	color: #fff;
	margin-top: 10px;
}
.pricing_help_box img {
	background: #11b982;
	border-radius: 50%;
	width: 45px;
	margin-right: 15px;
	padding: 5px;
}
.number_progress {
  	font-weight: 600;
	color: #11b982;
	margin-top: 30px;
	font-size: 17px;
}
.service_choose_container .title_progress {
	margin-top: 5px;
	font-size: 20px;
}
.text_progress {
	color: #666;
	margin-top: 15px;
	font-size: 15px;
	padding: 0 10%;
}
.about_banner_box {
	background: #fff;
	border-radius: 10px;
	margin: 15px 0;
	padding: 20px;
	color: #555;
	font-size: 15px;
}
.about_banner_box strong {
	font-family: 'Playfair Display';
	font-weight: normal;
	color: #111;
	font-size: 25px;
	display: block;
}
.about_banner_box img {
	background: #11b982;
	border-radius: 50%;
	width: 60px;
	margin-right: 15px;
	padding: 5px;
}
.about_story_text {
	color: #666;
	margin-top: 25px;
}
.about_story_img img {
	border-radius: 10px;
}
.about_story_experience {
	background: url(../images/shine_icon.png) #11b982 no-repeat;
	background-size: 30px;
	background-position: 80% 10px;
	border-radius: 10px;
	position: absolute;
	bottom: 0;
	left: 0;
	width: 130px;
	color: #fff;
	padding: 5px 15px 20px;
	font-size: 15px;
}
.about_story_experience strong {
	display: block;
	font-weight: 500;
	font-size: 45px;
	font-family: 'Playfair Display';
}
.about_choose_box {
	margin-top: 35px;
}
.about_choose_box_inner {
	background: #fff;
	box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.08);
	border-radius: 10px;
	min-height: 100%;
	padding: 30px 20px;
}
.about_choose_box_inner img {
	background: #11b982;
	border-radius: 50%;
	width: 65px;
	padding: 8px;
}
.about_choose_box_heading {
	font-family: 'Playfair Display';
	color: #170225;
	font-size: 21px;
	line-height: 1.2;
}
.about_choose_box_text {
	color: #666;
	margin-top: 20px;
}
.about_page_spec_section {
	background: #051222;
	padding: 50px 0;
}
.about_page_spec_box {
	border-left: 1px solid rgba(255, 255, 255, 0.2);
	color: #eee;
	font-size: 15px;
	padding-left: 30px;
}
.about_page_spec_box:first-child {
	border-left: none;
	padding-left: 12px;
}
.about_page_spec_box img {
	background: #11b982;
	border-radius: 50%;
	width: 55px;
	margin-right: 10px;
	padding: 5px;
}
.about_page_spec_box strong {
	display: block;
	font-weight: normal;
	font-family: 'Playfair Display';
	color: #fff;
	font-size: 24px;
	line-height: 1.2;
}
.about_page_bottom_cta_section {
	background: url(../images/about_cta.jpg) no-repeat;
	background-size: cover;
	margin-top: 60px;
	border-radius: 10px;
	padding: 40px;
	text-align: left;
	overflow: hidden;
}
.about_page_bottom_cta_section::before {
	position: absolute;
	content: "";
	top: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	background: #051222;
	background: linear-gradient(90deg, rgba(5, 18, 34, 1) 20%, rgba(5, 18, 34, 0) 100%);
}
.about_page_bottom_cta_section .row {
	position: relative;
	z-index: 9;
}
.blog_banner_search .search-field {
	width: 100%;
	border: none !important;
	min-height: 45px;
	border-radius: 5px;
	font-size: 15px;
	padding-right: 50px;
}
.blog_banner_search .search-submit {
	background: #11b982 !important;
	position: absolute;
	top: 0;
	right: 0;
	border-radius: 0 5px 5px 0;
	height: 45px;
	width: 45px;
	padding: 10px 13px;
}
.blog_page_header_categories a {
	border: 1px solid #fff;
	color: #fff !important;
	font-size: 14px;
	padding: 6px 15px;
	border-radius: 30px;
	display: inline-block;
	margin: 10px 10px 0 0;
	-moz-transition: all 0.5s ease 0s;
	-webkit-transition: all 0.5s ease 0s;
	transition: all 0.5s ease 0s;
}
.blog_page_header_categories a:hover {
	background: #11b982;
	border-color: #11b982;
}
.blog_page_container {
	padding: 70px 0;
}
.blog_page_box {
	margin-bottom: 35px;
}
.blog_page_box_inner {
	box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.12);
	border-radius: 10px;
	overflow: hidden;
	position: relative;
	padding-bottom: 70px;
	min-height: 100%;
}
.blog_page_box_category a {
	background: #11b9822b;
	color: #11b982;
	font-size: 13px;
	text-transform: uppercase;
	font-weight: 500;
	padding: 2px 10px;
	border-radius: 30px;
}
.blog_page_box_date {
	font-weight: 500;
	font-size: 13px;
	display: flex;
	align-items: center;
	justify-content: end;
	color: #666;
}
.blog_page_box_date img {
	width: 14px;
	margin-right: 5px;
	opacity: 0.6;
}
.blog_page_box_meta {
	padding: 20px 20px 0;
}
.blog_page_box_heading {
	font-family: 'Playfair Display';
	font-size: 22px;
	line-height: 1.2;
	padding: 20px 20px 0;
	color: #170225;
}
.blog_page_box_heading a {
	color: #170225;
}
.blog_page_box_text {
	color: #666;
	padding: 20px 20px 0;
}
.blog_page_box_button {
	display: inline-flex;
	align-items: center;
	color: #11b982 !important;
	font-weight: 500;
	position: absolute;
	bottom: 25px;
	left: 20px;
}
.blog_page_box_button img {
	width: 16px;
	margin-left: 5px;
}
.single-post .header {
	box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.12);
}
.single_post_breadcrumb {
	padding: 100px 0 40px;
}
.post .entry-content {
	color: #666;
}
.post .entry-content strong {
	color: #555;
	font-weight: 600;
}
.blog_sidebar_search {
	box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.1);
	border-radius: 5px;
}
.sidebar_category_widget {
    background: #fff;
	box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.1);
	border-radius: 10px;
	padding: 20px;
	margin-top: 30px;
}
.sidebar_category_widget_heading {
	font-family: 'Playfair Display';
	font-size: 22px;
	line-height: 1.2;
	color: #170225;
	position: relative;
	padding-bottom: 10px;
	margin-bottom: 20px;
}
.sidebar_category_widget_heading:before {
	position: absolute;
	content: "";
	bottom: 0;
	left: 0;
	width: 30px;
	border-bottom: 3px solid #11b982;
}
.category_widget_item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 0;
}
.category_widget_item a {
    color: #666;
    text-decoration: none;
    font-size: 15px;
}
.category_widget_item a:hover {
    color: #11b982;
}
.category_widget_item span {
    color: #666;
    font-size: 15px;
}
.custom_recent_posts {
	padding: 0;
	margin: 0;
}
.custom_recent_posts li {
	list-style: none;
	padding: 8px 0 9px;
	display: flex;
	align-items: center;
}
.custom_recent_posts li img {
	width: 60px;
	margin-right: 10px;
	min-width: 60px;
	height: 60px;
	object-fit: cover;
	max-width: 60px;
	border-radius: 6px;
}
.custom_recent_posts .recent-post-text a {
	color: #444;
	font-size: 15px;
	line-height: 1.2;
	display: block;
	margin-bottom: 5px;
}
.custom_recent_posts .recent_post_date {
	color: #999;
	font-size: 13px;
}
.sidebar_newsletter_widget {
	background: #11b982;
	border-radius: 10px;
	padding: 20px;
	margin-top: 30px;
	margin-bottom: 30px;
}
.sidebar_newsletter_widget_heading {
	font-family: 'Playfair Display';
	font-size: 22px;
	line-height: 1.2;
}
.sidebar_newsletter_widget_text {
	font-size: 15px;
	margin-top: 20px;
}
.sidebar_newsletter_widget_icon {
	width: 35px;
	margin-bottom: 15px;
}
#quoteModal .modal-lg {
	--bs-modal-width: 600px;
}
.quote_modal_form p {
	margin-bottom: 0;
}
.quote_form_label {
	color: #444;
	font-weight: 500;
	margin-top: 25px;
}
.quote_form_input input {
	width: 100%;
	border-radius: 4px;
	border: 1px solid #ddd !important;
	font-size: 15px;
	min-height: 44px;
	margin-top: 5px;
}
.quote_form_input select {
	background: url(../images/dropdown.png) no-repeat center right 10px;
	width: 100%;
	border-radius: 4px;
	border: 1px solid #ddd !important;
	font-size: 15px;
	min-height: 44px;
	margin-top: 5px;
	padding: 0 30px 0 12px;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}
.quote_form_input textarea {
	resize: none;
	border-radius: 4px;
	border: 1px solid #ddd !important;
	font-size: 15px;
	height: 140px;
	margin-top: 5px;
}
.quote_form_sublabel {
	font-size: 13px;
	margin-top: 15px;
	color: #11b982;
	font-weight: 500;
}
.wpcf7-not-valid-tip {
	font-size: 13px !important;
}
.quote_modal_form .contact_btn input {
	background: #11b982 !important;
}
.quote_modal_form .contact_btn input {
	background: #11b982 !important;
	width: 100%;
	margin-top: 20px;
	border-radius: 4px;
	font-size: 16px;
	font-weight: 500;
	text-transform: none;
}
#quoteModal .modal-body {
	-webkit-scrollbar-width: thin;
	-moz-scrollbar-width: thin;
	scrollbar-width: thin;
}
#quoteModal .btn-close {
	background-color: transparent !important;
	box-shadow: none !important;
	filter: brightness(0) invert(1);
	opacity: 1 !important;
}
#quoteModal .modal-header {
	background: #11b982;
}
#quoteModal .modal-title {
	color: #fff;
}
.rmp-menu-title-image {
	filter: brightness(0) invert(1);
	width: 75px;
	height: 75px;
}
.footer_fixed_buttons {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	text-align: center;
	z-index: 99;
}
.footer_btn1 {
	background: #11b982;
	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: 9px 13px 0;
}
.footer_btn2 img {
	animation: tilt-shaking .2s infinite;
}
.footer_btn3 {
	background: #051222;
	color: #fff !important;
	width: 50%;
	float: left;
	padding: 10px 0;
}
#quoteModal {
	z-index: 999999;
}
.error404 .header {
	box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.12);
}
.error_container {
	display: flex;
	min-height: 100vh;
	align-items: center;
	text-align: center;
}
.error_container img {
	margin-bottom: 20px;
}
.thankyou_text {
	color: #666;
}


/*============ Landing page =============*/

.page-id-233 .header {
	padding: 5px 0;
}
.landing_page_banner {
	background: url(../images/landing_banner.jpg) no-repeat center top;
	background-size: cover;
	padding: 195px 0 100px;
	position: relative;
}
.landing_page_banner:before {
	position: absolute;
	content: "";
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: rgba(0, 0, 0, 0.8);
}
.landing_page_banner .container {
	position: relative;
	z-index: 9;
}
.landing_header_phone {
	font-size: 15px;
	color: #555;
	font-weight: 500;
	line-height: 1.3;
	margin-right: 15px;
}
.landing_header_phone a {
	font-size: 18px;
	color: #222;
	font-weight: 500;
}
.landing_header_phone img {
	background: #11b982;
	width: 45px;
	border-radius: 50%;
	padding: 7px;
	margin-right: 10px;
}
.landing_page_banner_heading {
	font-family: 'Playfair Display';
	font-size: 50px;
	line-height: 1.1;
}
.landing_page_banner_heading strong {
	font-size: 70px;
	font-weight: normal;
	color: #11b982;
}
.landing_banner_spec_inner {
	background: #fff;
	border-radius: 10px;
	padding: 20px;
	min-height: 100%;
	text-align: left;
	color: #555;
}
.landing_banner_spec_inner img {
	background: #11b982;
	border-radius: 50%;
	width: 55px;
	margin-right: 10px;
	padding: 5px;
}
.landing_banner_spec {
	margin-top: 30px;
}
.landing_page_form_section {
	padding: 70px 0;
}
.landing_page_form_box {
	box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.15);
	border-radius: 10px;
	padding: 40px 30px;
	margin-top: 35px;
}
.landing_page_form_box p {
	margin-bottom: 0 !important;
}
.landing_page_form_box br {
	display: none;
}
.cf7x-field {
	position: relative;
	margin-bottom: 15px;
}
.cf7x-field input {
	width: 100%;
	border-radius: 4px;
	border: 1px solid #d0d7de !important;
	min-height: 46px;
	padding-left: 42px;
}
.cf7x-icon {
	position: absolute;
	left: 12px;
	top: 10px;
	z-index: 1;
	width: 18px;
	color: #11b982;
}
.cf7x-label {
	font-size: 14px;
	font-weight: 600;
	margin: 15px 0 8px;
	margin-bottom: 10px !important;
}
.cf7x-grid p {
    display: flex;
    gap: 10px;
}
.cf7x-btn-1 {
	border: 2px solid #ddd;
	background: #fff;
	border-radius: 10px;
	cursor: pointer;
	font-size: 12px;
	height: auto;
	display: inline-grid;
	align-items: center;
	justify-content: center;
	color: #444;
	font-weight: 500;
	padding: 10px 15px 11px;
	text-transform: capitalize;
	width: 33.3%;
	text-align: center;
	margin-top: 10px;
}
button.cf7x-btn-1.prop:hover {
  background-color: #0000000a;
  color: #222;
  border-color: #11b982;
}
button.cf7x-btn-1.prop.active {
  border-color: #11b982;
  background: #11b982 !important;
  color: #fff !important;
}
.cf7x-btn-1.prop .emoji {
  font-size: 35px;
  width: 200px !important;
  margin-bottom: 10px !important;
}
.cf7x-flex-new .cf7x-btn {
  display: contents !important;
}
.cf7x-flex-new .wpcf7-list-item {
  margin: 0;
}
.cf7x-flex-new .wpcf7-list-item-label {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  padding: 0 18px;
  border: 2px solid #ddd;
  border-radius: 10px;
  background: #fff;
  color: #444;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.25s ease;
  margin: 3px 2px;
}
.cf7x-flex-new input[type="radio"] {
  display: none;
}
.cf7x-flex-new .wpcf7-list-item-label:hover {
  border-color: #11b982;
  color: #000;
}
.cf7x-flex-new input[type="radio"]:checked + .wpcf7-list-item-label {
  background: #11b982;
  border-color: #11b982;
  color: #fff;
}
button.cf7x-btn.addon {
  text-transform: capitalize;
}
.cf7x-btn.addon {
  padding: 9px 12px;
  border-radius: 30px;
  margin-top: 10px;
}
.cf7x-btn {
  border: 2px solid #ddd;
  background: #fff;
  border-radius: 10px;
  cursor: pointer;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-weight: 500;
  text-transform: capitalize;
}
.cf7x-btn.addon .emoji {
  margin-right: 5px !important;
}
button.cf7x-btn.addon:hover {
  background-color: #0000000a;
  color: #000;
  border-color: #11b982;
}
button.cf7x-btn.addon.active {
  border-color: #11b982;
  background: #11b982 !important;
  color: #fff !important;
}
.cf7x-submit1 {
  width: 100%;
  height: 50px;
  margin-top: 20px;
  font-size: 15px !important;
  background: #11b982 !important;
  border: none;
  color: #fff;
  font-weight: 600;
  border-radius: 10px !important;
  cursor: pointer;
}
.landing_scrolling_section {
	overflow: hidden;
	box-sizing: border-box;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 80px;
	width: 100%;
	white-space: nowrap;
	background: #051222;
}
.landing_scrolling_section_inner {
	display: block;
	width: 200%;
	position: absolute;
	animation: marquee 50s linear infinite;
}
.landing_scrolling_section_inner:hover {
	animation-play-state: paused;
}
@keyframes marquee {
  0% {
    left: 0;
  }
  100% {
    left: -100%;
  }
}
.landing_scrolling_section span {
	display: inline-block;
	color: #fff;
	font-size: 16px;
	margin-right: 110px;
	position: relative;
	padding-left: 40px;
}
.landing_scrolling_section span:before {
	position: absolute;
	content: "";
	background: url("../images/map_icon.png") #11b982 no-repeat center;
	background-size: 25px;
	border-radius: 50%;
	width: 30px;
	height: 30px;
	top: -1px;
	left: 0;
}
.landing_transparency_section {
	padding: 70px 0;
}
.landing_accordion .accordion-header {
	margin: 0;
}
.landing_accordion .accordion-header .accordion-button {
	box-shadow: none !important;
	text-transform: none;
	font-weight: 500;
	background: none !important;
	color: #222 !important;
	padding: 10px 18px;
}
.landing_accordion .accordion-header .accordion-button img {
	background: #11b982;
	width: 45px;
	border-radius: 50%;
	margin-right: 10px;
	padding: 4px;
}
.landing_accordion {
	margin-top: 40px;
}
.landing_work_section {
	padding: 70px 0;
}
#landing_gallery_slide {
	margin-top: 35px;
}
#landing_gallery_slide .item img {
	border-radius: 10px;
}
#landing_gallery_slide .owl-nav {
	display: none;
}
#landing_gallery_slide .owl-dots {
	margin-top: 20px;
}
.landing_testimonial_section {
	background: #f0f4fb;
	border-top: 1px solid #e5eefd;
	padding: 70px 0;
}
.landing_cta_section {
	background: #051222;
	padding: 40px 0;
}
.landing_faq_section {
	padding: 70px 0;
}
.landing_footer {
	background: #091427;
	padding: 50px 0;
}
.landing_footer_logo img {
	filter: brightness(0) invert(1);
	width: 200px;
}
.landing_footer_social {
	margin-top: 20px;
}
.landing_footer_social a {
	margin: 0 2px;
}
.landing_footer_social img {
	width: 35px;
	background: #11b982;
	border-radius: 50%;
	padding: 4px;
}
.landing_footer_contact_box_inner {
	background: rgba(255, 255, 255, 0.15);
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: 10px;
	min-height: 100%;
	padding: 20px;
	color: #fff;
	text-align: left;
}
.landing_footer_contact_box_inner a {
	color: #fff;
}
.landing_footer_contact_box_inner img {
	width: 40px;
	background: #11b982;
	border-radius: 50%;
	padding: 4px;
	margin-right: 12px;
}
.landing_footer_contact_box {
	margin-top: 30px;
}



/*============ Landing page end =============*/

.service_page_banner {
	background-size: cover !important;
	margin-top: 88px;
}
.eol_bg {
	background: url(../images/eol_bg.jpg) no-repeat center right;
}
.service_page_banner_inner {
	position: relative;
	background: #051222;
	padding: 65px 0 40px;
}
.service_page_banner_inner:before {
	position: absolute;
	content: "";
	background: #051222;
	top: 0;
	bottom: 0;
	left: -3000px;
	width: 3000px;
}
.service_page_banner_inner:after {
	position: absolute;
	content: "";
	background: #051222;
	top: 0;
	bottom: 0;
	right: -150px;
	width: 150px;
	clip-path: polygon(0 0, 0% 100%, 100% 0);
}
.inner_page_banner_list ul {
	padding: 0;
	margin: 0;
}
.inner_page_banner_list ul li {
	list-style: none;
	position: relative;
	padding-left: 24px;
	color: #fff;
	margin-top: 4px;
}
.inner_page_banner_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;
}
.service_details_banner_bottom_box {
	background: url("../images/spark_icon.png") #f0f4fb no-repeat center right 30px;
	background-size: 60px;
	padding: 30px;
	border: 1px solid #e6effd;
	border-radius: 10px;
}
.service_details_container {
	padding: 70px 0;
}
.service_details_banner_bottom_box_heading {
	font-family: 'Playfair Display';
	color: #170225;
	font-size: 28px;
	line-height: 1.2;
}
.service_details_banner_bottom_box_text {
	color: #666;
	margin-top: 15px;
}
.service_details_banner_bottom_box_icon img {
	background: #e2e9f4;
	width: 100px;
	border-radius: 50%;
	padding: 10px;
}
.service_details_incluse_box {
	margin-top: 35px;
}
.service_details_incluse_box_inner {
	box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.1);
	border-radius: 10px;
	padding: 25px;
	min-height: 100%;
}
.service_details_incluse_box_heading {
	font-family: 'Playfair Display';
	color: #170225;
	font-size: 25px;
	line-height: 1.2;
}
.service_details_incluse_box_list ul {
	padding: 0;
	margin: 30px 0 0;
}
.service_details_incluse_box_list ul li {
	list-style: none;
	display: flex;
	align-items: center;
	color: #666;
	font-size: 15px;
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
	padding: 18px 0;
}
.service_details_incluse_box_list ul li:first-child {
	padding-top: 0;
}
.service_details_incluse_box_list ul li:last-child {
	border-bottom: none;
	padding-bottom: 0;
}
.service_details_incluse_box_list ul li img {
	background: #11b982;
	border-radius: 50%;
	width: 60px;
	margin-right: 15px;
	padding: 7px;
}
.service_details_incluse_box_list ul li strong {
	display: block;
	font-weight: 500;
	color: #333;
	font-size: 16px;
}
.service_include_box {
	margin-top: 35px;
	color: #555;
	font-size: 15px;
	line-height: 1.3;
}
.service_include_box img {
	background: rgba(17, 185, 130, 0.15);
	border-radius: 50%;
	width: 60px;
	margin-right: 10px;
	padding: 5px;
}



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

@media only screen and (min-width : 300px) and (max-width : 1023px) {
.header_menu, .inner_page_spec_box br, .landing_header_phone {
  display: none !important;
}
.header {
  padding: 5px 0;
}
.header_btn {
  padding: 1px;
  margin-left: 0;
  font-size: 14px;
}
.common_btn span {
  padding: 10px 15px;
}
.logo img {
  width: 142px;
}
.home_banner_section {
  margin-top: 60px;
}
.home_banner_section video {
  height: 730px;
  max-height: 730px;
}
.banner_heading {
  font-size: 35px;
  margin-top: 15px;
}
.home_service_box_btn {
  padding: 10px 16px;
  margin-top: 15px;
  font-size: 15px;
}
.banner_phone img {
  width: 40px;
}
.banner_phone {
  margin: 11px 0 0 10px;
}
.banner_right_box {
  padding: 30px 20px;
}
.banner_right_box_icon {
  width: 60px;
}
.banner_right_box_heading {
  font-size: 24px;
}
.banner_right_box_text {
  font-size: 15px;
  margin-top: 15px;
}
.banner_list ul {
  margin: 20px 0 10px;
}
.home_progress_section_subheading {
  padding: 7px 20px;
}
.home_progress_section {
  background-size: 45px;
  padding: 40px 0 90px;
}
.home_progress_section_heading, .service_list_page_heading {
  font-size: 26px;
}
.home_about_sec, .home_choose_section, .home_faq_section, .home_book_section, .service_list_container, .service_choose_container, .about_page_spec_section, .contact_page_container, .contact_page_bottom_section, .blog_page_container, .landing_page_form_section, .landing_transparency_section, .landing_work_section, .landing_testimonial_section, .landing_faq_section {
  padding: 40px 0;
}
.circle_progress {
  width: 50px;
  height: 50px;
}
.progress-line, .timeline::before {
  top: 26px;
}
.title_progress {
  font-size: 15px;
  padding: 0 15px;
}
.home_service_box_inner {
  padding: 15px 15px 25px;
}
.home_service_box_heading {
  font-size: 20px;
}
.home_service_box, .home_about_sec_text, .about_choose_box, .service_choose_box {
  margin-top: 25px;
}
.home_about_sec, .home_faq_section {
  background-size: 50px;
}
.home_choose_block_text {
  margin-top: 20px;
  font-size: 15px;
}
.home_choose_block {
  margin-top: 30px;
}
.home_book_section_inner {
  padding: 40px 15px;
}
.footer_top_block {
  padding-left: 12px !important;
  margin-top: 30px;
}
.footer_logo img {
  width: 155px;
}
.footer {
  padding: 10px 0 60px;
}
.footer_menu_first ul {
	display: flex;
	flex-wrap: wrap;
}
.footer_menu_first ul li {
	width: 50%;
}
.inner_page_banner {
  padding: 50px 0 30px;
  margin-top: 60px;
}
.inner_page_banner_heading {
  font-size: 30px;
}
.about_banner_box {
  padding: 15px;
}
.about_banner_box img {
  width: 50px;
}
.about_story_experience {
  bottom: 24px;
  left: 12px;
}
.service_list_page_subheading {
  font-size: 15px;
}
.about_page_spec_box {
  border-left: none;
  padding: 5px 12px;
}
.inner_page_progress .step_progress {
  width: 50%;
  margin-top: 30px;
}
.inner_page_progress .progress-line, .inner_page_progress::before {
	display: none;
}
.inner_page_progress {
  margin-top: 10px;
  flex-wrap: wrap;
}
.about_page_bottom_cta_section {
  margin-top: 40px;
  padding: 30px 20px;
}
.about_banner_box strong {
  font-size: 20px;
}
.service_list_page_text {
  padding: 0;
}
.service_choose_box_inner img {
  width: 55px;
  margin-right: 10px;
}
.inner_page_cta_section {
  padding: 40px 0 20px;
}
.inner_page_spec_box {
  border-right: none;
  padding: 10px 12px;
}
.inner_page_spec_box img {
  width: 35px;
  margin-right: 10px;
}
.contact_page_left_box, .contact_page_right_box {
  padding: 30px 20px;
}
.contact_page_spec {
  margin-top: 10px;
}
.contact_banner_box img {
  width: 40px;
}
.contact_banner_box {
  margin-top: 10px;
  margin-right: 10px;
}
.contact_page_map {
  margin-top: 40px;
}
#back-to-top {
  bottom: 55px;
}

.landing_page_banner {
  padding: 130px 0 40px;
}
.landing_page_banner_heading {
  font-size: 30px;
}
.landing_page_banner_heading strong {
  font-size: 40px;
}
.landing_banner_spec_inner {
  padding: 20px 15px;
  line-height: 1.3;
}
.landing_banner_spec_inner img {
  width: 40px;
  margin-right: 8px;
  padding: 3px;
}
.landing_banner_spec {
  margin-top: 20px;
}
.landing_page_form_box {
  padding: 30px 20px;
  margin-top: 25px;
}
.landing_scrolling_section span {
  margin-right: 50px;
}
.landing_accordion .accordion-header .accordion-button img {
  width: 35px;
  padding: 3px;
}
.landing_footer_contact_box_inner img {
  width: 30px;
  margin-right: 10px;
}
.landing_footer_contact_box {
  margin-top: 20px;
}
.landing_footer {
  padding: 40px 0 65px;
}
}

@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) {
.home_banner_section video {
  height: 450px;
}
.contact_page_right_box_list ul li img {
  width: 40px;
  margin-right: 10px;
}
.contact_page_right_box {
  padding: 30px 15px;
}
}

@media only screen and (min-width : 768px) and (max-width : 1024px) and (orientation : landscape) {
.banner_heading {
  font-size: 45px;
}
.header_menu ul li {
  margin-right: 15px;
}
.home_service_box_inner {
  padding: 20px 15px 25px;
}
.service_choose_box_inner img {
  width: 55px;
}
.contact_page_right_box {
  padding: 30px 20px;
}
.pricing_page_banner {
  padding: 70px 0;
}
}

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

}

/* 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) {
.inner_page_banner {
  padding: 120px 0 100px;
}
.home_banner_section video {
  max-height: 750px;
}
}

@media screen and (min-width: 2048px) {
.inner_page_banner {
  padding: 120px 0 100px;
}
.home_banner_section video {
  max-height: 750px;
}
}

@media screen and (min-width: 2550px) {
.inner_page_banner {
  padding: 120px 0 100px;
}
.home_banner_section video {
  max-height: 750px;
}
}