@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500&display=swap');

* {
	margin:0px;
	padding:0px;
	outline:none;
}
ul {
	list-style:none;
}
a {
	text-decoration:none;
}
a:hover, a:focus {
	text-decoration:none;
}
img {
	border:none;
}
h1,h2,h3,h4,h5,h6,ul,li,p,strong,ol,span,strong {
	padding:0px;
	margin:0px;
}
h1,h2,h3,h4,h5,h6 {
	font-family: 'Montserrat', sans-serif;
}
body {
	font-size:14px;
	color:#000;
	font-family: 'Montserrat', sans-serif;
	box-sizing:border-box;
	overflow-x:hidden;
}
/*************************/
.header_top {
	background:#3c5981;
	padding:10px 0;
}
.header-right ul {
    float: right;
    padding: 5px 0;
    margin: 0px;
}
.header-right ul li {
    display: inline-block;
    padding: 0 10px;
    border-right: 2px solid #fff;
}
.header-right ul li a {
    color: #fff;
    font-size: 15px;
    font-family: 'Montserrat', sans-serif;
}
.header-right ul li a:hover {
	color:#ec008c;
}
/*************************/
#header {
	padding:12px 0;
	background:#fff;
    box-shadow: 0px 8px 30px 8px rgba(42, 67, 113, 0.15);
	border-bottom: 1px solid #e5e5e5;
}
.area_wrap {
	padding-left:40px;
	padding-right:40px;
}
.fixed-top {
	position:sticky;
}
/************************/
#header.header-scrolled {
	padding:8px 0 8px 0;
	display:block;
	transition: all ease 0.4s;
}
#header .logo {
	width:25%;
}
.scroll {
	display:none;
}
#header .logo img {
	width:100%;
	height:auto;
	-moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
	margin-top:-60px;
}
.header-scrolled .logo img {
	width:70% !important;
	height:auto;
	-moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
	margin-top:0px !important;
}
.header-scrolled .main-nav > ul {
	margin-top:15px;
	-moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}
.header_menu {
	display: flow-root;
}
.main-nav > ul {
	margin-top:5px;
	-moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}
