@import url('https://fonts.googleapis.com/css?family=Lora:400,400i,700,700i|Open+Sans:400,400i,600,600i,700,700i,800,800i|Playfair+Display:400,400i,700,700i,900,900i|Poppins:300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i|Rufina:400,700');


@import url('pe-icon-7-stroke.css');
@import url('simple-line-icons.css');
@import url('fontawesome-all.css');
@import url('animate.css');
@import url('flaticon.css');
@import url('owl.css');
@import url('jquery-ui.css');
@import url('jquery.timepicker.min.css');
@import url('jquery.fancybox.min.css');

/*** 

====================================================================
	Reset
====================================================================

 ***/

*{
	margin:0px;
	padding:0px;
	border:none;
	outline:none;
	font-size: 100%;
}

/*** 

====================================================================
	Global Settings
====================================================================

 ***/

body {
	
	font-size:14px;
	color:#787878;
	line-height:1.6em;
	font-weight:400;
	background:#ffffff;
	-webkit-font-smoothing: antialiased;
	-moz-font-smoothing: antialiased;
	font-family: "Poppins", sans-serif;
}

a{
	text-decoration:none;
	cursor:pointer;
	color:#fff;
}

a:hover,
a:focus,
a:visited{
	text-decoration:none;
	outline:none;
}

h1,h2,h3,h4,h5,h6 {
	position:relative;
	font-weight:normal;
	margin:0px;
	background:none;
	line-height:1.2em;
	letter-spacing: -0.02em;
}

textarea{
	overflow:hidden;	
}

button{
	outline: none !important;
	cursor: pointer;
}

p{
	font-size: 16px;
	line-height: 1.6em;
	font-weight: 400;
	color: #555555;
}

.text{
	font-size: 16px;
	line-height: 1.6em;
	font-weight: 400;
	color: #555555;
	margin: 0;
}

::-webkit-input-placeholder{color: inherit;}
::-moz-input-placeholder{color: inherit;}
::-ms-input-placeholder{color: inherit;}

.auto-container{
	position:static;
	max-width:1210px;
	padding:0px 20px;
	margin:0 auto;
}

.large-container{
	position:static;
	max-width:1600px;
	padding:0px 15px;
	margin:0 auto;
}

.page-wrapper{
	position:relative;
	margin:0 auto;
	width:100%;
	min-width:300px;
	overflow: hidden;
	z-index: 9;
}

ul,li{
	list-style:none;
	padding:0px;
	margin:0px;	
}

.theme-btn{
	display:inline-block;
	-webkit-transition:all 0.3s ease;
	-moz-transition:all 0.3s ease;
	-ms-transition:all 0.3s ease;
	-o-transition:all 0.3s ease;
	transition:all 0.3s ease;
}

.theme-btn i{
	position: relative;
	display: inline-block;
	font-size: 16px;
	margin-right: 8px;
}

.centered{
	text-align:center !important;
}

/*Btn Style One*/

.btn-style-one{
	position: relative;
    display: inline-block;
    font-size: 15px;
    line-height: 30px;
    color: #fff;
    padding: 7px 20px;
    overflow: hidden;
    background-color: #e53791;
    /* text-transform: capitalize; */
    border-radius: 0px;
}
.rd .btn-style-one{
	padding: 10px 15px;
    text-align: center;
    color: #fff;
    font-size: 18px;
    margin-top: -2px;
    margin-bottom: -7px;
    width: 100%;
    border-radius: 0 0 10px 10px;
}
.rd .btn-style-one:hover::before{
	background-color: #0262b0;
	border:1px solid #0262b0;
}
.btn-style-one .txt{
	position:relative;
	z-index:1;
}

.btn-style-one:before{
	position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0;
    background-color: #653573;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
    -webkit-transform: scale(0.3, 1);
    transform: scale(0.3, 1);
}
a:hover {
    color: #653573;
    /* text-decoration: underline; */
}
.btn-style-one:hover::before{
    opacity: 1;
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
}

.btn-style-one:hover{
	color: #ffffff;
}

/* Btn Style Two */

.btn-style-two{
	position: relative;
	display: inline-block;
	font-size: 16px;
	line-height: 30px;
	color: #000;
	padding: 10px 34px;
	overflow: hidden;
	background-color: #ffffff;
	text-transform: capitalize;
	transition: all 600ms ease;
    -moz-transition: all 600ms ease;
    -webkit-transition: all 600ms ease;
    -ms-transition: all 600ms ease;
    -o-transition: all 600ms ease;
}

.btn-style-two .txt{
	position:relative;
	z-index:1;
	transition: all 600ms ease;
    -moz-transition: all 600ms ease;
    -webkit-transition: all 600ms ease;
    -ms-transition: all 600ms ease;
    -o-transition: all 600ms ease;
}

.btn-style-two:before{
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
	right: -50px;
	transition: all 600ms ease;
    -moz-transition: all 600ms ease;
    -webkit-transition: all 600ms ease;
    -ms-transition: all 600ms ease;
    -o-transition: all 600ms ease;
    border-right: 50px solid transparent;
    border-bottom: 80px solid #0262b0;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
}

.btn-style-two:hover::before{
    -webkit-transform: translateX(-49%);
    transform: translateX(-49%);
}

.btn-style-two:after{
	content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: -50px;
	transition: all 600ms ease;
    -moz-transition: all 600ms ease;
    -webkit-transition: all 600ms ease;
    -ms-transition: all 600ms ease;
    -o-transition: all 600ms ease;
    border-left: 50px solid transparent;
    border-top: 80px solid #0262b0;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
}

.btn-style-two:hover::after{
    -webkit-transform: translateX(49%);
    transform: translateX(49%);
}

.btn-style-two:hover{
	color: #ffffff;
}

/* Btn Style Three */

.btn-style-three{
	position: relative;
	display: inline-block;
	font-size: 13px;
	line-height: 30px;
	color: #ffffff;
	padding: 9px 49px;
	font-weight: 600;
	overflow: hidden;
	letter-spacing:2px;
	background-color: #e12832;
	text-transform: uppercase;
}

.btn-style-three .txt{
	position:relative;
	z-index:1;
}

.btn-style-three:before{
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
	right: -50px;
	transition: all 600ms ease;
    -moz-transition: all 600ms ease;
    -webkit-transition: all 600ms ease;
    -ms-transition: all 600ms ease;
    -o-transition: all 600ms ease;
    border-right: 50px solid transparent;
    border-bottom: 80px solid #0262b0;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
}

.btn-style-three:hover::before{
    -webkit-transform: translateX(-49%);
    transform: translateX(-49%);
}

.btn-style-three:after{
	content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: -50px;
	transition: all 600ms ease;
    -moz-transition: all 600ms ease;
    -webkit-transition: all 600ms ease;
    -ms-transition: all 600ms ease;
    -o-transition: all 600ms ease;
    border-left: 50px solid transparent;
    border-top: 80px solid #0262b0;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
}

.btn-style-three:hover::after{
    -webkit-transform: translateX(49%);
    transform: translateX(49%);
}

.btn-style-three .txt{
	position:relative;
}

.btn-style-three:hover{
	color: #ffffff;
}

/* Btn Style Four */

.btn-style-four{
	position: relative;
	display: inline-block;
	font-size: 13px;
	line-height: 30px;
	color: #ffffff;
	padding: 9px 37px;
	font-weight: 600;
	overflow: hidden;
	letter-spacing:2px;
	background-color: #0e2a4e;
	text-transform: uppercase;
}

.btn-style-four .txt{
	position:relative;
	z-index:1;
}

.btn-style-four:before{
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
	right: -50px;
	transition: all 600ms ease;
    -moz-transition: all 600ms ease;
    -webkit-transition: all 600ms ease;
    -ms-transition: all 600ms ease;
    -o-transition: all 600ms ease;
    border-right: 50px solid transparent;
    border-bottom: 80px solid #0262b0;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
}

.btn-style-four:hover::before{
    -webkit-transform: translateX(-49%);
    transform: translateX(-49%);
}

.btn-style-four:after{
	content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: -50px;
	transition: all 600ms ease;
    -moz-transition: all 600ms ease;
    -webkit-transition: all 600ms ease;
    -ms-transition: all 600ms ease;
    -o-transition: all 600ms ease;
    border-left: 50px solid transparent;
    border-top: 80px solid #0262b0;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
}

.btn-style-four:hover::after{
    -webkit-transform: translateX(49%);
    transform: translateX(49%);
}

.btn-style-four .txt{
	position:relative;
}

.btn-style-four:hover{
	color: #ffffff;
}

/*=== List Style One ===*/

.list-style-one{
	position:relative;
}

.list-style-one li{
	position:relative;
	font-size:16px;
	line-height:24px;
	color: #e0dbde;
	font-weight:400;
	padding-left:32px;
	margin-bottom: 12px;
}

.list-style-one li:before{
	position: absolute;
	left: 0;
	top: 0;
	font-size: 14px;
	line-height: 24px;
	color: #be9a8d;
	content: "\f1ae";
	font-weight:700;
	font-family: "Flaticon";
}

.list-style-one li a:hover{
	color: #44bce2;
}

/*=== List Style Two ===*/

.list-style-two{
	position:relative;
}

.list-style-two li{
	position:relative;
	font-size:16px;
	line-height:24px;
	color: #797979;
	font-weight:400;
	margin-bottom: 10px;
}

/*=== List Style Four ===*/

.list-style-four{
	position:relative;
}

.list-style-four li{
	position:relative;
	font-size:16px;
	color: #000;
	font-weight:400;
	padding-left:32px;
	line-height:1.8em;
	margin-bottom: 20px;
}

.list-style-four li:last-child{
	margin-bottom:0px;
}

.list-style-four li:before{
	position: absolute;
	left: 0px;
	top: 4px;
	font-size: 14px;
	line-height: 24px;
	color: #0262b0;
	content: "\f1ae";
	font-weight:700;
	font-family: "Flaticon";
}
.list-style-four li a:hover{
	color: #44bce2;
}

/* List Style Three */

.list-style-three{
	position:relative;
}

.list-style-three li{
	position:relative;
	color:#797979;
	font-size:20px;
	line-height:1.4em;
	margin-bottom:12px;
}

.theme_color{
	color:#e12832;
}

.pull-right{
	float: right;
}

.pull-left{
	float: left;
}

.preloader{ 
	position:fixed; 
	left:0px; 
	top:0px; 
	width:100%; 
	height:100%; 
	z-index:999999; 
	text-align: center;
	align-items: center;
	background-color:#ffffff; 
	background-position:center center; 
	background-repeat:no-repeat; 
/*	background:url(../images/preloader.jpg) center no-repeat;*/
}
.preloader img{
	position: absolute;
	top: 40%;
	left: 46%;
}

img{
	display:inline-block;
	max-width:100%;
	height:auto;	
}

.dropdown-toggle::after{
	display: none;
}

.fa{
	line-height: inherit;
}

.play-now .ripple,
.play-now .ripple:before,
.play-now .ripple:after {
    position: absolute;
    top: 50%;
    left: 30px;
    height: 60px;
    width: 60px;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, .6);
    -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, .6);
    -ms-box-shadow: 0 0 0 0 rgba(255, 255, 255, .6);
    -o-box-shadow: 0 0 0 0 rgba(255, 255, 255, .6);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, .6);
    -webkit-animation: ripple 3s infinite;
    -moz-animation: ripple 3s infinite;
    -ms-animation: ripple 3s infinite;
    -o-animation: ripple 3s infinite;
    animation: ripple 3s infinite;
}

.play-now .ripple:before {
    -webkit-animation-delay: .9s;
    -moz-animation-delay: .9s;
    -ms-animation-delay: .9s;
    -o-animation-delay: .9s;
    animation-delay: .9s;
    content: "";
    position: absolute;
}

.play-now .ripple:after {
    -webkit-animation-delay: .6s;
    -moz-animation-delay: .6s;
    -ms-animation-delay: .6s;
    -o-animation-delay: .6s;
    animation-delay: .6s;
    content: "";
    position: absolute;
}

@-webkit-keyframes ripple {
    70% {box-shadow: 0 0 0 20px rgba(255, 255, 255, 0);}
    100% {box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);}
}

@keyframes ripple {
    70% {box-shadow: 0 0 0 20px rgba(255, 255, 255, 0);}
    100% {box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);}
} 


/*** 

====================================================================
	Scroll To Top style
====================================================================

***/

.scroll-to-top{
	position:fixed;
	bottom:20px;
	right:10px;
	width:45px;
	height:45px;
	line-height:45px;
	color:#ffffff;
	font-size:24px;
	text-align:center;
	z-index:100;
	cursor:pointer;
	background:#653573;
	display:none;
	border-radius: 5px;
	-webkit-transition:all 300ms ease;
	-moz-transition:all 300ms ease;
	-ms-transition:all 300ms ease;
	-o-transition:all 300ms ease;
	transition:all 300ms ease;
}

.scroll-to-top:hover{
	background:#e53791;
}

/*** 

====================================================================
	Main Header style
====================================================================

***/

.main-header{
	position: relative;
	display: block;
	z-index: 99999;
}

.main-header .header-top{
	position: relative;
    background-color: #653573;
    line-height: 42px;
}

.main-header .header-top .top-right{
	position: relative;
	float: right;
}

.main-header .header-top .info-list{
	position: relative;
	float:left;
}

.main-header .header-top .info-list li{
	position: relative;
	float: left;
	font-size: 15px;
	color: #d4c0cd;
	font-weight: 400;
}

.main-header .header-top .info-list li a{
	position:relative;
	color: #d4c0cd;
	margin-right: 15px;
	padding-right:15px;
	border-right:1px solid #cbb6c4;
	-webkit-transition:all 300ms ease;
	-moz-transition:all 300ms ease;
	-ms-transition:all 300ms ease;
	-o-transition:all 300ms ease;
	transition:all 300ms ease;
}

.main-header .header-top .info-list li:last-child a{
	margin-right:0px;
	padding-right:0px;
	border:none;
}

.main-header .header-top .info-list li a:hover{
	color:#ffffff;
}

/* Header Top Two */

.header-top-two{
	position:relative;
	background-color:#eeeeee;
}

.header-top-two .top-left{
	position:relative;
	float:left;
}

.header-top-two .top-left .text{
	position: relative;
	display: block;
	font-size: 16px;
	line-height: 27px;
	color: #797979;
	float:left;
	z-index:1;
	font-weight: 400;
	padding: 11px 0px;
}

.header-top-two .top-left .text .number{
	color:#242424;
	font-size:19px;
	font-weight:600;
	-webkit-transition:all 300ms ease;
	-moz-transition:all 300ms ease;
	-ms-transition:all 300ms ease;
	-o-transition:all 300ms ease;
	transition:all 300ms ease;		
}

.header-top-two .top-left .text .number:hover{
	color:#0262b0;
}

.header-top-two .top-left .apply{
	position:relative;
	float:left;
	margin-left:30px;
	padding:14px 0px;
	padding-left:30px;
	border-left:1px solid #d7d7d7;
}

.header-top-two .top-left .apply a{
	color:#ee3c3c;
	font-size:16px;
	font-weight:600;
	text-decoration:underline;
}

.header-top-two .top-right{
	position:relative;
	float:right;
}

.header-top-two .top-right .social-links{
	position:relative;
	float:left;
	padding:10px 0px;
}

.header-top-two .top-right .social-links li{
	position:relative;
	margin-left:18px;
	display:inline-block;
}

.header-top-two .top-right .social-links li a{
	position:relative;
	display: block;
	color:#242424;
	font-size:16px;
	line-height: 30px;
	-webkit-transition:all 300ms ease;
	-moz-transition:all 300ms ease;
	-ms-transition:all 300ms ease;
	-o-transition:all 300ms ease;
	transition:all 300ms ease;
}

.header-top-two .top-right .social-links li a:hover{
	color:#0262b0;
}

.header-top-two .change-language{
	position:relative;
	float:left;
	margin-left:25px;
	border-left:1px solid #d7d7d7;
}

.header-top-two .change-language .language a{
	color:#242424;
}

/* Dropdown Language */

.main-header .language{
	position:relative;
	float:left;
	padding:13px 0px;
	margin-left:28px;
}

.main-header .language .dropdown-menu{
	top:100%;
	left:0px;
	width:180px;	
	border-radius:0px;
	margin-top:13px;
	background-color:#222222;
	border:none;
	padding:0px;
    border-top:3px solid #0262b0;
}

.main-header .language > a{
	position:relative;
	color:#d4c0cd;
	border:0px;
	font-size:15px;
	padding:0px 0px;
	border-radius:0px;
	background:none !important;
}

.main-header language a:hover{
	background:none;
}

.main-header .language > a:focus{
	box-shadow:none;
}

.main-header .language .dropdown-menu > li{
	padding:0px !important;
	margin:0px !important;
	float:none;
	width:100%;
	display:block !important;
    border-bottom: 1px solid rgba(255,255,255,0.20);
}

.main-header .language .dropdown-menu > li:last-child{
	border-bottom:none;	
}

.main-header .language .dropdown-menu > li > a{
	padding:10px 18px;
	color:#ffffff !important;
	text-align:left;
	display:block;
	font-size:14px;
	-webkit-transition:all 300ms ease;
	-ms-transition:all 300ms ease;
	-o-transition:all 300ms ease;
	-moz-transition:all 300ms ease;
	transition:all 300ms ease;
}

.main-header .language .dropdown-menu > li > a:hover{
	color:#ffffff !important;
	background-color:#0262b0;
}



/* Top Right*/

.main-header .header-top .top-left{
	position: relative;
	float: left;
}
.main-header .header-top .top-left ul li{
	float: left;
	color: #fff;
    padding-right: 25px;
    font-size: 15px;
}
.main-header .header-top .top-left ul li i{
	padding-right: 6px;
}
.main-header .header-top .top-left ul li a{
	transition: 0.5s ease;
}
.main-header .header-top .top-left ul li a:hover{
	color: #0262b0;
}


.main-header .header-top .top-left .text{
	position: relative;
	display: block;
	font-size: 15px;
	line-height: 27px;
	color: #d4c0cd;
	z-index:1;
	font-weight: 400;
	padding: 11px 0px;
}

.main-header .header-top .top-left .text .icon{
	position:relative;
	color:#9a8b94;
	font-size:16px;
	line-height:1em;
	margin-right:10px;
}

.main-header .header-top .top-left .text .number{
	color: #0262b0;
	font-size:19px;
	font-weight:600;
	-webkit-transition:all 300ms ease;
	-moz-transition:all 300ms ease;
	-ms-transition:all 300ms ease;
	-o-transition:all 300ms ease;
	transition:all 300ms ease;		
}

.main-header .header-top .top-left .text .number:hover{
	color:#ffffff;
}

.main-header .header-top .top-right{
	position:relative;
	float:right;
}

/*=== Header Upper ===*/

