@charset "utf-8";
/* CSS Document */
body {
	padding: 0px;
    margin: 0px;
	font-family: 'Montserrat', sans-serif;	
    font-size: 16px;
    color: #000000;
    font-weight: 400;
}
html {
	scroll-behavior: smooth;
}
a {
	color: #2C3178;
	text-decoration: none;
}
a:hover , a:focus {
	color: #7BBD42;
	text-decoration: underline;
}
hr {
    width: 100%;
	margin: 10px 0%;
    border: none;
	border-top: 1px solid #c7c7c7 !important;
}
p {
	margin: 0;
}
.p-0 {
	padding-right: 0;
	padding-left: 0;
}
#wrap {
	float:left;
	width:100%;
}
:root {
    --container-width: 1250px;
	--container-padding: calc((100vw - var(--container-width)) / 2);
}
.container {
	max-width: 1250px;
	padding:0;
	margin:0px auto;
}
#header {
	position: absolute;
    float: left;
    width: 100%;
    padding: 25px 0;
    z-index: 9;
    background: rgb(255 255 255 / 50%);
    transition: all 0.3s ease-in-out;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}
#header .logo {
	float: left;
	width: 241px;
}
#header .logo img {
	width: 100%;
	height: auto;
}
#header .top-right {
	float: right;
	width: calc(100% - 271px);
}
.top-right .top-call {
	float: right;
	width: 100%;
	text-align: right;
}
.top-right .top-call p {
	position: relative;
	display: inline-block;
	margin: 0;
	padding: 0 0 0 25px;
	font-size: 16px;
	color: #ffffff;
	line-height: 19px;
	font-weight: 400;	 
}
.top-right .top-call a {
	position: relative;
	display: inline-block;
	padding: 15px 15px 15px 35px;
	margin: 0;
	background-color: #2C3178;
	border-radius: 10px;
	font-size: 16px;
	color: #FFFFFF;
	font-weight: 700;
	text-decoration: none;
	text-transform: uppercase;
	transition: all 0.3s ease-in-out;
}
.top-right .top-call a:before {
	position: absolute;
	content: '\e9e7';
	font-family: unicons-line;
	font-size: 16px;
	color: #ffffff;
	left: 10px;
	top: 16px;
}
.top-right .top-call a:hover {
	background-color: #7bbd42;
}
#mainNav {
    float: right;
    width: auto;
    padding: 25px 0 0 0;
}
#mainNav ul.menu {
	padding: 0;
	margin: 0;
	list-style-type: none;
}
#mainNav ul.menu li {
	position: relative;
	display: inline-block;
	margin: 0 15px;
}
#mainNav ul.menu li:last-child {
	margin: 0 0 0 15px;
}
#mainNav ul.menu li a {
	display: block;
	padding: 0 0 10px 0;
	border-bottom: 2px solid transparent;
	font-size: 14px;
	color: #2C3178;
	font-weight: 600;
	text-decoration: none;
	text-transform:uppercase;
	transition: all 0.5s ease-in-out;
	cursor: pointer;
}
#mainNav ul.menu > li > a:hover, 
#mainNav ul.menu > li:hover > a, 
#mainNav ul.menu > li.current-menu-item > a,
#mainNav ul.menu > li.current-menu-ancestor > a,
#mainNav ul.menu > li.current-menu-parent > a {
	color: #7BBD42;
	border-bottom: 2px solid #7BBD42;
}
#mainNav ul.menu li.menu-item-has-children a {
	position: relative;
	padding-right: 20px;
}
#mainNav ul.menu li.menu-item-has-children > a:after {
	content: "\F140";
	font-family: "Material Design Icons";
	font-size: 16px;position: absolute;
	top: 8px;
	right: 0;
	transform: translateY(-50%);
}
#mainNav ul li a svg {
	display: none;
}
#mainNav ul.menu > li:hover > ul.sub-menu {
	display: block;
}
#mainNav ul.menu li ul.sub-menu {
	margin: 0;
	padding: 0;
	list-style-type: none;
	float: left;
	width: 250px;
	background-color: #2c3178;
	position: absolute;
	top: 100%;
	left: 0;
	z-index: 3;
	display: none;
}
#mainNav ul.menu li ul.sub-menu li {
	float: left;
	width: 100%;
	margin: 0 0px;
}
#mainNav ul.menu li ul.sub-menu li a {
	padding: 10px 12px;
	border-bottom: none;
	font-size: 14px;
	color: #FFFFFF;
	text-transform: none;
}
#mainNav ul.menu li ul.sub-menu li a:hover, 
#mainNav ul.menu li ul.sub-menu li:hover > a,
#mainNav ul.menu li ul.sub-menu li.current-menu-ancestor > a, 
#mainNav ul.menu li ul.sub-menu li.current-menu-item > a {
	background-color: #8dbd2b;
	color: #FFFFFF;
	text-decoration: none;
}
#mainNav ul.menu li ul.sub-menu li.menu-item-has-children a {
	padding-right: 26px;
}
#mainNav ul.menu li ul.sub-menu li.menu-item-has-children > a:after {
	content: "\F142";
	right: 10px;
	top: 18px;
}
#mainNav ul.menu li ul li ul.sub-menu {
	top: 0;
	left: 100%;
	display: none;
}
#mainNav ul.menu > li > ul > li:hover > ul.sub-menu {
	display: block;
}

/*-------------- Sticky Header Start --------------*/
#header.sticky {
	position: fixed;
	padding: 10px 0;
	background-color: #ffffff;
	top: 0;
	transition: all .3s ease-in-out;
	-webkit-box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.1);
	-moz-box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.1);
	box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.1);
}
#header.sticky .logo {
	width: 200px;
}
#header.sticky #mainNav {
	padding: 15px 0 0 0;
}
#header.sticky #mainNav ul.menu li a {
	color: #2C3178;
}
#header.sticky #mainNav ul.menu > li > a:hover, 
#header.sticky #mainNav ul.menu > li:hover > a, 
#header.sticky #mainNav ul.menu > li.current-menu-item > a,
#header.sticky #mainNav ul.menu > li.current-menu-ancestor > a,
#header.sticky #mainNav ul.menu > li.current-menu-parent > a {
    color: #7BBD42;
    border-bottom: 2px solid #7BBD42;
}
#header.sticky #mainNav ul.menu li ul.sub-menu li a {
	color: #FFFFFF;
}
/*-------------- Sticky Header End --------------*/
.right-btn {
	position: fixed;
    right: -15px;
    top: 155px;
    z-index: 10;
}
.right-btn a {
	display: inline-block;
    padding: 16px 15px 16px 23px;
    background-color: #7bbd42;
    border-radius: 10px;
    font-size: 16px;
    color: #FFFFFF;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.3s ease-in-out;
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
    white-space: nowrap;
    -webkit-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
}
#slider {
	position: relative;
    float: left;
    width: 100%;
}
#slider .container {
    position: absolute;
    height: 100%;
    right: 0;
    left: 0;
}
#slider .caption {
	position: absolute;
    top: 50%;
    right: 0;
    background-color: rgba(44, 49, 120, 0.7);
    border-radius: 20px;
    width: 510px;
    height: auto;
    padding: 25px 35px;
    text-align: left;
    overflow: hidden;
    transform: translateY(-50%);
    z-index: 2;
}
#slider .caption  h4 {
	margin: 0 0 10px 0;
	font-family: 'Petit Formal Script', cursive;
	font-size: 28px;
	color: #FFFFFF;
	font-weight: 400;
	line-height: 40px;
}
#slider .caption h1 {
	margin: 0 0 20px 0;
	font-family: 'Playfair Display', serif;
	font-size: 40px;
	color: #FFFFFF;
	font-weight: 600;
	line-height: 65px;
}
#slider .caption .appointment-btn {
	position: relative;
	display: inline-block;
	padding: 14px 24px;
	background-color: #7BBD42;
	border-radius: 7px;
	font-size: 18px;
	color: #FFFFFF;
	font-weight: 700;
	line-height: normal;
	text-decoration: none;
	text-transform: uppercase;
	transition: all 0.3s ease-in-out;
	z-index: 1;
	overflow: hidden;
}
#slider .caption .appointment-btn::before {
	content: '';
	z-index: -1;
	position: absolute;
	top: 50%;
	left: 100%;
	margin: -15px 0 0 1px;
	width: 32px;
	height: 20px;
	border-radius: 7px;
	background: #203078;
	-webkit-transform-origin: 100% 50%;
	transform-origin: 100% 50%;
	-webkit-transform: scale3d(1, 2, 1);
	transform: scale3d(1, 2, 1);
	-webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
	transition: transform 0.3s, opacity 0.3s;
	-webkit-transition-timing-function: cubic-bezier(0.7,0,0.9,1);
	transition-timing-function: cubic-bezier(0.7,0,0.9,1);
}
#slider .caption .appointment-btn:hover::before {
	-webkit-transform: scale3d(9, 9, 1);
	transform: scale3d(9, 9, 1);
}
#slider .caption .appointment-btn:hover {
	background-color: #203078;
}
#slider .home-slider.owl-carousel .owl-item {
	overflow: hidden;
}
#slider .home-slider.owl-theme .owl-nav button.owl-prev {
    left: 40px;
}
#slider .home-slider.owl-theme .owl-nav button.owl-next {
    right: 40px;
}
#slider .home-slider.owl-theme .owl-dots {
	position: absolute;
    width: 100%;
    bottom: 30px;
}
#middle {
    float: left;
    width: 100%;
}
#welcomeSec {
	position: relative;
	padding-top: 65px;
	padding-bottom: 0;
	text-align: center;
}
#welcomeSec h3 {
	position: relative;
	display: inline-block;
	margin: 0 0 5px 0;
	padding: 0 0 0 80px;
	font-family: 'Petit Formal Script', cursive;
	font-size: 28px;
	color: #000000;
	font-weight: 400;
	line-height: 40px;
}
#welcomeSec h3:before {
	position: absolute;
	content: '';
	width: 50px;
	height: 2px;
	background-color: #2C3178;
	left: 0;
	top: 20px;
}
#welcomeSec h1 {
	margin: 0 0 30px 0;
	font-family: 'Playfair Display', serif;
	font-size: 30px;
	color: #2C3178;
	font-weight: 600;
	line-height: 40px;
}
#welcomeSec p {
    margin: 0 0 30px 0;
    font-size: 16px;
    color: #000000;
    font-weight: 400;
    line-height: 26px;
}