.main-nav > ul > li {
	position: relative;
	white-space: nowrap;
	float: left;
}
.main-nav a {
	display: block;
	position: relative;
	color: #66707f;
	padding: 10px 15px;
	transition: 0.3s;
	font-size: 15px;
	font-family: "Montserrat", sans-serif;
	font-weight: 500;
}
.main-nav .lst_nav a {
	display: block;
	position: relative;
	color: #fff;
	padding: 10px 15px;
	transition: 0.3s;
	font-size: 15px;
	font-family: "Montserrat", sans-serif;
	font-weight: 500;
	background:#ec008c;
	border-radius: 25px;
}
.main-nav .lst_nav a:hover {
	background:#ccd7e2;
	color:#ec008c;
}
.lst_nav a::after {
    position: absolute;
    content: '';
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background: #ec008c;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transition: .4s;
    -webkit-transition: .4s;
    -moz-transition: .4s;
    -ms-transition: .4s;
    -o-transition: .4s;
}
.lst_nav a:hover::after {
    width: 85%;
}
.main-nav a:hover, .main-nav .active > a, .main-nav li:hover > a {
	color: #e31e24;
	text-decoration: none;
}
.main-nav .drop-down ul {
	display: block;
	position: absolute;
	left: 0;
	top: calc(100% + 30px);
	z-index: 99;
	opacity: 0;
	visibility: hidden;
	padding: 10px 0;
	background: #fff;
	box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
	transition: ease all 0.3s;
}
.main-nav .drop-down:hover > ul {
	opacity: 1;
	top: 100%;
	visibility: visible;
}
.main-nav .drop-down li {
	min-width: 180px;
	position: relative;
}
.main-nav .drop-down ul a {
	padding: 7px 20px;
	font-size: 14px;
	color: #66707f;
}
.main-nav .drop-down ul a:hover, .main-nav .drop-down ul .active > a, .main-nav .drop-down ul li:hover > a {
	color: #e31e24;
}
.main-nav .drop-down > a:after {
	content: "\f107";
	font-family: FontAwesome;
	padding-left: 10px;
}
.main-nav .drop-down .drop-down ul {
	top: 0;
	left: calc(100% - 30px);
}
.main-nav .drop-down .drop-down:hover > ul {
	opacity: 1;
	top: 0;
	left: 100%;
}
.main-nav .drop-down .drop-down > a {
	padding-right: 35px;
}
.main-nav .drop-down .drop-down > a:after {
	content: "\f105";
	position: absolute;
	right: 15px;
}
/*******************/
.mobile-nav {
	position: fixed;
	top: 0;
	bottom: 0;
	z-index: 9999;
	overflow-y: auto;
	left: -260px;
	width: 260px;
	padding-top: 18px;
	/* background: rgba(19, 39, 57, 0.8); */
	background:rgb(0, 0, 0, 80%);
	transition: 0.4s;
}
.mobile-nav a {
	display: block;
	position: relative;
	color: #fff;
	padding: 10px 20px;
	font-weight: 500;
}
.mobile-nav a:hover, .mobile-nav .active > a, .mobile-nav li:hover > a {
	color: #74b5fc;
	text-decoration: none;
}
.mobile-nav .drop-down > a:after {
	content: "\f078";
	font-family: FontAwesome;
	padding-left: 10px;
	position: absolute;
	right: 15px;
}
.mobile-nav .active.drop-down > a:after {
	content: "\f077";
}
.mobile-nav .drop-down > a {
	padding-right: 35px;
}
.mobile-nav .drop-down ul {
	display: none;
	overflow: hidden;
}
.mobile-nav .drop-down li {
	padding-left: 20px;
}
.mobile-nav-toggle {
	position: fixed;
	right: 0;
	top: 0;
	z-index: 9998;
	border: 0;
	background: none;
	font-size: 24px;
	transition: all 0.4s;
	outline: none !important;
	line-height: 1;
	cursor: pointer;
	text-align: right;
}
.mobile-nav-toggle i {
	margin: 18px 18px 0 0;
	color: #004289;
}
.mobile-nav-overly {
	width: 100%;
	height: 100%;
	z-index: 9997;
	top: 0;
	left: 0;
	position: fixed;
	background: rgba(19, 39, 57, 0.8);
	overflow: hidden;
	display: none;
}
.mobile-nav-active {
	overflow: hidden;
}
.mobile-nav-active .mobile-nav {
	left: 0;
}
.mobile-nav-active .mobile-nav-toggle i {
	color: #fff;
}
/*****************************/
#carousel {
	overflow:hidden;
}
.carousel-inner img {
	width:100%;
	height:auto;
}
.carousel-inner {
	position:relative;
}
#carousel .carousel-control {
	background:none;
	top:46%;
	font-size:20px;
	text-align:center;
	width:40px;
	height:40px;
	opacity:1;
	position:absolute;
}
#carousel .carousel-control-right{
	right:4%;
}
#carousel .carousel-control-left{
	left:2%;
}
#carousel .carousel-control-right span{
	-webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
	visibility:hidden;
	transition:transform 0.5s ease;
	opacity:0;
}
#carousel .carousel-control-left span{
	-webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
	visibility:hidden;
	transition:transform 0.5s ease;
	opacity:0;
}
#carousel:hover .carousel-control-right span{
	-webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
	visibility:visible;
	opacity:1;
}
#carousel:hover .carousel-control-left span{
	-webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
	visibility:visible;
	opacity:1;
}
#carousel .carousel-control span {
	color: #fff;
    background: rgba(0, 0, 0, 0.48);
    height: 50px;
    width: 50px;
    border-radius: 50px;
    z-index: 121;
    line-height: 50px;
    text-align: center;
    position: absolute;
}
/*****************************/
#hm_section {
	padding:80px 0;
	position:relative;
}
#hm_section .hm_sec_bg {
    position: absolute;
    content: '';
    right: 0;
    top: -20px;
    width: 700px;
    z-index: -1;
    height: 500px;
    background: url(../images/pattern.png) no-repeat;
}
.hm_sec_hed span {
	position: relative;
    color: #ec008c;
    font-size: 24px;
    font-weight: 600;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 2px;
    display: block;
}
.hm_sec_hed h1 {
    position: relative;
    color: #000;
    /* font-weight: 700; */
    font-size: 30px;
    display: inline-block;
    text-transform: capitalize;
    padding-bottom: 20px;
}
.hm_sec_hed h1:before {
    position: absolute;
    content: '';
    left: -65px;
    top: 15px;
    height: 3px;
    width: 50px;
    background-color: #ec008c;
}
.hm_sec_para {
    background: #FFF;
    box-shadow: 0px 10px 50px 0px rgba(77, 82, 86, 0.15);
    padding: 40px 7%;
    display: block;
    position: relative;
    z-index: 3;
    margin-right: -60px;
}
.hm_sec_para p {
    font-size: 14px;
    line-height: 24px;
    color: #4c4c4c;
    letter-spacing: 1px;
    padding-bottom: 10px;
    font-family: 'Montserrat', sans-serif;
}
.hm-abt-anch {
	display:block;
	color:#000;
	font-size:16px;
	z-index: 1;
	position:relative;
	font-family: 'Montserrat', sans-serif;
	margin:12px 0;
	-moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}
.hm-abt-anch i {
	font-size:18px;
	margin-left:3px;
	-moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}
.hm-abt-anch:hover i {
	margin-left:10px;
	-moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}