.main-header .header-upper{
	position:relative;
	top: 0;
	z-index:5;
	-webkit-transition:all 600ms ease;
	-moz-transition:all 600ms ease;
	-ms-transition:all 600ms ease;
	-o-transition:all 600ms ease;
	transition:all 600ms ease;
	background-image: -ms-linear-gradient(top, #ffffff 0%, #E8E8E8 100%);
	background-image: -moz-linear-gradient(top, #ffffff 0%, #E8E8E8 100%);
	background-image: -o-linear-gradient(top, #ffffff 0%, #E8E8E8 100%);
	background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #ffffff), color-stop(100, #E8E8E8));
	background-image: -webkit-linear-gradient(top, #ffffff 0%, #E8E8E8 100%);
	background-image: linear-gradient(to bottom, #ffffff 0%, #E8E8E8 100%);
}

.main-header .header-upper .logo-outer{
	position:relative;
	z-index:25;
	text-align: right;
	-webkit-transition:all 600ms ease;
	-moz-transition:all 600ms ease;
	-ms-transition:all 600ms ease;
	-o-transition:all 600ms ease;
	transition:all 600ms ease;
}

.main-header .logo-outer .logo img{
	position:relative;
	display:inline-block;
	max-width:90%;
	padding-right: 25px;
}

.main-header .header-upper .nav-outer{

}

/*=== Header Lower ===*/

.main-header .header-lower{
	position: relative;
	-webkit-transition:all 600ms ease;
	-moz-transition:all 600ms ease;
	-ms-transition:all 600ms ease;
	-o-transition:all 600ms ease;
	transition:all 600ms ease;
}

.main-menu{
	position:relative;
/*	padding-top: 25px;*/
/*	padding-left: 35px;*/
}

.main-menu .navbar-collapse{
	padding:0px;	
	display: block !important;
}

.main-menu .navigation{
	position:relative;
	margin:0px;
	text-align: left;
}

.main-menu .navigation > li{
	position:relative;
	display: inline-block;
/*	margin-right: 30px;*/
	-webkit-transition:all 600ms ease;
	-moz-transition:all 600ms ease;
	-ms-transition:all 600ms ease;
	-o-transition:all 600ms ease;
	transition:all 600ms ease;
}

.main-menu .navigation > li:last-child{
	margin-right:0px;
}

.main-menu .navigation > li > a{
	position:relative;
	display:block;
	text-align:center;
	font-size:15px;
	line-height:35px;
	padding: 4px 12px;
	text-transform: capitalize;
	-webkit-transition:all 300ms ease;
	-moz-transition:all 300ms ease;
	-ms-transition:all 300ms ease;
	-o-transition:all 300ms ease;
	transition:all 300ms ease;
}

.main-menu .navigation > li:hover > a,
.main-menu .navigation > li.current > a{
	color: #0262b0;
}

.main-menu .navigation > li > ul{
	position:absolute;
	left:0px;
	top:100%;
	width: 315px;
	z-index:100;
	opacity: 1;
	border-top: 3px solid #e53791;
	background:#ffffff;
	-webkit-transform: translateY(30px);
	-ms-transform: translateY(30px);
	transform: translateY(30px);
	-webkit-transition:all 200ms linear;
	-moz-transition:all 200ms linear;
	-ms-transition:all 200ms linear;
	-o-transition:all 200ms linear;
	transition:all 200ms linear;
	-webkit-box-shadow:2px 2px 5px 0px rgba(0,0,0,0.05),-2px 0px 5px 0px rgba(0,0,0,0.05);
	-ms-box-shadow:2px 2px 5px 0px rgba(0,0,0,0.05),-2px 0px 5px 0px rgba(0,0,0,0.05);
	-o-box-shadow:2px 2px 5px 0px rgba(0,0,0,0.05),-2px 0px 5px 0px rgba(0,0,0,0.05);
	-moz-box-shadow:2px 2px 5px 0px rgba(0,0,0,0.05),-2px 0px 5px 0px rgba(0,0,0,0.05);
	box-shadow:2px 2px 5px 0px rgba(0,0,0,0.05),-2px 0px 5px 0px rgba(0,0,0,0.05);
}
.main-menu .navigation > li > .drop-list1{
	width: 300px;
}
.main-menu .navigation > li > .drop-list2{
	width: 280px;
}
.main-menu .navigation > li > .drop-list3{
	width: 220px;
}
.main-menu .navigation li ul li{
	position: relative;
    width: 100%;
    padding: 4px 15px;
    border-bottom: 1px solid #ffc5c8;
    transition: 0.5s ease;
}
.main-menu .navigation li ul li:hover{
	background: #ffc5c8;
}
.main-menu .navigation li ul li a{
	position: relative;
    display: block;
    line-height: 24px;
    /* font-weight: 500; */
    font-size: 15px;
	padding: 10px 12px;
    text-align: left;
    color: #000;   
	text-transform:capitalize;
	-webkit-transition:all 300ms ease;
	-moz-transition:all 300ms ease;
	-ms-transition:all 300ms ease;
	transition:all 300ms ease;
}

/*.main-menu .navigation li ul li a:after{
	content:'';
	position:absolute;
	left:0;
	bottom:-1px;
	width:0px;
	border-bottom: 1px solid #e12832;
	transition:all 500ms ease;
	-moz-transition:all 500ms ease;
	-webkit-transition:all 500ms ease;
	-ms-transition:all 500ms ease;
	-o-transition:all 500ms ease;
}

.main-menu .navigation li ul li:hover a:after{
	width:100%;
}*/

.main-menu .navigation > li > ul > li:last-child > a{
/*	border-bottom:none;*/
/*	padding-bottom:0px;*/
}

.main-menu .navigation > li > ul > li:last-child > a:afteR{
/*	display:none;	*/
}

.main-menu .navigation > li > ul > li:hover > a{
/*	color: #e2030f;*/
}

.main-menu .navigation > li > ul > li.dropdown > a:before{
	font-family: 'Font Awesome 5 Free';
	content: "\f105";
	position:absolute;
	right:0px;
	top:12px;
	width:10px;
	display:block;
	line-height:19px;
	font-size:16px;
	font-weight:800;
	text-align:center;
	z-index:5;	
}

.main-menu .navigation > li > ul > li > ul{
	position:absolute;
	left:100%;
	top: 0px;
	width:300px;
	z-index:100;
	opacity: 1;
	padding: 0px;
	background:#ffffff;
	-webkit-transform: translateY(30px);
	-ms-transform: translateY(30px);
	transform: translateY(30px);
	-webkit-transition:all 200ms linear;
	-moz-transition:all 200ms linear;
	-ms-transition:all 200ms linear;
	-o-transition:all 200ms linear;
	transition:all 200ms linear;
	-webkit-box-shadow:2px 2px 5px 1px rgba(0,0,0,0.05),-2px 0px 5px 1px rgba(0,0,0,0.05);
	-ms-box-shadow:2px 2px 5px 1px rgba(0,0,0,0.05),-2px 0px 5px 1px rgba(0,0,0,0.05);
	-o-box-shadow:2px 2px 5px 1px rgba(0,0,0,0.05),-2px 0px 5px 1px rgba(0,0,0,0.05);
	-moz-box-shadow:2px 2px 5px 1px rgba(0,0,0,0.05),-2px 0px 5px 1px rgba(0,0,0,0.05);
	box-shadow:2px 2px 5px 1px rgba(0,0,0,0.05),-2px 0px 5px 1px rgba(0,0,0,0.05);
}

.main-menu .navigation > li > ul > li > ul > li{
	position:relative;
	width:100%;
	padding:0 25px;
}

.main-menu .navigation > li > ul > li  > ul > li > a{
	position:relative;
	display:block;
	padding:12px 0px;
	line-height:19px;
	font-weight:500;
	font-size:15px;
	text-align:left;
	color:#242424;
	/* border-bottom: 1px solid #d8d8d8; */
	text-transform:capitalize;
	-webkit-transition:all 300ms ease;
	-moz-transition:all 300ms ease;
	-ms-transition:all 300ms ease;
	transition:all 300ms ease;
}

.main-menu .navigation > li > ul > li  > ul > li > a:after{
	content:'';
	position:absolute;
	left:0;
	bottom:-2px;
	width:0px;
	border-bottom:2px solid #653573;
	transition:all 500ms ease;
	-moz-transition:all 500ms ease;
	-webkit-transition:all 500ms ease;
	-ms-transition:all 500ms ease;
	-o-transition:all 500ms ease;
}

.main-menu .navigation > li > ul > li  > ul > li:last-child > a:after{
	display:none;
}

.main-menu .navigation > li > ul > li  > ul > li:hover > a:after{
	width:100%;
}

.main-menu .navigation > li > ul > li  > ul > li:last-child > a{
	border-bottom:none;
	/* padding-bottom:0px; */
}

.main-menu .navigation > li > ul > li  > ul > li:hover > a{
	color: #282828;
}

.main-menu .navigation > li.dropdown:hover > ul{
	visibility:visible;
	opacity:1;	
	top: 100%;
	-webkit-transform: translateY(0px);
	-ms-transform: translateY(0px);
	transform: translateY(0px);
	background: #fff;
}

.main-menu .navigation > li > ul > li.dropdown:hover > ul{
	visibility:visible;
	opacity:1;	
	top: 0px;
	-webkit-transform: translateY(0px);
	-ms-transform: translateY(0px);
	transform: translateY(0px);
}

.main-menu .navigation > li > ul > li.dropdown:hover > ul{
	visibility:visible;
	opacity:1;
	top:0px;
}

.main-menu .navbar-collapse > ul li.dropdown .dropdown-btn{
	position:absolute;
	right:10px;
	top:8px;
	width:34px;
	height:30px;
	border:1px solid #ffffff;
	text-align:center;
	font-size:18px;
	font-weight:700;
	line-height:28px;
	background:#ffffff;
	color:#e12832;
	cursor:pointer;
	z-index:5;
	display:none;
}

.main-header .outer-box{
	position: relative;
	text-align: right;
}

.main-header .outer-box .btn-box{
	position: relative;
	-webkit-transition:all 600ms ease;
	-moz-transition:all 600ms ease;
	-ms-transition:all 600ms ease;
	-o-transition:all 600ms ease;
	transition:all 600ms ease;
}

.main-header .outer-box .btn-box .theme-btn{
	position: relative;
}

.fixed-header .header-top,
.fixed-header .header-lower{
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
}

.fixed-header .header-top .logo-outer{
	padding:0px 0px;
}

.fixed-header .main-menu .navigation > li{
/*	padding:17px 0px;*/
}

.fixed-header .outer-box .btn-box{
/*	padding:12px 0px;*/
}

/* Header Style Two */

.header-style-two .header-upper{
	background-image:none;
	background-color:#e12832;
	border-top:1px solid rgba(255,255,255,0.10);
}

.header-style-two .language > a,
.header-style-two .header-top .top-left .text{
	color:#9a8b94;
}

.main-header.header-style-two .header-top .info-list li a{
	color:#9a8b94;
	border-color:#9a8b94;
}

.main-header.header-style-two .header-top .info-list li a:hover{
	color:#ffffff;
}

.header-style-two .main-menu .navigation > li > a,
.header-style-three .main-menu .navigation > li > a,
.header-style-four .main-menu .navigation > li > a,
.header-style-five .main-menu .navigation > li > a{
	color:#fff;
/*	border: 1px solid #fff;*/
	border-radius: 3px;
}
.header-style-four .main-menu .navigation > li > a i{
	font-size: 13px;
}

.header-style-two .main-menu .navigation > li:hover > a,
.header-style-two .main-menu .navigation > li.current > a,
.header-style-three .main-menu .navigation > li:hover > a,
.header-style-three .main-menu .navigation > li.current > a,
.header-style-four .main-menu .navigation > li:hover > a,
.header-style-four .main-menu .navigation > li.current > a,
.header-style-five .main-menu .navigation > li:hover > a,
.header-style-five .main-menu .navigation > li.current > a{
	background: #e53791;
	color:#fff;
}
.main-menu .navigation > li.active > a{
	background: #e53791;
	/* color:#653573; */
}

/* Header Style Three */

.header-style-three{
	position:absolute;
	width:100%;
}

.header-style-three .header-top{
	background:none;
}

.header-style-three .header-upper{
	background:none;
	border-top:1px solid rgba(255,255,255,0.20);
}

.header-style-three .language > a,
.header-style-three .header-top .top-left .text .icon,
.header-style-three .header-top .top-left .text{
	color:#ffffff;
}

.main-header.header-style-three .header-top .info-list li a{
	color:#ffffff;
	border-color:#ffffff;
}



.header-style-three .header-upper{
    position: relative;
}

.header-style-three .header-upper .logo-outer{
	padding:12px 0px;
}

.header-style-three .main-menu .navigation > li{
	padding:30px 0px;
}

.header-style-three .outer-box .btn-box{
	padding:24px 0px;
}

.header-style-three .sticky-header .outer-box .btn-box{
	padding:12px 0px;
}

/* Header Style Four */

.header-style-four{
/*	position:absolute;*/
	width:100%;
}

.header-style-four .header-top .btn-box a{
	padding: 6px 24px;
}

.header-style-four .header-upper{
	background: #fff;
    /* border-top: 1px solid rgba(255, 255, 255, 0.20); */
    padding: 12px 0px;
}

.header-style-four .header-upper .top_header {
    background: #0262b0;
    border-radius: 5px;
    margin-top: 30px;
    display: inline-block;
    float: right;
}
.header-style-four .header-upper .top_add ul li {
    display: inline-block;
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    border-right: 1px solid #96d45f;
    padding: 9px 15px;
}
.header-style-four .header-upper .top_add ul li:last-child{
	border-right: none;
}
.header-style-four .header-upper .top_add ul li i {
    padding-right: 10px;
    font-size: 15px;
}
.header-style-four .header-upper .top_add ul li a {
    color: #fff;
    transition: 0.5s ease;
}
.header-style-four .header-upper .top_add ul li:hover a {
    color: #e12832;
}

.header-style-four .language > a,
.header-style-four .header-top .top-left .text .icon,
.header-style-four .header-top .top-left .text{
	color:#9a8b94;
}

.main-header.header-style-four .header-upper .top-right{
	text-align: center;
	margin-top: 30px;
}
.main-header.header-style-four .header-upper .info-list li{
	display: inline-block;
}
.main-header.header-style-four .header-upper .info-list li a{
	color:#000;
	border-color:#000;
}
.main-header.header-style-four .header-upper .info-list li:hover a{
	color: #0262b0;
}

.header-style-four.fixed-header .header-upper{
	box-shadow: 1px 1px 10px #6c6c6c;
}

/* Header Style Five */

.header-style-five .header-upper{
	position:relative;
	background-image:none;
}

.header-style-five .header-upper .logo-outer{
	padding:20px 0px;
}

.header-style-five .header-upper .info-outer{
	float:right;
	padding-top:32px;
}

.header-style-five .header-upper .info-outer .info-box{
	position:relative;
	float:left;
	padding-left:65px;
}

.header-style-five .header-upper .info-outer .info-box .icon{
	position:absolute;
	left:0px;
	top:4px;
	font-size:44px;
	line-height:1em;
}

.header-style-five .header-upper .info-outer .info-box .text{
	position:relative;
	color:#8e8e8e;
	font-size:15px;
	font-weight:400;
}

.header-style-five .header-upper .info-outer .info-box .text strong{
	font-weight:500;
	color:#242424;
	display:block;
}

.header-style-five .main-menu .navigation > li{
	padding:17px 0px;
	margin-right:60px;
}

.header-style-five .header-lower{
	background-color:#0f2331;
}

.header-style-five .header-lower:before{
	position:absolute;
	content:'';
	left:0px;
	top:0px;
	width:100%;
	height:50%;
	background-color:rgba(255,255,255,0.03);
}

.header-style-five .search-form-box{
	position:relative;
	width:330px;
}

.header-style-five .search-form-box .form-group{
	position:relative;
	margin:0px;
	width:100%;
	max-width:320px;
}

.header-style-five .search-form-box .form-group input{
	height:69px;
	width:100%;
	color:#ffffff;
	font-weight:300;
	padding-left:30px;
	padding-right:48px;
	background-color:#060d13;
}

.header-style-five .search-form-box .form-group textarea::-webkit-input-placeholder,
.header-style-five .search-form-box .form-group input::-webkit-input-placeholder{
	color:rgba(255,255,255,0.70);
}

.header-style-five .search-form-box .form-group button{
	position:absolute;
	color:#ffffff;
	right:0px;
	top:0px;
	width:48px;
	font-size:20px;
	line-height:68px;
	text-align:left;
	background:none;
}
.main-header .head-top{
	background: #ffe4e5;
	background: #dcf4ff;
	line-height: 0;
}
.main-header .head-top marquee{
	font-size: 15px;
	margin-bottom: 0;
	color: #000;
	height: 37px;
    line-height: 37px;
/*    font-weight: 500;*/
}

.menu{
	background: #000;
	line-height: 42px;
}

/*** 
 


====================================================================
				Sticky Header
====================================================================

***/

.sticky-header{
    position: fixed;
    visibility: hidden;
    opacity: 0;
    left: 0px;
    top: 0px;
    width: 100%;
    padding: 0px 0px;
    z-index: -1;
    background: #ffffff;
    -webkit-box-shadow: 0 0 15px rgba(0,0,0,0.10);
    -moz-box-shadow: 0 0 15px rgba(0,0,0,0.10);
    -ms-box-shadow: 0 0 15px rgba(0,0,0,0.10);
    -o-box-shadow: 0 0 15px rgba(0,0,0,0.10);
    box-shadow: 0 0 15px rgba(0,0,0,0.10);
    -webkit-transition: top 300ms ease;
    -moz-transition: top 300ms ease;
    -ms-transition: top 300ms ease;
    -o-transition: top 300ms ease;
    transition: top 300ms ease;
}

.fixed-header .sticky-header{
	opacity:1;
	z-index: 99999;
	visibility:visible;
}

.fixed-header .sticky-header .logo{
	padding: 10px 0;
}
.logo a h1{
	color: #ffffff;
	font-size: 28px;
	font-weight: 600;
	padding-bottom: 3px;
	letter-spacing: 1px;
}	
.logo a h2{
	color: #ffffff;
	font-size: 17px;
	font-weight : 300;
	letter-spacing: 1px;
}

.sticky-header .main-menu .navigation > li{
	margin-left: 32px !important;
	padding: 0;
	margin-right: 0;
	background-color: transparent;
}

.sticky-header .main-menu .navigation > li > a:before,
.sticky-header .main-menu .navigation > li:after{
	display: none !important;
}

.sticky-header .main-menu .navigation > li > a{
	padding:23px 0px !important;
	line-height:30px;
	font-size:16px;
	font-weight:600;
	color:#222222;
	text-transform:capitalize;
	-webkit-transition: all 300ms ease;
	-moz-transition: all 300ms ease;
	-ms-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	transition: all 300ms ease;
}

.sticky-header .main-menu .navigation > li:hover > a,
.sticky-header .main-menu .navigation > li.current > a,
.sticky-header .main-menu .navigation > li.current-menu-item > a{
	opacity:1;
	color: #e12832;
}

/*** 

====================================================================
			Mobile Menu
====================================================================

***/

.nav-outer .mobile-nav-toggler{
	position: relative;
	font-size: 30px;
	line-height: 40px;
	cursor: pointer;
	color:#fff;
	padding:27px 0px 0px;
	display: none;
}

.mobile-menu{
	position: fixed;
	right: 0;
	top: 0;
	width: 300px;
	padding-right:30px;
	max-width:100%;
	height: 100%;
	opacity: 0;
	visibility: hidden;
	z-index: 999999;
}

.mobile-menu .nav-logo{
	position:relative;
/*	padding:20px 20px;*/
	text-align:left;	
	visibility: hidden;
}

.mobile-menu-visible{
	overflow: hidden;
}

.mobile-menu-visible .mobile-menu{
	opacity: 1;
	visibility: visible;
}

.mobile-menu .menu-backdrop{
	position: fixed;
	right: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	background: rgba(0,0,0,0.90);
	background: rgb(0 0 0 / 73%);
	-webkit-transform: translateX(101%);
	-ms-transform: translateX(101%);
	transform: translateX(101%);
}

.mobile-menu-visible .mobile-menu .menu-backdrop{
	opacity: 1;
	visibility: visible;
	-webkit-transition:all 0.7s ease;
	-moz-transition:all 0.7s ease;
	-ms-transition:all 0.7s ease;
	-o-transition:all 0.7s ease;
	transition:all 0.7s ease;
	-webkit-transform: translateX(0%);
	-ms-transform: translateX(0%);
	transform: translateX(0%);
}

.mobile-menu .menu-box{

	position: absolute;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	max-height: 100%;
	overflow-y: auto;
	background: #e4f2ff;
	padding: 0px 0px;
	z-index: 5;
	opacity: 0;
	visibility: hidden;
	border-radius: 0px;
	-webkit-transform: translateX(101%);
	-ms-transform: translateX(101%);
	transform: translateX(101%);
}

.mobile-menu-visible .mobile-menu .menu-box{

	opacity: 1;
	visibility: visible;
	-webkit-transition:all 0.7s ease;
	-moz-transition:all 0.7s ease;
	-ms-transition:all 0.7s ease;
	-o-transition:all 0.7s ease;
	transition:all 0.7s ease;
	-webkit-transform: translateX(0%);
	-ms-transform: translateX(0%);
	transform: translateX(0%);
}

.mobile-menu .close-btn{
	position: absolute;
	right: 3px;
	top: 3px;
	line-height: 30px;
	width: 30px;
	text-align: center;
	font-size: 14px;
	color: #202020;
	cursor: pointer;
	z-index: 10;
	-webkit-transition:all 0.5s ease;
	-moz-transition:all 0.5s ease;
	-ms-transition:all 0.5s ease;
	-o-transition:all 0.5s ease;
	transition:all 0.5s ease;
	-webkit-transform: translateY(-50px);
	-ms-transform: translateY(-50px);
	transform: translateY(-50px);
}

.mobile-menu-visible .mobile-menu .close-btn{
	-webkit-transform: translateY(0px);
	-ms-transform: translateY(0px);
	transform: translateY(0px);
}

.mobile-menu .close-btn:hover{
	opacity: 0.50;
}

.mobile-menu .navigation{
	position: relative;
	display: block;
	border-top: 1px solid rgba(0,0,0,0.10);
}

.mobile-menu .navigation li{
	position: relative;
	display: block;
	border-bottom: 1px solid rgba(0,0,0,0.10);
}

.mobile-menu .navigation li > ul > li:last-child{
	border-bottom: none;
}

.mobile-menu .navigation li > ul > li:first-child{
	border-top: 1px solid rgba(0,0,0,0.10);
}

.mobile-menu .navigation li > a{
	position: relative;
	display: block;
	line-height: 24px;
	padding: 10px 20px;
	font-size: 15px;
	color: #000000;
	text-transform: capitalize;
}

.mobile-menu .navigation li.dropdown .dropdown-btn{
	position:absolute;
	right:0px;
	top:0px;
	width:44px;
	height:44px;
	text-align:center;
	font-size:16px;
	line-height:44px;
	color:#404040;
	cursor:pointer;
	z-index:5;
}

.mobile-menu .navigation li.dropdown .dropdown-btn:after{
	content:'';
	position:absolute;
	left:0px;
	top:10px;
	width:1px;
	height:24px;
	border-left:1px solid rgba(0,0,0,0.10);
}

.mobile-menu .navigation li > ul,
.mobile-menu .navigation li > ul > li > ul{

	display: none;
}

/*** 

====================================================================
		Section Title
====================================================================

***/

.sec-title{
	position:relative;
	z-index: 1;
	margin-bottom:40px;
	text-align: center;
}

.attachments-section .sec-title h2{color:#653573;}
.sec-title h2{
	position: relative;
	display: inline-block;
	font-size:32px;
	color: #653573;
	font-weight: 500;
	padding-bottom: 15px;
	font-family:"Yeseva One", serif;
	letter-spacing:1px;
}
.sec-title h2:before{
	position: absolute;
	content: '';
	left: 0;
	bottom: 0;
	width: 50%;
	height: 1px;
	background: #653573;
}
.sec-title h2:after{
	position: absolute;
	content: '';
	right: 0;
	bottom: 0;
	width: 51%;
	height: 1px;
	background: #d7dadd;
}
.sec-title1{
	text-align: center;
	margin-bottom: 30px;
}
.sec-title1 h3{
	font-size:34px;
	color: #000;
	display: inline-block;
	font-weight: 600;
	padding-bottom: 0px;
}
.sec-title .text{
	position:relative;
	color:#797979;
	font-size:16px;
	line-height:1.3em;
	margin-top:10px;
	padding-right:65px;
	display:inline-block;
}

.sec-title.style-two .text{
	font-size:20px;
	font-style:italic;
}

.sec-title .text:before{
	position:absolute;
	content:'';
	right:0px;
	bottom:3px;
	width:50px;
	height:2px;
	background-color:#0262b0;
}

.sec-title.light h2,
.sec-title.light .text{
	color: #ffffff;
}

.sec-title.light .text:before{
	background-color:#ffffff;
}

.sec-title.centered{
	text-align:center;
}

/*** 

====================================================================
	Section Title Two
====================================================================

***/

.sec-title-two{
	position:relative;
	z-index: 1;
	margin-bottom:50px;
}

.sec-title-two h2{
	position: relative;
	display: block;
	font-size:34px;
	line-height: 1.2em;
	color: #0e2a4e;
	font-weight: 700;
	padding-bottom:25px;
}

.sec-title-two h2:before{
	position:absolute;
	content:'';
	left:0px;
	bottom:0px;
	width:40px;
	height:2px;
	background-color:#0e2a4e;
}

.sec-title-two .text{
	position:relative;
	color:#797979;
	font-size:16px;
	line-height:1.8em;
	margin-top:25px;
}

.sec-title-two.style-two .text{
	font-size:22px;
	font-style:italic;
	line-height:1.4em;
}

.sec-title-two.centered:before{
	left:50%;
	margin-left:-20px;
}

.sec-title-two.light h2:before{
	background-color:#ffffff;
}

.sec-title-two.light h2{
	color: #ffffff;
}

.sec-title-two.light h2:after{
	background-color:#ffffff;
}

.sec-title-two.centered{
	text-align:center;
}

.sec-title-two.centered h2:before{
	left:50%;
	margin-left:-20px;
}

.sec-title-two.centered h2:after{
	left:50%;
	margin-left:-20px;
}


/*** 

====================================================================
	Main Slider
====================================================================

***/

.main-slider{
	position: relative;
}

.main-slider.style-two{
	top:-65px;
	margin-bottom:-65px;
}

.main-slider h2{
	position: relative;
	display: block;
	font-size: 55px;
	color: #ffffff;
	font-weight: 700;
	line-height: 1.18em;
	text-transform:capitalize;
}

.main-slider .text{
	position: relative;
	display: block;
	font-size: 35px;
	line-height: 1.6em;
	color: #ffffff;
	font-weight: 600;
	font-style : italic;
}

.main-slider h2.style-two{
	color:#0e2a4e;
}

.main-slider .text.style-two{
	color:#000000;
}

.main-slider .link-box{
	position: relative;
}

.main-slider .link-box:after{
	display: table;
	clear: both;
	content: "";
}

.main-slider .link-box .theme-btn{
	position: relative;
	float: left;
	margin-right: 35px;
}

/*** 

====================================================================
	Services Section
====================================================================

***/

.services-section{
	position:relative;
	padding: 60px 0; 
}

.services-section.style-two{
	margin-bottom:100px;
}

.services-section:before{
	position:absolute;
	content:'';
	left:0px;
	bottom:0px;
	width:100%;
	height:140px;
	background-color:#ffffff;
}

.services-section .title-box{
	position:relative;
	text-align:center;
	margin-bottom:50px;
}

.services-section .title-box h2{
	position:relative;
	color:#e12832;
	font-weight:700;
	line-height:1.3em;
}

.services-section .title-box .bold-text{
	position:relative;
	color:#242424;
	line-height:1.4em;
	font-size:22px;
	max-width:1000px;
	margin:0 auto;
	margin-top:14px;
	font-style:italic;
}

.services-section .title-box .text{
	position:relative;
	color:#797979;
	font-weight:400;
	line-height:1.7em;
	font-size:16px;
	max-width:1020px;
	margin:0 auto;
	margin-top:15px;
}

.services-section .service-block{
	
	display: inline-block;
}

/* Service Block */

.service-block{
	position:relative;
}

.service-block .inner-box{
	position:relative;
}

.service-block .inner-box .image{
	position:relative;
}

.service-block .inner-box .image img{
	position:relative;
	width:100%;
	display:block;
}

.service-block .inner-box .image .overlay-box{
	position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    color: #ffffff;
    text-align: center;
    background: rgb(255 235 249);
    -webkit-transition: all 700ms ease;
    -ms-transition: all 700ms ease;
    -o-transition: all 700ms ease;
    transition: all 700ms ease;
    border-radius: 10px;
    box-shadow: 1px 1px 3px #e884c7;
    border: 1px solid #ffd5f1;
}
.service-block .inner-box .image .overlay-box .text a{
	color : #000;
}
.service-block .inner-box .image .overlay-box .text a:hover{
	color : #000;
}
/*.service-block:nth-child(2) .inner-box .image .overlay-box{
	background:rgba(134,32,29,0.85);
}

.service-block:nth-child(3) .inner-box .image .overlay-box{
	background:rgba(10,95,167,0.85);
}*/

.service-block .inner-box .image .overlay-box .overlay-inner{
	position:absolute;
	left:0px;
	top:0px;
	width:100%;
	height:100%;
	display:table;
	padding:10px 5px;
	vertical-align:middle;
}

.service-block .inner-box .image .overlay-box .overlay-inner .content{
	position:relative;
	display:table-cell;
	vertical-align:middle;
}

.service-block .inner-box .image .overlay-box .content-inner{
	position:relative;
	padding-bottom:0px;
	-webkit-transition:all 600ms ease;
	-ms-transition:all 600ms ease;
	-o-transition:all 600ms ease;
	-moz-transition:all 600ms ease;
	transition:all 600ms ease;
}

.service-block .inner-box:hover .image .overlay-box .content-inner{
	padding-bottom:40px;
}

.service-block .inner-box .image .overlay-box .content-inner .btn-box{
	position:absolute;
	left:0px;
	right:0px;
	bottom:0px;
	padding:0px;
}

.service-block .inner-box .image .overlay-box h3 {
    position: relative;
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #000;
}

.service-block .inner-box .image .overlay-box h3 a{
	position:relative;
	color:#ffffff;
	overflow:hidden;
	display:inline-block;
}

.service-block .inner-box .image .overlay-box h3 a:after{
	content: '';
    position: absolute;
    height: 6px;
    width: 100%;
    top: 50%;
    margin-top: -1px;
    right: 0;
    background: #F9F9F9;
    -webkit-transform: translate3d(-110%,0,0);
    transform: translate3d(-110%,0,0);
    -webkit-transition: -webkit-transform 0.8s;
    transition: transform 0.8s;
    -webkit-transition-timing-function: cubic-bezier(0.7,0,0.3,1);
    transition-timing-function: cubic-bezier(0.7,0,0.3,1);
}

.service-block .inner-box .image .overlay-box h3 a:hover::after{
    -webkit-transform: translate3d(110%,0,0);
    transform: translate3d(110%,0,0);
}

.service-block .inner-box .image .overlay-box .text{
	position:relative;
	color:#000;
	font-size:16px;
	line-height:1.8em;
}

.service-block .inner-box .image .overlay-box .care-btn{
	position:relative;
	color:#e9edf1;
	font-size:15px;
	font-weight:500;
	border-radius: 5px;
	display:inline-block;
	padding:8px 20px;
	background-color:#e12832;
	text-transform:capitalize;
	visibility:hidden;
	opacity:0;
}
.service-block .inner-box .image .overlay-box .care-btn span{
	margin-left: 5px;
}

.service-block .inner-box .image .overlay-box .care-btn .icon{
	position:relative;
	top:2px;
	font-size:18px;
	font-weight:400;
}

.service-block .inner-box:hover .image .overlay-box .care-btn{
	opacity:1;
	visibility:visible;
}

.service-block .inner-box .image .overlay-box .care-btn:hover{
	background-color:#0262b0;
}

/*** 

====================================================================
	Services Section Two
====================================================================

***/

.services-section-two{
	position:relative;
	padding: 50px 0px 55px;
	/* border-top: 1px dashed #0262b069; */
}

.services-section-two.style-two{
	background-color:#2c75b2;
}

.services-section-two.style-three{
	/*background-color:#f5fcff;
	background-color: #e4f7ff;*/
}
.services-section-two.style-three .owl-carousel .owl-stage-outer{
	padding: 5px 0;
}

.services-section-two .owl-dots{
	display:none;
}

.services-section-two .owl-nav .owl-prev,
.services-section-two .owl-nav .owl-next{
	position:absolute;
	top:45%;
/*	width: 40px;*/
/*	height: 40px;*/
/*	line-height: 40px;*/
/*	background:#0262b0;*/
	color:#000;
	font-size:30px;
/*	border-radius: 5px;*/
	text-align:center;
	font-weight:400;
	display:inline-block;
	-webkit-transition:all 300ms ease;
	-moz-transition:all 300ms ease;
	-ms-transition:all 300ms ease;
	-o-transition:all 300ms ease;
    transition: all 300ms ease;
}

.services-section-two .owl-nav .owl-prev{
	left: -4%;
}

.services-section-two .owl-nav .owl-next{
	right: -4%;
}

.services-section-two .owl-nav .owl-prev:hover,
.services-section-two .owl-nav .owl-next:hover{
/*	background-color:#e12832;*/
	color: #cb1a24;
}

.service-block-two{
	position: relative;
    background: #fff;
    /* padding: 7px; */
    border-radius: 20px;
	margin:30px 0;
    /* box-shadow: 0px 0px 5px #8e8e8e; */
    /* background-color: #f5fcff; */
    /* background-color: #e4f7ff; */
/*    border: 1px solid #e1e1e1;*/
}

.service-block-two .inner-box{
	position:relative;
}

.service-block-two .inner-box .image{
	position:relative;
	overflow:hidden;
	border: 1px solid #e1e1e1;
	border-radius: 15px 15px 0 0;
}

.service-block-two .inner-box .image:before{
	position:absolute;
	content:'';
	left:-100%;
	top:50%;
	width:100%;
	height:20px;
	margin-top:-10px;
	background-color:#be9a8d;
	-webkit-transition:all 600ms ease;
	-ms-transition:all 600ms ease;
	-o-transition:all 600ms ease;
	-moz-transition:all 600ms ease;
	transition:all 600ms ease;
}

.service-block-two .inner-box:hover .image:before{
	left:100%;
	width:100%;
	-webkit-transition-delay: 300ms;
	-moz-transition-delay: 300ms;
	-ms-transition-delay: 300ms;
	-o-transition-delay: 300ms;
	transition-delay: 300ms;
}

.service-block-two .inner-box .image img{
	position:relative;
	width:100%;
	display:block;
	-webkit-transition:all 300ms ease;
	-ms-transition:all 300ms ease;
	-o-transition:all 300ms ease;
	-moz-transition:all 300ms ease;
	transition:all 300ms ease;
}

.service-block-two .inner-box:hover .image img{
/*	opacity:0.4;*/
}

.service-block-two .inner-box .lower-content{
	position:relative;
}

.service-block-two .inner-box .lower-content h3{
	position: relative;
    font-weight: 500;
    font-size: 18px;
    color: #fff;
    padding: 12px 10px;
    line-height: 25px;
    text-transform: capitalize;
    background: #0262b0;
}

.service-block-two .inner-box .lower-content h3 a{
	position:relative;
	-webkit-transition:all 300ms ease;
	-ms-transition:all 300ms ease;
	-o-transition:all 300ms ease;
	-moz-transition:all 300ms ease;
	transition:all 300ms ease;
}

.service-block-two .inner-box .lower-content h3 a:hover{
	color:#532840;
}

.service-block-two .inner-box .lower-content .text{
	position:relative;
	font-weight:400;
	line-height:1.6em;
	font-size:16px;
	color:#000;
	margin-top:10px;
}

.services-section-two.style-two .owl-nav .owl-prev,
.services-section-two.style-two .owl-nav .owl-next{
	border-color:rgba(255,255,255,0.50);
	color:rgba(255,255,255,0.50);
}

.services-section-two.style-two .owl-nav .owl-prev:hover,
.services-section-two.style-two .owl-nav .owl-next:hover{
	color:#e12832;
	border-color:#ffffff;
	background-color:#ffffff;
}

.service-block-two.style-two .inner-box .lower-content h3 a,
.service-block-two.style-two .inner-box .lower-content .text{
	color:#ffffff;
}

/*** 

====================================================================
	Fluid Section One
====================================================================

***/

.fluid-section-one{
	position:relative;
}

.fluid-section-one .outer-container{
	position:relative;
}

.fluid-section-one .image-column{
    position: absolute;
    right: 0px;
	top:70px;
    width: 45%;
    bottom:0px;
	float:right;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.fluid-section-one .image-column .inner-column{
	position:static;
}

.fluid-section-one .image-column:before{
	position:absolute;
	content:'';
	left:0px;
	top:0px;
	right:0px;
	bottom:0px;
	background-color:rgba(77,39,63,0.20);
}

.fluid-section-one .image-column .image{
    width: 100%;
    display: none;
}

.fluid-section-one .image-column .image img{
    display: block;
    width: 100%;
}

.fluid-section-one .image-column .overlay-link{
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.03);
    transition: all 0.6s ease;
    -moz-transition: all 0.6s ease;
    -webkit-transition: all 0.6s ease;
    -ms-transition: all 0.6s ease;
    -o-transition: all 0.6s ease;
}

.fluid-section-one .image-column .overlay-link .icon-box{
    position: absolute;
    left: 50%;
	top: 50%;
    width: 80px;
    height: 80px;
    color: #ffffff;
    font-size: 22px;
    padding-left: 6px;
    line-height: 80px;
    text-align: center;
    border-radius: 50%;
    margin-bottom: 50px;
    display: inline-block;
	margin-left: -40px;
	margin-top: -40px;
    background-color: #e12832;
}

/*Content Column*/

.fluid-section-one .content-column{
	position: relative;
    width: 60%;
	float:left;
	padding:95px 165px 80px 15px;
}

.fluid-section-one .content-column:before{
	position:absolute;
	content:'';
	left:0px;
	top:0px;
	right:0px;
	bottom:0px;
	background-color:#e12832;
}

.fluid-section-one .content-column .image-layer{
	position:absolute;
	left:0px;
	top:0px;
	width:100%;
	height:100%;
	background-position:left top;
	background-repeat:no-repeat;
}

.fluid-section-one .content-column .content-box{
	position:relative;
	max-width:550px;
	float:right;
}

.fluid-section-one .content-column h2{
	position:relative;
	color:#f2f2f2;
	font-size:40px;
	font-weight:700;
	line-height:1.3em;
}

.fluid-section-one .content-column .text{
	position:relative;
	color:#e0dbde;
	font-size:16px;
	font-weight:400;
	line-height:1.8em;
	margin-top:12px;
	margin-bottom:28px;
}

.fluid-section-one .content-column .bold-text{
	position:relative;
	color:#be9a8d;
	font-size:24px;
	font-weight:400;
	line-height:1.5em;
	margin-top:25px;
}



/*** 

====================================================================
	Services Section Three
====================================================================

***/

.services-section-three{
	position:relative;
	padding:90px 0px 60px;
	background-color:#edf1f4;
}

.services-section-three.style-two{
	background:none;
}

.services-section-three .title-box{
	position:relative;
	text-align:center;
	margin-bottom:60px;
}

.services-section-three .title-box h2{
	position:relative;
	color:#0e2a4e;
	font-size:35px;
	font-weight:700;
}

.services-section-three .title-box .text{
	position:relative;
	color:#797979;
	font-size:16px;
	margin-top:10px;
}

/* Service Block Three */

.service-block-three{
	position:relative;
	margin-bottom:30px;
}

.service-block-three .inner-box{
	position:relative;
	padding:32px 32px;
	min-height:148px;
	background-color:#ffffff;
	box-shadow:0px 0px 25px rgba(0,0,0,0.10);
}

.service-block-three .inner-box:before{
	position:absolute;
	content:'';
	left:0px;
	top:0px;
	width:3px;
	height:100%;
	background-color:#be9a8d;
	transition: all 900ms ease;
    -moz-transition: all 900ms ease;
    -webkit-transition: all 900ms ease;
    -ms-transition: all 900ms ease;
    -o-transition: all 900ms ease;
}

.service-block-three .inner-box:hover::before{
	width:100%;
}

.service-block-three .inner-box .overlay-box{
	position:absolute;
	left:0px;
	top:0px;
	right:0px;
	bottom:0px;
}

.service-block-three .inner-box .overlay-box .overlay-inner{
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    display: table;
    padding:32px 32px;
    vertical-align: middle;
}

.service-block-three .inner-box .overlay-box .overlay-inner .overlay-content{
    position: relative;
    display: table-cell;
    vertical-align: middle;
}

.service-block-three .inner-box .overlay-box .content{
	position:relative;
	padding-left:80px;
}

.service-block-three .inner-box .overlay-box .content .icon-box{
	position:absolute;
	left:0px;
	top:4px;
	color:#33629d;
	line-height:1em;
	font-size:64px;
	transition: all 600ms ease;
    -moz-transition: all 600ms ease;
    -webkit-transition: all 600ms ease;
    -ms-transition: all 600ms ease;
    -o-transition: all 600ms ease;
}

.service-block-three .inner-box .overlay-box .content h3{
	position:relative;
	color:#0e2a4e;
	font-size:19px;
	line-height:1.5em;
}

.service-block-three .inner-box .overlay-box .content h3 a{
	position:relative;
	color:#0e2a4e;
	transition: all 600ms ease;
    -moz-transition: all 600ms ease;
    -webkit-transition: all 600ms ease;
    -ms-transition: all 600ms ease;
    -o-transition: all 600ms ease;
}

.service-block-three .inner-box:hover .overlay-box .content .icon-box,
.service-block-three .inner-box:hover .overlay-box .content h3 a{
	color:#ffffff;
}

/*** 

====================================================================
	Call To Action Section
====================================================================

***/

.call-to-action-section{
	position:relative;
	padding:165px 0px 100px;
	background-color:#252727;
	background-position:left center;
	background-repeat:no-repeat;
	background-attachment:fixed;
}

.call-to-action-section:before{
	position:absolute;
	content:'';
	left:0px;
	top:0px;
	width:100%;
	height:100%;
	display:block;
	background-image: -ms-linear-gradient(left, #252727 0%, rgba(255,255,255,0) 100%);
	background-image: -moz-linear-gradient(left, #252727 0%, rgba(255,255,255,0) 100%);
	background-image: -o-linear-gradient(left, #252727 0%, rgba(255,255,255,0) 100%);
	background-image: -webkit-gradient(linear, left top, right top, color-stop(0, #252727), color-stop(100, rgba(255,255,255,0)));
	background-image: -webkit-linear-gradient(left, #252727 0%, rgba(255,255,255,0) 100%);
	background-image: linear-gradient(to right, #252727 0%, rgba(255,255,255,0) 100%);
}

.call-to-action-section h2{
	position:relative;
	color:#ffffff;
	font-size:55px;
	font-weight:700;
	line-height:1.3em;
}

.call-to-action-section .text{
	position:relative;
	color:#ffffff;
	font-size:28px;
	font-weight:400;
	line-height:1.3em;
	margin-top:8px;
	max-width:620px;
	margin-bottom:35px;
}

/*** 

====================================================================
	Testimonial Section
====================================================================

***/

.testimonial-section{
	position:relative;
	padding: 60px 0px;
	background-color:#ffffff;
}

.testimonial-section .sec-title-two.light h2 {
    color: #000;
}
.testimonial-section .sec-title-two.light h2:before {
	background-color:#0262b0;
}
.testimonial-block{
	position:relative;
}

.testimonial-block .inner-box{
	position:relative;
}

.testimonial-block .inner-box .content-box{
	position: relative;
    padding: 25px;
/*    border-radius: 5px;*/
    background-color: #effaff;
    height: 280px;
    overflow-x: scroll;
    border: 1px solid #ddf5ff;
}

.testimonial-block .inner-box .content-box p{
	font-size: 16px;
	color: #000;
	margin-bottom: 0;
    line-height: 28px;
}

.testimonial-block .inner-box .content-box:before{
	position:absolute;
	content:'';
	left:40px;
	bottom:-20px;
	border-top: 20px solid #efefef;
    border-right: 20px solid transparent;
}

.testimonial-block .inner-box .content-box .text{
	position:relative;
	font-size:16px;
	color:#000;
	font-style : italic;
	font-weight : normal;
	line-height:26px;
}

.testimonial-block .inner-box .lower-box{
	position:relative;
}

.testimonial-block .inner-box .lower-box .box-inner{
	position:relative;
	padding-top:3px;
	min-height:76px;
	padding-left:75px;
}

.testimonial-block .inner-box .lower-box .box-inner .image{
	position:absolute;
	left:0px;
	top:0px;
	width:60px;
	height:60px;
	border-radius:50%;
	overflow:hidden;
    background: #fff;
    padding: 3px;
}

.testimonial-block .inner-box .lower-box .box-inner h3{
	position:relative;
	color:#e12832;
	font-size:21px;
	font-weight:600;
	text-transform: capitalize;
}

.testimonial-block .inner-box .lower-box .box-inner h3 span{
	font-size:15px;
}

.testimonial-block .inner-box .lower-box .box-inner .rating{
	position:relative;
	margin-top:5px;
	font-size: 16px;
}

.testimonial-block .inner-box .lower-box .box-inner .rating .fa{
	color: rgb(232 186 0);
    margin-right: 2px;
}

.testimonial-block.style-two{
	margin-bottom:80px;
}

.testimonial-block.style-two .inner-box .lower-box .box-inner h3,
.testimonial-block.style-two .inner-box .lower-box .box-inner .rating .fa{
	color:#0e2a4e;
}

/*** 

====================================================================
	Team Section
====================================================================

***/

.team-section{
	position:relative;
	padding:120px 0px 0px;
}

.team-section.team-page-section{
	padding:100px 0px 20px;
}

.team-page-section .team-block{
	margin-bottom:80px !important;
}

.team-section .team-block{
	padding:0px;
	float:left;
	margin-bottom:0px;
}

.team-section.style-two{
	padding:90px 0px 70px;
}

.team-section.style-two .team-block{
	margin-bottom:30px;
}

.team-block{
	position:relative;
	z-index:1;
	margin-bottom:30px;
}

.team-block .inner-box{
	position:relative;
}

.team-block .inner-box .image{
	position:relative;
	overflow:hidden;
}

.team-block .inner-box .image .overlay-box{
	position:absolute;
	content:'';
	left:0px;
	top:0px;
	right:0px;
	bottom:-20px;
}

.team-block .inner-box .image .overlay-box:before{
	position:absolute;
	content:'';
	left:0px;
	bottom:0px;
	width:100%;
	height:1%;
	z-index:1;
	background-color:rgba(77,39,63,0.60);
	-webkit-transition:all 600ms ease;
	-ms-transition:all 600ms ease;
	-o-transition:all 600ms ease;
	-moz-transition:all 600ms ease;
	transition:all 600ms ease;
}

.team-block .inner-box:hover .image .overlay-box:before{
	height:100%;
}

.team-block .inner-box .image .overlay-box .social-icons{
	position:absolute;
	left:0px;
	right:0px;
	bottom:-60px;
	z-index:10;
	text-align:center;
	-webkit-transition:all 600ms ease;
	-ms-transition:all 600ms ease;
	-o-transition:all 600ms ease;
	-moz-transition:all 600ms ease;
	transition:all 600ms ease;
}

.team-block .inner-box .image .overlay-box .social-icons li{
	position:relative;
	margin:0px 8px;
	display:inline-block;
}

.team-block .inner-box .image .overlay-box .social-icons li a{
	position:relative;
	font-size:20px;
	color:#ffffff;
	display:inline-block;
}

.team-block .inner-box:hover .image .overlay-box .social-icons{
	bottom:50px;
	transition-delay: 400ms;
}

/* .team-block .inner-box .image a{
	position:relative;
	display:block;
}

.team-block .inner-box .image a:before{
	position:absolute;
	content:'';
	left:0px;
	top:0px;
	width:100%;
	height:0px;
	z-index:1;
	background-color:rgba(200,162,148,0.40);
	-webkit-transition:all 600ms ease;
	-ms-transition:all 600ms ease;
	-o-transition:all 600ms ease;
	-moz-transition:all 600ms ease;
	transition:all 600ms ease;
}

.team-block .inner-box:hover .image a:before{
	height:100%;
}

.team-block .inner-box .image a:after{
	position:absolute;
	content:'';
	left:0px;
	bottom:0px;
	width:100%;
	height:0px;
	z-index:1;
	background-color:rgba(244,116,94,0.40);
	-webkit-transition:all 600ms ease;
	-ms-transition:all 600ms ease;
	-o-transition:all 600ms ease;
	-moz-transition:all 600ms ease;
	transition:all 600ms ease;
}

.team-block .inner-box:hover .image a:after{
	height:100%;
} */

.team-block .inner-box .image img{
	position:relative;
	width:100%;
	display:block;
}

.team-block .inner-box .lower-content{
	position:relative;
	z-index:2;
	text-align:center;
	padding:14px 15px 17px;
	background-color:#ffffff;
	box-shadow:0px 0px 20px rgba(0,0,0,0.10);
}

.team-block .inner-box .lower-content h3{
	position:relative;
	color:#0e2a4e;
	font-size:22px;
	font-weight:700;
	line-height:1.3em;
}

.team-block .inner-box .lower-content h3 a{
	position:relative;
	color:#0e2a4e;
	-webkit-transition: all 300ms ease;
	-moz-transition: all 300ms ease;
	-ms-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	transition: all 300ms ease;
}

.team-block .inner-box .lower-content h3 a:hover{
	color:#0262b0;
}

.team-block .inner-box .lower-content .designation{
	position:relative;
	color:#797979;
	font-size:16px;
	margin-top:5px;
	line-height:1.3em;
}

/*** 

====================================================================
	Postal Section
====================================================================

***/

.postal-section{
	position:relative;
	padding:270px 0px 120px;
	background-color:#2c75b2;
	background-position:right top;
	background-repeat:no-repeat;
}

.postal-section.margin-top{
	margin-top:-84px;
}

.postal-section .auto-container{
	position:relative;
}

.postal-section .post-image{
	position:absolute;
	left:60px;
	bottom:-40px;
	z-index:2;
	border:10px solid #ffffff;
	transform: rotate(-10deg);
	box-shadow:0px 0px 20px rgba(0,0,0,0.30);
}

.postal-section .post-image img{
	width:100%;
	display:block;
}

.postal-section .post-image.image-two{
	left:245px;
	top:-110px;
	z-index:1;
	bottom:auto;
	transform: rotate(10deg);
}

.postal-section:before{
	position:absolute;
	content:'';
	left:0px;
	top:0px;
	width:100%;
	height:100%;
	display:block;
	background-color:rgba(44,117,178,0.90);
}

.postal-section .post-box{
	position:relative;
	max-width:540px;
	width:100%;
	float:right;
	z-index:3;
	background-color:#0262b0;
	padding:35px 65px 35px 35px;
}

.postal-section .post-box h3{
	position:relative;
	font-size:24px;
	color:#ffffff;
	font-weight:400;
	line-height:1.3em;
	margin-bottom:20px;
}

.postal-section .post-box .text{
	position:relative;
	color:#ffffff;
	font-size:16px;
	margin-top:18px;
}

/* Postal Form */

.postal-form{
	position:relative;
}

.postal-form .form-group{
	position:relative;
	display:block;
	margin:0px;
	width:100%;
	margin-bottom:0px;
}

.postal-form .form-group input[type="text"],
.postal-form .form-group input[type="tel"],
.postal-form .form-group input[type="email"],
.postal-form .form-group textarea{
	position:relative;
	display:block;
	width:100%;
	line-height:26px;
	height:48px;
	font-size:14px;
	color:#242424;
	padding:10px 70px 10px 20px;
	background:#ffffff;
	-webkit-transition:all 300ms ease;
	-ms-transition:all 300ms ease;
	-o-transition:all 300ms ease;
	-moz-transition:all 300ms ease;
	transition:all 300ms ease;
}

.postal-form .form-group input[type="submit"],
.postal-form .form-group button{
	position:absolute;
	right:0px;
	top:0px;
    width: 70px;
    height: 48px;
	line-height:40px;
	color:#ffffff;
	font-size:20px;
	text-align:center;
	background:#e12832;
	font-weight:700;
	text-transform:uppercase;
}

/*** 

====================================================================
	News Section
====================================================================

***/

.news-section{
	position:relative;
	padding:90px 0px 60px;
	background-color:#f2f2f2;
}

.news-section.style-two{
	background-color:#ffffff;
}

.news-section .sec-title .view-blogs{
	position:relative;
	font-size:22px;
	font-weight:700;
	color:#e95926;
	margin-top:18px;
	display:inline-block;
	text-decoration:underline;
	-webkit-transition:all 300ms ease;
	-ms-transition:all 300ms ease;
	-o-transition:all 300ms ease;
	-moz-transition:all 300ms ease;
	transition:all 300ms ease;
}

.news-section .sec-title .view-blogs:hover{
	text-decoration:none;
	color:#0262b0;
}

.news-block{
	position:relative;
	margin-bottom:30px;
}

.news-block .inner-box{
	position:relative;
}

.news-block .inner-box .image{
	position:relative;
	overflow:hidden;
	background-color:#000000;
}

.news-block .inner-box .image img{
	position:relative;
	width:100%;
	display:block;
	-webkit-transition:all 300ms ease;
	-ms-transition:all 300ms ease;
	-o-transition:all 300ms ease;
	-moz-transition:all 300ms ease;
	transition:all 300ms ease;
}

.news-block .inner-box:hover .image img{
	opacity:0.5;
	transform:scale(1.1,1.1);
	-webkit-transform:scale(1.1,1.1);
	-ms-transform:scale(1.1,1.1);
	-o-transform:scale(1.1,1.1);
	-moz-transform:scale(1.1,1.1);
}

.news-block .inner-box .lower-content{
	position:relative;
	padding-top:22px;
}

.news-block .inner-box .lower-content .post-date{
	position:relative;
	color:#8e8e8e;
	font-size:14px;
	font-weight:600;
}

.news-block .inner-box .lower-content h3{
	position:relative;
	color:#0e2a4e;
	font-size:22px;
	font-weight:700;
	line-height:1.5em;
	margin-top:6px;
}

.news-block .inner-box .lower-content h3 a{
	position:relative;
	color:#0e2a4e;
	-webkit-transition:all 300ms ease;
	-ms-transition:all 300ms ease;
	-o-transition:all 300ms ease;
	-moz-transition:all 300ms ease;
	transition:all 300ms ease;
}

.news-block .inner-box .lower-content h3 a:hover{
	color:#e95926;
}

.news-block .inner-box .lower-content .text{
	position:relative;
	color:#797979;
	font-size:16px;
	font-weight:400;
	line-height:1.7em;
	margin-top:8px;
}

.news-block .inner-box .lower-content .read-more{
	position:relative;
	color:#e95926;
	font-size:15px;
	font-weight:700;
	margin-top:10px;
	display:inline-block;
	-webkit-transition:all 300ms ease;
	-ms-transition:all 300ms ease;
	-o-transition:all 300ms ease;
	-moz-transition:all 300ms ease;
	transition:all 300ms ease;
}

.news-block .inner-box .lower-content .read-more:hover{
	color:#0e2a4e;
}

/***

==================================================================
		Contact Map Section
==================================================================

***/

.map-section{
	position: relative;
}

.map-section .map-outer{
	position: relative;
} 

.map-section .map-canvas{
	position: relative;
	left: 0;
	top: 0;
	width: 100%;
	height: 425px;
}

.map-data{
	text-align:center;
	color:#0e2a4e;
	font-size:14px;
	font-weight:400;
	line-height:1.8em;
}

.map-data h6{
	font-size:16px;
	font-weight:700;
	text-align:center;
	margin-bottom:5px;
	color:#121212;
}

/*** 

====================================================================
	Main Footer
====================================================================

***/

.main-footer{
	position:relative;
	background:#fff2f9;
	padding:0 30px;
}

.main-footer .widgets-section{
	position:relative;
	padding: 50px 0px 20px;
}

.main-footer .footer-widget{
	position:relative;
/*	margin-bottom:30px;*/
}

.main-footer .footer-widget h2{
	position:relative;
	font-size:26px;
	font-weight:500;
	color:#653573;
	padding-bottom:12px;
	margin-bottom:20px;
	text-transform:capitalize;
	font-family:"Yeseva One", serif;
	letter-spacing:0.5px;
}

.main-footer .footer-widget h2:after{
	position:absolute;
	content:'';
	left:0px;
	bottom:0px;
	width:40px;
	height:1px;
	background-color:#653573;
}

.main-footer .logo-widget{
	position:relative;
}

.main-footer .logo-widget .logo{
	position:relative;
	margin-bottom:22px;
}

.main-footer .logo-widget .text{
	position:relative;
	color:#a8a8a8;
	font-size:14px;
	font-weight:400;
	padding-right:60px;
	margin-bottom:25px;
	line-height:1.9em;
}

.main-footer .logo-widget .social-icons{
	position:relative;
}

.main-footer .logo-widget .social-icons li{
	position:relative;
	margin-right:10px;
	display:inline-block;
}

.main-footer .logo-widget .social-icons li a{
	position:relative;
	width:36px;
	height:36px;
	font-size:14px;
	text-align:center;
	border-radius:50%;
	line-height:34px;
	color:#ffffff;
	font-weight:400;
	display:inline-block;
	border:1px solid rgba(255,255,255,0.30);
	-webkit-transition:all 300ms ease;
	-ms-transition:all 300ms ease;
	-o-transition:all 300ms ease;
	-moz-transition:all 300ms ease;
	transition:all 300ms ease;
}

.main-footer .logo-widget .social-icons li a:hover{
	color:#be9a8d;
	border-color:#be9a8d;
}

/* Links Widget */

.links-widget{
	position:relative;
}

.links-widget .list{
	position:relative;
}
.links-widget .list2{
	column-count: 2;
}
.links-widget .widget-content p{
	color: #fff;
	font-size: 15px;
}
.links-widget .list li{
	position:relative;
	margin-bottom:15px;
	color: #282828;
	font-size: 15px;
	padding-left: 20px;
}
.links-widget p{
	position:relative;
	margin-bottom:15px;
	color: #282828;
	font-size: 15px;
	line-height: 26px;
}
.links-widget .list li i{
	font-size: 13px;
	position: absolute;
	left: 0;
	top: 5px;
	color:#653573;
}

.links-widget .list li b{
	font-weight: 600;
	color: #653573;
	transition: 0.5s ease;
}
.links-widget .list li b:hover{
	color: #653573;
}
.links-widget .list li a{ 
	position:relative;
	color: #282828;
	-webkit-transition:all 300ms ease;
	-ms-transition:all 300ms ease;
	-o-transition:all 300ms ease;
	-moz-transition:all 300ms ease;
	transition:all 300ms ease;
}
.links-widget .list li a:hover{
	color: #653573;
}

.foot-logo{
	/* background-color: #fff; */
	/* padding: 3px; */
    /* border-radius: 5px; */
    margin-bottom: 10px;
}

/* Contact Widget */

.contact-widget .contact-number{
	position:relative;
	color:#a8a8a8;
	font-size:20px;
	font-weight:700;
	margin-bottom:10px;
	display:inline-block;
	-webkit-transition:all 300ms ease;
	-ms-transition:all 300ms ease;
	-o-transition:all 300ms ease;
	-moz-transition:all 300ms ease;
	transition:all 300ms ease;
}

.contact-widget .contact-number:hover{
	color:#ffffff;
}

.contact-widget ul{
	position:relative;
}

.contact-widget ul li{
	position:relative;
	color:#a8a8a8;
	font-size:15px;
	line-height:1.9em;
	margin-bottom:6px;
}

.contact-widget ul li a{
	position:relative;
	color:#a8a8a8;
	font-size:15px;
	line-height:1.9em;
	margin-left:4px;
	display:inline-block;
	-webkit-transition:all 300ms ease;
	-ms-transition:all 300ms ease;
	-o-transition:all 300ms ease;
	-moz-transition:all 300ms ease;
	transition:all 300ms ease;
}

.contact-widget ul li a:hover{
	color:#ffffff;
}

/* Newsletter Widget */

.newsletter-widget .text{
	position:relative;
	color:#a8a8a8;
	font-size:15px;
	line-height:1.9em;
	margin-bottom:15px;
}

/*Newsletter Form*/

.newsletter-form{
	position:relative;
	margin-bottom:30px;
}

.newsletter-form .form-group{
    position: relative;
    display: block;
    z-index:1;
	margin-bottom: 0px;
}

.newsletter-form .form-group input[type="text"],
.newsletter-form .form-group input[type="tel"],
.newsletter-form .form-group input[type="email"],
.newsletter-form .form-group textarea {
    position: relative;
    width: 100%;
    line-height: 28px;
    padding: 10px 25px;
    height: 46px;
	color:#ffffff;
	display:inline-block;
    font-size: 14px;
    background: none;
	letter-spacing:1px;
	border:1px solid rgba(255,255,255,0.10);
    -webkit-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    transition: all 300ms ease;
}

.newsletter-form .form-group input:focus{
	border-color:rgba(255,255,255,0.40);
}

.newsletter-form .form-group input[type="submit"],
.newsletter-form .form-group button {
	position: relative;
	margin-top:25px;
}


.footer-bottom .copyright{
	background: #e53791;
	text-align: center;
	border-top: 1px solid #e53791;
}

.footer-bottom .copyright p{
	color:#fff;
	font-size:15px;
	margin-bottom: 0;
	padding: 10px 0;
}

/*** 

====================================================================
	Location Form Section
====================================================================

***/

.location-form-section{
	position:relative;
}

.location-form-section .inner-container{
	position:relative;
	padding:28px 45px;
	margin-top:-26px;
	background-color:#ffffff;
	box-shadow:0px 0px 25px rgba(0,0,0,0.15);
}

.location-form-section .inner-container .inner-content{
	position:relative;
	padding-left:220px;
}

.location-form-section .inner-container .inner-content h3{
	position:absolute;
	left:0px;
	top:12px;
	color:#4b4b4b;
	font-size:24px;
}

/* Postal Form Two */

.postal-form-two{
	position:relative;
}

.postal-form-two .form-group{
	position:relative;
	display:block;
	margin:0px;
	width:100%;
	margin-bottom:0px;
	padding-right:245px;
}

.postal-form-two .form-group input[type="text"],
.postal-form-two .form-group input[type="tel"],
.postal-form-two .form-group input[type="email"],
.postal-form-two .form-group textarea{
	position:relative;
	display:block;
	width:100%;
	line-height:26px;
	height:48px;
	font-size:18px;
	color:#242424;
	background:#ffffff;
	border:1px solid #dedede;
	padding:10px 70px 10px 28px;
	-webkit-transition:all 300ms ease;
	-ms-transition:all 300ms ease;
	-o-transition:all 300ms ease;
	-moz-transition:all 300ms ease;
	transition:all 300ms ease;
}

.postal-form-two .form-group input[type="submit"],
.postal-form-two .form-group button{
	position:absolute;
	right:0px;
	top:0px;
}

/*** 

====================================================================
	Trust Section
====================================================================

***/

.trust-section{
	position:relative;
	padding:90px 0px 80px;
}

.trust-section .title-box{
	position:relative;
	text-align:center;
	margin-bottom:40px;
}

.trust-section .title-box h2{
	position:relative;
	color:#0e2a4e;
	font-size:38px;
	font-weight:700;
	line-height:1.3em;
}

.trust-section .title-box .text{
	position:relative;
	color:#797979;
	font-size:18px;
	line-height:1.7em;
	margin-top:15px;
}

/* Service Block Four */

.service-block-four{
	position:relative;
	margin-bottom:30px;
}

.service-block-four .inner-box{
	position:relative;
	text-align:center;
	padding:50px 15px 35px;
	background-color:#f9f9f9;
	border:1px solid #eeeeee;
	border-top:6px solid #309d80;
}


.service-block-four:nth-child(2) .inner-box{
	border-top-color:#be3e39;
}

.service-block-four:nth-child(3) .inner-box{
	border-top-color:#2c75b2;
}

.service-block-four .inner-box h3{
	position:relative;
	color:#0e2a4e;
	font-size:38px;
	font-weight:700;
	line-height:1.3em;
}

.service-block-four .inner-box .text{
	position:relative;
	color:#797979;
	font-size:18px;
	line-height:1.5em;
	margin-top:5px;
}

.trust-section .lower-box{
	position:relative;
	margin-top:15px;
	padding:0px 50px 0px 20px;
}

.trust-section .lower-box .text{
	position:relative;
	color:#797979;
	font-size:18px;
	line-height:1.4em;
	margin-top:10px;
}

.trust-section .lower-box .text span{
	position:relative;
	color:#0e2a4e;
	font-size:24px;
	font-weight:700;
}

/*** 

====================================================================
	Mission Section
====================================================================

***/

.mission-section{
	position:relative;
	padding:70px 0px 50px;
}

.mission-section .title-box{
	position:relative;
	text-align:center;
	margin-bottom:90px;
}

.mission-section .title-box h2{
	position:relative;
	color:#0e2a4e;
	font-weight:700;
	line-height:1.3em;
}

.mission-section .title-box .bold-text{
	position:relative;
	color:#242424;
	line-height:1.4em;
	font-size:22px;
	max-width:1000px;
	margin:0 auto;
	margin-top:14px;
	font-style:italic;
}

.mission-section .title-box .text{
	position:relative;
	color:#797979;
	font-weight:400;
	line-height:1.7em;
	font-size:16px;
	max-width:1020px;
	margin:0 auto;
	margin-top:12px;
}

.mission-section .image-column{
	position:relative;
	margin-bottom:40px;
}

.mission-section .image-column .inner-column{
	position:relative;
	margin-right:-50px;
}

.mission-section .image-column .inner-column .image{
	position:relative;
}

.mission-section .image-column .inner-column .image img{
	position:relative;
	width:100%;
	display:block;
}

.mission-section .content-column{
	position:relative;

}

.mission-section .content-column .inner-column{
	position:relative;
	margin-left:70px;

}

.mission-section .content-column h2{
	position:relative;
	color:#e12832;
	font-size:36px;
	font-weight:700;
	margin-bottom:5px;
}

.mission-section .content-column h3{
	position:relative;
	color:#666;
	font-size:24px;
	font-weight:400;
	margin-bottom:22px;
}
.mission-section .content-column .bold-text{
	position:relative;
	color:#242424;
	font-size:20px;
	font-style:italic;
	line-height:1.5em;
	margin-bottom:22px;
}

.mission-section .content-column .text{
	position:relative;
	color: #000;
	font-size:16px;
	line-height:1.7em;
	margin-bottom:15px; 
}


.mission-section .content-column .mission-list{
	position:relative;
	margin-bottom:25px;
}

.mission-section .content-column .mission-list li{
	position:relative;
	color:#797979;
	font-size:16px;
	margin-bottom:5px;
}

.mission-section .content-column .mission-list:last-child{
	margin-bottom:0px;
}

.mission-section.style-two{
/*	background-color:#edf1f4;*/
}

/*** 

====================================================================
	Gallery Section
====================================================================

***/

.gallery-section{
	position:relative;
	padding:90px 0px 60px;
}

.gallery-section .owl-nav,
.gallery-section .owl-dots{
	display:none;
}

.gallery-section .title-box{
	position:relative;
	text-align:center;
	margin-bottom:45px;
}

.gallery-section .title-box h2{
	position:relative;
	color:#0e1322;
	font-size:34px;
	font-weight:700;
	line-height:1.3em;
	display:inline-block;
	padding:0px 110px;
}

.gallery-section .title-box h2:before{
	position:absolute;
	content:'';
	left:0px;
	bottom:10px;
	width:90px;
	height:1px;
	background-color:#d0ad85;
}

.gallery-section .title-box h2:after{
	position:absolute;
	content:'';
	right:0px;
	bottom:10px;
	width:90px;
	height:1px;
	background-color:#d0ad85;
}

/*Gallery Item*/

.gallery-item{
	position:relative;
	margin-bottom:30px;
}

.gallery-item .inner-box{
	position:relative;
	width:100%;
	overflow:hidden;
}

.gallery-item .image-box{
	position:relative;
	display:block;
	margin:0px;
}

.gallery-item .image-box img{
	position:relative;
	display:block;
	width:100%;
}

.gallery-item .overlay-box{
	position:absolute;
	left:0px;
	top:0px;
	width:100%;
	height:100%;
	opacity:0;
	color:#ffffff;
	text-align:center;
	-webkit-transition:all 700ms ease;
	-ms-transition:all 700ms ease;
	-o-transition:all 700ms ease;
	transition:all 700ms ease;
	-webkit-transform:translateY(-100%);
	-ms-transform:translateY(-100%);
	-o-transform:translateY(-100%);
	-moz-transform:translateY(-100%);
	transform:translateY(-100%);
	background-color:rgba(200,162,148,0.90);
}

.gallery-item .inner-box:hover .overlay-box{
	opacity:1;
	-webkit-transform:translateY(0%);
	-ms-transform:translateY(0%);
	-o-transform:translateY(0%);
	-moz-transform:translateY(0%);
	transform:translateY(0%);
}

.gallery-item .overlay-inner{
	position:absolute;
	left:0px;
	top:0px;
	width:100%;
	height:100%;
	display:table;
	vertical-align:middle;
	padding:10px 0px;
}

.gallery-item .overlay-inner .content{
	position:relative;
	display:table-cell;
	vertical-align:middle;
	opacity:0;
	transform:translateY(50px);
}

.gallery-item .inner-box:hover .overlay-inner .content{
	transform:translateY(0);
	opacity:1;
	transition:all 500ms ease 500ms;
	-webkit-transition:all 500ms ease 500ms;
	-ms-transition:all 500ms ease 500ms;
	-o-transition:all 500ms ease 500ms;	
}

.gallery-item .overlay-inner .link{
	position:relative;
	font-size:18px;
	color:#ffffff;
	width:58px;
	height:58px;
	line-height:58px;
	border-radius:50%;
	margin:0px 5px;
	font-weight:400;
	display:inline-block;
	background-color:#432538;
	transition:all 500ms ease;
	-webkit-transition:all 500ms ease;
	-ms-transition:all 500ms ease;
	-o-transition:all 500ms ease;
}

.gallery-item .overlay-inner .link .icon{
	position:relative;
}

.gallery-item .overlay-inner .link:hover{
	color:#666666;
	background-color:rgba(255,255,255,1);
}

.gallery-item .inner-box .lower-box{
	position:relative;
	padding-top:22px;
}

.gallery-item .inner-box .lower-box h3{
	position:relative;
	font-size:22px;
	font-weight:700;
	text-align:center;
	line-height:1.2em;
}

.gallery-item .inner-box .lower-box h3 a{
	position:relative;
	color:#242424;
	transition:all 0.3s ease;
	-moz-transition:all 0.3s ease;
	-webkit-transition:all 0.3s ease;
	-ms-transition:all 0.3s ease;
	-o-transition:all 0.3s ease;
}

.gallery-item .inner-box .lower-box .text{
	position:relative;
	color:#797979;
	font-size:15px;
	text-align:center;
}

/*** 

====================================================================
	Contact Form Section
====================================================================

***/

.contact-form-section{
	position:relative;
	padding:60px 0px;
	background-color:#f0f0f0;
}

.contact-form-section .title-box{
	position:relative;
	margin-bottom:35px;
}

.contact-form-section .title-box h2{
	position:relative;
	color:#e12832;
	font-size:42px;
	font-weight:700;
	line-height:1.3em;
}

.contact-form-section .title-box .bold-text{
	position:relative;
	color:#242424;
	font-size:22px;
	font-style:italic;
	margin-top:12px;
}

.contact-form-section .title-box .required{
	position:relative;
	color:#797979;
	font-size:16px;
	line-height:1.3em;
	margin-top:18px;
}

.contact-form-section .form-column{
	position:relative;
}

.contact-form-section .form-column .inner-column{
	position:relative;
	margin-bottom:40px;
}

/*Default Form*/

.default-form{
	position:relative;
/*	padding: 35px;*/
/*	text-align: center;*/
/*	background: #ffd8da;*/
/*	border: 1px solid #d6f3ff;*/
/*	box-shadow: 0px 0px 5px #bdbdbd;*/
/*	margin-top: 50px;*/
/*	background: url(../images/apt-bg.jpg) center no-repeat;*/
/*	background-size: cover;*/
}

.default-form .form-group{
	position:relative;
	margin-bottom:25px;
}

.default-form .form-group .captcha{
	position:relative;
	color:#0e2a4e;
	font-size:20px;
	font-weight:600;
	margin-bottom:12px;
	display:block;
}

.default-form input[type="text"],
.default-form input[type="email"],
.default-form input[type="password"],
.default-form select,
.default-form textarea{
	display:block;
	width:100%;
	line-height:28px;
	height:50px;
	font-size:15px;
	padding:6px 12px;
	background:#ffffff;
	color:#262626;
	border:1px solid #d0dfde;
	border-radius: 3px;
	transition:all 500ms ease;
	-webkit-transition:all 500ms ease;
	-ms-transition:all 500ms ease;
	-o-transition:all 500ms ease;
}
.default-form h3{
	font-size: 32px;
	color: #000;
	font-weight: 600;
	margin-bottom: 35px;
}

.default-form textarea{
	height:130px;
	resize:none;
	background:#ffffff;
}

.default-form input[type="text"]:focus,
.default-form input[type="email"]:focus,
.default-form input[type="password"]:focus,
.default-form select:focus,
.default-form textarea:focus{
	border-color:#0262b0;
}

.default-form.style-two textarea{
	height:165px;
}

.contact-form input.error,
.contact-form select.error,
.contact-form textarea.error{
	border-color:#ff0000 !important;	
}

.contact-form label.error{
	display:block;
	line-height:24px;
	padding:5px 0px 0px;
	margin:0px;
	text-transform:uppercase;
	font-size:11px;
	color:#ff0000;
	font-weight:500;	
}

.contact-form-section .info-column{
	position:relative;
}

.contact-form-section .info-column .inner-column{
	position:relative;
	margin-bottom:40px;
	padding-left:40px;
}

.contact-form-section .info-column .image{
	position:relative;
	margin-bottom:50px;
}

.contact-form-section .info-column .image img{
	width:100%;
	display:block;
}

.contact-form-section .info-column h3{
	position:relative;
	color:#0e2a4e;
	font-size:20px;
	font-weight:700;
	line-height:1.3em;
	margin-bottom:8px;
}

.contact-form-section .info-column .text{
	position:relative;
	color:#797979;
	font-size:16px;
	line-height:1.7em;
	margin-bottom:25px;
}

.contact-form-section .info-column ul{
	position:relative;
}

.contact-form-section .info-column ul li{
	position:relative;
	color:#797979;
	font-size:18px;
	margin-bottom:10px;
}

.contact-form-section .info-column ul li a{
	position:relative;
	color:#797979;
	transition:all 300ms ease;
	-webkit-transition:all 300ms ease;
	-ms-transition:all 300ms ease;
	-o-transition:all 300ms ease;
}

.contact-form-section .info-column ul li a:hover{
	color:#e12832;
}

/*** 

====================================================================
	Contact Info Section
====================================================================

***/

.contact-info-section{
	position:relative;
}

.contact-info-section .inner-container{
	position:relative;
	padding:36px 45px;
	z-index:1;
	background-color:#0262b0;
}

.contact-info-section .inner-container.margin{
	margin-top:-59px;
	margin-bottom:-59px;
}

/* Info Box */

.contact-info-section .info-box{
	position:relative;
}

.contact-info-section .info-box:before{
	position:absolute;
	content:'';
	right:50px;
	top:0px;
	width:1px;
	height:100%;
	background-color:rgba(255,255,255,0.40);
}

.contact-info-section .info-box:last-child::before{
	display:none;
}

.contact-info-section .info-box .box-inner{
	position:relative;
	padding-left:65px;
}

.contact-info-section .info-box .box-inner .icon{
	position:absolute;
	left:0px;
	top:0px;
	font-size:48px;
	line-height:1em;
	color:rgba(255,255,255,0.80);
}

.contact-info-section .info-box .box-inner h4{
	position:relative;
	color:#ffffff;
	font-size:15px;
	font-weight:700;
	letter-spacing:2px;
	text-transform:uppercase;
}

.contact-info-section .info-box .box-inner h4 span,
.contact-info-section .info-box .box-inner h4 a{
	position:relative;
	color:#ffffff;
	display:block;
	font-size:17px;
	font-weight:400;
	margin-top:10px;
	letter-spacing:0px;
	text-transform:capitalize;
}

.contact-info-section .info-box .box-inner h4 .phone{
	font-size:24px;
}

/*** 

====================================================================
	Welcome Section
====================================================================

***/

.welcome-section{
	position:relative;
	padding:160px 0px 50px;
	background-color:#e12832;
}

.welcome-section .title-column{
	position:relative;
}

.welcome-section .title-column .inner-column{
	position:relative;
	margin-bottom:40px;
}

.welcome-section .title-column .inner-column .sec-title-two .text{
	position:relative;
	color:#d3c7cf;
}

/* Service Block Five */

.service-block-five{
	position:relative;
	margin-bottom:70px;
}

.service-block-five .inner-box{
	position:relative;
}

.service-block-five .inner-box .content{
	position:relative;
	padding-left:90px;
	padding-right:30px;
}

.service-block-five .inner-box .content .icon-box{
	position:absolute;
	left:0px;
	top:4px;
	color:#0262b0;
	line-height:1em;
	font-size:64px;
	transition: all 600ms ease;
    -moz-transition: all 600ms ease;
    -webkit-transition: all 600ms ease;
    -ms-transition: all 600ms ease;
    -o-transition: all 600ms ease;
}

.service-block-five .inner-box .content h3{
	position:relative;
	color:#ffffff;
	font-size:19px;
	line-height:1.6em;
}

.service-block-five .inner-box .content h3 a{
	position:relative;
	color:#ffffff;
	transition: all 600ms ease;
    -moz-transition: all 600ms ease;
    -webkit-transition: all 600ms ease;
    -ms-transition: all 600ms ease;
    -o-transition: all 600ms ease;
}

/*** 

====================================================================
	Quality Section
====================================================================

***/

.quality-section{
	position:relative;
	padding:100px 0px 0px;
}

.quality-section .inner-container{
	position:relative;
	padding-bottom:60px;
	border-bottom:1px solid #e4e4e4;
}

.quality-section .sec-title-two h2:before{
	height:1px;
	width:80px;
	background-color:#bfa373;
}

.quality-section .title-column{
	position:relative;
}

.quality-section .title-column .inner-column{
	position:relative;
	padding-top:30px;
	margin-bottom:40px;
}

.quality-section .images-column{
	position:relative;
}

.quality-section .images-column .inner-column{
	position:relative;
	padding-left:40px;
}

.quality-section .images-column .image{
	position:relative;
	margin-bottom:30px;
}

.quality-section .images-column .image img{
	position:relative;
	width:100%;
	display:block;
}

/*** 

====================================================================
	Appointment Section
====================================================================

***/

.appointment-section{
	position:relative;
	padding:70px 0px 70px;
	background-color:#f2f2f2;
}

/*** 

====================================================================
	Natural Section
====================================================================

***/
.natural-section{
	/* position:relative; */
	padding: 80px 0px;
	display:inline-block;
	width:100%;
	background:#f9f9f9;
}

.bg_natural{
	background: #f5f5f5;
    padding: 31px 15px;
	box-shadow:0px 5px 18px 0px rgba(0,0,0,0.27);
}
.natural-column img {
    width: 100%;
    border: 4px solid #d3d3d3;
}
.natural-column-right .natural-content {
    margin-bottom: 6px;
}
.natural-column-right .natural-content h2 {
    position: relative;
    text-transform: capitalize;
    color: #653573;
    font-size: 24px;
    margin-bottom: 10px;
    line-height: 32px;
    font-weight: 500;
	font-family: "Yeseva One", serif;
	/* letter-spacing:0.7px; */
}
.natural-column-right p {
    
	font-size: 18px;
    line-height: 30px;
    color: #3a3a3a;
    font-weight: 500;
    /* text-align: justify; */
    font-family: "Poppins", sans-serif;
    margin-bottom: 8px;
}
.natural_btn{
	font-size:16px;
	color:#653573;
	padding-top:10px;
	display:inline-block;
}






/*** 

====================================================================
	About Section
====================================================================

***/



.about-section{
	position:relative;
	padding: 55px 0 40px;
	display:inline-block;
	width:100%;
}

.bg_abt{
	/* background: #ffedf7; */
    padding: 31px 15px;
}
.bg_abt1{
	background: #eae7eb;
    padding: 31px 15px;
	margin-top:30px;
}

.about-section .content-column{
	position:relative;
/*	margin-bottom:40px;*/
}

.about-section .content-column .inner-column{
	position:relative;
}

.about-section .content-column h1{
	text-transform: capitalize;
	color:#653573;
	/* font-size: 42px; */
	margin-bottom : 20px;
	line-height:28px;
	font-weight:600;
	letter-spacing:0.5px;
}
.about-section .content-column h2{
	position:relative;
	text-transform: capitalize;
	color:#653573;
	font-size: 34px;
	margin-bottom : 15px;
	line-height:46px;
	font-weight:700;
	letter-spacing:1.5px;
	font-family: "Yeseva One", serif;
}
.about-section .abt-content{
	margin-bottom: 6px;
}
.about-section .homeabout h3{
	font-size: 20px;
    /* letter-spacing: 0.1px; */
    color: #282828;
    font-weight: 500;
    line-height: 32px;
	letter-spacing:0.4px;
	margin-bottom: 15px;
	font-family: "Yeseva One", serif;
}
.about-section .homeabout p{
	font-size: 18px;
	line-height: 34px;
	color: #3a3a3a;
    font-weight: 500;
	/* text-align: justify; */
	font-family: "Poppins", sans-serif;
	margin-bottom: 8px;
}
.about-section .homeabout a{
	margin-top: 10px;
}
.about-section table{
	margin-top: 24px;
	margin-bottom: 0;
}

.about-section table tr td{
	font-size: 16px;
	color: #000;
	padding: 20px 25px;
}
.about-section table tr:first-child td{
	/*background-color: #eee;
	font-size: 18px;*/
	
}
.about-section .content-column .text{
	position:relative;
	color:#000000;
	font-size:16px;
	line-height:1.8em;
	font-weight:400;
	margin-top:22px;
}

.about-section .content-column .bold-text{
	position:relative;
	color:#0e2a4e;
	font-size:20px;
	line-height:1.5em;
	font-weight:300;
	margin-top:20px;
}

.about-section .content-column .bold-text a{
	text-decoration:underline;
	color:#e82b2b;
}

.about-section .image-column{
	position:relative;
}

.about-section .image-column .inner-column{
	position: relative;
}

.about-section .image-column .inner-column .row{
	position:relative;
	margin:0px;
}

.about-section .image-column .inner-column .column{
	padding:0px;
}

.about-section .image-column .inner-column .image{
	position:relative;
}
.about-section .image-column .inner-column .image, .abt-img{
   position: relative;
  z-index: 0;
  width: 100%;
  border-radius: 0px;
  overflow: hidden;
  /* padding: 2px; */
  display: flex;
  justify-content: center;
  align-items: center;
}
/*.about-section .image-column .inner-column .image:before, .abt-img:before{
  content: '';
    position: absolute;
    z-index: -2;
    width: 200%;
    height: 200%;
    background-repeat: no-repeat;
    background-size: 50% 50%, 50% 50%;
    background-position: 0 0, 100% 0, 100% 100%, 0 100%;
    background-image: linear-gradient(#838b90, #838b90, #838b90), 
    linear-gradient(#99d2f1, #99d2f1), 
    linear-gradient(#838b90, #838b90), 
    linear-gradient(#99d2f1, #99d2f1);
    background-image: linear-gradient(#e2030f, #e2030f, #e2030f), 
    linear-gradient(#0262b0, #0262b0), linear-gradient(#e2030f, #e2030f), 
    linear-gradient(#0262b0, #0262b0);
    background-image: linear-gradient(#838b90, #838b90, #838b90), 
    linear-gradient(#0262b0, #0262b0), linear-gradient(#838b90, #838b90), 
    linear-gradient(#0262b0, #0262b0);
    animation: rotate 10s linear infinite;
}
.about-section .image-column .inner-column .image:after, .abt-img:after{
  	content: '';
    position: absolute;
    z-index: -1;
    left: 2px;
    top: 2px;
    width: calc(100% - 4px);
    height: calc(100% - 4px);
    background: #fff;
    border-radius: 0px;
}
@keyframes rotate {
  100% {
    transform: rotate(1turn);
  }
}*/
.about-section .image-column .inner-column .image img{
	position:relative;
	width:100%;
	/* border-radius:50%; */
	border: 4px solid #d3d3d3;
/*	border: 2px solid #e1283294;*/
}

.about-section .image-column .inner-column .image1{
	width: 345px;
	float: left;
	margin: 0 30px 15px 0;
/*	border: 2px solid #0262b04a;*/
}

.about-section .image-column .inner-column .image.image-2{
	border:10px solid #ffffff;
	margin-left:-10px;
	margin-top:-20px;
	z-index:1;
}

.about-section .image-column .inner-column .image.image-3{
	border-top:12px solid #ffffff;
}

/*** 

====================================================================
	Gallery Section Two
====================================================================

***/

.gallery-section-two{
	position:relative;
	padding:100px 0px 115px;
	background-color:#132837;
}

.gallery-section-two .outer-container{
	position:relative;
	padding:0px 30px;
}

.gallery-section-two .project-tab{
	position:relative;	
}

.gallery-section-two .project-tab .project-carousel .owl-nav,
.gallery-section-two .project-tab .project-carousel .owl-dots{
	display:none;
}

.gallery-section-two .project-tab .tabs-header{
	position:relative;
	margin-bottom:60px;
}

.gallery-section-two .project-tab .product-tab-btns{
	position:relative;
	text-align:center;
	border-radius:8px;
	padding-top:23px;
	padding-bottom:15px;
	border:1px solid rgba(255,255,255,0.08);
	background-color:rgba(255,255,255,0.03);
}

.gallery-section-two .project-tab .product-tab-btns .p-tab-btn{
	position:relative;
	cursor:pointer;
	color:#ffffff;
	font-weight:700;
	font-size:20px;
	display:inline-block;
	margin:0px 25px;
	margin-bottom:7px;
	padding:0px 0px 8px;
	text-transform:capitalize;
	transition:all 0.3s ease;
	-moz-transition:all 0.3s ease;
	-webkit-transition:all 0.3s ease;
	-ms-transition:all 0.3s ease;
}

.gallery-section-two .project-tab .product-tab-btns .p-tab-btn:after{
	position:absolute;
	content:'';
	left:0px;
	bottom:0px;
	width:100%;
	height:2px;
	opacity:0;
	background-color:#0262b0;
	transition:all 0.3s ease;
	-moz-transition:all 0.3s ease;
	-webkit-transition:all 0.3s ease;
	-ms-transition:all 0.3s ease;
	-o-transition:all 0.3s ease;
}

.gallery-section-two .project-tab .product-tab-btns .p-tab-btn:hover::after,
.gallery-section-two .project-tab .product-tab-btns .p-tab-btn.active-btn::after{
	opacity:1;
}

.gallery-section-two .project-tab .product-tab-btns .p-tab-btn:hover,
.gallery-section-two .project-tab .product-tab-btns .p-tab-btn.active-btn{
	color:#0262b0;
}

.gallery-section-two .project-tab .p-tabs-content{
	position:relative;
	display:block;	
	padding:0px 0px;
}

.gallery-section-two .project-tab .p-tab{
	position:absolute;
	left:0px;
	top:0px;
	width:100%;
	height:auto;
	opacity:0;
	visibility:hidden;	
}

.gallery-section-two .project-tab .p-tab.active-tab{
	position:relative;
	opacity:1;
	visibility:visible;
	z-index:5;
}

.gallery-section-two .gallery-item{
	margin-bottom:0px;
}

.p-tab .gallery-item{
	transition:all 0.7s ease;
	-moz-transition:all 0.7s ease;
	-webkit-transition:all 0.7s ease;
	-ms-transition:all 0.7s ease;
	-o-transition:all 0.7s ease;
	-webkit-transform:scaleX(0);
	-ms-transform:scaleX(0);
	-o-transform:scaleX(0);
	-moz-transform:scaleX(0);
	transform:scaleX(0);	
}

.p-tab.active-tab .gallery-item{
	-webkit-transform:scaleX(1);
	-ms-transform:scaleX(1);
	-o-transform:scaleX(1);
	-moz-transform:scaleX(1);
	transform:scaleX(1);
}

/*** 

====================================================================
	Call To Action Section Two
====================================================================

***/

.call-to-action-section-two{
	position:relative;
}

.call-to-action-section-two:before{
	position:absolute;
	content:'';
	left:0px;
	bottom:0px;
	width:100%;
	height:95px;
	/*background-color:#edf1f4;*/
}

.call-to-action-section-two .inner-container{
	position:relative;
	padding:40px 15px;
	text-align:center;
	background-color:#e12832;
}

.call-to-action-section-two h2{
	position:relative;
	color:#ffffff;
	font-size:34px;
	font-weight:700;
	line-height:1.3em;
}

.call-to-action-section-two .text{
	position:relative;
	color:#ffffff;
	font-size:16px;
	font-weight:400;
	line-height:1.5em;
	margin-top:20px;
}

.call-to-action-section-two .find{
	position:relative;
	color:#f74545;
	font-size:16px;
	line-height:1.3em;
	margin-top:12px;
	font-weight:600;
	display:inline-block;
	text-decoration:underline;
	transition:all 0.3s ease;
	-moz-transition:all 0.3s ease;
	-webkit-transition:all 0.3s ease;
	-ms-transition:all 0.3s ease;
	-o-transition:all 0.3s ease;
}

.call-to-action-section-two .find:hover{
	color:#ffffff;
}

.call-to-action-section-two.style-two{
	background-color:#0e2a4e;
}

.call-to-action-section-two.style-two:before,
.call-to-action-section-two.style-three:before{
	display:none;
}

.call-to-action-section-two.style-three{
	padding-bottom:100px;
}

/*** 

====================================================================
	Meeting Section
====================================================================

***/

.meeting-section{
	position:relative;
	padding:95px 0px 65px;
}

.meeting-section h2{
	position:relative;
	color:#0e2a4e;
	font-size:42px;
	font-weight:700;
}

.meeting-section .bold-text{
	position:relative;
	color:#242424;
	font-size:22px;
	font-style:italic;
}

.meeting-section .text{
	position:relative;
	color:#797979;
	font-size:16px;
	margin-top:25px;
	line-height:1.8em;
	margin-bottom:35px;
}

.meeting-section .content-column{
	position:relative;
	margin-bottom:40px;
}

.meeting-section .content-column .inner-column{
	position:relative;
}

.meeting-section .content-column .inner-column h3{
	position:relative;
	color:#0e2a4e;
	font-size:24px;
	font-weight:700;
	margin-bottom:18px;
}

.meeting-section .image-column{
	position:relative;
	margin-bottom:40px;
}

.meeting-section .image-column .inner-column{
	position:relative;
	padding-left:30px;
}

.meeting-section .image-column .inner-column .image{
	position:relative;
}

.meeting-section .image-column .inner-column .image img{
	position:relative;
	width:100%;
	display:block;
}

/*** 
====================================================================
	Page Title
====================================================================
***/

.page-title{
	padding: 50px 0;
	text-align: center;
	background: url(../images/inner-banner.jpg) center no-repeat;
	background-size: cover;
}

/*.page-title:before{
	position:absolute;
	content:'';
	left:0px;
	top:0px;
	right:0px;
	bottom:0px;
	transition: all 900ms ease;
    -moz-transition: all 900ms ease;
    -webkit-transition: all 900ms ease;
    -ms-transition: all 900ms ease;
    -o-transition: all 900ms ease;
	background-image: -ms-linear-gradient(left, rgba(77,39,63,0) 0%, #463b46 100%);
	background-image: -moz-linear-gradient(left, rgba(77,39,63,0) 0%, #463b46 100%);
	background-image: -o-linear-gradient(left, rgba(77,39,63,0) 0%, #463b46 100%);
	background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, rgba(77,39,63,0)), color-stop(100, #463b46));
	background-image: -webkit-linear-gradient(left, rgba(77,39,63,0) 0%, #463b46 100%);
	background-image: linear-gradient(to left, rgba(77,39,63,0) 0%, #463b46 100%);
}*/

.page-title .auto-container{
	position:relative;
}

.page-title h2{
	position:relative;
	color:#ffffff;
	font-weight:600;
	margin-bottom: 10px;
	font-size:34px;
	text-transform:capitalize;
}

.page-breadcrumb{
	position:relative;
}

.page-breadcrumb li{
	position:relative;
	display:inline-block;
	margin-right:10px;
	padding-right:15px;
	color:#ffffff;
	font-size:17px;
	font-weight:400;
	text-transform:capitalize;
}

.page-breadcrumb li:after{
	position:absolute;
	content: "\f11a";
	right:-4px;
	top:1px;
	color:#ffffff;
	font-size: 10px;
	font-weight:700;
	font-family: "Flaticon";
}

.page-breadcrumb li:last-child::after{
	display: none;
}

.page-breadcrumb li:last-child{
	padding-right:0px;
	margin-right:0px;
}

.page-breadcrumb li a{
	font-weight:400;
	text-transform: capitalize;
	transition:all 0.3s ease;
	-moz-transition:all 0.3s ease;
	-webkit-transition:all 0.3s ease;
	-ms-transition:all 0.3s ease;
	-o-transition:all 0.3s ease;
}

.page-breadcrumb li a:hover{
	color:#2a88d4;
}

/*** 

====================================================================
	Sidebar Page Container
====================================================================

***/

.sidebar-page-container{
	position:relative;
	padding:70px 0px 70px;
}

.sidebar-page-container .content-side,
.sidebar-page-container .sidebar-side{
	margin-bottom:0;
}
.sidebar-page-container .sidebar-side p:last-child{
	
}
.sidebar-page-container .sidebar-side .sidebar{
	padding-left:30px;
}

.sidebar-page-container .sidebar-side .sidebar.style-two{
	padding-left:0px;
}

.sidebar-widget{
    position: relative;
    margin-bottom: 50px;
}

/* Services Detail */

.services-detail{
	position:relative;
}

.services-detail .inner-box{
	position:relative;
}

.services-detail .inner-box .image{
	position:relative;
	padding-bottom:30px;
}

.services-detail .inner-box .image img{
	position:relative;
	width:100%;
	display:block;
}

.services-detail .inner-box .lower-content{
	position:relative;
}

.services-detail .inner-box .lower-content h2{
	position:relative;
	color:#0e2a4e;
	font-size:34px;
	font-weight:700;
	margin-bottom:15px;
}

.services-detail .inner-box .lower-content .styled-text{
	position:relative;
	color:#797979;
	font-size:20px;
	font-style:italic;
	margin-top:-5px;
	margin-bottom:20px;
}

.services-detail .inner-box .lower-content p{
	position:relative;
	line-height:1.8em;
	color:#000000;
	margin-bottom:20px;
}

.services-detail .inner-box .lower-content .two-column{
	position:relative;
	margin-top:30px;
}

.services-detail .inner-box .lower-content .two-column{
	position:relative;
}

.services-detail .inner-box .lower-content h4{
	position:relative;
	color:#0e2a4e;
	font-size:24px;
	font-weight:700;
	line-height:1.5em;
	margin-bottom:10px;
}

.services-detail .inner-box .lower-content .two-column .image{
	position:relative;
	margin-bottom:30px;
}

.services-detail .inner-box .lower-content h3{
	position:relative;
	color:#0e2a4e;
	font-size:28px;
	font-weight:700;
	line-height:1.1em;
	margin-bottom:15px;
}

.services-detail .inner-box .lower-content .list-style-three{
	margin-bottom:35px;
}

.services-detail .inner-box .lower-content .service-contact-box{
	position:relative;
	color:#ffffff;
	font-size:25px;
	padding:25px 35px;
	line-height:1.5em;
	margin-top:40px;
	background-color:#0262b0;
}

.services-detail .inner-box .lower-content .service-contact-box a{
	text-decoration:underline;
	color:#0e2a4e;
}

/* Services List */

.services-list{
	position:relative;
}

.services-list li{
	position:relative;
	margin-bottom:1px;
	line-height: 25px;
}

.services-list li a{
	position:relative;
	color:#0e2a4e;
	font-size: 18px;
	font-weight:400;
	padding:15px 30px;
	display:block;
	background-color:#fff;
	
	border:1px solid #dadfe3;
	transition:all 0.3s ease;
	-moz-transition:all 0.3s ease;
	-webkit-transition:all 0.3s ease;
	-ms-transition:all 0.3s ease;
	-o-transition:all 0.3s ease;
}

.services-list li.active a,
.services-list li:hover a{
	color:#ffffff;
	border-color:#0262b0;
	background-color:#0262b0;
}

/* Contact Widget */

.sidebar-page-container .contact-widget .widget-content{
	position:relative;
	padding:50px 28px 50px;
	background-size:cover;
}

.sidebar-page-container .contact-widget .widget-content:before{
	position:absolute;
	content:'';
	left:0px;
	top:0px;
	right:0px;
	bottom:0px;
	background-color:rgb(77 39 63 / 78%);
}

.sidebar-page-container .contact-widget .widget-content h3{
	position:relative;
	color:#ffffff;
	font-size: 28px;
	font-weight: 600;
}

.sidebar-page-container .contact-widget .widget-content .contact-btn{
	position:relative;
	color:#242424;
	font-weight:600;
	padding:10px 23px;
	letter-spacing:1px;
	display:inline-block;
	margin-top:25px;
	background-color:#0262b0;
	text-transform:uppercase;
}

.sidebar-page-container .contact-widget .widget-content .contact-btn:hover{
	color:#ffffff;
	background-color:#0262b090;
}

.blog-classic.padding-right,
.blog-single.padding-right{
	padding-right:26px;
}

/*Search Box Widget*/

.sidebar .search-box .form-group{
	position:relative;
	margin:0px;	
}

.sidebar .search-box .form-group input[type="text"],
.sidebar .search-box .form-group input[type="search"]{
	position:relative;
	line-height:30px;
	padding:10px 50px 10px 20px;
	background:#ffffff;
	display:block;
	font-size:15px;
	width:100%;
	height:52px;
	color:#797979;
	font-weight:400;
	transition:all 500ms ease;
	-moz-transition:all 500ms ease;
	-webkit-transition:all 500ms ease;
	-ms-transition:all 500ms ease;
	-o-transition:all 500ms ease;
	box-shadow:0px 0px 10px rgba(0,0,0,0.10);
}

.sidebar .search-box .form-group textarea::-webkit-input-placeholder,
.sidebar .search-box .form-group input::-webkit-input-placeholder{
	color:#797979;
}

.sidebar .search-box .form-group button{
	position:absolute;
	right:0px;
	top:0px;
	height:52px;
	width:60px;
	display:block;
	font-size:16px;
	color:#c1c1c1;
	line-height:100%;
	font-weight:normal;
	background:none;
}

/*Sidebar Title*/

.sidebar-title{
    position: relative;
    margin-bottom:20px;
}

.sidebar-title h2{
    font-size: 24px;
    color: #0e2a4e;
    font-weight: 700;
    line-height: 1.2em;
	display:inline-block;
	padding-right:45px;
    text-transform: capitalize;
}

.sidebar-title h2:after{
	position:absolute;
	content:'';
	right:0px;
	bottom:2px;
	width:25px;
	height:2px;
	background-color:#0262b0;
}

/*Blog Category*/

.cat-list{
	position:relative;
}

.cat-list li{
	position:relative;
}

.cat-list li a{
	position:relative;
	color:#797979;
	font-size:16px;
	font-weight:400;
	padding-bottom:12px;
	margin-bottom:12px;
	display:block;
	border-bottom:1px solid #e6e6e6;
	transition:all 500ms ease;
	-moz-transition:all 500ms ease;
	-webkit-transition:all 500ms ease;
	-ms-transition:all 500ms ease;
	-o-transition:all 500ms ease;
}

.cat-list li:last-child a{
	border-bottom:0px;
	margin-bottom:0px;
	padding-bottom:0px;
}

.cat-list li a:after{
	position:absolute;
	content: "\f105";
	right:0px;
	top:0px;
	color:#c8c8c8;
	font-size:14px;
	font-weight:900;
	font-family: "Font Awesome 5 Free";
}

.cat-list li a:hover{
	color:#0262b0;
}

/*Post Widget*/

.sidebar .popular-posts .post{
	position:relative;
	font-size:14px;
	color:#666666;
	padding:0px 0px;
	padding-left:90px;
	min-height:90px;
	margin-bottom:22px;
	border-bottom:1px solid #e1e1e1;
}

.sidebar .popular-posts .post:last-child{
	margin-bottom:0px;
}

.sidebar .popular-posts .post .post-thumb{
	 position:absolute;
	 left:0px;
	 top:0px;
	 width:70px;
}

.sidebar .popular-posts .post .post-thumb img{
	display:block;
	width:100%;
	transition:all 0.3s ease;
	-moz-transition:all 0.3s ease;
	-webkit-transition:all 0.3s ease;
	-ms-transition:all 0.3s ease;
	-o-transition:all 0.3s ease;
}

.sidebar .popular-posts .post .text{
	position:relative;
	top:-4px;
	font-size:15px;
	margin:0px 0px 0px;
	color:#0e2a4e;
	line-height:1.5em;
	font-weight:700;
	text-transform:capitalize;
}

.sidebar .popular-posts .post .text a{
	color:#0e2a4e;
	transition:all 0.3s ease;
	-moz-transition:all 0.3s ease;
	-webkit-transition:all 0.3s ease;
	-ms-transition:all 0.3s ease;
	-o-transition:all 0.3s ease;
}

.sidebar .popular-posts .post a:hover{
	color:#0262b0;
}

.sidebar .popular-posts .post-info{
	font-size:14px;
	color:#9a9a9a;
	font-weight:400;
}

/*Popular Tags*/

.sidebar .popular-tags a{
	position:relative;
	display:inline-block;
	line-height:24px;
	padding:8px 18px 8px;
	margin:0px 6px 10px 0px;
	color:#a6a6a6;
	text-align:center;
	font-size:14px;
	background:none;
	font-weight:400;
	border:1px solid #e4e4e4;
	text-transform:capitalize;
	transition:all 300ms ease;
	-webkit-transition:all 300ms ease;
	-ms-transition:all 300ms ease;
	-o-transition:all 300ms ease;
	-moz-transition:all 300ms ease;
}

.sidebar .popular-tags a:hover{
	border-color:#0262b0;
	background-color:#0262b0;
	color:#ffffff;	
}

/*News Block*/

.news-block-two{
	position:relative;
	margin-bottom:80px;
}

.news-block-two .inner-box{
	position:relative;
}

.news-block-two .inner-box .image{
	position:relative;
	background-color:#0b0b0b;
	transition:all 0.5s ease;
	-moz-transition:all 0.5s ease;
	-webkit-transition:all 0.5s ease;
	-ms-transition:all 0.5s ease;
	-o-transition:all 0.5s ease;
}

.news-block-two .inner-box .image img{
	position:relative;
	width:100%;
	display:block;
	transition:all 0.5s ease;
	-moz-transition:all 0.5s ease;
	-webkit-transition:all 0.5s ease;
	-ms-transition:all 0.5s ease;
	-o-transition:all 0.5s ease;
}

.news-block-two .inner-box:hover .image img{
	opacity:0.5;
}

.news-block-two .inner-box .lower-content{
	position:relative;
}

.news-block-two .inner-box .lower-content .upper-box{
	position:relative;
	padding-bottom:13px;
	border-bottom:1px solid #e4e4e4;
}

.news-block-two .inner-box .lower-content .upper-box .posted-date{
	position:relative;
	color:#ffffff;
	font-size:17px;
	font-weight:600;
	margin-bottom:10px;
	line-height:1.2em;
	padding:13px 32px;
	margin-top:-18px;
	margin-left:22px;
	border-radius:4px;
	display:inline-block;
	background-color:#0262b0;
}

.news-block-two .inner-box .lower-content .upper-box .post-meta{
	position:relative;
	padding-top:20px;
}

.news-block-two .inner-box .lower-content .upper-box .post-meta li{
	position:relative;
	color:#b8b8b8;
	font-size:18px;
	padding-right:12px;
	margin-right:12px;
	font-weight:600;
	margin-bottom:6px;
	display:inline-block;
}

.news-block-two .inner-box .lower-content .upper-box .post-meta li:after{
	position:absolute;
	content:'/';
	right:-5px;
	top:0px;
	color:#b8b8b8;
	font-size:17px;
}

.news-block-two .inner-box .lower-content .upper-box .post-meta li:last-child{
	margin-right:0px;
	padding-right:0px;
}

.news-block-two .inner-box .lower-content .upper-box .post-meta li:last-child::after{
	display:none;
}

.news-block-two .inner-box .lower-content .lower-box{
	position:relative;
	padding-top:30px;
}

.news-block-two .inner-box .lower-content .lower-box h3{
	position:relative;
	font-size:28px;
	font-weight:600;
	line-height:1.4em;
	margin-bottom:12px;
	color:#0e2a4e;
}

.news-block-two .inner-box .lower-content .lower-box h3 a{
	position:relative;
	color:#0e2a4e;
	transition:all 0.3s ease;
	-moz-transition:all 0.3s ease;
	-webkit-transition:all 0.3s ease;
	-ms-transition:all 0.3s ease;
	-o-transition:all 0.3s ease;
}

.news-block-two .inner-box .lower-content .lower-box h3 a:hover{
	color:#f4745e;
}

.news-block-two .inner-box .lower-content .lower-box .text{
	position:relative;
	color:#797979;
	font-size:16px;
	line-height:1.8em;
	margin-bottom:20px;
}

.news-block-two .inner-box .lower-content .lower-box .read-more{
	position: relative;
    color: #f65151;
    font-size: 18px;
    font-weight: 700;
    margin-top: 10px;
	text-decoration:underline;
    -webkit-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    transition: all 300ms ease;
}

.news-block-two .inner-box .lower-content .lower-box .read-more:hover{
	text-decoration:none;
}

/*** 

====================================================================
	Styled Pagination
====================================================================

***/

.styled-pagination{
	position:relative;
}

.styled-pagination li{
	position:relative;
	display:inline-block;
	margin:0px 6px 0px 0px;
}

.styled-pagination li a{
	position:relative;
	display:inline-block;
	line-height:41px;
	height:43px;
	font-size:16px;
	min-width:43px;
	color:#0e2a4e;
	font-weight:700;
	text-align:center;
	background:#ffffff;
	border-radius:50%;
	border:2px solid #0e2a4e;
	text-transform:capitalize;
	transition:all 500ms ease;
	-webkit-transition:all 500ms ease;
	-ms-transition:all 500ms ease;
	-o-transition:all 500ms ease;
	-moz-transition:all 500ms ease;
}

.styled-pagination li a:hover,
.styled-pagination li a.active{
	color:#ffffff;
	border-color:#0e2753;
	background-color:#0e2753;
}

/* News Detail */

.blog-single{
	position:relative;
}

.blog-single .inner-box{
	position:relative;
}

.blog-single .inner-box .image{
	position:relative;
	background-color:#432538;
	transition:all 0.5s ease;
	-moz-transition:all 0.5s ease;
	-webkit-transition:all 0.5s ease;
	-ms-transition:all 0.5s ease;
	-o-transition:all 0.5s ease;
}

.blog-single .inner-box .image img{
	position:relative;
	width:100%;
	display:block;
	transition:all 0.5s ease;
	-moz-transition:all 0.5s ease;
	-webkit-transition:all 0.5s ease;
	-ms-transition:all 0.5s ease;
	-o-transition:all 0.5s ease;
}

.blog-single .inner-box:hover .image img{
	opacity:0.5;
}

.blog-single .inner-box .lower-content{
	position:relative;
}

.blog-single .inner-box .lower-content .upper-box{
	position:relative;
	padding-bottom:13px;
	border-bottom:1px solid #e4e4e4;
}

.blog-single .inner-box .lower-content .upper-box .posted-date{
	position: relative;
    color: #ffffff;
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.2em;
    padding: 13px 32px;
    margin-top: -18px;
    margin-left: 22px;
    border-radius: 4px;
    display: inline-block;
    background-color: #0262b0;
}

.blog-single .inner-box .lower-content .upper-box .post-meta{
	position:relative;
	padding-top:20px;
}

.blog-single .inner-box .lower-content .upper-box .post-meta li{
	position: relative;
    color: #b8b8b8;
    font-size: 18px;
    padding-right: 12px;
    margin-right: 12px;
    font-weight: 600;
    margin-bottom: 6px;
    display: inline-block;
}

.blog-single .inner-box .lower-content .upper-box .post-meta li:after{
	position:absolute;
	content:'/';
	right:-5px;
	top:0px;
	color:#b8b8b8;
	font-size:17px;
}

.blog-single .inner-box .lower-content .upper-box .post-meta li:last-child{
	margin-right:0px;
	padding-right:0px;
}

.blog-single .inner-box .lower-content .upper-box .post-meta li:last-child::after{
	display:none;
}

.blog-single .inner-box .lower-content .lower-box{
	position:relative;
	padding-top:30px;
}

.blog-single .inner-box .lower-content .lower-box h3{
	position:relative;
	font-size:30px;
	font-weight:700;
	line-height:1.4em;
	margin-bottom:18px;
	color:#0e2a4e;
}

.blog-single .inner-box .lower-content .lower-box h3 a{
	position:relative;
	color:#0e2a4e;
	transition:all 0.3s ease;
	-moz-transition:all 0.3s ease;
	-webkit-transition:all 0.3s ease;
	-ms-transition:all 0.3s ease;
	-o-transition:all 0.3s ease;
}

.blog-single .inner-box .lower-content .lower-box h3 a:hover{
	color:#fbd848;
}

.blog-single .inner-box .lower-content .lower-box .text{
	position:relative;
	color:#797979;
	font-size:16px;
	line-height:1.9em;
	margin-bottom:35px;
}

.blog-single .inner-box .lower-content .lower-box .text p{
	position:relative;
	color:#797979;
	font-size:16px;
	line-height:1.8em;
	margin-bottom:35px;
}

.blog-single .inner-box .lower-content .lower-box .text p a{
	color:#f4745e;
	text-decoration:underline;
}

.blog-single .inner-box .lower-content .lower-box h4{
	position:relative;
	color:#181e44;
	font-size:24px;
	font-weight:700;
	margin-bottom:20px;
}

/*** 

====================================================================
	Comments Area
====================================================================

 ***/

.sidebar-page-container .comments-area{
	position:relative;
	margin-bottom:55px;
}

.sidebar-page-container .group-title{
	position:relative;
	margin-bottom:28px;
}

.sidebar-page-container .group-title h2{
	position:relative;
	font-size:24px;
	color:#181e44;
	font-weight:700;
	line-height:1.2em;
	padding-bottom:0px;
	display:inline-block;
}

.sidebar-page-container .comments-area .inner-box{
	position:relative;
	border:1px solid #eeeeee;
}

.sidebar-page-container .comments-area .comment-box{
	position:relative;
	padding:25px 25px 25px;
	-webkit-transition:all 300ms ease;
	-ms-transition:all 300ms ease;
	-o-transition:all 300ms ease;
	-moz-transition:all 300ms ease;
	transition:all 300ms ease;
	border-bottom:1px solid #ebe8e8;
}

.sidebar-page-container .comments-area .comment-box:nth-child(2n + 0){
	background-color:#fcfcfc;
}

.sidebar-page-container .comments-area .comment-box:last-child{
	border-bottom:0px;
}

.sidebar-page-container .comments-area .comment{
	position:relative;
	font-size:14px;
	min-height:98px;
	padding:0px 0px 0px 100px;
}

.sidebar-page-container .comments-area .comment.reply-comment{
	margin-left:100px;
	margin-top:45px;
}

.sidebar-page-container .comments-area .comment .comment-inner{
	position:relative;
}

.sidebar-page-container .comments-area .comment .comment-reply{
	position:absolute;
	right:0px;
	top:0px;
	color:#9cc900;
	font-size:15px;
	font-weight:400;
	text-align:center;
	display:inline-block;
	text-transform:capitalize;
	-webkit-transition:all 300ms ease;
	-ms-transition:all 300ms ease;
	-o-transition:all 300ms ease;
	-moz-transition:all 300ms ease;
	transition:all 300ms ease;
}

.sidebar-page-container .comments-area .comment .comment-reply span{
	font-size:14px;
	margin-right:4px;
}

.sidebar-page-container .comments-area .comment-box .author-thumb{
	position:absolute;
	left:0px;
	top:0px;
	width:73px;
	overflow:hidden;
	margin-bottom:20px;
}

.sidebar-page-container .comments-area .comment-box .author-thumb img{
	width:75px;
	display:block;
}

.sidebar-page-container .comments-area .comment-info{
	color:#3e5773;
	line-height:24px;
	font-size:13px;	
}

.sidebar-page-container .comments-area .comment-box strong{
	font-size:18px;
	font-weight:700;
	color:#181e44;
	line-height:16px;
	text-transform:capitalize;
}

.sidebar-page-container .comments-area .comment-box .text{
	color:#898989;
	font-size:16px;
    margin-top:5px;
    line-height: 1.7em;
	margin-bottom:8px;
}

.sidebar-page-container .comments-area .comment-time{
	position:relative;
	font-size:15px;
	color:#aeaeae;
}

.sidebar-page-container .comments-area .comment-box .theme-btn{
	padding:6px 27px;
}

.sidebar-page-container .comments-area .comment-box .post-info{
	position:relative;
}

.sidebar-page-container .comments-area .comment-box .post-info li{
	position:relative;
	padding-right:10px;
	line-height:1em;
	margin-right:10px;
	color:#aeaeae;
	font-size:15px;
	border-right:1px solid #bebebe;
	display:inline-block;
}

.sidebar-page-container .comments-area .comment-box .post-info li a{
	color:#f4745e;
}

.sidebar-page-container .comments-area .comment-box .post-info li:last-child{
	border:0px;
}

/*** 

====================================================================
	Comment Form
====================================================================

 ***/

.comment-form{
	position:relative;
}

.comment-form .form-inner{
	position:relative;
	padding:50px 35px 30px;
	background-color:#f7f7f7;
	border:1px solid #eeeeee;
}

.comment-form .form-group{
	position:relative;
	margin-bottom:20px;
}

.comment-form .form-group input[type="text"],
.comment-form .form-group input[type="email"],
.comment-form .form-group select{
	position:relative;
	display:block;
	width:100%;
	line-height:33px;
	padding:10px 20px;
	height:45px;
	color:#a5a5a5;
	font-size:15px;
	background-color:#ffffff;
	border:1px solid #eeeeee;
	-webkit-transition:all 300ms ease;
	-ms-transition:all 300ms ease;
	-o-transition:all 300ms ease;
	-moz-transition:all 300ms ease;
	transition:all 300ms ease;
}

.comment-form .form-group input[type="text"]:focus,
.comment-form .form-group input[type="email"]:focus,
.comment-form .form-group textarea:focus{
	border-color:#0262b0;
}

.comment-form .form-group textarea{
	position:relative;
	display:block;
	width:100%;
	line-height:24px;
	padding:15px 20px;
	color:#a5a5a5;
	height:170px;
	font-size:15px;
	resize:none;
	background-color:#ffffff;
	border:1px solid #eeeeee;
	-webkit-transition:all 300ms ease;
	-ms-transition:all 300ms ease;
	-o-transition:all 300ms ease;
	-moz-transition:all 300ms ease;
	transition:all 300ms ease;
}

.comment-form button{
	margin-top:10px;
	padding:11px 35px 10px;
}

/*** 

====================================================================
	Care Giver Section
====================================================================

 ***/

.caregiver-container{
	position:relative;
	padding:90px 0px 90px;
}

.caregiver-container .upper-content{
	position:relative;
}

.caregiver-container h2{
	position:relative;
	color:#0e2a4e;
	font-size:42px;
	font-weight:700;
	line-height:1.3em;
}

.caregiver-container .style-text{
	position:relative;
	color:#242424;
	font-size:22px;
	font-weight:400;
	line-height:1.3em;
	margin-top:15px;
}

.caregiver-container .text{
	position:relative;
	color:#797979;
	font-size:16px;
	font-weight:400;
	line-height:1.8em;
	margin-top:15px;
}

.caregiver-container .light-text{
	position:relative;
	color:#242424;
	font-size:18px;
	font-weight:400;
	line-height:1.7em;
	margin-top:15px;
	margin-bottom:40px;
}

.caregiver-container .image{
	position:relative;
	margin-bottom:50px;
}

.caregiver-container .image img{
	position:relative;
	width:100%;
	display:block;
}

.caregiver-container .bold-text{
	position:relative;
	color:#0e2a4e;
	font-size:22px;
	font-weight:400;
	line-height:1.4em;
	margin-top:15px;
}

.caregiver-container .lower-content{
	position:relative;
	padding-top:40px;
}

.caregiver-container .lower-content h3{
	position:relative;
	color:#0e2a4e;
	font-size:34px;
	font-weight:700;
	margin-bottom:16px;
}

.caregiver-container .lower-content .lower-box{
	position:relative;
	padding-top:40px;
	margin-top:40px;
	border-top:1px solid #d9d9d9;
}

.caregiver-container .lower-content .lower-box h4{
	position:relative;
	color:#0e2a4e;
	font-size:24px;
	font-weight:700;
	margin-bottom:16px;
}

.caregiver-container .lower-content .lower-box .zip-text{
	position:relative;
	color:#797979;
	font-size:18px;
	margin-bottom:35px;
	font-style:italic;
	font-weight:300;
}

/*** 

====================================================================
	Zip Form
====================================================================

 ***/

.zip-form{
	position:relative;
}

.zip-form .row{
	margin:0px -10px;
}

.zip-form .form-group{
	position:relative;
	margin-bottom:10px;
	padding:0px 10px;
}

.zip-form .form-group input[type="text"],
.zip-form .form-group input[type="tel"],
.zip-form .form-group input[type="email"],
.zip-form .form-group select,
.zip-form .form-group textarea{
	position:relative;
	display:block;
	width:100%;
	line-height:28px;
	padding:10px 25px;
	color:#222222;
	height:45px;
	font-size:15px;
	background:#fafafa;
	border:1px solid #dedede;
	-webkit-transition:all 300ms ease;
	-ms-transition:all 300ms ease;
	-o-transition:all 300ms ease;
	-moz-transition:all 300ms ease;
	transition:all 300ms ease;
}

.zip-form .form-group input[type="text"]:focus,
.zip-form .form-group input[type="tel"]:focus,
.zip-form .form-group input[type="email"]:focus,
.zip-form .form-group textarea:focus{
	
}

.zip-form .form-group textarea::-webkit-input-placeholder,
.zip-form .form-group input::-webkit-input-placeholder{
	color:#888888;
}

.zip-form .form-group textarea{
	height:130px;
	resize:none;
}

.zip-form button{
	cursor: pointer;
}

/* Faq Section */

.faq-section{
	position:relative;
	padding:95px 0px 80px;
}

.faq-section .title-box{
	position:relative;
	margin-bottom:45px;
}

.faq-section .title-box h2{
	position:relative;
	color:#0e2a4e;
	font-size:32px;
	font-weight:700;
	line-height:1.3em;
}

.faq-section .title-box .text{
	position:relative;
	color:#000000;
	font-size:16px;
	margin-top:10px;
}

/*Sidebar Search Form*/

.faq-search-box{
	position:relative;
	margin-top:10px;
    width: 100%;
	margin-bottom:60px;
}

.faq-search-box .form-group{
	position:relative;
	margin:0px;	
}

.faq-search-box .form-group input[type="text"],
.faq-search-box .form-group input[type="search"]{
	position:relative;
	line-height:28px;
	color:#222222;
	display:block;
	font-size:16px;
	width:100%;
	height:60px;
	padding:15px 15px 15px 20px;
	border:1px solid #e0e0e0;
	transition:all 500ms ease;
	-moz-transition:all 500ms ease;
	-webkit-transition:all 500ms ease;
	-ms-transition:all 500ms ease;
	-o-transition:all 500ms ease;
}

.faq-search-box .form-group button{
	position:absolute;
	right:0px;
	top:0px;
	width:65px;
	height:60px;
	line-height:58px;
	text-align:center;
	display:block;
	font-size:22px;
	color:#c0c0c0;
	background:none;
	font-weight:normal;
	transition:all 500ms ease;
	-moz-transition:all 500ms ease;
	-webkit-transition:all 500ms ease;
	-ms-transition:all 500ms ease;
	-o-transition:all 500ms ease;
}

.faq-search-box .form-group input:focus{
	border-color:#0262b0;	
}

/*** 

====================================================================
	Faq Form Section
====================================================================

***/

.faq-form-section{
	position:relative;
	overflow:hidden;
	padding:85px 0px 0px;
	background-color:#edf1f4;
}

.faq-form-section h2{
	position:relative;
	color:#0e2a4e;
	font-size:34px;
	font-weight:700;
	line-height:1.3em;
	margin-bottom:55px;
}

.faq-form-section .form-outer{
	position:relative;
	max-width:870px;
	z-index:10;
	padding-bottom:100px;
}

.faq-form-section .image-box{
	position:absolute;
	right:-90px;
	bottom:0px;
}

.faq-form-section .sec-title-two{
	margin-bottom:60px;
}

.faq-form-section .form-group{
	position:relative;
	margin-bottom:30px;
}

.faq-form-section .form-group:last-child{
	margin-bottom:0px;
}

.faq-form-section .form-group input[type="text"],
.faq-form-section .form-group input[type="email"],
.faq-form-section .form-group select{
	position:relative;
	display:block;
	width:100%;
	line-height:24px;
	padding:0px 0px 8px;
	color:#000000;
	border-bottom:2px solid #e3e3e3;
	height:46px;
	font-size:17px;
	background:none;
	font-weight:500;
	-webkit-transition:all 300ms ease;
	-ms-transition:all 300ms ease;
	-o-transition:all 300ms ease;
	-moz-transition:all 300ms ease;
	transition:all 300ms ease;
}

.faq-form-section .form-group input::-webkit-input-placeholder,
.faq-form-section .form-group textarea::-webkit-input-placeholder{
	color:#000000;
}

.faq-form-section .form-group input[type="text"]:focus,
.faq-form-section .form-group input[type="email"]:focus,
.faq-form-section .form-group textarea:focus{
	border-color:#0262b0;
}

.faq-form-section .form-group textarea{
	position:relative;
	display:block;
	width:100%;
	line-height:24px;
	padding:0px 0px;
	color:#000000;
	height:160px;
	background:none;
	resize:none;
	font-size:16px;
	font-weight:500;
	border-bottom:2px solid #e3e3e3;
	-webkit-transition:all 300ms ease;
	-ms-transition:all 300ms ease;
	-o-transition:all 300ms ease;
	-moz-transition:all 300ms ease;
	transition:all 300ms ease;
}

.faq-form-section .form-group .theme-btn{
	padding:11px 32px 10px;
	margin-top:10px;
}

/*** 

====================================================================
	Accordion Style
====================================================================

***/

.accordion-box{
	position:relative;
}

.accordion-box .block{
	position: relative;
    margin-bottom:30px;
}

.accordion-box .block .acc-btn{
	position:relative;
	font-size:22px;
	cursor:pointer;
	line-height:30px;
	color:#0e2a4e;
	font-weight:700;
	padding:0px 10px 0px 35px;
	transition:all 500ms ease;
	-ms-transition:all 500ms ease;
	-o-transition:all 500ms ease;
	-moz-transition:all 500ms ease;
	-webkit-transition:all 500ms ease;
}

.accordion-box .block .icon-outer{
	position:absolute;
	left:-6px;
	top:7px;
	font-size:18px;
	transition:all 500ms ease;
	-moz-transition:all 500ms ease;
	-webkit-transition:all 500ms ease;
	-ms-transition:all 500ms ease;
	-o-transition:all 500ms ease;
}

.accordion-box .block .icon-outer .icon{
    position: absolute;
    width: 28px;
    height: 28px;
    font-size: 16px;
    text-align: center;
}

.accordion-box .block .icon-outer .icon-plus{
	opacity:1;
}

.accordion-box .block .icon-outer .icon-minus{
	opacity:0;
}

.accordion-box .block .acc-btn.active .icon-outer .icon-minus{
	opacity:1;
	color:#242424;
}

.accordion-box .block .acc-btn.active .icon-outer .icon-plus{
	opacity:0;
}

.accordion-box .block .acc-content{
	position:relative;
	display:none;
}

.accordion-box .block .acc-content.current{
	display:block;	
}

.accordion-box .block .content{
	position:relative;
	font-size:14px;
	padding:14px 30px 0px 35px;
}

.accordion-box .block .content .text{
	margin-bottom:20px;
	line-height:1.7em;
	font-size:17px;	
	color:#797979;
}

.accordion-box .block .content p:last-child{
	margin-bottom:0px;	
}

/*** 

====================================================================
	Gallery Page Section
====================================================================

***/

.gallery-page-container{
	position:relative;
	padding:100px 0px 70px;
}

/*** 

====================================================================
	Testimonial Page Section
====================================================================

***/

.testimonial-page-section{
	position:relative;
	padding:70px 0px 70px;
	background-color:#edf1f4;
}
.mb20{
	margin-bottom : 20px;
	
}
.mt50{
	margin-top: 50px;
}




.social-head {
    display: inline-block;
    margin-bottom: 0;
/*    margin-top: 30px;*/
/*    float: right;*/
}
.social-head li {
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    color: #ffffff;
    text-shadow: 0 1px 1px rgb(0 0 0 / 10%);
    border: 1px solid transparent;
    display: inline-block;
    border-radius: 50px;
    transition: 0.5s ease;
    margin: 0 1px;
}
.social-head .fb {
    background: #3566ab;
}
.social-head .insta {
    background-color: #ed2763;
}
.social-head .twitt {
    background: #00b0eb;
}
.social-head .you {
    background: #cb272d;
}
/*.social-head li:hover{
	background: #0262b0;
}*/
.social-head li i {
    color: #fff;
    font-size: 17px;
}



.slogen {
    padding: 35px 0;
    background: #e12832;
}
.slo h1 {
    color: #fff;
    font-size: 34px;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 36px;
}
.slo p {
    color: #fff;
    font-size: 18px;
    font-weight: normal;
    margin-bottom: 0;
    line-height: 24px;
}
.slo a {
    padding: 9px 30px;
    margin-left: 15px;
    margin-top: 10px;
    float: right;
}


.contact-area {
    padding: 60px 0;
/*    background: #ebf6ff;*/
}
.contact-area .cnt-data {
    border: none;
    background: transparent;
}
.contact-area .layer-content {
    position: relative;
    z-index: 1;
    height: 100%;
    width: 100%;
    padding-left: 0px;
    /*padding: 25px; 	
    padding-left: 0;*/
}
/*.contact-area .layer-content h3 {
    font-size: 28px;
    color: #000;
    font-weight: 600;
    margin-bottom: 10px;
}*/
.contact-area .featured-content ul {
    padding-left: 0;
    margin-bottom: 0;
}
.contact-area .featured-content ul li {
    list-style: none;
    font-size: 15px;
    color: #000;
    font-weight: normal;
    position: relative;
/*    padding: 10px 0;*/
	margin-bottom: 15px;
    padding-left: 60px;
    line-height: 24px;
}
.contact-area .featured-content ul li i {
    position: absolute;
    left: 0;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    /* border: 1px solid #ddd; */
    color: #fff;
    border-radius: 5px;
	background:#e53791;
}
.contact-area .featured-content ul li b {
    font-weight: 600;
}
.contact-area .featured-content ul li span {
    padding-right: 10px;
}
.contact-area .featured-content ul li a {
    transition: 0.5s ease;
    color: #000;
}
.contact-area .featured-content ul li a:hover{
	color: #cb1a24;
}
.contact-area h3{
	line-height: 45px;
    color: #282828;
    position: relative;
    padding-left: 25px;
    text-transform: capitalize;
    font-size: 20px;
    /* font-weight: 600; */
    margin-bottom: 30px;
    background: #f9dceb;
    border-radius: 0 5px 5px 0;
    border-left: 6px solid #e53791;
}
.contact-area .container-fluid{
	width: 100%;
}
.sep_holder_box {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin: 10px 0 20px;
}
.sep_holder_box .sep_holder {
    height: 1px;
    position: relative;
    -webkit-box-flex: 1;
    -webkit-flex: 1 1 auto;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    min-width: 10%;
}
.sep_holder .sep_line {
    height: 1px;
    border-top: 1px solid #ffb9e8;
    display: block;
    position: relative;
    top: 1px;
    width: 100%;
}
.social-icons {
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 15px;
}
.social-icons.circle ul {
    margin-top: 10px;
}
.social-icons.circle li {
    margin: 0 2px;
    display: inline-block;
    border: none;
}
.social-icons.circle li a {
    border: 1px solid #ffa9e3;
    color: #e12832;
    height: 40px;
    width: 40px;
    line-height: 40px;
    text-align: center;
    display: block;
    background-color: transparent;
    font-size: 18px;
    border-radius: 5px;
    transition: 0.5s ease;
}
.social-icons.circle li a:hover {
    border-color: #0262b0;
    background: #0262b0;
    color: #fff;
}



.floating_btn {
  position: fixed;
  bottom: 12%;
  right: 0px;
  width: 80px;
  height: 80px;
  display: flex;
  flex-direction: column;
  align-items:center;
  justify-content:center;
  z-index: 1000;
}

@keyframes pulsing {
  to {
    box-shadow: 0 0 0 30px rgba(232, 76, 61, 0);
  }
}

.contact_icon {
  background-color: #19be2f;
  color: #fff;
  width: 55px;
  height: 55px;
  font-size:32px;
  border-radius: 50px;
  text-align: center;
  box-shadow: 2px 2px 3px #999;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translatey(0px);
  animation: pulse 1.5s infinite;
  box-shadow: 0 0 0 0 #42db87;
  -webkit-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  -moz-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  -ms-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  font-weight: normal;
  font-family: sans-serif;
  text-decoration: none !important;
  transition: all 300ms ease-in-out;
}


.text_icon {
  margin-top: 8px;
  color: #707070;
  font-size: 13px;
}



.carousel-indicators{
	display: none;
}
.carousel-caption{
	width: 37%;
	left: 10%;
	top: 25%;
}
.carousel-caption2{
	width: 44%;
}
.carousel-caption h1{
	font-size: 34px;
	color: #0262b0;
	font-weight: 600;
	padding-bottom: 5px;
}
.carousel-caption h2{
	font-size: 24px;
	color: #000;
	padding-bottom: 3px;
}
.carousel-caption p{
	font-size: 16px;
	color: #000;
	line-height: 28px;
}
.carousel-control-next, .carousel-control-prev{
	opacity: 1;
	width: 10%;
}
.carousel-control-next i, .carousel-control-prev i{
	font-size: 16px;
    border: 1px solid #653573;
    color: #ffffff;
    width: 35px;
    height: 35px;
    line-height: 35px;
    border-radius: 5px;
    transition: 0.5s ease;
    background: #653573;
}
.carousel-control-next i:hover, .carousel-control-prev i:hover{
	background: #e53791;
	border-color: #e53791;
	color: #fff;
}

.testi_section {
    padding: 60px 0;
}
.test1 {
    width: 100%;
    padding: 30px;
    margin: auto;
    background: #eaeaea;
    box-shadow: 2px 2px 3px 0px #c0c0c0;
    margin: 10px 0;
}
.test1 i {
    font-size: 45px;
    color: #e12832;
}
.test1 p {
    font-size: 16px;
    margin-top: 10px;
    color: #000;
    line-height: 28px;
}
.test1 h2 {
    margin: 0%;
    font-size: 20px;
    color: #000;
    padding-left: 20px;
    position: relative;
    font-weight: 600;
    text-transform: capitalize;
}
.test1 h2:before {
    content: '';
    left: 0px;
    top: 12px;
    position: absolute;
    width: 12px;
    height: 2px;
    background-color: #000;
}


.blog{
	padding: 50px 0;
}
.blog img{
	width: 35%;
}


.service-main {
    padding: 50px 0;
}
.sidebar {
    box-shadow: 1px 1px 2px #b1b1b1;
    box-shadow: 0px 0px 4px #adabab;
    border-radius: 5px;
}
.sidebar ul {
    padding-left: 0;
}
.sidebar h3 {
   	font-size: 24px;
    background: #653573;
    color: #fff;
	font-family: "Yeseva One", serif;
    letter-spacing: 1px;
    padding: 12px;
    font-weight: 500;
	text-align:center;
}
.service-main h2 {
   	font-size: 24px;
    /* background: #ffeaeb; */
    color: #653573;
	font-family: "Yeseva One", serif;
    /* letter-spacing: 1px; */
    /* padding: 12px; */
    margin: 20px 0 12px;
    border-radius: 5px;
/*    text-transform: capitalize;*/
    font-weight: 500;
}
.sidebar ul li {
/*    border-bottom: 1px solid #ff83833b;*/
    background: #f1f1f1;
    list-style: none;
    transition: 0.5s ease;
    margin: 3px 0;
}
.sidebar ul li:hover, .sidebar ul li.active {
    background: #653573;
    color: #fff !important;
}
.sidebar ul li a {
    font-size: 16px;
    color: #000;
    padding: 12px 10px;
    display: block;
    text-transform: capitalize;
    transition: 0.5s ease;
}
.sidebar ul li:hover a {
    color: #fff;
}
.sidebar ul li.active a {
    color: #fff;
}
.service-detail {
/*    padding-right: 15px;*/
}
.service-detail h1 {
    font-size: 40px;
    color: #653573;
	font-family: "Yeseva One", serif;
    letter-spacing: 1px;
    text-transform: capitalize;
    line-height: 48px;
    font-weight: 500;
    padding-bottom: 15px;
}
.service-detail h3{
	font-size: 22px;
    color: #e12832;
    text-transform: capitalize;
    line-height: 26px;
    font-weight: 600;
    text-decoration: underline;
    padding-bottom: 7px;
}
.service-detail h4{
	font-size: 20px;
    color: #000;
    text-transform: capitalize;
    line-height: 26px;
    font-weight: 600;
    padding-bottom: 7px;
}
.service-detail p {
        font-size: 18px;
    line-height: 34px;
    color: #3a3a3a;
    font-weight: 500;
    /* text-align: justify; */
    font-family: "Poppins", sans-serif;
    margin-bottom: 10px;
}
.service-detail ul {
    padding-left: 0;
}
.service-detail ul li {
        font-size: 18px;
    line-height: 34px;
    color: #3a3a3a;
    font-weight: 500;
    /* text-align: justify; */
    font-family: "Poppins", sans-serif;
    list-style: none;
    position: relative;
    padding-left: 26px;
    margin-bottom: 10px;
    color: #000;
}
.service-detail ul li span {
    position: absolute;
    left: 0;
    top: 8px;
    color: #653573;
}
.service-detail b {
    font-weight: 600;
}
.ser-data img{
	border: 1px solid #c0bfbf;
	margin: 20px 0;
}
.ser-data ul li{
	display: inline-block;
	padding: 0;
	margin-right: 20px;
}
.ser-data ul li img{
	float: none;
	margin-left: 0;
}
.ser-btn{
	margin-top: 20px;
}
.ser-btn a{
	width: 100%;
	padding: 10px 0;
	font-size: 16px;
	text-align: center;
}


.header-contact-info {
    position: relative;
    display: block;
    margin-top: 12px;
    float: right;
}
.header-contact-info ul {
    position: relative;
    display: block;
    overflow: hidden;
    margin-left: 7px;
}
.header-contact-info ul li {
    position: relative;
    display: inline-block;
    float: left;
    margin-right: 10px;
    padding-right: 10px;
    border-right: 1px solid #dedede;
}
.header-contact-info ul li .single-item {
    position: relative;
    display: block;
}
.header-contact-info ul li:last-child {
    margin-right: 0;
    padding-right: 0;
    border: none;
}
.header-contact-info ul li .single-item .icon, .header-contact-info ul li .single-item .text {
    display: table-cell;
    vertical-align: middle;
}
.header-contact-info ul li .single-item .icon {
    width: 30px;
}
.header-contact-info ul li .single-item .icon span:before {
    color: #e20413;
    font-size: 20px;
    line-height: 50px;
}
.header-contact-info ul li .single-item .text {
    position: relative;
    padding-left: 0px;
}
.header-contact-info ul li .single-item .text a {
    color: #000;
}
.header-contact-info ul li .single-item .text a:hover {
    color: #e20413;
}


#counter{
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ddd;
  background: #cdcdcd;
  padding: 40px 0px;
  width: 100%;
/*  background: url(../images/gallery-slider-bg.jpg) center no-repeat;*/
}
#counter .item{
  	background: #fff;
  	width: 100%;
  	padding: 20px 20px;
  	border-radius: 15px;
  	-webkit-box-shadow: 0px 0px 38px -8px rgba(0,0,0,0.34);
	-moz-box-shadow: 0px 0px 38px -8px rgba(0,0,0,0.34);
	box-shadow: 0px 0px 38px -8px rgba(0,0,0,0.34);
/*	border-left: 3px solid #0262b0;*/
} 
#counter .counter-width{
/*	width: 80%;*/
	margin: 0 auto;
}
#counter .item h1{
  color: #000;
  margin-bottom: 0px;
  font-size: 26px;
  font-weight: 600;
  position: relative;
  margin-top: 0;
  display: inline-block;
}
#counter .item h1:before{
    position: absolute;
    content: '+';
    left: 105%;
    top: 0px;
}
#counter .item .count2:before{
    position: absolute;
    content: '%';
    left: 105%;
    top: 0px;
}
#counter .item h3{
  color: #000;
  text-transform: capitalize;
  font-size: 16px;
  text-align: left;
  margin-top: 0;
  margin-bottom: 0;
}
#counter .item i{
    font-size: 22px;
    /* margin-bottom: 10px; */
    width: 45px;
    height: 50px;
    line-height: 50px;
    border: 1px solid #0262b036;
    color: #e12832;
    float: left;
    border-radius: 5px;
}
#counter .item img{
	width: 50px;
	float: left;
}
.count-data{
    padding-left: 60px;
    text-align: left;
}

.gallery_section{
	padding: 30px 0;
	/*border-top: 1px dashed #0262b0;
    border-bottom: 1px dashed #0262b0;*/
    background: url(../images/inner-banner.jpg) center no-repeat;
    background-size: cover;
    background: #232323;
    position: relative;
}
/*.gallery_section:before{
	position: absolute;
	content: '';
	width: 1px;
	height: 100%;
	top: 0;
	left: 50%;
	background: #b1b1b1;
}*/
.gallery_section .owl-nav .owl-prev, .gallery_section .owl-nav .owl-next,
.vd-gallery_section .owl-nav .owl-prev, .vd-gallery_section .owl-nav .owl-next {
    position: absolute;
    top: 45%;
/*    width: 40px;*/
/*    height: 40px;*/
/*    line-height: 40px;*/
/*    background: #0262b0;*/
    color: #fff;
    font-size: 30px;
    border-radius: 5px;
    text-align: center;
    font-weight: 400;
    display: inline-block;
/*    border: 1px solid #e12832;*/
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}
.gallery_section .owl-nav .owl-prev:hover, .gallery_section .owl-nav .owl-next:hover,
.vd-gallery_section .owl-nav .owl-prev:hover, .vd-gallery_section .owl-nav .owl-next:hover{
    color: #0262b0;
/*    background-color: #e12832;*/
}
.gallery_section .owl-nav .owl-prev, .vd-gallery_section .owl-nav .owl-prev {
    left: -4%;
}
.gallery_section .owl-nav .owl-next, .vd-gallery_section .owl-nav .owl-next {
    right: -4%;
}
.gallery_section .gallery-img img {
/*	border: 1px solid #9e9e9e;*/
	padding: 2px;
    background: #fff;
    border-radius: 5px;;
}

.vd-gallery_section{
	padding: 50px 0 55px;
}
.vd-gallery_section .gallery-vd video{
	border: 1px solid #9e9e9e;
	padding: 4px;
	background: #e7e7e7;
	height: 215px;
}



.header-discription {
    background: #eaeaea;
    background: #000;
/*    padding: 0 35px;*/
}
.poppup-forms {
    float: left;
    width: auto;
}
.poppup-forms li {
    display: inline-block;
    padding: 0px 10px;
    border-right: 1px solid #535353;
    line-height: 37px;
}
.poppup-forms li:last-child {
    border: none;
}
.poppup-forms li a {
    font-size: 15px;
    line-height: 20px;
    color: #2c2c2c;
/*    font-weight: 500;*/
    display: inline-block;
}
.poppup-forms li span {
    font-size: 15px;
    color: #fff;
}
.header-icon li i {
    margin-right: 10px;
    color: #fff;
}
.poppup-forms li a:hover {
    color: #0262b0;
}
.right .poppup-forms {
    float: right;
}
.social-icon-head li a img {
    width: 30px;
    margin-right: 2px;
}
.follow-us li {
    border-right: none !important;
    padding: 0 !important;
}
.logo{
	max-width: 100%;
}



.testimonial-invild {
  background:#fff;
  padding: 50px 0 55px;
}
.testimonial-invild .review .review-description {
  /* background: #e9e9e9; */
  background: #f8effb;
  padding: 25px;
  padding-top: 45px;
  border-radius: 6px;
/*  height: 265px;*/
/*  overflow-x: hidden;*/
	margin: 15px 0;
}
.testimonial-invild2 .review .review-description {
	margin: 30px 0;
}
/*.testimonial-invild .review .review-description:before{
	content: url(../images/quote.png);
	position: absolute;
	left: 0;
}*/
.quote i{
	background-color: #653573;
	background: #653573;
    box-shadow: 5px 5px 5px #00000020;
    color: #fff;
    font-size: 36px;
    width: 65px;
    height: 65px;
    line-height: 65px;
    text-align: center;
    margin: 0 auto 0 auto;
    position: absolute;
    top: 0%;
    left: 6%;
    border-radius: 50%;
}
.testimonial-invild .owl-carousel.owl-drag .owl-item{
	padding-top: 40px;
}
.testimonial-invild .review .review-description a .first{
  float:left;
}
.testimonial-invild .review .review-description a .first img{
  width:44px;
  height:44px;
  border-radius:50%;
}
.testimonial-invild .review .review-description a .first p{
  font-size:24px;
  border:1px solid #0262b0;
  background:#0262b0;
  color:#fff;
  border-radius:50%;
  width:44px;
  height:44px;
  text-align:center;
  line-height:42px;
  margin-bottom: 10px;
  text-transform: uppercase;
  position: relative;
}
.testimonial-invild .review .review-description .second {
  display:inline-block;
/*  padding-left: 10px;*/
}
.second-right{
	float: right;
}
.second-right img{
	max-width: 140px;
}
.tst-bottom{
	padding-top: 2px;
	display: inline-block;
    width: 100%;
}
.testimonial-invild .review .review-description .second ul {
  display:inline-block;
} 
.testimonial-invild .review .review-description .second h1{
  font-size: 17px;
  font-weight: 600;
  white-space: nowrap;
  text-overflow: ellipsis;
  text-align: left;
  color: #000;
  text-transform: capitalize;
}
.testimonial-invild .review .review-description .second ul li{
	display: inline-block;
}
.testimonial-invild .review .review-description .second ul li i{
  color:rgb(255 180 0);
}
.testimonial-invild .review .review-description .second ul .date-revi{
  font-size:13px;
  color:rgba(0, 0, 0, 0.5);
  padding-left:10px;
}
.testimonial-invild .review .review-description .review-title{
  float:unset;
  display:inline-block;
  padding-top:0px;
}
.review-title img{width:100%;}
.testimonial-invild .review .review-description .review-title h2{
  font-size:15px;
  color:#000;
  font-weight:400;
  line-height:26px;
  height: 105px;
  overflow-y: scroll;
}
.testimonial-invild2 .review .review-description .review-title h2{
	height: auto;
	overflow-y: auto;
}
.testimonial-invild .review .review-description .review-title h1{
  font-size:18px;
  color:#000;
  font-weight:400;
  padding-top:15px;
}
.testimonial-invild .review .review-description .review-title .indost{
	padding-bottom:9px;
}
.testimonial-invild .review .review-description .review-title .indost span{
	padding-left:5px;
	font-size:14px;
	color:#282828;
}
.patie .indost span{
	padding-left:5px;
	font-size:14px;
	color:#282828;
}
.testimonial-invild .review .review-description .review-title p{
	font-size:15px;
  color:#000;
  font-weight:400;
  line-height:26px;
  height: 215px;
  overflow-y: scroll;
}
.testimonial-invild .review .review-description .review-title a{
  font-size:15px;
  color:#000;
  font-weight:400;
  padding-top:5px;
}
.testimonial-invild .review .review-description .review-title .rev-img{
  padding-top:15px;
}
.testimonial-invild .review .review-description .review-title .rev-img{}
#more21, #more20, #more19, #more18, #more17, #more16, #more15, #more14, #more13, #more12, #more11, #more10, #more9, #more8, #more7, #more6, #more5, #more4, #more3, #more2, #more1, #more {
  display: none;
}
.testimonial-invild .owl-nav .owl-prev, .testimonial-invild .owl-nav .owl-next {
    position: absolute;
    top: 50%;
/*    width: 40px;*/
/*    height: 40px;*/
/*    line-height: 40px;*/
/*    background: #0262b0;*/
    color: #000;
    font-size: 30px;
/*    border-radius: 5px;*/
    text-align: center;
    font-weight: 400;
    display: inline-block;
/*    border: 1px solid #e12832;*/
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}
.testimonial-invild .owl-nav .owl-prev:hover, .testimonial-invild .owl-nav .owl-next:hover{
	color: #cb1a24;
}
.testimonial-invild .owl-nav .owl-prev {
    left: -4%;
}
.testimonial-invild .owl-nav .owl-next {
    right: -4%;
}
.testimonial-invild .owl-dots{
	display:none;
}

.testimonial-invild1{
	padding: 35px 0;
	border: 0;
}
.testimonial-invild1 .review .review-description{
	margin: 25px 0;
	box-shadow: 0px 0px 5px #afaeae;
}


.lightbox-gallery{
	padding: 40px 0;
	color: #000;
	overflow-x: hidden;
}
.lightbox-gallery p{
	color:#fff;
}
.lightbox-gallery h2{
	font-weight:bold;
	margin-bottom:40px;
	padding-top:40px;
	color:#fff;
}
@media (max-width:767px){
	.lightbox-gallery h2{
		margin-bottom:25px;
		padding-top:25px;
		font-size:24px;
	}
}
.lightbox-gallery .intro{
	font-size:16px;
	max-width:500px;
	margin:0 auto 40px;
}
.lightbox-gallery .intro p{
	margin-bottom:0;
}
.lightbox-gallery .photos{
	
}
.lightbox-gallery .item{
	margin: 15px 0;
}
.lightbox-gallery .item img{
	border: 1px solid #c6c6c6;
	padding: 3px;
}
.lb-nav a.lb-next, .lb-nav a.lb-prev{
	opacity: 1 !important;
	position: absolute;
}
.lb-nav a.lb-next{
	right: -45% !important;
}
.lb-nav a.lb-prev{
	left: -45% !important;
}
.lb-data .lb-number{
	display: none !important;
}
.lb-dataContainer{
	position: absolute;
    top: -7%;
    right: 20%;
}
.lightbox-gallery .gallery-vd video{
	border: 1px solid #c6c6c6;
    padding: 3px;
    height: 200px;
}
/*.lb-outerContainer{
	top: ;
	background: none !important;
	width: 650px !important;
}
.lightbox .lb-image{
	width: 100% !important;
	height: 100% !important;
}*/



.category_wrapper {
    text-align: center;
    background-color: white;
    width: 100%;
}
.cont_cat_abt {
    margin-top: 0;
    width: 100%;
    height: 180px;
    border: 1px solid #7395a4;
}
.cont_cat_abt:hover {
    border-color: #0262b0;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.cat_about:hover .icon_wrapper:before {
    border-top: 95px solid #0262b0;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}
.cat_about {
    float: left;
    width: 100%;
    background-color: #ffffff;
    position: relative;
/*    margin-top: -90px;*/
    z-index: 3;
}
.dc_icon_section {
    bottom: 31px;
}
.icon_wrapper {
    position: relative;
    bottom: 28px;
}
.icon_wrapper:before {
    content: '';
    border-right: 85px solid transparent;
    border-top: 85px solid #7395a4;
    position: absolute;
    left: 0px;
    top: 28px;
    transition: 0.5s ease;
}
.dc_icon_section img {
    left: 23px;
}
.icon_wrapper img {
    top: 44px;
    left: 11px;
    position: absolute;
    width: 23px;
}
.cont_cat_txt {
    left: 0;
    position: relative;
    width: 100%;
    margin-top: 25px;
}
.cat_txt {
    position: absolute;
    /*top: 23%;
    width: 75%;
    left: 50px;*/
    top: 15%;
    width: 100%;
    left: 0px;
}
.cat_txt h1 {
    color: #000;
    font-size: 20px;
    font-weight: 600;
    padding-bottom: 5px;
    text-transform: capitalize;
}
.cat_txt p {
    text-align: center;
    color: #000;
    font-size: 15px;
}
.cat_txt ul li{
    display: inline-block;
    list-style: none;
}
.cat_txt ul li a{
    color: #000;
}
.cat_txt ul li a:hover{
    color: #eb881a;
}
.cnt-data {
    border: 1px solid #eb881a36;
    background: #eb881a1f;
}
.cnt-frm{
    padding-right: 8px !important;
}

.about-us-section{
	padding: 50px 0;
}
.about-content p{
	font-size: 15px;
    line-height: 25px;
    color: #000;
    text-align: justify;
    margin: 7px 0;
}
.about-content h2{
	position:relative;
	text-transform: capitalize;
	color:#e2030f;
	font-size: 34px;
	margin-bottom : 10px;
	line-height:28px;
	font-weight:600;
}
.about-content h3{
	font-size: 20px;
    letter-spacing: 0.1px;
    color: #000;
    font-weight: 500;
    line-height: 28px;
}
.about-content h4 {
    /*font-weight: 400;
    font-size: 28px;
    color: #000;
    text-transform: capitalize;
    margin: 35px 0 20px;
    font-weight: 500;
    padding-bottom: 10px;*/
    line-height: 45px;
    color: #000;
    position: relative;
    padding-left: 25px;
    text-transform: capitalize;
    font-size: 22px;
    font-weight: 600;
    margin: 35px 0 20px;
    background: #ffedee;
    border-radius: 0 5px 5px 0;
    border-left: 6px solid #cb1a24;
}	
.about-content table {
    box-shadow: 0 0 5px #c4c4c4;
    margin-left: 0;
}
.table>tbody {
    vertical-align: inherit;
}
.about-content table tr th {
    border: 1px solid #b8b8b8;
    background: #d3d3d3;
    border: 1px solid #d0d0d0;
    background: #eaeaea;
    background: #e9f5ff;
    color: #000;
    font-size: 16px;
    font-weight: 600;
    padding: 10px;
}
.about-content table tr td {
    border: 1px solid #d1d1d1;
    background: #eeeeee20;
    text-transform: none;
    font-size: 15px;
    padding: 12px 10px;
    color: #000;
}
.about-content table ul li{
	position: relative;
	padding: 5px 0;
	padding-left: 15px;
	margin-bottom: 0;
	text-align: left;
}
.about-content table i{
	position: absolute;
	left: 0;
	top: 12px;
    font-size: 5px;
}
.about-content1{
	background: #f3fbff;
    padding: 25px;
    box-shadow: 0px 0px 5px #afafaf;
    margin: 30px 0;
}
.about-content1 h4{	
    font-size: 24px;
    color: #000;
    text-transform: capitalize;
    margin: 0px 0 10px;
    font-weight: 600;
}
.about-content1 h5{	
    font-size: 20px;
    color: #000;
    text-transform: capitalize;
    margin: 0px 0 10px;
    font-weight: 600;
    border-bottom: 1px solid;
    display: inline-block;
}
.about-content1 ul li{
	font-size: 15px;
    line-height: 25px;
    color: #000;
    text-align: justify;
    margin: 7px 0;
    position: relative;
    padding-left: 25px;
}
.about-content1 ul li i{
	position: absolute;
	left: 0;
	top: 7px;
	color: #0262b0;
}
.about-us-section1{
	padding: 25px 0;
}
.about-us-section .lightbox-gallery{
	padding-top: 0;
	margin-top: 0px;
}
.about-us-section  .lightbox-gallery .item img{
	border: none;
	padding: 0;
}
.about-content .table-content table tr td{
	padding: 7px 20px;
}
.about-content .table-content ul li{
	position: relative;
	padding-left: 25px;
}
.about-content .table-content i{
	position: absolute;
	left: 0;
	top: 10px;
	color: #cb1a24;
	font-size: 14px;
}
.about-content .table-content table tr th{
	padding: 15px 20px;
	font-size: 18px;
}


.article-sec {
    padding: 45px 0;
    background: #eaeaea;
}
.articles {
    background: #fff;
    padding: 10px;
    margin: 15px 0;
    box-shadow: 0px 0px 5px #cbcbcb; 
}
.article-title1 {

}
.article-title1 img {
    width: 100%;
    border: 1px solid #ebebeb;
    margin-bottom: 15px;
    border-radius: 0;
    cursor: pointer;
}
.articles p {
    color: #747474;
    font-size: 16px;
    margin: 0;
}
.articles .article-title p{
	color: #0056b3;
}
.article-title h1 {
    font-size: 19px;
    color: #000;
    line-height: 30px;
    padding: 5px 0 8px;
    font-weight: 500;
    /* text-align: justify; */
}
#myImg {
  border-radius: 0px;
  cursor: pointer;
  transition: 0.3s;
}
#myImg:hover {
	filter: brightness(1.2);
}
.modal {
  display: none;
  position: fixed;
  z-index: 99999;
  padding-top: 100px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0,0,0);
  background-color: rgba(0,0,0,0.9);
}
.modal-content {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
}
#caption {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
  text-align: center;
  color: #ccc;
  padding: 10px 0;
  height: 150px;
}
.modal-content, #caption {
  animation-name: zoom;
  animation-duration: 0.6s;
}
@keyframes zoom {
  from {transform:scale(0)}
  to {transform:scale(1)}
}
.close {
  position: absolute;
  top: 15px;
  right: 35px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
}
.close:hover,
.close:focus {
  color: #bbb;
  text-decoration: none;
  cursor: pointer;
}
@media only screen and (max-width: 700px){
  .modal-content {
    width: 100%;
  }
}
.modal {
	z-index:99999;
	display:none;
	padding-top:10px;
	position:fixed;
	left:0;
	top:0;
	width:100%;
	height:100%;
	overflow:auto;
	background-color:rgb(0,0,0);
	background-color:rgba(0,0,0,0.8)
}
.modal-content{
	margin: auto;
	display: block;
    position: absolute;
  	top: 18%;
  	left: 25%;
/*  	transform: translate(-50%, -50%);*/
}
.modal-hover-opacity {
	opacity:1;
	filter:alpha(opacity=100);
	-webkit-backface-visibility:hidden
}
.modal-hover-opacity:hover {
	filter:alpha(opacity=60);
	-webkit-backface-visibility:hidden
}
.close {
	text-decoration:none;
	float:right;
	font-size:24px;
	font-weight:bold;
	color:white;
}
.container1 {
	width:100%;
	display:inline-block;
}
.modal-content, #caption {   
    -webkit-animation-name: zoom;
    -webkit-animation-duration: 0.6s;
    animation-name: zoom;
    animation-duration: 0.6s;
}
@-webkit-keyframes zoom {
    from {-webkit-transform:scale(0)} 
    to {-webkit-transform:scale(1)}
}
@keyframes zoom {
    from {transform:scale(0)} 
    to {transform:scale(1)}
}
.article-sec .photos .item img{
	padding: 3px;
    margin: 15px 0;
    box-shadow: 0px 0px 5px #cbcbcb;
    background: #fff;
}