#serviceMain {
	position: relative;
	padding-top: 65px;
	padding-bottom: 65px;
	text-align: center;
	z-index: 0;
}
#serviceMain:after {
	position: absolute;
	content: '';
	width: 100%;
	height: 100%;
	background-color: rgba(255,255,255,0.95);
	left: 0;
	top: 0;
	z-index: -1;
}
#serviceMain h3 {
	position: relative;
	display: inline-block;
	margin: 0 0 5px 0;
	padding: 0 0 0 80px;
	font-family: 'Petit Formal Script', cursive;
	font-size: 28px;
	color: #000000;
	font-weight: 400;
	line-height: 40px;
}
#serviceMain h3:before {
	position: absolute;
	content: '';
	width: 50px;
	height: 2px;
	background-color: #2C3178;
	left: 0;
	top: 20px;
}
#serviceMain h2 {
	margin: 0 0 70px 0;
	font-family: 'Playfair Display', serif;
	font-size: 30px;
	color: #2C3178;
	font-weight: 600;
	line-height: 40px;
}
#serviceMain ul {
	list-style:none;
	padding:0;
	margin:0;
	display: flex;
    flex-wrap: wrap;
}
#serviceMain ul li {
	width: 20%;
    padding: 15px;
    min-height: 220px;
    display: flex;
    border-right: 1px solid #e5e5e5;
    border-top: 1px solid #e5e5e5;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
#serviceMain ul li:nth-child(-n+5) {
	border-top:0;
}
#serviceMain ul li:nth-child(5n+5) {
	border-right:0;
	border-bottom: 1px solid #e5e5e5;
    margin-bottom: -1px;
}
#serviceMain ul li img {
	margin-bottom: 15px;
    max-width: 100%;
	height: auto;
}
#serviceMain ul li > h4 {
	margin: 0;
	font-family: 'Playfair Display';
	font-size: 20px;
	line-height: 32px;
	font-weight: 600;
	text-align: center;
	text-transform: capitalize;	
	color: #2C3178;
}
#serviceMain .serviceSec {
	width:100%;
	display: flex;
    justify-content: center;
	margin-top: 50px;
}
#serviceMain .serviceSec .viewbtn {
	position: relative;
	display: inline-block;
	padding: 16px 23px;
	margin: 0 10px;
	background-color: #7bbd42;
	border-radius: 10px;
	font-size: 16px;
	color: #FFFFFF;
	font-weight: 700;
	text-decoration: none;
	text-transform: uppercase;
	transition: all 0.3s ease-in-out;
	z-index: 1;
	overflow: hidden;
}
#serviceMain .serviceSec .viewbtn::before {
	position: absolute;
	content:'';
	top: 50%;
    left: 100%;
    margin: -15px 0 0 1px;
    width: 32px;
    height: 20px;
    border-radius: 7px;
    background: #2C3178;
    -webkit-transform-origin: 100% 50%;
    transform-origin: 100% 50%;
    -webkit-transform: scale3d(1, 2, 1);
    transform: scale3d(1, 2, 1);
    -webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
    transition: transform 0.3s, opacity 0.3s;
    -webkit-transition-timing-function: cubic-bezier(0.7,0,0.9,1);
    transition-timing-function: cubic-bezier(0.7,0,0.9,1);
	z-index: -1;
}
#serviceMain .serviceSec .viewbtn:hover::before {	
	-webkit-transform: scale3d(9, 9, 1);
	transform: scale3d(9, 9, 1);
}
#serviceMain .serviceSec .viewbtn:hover {
	background-color: #2C3178;
}
#serviceMain .serviceSec .makeBtn {
	position: relative;
	display: inline-block;
	padding: 16px 23px;
	margin: 0 10px;
	background-color: #2C3178;
	border-radius: 10px;
	font-size: 16px;
	color: #FFFFFF;
	font-weight: 700;
	text-decoration: none;
	text-transform: uppercase;
	transition: all 0.3s ease-in-out;
	z-index: 1;
	overflow: hidden;
}
#serviceMain .serviceSec .makeBtn::before {
	position: absolute;
	content:'';
	top: 50%;
    left: 100%;
    margin: -15px 0 0 1px;
    width: 32px;
    height: 20px;
    border-radius: 7px;
    background: #7bbd42;
    -webkit-transform-origin: 100% 50%;
    transform-origin: 100% 50%;
    -webkit-transform: scale3d(1, 2, 1);
    transform: scale3d(1, 2, 1);
    -webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
    transition: transform 0.3s, opacity 0.3s;
    -webkit-transition-timing-function: cubic-bezier(0.7,0,0.9,1);
    transition-timing-function: cubic-bezier(0.7,0,0.9,1);
	z-index: -1;
}
#serviceMain .serviceSec .makeBtn:hover::before {	
	-webkit-transform: scale3d(9, 9, 1);
	transform: scale3d(9, 9, 1);
}
#serviceMain .serviceSec .makeBtn:hover {
	background-color: #7bbd42;
}