/*****************************/
#hm_why {
	padding:60px 0;
}
.hm_why_hed {
	padding-bottom:30px;
	text-align:center;
}
.hm_why_hed h2 {
	font-size:27px;
	text-align:center;
	color:#000;
	letter-spacing:1px;
	position:relative;
	padding-bottom:10px;
}
.hm_why_hed h2:after {
    position: absolute;
    bottom: 0;
    left: 0;
	right:0;
    width: 100px;
    height: 3px;
	margin:0 auto;
	display:table;
    content: "";
    background: #ec008c;
}
.hm_why_hed p {
    padding: 15px 2% 0;
    font-size: 14px;
    line-height: 24px;
    color: #4c4c4c;
    letter-spacing: 1px;
    font-family: 'Montserrat', sans-serif;
}
.why_bx {
	padding: 20px 15px;
	background: #fff;
    box-shadow: 0 0 15px rgb(235 241 248);
	margin-bottom:20px;
}
.why_main img {
	margin: 0 auto;
	display: table;
	position: relative;
}
.why_dtl {
	position: absolute;
	top: 80px;
	left: 0;
	right: 0;
	text-align: center;
}
.why_dtl h5 a {
	padding-bottom: 5px;
	color: #231f20;
	font-size: 18px;
	letter-spacing: 0.50px;
	font-weight: bold;
	display: block;
}
.why_dtl h5 a:hover {
	color: #ec008c;
}
.why_dtl p {
	font-size: 14px;
    line-height: 24px;
    color: #4c4c4c;
}
.line {
	display: inline-block;
	text-align: center;
	height: 4px;
	position: relative;
	width: 30px;
	margin-top: 10px;
}
.line:after {
	content: "";
	display: block;
	height: 1px;
	left: 0;
	position: absolute;
	bottom: 0;
	width: 30px;
	background: #E3E9ED;
}
.line:before {
	content: "";
	display: block;
	height: 1px;
	left: 0;
	position: absolute;
	top: 0;
	width: 30px;
	background: #E3E9ED;
}
/*****************************/
#hm_service {
    background: url(../images/service-bg.jpg) center center fixed no-repeat;
    background-size: cover;
    position: relative;
    padding: 60px 0;
}
.hm_service_hed {
	padding-bottom:30px;
	text-align:center;
}
.hm_service_hed h2 {
	font-size:27px;
	text-align:center;
	color:#000;
	letter-spacing:1px;
	position:relative;
	padding-bottom:10px;
}
.hm_service_hed h2:after {
    position: absolute;
    bottom: 0;
    left: 0;
	right:0;
    width: 100px;
    height: 3px;
	margin:0 auto;
	display:table;
    content: "";
    background: #ec008c;
}
.hm_service_hed p {
	padding:15px 5% 0;
	font-size: 14px;
    line-height: 24px;
    color: #4c4c4c;
    letter-spacing: 1px;
    font-family: 'Montserrat', sans-serif;
}
.single_service_bx .service_block {
	position:relative;
	margin-bottom:50px;
}
.single_service_bx .service_block img {
	border: 2px solid #ffffff;
    border-radius: 25px 0;
}
/*.single_service_bx .service_block .service_overlay {
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    top: 0;
    z-index: 2;
    opacity: 0;
    transition: all 900ms ease;
}
.single_service_bx .service_block .service_overlay:before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 50%;
    display: block;
    opacity: 0;
    text-align: center;
    -webkit-transform: perspective(400px) rotateX(-90deg);
    transform: perspective(400px) rotateX(-90deg);
    -webkit-transform-origin: top;
    transform-origin: top;
    transition: all 0.5s;
}
.single_service_bx .service_block .service_overlay:after {
    position: absolute;
    content: '';
    left: 0;
    bottom: 0;
    width: 100%;
    height: 50%;
    display: block;
    opacity: 0;
    text-align: center;
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    -webkit-transform-origin: bottom;
    transform-origin: bottom;
    transition: all 0.5s;
}*/
.single_service_bx .service_detail {
    background: #fff;
    position: absolute;
    bottom: 50px;
    left: 50%;
    opacity: 1;
    -webkit-transform: translate(-50%, 50%);
    transform: translate(-50%, 50%);
    width: calc(100% - 60px);
    box-shadow: 0 0 21px rgba(0, 0, 0, .1);
    transition: all .4s ease;
}
.single_service_bx .service_detail h5 {
	font-size:18px;
	text-align:center;
	color:#000;
	display:block;
	padding:15px 10px;
}
.single_service_bx .service_detail h5 a {
    color: #000;
    transition: all .4s ease .2s;
}
.single_service_bx .service_hover {
    position: absolute;
    background: #fff;
    bottom: -32.5px;
    left: 50%;
    opacity: 0;
    -webkit-transform: translateX(-50%) translateY(-30%);
    transform: translateX(-50%) translateY(-30%);
    width: calc(100% - 60px);
    text-align: center;
    z-index: 10;
    padding: 25px 25px;
    box-shadow: 0 0 21px rgba(0, 0, 0, .1);
    transition: all .4s ease;
}
.single_service_bx .service_hover p {
    line-height: 24px;
	font-size: 14px;
    color: #4c4c4c;
    letter-spacing: 0.50px;
    font-family: 'Montserrat', sans-serif;
}
.single_service_bx:hover .service_hover {
    opacity: 1;
    -webkit-transform: translateX(-50%) translateY(0);
    transform: translateX(-50%) translateY(0);
}
.service_link {
	display:block;
	color:#000;
	font-size:15px;
	z-index: 1;
	position:relative;
	font-family: 'Montserrat', sans-serif;
	margin:10px 0 0 0;
	-moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}