.popup-link{
/*  display: flex; */*/
    flex-wrap: wrap;
    text-align: center;
    background: #e0e0e0;
    visibility: hidden;
}

.popup-link a{
/*    background: #c2c2c2; */
    color: #2c2c2c;
    /* padding: 10px 30px; */
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    text-decoration: none;
    line-height: 41px;
    /* float: right; */
    text-align: center;
    font-style: italic;
    text-decoration: underline;
    font-weight: 500;
}
.popup-link a:hover{
	color: #0262b0;
}

.popup-container {
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease-in-out;
    transform: scale(1.3);
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(21 17 17 / 77%);
    display: flex;
    align-items: center;
}
.popup-content {
    background-color: #fefefe;
    margin: auto;
    padding: 20px;
    border: 1px solid #888;
    width: 50%;
	position:relative;
}
.popup-content p{
    font-size: 17px;
    padding: 10px;
    line-height: 20px;
}
.popup-content a.close{
    color: #282828;
    float: right;
    font-size: 36px;
    font-weight: bold;
    background: none;
    padding: 0;
    margin: 0;
    text-decoration:none;
    opacity: 1;
	z-index:999;
}

.popup-content a.close:hover{
  color:#282828;
}

.popup-content span:hover,
.popup-content span:focus {
/*    color: #000;*/
    text-decoration: none;
    cursor: pointer;
}