#aboutMain {
	position: relative;
	padding-top: 75px;
	padding-bottom:75px;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	z-index: 0;
}
#aboutMain:after {
	position: absolute;
	content: '';
	width: 100%;
	height: 100%;
	background-color: rgb(44 49 120 / 75%);
	left: 0;
	top: 0;
	z-index: -1;
}
#aboutMain .row {
	display: flex;
    align-items: center;
}
#aboutMain .about-pic {
	float: left;
	width: calc(100% + var(--container-padding));
    margin-left: calc(0px - var(--container-padding));
}
#aboutMain .about-pic img {
	max-width: 100%;
	height: auto;
	border-top-right-radius: 100px;
	border-bottom-right-radius: 100px;
}
#aboutMain .about-cont {
	float: left;
	width: 100%;
	padding-left: 70px;
}
#aboutMain .about-cont h4 {
	position: relative;
    display: inline-block;
    margin: 0;
    padding: 0 70px 0 0;
    font-family: 'Petit Formal Script', cursive;
    font-size: 20px;
    color: #ffffff;
    font-weight: 400;
    line-height: 26px;
}
#aboutMain .about-cont h4:before {
    position: absolute;
    content: '';
    width: 50px;
    height: 2px;
    background-color: #ffffff;
    right: 0;
    top: 13px;
}
#aboutMain .about-cont h2 {
	margin: 0 0 5px 0;
    font-family: 'Playfair Display', serif;
    font-size: 30px;
    color: #7BBD42;
    font-weight: 600;
    line-height: 40px;
}
#aboutMain .about-cont h5 {
	margin: 0 0 10px 0;
    font-size: 14px;
    color: #ffffff;
    font-weight: 400;
    line-height: 24px;
    font-style: italic;
}
#aboutMain .about-cont h5 strong {
    font-weight: 700;
}
#aboutMain .about-cont h6 {
	margin: 0 0 10px 0;
    font-size: 16px;
    color: #ffffff;
    font-weight: 700;
    line-height: 26px;
}
#aboutMain .about-cont p {
    margin: 0 0 30px 0;
    font-size: 16px;
    color: #ffffff;
    font-weight: 400;
    line-height: 26px;
}
#aboutMain .about-cont .read-more {
	position: relative;
	display: inline-block;
	padding: 16px 23px;
	background-color: #7bbd42;
	border-radius: 10px;
	font-size: 16px;
	color: #FFFFFF;
	font-weight: 700;
	text-decoration: none;
	text-transform: uppercase;
	transition: all 0.3s ease-in-out;
	z-index: 1;
	overflow: hidden;
}
#aboutMain .about-cont .read-more::before {
	position: absolute;
	content:'';
	top: 50%;
    left: 100%;
    margin: -15px 0 0 1px;
    width: 32px;
    height: 20px;
    border-radius: 7px;
    background: #000000;
    -webkit-transform-origin: 100% 50%;
    transform-origin: 100% 50%;
    -webkit-transform: scale3d(1, 2, 1);
    transform: scale3d(1, 2, 1);
    -webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
    transition: transform 0.3s, opacity 0.3s;
    -webkit-transition-timing-function: cubic-bezier(0.7,0,0.9,1);
    transition-timing-function: cubic-bezier(0.7,0,0.9,1);
	z-index: -1;
}
#aboutMain .about-cont .read-more:hover::before {	
	-webkit-transform: scale3d(9, 9, 1);
	transform: scale3d(9, 9, 1);
}
#aboutMain .about-cont .read-more:hover {
	background-color: #000000;
}
#clinicMain {
	padding-top: 50px;
	padding-bottom: 50px;
}
#clinicMain .clinic-box {
	float: left;
	width: 100%;
}
#clinicMain .clinic-box .image {
	position: relative;
	float: left;
    width: 60px;
    height: 60px;
	margin-bottom: 20px;
}
#clinicMain .clinic-box .image:after {
	position: absolute;
	content: '';
	width: 60px;
	height: 60px;
	background-color: #ECEDFD;
	border-radius: 50%;
	right: -30px;
    top: -10px;
	z-index: -1;
}
#clinicMain .clinic-box .image img {
	width: 100%;
	height: auto;
}
#clinicMain .clinic-box .content {
	float: left;
	width: 100%;
	padding: 0 10px 0 0;
}
#clinicMain .clinic-box .content h3 {
    display: inline-block;
    margin: 0 0 20px 0;
    font-family: 'Playfair Display', cursive;
    font-size: 20px;
    color: #2C3178;
    font-weight: 600;
    line-height: 32px;
}
#clinicMain .clinic-box .content p {
	margin: 0 0 30px 0;
    font-size: 16px;
    color: #575656;
    font-weight: 400;
    line-height: 26px;
	text-transform: capitalize;
}
#clinicMain .clinic-box .content .read-btn {
	position: relative;
	display: inline-block;	
	padding: 0 25px 0 0;
	border-radius: 10px;
	font-size: 16px;
	color: #2C3178;
	font-weight: 700;
	text-decoration: none;
	text-transform: uppercase;
	transition: all 0.3s ease-in-out;
}
#clinicMain .clinic-box .content .read-btn:after {
	position: absolute;
	content: '\eb6d';
	font-family: unicons-line;
	font-size: 20px;
	color: #2C3178;
	right: 0;
	top: 0;
	line-height: 18px;
	transition: all 0.3s ease-in-out;
}
#clinicMain .clinic-box .content .read-btn:hover,
#clinicMain .clinic-box .content .read-btn:hover::after {
	color: #7BBD42;
}
#testimonialMain {
	padding-bottom: 60px;
}
#testimonialMain .testimonail-sec {
	position: relative;
	float: left;
    width: 100%;
}
#testimonialMain .testimonail-sec .testimonail-pic {
	position: relative;	
	float: left;
    width: 63%;
    z-index: 1;
}
#testimonialMain .testimonail-pic img {
	width: 100%;
	height: auto;
	border-radius: 20px;
}
#testimonialMain .testimonail-sec .testimonail-review {
	float: left;
    width: 37%;
    padding: 0 0 0 50px;
}
#testimonialMain .testimonail-sec .testimonail-review h2 {
    margin: 0 0 5px 0;
    font-family: 'Playfair Display', serif;
    font-size: 40px;
    color: #2C3178;
    font-weight: 600;
    line-height: 50px;
}
#testimonialMain .testimonail-sec .testimonail-review .rating {
    display: inline-block;
    width: 100%;
    font-size: 16px;
    color: #FFB802;
}
#testimonialMain .testimonail-sec .testimonail-review h3 {
    margin: 0;
    font-family: 'Playfair Display', serif;
    font-size: 30px;
    color: #7BBD42;
    font-weight: 600;
    line-height: 40px;
}
#testimonialMain .testimonail-cont {	
    position: absolute;
	width: 55%;
    padding: 40px 65px 40px 65px;
    background-color: #FAFAFD;
	border-radius: 20px;
	right: 0;
	bottom: -60px;
    z-index: 2;
}
#testimonialMain .testimonail-cont h4 {
	position: relative;
    display: inline-block;
    margin: 0;
    padding: 0 0 0 60px;
    font-family: 'Petit Formal Script', cursive;
    font-size: 20px;
    color: #000000;
    font-weight: 400;
    line-height: 26px;
}
#testimonialMain .testimonail-cont h4:before {
    position: absolute;
    content: '';
    width: 50px;
    height: 2px;
    background-color: #2C3178;
    left: 0;
    top: 10px;
}
#testimonialMain .testimonail-cont h2 {
	margin: 0 0 0 0;
    font-family: 'Playfair Display', serif;
    font-size: 30px;
    color: #2C3178;
    font-weight: 600;
    line-height: 40px;
}
#testimonialMain .testimonail-cont .testimonial-listing {
	margin-top: 50px;
}
#testimonialMain .testimonail-cont .testimonial-listing .item {
	position: relative;
	float: left;
	width: 100%;
	padding: 0 0 0 60px;
}
#testimonialMain .testimonail-cont .testimonial-listing .item:before {
	position: absolute;
	content: '';
	width: 38px;
	height: 29px;
	background-image: url(../images/quote-icon.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: 100%;
	left: 0;
	top: 0;
}
#testimonialMain .testimonail-cont .testimonial-listing .item p {
	margin: 0 0 30px 0;position: relative;
	font-size: 16px;
	color: #000000;
	font-weight: 400;
	line-height: 30px;
}
#testimonialMain .testimonail-cont .testimonial-listing .item h5 {
	margin: 0;
	font-size: 20px;
	color: #2C3178;
	font-weight: 700;
	line-height: 30px;
	display: inline-block;
	vertical-align: middle;
}
#testimonialMain .testimonail-cont .testimonial-listing .item img {
    width: 60px;
    height: 60px;
    vertical-align: middle;
    display: inline-block;
    border-radius: 100%;
	margin-right:10px;
}
#testimonialMain .testimonail-cont .testimonial-listing.owl-theme .owl-nav {
	position: static;
	display: flex;
	justify-content: flex-start;
    grid-gap: 20px;
	margin-top: 0;
	margin-left: 60px;
}
#testimonialMain .testimonail-cont .testimonial-listing.owl-theme .owl-nav [class*=owl-] {
	position: static;
}
#testimonialMain .testimonail-cont .testimonial-listing.owl-theme .owl-nav button.owl-prev {
	width: 60px;
    height: 16px;
    background-image: url(../images/owl-prev-blue.png);
    background-repeat: no-repeat;
	background-position: center center;
    transform: translatex(0px);
	transition: all 0.3s ease-in-out;
}
#testimonialMain .testimonail-cont .testimonial-listing.owl-theme .owl-nav button.owl-prev:hover {
	transform: translatex(-10px);
}
#testimonialMain .testimonail-cont .testimonial-listing.owl-theme .owl-nav button.owl-next {
	width: 60px;
	height: 16px;
	background-image:url(../images/owl-next-blue.png);
	background-repeat: no-repeat;
	background-position: center center;
	transform: translatex(0px);
	transition: all 0.3s ease-in-out;
}
#testimonialMain .testimonail-cont .testimonial-listing.owl-theme .owl-nav button.owl-next:hover {
	transform: translatex(10px);
}
#ourTeam {
	padding-top: 120px;
    padding-bottom: 65px;
    text-align: center;
}
#ourTeam h3 {
	position: relative;
	display: inline-block;
	margin: 0 0 5px 0;
	padding: 0 0 0 60px;
	font-family: 'Petit Formal Script', cursive;
	font-size: 20px;
	color: #000000;
	font-weight: 400;
	line-height: 28px;
}
#ourTeam h3:before {
	position: absolute;
	content: '';
	width: 50px;
	height: 2px;
	background-color: #2C3178;
	left: 0;
	top: 15px;
}
#ourTeam h2 {
	margin: 0 0 20px 0;
	font-family: 'Playfair Display';
	font-size: 30px;
	color: #2C3178;
	font-weight: 600;
	line-height: 40px;
}
#ourTeam .team-listing {
	margin-top: 40px;
}
#ourTeam .team-listing .item {
	float: left;
	width: 100%;
}
#ourTeam .team-listing .item .team-pic {
	margin-bottom: 15px;
}
#ourTeam .team-listing .item .team-pic img {
	width: 100%;
	height: auto;
	border-radius: 15px;
}
#ourTeam .team-listing .item h4 {
	margin: 0 0 15px 0;
	font-family: 'Playfair Display', serif;
	font-size: 20px;
	color: #2C3178;
	font-weight: 600;
	line-height: 32px;
}
#ourTeam .team-listing .item h5 {
	margin: 0;
	font-size: 16px;
	color: #000000;
	font-weight: 400;
	line-height: 20px;
}
#ourTeam .team-listing .item p {
	margin: 0;
	font-size: 12px;
	color: #000000;
	font-weight: 400;
	line-height: 20px;
}
#blogMain {
	padding-top: 55px;
	padding-bottom: 55px;
}
#blogMain .blog-title {
	width: 40%;
    margin: 0 auto 40px auto;
}
#blogMain .blog-title h4 {
	position: relative;
    display: inline-block;
    margin: 0 0 5px 0;
    padding: 0 0 0 60px;
    font-family: 'Petit Formal Script', cursive;
    font-size: 20px;
    color: #000000;
    font-weight: 400;
    line-height: 26px;
}
#blogMain .blog-title h4:before {
    position: absolute;
    content: '';
    width: 50px;
    height: 2px;
    background-color: #2C3178;
    left: 0;
    top: 10px;
}
#blogMain .blog-title h2 {
	margin: 0;
    font-family: 'Playfair Display', serif;
    font-size: 25px;
    color: #2C3178;
    font-weight: 600;
    line-height: 40px;
}
#blogMain .item {
	position: relative;
}
#blogMain .item .image {
	margin-bottom: 20px;
}
#blogMain .item .image img {
	width: 100%;
	height: auto;
	border-radius: 10px;
}
#blogMain .item .blog-cont {
	position: relative;
	float: left;
	width: 100%;
	padding-right: 100px;
}
#blogMain .item .blog-cont .post-date {    
    display: inline-block;
	margin: 0 0 12px 0;
	font-size: 14px;
    color: #7BBD42;
    font-weight: 700;
    line-height: 18px;
}
#blogMain .item .blog-cont h4 {
	margin: 0 0 10px 0;
	font-family: 'Playfair Display', serif;
    font-size: 20px;
    color: #2C3178;
    font-weight: 400;
    line-height: 34px;
}
#blogMain .item .blog-cont p {
    margin: 0 0 20px 0;
    font-size: 16px;
    color: #000000;
    font-weight: 400;
    line-height: 26px;
}
#blogMain .item .blog-cont .button {
	position: relative;
	display: inline-block;	
	padding: 0 25px 0 0;
	border-radius: 10px;
	font-size: 16px;
	color: #2C3178;
	font-weight: 700;
	text-decoration: none;
	text-transform: uppercase;
	transition: all 0.3s ease-in-out;
}
#blogMain .item .blog-cont .button:after {
	position: absolute;
	content: '\eb6d';
	font-family: unicons-line;
	font-size: 24px;
	color: #2C3178;
	right: 0;
	top: 0;
	line-height: 18px;
	transition: all 0.3s ease-in-out;
}
#blogMain .item .blog-cont .button:hover,
#blogMain .item .blog-cont .button:hover::after {
	color: #7BBD42;
}
#ourGallery {
	padding-top: 55px;
    padding-bottom: 55px;
	text-align: center;
}
#ourGallery h3 {
	position: relative;
	display: inline-block;
	margin: 0 0 5px 0;
	padding: 0 0 0 60px;
	font-family: 'Petit Formal Script', cursive;
	font-size: 20px;
	color: #000000;
	font-weight: 400;
	line-height: 28px;
}
#ourGallery h3:before {
	position: absolute;
	content: '';
	width: 50px;
	height: 2px;
	background-color: #2C3178;
	left: 0;
	top: 15px;
}
#ourGallery h2 {
	margin: 0 0 20px 0;
	font-family: 'Playfair Display';
	font-size: 30px;
	color: #2C3178;
	font-weight: 600;
	line-height: 40px;
}
#ourGallery .gallery-listing {
	margin-top: 40px;
}
#ourGallery .item {
	float: left;
	width: 100%;
	border-radius: 10px;
    overflow: hidden;
}
#ourGallery .item .gallery-img {
	float: left;
	width: 100%;
}
#ourGallery .gallery-img img {
	width: 100%;
	height: auto;
}
#appointmentMain {
	position:relative;
	padding-top: 55px;
	padding-bottom: 55px;
	background-color: #7BBD42;
}
#appointmentMain .appointment-sec {
	position: relative;
	float: left;
	width: 100%;
}
#appointmentMain .appointment-sec .appointment-pic {
	position: absolute;
	width: 61%;
	height: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 0;
	border-radius: 15px;
}
#appointmentMain .appointment-sec .appointment-pic img {
	width: 100%;
	height: auto;
	border-radius: 10px;
}
#appointmentMain .appointment-sec .appointment-cont {
	position: relative;
	float: right;
    width: 52%;
    margin: 30px 0;
    background-color: #ffffff;
    padding: 30px 35px;
    box-shadow: 0px 0px 15px rgb(0 0 0 / 10%);
    border-radius: 10px;
	z-index: 1;
}
#appointmentMain .appointment-sec .appointment-cont h4 {
    position: relative;
    display: inline-block;
    margin: 0;
    padding: 0 0 0 60px;
    font-family: 'Petit Formal Script', cursive;
    font-size: 22px;
    color: #000000;
    font-weight: 400;
    line-height: 26px;
}
#appointmentMain .appointment-sec .appointment-cont h4:before {
    position: absolute;
    content: '';
    width: 50px;
    height: 2px;
    background-color: #2C3178;
    left: 0;
    top: 10px;
}
#appointmentMain .appointment-sec .appointment-cont h2 {
    margin: 0 0 25px 0;
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    color: #2C3178;
    font-weight: 600;
    line-height: 40px;
}
#appointmentMain .appointment-sec .appointment-cont .field {
	position: relative;
	float: left;
	width: 100%;
}
#appointmentMain .appointment-sec .appointment-cont .field .form-group {
	float: left;
	width: 100%;
	margin-bottom: 20px;
}
#appointmentMain .appointment-sec .appointment-cont .field:last-child{
	margin-bottom: 0;
}
#appointmentMain .appointment-sec .appointment-cont .field .form-group.half {
	width: 48%;
	margin-right: 4%;
}
#appointmentMain .appointment-sec .appointment-cont .field .form-group.half:last-child {
	margin-right: 0;
}
#appointmentMain .appointment-sec .appointment-cont .field .form-group .form-control {
	display: inline-block;
	width: 100%;
    height: 45px;
	padding: 10px 15px;
	border: 1px solid #E5E5E5;
    background-color: transparent;
    border-radius: 7px;
    font-size: 16px;
    color: #6D6D6D;
    font-weight: 400;
    -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}