.service_link i {
	font-size:18px;
	margin-left:3px;
	-moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}
.service_link:hover i {
	margin-left:10px;
	color:#ec008c;
	-moz-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}
.service_link:hover {
	color:#ec008c;
}
/*****************************/
#hm_other_sec {
	background: url(../images/banner-3.jpg) center center fixed no-repeat;
    background-size: cover;
    position: relative;
}
.service_lft_main {
	padding:80px 0;
}
.service_lft_hed {
	padding-bottom:20px;
}
.ser_brh_bx {
	padding: 10px 15px;
    background: #fff;
    box-shadow: 0 0 7px rgb(235 241 248);
    margin-bottom: 15px;
	display: table;
    width: 60%;
}
.ser_brh_bx h5  {
    color: #000;
    font-size: 18px;
    letter-spacing: 0.50px;
    font-weight: bold;
    display: block;
}
.ser_brh_bx h5 span {
	color:#ec008c;
}
.service_lft_hed h3 {
    font-size: 24px;
    color: #fff;
    letter-spacing: 1px;
    padding: 5px 0 5px 5px;
    border-left: 2px solid #fff;
}
.book_service_bx {
	position:relative;
}
.book_service_bx:before {
    position: absolute;
    content: '';
    background: #ebf1f8;
    width: 1200px;
    height: 571px;
	min-height:auto;
    left: -53px;
}
.service_rht {
	position:relative;
	padding:95px 0;
}
.service_rht .service_rht_hed {
    position: absolute;
    transform: rotate(-90deg);
    top: 45%;
    left: -50%;
    background: #ebf1f8;
    width: 400px;
    height: 50px;
    text-align: center;
}
.service_rht .service_rht_hed h2 {
    line-height: 40px;
    color: #000;
	font-weight:bold;
	font-size:27px;
    padding-top: 20px;
}
.service_rht .service_rht_hed:before {
    position: absolute;
    content: '';
    height: 0px;
    border-right: 25px solid transparent;
    border-top: 25px solid transparent;
    border-left: 25px solid #ebf1f8;
    border-bottom: 25px solid #ebf1f8;
    z-index: 0;
    right: -49px;
    top: 0px;
}
.service_rht .service_rht_hed:after {
    position: absolute;
    content: '';
    height: 0px;
    border-right: 25px solid #ebf1f8;
    border-top: 25px solid transparent;
    border-left: 25px solid transparent;
    border-bottom: 25px solid #ebf1f8;
    z-index: 0;
    left: -49px;
    bottom: 0px;
}
input[type=text], [type=email], [type=number], textarea, select, option {
	line-height: 26px;
    color: #808080;
    min-height: 55px;
    font-size: 14px;
    width: 100%;
    background: #fff;
    padding: 10px 18px;
    border: 1px solid #fff;
    border-radius: 6px;
}
.form-group textarea {
    color: #808080;
    font-size: 15px;
    width: 100%;
    background: #fff;
    padding: 10px 18px;
    border: 1px solid #fff;
    border-radius: 6px;
}
.butn-bg {
	font-size: 15px;
    background: #ec008c;
    color: #fff;
    padding: 5px 15px;
    border: 0px;
    width:100%;
	line-height:40px;
    display: block;
}
.butn-bg:hover {
	background: #000;
	color:#fff;
}
/*****************************/
#hm_footer {
	padding:80px 0 30px 0;
	background:#1e2452;
}
.foot_left {
	border-left:1px solid #ccc;
	border-right:1px solid #ccc;
	padding:15px 10px;
	display:block;
	margin:3rem 0;
}
.foot_logo {
	margin-bottom:10px;
}
.foot_logo img {
	margin:0 auto;
	display:table;
}
.foot_lft_dtl h5 {
    font-size: 18px;
    color: #fff;
	letter-spacing:1px;
    padding-bottom: 20px;
	text-align:center;
} 
.foot_lft_dtl ul {
	margin:0 auto;
	display:table;
}
.foot_lft_dtl ul li {
	float: left;
	padding-right: 10px;
}
.foot_lft_dtl ul li a i {
	width: 30px;
	height: 30px;
	line-height: 30px;
	font-size:15px;
	text-align: center;
	color: #1e2452;
	background: #fff;
}
.foot_mdl_hed h5 {
	font-size: 18px;
    color: #fff;
	letter-spacing:1px;
    padding: 5px 0 5px 5px;
	border-left:2px solid #fff;
}
.foot_nav ul {
	margin-top:15px;
}
.foot_nav ul li a {
	font-size:14px;
	line-height: 24px;
    color: #fff;
	text-transform:capitalize;
    letter-spacing: 1px;
    font-family: 'Montserrat', sans-serif;
}
.foot_nav ul li a:hover {
	color:#ec008c;
}
.foot_rht_hed {
	padding-bottom:15px;
}
.foot_rht_hed h5 {
	font-size: 18px;
    color: #fff;
	letter-spacing:1px;
    padding: 5px 0 5px 5px;
	border-left:2px solid #fff;
}
.foot-add {
	padding-bottom: 20px;
}
.foot-icon {
	float: left;
}
.foot-icon i {
	width: 30px;
    height: 30px;
    line-height: 30px;
    font-size: 15px;
    text-align: center;
    color: #1e2452;
    background: #fff;
}
.foot-para {
	padding-left: 40px;
}
.foot-para p {
	font-size: 14px;
    line-height: 24px;
    color: #fff;
    letter-spacing: 1px;
    font-family: 'Montserrat', sans-serif;
}
.foot-para p a {
	font-size: 14px;
    line-height: 24px;
    color: #fff;
    letter-spacing: 1px;
    font-family: 'Montserrat', sans-serif;
}
.ftr-area p a {
	color:#eb008b;
	font-weight:bold;
}
.ftr-area p {
	font-size: 14px;
    line-height: 24px;
    color: #fff;
	text-align:left;
    letter-spacing: 1px;
    font-family: 'Montserrat', sans-serif;
}
/*****************************/
#inner_banner {
	position:relative;
}
#inner_banner_sec {
	padding:80px 0;
}
.service_left_tp ul li {
	border-bottom:1px solid #fff;
}
.service_left_tp ul li a {
    background: #ebf1f8;
    display: block;
    padding: 16px 20px 16px;
    color: #66707f;
    font-size: 14px;
    width: 100%;
    position: relative;
    transition: all 500ms ease;
    transition-delay: 0.10s;
}
.service_left_tp ul li a:before {
    background: #3c5981;
    content: "";
    height: 30px;
    left: 0;
    position: absolute;
    top: 14px;
    width: 0px;
	display:block;
    z-index: 1;
    transition: all 500ms ease;
    transition-delay: 0.10s;
}
.service_left_tp ul li a:hover {
    background: #ec008c;
    color: #ffffff;
}
.service_left_tp ul li a:hover:before {
    width: 5px;
	transition-delay: 0.10s;
	transition: all 500ms ease;
}
.service_lft_md {
	padding-top:20px;
}
.service_form {
	padding:15px; 
	background:#ebf1f8;
	box-shadow: 0 0 15px rgb(235 241 248);
}
.service_form input[type=text], [type=email], [type=number], textarea, select, option {
	line-height: 24px;
    color: #808080;
    min-height: 24px;
	border: 2px solid #eaeaea;
    font-size: 13px;
    width: 100%;
    background: #fff;
    padding: 8px 18px;
    border-radius: 6px;
}
.service_form textarea {
    color: #808080;
    font-size: 15px;
    width: 100%;
	height:60px;
    background: #fff;
    padding: 8px 18px;
    border: 2px solid #eaeaea;
    border-radius: 6px;
}
.form-control {
	font-size:.850rem;
}
.service_form .butn-bg {
	font-size: 15px;
    background: #ec008c;
    color: #fff;
    padding: 5px 10px;
    border: 0px;
    width:100%;
	line-height:40px;
    display: block;
}
.service_form .butn-bg:hover {
	background: #000;
	color:#fff;
}
.inn_prd_hed {
    height: 50px;
    background: #ebf1f8;
    border-radius: 8px;
    margin-bottom: 30px;
}
.inn_prd_hed h4 {
    text-align: center;
    letter-spacing: 1px;
	font-size:21px;
    font-weight: bold;
    line-height: 50px;
    color: #ec008c;
}
.inn_prd_para h5 {
	color: #000;
    font-size: 18px;
    letter-spacing: 0.50px;
	padding-bottom:10px;
    display: block;
}
.inn_prd_para p {
    font-size: 13px;
    line-height: 22px;
    color: #4c4c4c;
    padding-bottom: 10px;
    font-family: 'Montserrat', sans-serif;
}
.border {
    border: 2px solid #dee2e6;
	margin:30px 0;
}
.inn_prd_para1 {
	padding-bottom:30px;
}
.inn_prd_para1 p {
    font-size: 13px;
    line-height: 22px;
    color: #4c4c4c;
	text-align:center;
    font-family: 'Montserrat', sans-serif;
}
.inn_prd_lst h5 {
	color: #000;
    font-size: 18px;
    letter-spacing: 0.50px;
	padding-bottom:10px;
    display: block;
}
.inn_prd_lst p {
    font-size: 13px;
    line-height: 22px;
    color: #4c4c4c;
    padding-bottom: 10px;
    font-family: 'Montserrat', sans-serif;
}
.inn_prod_table thead tr th {
    color: #555;
    background: #ebf1f8;
    font-size: 14px;
    padding: 15px 15px;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.25px;
	width:50%;
}
.inn_prod_table tbody tr td {
    color: #555;
    background: #fff;
    font-size: 13px;
    padding: 10px 15px;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.25px;
    line-height: 22px;
    vertical-align: middle;
}
.owl-nav {
	display:none;
}
.inn_prd_brand {
	padding-top:30px;
}
.inn_prd_brand h2 {
	font-size:27px;
	text-align:center;
	color:#000;
	letter-spacing:1px;
	position:relative;
	padding-bottom:10px;
}
.inn_prd_brand h2:after {
    position: absolute;
    bottom: 0;
    left: 0;
	right:0;
    width: 100px;
    height: 3px;
	margin:0 auto;
	display:table;
    content: "";
    background: #ec008c;
}
.brand {
	padding-top:30px;
}
.brand .item img {
    width: 150px !important;
	display:block;
}
/*****************************/
#inner_about_sec {
    padding: 0 0 80px 0;
}
.inn_abt_rht_bx img {
	margin-bottom:15px;
}
.inn_abt_lft {
	padding-top:60px;
	padding-bottom:25px;	
}
.inn_abt_lft_tp span {
    position: relative;
    color: #3c5981;
    font-size: 24px;
    font-weight: 600;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 2px;
    display: block;
}
.inn_abt_lft_tp h1 {
    position: relative;
    color: #000;
	font-weight:bold;
    font-size: 30px;
    display: inline-block;
    text-transform: capitalize;
    padding-bottom: 15px;
}
.inn_abt_lft_tp h1:before {
    position: absolute;
    content: '';
    left: 0px;
    bottom: 0px;
    width: 120px;
    height: 2px;
    background-color: #ec008c;
}
.inn_abt_lft_tp h1:after {
    position: absolute;
    content: '';
    left: 0px;
    bottom: 0px;
    width: 40px;
    height: 2px;
    background-color: #3c5981;
}
.inn_abt_lft_tp {
	padding-bottom:20px;
}
.inn_abt_para span {
	font-size: 14px;
    line-height: 24px;
    color: #4c4c4c;
    letter-spacing: 1px;
	display:block;
	font-weight:bold;
    padding-bottom: 15px;
    font-family: 'Montserrat', sans-serif;
}
.inn_abt_para p {
    font-size: 14px;
    line-height: 24px;
    color: #4c4c4c;
    letter-spacing: 1px;
    padding-bottom: 10px;
    font-family: 'Montserrat', sans-serif;
}
.inn_abt_lst {
	position: relative;
    z-index: 1;
    text-align: center;
    margin-right: -80px;
    background-color: #ffffff;
    -webkit-box-shadow: 0px 0px 25px rgb(0 0 0 / 15%);
    -ms-box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.15);
    box-shadow: 0px 0px 25px rgb(0 0 0 / 15%);
}
.border-line {
	border-right:1px solid #ccc;
}
.inner_abt_frst {
	padding:25px 0;
}
.inner_abt_frst span {
	font-size: 35px;
    font-weight: bold;
    color: #ec008c;
    text-align: center;
    display: block;
}
.inner_abt_frst h6 {
	font-size:16px;
	color:#4c4c4c;
	font-weight:bold;
	letter-spacing:0.25px;
}
/*****************************/
#inner_about_sect_mdd {
    padding: 0 0 60px 0;
}
.area_lst_hed {
	background:#f3f5f9;
	padding-bottom:15px;
}
.area_hed h4 {
	font-size: 20px;
    background: #0366b7;
    position: relative;
    color: #fff;
    padding: 10px 15px;
    margin-bottom: 15px;
}
.area_hed ul li a {
	padding: 5px 15px;
	font-size:16px;
	color:#4c4c4c;
	display:block;
}
.area_hed ul li a i {
	margin-right:5px;
}
.area_hed ul li a:hover {
	background:#fff;
	display:block;
}
/*****************************/
#inner_contact_sec {
	padding:80px 0 60px 0;
}
.inn_contact_lft {
	padding: 50px 35px 45px;
    background-color: #3c5981;
    -webkit-box-shadow: 0px 0px 45px rgb(0 0 0 / 20%);
    -ms-box-shadow: 0px 0px 45px rgba(0, 0, 0, 0.20);
    box-shadow: 0px 0px 45px rgb(0 0 0 / 20%);
	margin-bottom:25px;
}
.inn_cont_hed h3 {
	font-size: 24px;
    color: #fff;
	letter-spacing:1px;
	font-weight:bold;
	padding-bottom:10px;
}
.inn_cont_hed span {
    font-size: 14px;
    color: #fff;
    display: block;
    font-family: 'Montserrat', sans-serif;
}
.inn_cont_hed, .inn_contact_rht {
	padding-bottom:20px;
}
.inn_contact_rht span {
	font-size: 14px;
    line-height: 24px;
    color: #4c4c4c;
    letter-spacing: 1px;
	display:block;
	font-weight:bold;
    font-family: 'Montserrat', sans-serif;
}
.inn_contact_rht h1 {
    position: relative;
    color: #000;
	font-weight:bold;
    font-size: 30px;
    display: inline-block;
    text-transform: capitalize;
    padding-bottom: 15px;
}
.inn_contact_rht h1:before {
    position: absolute;
    content: '';
    left: 0px;
    bottom: 0px;
    width: 120px;
    height: 2px;
    background-color: #ec008c;
}
.inn_contact_rht h1:after {
    position: absolute;
    content: '';
    left: 0px;
    bottom: 0px;
    width: 40px;
    height: 2px;
    background-color: #3c5981;
}
.contact-form .form-group input[type="text"], .contact-form .form-group input[type="password"], .contact-form .form-group input[type="tel"], .contact-form .form-group input[type="email"], .contact-form .form-group select {
    position: relative;
    display: block;
    width: 100%;
    color: #a5a5a5;
    line-height: 26px;
    padding: 10px 28px;
    height: 60px;
    font-size: 14px;
    border-radius: 2px;
    background: #f3f5f9;
    border: 1px solid transparent;
}
.contact-form .form-group textarea {
    position: relative;
    display: block;
    width: 100%;
    line-height: 26px;
    padding: 10px 28px;
    color: #a5a5a5;
    height: 120px;
    font-size: 14px;
    resize: none;
    border-radius: 2px;
    background: #f3f5f9;
}
.contact_icon ul {
	margin:0 auto;
	display:table;
	margin-top:15px;
}
.contact_icon ul li {
	display:inline-block;
	padding-right:5px;
}
.contact_icon ul li a i {
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 18px;
    text-align: center;
    color: #fff;
	border:1px solid #fff;
}
.contact_branch_bx {
	padding-bottom:30px;
	text-align:center;
	padding-top:30px;
}
.contact_branch_bx h2 {
	font-size:27px;
	text-align:center;
	color:#000;
	letter-spacing:1px;
	position:relative;
	padding-bottom:10px;
}
.contact_branch_bx h2:after {
    position: absolute;
    bottom: 0;
    left: 0;
	right:0;
    width: 100px;
    height: 3px;
	margin:0 auto;
	display:table;
    content: "";
    background: #ec008c;
}
.contact_branch {
	padding: 20px 15px;
	background: #fff;
    box-shadow: 0 0 15px rgb(235 241 248);
	margin-bottom:20px;
}
.branch_icon img {
	margin: 0 auto;
	display: table;
	width:100px;
	height:100px;
	position: relative;
}
.branch_dtl {
	position: absolute;
	top: 40px;
	left: 0;
	right: 0;
	text-align: center;
}
.branch_dtl h4 {
	padding-bottom: 5px;
	color: #231f20;
	font-size: 21px;
	letter-spacing: 0.50px;
	font-weight: bold;
	display: block;
}
.branch_dtl span {
	font-size: 19px;
    line-height: 24px;
    color: #ec008c;
	display:block;
}
.line {
	display: inline-block;
	text-align: center;
	height: 4px;
	position: relative;
	width: 30px;
	margin-top: 10px;
}
.line:after {
	content: "";
	display: block;
	height: 1px;
	left: 0;
	position: absolute;
	bottom: 0;
	width: 30px;
	background: #E3E9ED;
}
.line:before {
	content: "";
	display: block;
	height: 1px;
	left: 0;
	position: absolute;
	top: 0;
	width: 30px;
	background: #E3E9ED;
}
/*****************************/
#inner_faq_sec {
	padding:80px 0 60px 0;
}
.inn_faq_tp {
	padding-bottom:20px;
}
.faq_hed h1 {
    color: #000;
    font-size: 30px;
    text-transform: capitalize;
    padding-bottom: 10px;
	text-align:center;
}
.faq_hed span {
    font-size: 14px;
    line-height: 24px;
    color: #4c4c4c;
    letter-spacing: 1px;
    display: block;
	text-align:center;
    font-weight: bold;
    padding-bottom: 15px;
    font-family: 'Montserrat', sans-serif;
}
.faq_hed span a {
	color:#ec008c;
}
.faq_bx {
	border:1px solid #3c5981;
	border-radius:10px;
	margin-bottom:20px;
}
.faq_hed h5 {
	font-size:18px;
	background:#3c5981;
	padding:10px 15px;
	color:#fff;
	border-radius:10px 10px 0 0;
	border:1px solid #3c5981;
}
.faq_hed p {
	font-size: 14px;
    line-height: 24px;
    color: #4c4c4c;
    letter-spacing: 1px;
    padding:15px;
    font-family: 'Montserrat', sans-serif;
}
/*****************************/
.nb-form {
	position: fixed;
	z-index: 9999;
	width: 300px;
	background: #FFF;
	right: 20px;
	bottom: -475px;
	transition: all .8s cubic-bezier(.22, .67, .43, 1.22) .2s;
	border-radius: 10px 10px 0 0;
	box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12), 0 3px 1px -2px rgba(0, 0, 0, 0.2);
}