.popup-container:target{
  visibility: visible;
  opacity: 1;
  transform: scale(1);
  z-index: 9999;
}

.popup-container h3{
  margin-bottom:20px;
  font-size: 28px;
}
/*End popup styles*/

/* Additional styles */
.popup-style-2{
  transform: scale(0.3);
  
}

.popup-style-2:target{
  transform: scale(1);
}

.popup-style-3{
  left:100%;
  
}

.popup-style-3:target{
  left:0;
}

.popup-style-4{
  transform: rotate(180deg);
}

.popup-style-4:target{
  transform: rotate(0deg);
}

.popup-style-5{
  top:100%;
  
}

.popup-style-5:target{
  top:0;
}

.popup-style-6{
  transform: scale(15.3);
  
}

.popup-style-6:target{
 transform: scale(1);
 }

.popup-style-7{
  transform: skewY(180deg);
   transition: all 0.7s ease-in-out;
}

.popup-style-7:target{
 transform: skewY(0deg);

 }




.appointment_section1 .attach-content{
	border:1px solid #ddd;
}
.appointment_section1{
	padding:50px 0;
	backdrop:#ddd;
}

.appointment_section{
	padding: 50px 0;
	/* background: url(../img/apt-bg.jpg) center no-repeat; */
	/* background-size: cover; */
	background:#f9f9f9;
}
.appointment_section2{
	background: #ddd;
}
.appointment_section .owl-dots{
	display:none;
}
.appointment_section .owl-nav .owl-prev,
.appointment_section .owl-nav .owl-next{
	position:absolute;
	top:45%;
	width: 40px;
	height: 40px;
	line-height: 40px;
	background:#a7387c;
	color:#000;
	font-size:30px;
/*	border-radius: 5px;*/
	text-align:center;
	font-weight:400;
	display:inline-block;
	-webkit-transition:all 300ms ease;
	-moz-transition:all 300ms ease;
	-ms-transition:all 300ms ease;
	-o-transition:all 300ms ease;
    transition: all 300ms ease;
}
.appointment_section .owl-nav .owl-prev{
	left: -6%;
}
.appointment_section .owl-nav .owl-next{
	right: -6%;
}
.appointment_section .owl-nav .owl-prev:hover,
.appointment_section .owl-nav .owl-next:hover{
/*	background-color:#e12832;*/
	color: #cb1a24;
}
.attachments-section{padding:0 50px;}
.attachments-section h3 {
    position: relative;
    font-size: 18px;
    font-weight: 600;
    color: #000;
    padding: 8px 0;
}
.attachments-section p {
    position: relative;
    font-size: 15px;
    margin-bottom: 12px;
    color: #000;
}
.attachments-section i{
/*	color: #cb1a24;*/
}
.attachments-section b{
	font-weight: 600;
}
.attach-data h3{
	position: relative;
    font-size: 18px;
    font-weight: 600;
    color: #653573;
    padding: 8px 0;
}