#appointmentMain .appointment-sec .appointment-cont .field .form-group .form-control::placeholder {
	color: #6D6D6D;
}
#appointmentMain .appointment-sec .appointment-cont .field .form-group input[type="date"]::-webkit-calendar-picker-indicator {
    background-image: url(../images/date_icon.png);
	background-repeat: no-repeat;
	background-position: center center;
    width: 15px;
    height: 15px;
    right: 15px;
}
#appointmentMain .appointment-sec .appointment-cont .field .form-group textarea.form-control {
	height: auto;
	resize: none;
	vertical-align: top;
}
#appointmentMain .appointment-sec .appointment-cont .field .form-group .submit-btn {
	display: inline-block;
    padding: 14px 45px;
    outline: 0;
    border: none;
    background-color: #2C3178;
    border-radius: 7px;
    font-size: 16px;
    color: #ffffff;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0px;
    text-decoration: none;
    transition: all .25s ease-out;
}
#appointmentMain .appointment-sec .appointment-cont .field .form-group .submit-btn:hover {
	background-color: #7BBD42;
}
#ourCertificate {
	padding-top: 80px;
	padding-bottom: 80px;
	text-align: center;
}
#ourCertificate h3 {
	position: relative;
	display: inline-block;
	margin: 0 0 5px 0;
	padding: 0 0 0 60px;
	font-family: 'Petit Formal Script', cursive;
	font-size: 20px;
	color: #000000;
	font-weight: 400;
	line-height: 28px;
}
#ourCertificate h3:before {
	position: absolute;
	content: '';
	width: 50px;
	height: 2px;
	background-color: #2C3178;
	left: 0;
	top: 15px;
}
#ourCertificate h2 {
	margin: 0 0 20px 0;
	font-family: 'Playfair Display';
	font-size: 30px;
	color: #2C3178;
	font-weight: 600;
	line-height: 40px;
}
#ourCertificate .certificate-listing {
	margin-top: 40px;
}
#ourCertificate .item {
	float: left;
	width: 100%;
}
#ourCertificate .item .certificate-logo {
	float: left;
	width: 100%;
	padding: 8px 22px;
	border: 1px solid #E5E5E5;
	border-radius: 7px;	
}
#ourCertificate .item .certificate-logo img {
	width: 100%;
	height: auto;
}
#footer {
	position: relative;
	float: left;
	width: 100%;
	background-color: #2C3178;
}
.footerSection {
	float: left;
	width: 100%;
	padding-top: 60px;
	padding-bottom: 60px;
}
.footerSection h5 {
	position: relative;
	padding: 0 0 0 40px;
	margin: 0 0 20px 0;
	font-family: 'Playfair Display', serif;
	font-size: 18px;
	color: #FFFFFF;
	font-weight: 600;
	line-height: 30px;
}
.footerSection h5:before {
	position: absolute;
	content: '';
	width: 30px;
	height: 2px;
	background-color: #7BBD42;
	left: 0;
	top: 15px;
}
.footerSection .ftr-logo {	
	float: left;
	width: 100%;
}
.footerSection .ftr-logo img {
	max-width: 100%;
	height: auto;
}
.footerSection .map {
	float: left;
    width: 100%;
    padding-top: 30px;
}
.footerSection .map iframe {
	width: 100%;
	height: 145px;
	border-radius: 15px;
}
.footerSection .ftr-menu {
	display: inline-block;
}
.footerSection .ftr-menu ul {
	padding: 0;
	margin: 0;
	list-style: none;
}
.footerSection .ftr-menu ul li {
	display: inline-block;
	width: 100%;
	padding: 0 0 15px 0;
}
.footerSection .ftr-menu ul li a {
	display: inline-block;
	font-size: 16px;
	color: #FFFFFF;
	font-weight: 400;
	text-decoration: none;
 	transition: all .3s ease-in-out;
}
.footerSection .ftr-menu ul li a:hover {
	color: #7BBD42;
}
.footerSection .ftr-contact {
	display: inline-block;
}
.footerSection .ftr-contact ul {
	list-style-type: none;
	margin: 0px;
	padding: 0px;
}
.footerSection .ftr-contact ul li {
	position: relative;
	display: inline-block;
	width: 100%;
	padding: 0 0 25px 30px;
	font-size: 16px;
	color: #FFFFFF;
	font-weight: 400;
	line-height: 26px;
}
.footerSection .ftr-contact ul li:before {
	position: absolute;
	left : 0;
	content: '';
	font-family: unicons-line;
	font-size: 20px;
	color: #7BBD42;
}
.footerSection .ftr-contact ul li.address:before {
	content: '\e8ec';
}
.footerSection .ftr-contact ul li.phone:before {
	content: '\e9e7';
}
.footerSection .ftr-contact ul li.email:before {
	content: '\e9e6';
}
.footerSection .ftr-contact a {
	color: #ffffff;
	text-decoration: none;
	transition: all .3s ease-out;
}
.footerSection .ftr-contact a:hover {
	color: #7BBD42;
}
.footerBottom {
	float: left;
	width: 100%;
	padding-top: 15px;
	padding-bottom: 15px;
	border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.footerBottom .copy-right p {
	margin: 0;
	padding-top: 7px;
	font-size: 16px;
	color: #FFFFFF;
	font-weight: 400;
	line-height: 30px;
}
.footerBottom .ftr-social {
	display: inline-block;
	text-align: right;
}
.footerBottom .ftr-social ul {
	padding: 0;
	margin: 0;
	list-style: none;
}
.footerBottom .ftr-social ul li {
	display: inline-block;
	padding: 0 10px 0 0;
}
.footerBottom .ftr-social ul li:last-child {
	padding:  0;
}
.footerBottom .ftr-social ul li a {
	display: block;
    width: 40px;
    height: 40px;
    background: #7BBD42;
    border-radius: 50%;
    font-size: 20px;
    color: #FFFFFF;
    line-height: 40px;
    text-align: center;
    transition: all 0.3s ease-in-out;
}
.footerBottom .ftr-social ul li a i:before {
	line-height: 40px;
}
.footerBottom .ftr-social ul li a:hover {
	background-color: #ffffff;
	color: #2c3178;
}

/* contact form 7 */
.wpcf7-form-control-wrap { display: block; }
body .wpcf7 form .wpcf7-response-output { float: left; width: 100%; padding: 0 0px; margin: 0px 0 0 0; box-sizing: border-box; border: none; }
body span.wpcf7-not-valid-tip { position: absolute; top: 3px; right: 4px; font-size: 12px; white-space: nowrap; }
body .wpcf7-not-valid {	border-color: #f00 !important; }

/*----------------- Inner Pages -----------------*/
.alignleft, .alignnone { float: left; max-width: 100%; height: auto; margin: 0 30px 30px 0; border-radius: 20px; }
.alignright	{ position: relative; float: right;	max-width: 100%; height: auto; margin: 0 0 30px 30px; border-radius: 20px; }
.aligncenter { float: none; display: block; max-width: 100%; height: auto; margin: 0 auto 30px auto; border-radius: 20px; }

#innerBanner {
    position: relative;
    float: left;
    width: 100%;
    min-height: 500px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}
#innerBanner .container {
    position: absolute;
    height: 100%;
    top: 0;
    right: 0;
    left: 0;
}
#innerBanner .caption {
	width: 40%;
    height: auto;
	padding: 20px 25px;
    background-color: rgba(44, 49, 120, 0.7);
    border-radius: 20px;
	position: absolute;
    top: 55%;
    transform: translateY(-50%);
	left: 0;
    z-index: 1;
}
#innerBanner .caption h1 {
    margin: 0 0 10px 0;
    font-family: 'Playfair Display', serif;
    font-size: 40px;
    color: #FFFFFF;
    font-weight: 600;
    line-height: 50px;
}
#innerBanner .caption .breadcrumbs {
	float: left;
	width: 100%;
	padding: 0;
	margin: 0;
	background-color: transparent;
	border-radius: 0;
	font-size: 16px;
	color: #FFFFFF;
	font-weight: 600;line-height: 20px;
}
#innerBanner .caption .breadcrumbs a {
	color: #FFFFFF;
	text-decoration: none;
 transition:all .3s ease-in-out;
}
#innerBanner .caption .breadcrumbs a:hover {
	color: #7bbd42;
}
#innerBanner .caption .breadcrumbs .current-item {
	color: #7bbd42;
}
.innerSection {
	padding-top: 50px;
	padding-bottom: 50px;
}
.innerSection h2 {
	margin: 0 0 20px 0;
    font-family: 'Playfair Display', serif;
    font-size: 30px;
    color: #2C3178;
    font-weight: 600;
    line-height: 40px;
}
.innerSection h3 {
	margin: 0 0 20px 0;
    font-family: 'Playfair Display', serif;
    font-size: 25px;
    color: #2C3178;
    font-weight: 600;
    line-height: 30px;
}
.innerSection h4 {
    position: relative;
    display: inline-block;
    margin: 0;
    padding: 0 70px 0 0;
    font-family: 'Petit Formal Script', cursive;
    font-size: 22px;
    color: #000000;
    font-weight: 400;
    line-height: 26px;
}
.innerSection h4:before {
    position: absolute;
    content: '';
    width: 50px;
    height: 2px;
    background-color: #2C3178;
    right: 0;
    top: 13px;
}
.innerSection h5 {
	margin: 0 0 20px 0;
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    color: #203078;
    font-weight: 600;
    line-height: 30px;
}
.innerSection p {	
    margin: 0 0 20px 0;
    font-size: 16px;
    color: #000000;
    font-weight: 400;
    line-height: 26px;
}
.innerSection ul {
	padding: 0;
	margin: 0 0 15px 0;
	list-style: none;
}
.innerSection ul li {
	position: relative;
	padding: 0 0 10px 25px;	
	font-size: 16px;
    color: #000000;
    font-weight: 400;
    line-height: 28px;	
}
.innerSection ul li:before {
	position: absolute;
	content: '\e8bc';	
	font-family: 'unicons-solid';
	font-size: 18px;
	color: #7bbd42;
	left: 0;
	top: 0;
}
.innerSection ol {
	margin: 0 0 20px 0;
	padding: 0 0 0 25px;
	list-style: decimal;
}
.innerSection ol li {
	padding: 0 0 10px 0;
	font-size: 16px;
    color: #000000;
    font-weight: 400;
    line-height: 28px;
}