.title {
	background: #bf261c;
	font-size: 16px !important;
	padding: 7px 15px !important;
	color: #fff !important;
	border-radius: 10px 10px 0 0;
	text-align: center;
}

.btn:hover {
	color:#fff;
}

.new-form form {
	padding: 0 15px 15px 15px;
}

.new-form input,
.new-form textarea {
	font-size: 12px;
	margin-bottom: 10px;
	padding: 6px;
	border: none;
	border-radius: 4px;
	color: #fff;
	border-bottom: 1px solid #f0f0f0;
}

.new-form input:focus,
.new-form textarea:focus {
	outline: none;
	box-shadow: none;
}

.new-form input[type='submit'] {
	display: block;
	width: 120px;
	padding: 0 20px;
	height: 35px;
	line-height: 35px;
	border-radius: 20px;
	cursor: pointer;
	transition: all .4s ease;
	color: #fff !important;
	border: none;
	font-size: 15px;
	margin: 0 15px;
	float: left;
}

.new-form input[type='submit']:hover {
	box-shadow: 0 3px 3px 0 rgba(0, 0, 0, 0.07), 0 1px 7px 0 rgba(0, 0, 0, 0.02), 0 3px 1px -1px rgba(0, 0, 0, 0.1);
}

.new-form textarea {
	min-height: 70px;
}