.attach-data p{
	position: relative;
    font-size: 15px;
    margin-bottom: 12px;
    color: #000;
}
.attach-content{
	background-color: #f3eaf5;
    padding: 15px;
    border-radius: 5px;
    min-height: 405px;
    box-shadow: 1px 1px 3px #b8b7b7;
/*    width: 93%;*/
    margin: 4px auto;
    position: relative;
    text-align: center;
}
.appointment_section .fa-angle-left:before,
.appointment_section .fa-angle-right:before{
	color:#fff;
}
.appointment_section .attach-content{
	margin: 15px 0;
}
.attach-content a{
	/* position: absolute; */
	/* bottom: 4%; */
    /* left: 18%; */
	margin-top:10px;
}
.appointment_section2 .attach-content a{
	left: 22%;
}
.attach-content .attach-map iframe{
	width: 150px;
	height: 150px;
	margin: 0 auto;
	border-radius: 50%;
	padding: 4px;
	border: 1px solid #0262b087;
}
.appointment_section .default-form input[type="text"], 
.appointment_section .default-form input[type="email"], 
.appointment_section .default-form input[type="password"], 
.appointment_section .default-form select, 
.appointment_section .default-form textarea{
	height: 48px;
	font-size: 14px;
}
.appointment_section .default-form textarea{
	height: 120px;
}
.appointment_section .form-group{
	margin-bottom: 20px;
}
.appointment_section .default-form{
	padding: 30px;
}
.appointment_section .default-form h3{
	font-size: 28px;
	margin-bottom: 25px;
}