/*----------------- Service Page OLD ---------------------*/
.service-sidebar {
	margin-top: 0px;
    position: sticky;
    top: 150px;
	padding: 20px 15px;
    border-radius: 8px;
	overflow: hidden;
	-webkit-box-shadow: 0 0 15px 0 rgb(0 0 0 / 10%);
    -moz-box-shadow: 0 0 15px 0 rgba(0,0,0,.1);
    box-shadow: 0 0 15px 0 rgb(0 0 0 / 10%);	
}
.service-sidebar h2 {
	display: inline-block;
    width: 100%;
    font-size: 22px;
    color: #2c3178;
    line-height: 28px;
    font-weight: 600;
}
.service-sidebar ul {
	padding: 0;
	margin: 0;
	list-style: none;
}
.service-sidebar ul li {
	position: relative;
	display: inline-block;
	width: 100%;
	padding: 0 0 10px 25px;
}
.service-sidebar ul li:last-child {
	padding: 0 0 0 25px;
}
.service-sidebar ul li:before {
	position: absolute;
    content: '\eb6d';
    font-family: 'unicons-line';
    font-size: 22px;
    color: #2C3178;
    left: 0;
    top: 0;
	cursor: pointer;
}
.service-sidebar ul li a {
	display: inline-block;
	font-size: 16px;
	color: #2C3178;
    line-height: 26px;
    font-weight: 600;
	text-decoration: none;
	transition: all 0.3s ease-in-out;
}
.service-sidebar ul li.current-page-ancestor > a,
.service-sidebar ul li.current_page_item >  a , 
.service-sidebar ul li > a:hover {
	color: #7BBD42;
}
.service-sidebar ul li > ul.sub-menu {
	display: none;
}
.service-sidebar ul li > ul.sub-menu > li:before {
	display: none;
}
.service-sidebar ul li > ul.sub-menu > li {
	padding: 0 0 10px 15px;
}
.service-sidebar ul li > ul.sub-menu > li a {
	font-size: 15px;
}
.service-sidebar ul li.open > ul.sub-menu {
	display: block;
}
.service-sidebar ul > li.open:before {
    transform: rotate(90deg);
}