.new-form ::-webkit-input-placeholder {
	color: #999;
}

.new-form ::-moz-placeholder {
	color: #999;
}

.new-form :-ms-input-placeholder {
	color: #999;
}

.new-form :-moz-placeholder {
	color: #999;
}

.new-form input[type='submit'] {
	background: #ff0800;
}

.new-form input[type='submit']:hover {
	background: #224979;
}

#mrova-contactform-input {
	width: 95%;
	padding: 5px;
	border: 1px solid #ccc;
	margin-bottom: 10px;
	color: #333;
	font-weight: normal;
	margin-top: 0px;
}

#mrova-contactform-textarea {
	width: 95%;
	height: 70px;
	padding: 5px;
	border: 1px solid #ccc;
	margin-bottom: 10px;
	color: #333;
	font-weight: normal;
}

.blink_me {
	animation: blinker 1s linear infinite;
}

@-webkit-keyframes blinker {
	0% {
		background-color: #ec008c;
	}
	49% {
		background-color: #ec008c;
	}
	50% {
		background-color: #224979;
	}
	99% {
		background-color: #224979;
	}
	100% {
		background-color: #ec008c;
	}
}

@-moz-keyframes blinker {
	0% {
		background-color: #ec008c;
	}
	49% {
		background-color: #ec008c;
	}
	50% {
		background-color: #224979;
	}
	99% {
		background-color: #224979;
	}
	100% {
		background-color: #ec008c;
	}
}