.middle-header-content ul {
    margin-top: 23px;
    float: right;
}
.middle-header-content ul li {
    display: inline-block;
    position: relative;
    font-size: 15px;
    color: #000;
    margin-right: 4px;
    padding: 0 15px 0 55px;
    /* border: 1px solid #cb1a24d9; */
    border-radius: 50px;
    box-shadow: 0px 0px 4px #b4b4b4;
    line-height: 25px;
}
.middle-header-content ul li:hover a{
	color:#653573;
}
.middle-header-content ul li i {
    position: absolute;
    left: 0px;
    top: 0;
    color: #fff;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    background: #dd137b;
    border-radius: 50px;
    font-size: 16px;
}
.middle-header-content ul li a {
    color: #000;
    line-height: 22px;
    transition: 0.5s ease;
	font-size:15px;
}
.middle-header-content ul li a span{
	font-size:14px;
	font-weight:500;
}
.btn-head{
	line-height: 0;
}


.float-button {
    text-decoration: none;
    position: fixed;
    padding: 10px;
    padding-right: 15px;
    bottom: 85px;
    right: 10px;
    color: #fff;
    background-color:#07b84a;
    border-radius: 25px 30px 5px 25px;
    z-index: 100;
    font-size: 16px;
    animation: whatsapp-animation 0.5s ease-in-out;
    box-shadow: 1px 2px 5px 2px rgba(30,30,30,0.3);
    transition:all 0.3s ease-out;
}
.float-button:hover {
	background-color: #e53791;
    color: #fff;
}
.fa-whatsapp {
	font-size: 20px !important;
    padding-right: 5px;
    padding-left: 5px;
}
@keyframes whatsapp-animation {
	from {
    	opacity: 0%;
    }

    to {
        opacity: 100%
    }
}
@media screen and (max-width: 545px) {
	.float-button span {
    	display: none;
    }

    .float-button {
    	bottom: 85px;
        right: 10px;
        /* width: 20px; */
       	border-radius: 20px 20px 5px 20px;
    }

    .fa-whatsapp {
    	font-size: 22px !important;
        padding: 4px;
    }
}