/*----------------- Service Page ---------------------*/
#innerBanner.services {
	min-height: 700px;
}
#innerBanner.services:after {
    content: "";
	width: 100%;
    height: 300px;
    background: rgba(44,49,120,0);
	background: -moz-linear-gradient(top, rgba(44,49,120,0) 0%, rgba(44,49,120,1) 43%, rgba(44,49,120,1) 100%);
	background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(44,49,120,0)), color-stop(43%, rgba(44,49,120,1)), color-stop(100%, rgba(44,49,120,1)));
	background: -webkit-linear-gradient(top, rgba(44,49,120,0) 0%, rgba(44,49,120,1) 43%, rgba(44,49,120,1) 100%);
	background: -o-linear-gradient(top, rgba(44,49,120,0) 0%, rgba(44,49,120,1) 43%, rgba(44,49,120,1) 100%);
	background: -ms-linear-gradient(top, rgba(44,49,120,0) 0%, rgba(44,49,120,1) 43%, rgba(44,49,120,1) 100%);
	background: linear-gradient(to bottom, rgba(44,49,120,0) 0%, rgba(44,49,120,1) 43%, rgba(44,49,120,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#2c3178', endColorstr='#2c3178', GradientType=0 );
    position: absolute;
    bottom: 0;
	z-index: 1;
}
#innerBanner.services .caption {
    width: 47%;
    height: auto;
    padding: 0;
    background-color: transparent;
    border-radius: 0px;
    position: absolute;
    top: auto;
    bottom: 70px;
    transform: translateY(0%);
    z-index: 2;
}
#innerBanner.services .caption h1 {
    margin: 0;
    font-family: 'Playfair Display', serif;
    font-size: 72px;
    color: #ffffff;
    font-weight: 600;
    line-height: 82px;
}
#innerBanner.services .caption p {
    margin: 10px 0 0 0;
    font-size: 18px;
    color: #ffffff;
    font-weight: 400;
    line-height: 28px;
}
#innerBanner.services .form {
    width: 43%;
    height: auto;
    padding: 40px;
    background-color: #ffffff;
	box-shadow: 0px 0px 25px rgb(0 0 0 / 10%);
    border-radius: 20px;
    position: absolute;
    bottom: -100px;
	right: 0;
    z-index: 2;
}
#innerBanner.services .form h2 {
    margin: 0 0 20px 0;
    font-family: 'Playfair Display', serif;
    font-size: 35px;
    color: #2c3178;
    font-weight: 600;
    line-height: 45px;
	text-align: center;
}
#innerBanner.services .form .wpcf7-form {
	display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