@keyframes blinker {
	0% {
		background-color: #ec008c;
	}
	49% {
		background-color: #ec008c;
	}
	50% {
		background-color: #224979;
	}
	99% {
		background-color: #224979;
	}
	100% {
		background-color: #ec008c;
	}
}

.open-button {
	background-color: #1e2452;
	color: white;
	padding: 16px 20px;
	border: none;
	cursor: pointer;
	opacity: 1;
	position: fixed;
	bottom: 0px;
	right: 28px;
	width: 280px;
	z-index: 9;
	transition: all 0.4s;
}

.form-popup {
	display: none;
	position: fixed;
	bottom: 0;
	right: 15px;
	z-index: 9999;
	transition: all 0.4s;
	border-radius: 10px 10px 0 0;
	box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12), 0 3px 1px -2px rgba(0, 0, 0, 0.2);
}

.form-container {
	max-width: 300px;
	padding: 10px;
	background-color: white;
}

.form-container .cancel {
	background-color: #1b1b1b;
	width: 120px;
	padding: 0 20px;
	height: 35px;
	line-height: 35px;
	border-radius: 20px;
	cursor: pointer;
}

.form-popup h5 {
	background-color: #5857a6;
	color: #fff;
	margin: 0px;
	padding: 15px;
	font-size: 16px;
	line-height: 24px;
	border-radius: 10px 10px 0 0;
	box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12), 0 3px 1px -2px rgba(0, 0, 0, 0.2);
}
/**************************/
.btm-watsap {
    position: fixed;
    bottom: 10px;
    left: 15px;
    z-index: 99;
}
.mb-foot {
	display:none;
	position:fixed;
	left:4%;
	bottom:10px;
	z-index:123;
}
.mb-quot {
	float:left;
	display: contents;
}
.mb-quot a i {
	width:35px;
	height:35px;
	line-height:35px;
	font-size:15px;
	color:#fff;
	background:#ec008c;
	border-radius:50px;
	text-align:center;
}