/************************************************
Services Home Page
************************************************/

.service-block-two .item-sec {
    background: url(../img/hme-spec-off-bg.png) no-repeat center top;
    position: relative;
    display: inline-block;
    vertical-align: top;
    height: 466px;
    /* margin: 0 -10px; */
    width: 100%;
    padding: 0px 0px;
}
.service-block-two .service-img {
    position: absolute;
    content: '';
    width: 235px;
    height: 200px;
    left: 16px;
    right: 0px;
    margin: 0 auto;
    top: -0px;
    background: url(../img/hme-spec-hip.png) no-repeat center top;
    background-size: cover;
}
.service-block-two .service-img img {
    width: 74%;
    margin-left: 12px;
    margin-top: 12px;
}
.rounded-circle {
    border-radius: 50% !important;
}
.service-block-two .service-wrap {
    margin-top: 220px;
    text-align: center;
    color: white;
	padding:0 15px;
}
.text-white {
    color: #fff !important;
}
.text-blue {
    color: #2b4685;
}

.service-block-two .service-wrap h3{
	font-family:"Yeseva One", serif;
	letter-spacing:0.5px;
	font-size:18px;
	font-weight:500;
	color:#f4fff6;
}
.service-block-two .service-wrap p{
	
	font-family: "Poppins", sans-serif;
	font-size:14px;
	line-height:25px;
	color:#fdfdfd;
	width: 260px;
    margin: 0 auto;
}
.height_1{height:165px;}
.height_2{height:165px;}
.service-block-two .theme_btn {
    background-color: transparent;
    color: #653573;
    font-size: 17px;
    margin-top: 12px;
    font-weight: 500;
    position: absolute;
    left: 30%;
	text-align: center;
	/* background: #F6834D; */
	padding: 5px 20px 5px 12px;
	display: inline-block;
	/* z-index:9; */
	font-family:"Yeseva One", serif;
	/* letter-spacing:1px; */
}
.service-block-two .theme_btn:hover,
.service-block-two .theme_btn:focus{
	background:unset;
	border:unset;
}
.service-block-two .theme_btn.active{
	background:unset;
	border:unset;
}