#innerBanner.services .form .form-group {
	width: 100%;
	margin-bottom: 20px;
}
#innerBanner.services .form .form-group.half {
    width: 100%;
}
#innerBanner.services .form .form-group .form-control {
	display: inline-block;
	width: 100%;
    height: 52px;
	padding: 10px 15px;
	border: 1px solid #cacaca;
    background-color: transparent;
    border-radius: 10px;
    font-size: 16px;
    color: #010101;
    font-weight: 400;
}
#innerBanner.services .form .form-group .form-control::placeholder {
	color: rgb(1 1 1 / 60%);
}
#innerBanner.services .form .form-group textarea.form-control {
	height: auto;
	resize: none;
	vertical-align: top;
}
#innerBanner.services .form .form-button {
	position: relative;
    margin-bottom: 0;
}
#innerBanner.services .form .form-button .submit-btn {
	display: block;
    width: 100%;
    padding: 17px 30px;
    outline: 0;
    border: none;
    background-color: #2C3178;
    border-radius: 10px;
    font-size: 16px;
    color: #ffffff;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0px;
    text-decoration: none;
    transition: all .25s ease-out;
}
#innerBanner.services .form .form-button .submit-btn:hover {
	background-color: #7BBD42;
}
#innerBanner.services .form .form-button .wpcf7-spinner {
    margin: 0;
    background-color: #5b5f97;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 6px;
}
#innerBanner.services .form .wpcf7-response-output {
	font-size: 15px;
    text-align: center;
    position: absolute;
    bottom: 10px;
    right: 0;
    left: 0;
}
.serFormMobile {
	position: relative;
	display: none;
    padding-top: 70px;
	padding-bottom: 0;
	overflow: hidden;
}
.serFormMobile .form {
    position: relative;
	width: 100%;
    height: auto;
    padding: 15px;
    background-color: #ffffff;
	box-shadow: 0px 0px 20px rgb(0 0 0 / 10%);
    border-radius: 10px;
}
.serFormMobile .form h2 {
    margin: 0 0 20px 0;
    font-family: 'Playfair Display', serif;
    font-size: 35px;
    color: #2c3178;
    font-weight: 600;
    line-height: 45px;
	text-align: center;
}
.serFormMobile .form .wpcf7-form {
	display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.serFormMobile .form .form-group {
	width: 100%;
	margin-bottom: 20px;
}
.serFormMobile .form .form-group.half {
    width: 100%;
}
.serFormMobile .form .form-group .form-control {
	display: inline-block;
	width: 100%;
    height: 52px;
	padding: 10px 15px;
	border: 1px solid #cacaca;
    background-color: transparent;
    border-radius: 10px;
    font-size: 16px;
    color: #010101;
    font-weight: 400;
}
.serFormMobile .form .form-group .form-control::placeholder {
	color: rgb(1 1 1 / 60%);
}
.serFormMobile .form .form-group textarea.form-control {
	height: auto;
	resize: none;
	vertical-align: top;
}
.serFormMobile .form .form-button {
	position: relative;
    margin-bottom: 0;
}
.serFormMobile .form .form-button .submit-btn {
	display: block;
    width: 100%;
    padding: 17px 30px;
    outline: 0;
    border: none;
    background-color: #2C3178;
    border-radius: 10px;
    font-size: 16px;
    color: #ffffff;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0px;
    text-decoration: none;
    transition: all .25s ease-out;
}
.serFormMobile .form .form-button .submit-btn:hover {
	background-color: #7BBD42;
}
.serFormMobile .form .form-button .wpcf7-spinner {
    margin: 0;
    background-color: #5b5f97;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 6px;
}
.serFormMobile .form .wpcf7-response-output {
	float: none;
    margin-top: 15px;
    font-size: 15px;
    text-align: center;
}
.serSection {
    padding-top: 150px;
	padding-bottom: 70px;
}
.serSection h2 {
	margin: 0 0 20px 0;
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    color: #2C3178;
    font-weight: 600;
    line-height: 58px;
}
.serSection p:last-child {
	margin-bottom: 0;
}
.serBiggestCentre {
    position: relative;
    padding-top: 70px;
    padding-bottom: 70px;
    background-color: #2c3178;
	overflow: hidden;
}
.serBiggestCentre:after {
    content: "";
	width: 100%;
    height: 100%;
    background-image: url(../images/lining-pattern-bg.png);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	mix-blend-mode: multiply;
    position: absolute;
    top: 0;
	left: 0;
	z-index: 1;
}
.serBiggestCentre h2 {
    margin: 0 0 50px 0;
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    color: #ffffff;
    font-weight: 600;
    line-height: 58px;
	text-align: center;
	position: relative;
	z-index: 2;
}
.serBiggestCentre .biggest-centre {
	display: flex;
    flex-wrap: wrap;
    justify-content: center;
	grid-gap: 30px;
	position: relative;
	z-index: 2;
}
.serBiggestCentre .biggest-centre .item {
    width: calc(20% - 24px);
    padding: 20px;
    background-color: #ffffff;
    border-radius: 10px;
	text-align: center;
}
.serBiggestCentre .biggest-centre .item .counts {
    margin: 0;
	font-family: 'Playfair Display', serif;
    font-size: 30px;
    color: #2c3178;
    font-weight: 600;
    line-height: 40px;
}
.serBiggestCentre .biggest-centre .item h5 {
	margin: 10px 0 0 0;
    font-size: 18px;
    color: #2c3178;
    font-weight: 400;
    line-height: 28px;
}
.serFaqs {
    position: relative;
    padding-top: 70px;
    padding-bottom: 70px;
	overflow: hidden;
}
.serFaqs h2 {
    margin: 0 0 50px 0;
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    color: #2c3178;
    font-weight: 600;
    line-height: 58px;
	text-align: center;
}
.serFaqs .faqs {
	display: block;
}
.serFaqs .faqs .accordion {
	counter-reset: customlistcounter;
	width: 80%;
    margin: 0 auto;
}
.serFaqs .faqs .accordion .card {
	counter-increment: customlistcounter;
    margin-bottom: 20px;
    padding: 20px 20px;
    border: 1px solid #cacaca;
    background-color: #ffffff;
    box-shadow: 4px 6px 0px #f0f0f0;
    border-radius: 10px;
}
.serFaqs .faqs .accordion .card:last-child {
	margin-bottom: 0;
}
.serFaqs .faqs .accordion .card .card-header {
	display: flex;
    grid-gap: 10px;
	position: relative;
	padding: 0;
	border: none;
	background-color: transparent;
	border-radius: 0px;
	font-size: 20px;
    color: #2c3178;
	font-weight: 700;
    line-height: 26px;
	cursor: pointer;
}
.serFaqs .faqs .accordion .card .card-header span {
	padding: 2px 0;
}
.serFaqs .faqs .accordion .card .card-header:before {
	content: counter(customlistcounter);
	display: flex;
    justify-content: center;
    align-items: center;
	min-width: 30px;
    height: 30px;
    background-color: #2c3178;
    border-radius: 100%;
    font-size: 16px;
    color: #ffffff;
	font-weight: 700;
}
.serFaqs .faqs .accordion .card .card-header i {
	display: flex;
    justify-content: center;
    align-items: center;
    min-width: 30px;
    height: 30px;
    margin-left: auto;
    font-size: 25px;
}
.serFaqs .faqs .accordion .card .card-header i:before {
    font-weight: 700;
}
.serFaqs .faqs .accordion .card .card-body {
	padding: 10px 40px 0 40px;
}
.serFaqs .faqs .accordion .card .card-body p {
	margin: 0 0 15px 0;
	font-size: 16px;
    color: #000000;
    font-weight: 400;
    line-height: 26px;
}
.serFaqs .faqs .accordion .card .card-body p:last-child {
	margin-bottom: 0;
}
.serSpecialOffer {
    position: relative;
    padding-top: 70px;
    padding-bottom: 70px;
    background-color: #2c3178;
	overflow: hidden;
}
.serSpecialOffer .special-offer {
	display: flex;
    justify-content: center;
}
.serSpecialOffer .special-offer img {
	max-width: 100%;
    height: auto;
	border-radius: 10px;
}
.serHappyPeople {
    position: relative;
    padding-top: 70px;
    padding-bottom: 70px;
    background-color: #fbfafd;
	overflow: hidden;
}
.serHappyPeople h2 {
    margin: 0 0 50px 0;
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    color: #2c3178;
    font-weight: 600;
    line-height: 58px;
	text-align: center;
}
.serHappyPeople .happy-people {
	display: flex;
    flex-wrap: wrap;
    justify-content: center;
	grid-gap: 30px;
}
.serHappyPeople .happy-people .item {
    width: calc(50% - 15px);
}
.serHappyPeople .happy-people .item .video {
	display: block;
	border-radius: 10px;
    overflow: hidden;
}
.serHappyPeople .happy-people .item .video iframe {
	width: 100%;
	height: 343px;
	vertical-align: top;
}
.serHappyPeople .happy-people .item h4 {
	margin: 20px 0 0 0;
	font-family: 'Playfair Display', serif;
    font-size: 24px;
    color: #2c3178;
    font-weight: 600;
    line-height: 34px;
}
.serGallery {
    position: relative;
    padding-top: 70px;
    padding-bottom: 70px;
	overflow: hidden;
}
.serGallery h3 {
    margin: 0;
    font-family: 'Petit Formal Script', cursive;
    font-size: 24px;
    color: #000000;
    font-weight: 400;
    line-height: 34px;
	text-align: center;
}
.serGallery h2 {
    margin: 0 0 50px 0;
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    color: #2c3178;
    font-weight: 600;
    line-height: 58px;
	text-align: center;
}
.serGallery .gallery-listing {
	display: block;
}
.serGallery .gallery-listing .item {
	border-radius: 10px;
    overflow: hidden;
}
.serGallery .gallery-listing .item img {
	width: 100%;
    height: auto;
}
.serCallToAction {
    position: relative;
    padding-top: 70px;
    padding-bottom: 70px;
    background-color: #8dbd2b;
	overflow: hidden;
}
.serCallToAction .call-to-action {
	display: flex;
    flex-wrap: wrap;
	align-items: center;
    grid-gap: 30px;
}
.serCallToAction .call-to-action h2 {
	-webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    width: 1%;
    margin: 0;
    font-family: 'Playfair Display', serif;
    font-size: 38px;
    color: #ffffff;
    font-weight: 600;
    line-height: 48px;
}
.serCallToAction .call-to-action .button {
	display: inline-block;
    padding: 17px 30px;
    outline: 0;
    border: none;
    background-color: #2C3178;
    border-radius: 10px;
    font-size: 16px;
    color: #ffffff;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0px;
    text-decoration: none;
    transition: all .25s ease-out;
}
.serCallToAction .call-to-action .button:hover {
	background-color: #000000;
}

/*----------------- Gallery Page ---------------------*/
.innerSection .foogallery.fg-border-thin .fg-item-inner {
	border-width: 3px;
	border-color: #2C3178;
	box-shadow: none;
}
.innerSection .foogallery .fg-image-overlay {
    background-color: rgba(44, 49, 120, 0.6);
    color: #fff;
}

/*----------------- Testimonail Page ---------------------*/
.testimonail-cont {
	padding-top: 30px;
}
.testimonail-cont .item {
	position: relative;float: left;
	width: 100%;
	margin-bottom: 30px;
	padding: 40px 65px 40px 100px;
    background-color: #FAFAFD;
    border-radius: 20px;
}
.testimonail-cont .item:before {
	position: absolute;
	content: '';
	width: 38px;
	height: 29px;
	background-image: url(../images/quote-icon.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: 100%;
	left: 40px;
	top: 40px;
}
.testimonail-cont .item p {
    margin: 0 0 10px 0;
    position: relative;
    font-size: 16px;
    color: #000000;
    font-weight: 400;
    line-height: 30px;
}
.testimonail-cont .item h5 {
    margin: 0;
    font-size: 24px;
    color: #2C3178;
    font-weight: 700;
    line-height: 30px;
}

/*----------------- blog page -----------------*/
.search .search-form {
	position: relative;
    padding: 20px 0;
}
.search .search-form label {
	font-size: 17px;
    color: #424242;
    font-weight: 700;
    text-transform: uppercase;
}
.search .search-form .search-field {
	display: inline-block;
    width: 100%;
    height: 40px;
    padding: 7px 40px 7px 10px;
    margin-bottom: 0;
    border: 2px solid #f94d11;
	outline: 0;
    background-color: #fff;
    font-size: 16px;
    color: #000;
    line-height: normal;
    vertical-align: top;
    -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}
.search .search-form .search-submit {
     display: inline-block;
    width: 40px;
    height: 40px;
    padding: 0;
    margin-bottom: 0;
    background-color: transparent;
    border: none;
    font-size: 25px;
    color: #f94d11;
    font-weight: 400;
    text-transform: uppercase;
    text-decoration: none;
    line-height: normal;
	cursor: pointer;
	position: absolute;
    top: 49px;
    right: 0;
}
.search .search-form .search-submit:hover {
	color: #000000;
    text-decoration: none;
}
.search .search-form .search-submit i {
	display: flex;
    justify-content: center;
    align-items: center;
}
.blog_items {
    margin-bottom: 30px;
}
.blog_items .blog-image {
    margin-bottom: 20px;
}
.blog_items .blog-image a {
    position: relative;
	vertical-align: top;
}
.blog_items .blog-image img {
    width: 100%;
	height: auto;
	border-radius: 10px;
}
.blog_items h3.entry-title {
    margin: 0 0 10px 0;
    font-family: 'Playfair Display', serif;
    font-size: 21px;
    color: #2C3178;
    font-weight: 400;
    line-height: 34px;
}
.blog_items p.post-meta {
    margin: 0 0 10px 0;
	min-height: auto;
    font-size: 14px;
    color: #7BBD42;
    font-weight: 700;
    line-height: 18px;
}
.blog_items p.post-meta a {
    color: #000000;
	transition: .5s all;
}
.blog_items p.post-meta a:hover {
    color: #f94d11;
}
.blog_items p {		
    margin-bottom: 20px;
	min-height: 75px;
	font-size: 16px;
	color: #000000;
	font-weight: 400;
	line-height: 26px;
}
.blog_items h3 {
    margin: 0 0 10px 0;
    font-size: 24px;
    line-height: 28px;
    color: #f94d11;
	font-weight: 800;
}
.blog_items .blog-read-more {
	position: relative;
    display: inline-block;
    padding: 0 25px 0 0;
    border-radius: 10px;
    font-size: 16px;
    color: #2C3178;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.3s ease-in-out;
}
.blog_items .blog-read-more:hover {
    color: #7BBD42;
}
.blog_items .blog-read-more:after {
	position: absolute;
	content: '\eb6d';
	font-family: unicons-line;
	font-size: 24px;
	color: #2C3178;
	right: 0;
	top: 0;
	line-height: 18px;
	transition: all 0.3s ease-in-out;
}
.blog_items .blog-read-more:hover,
.blog_items .blog-read-more:hover::after {
	color: #7BBD42;
}
.blog_items .share {
    display: inline-block;
    width: 100%;
	margin-top: 20px;
	clear: both;
}
.blog_items .share .apss-social-share a:hover {
	color:#fff;
}
.single .blog_items {
	margin-bottom: 0px;
}
.single .blog_items h2 {
    margin: 0 0 15px 0;
    font-family: 'Playfair Display', serif;
    font-size: 30px;
    color: #2C3178;
    font-weight: 600;
    line-height: 40px;
}
.single .blog_items p.post-meta {
	margin-bottom: 20px;
    font-size: 16px;
    color: #000000;
    font-weight: 400;
    line-height: 26px;
}
.single .blog_items .post-media {
    margin-bottom: 20px;
}
.single .blog_items .post-media img {
    max-width: 100%;
	height: auto;
}
.single .blog_items p {
	min-height: auto;
}
.blog_sidebar {
	padding: 0px;
	margin-bottom: 30px;
	border: 0px solid #dddddd;
	border-radius: 0px;
}
.blog_sidebar:last-child {
    margin-bottom: 0px;
}
.blog_sidebar .title {
	padding: 0 0 7px 0;
	font-family: 'Playfair Display';margin: 0 0 20px 0;
	border-bottom: 1px solid #2c3178;
	font-size: 24px;
    line-height: 28px;
    color: #2c3178;
    font-weight: 800;
    text-transform: uppercase;
}
.blog_sidebar .search-form {
    position: relative;
}
.blog_sidebar .search-form label {
    display: none
}
.blog_sidebar .search-form .search-field {
    display: inline-block;
    width: 100%;
    height: 40px;
    padding: 7px 40px 7px 10px;
    margin-bottom: 0;
    border: 2px solid #2c3178;
	outline: 0;
    background-color: #fff;
    font-size: 16px;
    color: #000;
    line-height: normal;
    vertical-align: top;
    -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}
.blog_sidebar .search-form .search-submit {
	display: inline-block;
    width: 40px;
    height: 40px;
    padding: 0;
    margin-bottom: 0;
    background-color: transparent;
    border: none;
    font-size: 25px;
    color: #2c3178;
    font-weight: 400;
    text-transform: uppercase;
    text-decoration: none;
    line-height: normal;
	cursor: pointer;
	position: absolute;
    top: 0;
    right: 0;
}
.blog_sidebar .search-form .search-submit:hover {
    color: #7bbd42;
    text-decoration: none;
}
.blog_sidebar .search-form .search-submit i {
	display: flex;
    justify-content: center;
    align-items: center;
}
.blog_sidebar ul {
	padding: 0;
	margin: 0;
	list-style-type: none;
}
.blog_sidebar ul li {
	position: relative;
	margin-bottom: 10px;
	padding-left: 25px;	
	font-size: 18px;
	line-height: 28px;
}
.blog_sidebar ul li:before {
	position: absolute;
    content: '\eb6d';
    font-family: unicons-line;
    font-size: 25px;
    color: #2C3178;
    left: 0;
    top: 0;
    line-height: 28px;
    transition: all 0.3s ease-in-out;
}
.blog_sidebar ul li:last-child {
	margin-bottom: 0px;
}
.blog_sidebar ul li a {
	color: #000000;
	text-decoration: none;
}
.blog_sidebar ul li a:hover {
	color: #7bbd42;
	text-decoration: none;
}
.blog_sidebar ul li a + span {
    display: block;
    font-size: 14px;
	color: #999999;
	font-style: italic;
}
.blog_sidebar ul.wp-tag-cloud li {
	display: inline-block;
	margin: 0 4px 7px 0;
	padding-left: 0px;
	background: none;
}
.blog_sidebar ul.wp-tag-cloud li.hover {
	background: none;
}
.blog_sidebar ul.wp-tag-cloud li a {
	display: block;
	padding: 4px 10px;
	border: 1px solid #666666;
	color: #666666;
	text-decoration: none;
}
.blog_sidebar ul.wp-tag-cloud li a:hover {
	color: #f94d11;
	text-decoration: none;
}
.pagination {
	display: block;
	float: left;
	width: 100%;
	padding: 0;
	margin: 0;
	text-align: center;
}
.pagination ul {
	padding: 0px;
	margin: 0px;
	list-style-type: none;
}
.pagination ul li {
	display: inline-block;
	width: auto;
	padding: 0 7px;
	font-size: 16px;
	color: #666666;
	text-align: center;
}
.pagination ul li:before {
	display: none;
}
.pagination ul li a {
	display: block;
	padding: 5px 12px;
	border: 1px solid #2c3178;
	color: #2c3178;
	text-decoration: none;
}
.pagination ul li a:hover {
	border: 1px solid #2c3178;
	background: #2c3178;
	color: #ffffff;
}
.pagination ul li.active .current {
	display: block;
	padding: 5px 12px;
	border: 1px solid #2c3178;
	background: #2c3178;
	color: #ffffff;
}
.user_cmt_box {
	float: left;
	width: 100%;
	margin-top: 30px;
	padding: 30px 0 0 0;
	border-top: 1px dashed #cccccc;
}
.user_cmt_box h3 {
	margin: 0px;
	padding-bottom: 20px;
	font-size: 24px;
	color: #f94d11;
	font-weight: 600;
}
.user_cmt_box .media_list {
	display: inline-block;
	width: 100%;
	padding: 10px 0;
}
.user_cmt_box .media_list .blog-user-image {
	display: inline-block;
	width: 70px;
}
.user_cmt_box .media_list .blog-user-image img {
	width: 100%;
	height: auto;
	border-radius: 50%;
}
.user_cmt_box .media_list .blog-user-comment-body {
	float: right;
	width: calc(100% - 70px);
	padding: 0px 12px;
	box-sizing: border-box;
}
.user_cmt_box .media_list .blog-user-comment-body .user_name {
	display: inline-block;
	width: auto;
	padding-right: 10px;
	font-size: 18px;
	color: #000000;
	font-weight: 600;
}
.user_cmt_box .media_list .blog-user-comment-body .date {
	display: inline-block;
	width: auto;
	padding-right: 10px;
	font-size: 16px;
	color: #777777;
	font-weight: 400;
}
.user_cmt_box .media_list .blog-user-comment-body .comment_reply {
	display: inline-block;
	width: auto;
	font-size: 16px;
	color: #777777;
	font-weight: 400;
}
.user_cmt_box .media_list .blog-user-comment-body .comment_reply a {
	color: #777777;
	text-decoration: none;
}
.user_cmt_box .media_list .blog-user-comment-body .comment_reply a:hover {
	color: #f94d11;
}
.user_cmt_box .media_list .blog-user-comment-body .comment_reply i {
	display: inline-block;
	transform: rotateY(180deg);
}
.user_cmt_box .media_list .blog-user-comment-body p {
	margin: 0;
	padding: 5px 0;
	font-size: 16px;
	color: #000000;
	font-weight: 400;
	line-height: 25px;
}
.user_cmt_box .children {
	margin: 0;
	padding-left: 40px;
}
.comment-respond {
	float: left;
	width: 100%;
	margin-top: 30px;
	padding-top: 30px;
	border-top: 1px dashed #cccccc;
}
.comment-respond h3 {
	margin: 0 0 0 0;
    font-family: 'Playfair Display';
    font-size: 30px;
    color: #2C3178;
    font-weight: 600;
    line-height: 40px;
}
.comment-respond h3 small {
	padding-left: 10px;
	font-size: 17px;
	font-weight: 400;
	text-transform: none;
}
.comment-respond a {
	color: #333333;
	text-decoration: none;
}
.comment-respond a:hover {
	color: #f94d11;
	text-decoration: none;
}
.comment-respond p {
	display: inline-block;
	width: 100%;
	padding: 10px 0px;
	margin: 0px;
	font-size: 15px;
	color: #222;
	font-weight: 400;
	line-height: normal;
}
.comment-respond p label {
	float: left;
	width: 20%;
	margin: 0;
	padding-right: 20px;
	font-weight: 400;
	text-transform: none;
	text-align: right;
	cursor: pointer;
}
.comment-respond p textarea {
	float: left;
	width: 70%;
	height: 100px;
	padding: 10px;
	background-color: #fff;
	border: 1px solid #E5E5E5;
	border-radius: 7px;
	outline: 0;	
	font-size: 16px;
	color: #6d6d6d;
	resize: none;
}
.comment-respond p input {
	float: left;
	width: 70%;
	height: 45px;
	padding: 10px 15px;
	background-color: transparent;
	border: 1px solid #E5E5E5;
	border-radius: 7px;
    font-size: 16px;
	outline: 0;
	font-size: 16px;
	color: #6d6d6d;
}
.comment-respond p.comment-form-cookies-consent input {
	float: left;
	width: 16px;
	height: 16px;
	padding: 0;
	margin: 2px 4px 0 20%;
	background-color: transparent;
	border: none;
}
.comment-respond p.comment-form-cookies-consent label {
	float: left;
	width: calc(70% - 20px);
	margin: 0;
	padding-right: 0px;
	font-size: 14px;
	text-align: left;
}
.comment-respond p .submit {
	display: inline-block;
	width: auto;
	height: auto;
    font-size: 16px;
    line-height: 22px;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    background-color: #2C3178;
	border: 0px solid #ccc;
    padding: 15px 40px;
	margin-left: 20%;
    border-radius: 7px;
	letter-spacing: 0;
	transition: all .3s ease-in-out;
}
.comment-respond p .submit:hover {
    background-color: #7BBD42;
}


/*-------------- Contact Page ----------------*/

.contact-form {
    float: left;
    width: 100%;
}
.contact-form .form-group {
	float: left;
	width: 100%;
	margin-bottom: 20px;
}
.contact-form .form-group:last-child {
	margin-bottom: 0;
}
.contact-form .form-group .form-control {
	display: inline-block;
	width: 100%;
    height: 45px;
	padding: 10px 15px;
	border: 1px solid #E5E5E5;
    background-color: transparent;
    border-radius: 7px;
    font-size: 16px;
    color: #6D6D6D;
    font-weight: 400;
    -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}
.contact-form .form-group .form-control::placeholder {
	color: #6D6D6D;
}
.contact-form .form-group textarea.form-control {
	height: auto;
	resize: none;
	vertical-align: top;
}
.contact-form .form-group select.form-control:not([size]):not([multiple]) {
    height: 45px;
}
.contact-form .form-group .submit-btn {
	display: inline-block;
    padding: 14px 45px;
    outline: 0;
    border: none;
    background-color: #2C3178;
    border-radius: 7px;
    font-size: 16px;
    color: #ffffff;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0px;
    text-decoration: none;
    transition: all .25s ease-out;
}
.contact-form .form-group .submit-btn:hover {
	background-color: #7BBD42;
}
.contact-detail {
    float: left;
    width: 100%;
    padding: 0px 0 0 0;
}
.contact-detail .detail {
    position: relative;
    float: left;
    width: 100%;
    padding: 0px 0px 10px 30px;    
    font-size: 16px;
    color: #000000;
    font-weight: 400;
    line-height: 26px;
}
.contact-detail .detail:before {
	position: absolute;    
    content: '';
    font-family: unicons-line;
    font-size: 20px;
    color: #7BBD42;
	left: 0px;
	top: 0;
}
.contact-detail .address:before {   
    content: '\e8ec';    
}
.contact-detail .phone:before {    
    content: '\e9e7';
}
.contact-detail .email:before {    
    content: '\e9e6';
}
.contact-detail a {
    color: #000000;
    text-decoration: none;
	transition: all 0.3s ease-in-out;
}
.contact-detail a:hover {
	color: #7BBD42;
}
.map_sec {
	float: left;
	width: 100%;
	padding-top: 30px;
}
.map_sec iframe {
	width: 100%;
	height: 450px;
	border-radius: 15px;
}