/******************************************************
JOURNEY OF PREGNANCY
******************************************************/

.ps-timeline-sec {
    position: relative;
    /* background: #fadeed; */
    /* background: #eaf7f6; */
    background: #f9f9f9;
    display: inline-block;
    width: 100%;
	padding:50px 0;
}
.ps-timeline-sec .title {
    margin-bottom: 75px;
	display:inline-block;
	width:100%;
}
.ps-timeline-sec .title h2 {
    font-size: 30px;
	font-family:"Yeseva One", serif;
	letter-spacing:1px;
	text-transform: capitalize;
	color:#653573;
	font-weight:500;
}
.ps-timeline-sec .container-fluid1 {
    position: relative;
}
.ps-timeline-sec .container-fluid1 ol.ps-timeline {
    margin: 284px 0;
    padding: 0;
    border-top: 2px solid #653573;
    list-style: none;
}
.ps-timeline-sec .container-fluid1 ol:before {
    background: #653573;
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 100%;
    position: absolute;
    left: 8px;
    top: -4px;
}
.ps-timeline-sec .container-fluid1 ol.ps-timeline li {
    float: left;
    width: 16%;
    padding-top: 30px;
    position: relative;
}
.ps-timeline-sec .container-fluid1 ol.ps-timeline li .img-handler-top {
    width: 67%;
    margin-left: 35px;
}
.ps-timeline-sec .container-fluid1 ol.ps-timeline li .img-handler-top {
    position: absolute;
    bottom: 0;
    margin-bottom: 130px;
    width: 100%;
}
.ps-timeline-sec .container-fluid1 ol.ps-timeline li .img-handler-top img {
    display: table;
    margin: 0 auto;
}

.ps-timeline-sec .container-fluid1 ol.ps-timeline li .ps-bot {
    position: absolute;
    margin-top: 35px;
}
.ps-timeline-sec .container-fluid1 ol.ps-timeline li p {
    text-align: center;
    width: 80%;
    margin: 0 auto;
}
.ps-timeline-sec .container-fluid1 ol.ps-timeline li span {
    width: 55px;
    height: 55px;
    margin-left: -25px;
    background: #fff;
    border: 4px solid #348e80;
    border-radius: 50%;
    box-shadow: 0 0 0 0px #fff;
    text-align: center;
    /* line-height: 50px -10; */
    line-height: 50px;
    color: #df8625;
    font-size: 2em;
    font-style: normal;
    position: absolute;
    top: -26px;
    left: 50%;
}
.ps-timeline-sec .container-fluid1 ol.ps-timeline li span.ps-sp-top:before {
    content: '';
    color: #653573;
    width: 2px;
    height: 50px;
    background: #653573;
    position: absolute;
    top: -50px;
    left: 50%;
}
.ps-timeline-sec .container-fluid1 ol.ps-timeline li span.ps-sp-top:after {
    content: '';
    color: #653573;
    width: 8px;
    height: 8px;
    background: #653573;
    position: absolute;
    bottom: 90px;
    left: 44%;
    border-radius: 100%;
}
.ps-timeline-sec .container-fluid1 ol.ps-timeline li .img-handler-bot {
    margin-top: 56px;
    width: 67%;
    margin-left: 27px;
}
.ps-timeline-sec .container-fluid1 ol.ps-timeline li .img-handler-bot {
    position: absolute;
    margin-top: 60px;
    width: 100%;
}
.ps-timeline-sec .container-fluid1 ol.ps-timeline li .img-handler-bot img {
    display: table;
    margin: 0 auto;
}
.ps-timeline-sec .container-fluid1 ol.ps-timeline li .ps-top {
    position: absolute;
    bottom: 0;
    margin-bottom: 100px;
}

.ps-timeline-sec .container-fluid1 ol.ps-timeline li p {
    text-align: center;
    width: 80%;
    margin: 0 auto;
}
.ps-timeline-sec .container-fluid1 ol.ps-timeline li span {
    width: 55px;
    height: 55px;
    margin-left: -25px;
    background: #fff;
    border: 4px solid #653573;
    border-radius: 50%;
    box-shadow: 0 0 0 0px #fff;
    text-align: center;
    line-height: 50px;
    color: #653573;
    font-size: 2em;
    font-style: normal;
    position: absolute;
    top: -26px;
    left: 50%;
}
.ps-timeline-sec .container-fluid1 ol.ps-timeline li span.ps-sp-bot:before {
    content: '';
    color: #653573;
    width: 2px;
    height: 50px;
    background: #653573;
    position: absolute;
    bottom: -50px;
    left: 50%;
}
.ps-timeline-sec .container-fluid1 ol.ps-timeline li span.ps-sp-bot:after {
    content: '';
    color: #653573;
    width: 8px;
    height: 8px;
    background: #653573;
    position: absolute;
    top: 90px;
    left: 44%;
    border-radius: 100%;
}
.ps-timeline-sec .container-fluid1 ol:after {
    background: #653573;
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 100%;
    position: absolute;
    right: 8px;
    top: -4px;
}



/********************************************
why_choose
********************************************/

.why_choose{
	/* background: #f5f5f5; */
    /* padding: 31px 20px; */
    /* box-shadow: 0px 5px 18px 0px rgba(0, 0, 0, 0.27); */
	text-align:center;
}
.why_choose img{width:80px;}
.why_choose h1{
	position: relative;
    text-transform: capitalize;
    color: #653573;
    font-size: 28px;
    margin-top: 10px;
    margin-bottom: 10px;
    line-height: 32px;
    font-weight: 500;
    font-family: "Yeseva One", serif;
    letter-spacing: 0.7px;
}
.why_choose p{
	font-size: 16px;
    line-height: 26px;
    color: #3a3a3a;
    font-weight: 500;
    /* text-align: justify; */
    font-family: "Poppins", sans-serif;
}


.home_gall{
	padding:50px 0 0;
	background:#fdf7ff;
}
.home_gall .sec-title{
	margin-bottom:0px;
}



.mob-slide{display:none;}




.lamp {
    padding: 30px 0 60px 0;
}
.patie {
    padding: 20px;
    box-shadow: 0 0 3px #ddd;
    border-radius: 20px;
    background: #f5eff2;
    margin-top: 30px;
}
.patie h4 {
    font-size: 20px;
    color: #272727;
    font-weight: 500;
    margin-bottom: 5px;
    text-transform: capitalize;
}
.patie h4 img {
    padding-right: 10px;
    width: 50px;
}
.indost i {
    color: orange;
}
.patie p {
    font-size: 16px;
    padding-top: 10px;
    color: #000;
}
.reui {
    padding-top: 40px;
    text-align: center;
}
.reviter {
    border-radius: 0 30px 30px 30px;
    padding: 12px 30px;
    font-size: 18px;
}
.thm-btn {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    -webkit-appearance: none;
    border: none;
    outline: none !important;
    background-color: #0f70b7;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    text-transform: capitalize;
    font-family: var(--uterpy-font);
    transition: all 0.3s linear;
    z-index: 1;
    padding: 5px 15px;
    overflow: hidden;
    border-radius: 5px;
}
.reui i {
    padding-left: 12px;
}

.columns_2{columns:2;width:500px!important;}