/* COSO HTML Template */

/************ TABLE OF CONTENTS ***************
1. Fonts
2. Reset
3. Global
4. Main Header / Header Two
5. Banner Section
6. Branding Section
7. Video Section
8. Business Section / Two
9. Strategy Section
10. Testimonial Section
11. News Section
12. Clients Section
13. Main Footer Section
14. Slider Section
15. Management Section
16. Page Title Section
17. About Section
18. Team Section
19. Service Detail Section
20. Portfolio Section
21. Portfolio Detail Section
22. Not Found
23. Blog Section
24. Blog Sidebar Section
25. Comment Form Section
26. Contact Form Section
27. Map Section

**********************************************/

/* font-family: 'Poppins', sans-serif; */

@import url('font-awesome.css');
@import url('flaticon.css');
@import url('animate.css');
@import url('owl.css');
@import url('jquery-ui.css');
@import url('custom-animate.css');
@import url('jquery.fancybox.min.css');
@import url('jquery.mCustomScrollbar.min.css');

/*** 

====================================================================
	Reset
====================================================================

 ***/
 
* {
	margin:0px;
	padding:0px;
	border:none;
	outline:none;
}

@font-face {
  font-family: "ProximaNova-Regular";
  src: url("../fonts/ProximaNova-Regular.eot");
  src: url("../fonts/ProximaNova-Regular.eot?#iefix") format("embedded-opentype"),
       url("../fonts/ProximaNova-Regular.woff") format("woff"),
       url("../fonts/ProximaNova-Regular.ttf") format("truetype"),
       url("../fonts/ProximaNova-Regular.svg#ProximaNova-Regular") format("svg");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "proximanova-semibold-webfont";
  src: url("../fonts/proximanova-semibold-webfont.eot");
  src: url("../fonts/proximanova-semibold-webfont.eot?#iefix") format("embedded-opentype"),
       url("../fonts/proximanova-semibold-webfont.woff") format("woff"),
       url("../fonts/proximanova-semibold-webfont.ttf") format("truetype"),
       url("../fonts/proximanova-semibold-webfont.svg#proximanova-semibold-webfont") format("svg");
  font-weight: 600;
  font-style: normal;
}

/*** 

====================================================================
	Global Settings
====================================================================

 ***/

body {
	font-family: 'Poppins', sans-serif;
	font-size: 18.00px;
	color:#777777;
	line-height:1.7em;
	font-weight:400;
	background:#ffffff;
	-webkit-font-smoothing: antialiased;
	-moz-font-smoothing: antialiased;
}

.bordered-layout .page-wrapper{
	padding:0px 50px 0px;
}

a{
	text-decoration:none;
	cursor:pointer;
	color:#ff799e;
}

.pull-left{
	float:left;
}

.pull-right{
	float:right;
}

button,
a:hover,a:focus,a:visited{
	text-decoration:none;
	outline:none !important;
}

h1,h2,h3,h4,h5,h6 {
	position:relative;
	font-weight:normal;
	margin:0px;
	background:none;
	line-height:1.6em;
	font-family: 'Poppins', sans-serif;
}

/* Typography */

h1{
	font-size: 57.00px;
}

h2{
	font-size: 48.00px;
}

h3{
	font-size: 36.00px;
}

h4{
	font-size: 28.00px;
}

h5{
	font-size: 21.00px;
}

h6{
	font-size: 23.00px;
}

input,button,select,textarea{
	
}

textarea{
	overflow:hidden;
}

p{
	position:relative;
	line-height:1.8em;	
}

.auto-container{
	position:static;
	max-width:1200px;
	padding:0px 15px;
	margin:0 auto;
}

.medium-container{
	max-width:850px;
}

.page-wrapper{
	position:relative;
	margin:0 auto;
	width:100%;
	min-width:300px;
}

ul,li{
	list-style:none;
	padding:0px;
	margin:0px;	
}

img{
	display:inline-block;
	max-width:100%;
}

.theme-btn{
	display:inline-block;
	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;
}

.centered{
	text-align:center;	
}

/*Btn Style One*/

.btn-style-one{
	position: relative;
	display: inline-block;
	font-size: 18.00px;
	line-height: 30px;
	color: #242425;
	padding: 11px 40px;
	font-weight: 400;
	overflow: hidden;
	border-radius: 3px;
	overflow:hidden;
	background-color: #ffffff;
	text-transform: capitalize;
	border:1px solid #e9e9e9;
}

.btn-style-one:before{
	position: absolute;
	content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0;
    background-color: #ff799e;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
    -webkit-transform: scale(0.2, 1);
    transform: scale(0.2, 1);
}

.btn-style-one .txt{
	position:relative;
	z-index:1;
}

.btn-style-one:hover::before{
    opacity: 1;
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
}

.btn-style-one:hover{
	color: #ffffff;
	border-color:#ff799e;
}

/* Btn Style Two */

.btn-style-two{
	position: relative;
	display: inline-block;
	font-size: 18.00px;
	line-height: 30px;
	color: #ffffff;
	padding: 15px 40px;
	font-weight: 500;
	overflow: hidden;
	border-radius: 3px;
	overflow:hidden;
	background-color: #15192b;
	text-transform: capitalize;
	
}

.btn-style-two:before{
	position: absolute;
	content: '';
    top: 0;
    left: 0;
    width: 30%;
    height: 100%;
    z-index: 1;
	border-radius:0px 3px 3px 0px;
    background-color: #ff799e;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}

.btn-style-two .txt{
	position:relative;
	z-index:1;
}

.btn-style-two:hover::before{
    opacity: 1;
    width:100%;
}

.btn-style-two:hover{
	color: #ffffff;
}

/* Btn Style Three */

.btn-style-three{
	position: relative;
	display: inline-block;
	font-size: 18.00px;
	line-height: 30px;
	color: #ffffff;
	padding: 16px 46px;
	font-weight: 500;
	overflow: hidden;
	border-radius: 5px;
	overflow:hidden;
	text-transform: capitalize;
	background-image: -ms-linear-gradient(left, #FF9194 0%, #ff799e 100%);
	background-image: -moz-linear-gradient(left, #FF9194 0%, #ff799e 100%);
	background-image: -o-linear-gradient(left, #FF9194 0%, #ff799e 100%);
	background-image: -webkit-gradient(linear, left top, right top, color-stop(0, #FF9194), color-stop(100, #ff799e));
	background-image: -webkit-linear-gradient(left, #FF9194 0%, #ff799e 100%);
	background-image: linear-gradient(to right, #FF9194 0%, #ff799e 100%);
}

.btn-style-three:before{
	position: absolute;
	content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
    -webkit-transform: scale(0.2, 1);
    transform: scale(0.2, 1);
	background-image: -ms-linear-gradient(right, #FF9194 0%, #FF799E 100%);
	background-image: -moz-linear-gradient(right, #FF9194 0%, #FF799E 100%);
	background-image: -o-linear-gradient(right, #FF9194 0%, #FF799E 100%);
	background-image: -webkit-gradient(linear, right top, left top, color-stop(0, #FF9194), color-stop(100, #FF799E));
	background-image: -webkit-linear-gradient(right, #FF9194 0%, #FF799E 100%);
	background-image: linear-gradient(to left, #FF9194 0%, #FF799E 100%);
}

.btn-style-three .txt{
	position:relative;
	z-index:1;
}

.btn-style-three:hover::before{
    opacity: 1;
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
}

.btn-style-three:hover{
	color: #ffffff;
}

/* Btn Style Four */

.btn-style-four{
	position: relative;
	display: inline-block;
	font-size: 18.00px;
	line-height: 30px;
	color: #ffffff;
	padding: 15px 46px;
	font-weight: 500;
	overflow: hidden;
	border-radius: 5px;
	overflow:hidden;
	background-color: #49bc60;
	text-transform: capitalize;
}

.btn-style-four:before{
	position: absolute;
	content: '';
    top: -3px;
    left: -6px;
    right:-7px;
	bottom:-2px;
    z-index: 1;
    opacity: 0;
    background-color: #222222;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
    -webkit-transform: scale(0.2, 1);
    transform: scale(0.2, 1);
}

.btn-style-four .txt{
	position:relative;
	z-index:1;
}

.btn-style-four:hover::before{
    opacity: 1;
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
}

.btn-style-four:hover{
	color: #ffffff;
}

/* Btn Style Five */

.btn-style-five{
	position: relative;
	display: inline-block;
	font-size: 18.00px;
	line-height: 30px;
	color: #ffffff;
	padding: 12px 40px;
	font-weight: 500;
	overflow: hidden;
	border-radius: 3px;
	overflow:hidden;
	background-color: #ff799e;
	text-transform: capitalize;
}

.btn-style-five:before{
	position: absolute;
	content: '';
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    z-index: 1;
	border-radius:0px 3px 3px 0px;
    background-color: #15192b;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}

.btn-style-five .txt{
	position:relative;
	z-index:1;
}

.btn-style-five:hover::before{
    opacity: 1;
    width:100%;
}

.btn-style-five:hover{
	color: #ffffff;
}

/* Btn Style Six */

.btn-style-six{
	position: relative;
	display: inline-block;
	font-size: 18.00px;
	line-height: 30px;
	color: #ffffff;
	padding: 11px 40px;
	font-weight: 400;
	overflow: hidden;
	border-radius: 3px;
	overflow:hidden;
	background: none;
	text-transform: capitalize;
	border:1px solid #e9e9e9;
}

.btn-style-six:before{
	position: absolute;
	content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0;
    background-color: #242425;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
    -webkit-transform: scale(0.2, 1);
    transform: scale(0.2, 1);
}

.btn-style-six .txt{
	position:relative;
	z-index:1;
}

.btn-style-six:hover::before{
    opacity: 1;
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
}

.btn-style-six:hover{
	color: #ffffff;
	border-color:#242425;
}



/*Social Icon One*/

.social-icon-one{
	position:relative;
}

.social-icon-one li{
	position:relative;
	margin:0px 6px;
	display:inline-block;
}

.social-icon-one li a{
	position:relative;
	font-size: 18.00px;
	color:#ffffff;
	font-weight:400;
	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;
}

.social-icon-one li a:hover{
	color:#222222;
}

.theme_color{
	color:#ff799e;
}

.preloader{ position:fixed; left:0px; top:0px; width:100%; height:100%; z-index:999999; background-color:#ffffff; background-position:center center; background-repeat:no-repeat; background-image:url(../images/icons/preloader.svg); background-size:90px; display:none;}

img{
	display:inline-block;
	max-width:100%;
	height:auto;	
}

/*** 

====================================================================
	Scroll To Top style
====================================================================

***/

.scroll-to-top{
	position:fixed;
	bottom:15px;
	right:15px;
	width:60px;
	height:60px;
	color:#ffffff;
	font-size: 28.00px;
	text-transform:uppercase;
	line-height:60px;
	text-align:center;
	z-index:99999;
	cursor:pointer;
	background:#0a0a0a;
	display:none;
	-webkit-transition:all 300ms ease;
	-ms-transition:all 300ms ease;
	-o-transition:all 300ms ease;
	-moz-transition:all 300ms ease;
	transition:all 300ms ease;		
}

.scroll-to-top:hover{
	color:#ffffff;
	background:#ff799e;
}

/*** 

====================================================================
	Section Title
====================================================================

***/

.sec-title{
	position:relative;
	z-index:1;
	margin-bottom: 59.00px;
}

.sec-title .title{
    position: relative;
    color: #ff799e;
    font-size: 23.00px;
    display: block;
	font-weight:500;
}

.sec-title h2{
	position:relative;
	color:#15192b;
	font-weight:600;
	line-height:1.2em;
	margin-top: 17.00px;
}

.sec-title .text{
	position:relative;
	font-size: 18.00px;
	line-height:1.9em;
	color:#15192b;
	opacity:0.90;
	margin-top: 17.00px;
}

.sec-title.centered{
	text-align: center !important;
}

.sec-title.light h2{
	color:#ffffff;
}

/* List Style One */

.list-style-one{
	position:relative;
	z-index:1;
}

.list-style-one li{
	position:relative;
	color:#ffffff;
	font-size: 18.00px;
	font-weight:400;
	margin-bottom: 32.00px;
	padding-left:35px;
	line-height:1.5em;
}

.list-style-one li strong{
	position:relative;
	color:#000000;
	font-size: 18.00px;
	font-weight:600;
	display:block;
	margin-bottom: 5.00px;
}

.list-style-one li .icon{
	position:absolute;
	left:0px;
	top:2px;
	color:#ff799e;
	font-size: 23.00px;
}

/*** 

====================================================================
	Main Header style
====================================================================

***/

.main-header{
	position:relative;
	z-index:999;
	width:100%;
	-ms-animation-duration: 500ms;
    -moz-animation-duration: 500ms;
    -op-animation-duration: 500ms;
    -webkit-animation-duration: 500ms;
    animation-duration: 500ms;
}

.main-header .main-box{
	position:relative;
	padding:0px 0px;
	left:0px;
	top:0px;
	width:100%;
	background:none;
	-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 .main-box .outer-container{
	position:relative;
	padding:0px 40px;
}

.main-header .main-box .logo-box{
	position:relative;
	float:left;
	left:0px;
	z-index:10;
	padding:30px 0px;
}

.main-header .main-box .logo-box .logo img{
	display:inline-block;
	max-width:100%;
	-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 .header-upper{
	position:relative;
	z-index:1;
}

.main-header .header-upper .outer-box{
	position:relative;
	float:right;
	padding-top: 32.00px;
	padding-left:40px;
	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-header .header-upper .search-box-btn{
	position:relative;
	float:left;
	top:10px;
	display:block;
	font-size: 23.00px;
	color:#ffffff;
	line-height:26px;
	cursor:pointer;
	background:none;
	margin-right:25px;
	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-header .header-upper .outer-box .nav-box{
	position:relative;
	margin-left:73px;
}

.main-header .header-upper .outer-box .nav-box li{
	position:relative;
	margin-left:2px;
	display:inline-block;
}

.main-header .header-upper .outer-box .nav-box li:first-child a{
	padding:0px;
	margin:13px 0px;
	margin-right:30px;
}

.main-header .header-upper .outer-box .nav-box li a{
	position:relative;
	color:#ffffff;
	font-size: 18.00px;
	padding:13px 32px;
	border-radius:5px;
	display:inline-block;
	text-transform:uppercase;
	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-header .header-upper .outer-box .nav-box li:last-child a{
	background-color:#ff9094;
}

.main-header .header-upper .outer-box .nav-toggler{
	position:relative;
	font-size: 30.00px;
	color:#ff9600;
	cursor:pointer;
	display:inline-block;
}

.main-header .header-upper .outer-box .language-list{
	position:relative;
	margin-left:25px;
	top:-5px;
	display:inline-block;
}

.main-header .header-upper .outer-box .language-list li{
	position:relative;
	padding-right:15px;
	margin-right:5px;
	display:inline-block;
}

.main-header .header-upper .outer-box .language-list li:last-child{
	margin-right:0px;
	padding-right:0px;
}

.main-header .header-upper .outer-box .language-list li:last-child::before{
	display:none;
}

.main-header .header-upper .outer-box .language-list li:before{
	position:absolute;
	content:'/';
	right:0px;
	top:0px;
	color:#ffffff;
}

.main-header .header-upper .outer-box .language-list li a{
	position:relative;
	color:#ffffff;
	font-size: 18.00px;
}

/*Sticky Header*/

.sticky-header{
	position:fixed;
	opacity:0;
	visibility:hidden;
	left:0px;
	top:0px;
	width:100%;
	padding:0px 0px;
	background:#222222;
	z-index:0;
	transition:all 500ms ease;
	-moz-transition:all 500ms ease;
	-webkit-transition:all 500ms ease;
	-ms-transition:all 500ms ease;
	-o-transition:all 500ms ease;
}

.sticky-header .logo{
	padding:8px 0px 8px;
}

.fixed-header .sticky-header{
	z-index:999;
	opacity:1;
	visibility:visible;
	-ms-animation-name: fadeInDown;
	-moz-animation-name: fadeInDown;
	-op-animation-name: fadeInDown;
	-webkit-animation-name: fadeInDown;
	animation-name: fadeInDown;
	-ms-animation-duration: 500ms;
	-moz-animation-duration: 500ms;
	-op-animation-duration: 500ms;
	-webkit-animation-duration: 500ms;
	animation-duration: 500ms;
	-ms-animation-timing-function: linear;
	-moz-animation-timing-function: linear;
	-op-animation-timing-function: linear;
	-webkit-animation-timing-function: linear;
	animation-timing-function: linear;
	-ms-animation-iteration-count: 1;
	-moz-animation-iteration-count: 1;
	-op-animation-iteration-count: 1;
	-webkit-animation-iteration-count: 1;
	animation-iteration-count: 1;	
}

.sticky-header .main-menu .navigation > li > a{
	padding:19px 0px  !important;
	color:#ffffff !important;
}

.sticky-header .main-menu .navigation > li > a:after{
	display:none;
}

.main-header .nav-outer{
	position:static;
	float: right;
	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-header .header-upper .logo-box{
	position: relative;
	z-index:12;
	padding: 32px 0px;
	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-header .header-upper .logo-box .sidebar-btn{
	position:relative;
	float:left;
	color:#000000;
	cursor:pointer;
	font-size: 21.00px;
	padding:13px 0px;
	margin-right:22px;
}

.main-header .header-upper .logo-box .logo{
	position:relative;
	float:left;
}

.main-header .header-lower{
	position:relative;
	background-color:rgba(0,0,0,0.55);
}

.main-menu{
	position:static;
	float:left;
	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 .navbar-collapse{
	padding:0px;
	float: left;
}

.main-menu .navigation{
	position:static;
	margin:0px;
}

.main-menu .navigation > li{
	position:relative;
	float:left;
	margin-right:35px;
	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:last-child{
	margin-right:0px;
}

.main-header .header-upper .upper-right{
	position:relative;
}

.main-header .header-upper .info-box{
	position:relative;
	color:#333333;
	font-weight:600;
	padding:22px 0px;
	padding-left:30px;
	padding-right:28px;
	margin-right:30px;
	display:inline-block;
	border-right:1px solid #ecebeb;
}

.main-header .header-upper .info-box .icon-box{
	position:absolute;
	left:0px;
	top:24px;
	color:#091394;
	font-size: 21.00px;
	line-height:1em;
}

.main-header .header-upper .social-box{
	position:relative;
	float:right;
	padding:21px 0px;
}

.main-menu .navigation > li > a{
	position:relative;
	display:block;
	color:#15192b;
	text-align:center;
	line-height:30px;
	text-transform:capitalize;
	letter-spacing:0px;
	opacity:1;
	font-weight:400;
	padding:39px 0px;
	font-size: 18.00px;
	transition:all 500ms ease;
	-moz-transition:all 500ms ease;
	-webkit-transition:all 500ms ease;
	-ms-transition:all 500ms ease;
	-o-transition:all 500ms ease;
	font-family: 'Poppins', sans-serif;
}

.main-menu .navigation > li:hover > a::after,
.main-menu .navigation > li.current > a::after{
	width:22px;
}

.main-menu .navigation > li:hover > a,
.main-menu .navigation > li.current > a,
.main-header.light-version .main-menu .navigation > li:hover > a,
.main-header.light-version .main-menu .navigation > li.current > a{
	opacity:1;
}

.main-menu .navigation > li > ul{
	position:absolute;
	left:0px;
	top:100%;
	width:230px;
	z-index:100;
	display:none;
	opacity: 0;
	text-align:left;
    visibility: hidden;
    transition: all 900ms ease;
    -moz-transition: all 900ms ease;
    -webkit-transition: all 900ms ease;
    -ms-transition: all 900ms ease;
    -o-transition: all 900ms ease;
	padding: 0px 0px;
	background-color: #ffffff;
	box-shadow: 0px 0px 10px rgba(0,0,0,0.10);
}

.main-menu .navigation > li > ul:before{
	position:absolute;
	content:'';
	left:0px;
	top:-30px;
	width:100%;
	height:30px;
	display:block;
}

.main-menu .navigation > li > ul.from-right{
	left:auto;
	right:0px;	
}

.main-menu .navigation > li > ul > li{
	position:relative;
	width:100%;
	border-bottom: 1px solid #f4f2f2;
}

.main-menu .navigation > li > ul > li:last-child{
	border-bottom:none;
}

.main-menu .navigation > li > ul > li > a{
	position:relative;
	display:block;
	padding:12px 18px;
	line-height:24px;
	font-weight:500;
	font-size: 19.00px;
	text-transform:capitalize;
	color:#222222;
	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{
	color:#ffffff;
	padding-left:30px;
	background:#ff799e;
}

.main-menu .navigation > li > ul > li.dropdown > a:after{
	font-family: 'FontAwesome';
	content: "\f105";
	position:absolute;
	right:15px;
	top:14px;
	width:10px;
	height:20px;
	display:block;
	color:#ffffff;
	line-height:20px;
	font-size: 18.00px;
	font-weight:normal;
	text-align:center;
	z-index:5;	
}

.main-menu .navigation > li > ul > li.dropdown:hover > a:after{
	color:#ffffff;
}

.main-menu .navigation > li > ul > li > ul{
	position:absolute;
	left:100%;
	top:100%;
	width:230px;
	z-index:100;
	display:none;
	text-align:left;
	transition: all 900ms ease;
    -moz-transition: all 900ms ease;
    -webkit-transition: all 900ms ease;
    -ms-transition: all 900ms ease;
    -o-transition: all 900ms ease;
    padding: 0px 0px;
	background-color: #ffffff;
	-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.from-right{
	left:auto;
	right:0px;	
}

.main-menu .navigation > li > ul > li > ul > li{
	position:relative;
	width:100%;
	border-bottom: 1px solid #f4f2f2;
}

.main-menu .navigation > li > ul > li > ul > li:last-child{
	border-bottom:none;	
}

.main-menu .navigation > li > ul > li > ul > li > a{
	position:relative;
	display:block;
	padding:12px 18px;
	line-height:24px;
	font-weight:500;
	font-size: 19.00px;
	text-transform:capitalize;
	color:#222222;
	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:hover > a{
	color:#ffffff;
	padding-left:30px;
	background:#ff799e;
}

.main-menu .navigation > li > ul > li > ul > li.dropdown > a:after{
	font-family: 'FontAwesome';
	content: "\f105";
	position:absolute;
	right:10px;
	top:11px;
	width:10px;
	height:20px;
	display:block;
	color:#272727;
	line-height:20px;
	font-size: 18.00px;
	font-weight:normal;
	text-align:center;
	z-index:5;	
}

.main-menu .navigation > li > ul > li > ul > li.dropdown:hover > a:after{
	color:#ffffff;	
}

.main-menu .navigation > li.dropdown:hover > ul{
	visibility:visible;
	opacity:1;
	border-top:0px !important;
	-moz-transform: rotateX(0deg);
	-webkit-transform: rotateX(0deg);
	-ms-transform: rotateX(0deg);
	-o-transform: rotateX(0deg);
    transform: rotateX(0deg);
}

.main-menu .navigation li > ul > li.dropdown:hover > ul{
	visibility:visible;
	opacity:1;
	top:0;
	-moz-transform: rotateX(0deg);
	-webkit-transform: rotateX(0deg);
	-ms-transform: rotateX(0deg);
	-o-transform: rotateX(0deg);
	transform: rotateX(0deg);
	transition:all 300ms ease;
	-moz-transition:all 300ms ease;
	-webkit-transition:all 500ms ease;
	-ms-transition:all 300ms ease;
	-o-transition:all 300ms ease;	
}

.main-menu .navbar-collapse > ul li.dropdown .dropdown-btn{
	position:absolute;
	right:10px;
	top:6px;
	width:30px;
	height:30px;
	text-align:center;
	color:#ffffff;
	line-height:28px;
	border:1px solid #ffffff;
	background-size:20px;
	cursor:pointer;
	z-index:5;
	display:none;
}

.main-header .header-upper .outer-box .btn-box{
	position:relative;
	float:left;
}

.main-header.fixed-header{
	position: fixed;
    z-index: 9999;
    width: 100%;
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
	background-color:#ffffff;
	border-bottom:1px solid rgba(0,0,0,0.03);
}

.main-header.fixed-header .header-upper .logo-box{
	padding:16px 0px;
}

.main-header.fixed-header .nav-outer{
	padding-top: 7.00px;
}

.main-header.fixed-header .main-menu .navigation > li > a{
	padding:26px 0px;
}

.main-header.fixed-header .header-upper .outer-box{
	padding-top: 24.00px;
}

.main-header .header-upper .outer-box .login-box{
	position:relative;
	width:52px;
	height:52px;
	float:left;
	color:#ffffff;
	font-size: 23.00px;
	cursor:pointer;
	line-height:50px;
	text-align:center;
	border-radius:50px;
	display:inline-block;
	border:1px solid rgba(255,255,255,0.50);
}

.main-header .header-upper .outer-box .sidebar-btn{
	position:relative;
	width:52px;
	height:52px;
	float:left;
	color:#ffffff;
	font-size: 23.00px;
	margin-left:14px;
	cursor:pointer;
	line-height:52px;
	text-align:center;
	border-radius:50px;
	background-color:#05db56;
}

.header-style-two{
	position:absolute;
}

.header-style-two .auto-container{
	max-width:1600px;
	position:relative;
}

.header-style-two .nav-outer{
	
}

.header-style-two .header-upper .logo-box{
	padding-top: 31.00px;
}

.header-style-two .main-menu .navigation > li > a{
	padding:35px 0px;
}

.header-style-two .header-upper .outer-box{
	
}

.header-style-two .header-upper .outer-box .theme-btn{
	border:none;
}

/*** 

====================================================================
	Banner Section
====================================================================

***/

.banner-section{
	position:relative;
	padding-top: 144.00px;
	overflow:hidden;
	padding-bottom: 266.00px;
	background-color:#fef6f4;
}

.banner-section .auto-container{
	position:relative;
}

.banner-section .journey-box{
	position:absolute;
	right:120px;
	bottom:20px;
	width:100%;
	z-index:1;
	max-width:520px;
	padding:50px 50px;
	background-color:#ff799e;
	background-position:right bottom;
	background-repeat:no-repeat;
}

.banner-section .journey-box h2{
	position:relative;
	color:#ffffff;
	font-size: 42.00px;
	font-weight:700;
	line-height:1.2em;
	margin-bottom: 39.00px;
}

.banner-section .journey-box .text{
	position:relative;
	color:#ffffff;
	font-size: 18.00px;
	line-height:1.8em;
	margin-bottom: 32.00px;
}

.banner-section .journey-box .go-btn{
	position:relative;
	padding:13px 30px;
	border-radius:4px;
	color:#15192b;
	font-size: 18.00px;
	font-weight:500;
	width:119px;
	background-color:#ffffff;
	transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
}

.banner-section .journey-box .go-btn .arrow{
	position:relative;
	margin-left:5px;
	transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
}

.banner-section .journey-box .go-btn:hover{
	padding-left:60px;
	padding-right:10px;
}

.banner-section .journey-box .go-btn:hover .arrow{
	margin-left:-74px;
}

.banner-section .brand{
	position:absolute;
	left:190px;
	bottom:50px;
	color:#ffffff;
	font-size: 204.00px;
	font-weight:700;
	line-height:1.2em;
}

.banner-section .brand span{
	transform:rotateZ(180deg);
	position:relative;
	top:27px;
	display:inline-block;
}

.banner-section .circle-layer-one{
	position:absolute;
	right:-180px;
	top:150px;
	width:410px;
	height:410px;
	border-radius:50%;
	background-color:#ffffff;
}

.banner-section .circle-layer-two{
	position:absolute;
	right:26%;
	bottom:30px;
	width:340px;
	height:340px;
	border-radius:50%;
	background-color:#ffeaf0;
}

.banner-section .patern-layer-one{
	position:absolute;
	left:0px;
	bottom:0px;
	width:100%;
	height:96px;
	z-index:1;
	background-repeat:no-repeat;
}

.banner-section .patern-layer-two{
	position:absolute;
	left:0px;
	top:10%;
	width:292px;
	height:584px;
	background-repeat:no-repeat;
}

.banner-section .patern-layer-three{
	position:absolute;
	right:10%;
	top:0%;
	width:643px;
	height:304px;
	background-repeat:no-repeat;
}

.banner-section .icons{
	position:absolute;
	left:0px;
	top:0px;
	right:0px;
	bottom:0px;
}

.banner-section .icons .icon-one{
	position:absolute;
	left:10% !important;
	top:17% !important;
	width: 85px;
    height: 96px;
    display: inline-block;
    background-repeat: no-repeat;
}

.banner-section .icons .icon-two{
	position:absolute;
	top:auto !important;
	left:30% !important;
	bottom:8% !important;
	width: 31px;
    height: 28px;
    display: inline-block;
    background-repeat: no-repeat;
}

.banner-section .icons .icon-three{
	position:absolute;
	left:auto !important;
	right:15% !important;
	top:12% !important;
	width: 39px;
    height: 38px;
    display: inline-block;
    background-repeat: no-repeat;
}

.banner-section .icons .icon-four{
	position:absolute;
	left:auto !important;
	right:20% !important;
	top:35% !important;
	width: 39px;
    height: 38px;
    display: inline-block;
    background-repeat: no-repeat;
}

.banner-section .icons .icon-five{
	position:absolute;
	left:13% !important;
	right:auto !important;
	bottom:32% !important;
	top:auto !important;
	width: 26px;
    height: 26px;
	border-radius:50px;
    display: inline-block;
	border:4px solid #ffffff;
    background-repeat: no-repeat;
}

.banner-section .image-column{
	position:relative;
}

.banner-section .image-column .inner-column{
	position:relative;
}

.banner-section .image-column .image{
	position:relative;
}

.banner-section .image-column .image img{
	position: relative;
	max-width:inherit;
}

.banner-section .content-column{
	position:relative;
	z-index:1;
}

.banner-section .content-column .inner-column{
	position:relative;
	padding-top: 31.00px;
}

.banner-section .content-column .big-text{
	position:absolute;
	left:0px;
	top:-50px;
	opacity:0.1;
	color:#15192b;
	font-size: 204.00px;
	font-weight:700;
	line-height:1em;
	letter-spacing:-2px;
	text-transform:uppercase;
}

.banner-section .content-column h1{
	position:relative;
	color:#15192b;
	font-weight:700;
	line-height:1.2em;
	margin-bottom: 40.00px;
}

.banner-section .content-column .text{
	position:relative;
	color:#d8def2;
	font-size: 18.00px;
	line-height:1.9em;
	margin-bottom: 50.00px;
	font-weight:400;
}

/*** 

====================================================================
	Branding Section
====================================================================

***/

.branding-section{
	position:relative;
	overflow:hidden;
	padding:110px 0px 60px;
}

.branding-section .blocks-column{
	position:relative;
}

.branding-section .blocks-column .inner-column{
	position:relative;
}

.brand-block{
	position:relative;
	margin-bottom: 50.00px;
}

.brand-block .inner-box{
	position:relative;
	padding:35px 10px 35px 20px;
	background-color:#f8e3e0;
	box-shadow:0px 0px 25px rgba(0,0,0,0.08);
}

.brand-block .inner-box .icon-box{
	position:relative;
	width:58px;
	height:58px;
	color:#ffffff;
	font-size: 23.00px;
	line-height:58px;
	text-align:center;
	border-radius:50px;
	display:inline-block;
	background-color:#f9a89a;
	-webkit-transition:all 600ms ease;
	-ms-transition:all 600ms ease;
	-o-transition:all 600ms ease;
	-moz-transition:all 600ms ease;
	transition:all 600ms ease;
}

.brand-block .inner-box:hover .icon-box{
	-webkit-transform: scale(-1) rotate(180deg);
    -moz-transform: scale(-1) rotate(180deg);
    -ms-transform: scale(-1) rotate(180deg);
    -o-transform: scale(-1) rotate(180deg);
    transform: scale(-1) rotate(180deg);
}

.brand-block .inner-box h5{
	position:relative;
	font-weight:500;
	line-height:1.3em;
	margin-top: 30.00px;
	margin-bottom: 29.00px;
}

.brand-block .inner-box h5 a{
	position:relative;
	color:#242425;
}

.brand-block .inner-box .brand-list{
	position:relative;
}

.brand-block .inner-box .brand-list li{
	position:relative;
	margin-bottom: 30.00px;
	color:rgba(0,0,0,0.80);
	font-size: 18.00px;
	line-height:1.8em;
	padding-left:25px;
}

.brand-block .inner-box .brand-list li:before{
	position:absolute;
	content:'\f00c';
	left:0px;
	top:0px;
	color:#f9a99b;
	font-family: "FontAwesome";
}

.brand-block .inner-box .brand-list li:last-child{
	margin-bottom: 12.00px;
}

.branding-section .images-column{
	position:relative;
}

.branding-section .images-column .inner-column{
	position:relative;
	text-align:center;
	padding-left:50px;
}

.branding-section .images-column .inner-column:before{
	position:absolute;
	content:'';
	top:0px;
	left:50px;
	width:571px;
	height:571px;
	border-radius:50%;
	background-color:#fcf4f8;
}

.branding-section .images-column .image{
	position:relative;
	border-radius:8px;
	overflow:hidden;
	margin-bottom: 16.00px;
	display:inline-block;
}

.branding-section .images-column .image-two{
	position:relative;
	border-radius:8px;
	overflow:hidden;
	display:inline-block;
}

.branding-section .images-column .image-three{
	position:absolute;
	left:50px;
	top:190px;
	overflow:hidden;
	border-radius:8px;
}

.branding-section .images-column .image-four{
	position:absolute;
	right:45px;
	top:120px;
	overflow:hidden;
	border-radius:8px;
}

.brand-block:nth-child(2) .inner-box{
	background-color:#f2f1ff;
}

.brand-block:nth-child(2) .inner-box .icon-box{
	background-color:#837bee;
}

.brand-block:nth-child(3) .inner-box{
	background-color:#fafaec;
}

.brand-block:nth-child(3) .inner-box .icon-box{
	background-color:#f6cb6e;
}

.brand-block:nth-child(4) .inner-box{
	background-color:#f3fbf7;
}

.brand-block:nth-child(4) .inner-box .icon-box{
	background-color:#37ce9d;
}

.brand-block:nth-child(5) .inner-box{
	background-color:#f1ffff;
}

.brand-block:nth-child(5) .inner-box .icon-box{
	background-color:#89eeee;
}

.brand-block:nth-child(6) .inner-box{
	background-color:#faecfa;
}

.brand-block:nth-child(6) .inner-box .icon-box{
	background-color:#fcb5fc;
}

/*** 

====================================================================
	Video Section
====================================================================

***/

.video-section{
	position:relative;
	padding-top: 25.00px;
	text-align:center;
}

.video-section.style-two{
	padding-top: 130.00px;
}

.video-section.style-three{
	padding-bottom: 112.00px;
}

.video-section.style-four{
	padding-bottom: 76.00px;
}

.video-section .intro-video{
	position:relative;
	text-align:center;
	width:100%;
	display:block;
	overflow:hidden;
	border-radius:6px;
	padding:170px 0px 170px;
	background-repeat:no-repeat;
	background-size:cover;
}

.video-section .intro-video:before{
	position:absolute;
	content:'';
	left:0px;
	top:0px;
	right:0px;
	bottom:0px;
	background-image: -ms-linear-gradient(top, #FFFFFF 0%, rgba(0,0,0,0) 100%);
	background-image: -moz-linear-gradient(top, #FFFFFF 0%, rgba(0,0,0,0) 100%);
	background-image: -o-linear-gradient(top, #FFFFFF 0%, rgba(0,0,0,0) 100%);
	background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #FFFFFF), color-stop(100, rgba(0,0,0,0)));
	background-image: -webkit-linear-gradient(top, #FFFFFF 0%, rgba(0,0,0,0) 100%);
	background-image: linear-gradient(to bottom, #FFFFFF 0%, rgba(0,0,0,0) 100%);
}

.video-section .intro-video h2{
	position:relative;
	color:#15192b;
	font-weight:600;
	font-size: 31.00px;
	line-height:1.3em;
	margin-bottom: 49.00px;
	text-transform:capitalize;
}

.video-section .intro-video .explore-btn{
	position:relative;
	padding:15px 36px;
	border-radius:5px;
	color:#ff769e;
	margin-bottom: 49.00px;
	background-color:#ffffff;
}

.video-section .intro-video .intro-video-box{
	position: relative;
	width:64px;
	height: 64px;
	z-index:99;
	color: #ffffff;
	font-weight:400;
	font-size: 18.00px;
	text-align: center;
	border-radius:50%;
	padding-left:4px;
	line-height:64px;
	display: block;
	margin:0 auto;
	background-color:#ff769e;
	transition: all 900ms ease;
    -moz-transition: all 900ms ease;
    -webkit-transition: all 900ms ease;
    -ms-transition: all 900ms ease;
    -o-transition: all 900ms ease;
	box-shadow:0px 0px 15px rgba(0,0,0,0.10);
}

.video-section .intro-video .ripple,
.video-section .intro-video .ripple:before,
.video-section .intro-video .ripple:after {
    position: absolute;
    top: 50%;
    left: 50%;
    height: 64px;
    width: 64px;
	margin-left:-1px;
    -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, .4);
    -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, .4);
    -ms-box-shadow: 0 0 0 0 rgba(255, 255, 255, .4);
    -o-box-shadow: 0 0 0 0 rgba(255, 255, 255, .4);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, .4);
    -webkit-animation: ripple 3s infinite;
    -moz-animation: ripple 3s infinite;
    -ms-animation: ripple 3s infinite;
    -o-animation: ripple 3s infinite;
    animation: ripple 3s infinite;
}

.video-section .intro-video .ripple:before {
    -webkit-animation-delay: .9s;
    -moz-animation-delay: .9s;
    -ms-animation-delay: .9s;
    -o-animation-delay: .9s;
    animation-delay: .9s;
    content: "";
    position: absolute;
}

.video-section .intro-video .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 70px 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 70px rgba(255, 255, 255, 0);}
    100% {box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);}
}

/*** 

====================================================================
	Business Section
====================================================================

***/

.business-section{
	position:relative;
	padding:110px 0px 40px;
}

.business-section .image-column{
	position:relative;
	margin-bottom: 49.00px;
}

.business-section .image-column .pattern-layer{
	position:absolute;
	left:-150px;
	top:0px;
	width:799px;
	height:539px;
	background-repeat:no-repeat;
}

.business-section .image-column .inner-column{
	position:relative;
	margin-left:-110px;
}

.business-section .image-column .image{
	position:relative;
}

.business-section .content-column{
	position:relative;
	margin-bottom: 49.00px;
}

.business-section .content-column .inner-column{
	position:relative;
	padding-left:20px;
}

.business-block{
	position:relative;
	margin-bottom: 49.00px;
}

.business-block .inner-box{
	position:relative;
}

.business-block .inner-box .upper-box{
	position:relative;
	padding-left:60px;
}

.business-block .inner-box .icon{
	position:absolute;
	left:0px;
	top:0px;
	transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
}

.business-block .inner-box:hover .icon{
	-webkit-transform: scale(-1) rotate(180deg);
    -moz-transform: scale(-1) rotate(180deg);
    -ms-transform: scale(-1) rotate(180deg);
    -o-transform: scale(-1) rotate(180deg);
    transform: scale(-1) rotate(180deg);
}

.business-block .inner-box .upper-box h5{
	position:relative;
	color:#39436f;
	font-weight:500;
	line-height:1.4em;
}

.business-block .inner-box .text{
	position:relative;
	margin-top: 38.00px;
	color:#15192b;
	font-size: 18.00px;
	line-height:1.8em;
	opacity:0.90;
}

/*** 

====================================================================
	Strategy Section
====================================================================

***/

.strategy-section{
	position:relative;
	overflow:hidden;
	padding:180px 0px 90px;
	background-color:#fdf6f6;
}

.strategy-section .icon-one{
	position:absolute;
	left:60px;
	top:60px;
	width:205px;
	height:266px;
	background-repeat:no-repeat;
}

.strategy-section .pattern-one{
	position:absolute;
	left:60px;
	top:60px;
	width:285px;
	height:278px;
	background-repeat:no-repeat;
}

.strategy-section .images-column .pattern-two{
	position:absolute;
	right:-80px;
	top:60px;
	width:398px;
	height:389px;
	background-repeat:no-repeat;
}

.strategy-section .images-column{
	position:relative;
	margin-bottom: 49.00px;
}

.strategy-section .images-column .pattern-layer{
	position:absolute;
	left:-150px;
	top:0px;
	width:799px;
	height:539px;
	background-repeat:no-repeat;
}

.strategy-section .images-column .inner-column{
	position:relative;
}

.strategy-section .images-column .image{
	position:relative;
	display:inline-block;
	border:10px solid #ffffff;
	transform:rotateZ(10deg);
}

.strategy-section .images-column .image-two{
	position:absolute;
	right:-90px;
	top:-50px;
	transform:rotateZ(10deg);
	display:inline-block;
	border:10px solid #ffffff;
}

.strategy-section .content-column{
	position:relative;
	margin-bottom: 49.00px;
}

.strategy-section .content-column .inner-column{
	position:relative;
	padding-top: 78.00px;
}

.strategy-section .content-column .sec-title{
	margin-bottom: 50.00px;
}

/*** 

====================================================================
	Business Section Two
====================================================================

***/

.business-section-two{
	position:relative;
	padding:110px 0px 60px;
}

.business-section-two.style-two{
	padding-bottom: 133.00px;
	padding-top: 78.00px;
}

.business-section-two.style-three{
	padding-top: 68.00px;
}

.business-section-two .title-column{
	position:relative;
	margin-bottom: 49.00px;
}

.business-section-two .title-column .pattern-one{
	position:absolute;
	left:-140px;
	top:0px;
	width:654px;
	height:554px;
	background-repeat:no-repeat;
}

.business-section-two .title-column .sec-title{
	margin-bottom: 39.00px;
}

.business-section-two .title-column .inner-column{
	position:relative;
}

.business-section-two .title-column .column-text{
	position:relative;
	color:#15192b;
	font-size: 18.00px;
	opacity:0.8;
	line-height:1.7em;
	margin-bottom: 40.00px;
}

.business-section-two .title-column .counter-box{
	position:relative;
	margin-top: 68.00px;
}

.business-section-two .title-column .counter-box .boll-one{
	position:absolute;
	left:50%;
	top:-70px;
	width:154px;
	height:187px;
	z-index:15;
	margin-left:-75px;
	background-repeat:no-repeat;
}

.business-section-two .title-column .counter-box .boll-two{
	position:absolute;
	left:50%;
	bottom:-50px;
	width:96px;
	height:117px;
	z-index:10;
	margin-left:-45px;
	background-repeat:no-repeat;
}

.business-section-two .title-column .counter-box .dotted-pattern-one{
	position:absolute;
	left:0px;
	top:0px;
	width:325px;
	height:317px;
	background-repeat:no-repeat;
}

.business-section-two .title-column .counter-box .dotted-pattern-two{
	position: absolute;
    right: -30px;
    top: 50px;
    width: 280px;
    height: 317px;
    background-repeat: no-repeat;
}

.business-section-two .title-column .counter-box .counter-boxed{
	position:relative;
	z-index:1;
	width:250px;
	margin:0 auto;
	text-align:center;
	margin-top: 96.00px;
}

.business-section-two .title-column .counter-box .counter-boxed:nth-child(2){
	z-index:10;
}

.business-section-two .title-column .counter-box .counter-boxed .graph-outer{
	position:relative;
	padding:30px 40px 25px;
	text-align:center;
	margin:0 auto;
	border-radius:8px;
	background-color:#ffffff;
	box-shadow:0px 0px 25px rgba(0,0,0,0.06);
}

.business-section-two .title-column .counter-box .counter-boxed .count-box{
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    font-size: 18.00px;
    color: #fb7da1;
    font-weight: 400;
    margin-top: -34px;
	text-align:center;
}

.business-section-two .title-column .counter-box .counter-boxed .count-box .count-text{
	position:relative;
	color:#fb7da1;
	font-size: 61.00px;
	font-weight:700;
}

.business-section-two .title-column .counter-box .counter-boxed .count-box .sign{
	font-size: 21.00px;
}

.business-section-two .title-column .counter-box .counter-boxed h6{
	position: relative;
	line-height: 1.6em;
	color: #222222;
	font-weight: 400;
	margin-top: 22.00px;
	opacity:0.8;
	text-transform: capitalize;
}

.business-section-two .blocks-column{
	position:relative;
	margin-bottom: 49.00px;
}

.business-section-two .blocks-column .inner-column{
	position:relative;
	padding-left:40px;
}

.business-section-two .blocks-column .blocks-outer{
	position:relative;
}

.business-section-two .blocks-column .bold-text{
	position:relative;
	color:#15192b;
	font-size: 21.00px;
	line-height:1.6em;
	padding-right:60px;
}

.business-section-two .blocks-column .column-text{
	position:relative;
	color:#15192b;
	font-size: 18.00px;
	opacity:0.80;
	line-height:1.7em;
	padding-right:60px;
	margin-top: 38.00px;
	margin-bottom: 49.00px;
}

.business-block-two{
	position:relative;
	margin-bottom: 40.00px;
}

.business-block-two .inner-box{
	position:relative;
}

.business-block-two .inner-box .upper-box{
	position:relative;
	padding-left:80px;
	padding-top: 24.00px;
	min-height:60px;
}

.business-block-two .inner-box .icon{
	position:absolute;
	left:0px;
	top:0px;
	width:60px;
	height:60px;
	color:#ffffff;
	font-size: 21.00px;
	text-align:center;
	line-height:60px;
	border-radius:50px;
	transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
	background-color:#ff799e;
}

.business-block-two .inner-box:hover .icon{
	-webkit-transform: scale(-1) rotate(180deg);
    -moz-transform: scale(-1) rotate(180deg);
    -ms-transform: scale(-1) rotate(180deg);
    -o-transform: scale(-1) rotate(180deg);
    transform: scale(-1) rotate(180deg);
}

.business-block-two .inner-box .upper-box h5{
	position:relative;
	color:#39436f;
	font-weight:500;
	line-height:1.4em;
}

.business-block-two .inner-box .text{
	position:relative;
	margin-top: 38.00px;
	color:#39436f;
	font-size: 18.00px;
	line-height:1.8em;
	opacity:0.90;
}

.business-block-two:nth-child(2) .inner-box .icon{
	background-color:#f6cb6e;
}

.business-block-two:nth-child(3) .inner-box .icon{
	background-color:#ff7c6f;
}

/*** 

====================================================================
	Testimonial Section
====================================================================

***/

.testimonial-section{
	position:relative;
	overflow:hidden;
	padding:40px 0px 60px;
}

.testimonial-section.style-two{
	padding-top: 7.00px;
}

.testimonial-section.style-three{
	padding:110px 0px 110px;
}

.testimonial-section .carousel-column{
	position:relative;
}

.testimonial-section .carousel-column .inner-column{
	position:relative;
}

.testimonial-section .carousel-column .more{
	position:relative;
	color:#15192b;
	font-weight:500;
	padding-left:10px;
	border-bottom:1px solid #15192b;
	transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
}

.testimonial-section .carousel-column .more:before{
	position:absolute;
	content:'\f0da';
	left:0px;
	top:-2px;
	color:#ff799e;
	font-family: 'FontAwesome';
}

.testimonial-section .carousel-column .more:hover{
	color:#ff799e;
}

.testimonial-section .carousel-column .owl-dots,
.testimonial-section .carousel-column .owl-nav{
	display:none;
}

/* Testimonial Block */

.testimonial-block{
	position:relative;
	margin-bottom: 50.00px;
}

.testimonial-block .inner-box{
	position:relative;
}

.testimonial-block .inner-box .upper-box{
	position:relative;
	border-radius:5px;
	padding:30px 25px 60px;
	background-color:#fdf2de;
}

.testimonial-block .inner-box .upper-box .text{
	position:relative;
	color:#15192b;
	font-size: 18.00px;
	opacity:0.9;
	line-height:1.9em;
}

.testimonial-block .inner-box .lower-box{
	position:relative;
	text-align:center;
	margin-top:-40px;
}

.testimonial-block .inner-box .lower-box .author-image{
	position:relative;
	width:72px;
	height:72px;
	margin:0 auto;
	overflow:hidden;
	border-radius:50px;
}

.testimonial-block .inner-box .lower-box h6{
	position:relative;
	color:#15192b;
	font-size: 18.00px;
	font-weight:600;
	margin-top: 20.00px;
}

.testimonial-block .inner-box .lower-box .designation{
	position:relative;
	color:#15192b;
	font-size: 18.00px;
	font-weight:400;
	margin-top: 15.00px;
	opacity:0.90;
}

.testimonial-block.style-two .inner-box .upper-box{
	background-color:#ecfbf6;
}

.testimonial-section .image-column{
	position:relative;
}

.testimonial-section .image-column .inner-column{
	position:relative;
	padding-left:30px;
}

.testimonial-section .image-column .image{
	position:relative;
}

.testimonial-section .image-column .image img{
	position:relative;
	max-width:inherit;
}

/*** 

====================================================================
	News Section
====================================================================

***/

.news-section{
	position:relative;
	padding:40px 0px 90px;
}

.news-block{
	position:relative;
	margin-bottom: 50.00px;
}

.news-block .inner-box{
	position:relative;
}

.news-block .inner-box .image{
	position:relative;
	overflow:hidden;
	background-color:#ff799e;
}

.news-block .inner-box .image img{
	position:relative;
	width:100%;
	display:block;
	transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
}

.news-block .inner-box:hover .image img{
	opacity:0.5;
	transform:scale(1.02,1.02);
}

.news-block .inner-box .image .overlay-box{
	position:absolute;
	left:0px;
	top:0px;
	width:100%;
	height:100%;
	display:block;
	text-align:center;
}

.news-block .inner-box .image .overlay-box .icon{
	position:absolute;
	left:50%;
	top:50%;
	width:100px;
	height:100px;
	color:#ffffff;
	margin-left:-50px;
	text-align:center;
	border-radius:50%;
	line-height:100px;
	display:inline-block;
	padding-left:4px;
	font-size: 27.00px;
	margin-top:-50px;
	background-color:#ff799e;
}

.news-block .inner-box .image .overlay-box .ripple,
.news-block .inner-box .image .overlay-box .ripple:before,
.news-block .inner-box .image .overlay-box .ripple:after {
    position: absolute;
    top: 50%;
    left: 50%;
    width:100px;
	height:100px;
	margin-left:.5px;
    -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, .4);
    -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, .4);
    -ms-box-shadow: 0 0 0 0 rgba(255, 255, 255, .4);
    -o-box-shadow: 0 0 0 0 rgba(255, 255, 255, .4);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, .4);
    -webkit-animation: ripple 3s infinite;
    -moz-animation: ripple 3s infinite;
    -ms-animation: ripple 3s infinite;
    -o-animation: ripple 3s infinite;
    animation: ripple 3s infinite;
}

.news-block .inner-box .image .overlay-box .ripple:before {
    -webkit-animation-delay: .9s;
    -moz-animation-delay: .9s;
    -ms-animation-delay: .9s;
    -o-animation-delay: .9s;
    animation-delay: .9s;
    content: "";
    position: absolute;
}

.news-block .inner-box .image .overlay-box .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 70px 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 70px rgba(255, 255, 255, 0);}
    100% {box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);}
}

.news-block .inner-box .lower-content{
	position:relative;
	padding:32px 35px 30px;
	box-shadow:0px 0px 20px rgba(0,0,0,0.10);
}

.news-block .inner-box .lower-content .post-date{
	position:relative;
	color:#15192b;
	font-size: 18.00px;
	font-weight:400;
	opacity:0.90;
	margin-bottom: 30.00px;
}

.news-block .inner-box .lower-content h5{
	position:relative;
	line-height:1.3em;
	color:#15192b;
	font-weight:500;
	margin-bottom: 30.00px;
}

.news-block .inner-box .lower-content h5 a{
	position:relative;
	color:#15192b;
	transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
}

.news-block .inner-box .lower-content h5 a:hover{
	color:#ff799e;
}

.news-block .inner-box .lower-content .text{
	position:relative;
	color:#15192b;
	font-size: 19.00px;
	opacity:0.90;
	line-height:1.8em;
	margin-bottom: 32.00px;
}

.news-block .inner-box .lower-content .more{
	position:relative;
	color:#181818;
	font-size: 18.00px;
	padding-right:40px;
	display:inline-block;
	transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
}

.news-block .inner-box .lower-content .more .arrow{
	position:absolute;
	left:100%;
	top:-1px;
	margin-left:-25px;
	transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
}

.news-block .inner-box .lower-content .more:hover .arrow{
	left:0px;
	margin-left:0px;
}

.news-block .inner-box .lower-content .more:hover{
	padding-right:0px;
	padding-left:40px;
}

/*** 

====================================================================
	Clients Section
====================================================================

***/

.clients-section{
	position:relative;
}

.clients-section .inner-container{
	position:relative;
	z-index:1;
	border-radius:8px;
	padding:60px 0px 60px;
	background-color:#ffffff;
	box-shadow:0px 0px 25px rgba(0,0,0,0.10);
}

.clients-section .sponsors-outer .owl-dots,
.clients-section .sponsors-outer .owl-nav{
	position:relative;
	display:none;
}

.clients-section .sponsors-outer .image-box{
	position:relative;
	text-align:center;
	margin:0px;
}

.clients-section .sponsors-outer .image-box img{
	max-width:100%;
	width:auto;
	opacity:0.4;
	display:inline-block;
	-webkit-filter: grayscale(100%);
	filter: grayscale(100%);
	-webkit-transition:all 300ms ease;
	-ms-transition:all 300ms ease;
	-o-transition:all 300ms ease;
	-moz-transition:all 300ms ease;
	transition:all 300ms ease;
}

.clients-section .sponsors-outer .image-box img:hover{
	opacity:1;
	-webkit-filter: grayscale(0%);
	filter: grayscale(0%);
}

/*** 

====================================================================
	Main Footer
====================================================================

***/

.main-footer{
	position:relative;
	padding-top: 143.00px;
	text-align:center;
	margin-top:-40px;
	background-color:#141517;
}

.main-footer .pattern-layer{
	position:absolute;
	left:50%;
	bottom:0px;
	right:0px;
	bottom:0px;
	width:398px;
	height:389px;
	margin-left:-200px;
	background:url(../images/background/pattern-7.png) no-repeat;
}

.main-footer .pattern-layer-two{
	position:absolute;
	right:0px;
	bottom:0px;
	width:714px;
	height:290px;
	background-repeat:no-repeat;
}

.main-footer .pattern-layer-three{
	position:absolute;
	left:0px;
	right:0px;
	bottom:0px;
	width:100%;
	height:96px;
	background-repeat:no-repeat;
}

.main-footer .text{
	position:relative;
	color:#ffffff;
	font-size: 18.00px;
	margin-bottom: 40.00px;
}

.main-footer .newsletter-form{
	max-width:570px;
	margin:0 auto;
}

/* Newsletter Form */

.newsletter-form{
	margin-bottom: 12.00px;
}

.newsletter-form .form-group{
	position:relative;
	display:block;
	margin-bottom: 16.00px;
}

.newsletter-form .form-group input[type="text"],
.newsletter-form .form-group input[type="email"]{
	position:relative;
	display:block;
	width:100%;
	line-height:26px;
	padding:10px 180px 10px 25px;
	height:80px;
	font-size: 18.00px;
	color:#000000;
	background:none;
	background: #FFFFFF;
	border-radius: 8px;
	-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 button{
	position:absolute;
	right:12px;
	top:10px;
	cursor:pointer;
}

.main-footer .social-box{
	position:relative;
	margin-top: 62.00px;
	margin-bottom: 39.00px;
}

.main-footer .social-box a{
	position:relative;
	width:42px;
	height:42px;
	color:#ffffff;
	font-size: 18.00px;
	line-height:42px;
	text-align:center;
	border-radius:50px;
	-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 .social-box a:hover{
	background-color:#ff799e;
}

.main-footer .location{
	position:relative;
	color:#ffffff;
	font-size: 19.00px;
	line-height:1.8em;
	margin-bottom: 59.00px;
}

.main-footer .footer-bottom{
	position:relative;
	padding:25px 0px;
	text-align:center;
	border-top:1px solid rgba(255,255,255,0.10);
}

.main-footer .footer-bottom .logo{
	position:relative;
	z-index:2;
}

.main-footer .footer-bottom .email{
	position:relative;
	color:#ffffff;
	margin-top: 22.00px;
	display:inline-block;
}

.main-footer .apps{
	position:absolute;
	left:0px;
	right:0px;
	margin-top: 17.00px;
}

.main-footer .apps span{
	position:relative;
	color:#ffffff;
	font-size: 19.00px;
	font-weight:500;
}

.main-footer .apps a{
	position:relative;
	color:#ffffff;
	font-size: 23.00px;
	margin:0px 6px;
	-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 .apps a:hover{
	color:#ff799e;
}

.main-footer .info-widget .info-list{
	position:relative;
}

.main-footer .info-widget .info-list li{
	position:relative;
	margin-bottom: 7.00px;
}

.main-footer .info-widget .info-list li a{
	position:relative;
	color:#ffffff;
	opacity:0.90;
}



.main-footer .list-link li{
	position:relative;
	margin-bottom: 16.00px;
}

.main-footer .list-link li a{
	position:relative;
	font-size: 19.00px;
	font-weight:400;
	color:#ffffff;
	opacity:0.80;
	-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 .list-link li a:hover{
	color:#ff799e;
}



.main-footer.style-two{
	text-align:left;
	background-color:#0e101b;
}

.main-footer.style-two .social-box{
	margin-top: 4.00px;
}

.main-footer.style-two .text{
	line-height:1.8em;
	font-size: 19.00px;
	opacity:0.80;
}

.main-footer .widgets-section{
	position:relative;
	padding:90px 0px 40px;
}

.main-footer .footer-widget{
	position:relative;
	z-index:2;
	margin-bottom: 50.00px;
}

.main-footer .footer-widget h5{
	position:relative;
	font-weight:500;
	color:#ffffff;
	margin-bottom: 39.00px;
	text-transform:capitalize;
}

/*** 

====================================================================
	Hidden Sidebar style
====================================================================

***/

.hidden-bar{
	position: fixed;
	top: 0px;
	right:-400px;
	width: 305px;
	height: 100%;
	background: #272727;
	z-index: 9999;
	transition: all 700ms ease;
	-webkit-transition: all 700ms ease;
	-ms-transition: all 700ms ease;
	-o-transition: all 700ms ease;
	-moz-transition: all 700ms ease;
}

.hidden-bar-wrapper {
	height: 100%;
	padding:0px 5px 30px 0px;
}

.hidden-bar .mCSB_inside > .mCSB_container{
	margin-right:0px;	
}

.hidden-bar.right-align.visible-sidebar{
	right:0px;	
}

.hidden-bar .hidden-bar-closer {
	position: absolute;
	top: 10px;
	right:15px;
	background: none;
	color: #ffffff;
	transition: all 300ms ease;
	-webkit-transition: all 300ms ease;
	-ms-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	-moz-transition: all 300ms ease;
	z-index: 999999;
}

.hidden-bar .hidden-bar-closer button {
	background: none;
	display:block;
	font-size: 31.00px;
	color:#ffffff;
	width:40px;
	height:40px;
	cursor:pointer;
	line-height:40px;
}

.hidden-bar .hidden-bar-closer:hover {
	color: #414857;
}

.hidden-bar .hidden-bar-closer:hover .btn {
	color: #ffffff;
}

.hidden-bar .hidden-bar-closer .btn {
	background-color: transparent;
	border: none;
	outline: none;
	font-size: 18.00px;
}

.hidden-bar .social-icons {
	text-align: center;
	margin: 50px 0px 30px;
}

.hidden-bar .social-icons ul {
	font-size: 0;
	margin-left: -5px;
	margin-right: -5px;
}

.hidden-bar .social-icons ul li {
	display: inline-block;
	padding: 0 5px;
}

.hidden-bar .social-icons ul li a {
	display: block;
	width: 36px;
	height: 36px;
	font-size: 18.00px;
	line-height: 36px;
	text-align: center;
	background: #414857;
	color: #ffffff;
	border-radius: 5px;
	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;
}

.hidden-bar .social-icons ul li a:hover {
	background: #ffffff;
	color:#414857;
}

.hidden-bar .logo {
	padding:40px 30px;
}

.hidden-bar .logo img{
	display:inline-block;
	max-width:100%;	
}

.hidden-bar .content-box{
	position:relative;
	padding-right:25px;
	padding-left:30px;
}

.hidden-bar .content-box h2{
	position:relative;
	font-size: 21.00px;
	color:#ffffff;
	font-weight:500;
	margin-bottom: 39.00px;
}

.hidden-bar .content-box .text{
	position:relative;
	font-size: 18.00px;
	line-height:1.7em;
	color:rgba(255,255,255,0.90);
	margin-bottom: 32.00px;
}

.hidden-bar .contact-info{
	position:relative;
	padding-right:25px;
	margin-top: 67.00px;
	padding-left:30px;
}

.hidden-bar .contact-info h2{
	position:relative;
	font-size: 21.00px;
	color:#ffffff;
	font-weight:500;
	margin-bottom: 39.00px;
}

/*** 

====================================================================
	Banner Section Two
====================================================================

***/

.banner-section-two{
	position:relative;
	padding-top: 187.00px;
	overflow:hidden;
	padding-bottom: 112.00px;
	background-image: -ms-linear-gradient(left, #FDDED8 0%, #efd6d1 100%);
	background-image: -moz-linear-gradient(left, #FDDED8 0%, #efd6d1 100%);
	background-image: -o-linear-gradient(left, #FDDED8 0%, #efd6d1 100%);
	background-image: -webkit-gradient(linear, left top, right top, color-stop(0, #FDDED8), color-stop(100, #efd6d1));
	background-image: -webkit-linear-gradient(left, #FDDED8 0%, #efd6d1 100%);
	background-image: linear-gradient(to right, #FDDED8 0%, #efd6d1 100%);
}

.banner-section-two .auto-container{
	position:relative;
}

.banner-section-two .brand{
	position:absolute;
	left:30px;
	top:80px;
	color:#15192b;
	font-size: 204.00px;
	font-weight:700;
	line-height:1.2em;
	opacity:0.10;
}

.banner-section-two .business{
	position:absolute;
	right:30px;
	bottom:40px;
	color:#15192b;
	font-size: 204.00px;
	font-weight:700;
	line-height:1.2em;
	opacity:0.10;
}

.banner-section-two .circle-layer-one{
	position:absolute;
	right:-80px;
	top:-220px;
	width:585px;
	height:585px;
	border-radius:50%;
	background-color:#fcded8;
}

.banner-section-two .circle-layer-two{
	position:absolute;
	left:36%;
	top:-280px;
	width:585px;
	height:585px;
	border-radius:50%;
	margin-left:-240px;
	background-color:#fcded8;
}

.banner-section-two .circle-layer-three{
	position:absolute;
	left:26%;
	top:280px;
	width:500px;
	height:500px;
	border-radius:50%;
	margin-left:-200px;
	background-color:#fcded8;
}

.banner-section-two .patern-layer-one{
	position:absolute;
	left:0px;
	bottom:0px;
	width:100%;
	height:58px;
	z-index:1;
	background-size:contain;
	background-repeat:no-repeat;
	background-position:center bottom;
}

.banner-section-two .patern-layer-three{
	position:absolute;
	right:10%;
	top:0%;
	width:643px;
	height:304px;
	background-repeat:no-repeat;
}

.banner-section-two .icons{
	position:absolute;
	left:0px;
	top:0px;
	right:0px;
	bottom:0px;
}

.banner-section-two .icons .icon-one{
	position:absolute;
	left:10% !important;
	top:67% !important;
	width: 85px;
    height: 96px;
    display: inline-block;
    background-repeat: no-repeat;
}

.banner-section-two .icons .icon-two{
	position:absolute;
	left:13% !important;
	right:auto !important;
	bottom:52% !important;
	top:auto !important;
	width: 26px;
    height: 26px;
	border-radius:50px;
    display: inline-block;
	border:4px solid #ffffff;
    background-repeat: no-repeat;
}

.banner-section-two .image-column{
	position:relative;
}

.banner-section-two .image-column .inner-column{
	position:relative;
	margin-right:-150px;
}

.banner-section-two .image-column .image{
	position:relative;
}

.banner-section-two .image-column .image img{
	position: relative;
}

.banner-section-two .content-column{
	position:relative;
	z-index:1;
}

.banner-section-two .content-column .inner-column{
	position:relative;
	padding-top: 31.00px;
}

.banner-section-two .content-column h1{
	position:relative;
	color:#15192b;
	font-weight:700;
	line-height:1.2em;
	margin-bottom: 52.00px;
}

.banner-section-two .content-column .text{
	position:relative;
	color:#d8def2;
	font-size: 18.00px;
	line-height:1.9em;
	margin-bottom: 50.00px;
	font-weight:400;
}

/*** 

====================================================================
	Management Section
====================================================================

***/

.management-section{
	position:relative;
	overflow:hidden;
	padding:100px 0px 90px;
	background-color:#fdf6f6;
}

.management-section .images-column{
	position:relative;
	margin-bottom: 49.00px;
}

.management-section .images-column .pattern-layer{
	position:absolute;
	left:-150px;
	top:0px;
	width:799px;
	height:539px;
	background-repeat:no-repeat;
}

.management-section .images-column .inner-column{
	position:relative;
	margin-right:-100px;
}

.management-section .images-column .pattern-one{
	position:absolute;
	left:0px;
	top:85px;
	width:325px;
	height:317px;
	background-repeat:no-repeat;
}

.management-section .images-column .image{
	position:relative;
}

.management-section .content-column{
	position:relative;
	margin-bottom: 49.00px;
}

.management-section .content-column .inner-column{
	position:relative;
	padding-top: 25.00px;
}

.management-section .content-column .sec-title{
	margin-bottom: 39.00px;
}

.management-section .content-column .text{
	position:relative;
	margin-bottom: 40.00px;
}

.management-section .content-column .text p{
	position:relative;
	color:#15192b;
	font-size: 18.00px;
	opacity:0.9;
	line-height:1.7em;
	margin-bottom: 39.00px;
}

.management-section .content-column .text p:last-child{
	margin-bottom: 12.00px;
}



.news-block-two{
	position:relative;
	margin-bottom: 50.00px;
}

.news-block-two .inner-box{
	position:relative;
}

.news-block-two .inner-box .image{
	position:relative;
	overflow:hidden;
	background-color:#ff799e;
}

.news-block-two .inner-box .image img{
	position:relative;
	width:100%;
	display:block;
	transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
}

.news-block-two .inner-box:hover .image img{
	opacity:0.5;
	transform:scale(1.02,1.02);
}

.news-block-two .inner-box .lower-content{
	position:relative;
	padding:32px 35px 30px;
	box-shadow:0px 0px 20px rgba(0,0,0,0.10);
}

.news-block-two .inner-box .lower-content .post-date{
	position:relative;
	color:#15192b;
	font-size: 18.00px;
	font-weight:400;
	opacity:0.90;
	margin-bottom: 30.00px;
}

.news-block-two .inner-box .lower-content h5{
	position:relative;
	line-height:1.3em;
	color:#15192b;
	font-weight:500;
	margin-bottom: 30.00px;
}

.news-block-two .inner-box .lower-content h5 a{
	position:relative;
	color:#15192b;
	transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
}

.news-block-two .inner-box .lower-content h5 a:hover{
	color:#ff799e;
}

.news-block-two .inner-box .lower-content .more{
	position:relative;
	color:#181818;
	font-size: 18.00px;
	padding-left:25px;
	transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
}

.news-block-two .inner-box .lower-content .more:before{
	position:absolute;
	content:'';
	left:0px;
	top:1px;
	width:18px;
	height:18px;
	border:2px solid #ff7ca0;
	border-radius:50px;
	transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
}

.news-block-two .inner-box .lower-content .more:hover{
	color:#ff799e;
}

.news-block-two .inner-box .lower-content .more:hover::before{
	background-color:#ff799e;
}

/*** 

====================================================================
	Page Title
====================================================================

***/

.page-title{
	position:relative;
	text-align:center;
	overflow:hidden;
	padding:130px 0px 130px;
	background-size:cover;
}

.page-title:before{
	position:absolute;
	content:'';
	left:0px;
	bottom:0px;
	top:0px;
	right:0px;
	background-color:rgba(0,0,0,0.60);
}

.page-title .auto-container{
	position:relative;
}

.page-title h1{
	position:relative;
	color:#ffffff;
	font-weight:700;
	line-height:1.2em;
	margin-bottom: 12.00px;
	text-transform:uppercase;
}

.page-title .page-breadcrumb{
	position:relative;
	margin-top: 38.00px;
}

.page-title .page-breadcrumb li{
	position:relative;
	display:inline-block;
	margin-right:10px;
	padding-right:15px;
	color:#ff799e;
	font-size: 23.00px;
	font-weight:300;
	text-transform:capitalize;
}

.page-title .page-breadcrumb li:after{
	position:absolute;
	content: ":";
	right:-2px;
	top:-1px;
	color:#ffffff;
	font-size: 18.00px;
	font-weight:700;
	font-family: 'FontAwesome';
}

.page-title .page-breadcrumb li:last-child::after{
	display: none;
}

.page-title .page-breadcrumb li:last-child{
	padding-right:0px;
	margin-right:0px;
}

.page-title .page-breadcrumb li a{
	color:#ffffff;
	font-weight:300;
	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-title .page-breadcrumb li a:hover{
	color:#ff799e;
}

/*** 

====================================================================
	About Section
====================================================================

***/

.about-section{
	position:relative;
	padding:140px 0px 60px;
}

.about-section .content-column{
	position:relative;
}

.about-section .content-column .inner-column{
	position:relative;
}

.about-section .content-column h2{
	position:relative;
	color:#15192b;
	font-weight:600;
	line-height:1.2em;
	margin-bottom: 39.00px;
}

.about-section .content-column .bold-text{
	position:relative;
	color:#15192b;
	font-size: 23.00px;
	font-weight:500;
	line-height:1.8em;
}

.about-section .content-column .text{
	position:relative;
	color:#15192b;
	font-size: 19.00px;
	opacity:0.90;
	font-weight:400;
	line-height:1.8em;
	margin-top: 20.00px;
}

.about-section .image-column{
	position:relative;
}

.about-section .image-column .inner-column{
	position:relative;
	text-align:center;
}

.about-section .image-column .inner-column .icons{
	position:absolute;
	left:0px;
	top:0px;
	right:0px;
	bottom:0px;
}

.about-section .image-column .inner-column .circle-one{
	position:absolute;
	left:0px !important;
	top:-40px;
	width:325px;
	height:325px;
	border-radius:50%;
	background-color:#ffeaf0;
}

.about-section .image-column .inner-column .circle-two{
	position:absolute;
	top:auto !important;
	left:auto !important;
	right:30px !important;
	bottom:-80px;
	width:270px;
	height:270px;
	border-radius:50%;
	background-color:#f1faf8;
}

.about-section .image-column .inner-column .icon-one{
	position:absolute;
	left:auto !important;
	right: 120px !important;
    top: -40px;
	width:39px;
	height:38px;
}

.about-section .image-column .inner-column .icon-two{
	position:absolute;
	top:auto !important;
	left:auto !important;
	right: 280px !important;
    bottom: -50px;
	width:39px;
	height:38px;
}

.about-section .image-column .image{
	position:relative;
	padding-top: 31.00px;
}

.about-section .image-column .image img{
	position:relative;
	border-radius:12px;
	overflow:hidden;
}

/*** 

====================================================================
	Testimonial Section Two
====================================================================

***/

.testimonial-section-two{
	position:relative;
	padding:20px 0px 60px;
}

.testimonial-section-two .owl-dots,
.testimonial-section-two .owl-nav{
	display:none;
}

/* Testimonial Block Two */

.testimonial-block-two{
	position:relative;
	margin-bottom: 50.00px;
}

.testimonial-block-two .inner-box{
	position:relative;
	padding:25px 25px 25px;
	border-radius:4px;
	background-color:#f3fbf7;
}

.testimonial-block-two.style-two .inner-box{
	background-color:#fafaec;
}

.testimonial-block-two.style-three .inner-box{
	background-color:#f8e3e0;
}

.testimonial-block-two.style-four .inner-box{
	background-color:#fbf3fb;
}

.testimonial-block-two.style-five .inner-box{
	background-color:#ecf0fa;
}

.testimonial-block-two.style-six .inner-box{
	background-color:#e0f5f8;
}

.testimonial-block-two .inner-box .upper-box{
	position:relative;
	min-height:135px;
	padding:28px 0px 0px 160px;
}

.testimonial-block-two .inner-box .upper-box .author-image{
	position:absolute;
	left:0px;
	top:0px;
	width:135px;
	height:135px;
	overflow:hidden;
	border-radius:50%;
}

.testimonial-block-two .inner-box .upper-box .author-name{
	position:relative;
	color:#15192b;
	font-size: 23.00px;
	font-weight:500;
	line-height:1.3em;
}

.testimonial-block-two .inner-box .upper-box .designation{
	position:relative;
	color:#15192b;
	font-size: 19.00px;
	font-weight:400;
	opacity:0.9;
	line-height:1.3em;
	margin-top: 29.00px;
}

.testimonial-block-two .inner-box .upper-box .text{
	position:relative;
	color:#15192b;
	font-size: 18.00px;
	opacity:0.8;
	line-height:1.9em;
}

.testimonial-block-two .inner-box .upper-box .social-box{
	position:relative;
	margin-top: 22.00px;
}

.testimonial-block-two .inner-box .upper-box .social-box a{
	position:relative;
	color:#15192b;
	font-size: 23.00px;
	opacity:0.80;
	margin-right:8px;
	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;
}

.testimonial-block-two .inner-box .upper-box .social-box a:hover{
	color:#ff799e;
}

.testimonial-block-two .inner-box .lower-box{
	position:relative;
}

.testimonial-block-two .inner-box .lower-box .text{
	position:relative;
	color:#15192b;
	font-size: 19.00px;
	font-weight:400;
	margin-top: 38.00px;
	line-height:1.8em;
	opacity:0.90;
	margin-bottom: 30.00px;
}

.testimonial-block-two .inner-box .lower-box .profile{
	position:relative;
	color:#ff799e;
	font-size: 19.00px;
	padding-left:15px;
	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;
}

.testimonial-block-two .inner-box .lower-box .profile:before{
	position:absolute;
	font-family: 'FontAwesome';
	content:'\f105';
	left:0px;
	top:-2px;
}

.testimonial-block-two .inner-box .lower-box .profile:hover{
	color:#222222;
}

/*** 

====================================================================
	Team Page Section
====================================================================

***/

.team-page-section{
	position:relative;
	padding:110px 0px 60px;
}

.team-banner-section{
	position:relative;
	padding-top: 103.00px;
	border-top:1px solid #f9f9f9;
}

.team-banner-section .content-column{
	position:relative;
}

.team-banner-section .content-column .inner-column{
	position:relative;
	padding-top: 82.00px;
}

.team-banner-section .content-column h2{
	position:relative;
	color:#15192b;
	font-weight:600;
	line-height:1.3em;
}

.team-banner-section .content-column .text{
	position:relative;
	margin-top: 38.00px;
	line-height:1.8em;
	font-size: 18.00px;
	color:#15192b;
	opacity:0.9;
}

/*** 

====================================================================
	Services Section
====================================================================

***/

.service-section{
	position:relative;
	padding:110px 0px 60px;
}

.service-section .content-column{
	position:relative;
}

.service-section .content-column .inner-column{
	position:relative;
	padding-top: 33.00px;
}

.service-section .content-column h2{
	position:relative;
	color:#15192b;
	font-weight:600;
	line-height:1.2em;
	margin-bottom: 39.00px;
}

.service-section .content-column .bold-text{
	position:relative;
	color:#15192b;
	font-size: 23.00px;
	font-weight:500;
	line-height:1.8em;
}

.service-section .content-column .text{
	position:relative;
	color:#15192b;
	font-size: 19.00px;
	opacity:0.90;
	font-weight:400;
	line-height:1.8em;
	margin-top: 20.00px;
	margin-bottom: 49.00px;
}

.service-section .image-column{
	position:relative;
}

.service-section .image-column .inner-column{
	position:relative;
	text-align:center;
}

.service-section .image-column .inner-column .icons{
	position:absolute;
	left:0px;
	top:0px;
	right:0px;
	bottom:0px;
}

.service-section .image-column .inner-column .circle-one{
	position:absolute;
	left:0px !important;
	top:-40px;
	width:325px;
	height:325px;
	border-radius:50%;
	background-color:#ffeaf0;
}

.service-section .image-column .inner-column .circle-two{
	position:absolute;
	top:auto !important;
	left:auto !important;
	right:30px !important;
	bottom:-20px;
	width:270px;
	height:270px;
	border-radius:50%;
	background-color:#f1faf8;
}

.service-section .image-column .inner-column .icon-one{
	position:absolute;
	top:auto !important;
	left:auto !important;
	right: 270px !important;
    bottom: -35px;
	width:39px;
	height:38px;
	background-repeat:no-repeat;
}

.service-section .image-column .inner-column .icon-two{
	position:absolute;
	left:auto !important;
	right: 120px !important;
    top: -40px;
	width:39px;
	height:38px;
	background-repeat:no-repeat;
}

.service-section .image-column .image{
	position:relative;
	padding-top: 31.00px;
}

.service-section .image-column .image img{
	position:relative;
	border-radius:12px;
	overflow:hidden;
}

/*** 

====================================================================
	Service Detail Section
====================================================================

***/

.service-detail-section{
	position:relative;
	padding:140px 0px 20px;
}

.service-detail-section .content-boxed{
	position:relative;
	text-align:center;
	padding-bottom: 47.00px;
}

.service-detail-section .content-boxed .inner-boxed:before{
	position:absolute;
	content:'';
	left:50%;
	top:-40px;
	width:360px;
	height:360px;
	margin-left:-180px;
	border-radius:50%;
	background-color:#fefafa;
}

.service-detail-section .content-boxed h2{
	position:relative;
	color:#15192b;
	font-weight:600;
	text-transform:uppercase;
}

.service-detail-section .content-boxed .bold-text{
	position:relative;
	color:#15192b;
	font-weight:500;
	font-size: 21.00px;
	margin-top: 20.00px;
	margin-bottom: 39.00px;
}

.service-detail-section .content-boxed .text{
	position:relative;
	color:#15192b;
	font-size: 18.00px;
	opacity:0.90;
	line-height:1.9em;
	margin-bottom: 50.00px;
}

.service-detail-section .image-boxed{
	position:relative;
	text-align:center;
}

.service-detail-section .image-boxed .inner-boxed{
	position:relative;
	display:inline-block;
}

.service-detail-section .image-boxed .inner-boxed .icons{
	position:absolute;
	left:0px;
	top:0px;
	right:0px;
	bottom:0px;
}

.service-detail-section .image-boxed .inner-boxed .circle-one{
	position:absolute;
	left: -100px !important;
    top: 190px !important;
    width: 325px;
    height: 325px;
    border-radius: 50%;
    background-color: #ffeaf0;
}

.service-detail-section .image-boxed .inner-boxed .circle-two{
	position:absolute;
	top:auto !important;
	left:auto !important;
	right:-100px !important;
	bottom:-20px;
	width:270px;
	height:270px;
	border-radius:50%;
	background-color:#f1faf8;
}

.service-detail-section .image-boxed .inner-boxed .circle-three{
	position:absolute;
	left:auto !important;
	right: -40px !important;
    top: 90px !important;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background-color: #f1faf8;
}

.service-detail-section .image-boxed .inner-boxed .circle-four{
	position:absolute;
	left:0% !important;
	top: 90% !important;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #ffeaf0;
}

.service-detail-section .image-boxed .inner-boxed .icon-one{
	position:absolute;
	top:auto !important;
	left:8% !important;
    bottom: 50px;
	width:39px;
	height:38px;
	background-repeat:no-repeat;
}

.service-detail-section .image-boxed .inner-boxed .icon-two{
	left: auto !important;
    right: 170px !important;
    top: 10% !important;
    width: 39px;
    height: 38px;
    background-repeat: no-repeat;
}

.service-detail-section .image-boxed .inner-boxed .icon-three{
	left: auto !important;
    right: -20% !important;
    top: 25% !important;
    width: 192px;
    height: 151px;
    background-repeat: no-repeat;
}

.service-detail-section .image-boxed .inner-boxed .image{
	position:relative;
	padding-top: 31.00px;
}

/*** 

====================================================================
	Case Study Section
====================================================================

***/

.case-study-section{
	position:relative;
	padding:100px 0px 60px;
	background-color:#f3fdf8;
}

.case-study-section .auto-container{
	position:relative;
}

.case-study-section .image-column{
	position:relative;
	text-align:center;
}

.case-study-section .image-column .inner-column{
	position:relative;
}

.case-study-section .image-column .image-outer{
	position:relative;
	width:360px;
	height:360px;
	margin:0 auto;
	text-align:center;
	border-radius:50%;
	background-color:#e7f4ed;
}

.case-study-section .image-column .image-outer:before{
	position:absolute;
	content:'';
	left:0px;
	top:0px;
	width:340px;
	height:340px;
	background:url(../images/background/pattern-12.png) no-repeat;
	background-size:contain;
}

.case-study-section .image-column .image-outer .image{
	position:relative;
	padding-top: 91.00px;
	display:inline-block;
}

.case-study-section .image-column .image-outer .image img{
	position:relative;
	border-radius:12px;
	overflow:hidden;
}

.case-study-section .content-column{
	position:relative;
}

.case-study-section .content-column .inner-column{
	position:relative;
	padding-top: 52.00px;
}

.case-study-section .content-column h2{
	position:relative;
	color:#15192b;
	font-weight:600;
	line-height:1.3em;
}

.case-study-section .content-column .portfolio{
	position:relative;
	color:#15192b;
	font-size: 32.00px;
	font-weight:500;
	margin-top: 17.00px;
	margin-bottom: 32.00px;
}

.case-study-section .content-column .text{
	position:relative;
	color:#15192b;
	font-size: 18.00px;
	opacity:0.95;
	line-height:1.8em;
}

.case-study-section .how-work{
	position:absolute;
	right:0px;
	z-index:1;
	bottom:-85px;
	color:#242425;
	font-size: 18.00px;
	padding:14px 36px;
	border-radius:5px;
	border:1px solid #e9e9e9;
	background-color:#ffffff;
}

/*** 

====================================================================
	Portfolio Block
====================================================================

***/

.portfolio-block{
	position:relative;
	padding:100px 0px 0px;
}

.portfolio-block .image-column{
	position:relative;
	text-align:center;
}

.portfolio-block .image-column .inner-column{
	position:relative;
}

.portfolio-block .image-column .image-outer{
	position:relative;
	width:425px;
	height:425px;
	margin:0 auto;
	text-align:center;
	border-radius:50%;
	background-color:#fbefe3;
	box-shadow:0px 0px 30px rgba(0,0,0,0.07);
}

.portfolio-block.style-two .image-column .image-outer{
	background-color:#e7f6ee;
}

.portfolio-block.style-three .image-column .image-outer{
	background-color:#f0efff;
}

.portfolio-block.style-four .image-column .image-outer{
	background-color:#e5f3fa;
}

.portfolio-block.style-five{
	padding-bottom: 112.00px;
}

.portfolio-block.style-five .image-column .image-outer{
	background-color:#e7e7e7;
}

.portfolio-block .image-column .image-outer .image{
	position:relative;
	padding-top: 68.00px;
	display:inline-block;
	transform:rotateZ(12deg);
}

.portfolio-block .image-column .image-outer .image img{
	position:relative;
}

.portfolio-block .content-column{
	position:relative;
}

.portfolio-block .content-column .inner-column{
	position:relative;
	padding-top: 91.00px;
	padding-left:50px;
}

.portfolio-block .content-column h2{
	position:relative;
	color:#15192b;
	font-weight:600;
	line-height:1.3em;
	font-size: 32.00px;
}

.portfolio-block .content-column h2 a{
	position:relative;
	color:#15192b;
	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;
}

.portfolio-block .content-column h2 a:hover{
	color:#ff799e;
}

.portfolio-block .content-column .text{
	position:relative;
	color:#15192b;
	font-size: 18.00px;
	opacity:0.95;
	line-height:1.9em;
	margin-top: 38.00px;
	margin-bottom: 39.00px;
}

.portfolio-block .content-column .detail{
	position:relative;
	color:#ff799e;
	font-size: 18.00px;
	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;
	border-bottom:1px solid #ff799e;
}

.portfolio-block .content-column .detail:hover{
	color:#222222;
}

/*** 

====================================================================
	Page Title Two
====================================================================

***/

.page-title-two{
	position:relative;
	padding:130px 0px 130px;
	background-size:cover;
	background-attachment:fixed;
}

.page-title-two .how-work{
	position:absolute;
	right:0px;
	z-index:2;
	bottom:-155px;
	color:#242425;
	font-size: 18.00px;
	padding:14px 36px;
	border-radius:5px;
	border:1px solid #e9e9e9;
	background-color:#ffffff;
}

.page-title-two:before{
	position:absolute;
	content:'';
	left:0px;
	bottom:0px;
	top:0px;
	right:0px;
	background-color:rgba(255,243,246,0.70);
}

.page-title-two .auto-container{
	position:relative;
}

.page-title-two h1{
	position:relative;
	color:#15192b;
	font-weight:600;
	line-height:1em;
	margin-bottom: 16.00px;
	text-transform:capitalize;
}

.page-title-two h1 span{
	position:relative;
	display:block;
	color:#ff799e;
	font-size: 32.00px;
}

.page-title-two .text{
	position:relative;
	color:#15192b;
	font-size: 18.00px;
	opacity:1;
	line-height:1.7em;
	max-width:630px;
	margin-top: 30.00px;
}

.page-title-two .page-breadcrumb{
	position:relative;
	margin-top: 17.00px;
}

.page-title-two .page-breadcrumb li{
	position:relative;
	display:inline-block;
	margin-right:10px;
	padding-right:15px;
	color:#15192b;
	opacity:1;
	font-size: 19.00px;
	font-weight:400;
	text-transform:capitalize;
}

.page-title-two .page-breadcrumb li:after{
	position:absolute;
	content: ":";
	right:-2px;
	top:-1px;
	color:#15192b;
	font-size: 18.00px;
	font-weight:700;
	font-family: 'FontAwesome';
}

.page-title-two .page-breadcrumb li:last-child::after{
	display: none;
}

.page-title-two .page-breadcrumb li:last-child{
	padding-right:0px;
	margin-right:0px;
}

.page-title-two .page-breadcrumb li a{
	color:#15192b;
	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-title-two .page-breadcrumb li a:hover{
	color:#ff799e;
}

/*** 

====================================================================
	Portfolio Section
====================================================================

***/

.portfolio-section{
	position:relative;
	padding:110px 0px 80px;
}

.portfolio-block-two{
	position:relative;
	margin-bottom: 49.00px;
}

.portfolio-block-two .inner-box{
	position:relative;
}

.portfolio-block-two .inner-box .image{
	position:relative;
	overflow:hidden;
	background-color:#ff799e;
}

.portfolio-block-two .inner-box .image img{
	position:relative;
	width:100%;
	display:block;
	transition:all 500ms ease;
	-moz-transition:all 500ms ease;
	-webkit-transition:all 500ms ease;
	-ms-transition:all 500ms ease;
	-o-transition:all 500ms ease;
}

.portfolio-block-two .inner-box:hover .image img{
	opacity:0.50;
	transform:scale(1.04,1.04);
}

.portfolio-block-two .inner-box .lower-content{
	position:relative;
	padding:25px 0px 0px;
}

.portfolio-block-two .inner-box .lower-content h3{
	position:relative;
	font-weight:500;
	font-size: 32.00px;
	line-height:1.3em;
	margin-bottom: 32.00px;
}

.portfolio-block-two .inner-box .lower-content h3 a{
	position:relative;
	color:#15192b;
	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;
}

.portfolio-block-two .inner-box .lower-content h3 a:hover{
	color:#ff799e;
}

.portfolio-block-two .inner-box .lower-content .text{
	position:relative;
	color:#15192b;
	font-size: 18.00px;
	line-height:1.7em;
	opacity:0.9;
	margin-bottom: 38.00px;
}

.portfolio-block-two .inner-box .lower-content .see-more{
	position:relative;
	color:#ff799e;
	font-size: 18.00px;
	border-bottom:1px solid #ff799e;
}

/*** 

====================================================================
	Styled Pagination
====================================================================

***/

.portfolio-section .styled-pagination,
.portfolio-block-two .styled-pagination{
	margin-top: 44.00px;
}

.styled-pagination{
	position:relative;
}

.styled-pagination li{
	position:relative;
	display:inline-block;
	margin:0px 1px 6px 0px;
}

.styled-pagination li a{
	position:relative;
	display:inline-block;
	line-height:40px;
	height:40px;
	font-size: 21.00px;
	min-width:40px;
	color:#537097;
	font-weight:400;
	text-align:center;
	background:#ffffff;
	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.prev a,
.styled-pagination li.next a{
	color:#666666;
	font-size: 18.00px;
}

.styled-pagination li a:hover,
.styled-pagination li a.active{
	color:#ffffff;
	background-color:#ff799e;
}

/* Portfolio Block Three */

.portfolio-block-three{
	position:relative;
	margin-bottom: 50.00px;
}

.portfolio-block-three .inner-box{
	position:relative;
}

.portfolio-block-three .inner-box .image{
	position:relative;
	overflow:hidden;
	background-color:#fc4c59;
}

.portfolio-block-three .inner-box .image img{
	position:relative;
	width:100%;
	display:block;
	transition: all 600ms ease;
    -moz-transition: all 600ms ease;
    -webkit-transition: all 600ms ease;
    -ms-transition: all 600ms ease;
    -o-transition: all 600ms ease;
}

.portfolio-block-three .inner-box:hover .image img{
	transform:scale(1.04,1.04);
}

.portfolio-block-three .inner-box .image .overlay-box{
	position:absolute;
	left:0px;
	top:0px;
	right:0px;
	bottom:0px;
	opacity:0;
	color:#ffffff;
	text-align:center;
	transition: all 900ms ease;
    -moz-transition: all 900ms ease;
    -webkit-transition: all 900ms ease;
    -ms-transition: all 900ms ease;
    -o-transition: all 900ms ease;
	-moz-transform: rotateX(-180deg);
    -webkit-transform: rotateX(-180deg);
    -ms-transform: rotateX(-180deg);
    -o-transform: rotateX(-180deg);
	transform: rotateX(-180deg);
}

.portfolio-block-three .inner-box .image .overlay-box:before{
	position:absolute;
	content:'';
	left:0px;
	top:0px;
	right:0px;
	bottom:0px;
	opacity:0.80;
	background-image: -ms-linear-gradient(left, #FE799E 0%, #8283fc 100%);
	background-image: -moz-linear-gradient(left, #FE799E 0%, #8283fc 100%);
	background-image: -o-linear-gradient(left, #FE799E 0%, #8283fc 100%);
	background-image: -webkit-gradient(linear, left top, right top, color-stop(0, #FE799E), color-stop(100, #8283fc));
	background-image: -webkit-linear-gradient(left, #FE799E 0%, #8283fc 100%);
	background-image: linear-gradient(to right, #FE799E 0%, #8283fc 100%);
}

.portfolio-block-three .inner-box:hover .overlay-box{
	opacity:1;
	-moz-transform: rotateX(0deg);
    -webkit-transform: rotateX(0deg);
    -ms-transform: rotateX(0deg);
    -o-transform: rotateX(0deg);
    transform: rotateX(0deg);
    visibility: visible;
}

.portfolio-block-three .inner-box .overlay-inner{
	position:absolute;
	left:0px;
	top:0px;
	width:100%;
	height:100%;
	display:table;
	vertical-align:middle;
	padding:10px 0px;
}

.portfolio-block-three .inner-box .overlay-inner .content{
	position:relative;
	display:table-cell;
	vertical-align:middle;
}

/*** 

====================================================================
	Portfolio Section Two
====================================================================

***/

.portfolio-section-two{
	position:relative;
	padding:170px 0px 100px;
}

.portfolio-section-two .owl-dots{
	display:none;
}

.portfolio-section-two .owl-nav{
	position:absolute;
	left:0px;
	top:-80px;
}

.portfolio-section-two .owl-nav .owl-prev,
.portfolio-section-two .owl-nav .owl-next{
	position:relative;
	width:55px;
	height:55px;
	color:#d5d1d1;
	font-size: 28.00px;
	text-align:center;
	line-height:51px;
	margin-right:12px;
	border-radius:50px;
	display:inline-block;
	border:2px solid #d5d1d1;
	transition:all 500ms ease;
	-webkit-transition:all 500ms ease;
	-ms-transition:all 500ms ease;
	-o-transition:all 500ms ease;
	-moz-transition:all 500ms ease;
}

.portfolio-section-two .owl-nav .owl-prev:hover,
.portfolio-section-two .owl-nav .owl-next:hover{
	background-color:#ff799e;
	border-color:#ff799e;
	color:#ffffff;
}

/* Portfolio Block Four */

.portfolio-block-four{
	position:relative;
}

.portfolio-block-four .inner-box{
	position:relative;
}

.portfolio-block-four .inner-box .image{
	position:relative;
}

.portfolio-block-four .inner-box .image img{
	position:relative;
	width:100%;
	display:block;
}

.portfolio-block-four .inner-box .overlay-box{
	position:absolute;
	left:0px;
	bottom:0px;
	padding:60px 80px 60px 60px;
}

.portfolio-block-four .inner-box .overlay-box:before{
	position:absolute;
	content:'';
	left:0px;
	top:0px;
	right:0px;
	bottom:0px;
	opacity:0.80;
	background-image: -ms-linear-gradient(left, #FE799E 0%, #8283fc 100%);
	background-image: -moz-linear-gradient(left, #FE799E 0%, #8283fc 100%);
	background-image: -o-linear-gradient(left, #FE799E 0%, #8283fc 100%);
	background-image: -webkit-gradient(linear, left top, right top, color-stop(0, #FE799E), color-stop(100, #8283fc));
	background-image: -webkit-linear-gradient(left, #FE799E 0%, #8283fc 100%);
	background-image: linear-gradient(to right, #FE799E 0%, #8283fc 100%);
}

.portfolio-block-four .inner-box .overlay-box .overlay-inner{
	position:relative;
}

.portfolio-block-four .inner-box .overlay-box .title{
	position:relative;
	color:#ffffff;
	font-size: 18.00px;
}

.portfolio-block-four .inner-box .overlay-box h4{
	position:relative;
	color:#ffffff;
	font-weight:600;
	margin-top: 22.00px;
}

.portfolio-block-four .inner-box .overlay-box h4 a{
	position:relative;
	color:#ffffff;
}

.portfolio-block-four .inner-box .overlay-box .arrow-btn{
	position:absolute;
	right:-35px;
	top:-35px;
	width:80px;
	height:80px;
	color:#ffffff;
	font-size: 23.00px;
	text-align:center;
	line-height:80px;
	border-radius:50px;
	background-color:#ff799e;
	display:inline-block;
}

/*** 

====================================================================
	Page Title Three
====================================================================

***/

.page-title-three{
	position:relative;
	padding:100px 0px 200px;
	background-color:#fff9fe;
}

.page-title-three .pattern-icon-one{
	position:absolute;
	left:100px;
	top:100px;
	width:136px;
	height:166px;
	background-repeat:no-repeat;
}

.page-title-three .pattern-icon-two{
	position:absolute;
	left:50px;
	bottom:50px;
	width:86px;
	height:99px;
	background-repeat:no-repeat;
}

.page-title-three .pattern-icon-three{
	position:absolute;
	right:100px;
	top:100px;
	width:129px;
	height:161px;
	background-repeat:no-repeat;
}

.page-title-three .content-column{
	position:relative;
}

.page-title-three .content-column .inner-column{
	position:relative;
	padding-top: 51.00px;
}

.page-title-three .content-column h2{
	position:relative;
	line-height:1.2em;
	color:#15192b;
	font-weight:600;
}

.page-title-three .content-column .text{
	position:relative;
	color:#15192b;
	font-size: 23.00px;
	opacity:0.9;
	line-height:1.7em;
	margin-top: 30.00px;
}

.page-title-three .info-column{
	position:relative;
}

.page-title-three .info-column .inner-column{
	position:relative;
	width:320px;
	height:320px;
	padding-top: 87.00px;
	text-align:center;
	border-radius:50%;
	background-color:#ffffff;
}

.page-title-three .info-column .title{
	position:relative;
	color:#15192b;
	font-size: 20.00px;
	opacity:0.90;
	line-height:1.8em;
	margin-bottom: 39.00px;
}

/*** 

====================================================================
	Profile Detail Section
====================================================================

***/

.portfolio-detail-section{
	position:relative;
}

.portfolio-detail-section .inner-container{
	position:relative;
	margin-top:-170px;
}

.portfolio-detail-section .image{
	position:relative;
}

.portfolio-detail-section .image img{
	position:relative;
	width:100%;
	display:block;
}

.portfolio-detail-section .text{
	position:relative;
	padding:60px 80px;
	opacity:0.9;
	color:#15192b;
	font-size: 21.00px;
	line-height:1.6em;
}

.portfolio-detail-section .middle-content{
	position:relative;
	padding:50px 0px 0px;
}

.portfolio-detail-section .middle-content h3{
	position:relative;
	color:#15192b;
	font-weight:500;
	line-height:1.4em;
}

.portfolio-detail-section .middle-content .text-two{
	position:relative;
}

.portfolio-detail-section .middle-content .text-two p{
	position:relative;
	opacity:0.9;
	color:#15192b;
	font-size: 18.00px;
	line-height:1.8em;
	margin-bottom: 32.00px;
}

.portfolio-detail-section .middle-content .text-two p:last-child{
	margin-bottom: 12.00px;
}

/* Project Info Section */

.project-info-section{
	position:relative;
	text-align:center;
}

.project-info-section .content-box{
	position:relative;
	padding:35px 50px;
	max-width:450px;
	width:100%;
	margin-top:-125px;
	display:inline-block;
	background-color:#8083fd;
}

.project-info-section .content-box .info-list{
	position:relative;
}

.project-info-section .content-box .info-list li{
	position:relative;
	color:#ffffff;
	line-height:1.8em;
	margin-bottom: 16.00px;
	text-align:left;
	text-transform:uppercase;
}

.project-info-section .content-box .info-list li span{
	position:relative;
	display:block;
	text-transform:capitalize;
}

.project-info-section .content-box .info-list li:last-child{
	margin-bottom: 12.00px;
}

/* More Projects */

.project-info-section .more-projects{
	position:relative;
	margin-top: 48.00px;
	margin-bottom: 49.00px;
}

.project-info-section .more-projects .more{
	position:relative;
	color:#15192b;
	font-size: 18.00px;
	-webkit-transition:all 300ms ease;
	-ms-transition:all 300ms ease;
	-o-transition:all 300ms ease;
	-moz-transition:all 300ms ease;
	transition:all 300ms ease;
}

.project-info-section .more-projects .more:hover{
	color:#f87494;
}

.project-info-section .more-projects .more .arrow{
	position:relative;
	font-size: 17.00px;
}

.project-info-section .more-projects .more-project{
	position:absolute;
	left:50%;
	top:-10px;
	width:50px;
	height:50px;
	color:#ffffff;
	font-size: 18.00px;
	text-align:center;
	line-height:50px;
	border-radius:50%;
	margin-left:-25px;
	text-transform:uppercase;
	background-color:#15192b;
}

.related-project-section{
	position:relative;
	padding-top: 33.00px;
	padding-bottom: 96.00px;
}

.blog-page-section{
	position:relative;
	padding:100px 0px 100px;
}

/* News Block Three */

.news-block-three{
	position:relative;
	margin-bottom: 50.00px;
}

.news-block-three .inner-box{
	position:relative;
}

.news-block-three .inner-box .image{
	position:relative;
}

.news-block-three .inner-box .image img{
	position:relative;
	width:100%;
	display:block;
}

.news-block-three .inner-box .image .overlay-box{
	position:absolute;
	left:0px;
	top:0px;
	right:0px;
	bottom:0px;
}

.news-block-three .inner-box .image .overlay-box:before{
	position:absolute;
	content:'';
	left:0px;
	top:0px;
	right:0px;
	bottom:0px;
	background-image: -ms-linear-gradient(top, rgba(255,255,255,0) 0%, #000000 100%);
	background-image: -moz-linear-gradient(top, rgba(255,255,255,0) 0%, #000000 100%);
	background-image: -o-linear-gradient(top, rgba(255,255,255,0) 0%, #000000 100%);
	background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, rgba(255,255,255,0)), color-stop(100, #000000));
	background-image: -webkit-linear-gradient(top, rgba(255,255,255,0) 0%, #000000 100%);
	background-image: linear-gradient(to bottom, rgba(255,255,255,0) 0%, #000000 100%);
}

.news-block-three .inner-box .image .overlay-box .overlay-inner{
	position:absolute;
	left:40px;
	bottom:40px;
}

.news-block-three .inner-box .image .overlay-box .overlay-inner .content{
	position:relative;
}

.news-block-three .inner-box .image .overlay-box .overlay-inner .content .title{
	position:relative;
	color:#49bc60;
	font-size: 18.00px;
}

.news-block-three .inner-box .image .overlay-box h3{
	position:relative;
	font-weight:500;
	line-height:1.3em;
	margin-top: 20.00px;
}

.news-block-three .inner-box .image .overlay-box h3 a{
	position:relative;
	color:#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;
}

.news-block-three .inner-box .image .overlay-box h3 a:hover{
	color:#ff799e;
}

.news-block-three .inner-box .image .overlay-box .text{
	position:relative;
	color:#ffffff;
	opacity:0.9;
	font-size: 18.00px;
	line-height:1.8em;
	max-width:600px;
	margin-top: 20.00px;
	margin-bottom: 39.00px;
}

.news-block-three .inner-box .image .overlay-box .go{
	position:relative;
	width:80px;
	height:80px;
	color:#ffffff;
	font-size: 18.00px;
	padding-top: 39.00px;
	border-radius:50%;
	text-align:center;
	display:inline-block;
	background-color:#ff799e;
	transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
}

.news-block-three .inner-box .image .overlay-box .go .arrow{
	font-size: 17.00px;
	transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
}

.news-block-three .inner-box .image .overlay-box .go:hover{
	padding-right:10px;
}

.news-block-three .inner-box .image .overlay-box .go:hover .arrow{
	margin-left:-45px;
}

/*** 

====================================================================
	Sidebar Page Container
====================================================================

***/

.sidebar-page-container{
	position:relative;
	padding:100px 0px 80px;
}

.sidebar-page-container .content-side,
.sidebar-page-container .sidebar-side{
	margin-bottom: 49.00px;
}

.sticky-top{
	top:100px;
}

/*Sidebar Widget*/

.sidebar-widget{
    position: relative;
    margin-bottom: 50.00px;
}

.sidebar-widget .widget-content{
    position: relative;
	padding:30px 35px;
	background-color:#ffffff;
	box-shadow:0px 0px 20px rgba(0,0,0,0.07);
}

/*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:38px;
	padding:10px 50px 10px 25px;
	border:1px solid #eaeaea;
	background:none;
	display:block;
	font-size: 18.00px;
	width:100%;
	height:50px;
	border-radius:50px;
	background-color:#ffffff;
	transition:all 500ms ease;
	-moz-transition:all 500ms ease;
	-webkit-transition:all 500ms ease;
	-ms-transition:all 500ms ease;
	-o-transition:all 500ms ease;
}

.sidebar .search-box .form-group button{
	position:absolute;
	right:0px;
	top:0px;
	height:50px;
	width:65px;
	display:block;
	font-size: 18.00px;
	color:#ffffff;
	cursor:pointer;
	line-height:100%;
	font-weight:normal;
	background:#62c274;
	border-radius:50px;
}

.sidebar-title{
	position:relative;
	margin-bottom: 39.00px;
}

.sidebar-title h4{
	position: relative;
    color: #0c0d24;
    font-weight: 500;
    line-height: 1.3em;
	font-size: 23.00px;
    text-transform: capitalize;
}

/* Blog Cat */

.blog-cat{
	position:relative;
}

.blog-cat li{
	position:relative;
	margin-bottom: 30.00px;
}

.blog-cat li:last-child{
	margin-bottom: 12.00px;
}

.blog-cat li a{
	position:relative;
	color:#0c0d24;
	font-size: 18.00px;
	display:block;
	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;
}

.blog-cat li a:hover{
	color:#ff799e;
}

.blog-cat li:last-child a{
	border-bottom:0px;
}

/* Post Widget */

.sidebar .popular-posts .post{
	position:relative;
	font-size: 18.00px;
	color:#666666;
	padding:0px 0px;
	min-height: 85px;
    margin-bottom: 39.00px;
	border-bottom:1px solid #dedde2;
}

.sidebar .popular-posts .post:last-child{
	margin-bottom: 12.00px;
	border-bottom:none;
	min-height:auto;
}

.sidebar .popular-posts .post .text{
	position:relative;
	top:-4px;
	font-size: 18.00px;
	margin:0px 0px 0px;
	font-weight:500;
	color:#0c0d24;
	line-height:1.7em;
	text-transform:capitalize;
}

.sidebar .popular-posts .post .text a{
	color:#0c0d24;
	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:#ff7a9f;
}

.sidebar .popular-posts .post-info{
	position:relative;
	font-size: 15.00px;
	color:#49bc60;
	font-weight:400;
}

/* Popular Tags */

.sidebar .popular-tags a{
	position:relative;
	display:inline-block;
	line-height:24px;
	margin:0px 2px 8px 0px;
	color:#0c0d24;
	text-align:center;
	font-size: 19.00px;
	font-weight:400;
	border-radius:0px;
	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{
	color:#ff799e;
}

/* News Block Four */

.news-block-four{
	position:relative;
	margin-bottom: 50.00px;
}

.news-block-four .inner-box{
	position:relative;
}

.news-block-four .inner-box .image{
	position:relative;
	overflow:hidden;
	background-color:#ff799e;
}

.news-block-four .inner-box .image img{
	position:relative;
	width:100%;
	display:block;
	transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
}

.news-block-four .inner-box:hover .image img{
	opacity:0.5;
	transform:scale(1.02,1.02);
}

.news-block-four .inner-box .lower-content{
	position:relative;
	padding:32px 35px 30px;
	background-color:#fbf7f8;
}

.news-block-four .inner-box .lower-content .post-meta{
	position:relative;
}

.news-block-four .inner-box .lower-content .post-meta li{
	position:relative;
	margin-right:12px;
	color:#49bc60;
	font-size: 19.00px;
	display:inline-block;
}

.news-block-four .inner-box .lower-content .post-meta li .icon{
	position:relative;
	margin-right:5px;
	font-weight:400;
}

.news-block-four .inner-box .lower-content .post-date{
	position:relative;
	color:#15192b;
	font-size: 18.00px;
	font-weight:400;
	opacity:0.80;
	margin-bottom: 30.00px;
}

.news-block-four .inner-box .lower-content h3{
	position:relative;
	line-height:1.3em;
	color:#0c0d24;
	font-weight:500;
	margin-bottom: 38.00px;
	margin-top: 17.00px;
}

.news-block-four .inner-box .lower-content h3 a{
	position:relative;
	color:#0c0d24;
	transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
}

.news-block-four .inner-box .lower-content h3 a:hover{
	color:#ff799e;
}

.news-block-four .inner-box .lower-content .text{
	position:relative;
	color:#0c0d24;
	font-size: 18.00px;
	opacity:1;
	line-height:2em;
}

.news-block-four .inner-box .lower-content .more{
	position:absolute;
	right:30px;
	top:-30px;
	width:60px;
	height:60px;
	color:#ffffff;
	font-size: 18.00px;
	line-height:60px;
	text-align:center;
	border-radius:50px;
	display:inline-block;
	background-color:#ff799e;
}

/* News Block Five */

.news-block-five{
	position:relative;
	margin-bottom: 50.00px;
}

.news-block-five .inner-box{
	position:relative;
}

.news-block-five .inner-box .image{
	position:relative;
	overflow:hidden;
}

.news-block-five .inner-box .image img{
	position:relative;
	width:100%;
	display:block;
	transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
}

.news-block-five .inner-box:hover .image img{
	transform:scale(1.02,1.02);
}

.news-block-five .inner-box .image .overlay-box{
	position:absolute;
	left:0px;
	top:0px;
	right:0px;
	bottom:0px;
	color:#ffffff;
	text-align:center;
	background:rgba(7,8,17,0.80);
	-webkit-transition:all 700ms ease;
	-ms-transition:all 700ms ease;
	-o-transition:all 700ms ease;
	transition:all 700ms ease;
}

.news-block-five .inner-box .image .overlay-inner{
	position:absolute;
	left:0px;
	top:0px;
	width:100%;
	height:100%;
	display:table;
	vertical-align:middle;
	padding:10px 10px;
}

.news-block-five .inner-box .image .overlay-inner .content{
	position:relative;
	display:table-cell;
	vertical-align:middle;
}

.news-block-five .inner-box .image .overlay-inner .link{
	position:relative;
	color:#ffffff;
	font-size: 23.00px;
	font-weight:400;
	line-height:1.6em;
}

.news-block-five .inner-box .image .overlay-inner .icon{
	position:absolute;
	opacity:0.15;
	left:0px;
	right:0px;
	font-size: 81.00px;
	line-height:1em;
	margin-top:-22px;
}

/*** 

====================================================================
	Blog Single
====================================================================

***/

.blog-single{
	position:relative;
}

.blog-single .inner-box{
	position:relative;
}

.blog-single .inner-box .upper-box{
	position:relative;
	padding-bottom: 37.00px;
	margin-bottom: 32.00px;
	border-bottom:1px solid #f4f4f4;
}

.blog-single .inner-box .upper-box .author{
	position:relative;
}

.blog-single .inner-box .upper-box .author .author-inner{
	position:relative;
	padding-left:70px;
	color:#15192b;
	font-size: 19.00px;
	padding-top: 18.00px;
}

.blog-single .inner-box .upper-box .author .author-inner .author-image{
	position:absolute;
	left:0px;
	top:0px;
	width:54px;
	height:54px;
	overflow:hidden;
	border-radius:50px;
}

.blog-single .inner-box .upper-box .post-date{
	position:relative;
	color:#62c274;
	font-size: 19.00px;
	margin-top: 17.00px;
}

.blog-single .inner-box .upper-box h2{
	position:relative;
	color:#15192b;
	font-weight:500;
	line-height:1.2em;
	font-size: 40.00px;
	margin-top: 48.00px;
}

.blog-single .inner-box p{
	position:relative;
	color:#15192b;
	font-size: 19.00px;
	line-height:1.8em;
	opacity:1;
}

.blog-single .inner-box blockquote{
	position:relative;
	color:#15192b;
	font-size: 23.00px;
	font-weight:500;
	line-height:1.7em;
	padding:20px 30px;
	margin:35px 0px;
	border-left:10px solid #62c274;
}

.blog-single .inner-box blockquote .icon{
	position:absolute;
	left:50%;
	top:0px;
	z-index:-1;
}

.blog-single .inner-box h4{
	position:relative;
	color:#15192b;
	font-weight:500;
	line-height:1.2em;
	margin-top: 31.00px;
	margin-bottom: 24.00px;
}

.blog-single .inner-box .image{
	position:relative;
	margin-top: 44.00px;
	margin-bottom: 50.00px;
}

.blog-single .inner-box .image img{
	position:relative;
	width:100%;
	display:block;
}

/* Post Share Options */

.blog-single .post-share-options{
	position:relative;
	margin-top: 48.00px;
	padding:40px 0px 40px;
	border-top:1px solid #e4deee;
	border-bottom:1px solid #e4deee;
}

.blog-single .post-share-options .tags span{
	font-size: 18.00px;
	color:#424d6c;
	font-weight:400;
	margin-right:8px;
	text-transform: capitalize;
}

.blog-single .post-share-options .tags a{
	position:relative;
	color:#15192b;
	font-size: 19.00px;
	font-weight:400;
	line-height: 1em;
	margin-right: 4px;
	opacity:1;
	display: inline-block;
	text-transform:capitalize;
	transition:all 500ms ease;
	-moz-transition:all 500ms ease;
	-webkit-transition:all 500ms ease;
	-ms-transition:all 500ms ease;
	-o-transition:all 500ms ease;
}

.blog-single .post-share-options .tags a:last-child{
	margin-right: 0px;
}

.blog-single .post-share-options .tags{
	position:relative;
	color:#ff4800;
	font-size: 18.00px;
	font-weight:400;
	margin-top: 15.00px;
}

.blog-single .post-share-options .tags a:hover{
	color:#ff799e;
}

.blog-single .post-share-options .social-box{
	position:relative;
}

.blog-single .post-share-options .social-box > span{
	font-size: 19.00px;
	color:#222222;
	font-weight:700;
	margin-right:0px;
	text-transform: capitalize;
}

.blog-single .post-share-options .social-box li{
	position:relative;
	margin-left:4px;
	display:inline-block;
}

.blog-single .post-share-options .social-box li a{
	position:relative;
	width:45px;
	height:45px;
	font-size: 19.00px;
	color:#ffffff;
	text-align:center;
	line-height:45px;
	border-radius:50px;
	display:inline-block;
	background-color:#3b5999;
	-webkit-transition:all 300ms ease;
	-ms-transition:all 300ms ease;
	-o-transition:all 300ms ease;
	-moz-transition:all 300ms ease;
	transition:all 300ms ease;
}

.blog-single .post-share-options .social-box li.twitter a{
	background-color:#55acee;
}

.blog-single .post-share-options .social-box li.pinterest a{
	background-color:#dd4b39;
}

.blog-single .post-share-options .social-box li.linkedin a{
	background-color:#0077b5;
}

.blog-single .related-posts{
	position:relative;
	margin-top: 44.00px;
}

.blog-single .related-posts h5{
	position:relative;
	color:#414143;
	font-weight:500;
	margin-bottom: 39.00px;
	text-transform:uppercase;
}

.related-post{
	position:relative;
	margin-bottom: 50.00px;
}

.related-post .post-inner{
	position:relative;
}

.related-post .post-inner .image{
	position:relative;
}

.related-post .post-inner .image img{
	position:relative;
	width:100%;
	display:block;
}

.related-post .post-inner .lower-box{
	position:relative;
	padding-top: 23.00px;
}

.related-post .post-inner .lower-box .post-date{
	position: relative;
    color: #62c274;
    font-size: 19.00px;
    margin-top: 17.00px;
	margin-bottom: 21.00px;
}

.related-post .post-inner .lower-box h5{
	position:relative;
	line-height:1.4em;
	font-weight:500;
}

.related-post .post-inner .lower-box h5 a{
	position:relative;
	color:#414143;
	-webkit-transition:all 300ms ease;
	-ms-transition:all 300ms ease;
	-o-transition:all 300ms ease;
	-moz-transition:all 300ms ease;
	transition:all 300ms ease;
}

.related-post .post-inner .lower-box h5 a:hover{
	color: #62c274;
}

/* Author Box */

.blog-author-box{
	position:relative;
	margin-top: 38.00px;
}

.blog-author-box h6{
	position:relative;
	color:#394370;
	font-weight:500;
	margin-bottom: 39.00px;
}

.blog-author-box .author-inner{
	position:relative;
	padding:30px 30px;
	background-color:#f9f9f9;
}

.blog-author-box .author-inner .inner-box{
	position:relative;
	padding-left:145px;
}

.blog-author-box .author-inner .inner-box .image{
	position:absolute;
	left:0px;
	top:0px;
	width:107px;
	margin-top: 4.00px;
	overflow:hidden;
	border-radius:50%;
	margin-bottom: 39.00px;
}

.blog-author-box .author-inner .inner-box h6{
	position:relative;
	color:#ff799e;
	font-weight:500;
	margin-bottom: 21.00px;
	display:inline-block;
	text-transform:uppercase;
}

.blog-author-box .author-inner .inner-box .text{
	position:relative;
	color:#212121;
	display:block;
	font-size: 19.00px;
	font-weight:400;
	opacity:0.90;
	line-height:1.8em;
	margin-bottom: 16.00px;
}

.blog-author-box .author-inner .social-box{
	position:relative;
}

.blog-author-box .author-inner .social-box li{
	position:relative;
	margin-right:10px;
	display:inline-block;
}

.blog-author-box .author-inner .social-box li a{
	position:relative;
	color:#212121;
	font-size: 19.00px;
	-webkit-transition:all 300ms ease;
	-ms-transition:all 300ms ease;
	-o-transition:all 300ms ease;
	-moz-transition:all 300ms ease;
	transition:all 300ms ease;
}

.blog-author-box .author-inner .social-box li a:hover{
	color:#ff799e;
}

/*** 

====================================================================
	Comments Area
====================================================================

 ***/

.sidebar-page-container .comments-area{
	position:relative;
	margin-top: 67.00px;
}

.sidebar-page-container .group-title{
	position:relative;
	margin-bottom: 40.00px;
}

.sidebar-page-container .group-title h5{
	position:relative;
	color:#19191d;
	font-size: 21.00px;
	font-weight:500;
	text-transform:uppercase;
}

.sidebar-page-container .comments-area .comment-box{
	position:relative;
	padding:0px 0px 50px;
	margin-bottom: 52.00px;
	-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 #f1f1f1;
}

.sidebar-page-container .comments-area .comment-box:last-child{
	margin-bottom: 12.00px;
	padding-bottom: 8.00px;
	border-bottom:none;
}

.sidebar-page-container .comments-area .comment{
	position:relative;
	font-size: 18.00px;
	min-height:120px;
	padding-left:140px;
}

.sidebar-page-container .comments-area .reply-comment{
	padding-left:130px;	
}

.sidebar-page-container .comments-area .comment-box .author-thumb{
	position:absolute;
	left:0px;
	top:0px;
	width:107px;
	height:107px;
	border-radius:50%;
	margin-bottom: 12.00px;
	overflow:hidden;
}

.sidebar-page-container .comments-area .comment-box .author-thumb img{
	width:100%;
	display:block;
}

.sidebar-page-container .comments-area .comment-info{
	margin-bottom: 16.00px;
}

.sidebar-page-container .comments-area .comment-box strong{
	font-size: 18.00px;
	font-weight:500;
	color:#424d6c;
	display:block;
	line-height:1.3em;
	text-transform:capitalize;
}

.sidebar-page-container .comments-area .comment-box .text{
	position:relative;
	color:#19191d;
	font-size: 19.00px;
	opacity:0.95;
	line-height:1.9em;
	margin-bottom: 12.00px;
}

.sidebar-page-container .comments-area .comment-info .comment-time{
	font-size: 15.00px;
	color:#424d6c;
	margin-top: 22.00px;
	font-weight:400;
	display:block;
}

.sidebar-page-container .comments-area .comment-box .theme-btn{
	position:relative;
	font-size: 18.00px;
	color:#49bc60;
	font-weight:400;
	margin-top: 17.00px;
	padding:5px 20px;
	display:inline-block;
	text-transform:capitalize;
	background-color:#ecf5ee;
}

.sidebar-page-container .comments-area .comment-box .theme-btn:hover{
	color:#ffffff;
	background-color:#49bc60;
}

/*** 

====================================================================
	Comment Form
====================================================================

 ***/

.comment-form{
	position:relative;
	margin-top: 56.00px;
}

.sidebar-page-container .comment-form .group-title{
	margin-bottom: 32.00px;
}

.comment-form .form-group{
	position:relative;
	margin-bottom: 32.00px;
}

.comment-form .form-group .form-text{
	position:relative;
	color:#19191d;
	font-size: 19.00px;
	opacity:0.7;
}

.comment-form .form-group input[type="text"],
.comment-form .form-group input[type="password"],
.comment-form .form-group input[type="tel"],
.comment-form .form-group input[type="email"],
.comment-form .form-group select{
	position:relative;
	display:block;
	width:100%;
	line-height:26px;
	padding:10px 0px;
	height:56px;
	color:#222222;
	font-size: 18.00px;
	border-radius:0px;
	background:none;
	border-bottom:1px solid #373739;
	-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::placeholder,
.comment-form .form-group textarea::placeholder{
	color:#222222;
	text-transform:capitalize;
}

.comment-form .form-group input[type="text"]:focus,
.comment-form .form-group input[type="password"]:focus,
.comment-form .form-group input[type="tel"]:focus,
.comment-form .form-group input[type="email"]:focus,
.comment-form .form-group select:focus,
.comment-form .form-group textarea:focus{
	border-color:#49bc60;
}

.comment-form .form-group textarea{
	position:relative;
	display:block;
	width:100%;
	line-height:26px;
	padding:15px 0px;
	color:#222222;
	height:135px;
	font-size: 18.00px;
	resize:none;
	border-radius:0px;
	background:none;
	border-bottom:1px solid #373739;
	-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 .submit-btn{
	position:relative;
	cursor:pointer;
	color:#ffffff;
	font-size: 18.00px;
	border-radius:5px;
	padding:16px 38px;
	letter-spacing:1px;
	margin-top: 29.00px;
	text-transform:uppercase;
	background-color:#373739;
}

/* Error Section */

.error-section{
	position:relative;
	padding:180px 0px 140px;
	background-size:cover;
}

.error-section:before{
	position:absolute;
	content:'';
	left:0px;
	right:0px;
	bottom:0px;
	opacity:1;
	height:60%;
	background-image: -ms-linear-gradient(top, rgba(0,0,0,0) 0%, #FFFFFF 100%);
	background-image: -moz-linear-gradient(top, rgba(0,0,0,0) 0%, #FFFFFF 100%);
	background-image: -o-linear-gradient(top, rgba(0,0,0,0) 0%, #FFFFFF 100%);
	background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, rgba(0,0,0,0)), color-stop(100, #FFFFFF));
	background-image: -webkit-linear-gradient(top, rgba(0,0,0,0) 0%, #FFFFFF 100%);
	background-image: linear-gradient(to bottom, rgba(0,0,0,0) 0%, #FFFFFF 100%);
}

.error-section .content{
	position:relative;
	text-align:center;
}

.error-section .error-image{
	position:relative;
	margin-bottom: 49.00px;
}

.error-section h3{
	position:relative;
	color:#ffffff;
	font-weight:600;
	line-height:1.3em;
	text-transform:uppercase;
}

.error-section .text{
	position:relative;
	color:#0b0c16;
	font-size: 18.00px;
	font-weight:400;
	margin-top: 29.00px;
	line-height:1.8em;
	margin-bottom: 50.00px;
}

/* Contact Page Title */

.contact-page-title{
	position:relative;
	padding-top: 365.00px;
	background-size:cover;
	background-repeat:no-repeat;
}

.contact-page-title:before{
	position:absolute;
	content:'';
	left:0px;
	right:0px;
	bottom:0px;
	opacity:1;
	height:60%;
	background-image: -ms-linear-gradient(top, rgba(0,0,0,0) 0%, #FFFFFF 100%);
	background-image: -moz-linear-gradient(top, rgba(0,0,0,0) 0%, #FFFFFF 100%);
	background-image: -o-linear-gradient(top, rgba(0,0,0,0) 0%, #FFFFFF 100%);
	background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, rgba(0,0,0,0)), color-stop(100, #FFFFFF));
	background-image: -webkit-linear-gradient(top, rgba(0,0,0,0) 0%, #FFFFFF 100%);
	background-image: linear-gradient(to bottom, rgba(0,0,0,0) 0%, #FFFFFF 100%);
}

.info-boxed{
	position:relative;
	padding-bottom: 42.00px;
}

.info-boxed .inner-box{
	position:relative;
	padding:45px 45px;
	border-radius:7px;
	background-color:#ffffff;
	background-position:right bottom;
	background-repeat:no-repeat;
}

.info-boxed .inner-box .content{
	position:relative;
	padding-left:90px;
}

.info-boxed .inner-box .content .icon{
	position:absolute;
	left:0px;
	top:0px;
	width:70px;
	height:70px;
	line-height:70px;
	border-radius:50%;
	background-image: -ms-linear-gradient(left, #51C26E 0%, #86e8c9 100%);
	background-image: -moz-linear-gradient(left, #51C26E 0%, #86e8c9 100%);
	background-image: -o-linear-gradient(left, #51C26E 0%, #86e8c9 100%);
	background-image: -webkit-gradient(linear, left top, right top, color-stop(0, #51C26E), color-stop(100, #86e8c9));
	background-image: -webkit-linear-gradient(left, #51C26E 0%, #86e8c9 100%);
	background-image: linear-gradient(to right, #51C26E 0%, #86e8c9 100%);
}

.info-boxed .inner-box .content h5{
	position:relative;
	color:#282828;
	font-weight:500;
	margin-bottom: 20.00px;
}

.info-boxed .inner-box .content ul{
	position:relative;
}

.info-boxed .inner-box .content ul li{
	position:relative;
	margin-bottom: 5.00px;
}

.info-boxed .inner-box .content ul li a{
	position:relative;
	color:#282828;
	font-size: 18.00px;
	opacity:0.95;
}

.info-boxed:nth-child(2) .inner-box .content .icon{
	background-image: -ms-linear-gradient(left, #ED7CA9 0%, #838eec 100%);
	background-image: -moz-linear-gradient(left, #ED7CA9 0%, #838eec 100%);
	background-image: -o-linear-gradient(left, #ED7CA9 0%, #838eec 100%);
	background-image: -webkit-gradient(linear, left top, right top, color-stop(0, #ED7CA9), color-stop(100, #838eec));
	background-image: -webkit-linear-gradient(left, #ED7CA9 0%, #838eec 100%);
	background-image: linear-gradient(to right, #ED7CA9 0%, #838eec 100%);
}

.contact-page-section{
	position:relative;
	padding:90px 0px 170px;
	margin-bottom:-160px;
	background-image: -ms-linear-gradient(top, #ffffff 0%, #F7F3F3 100%);
	background-image: -moz-linear-gradient(top, #ffffff 0%, #F7F3F3 100%);
	background-image: -o-linear-gradient(top, #ffffff 0%, #F7F3F3 100%);
	background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #ffffff), color-stop(100, #F7F3F3));
	background-image: -webkit-linear-gradient(top, #ffffff 0%, #F7F3F3 100%);
	background-image: linear-gradient(to bottom, #ffffff 0%, #F7F3F3 100%);
}

.contact-page-section .form-column{
	position:relative;
	margin-bottom: 49.00px;
}

.contact-page-section .form-column .inner-column{
	position:relative;
}

.contact-page-section .form-column h3{
	position:relative;
	color:#282828;
	font-weight:500;
	line-height:1.3em;
	margin-bottom: 39.00px;
}

/*** 

====================================================================
	Contact Form
====================================================================

 ***/

.contact-form{
	position:relative;
}

.contact-form .form-group{
	position:relative;
	margin-bottom: 32.00px;
}

.contact-form .form-group input[type="text"],
.contact-form .form-group input[type="password"],
.contact-form .form-group input[type="tel"],
.contact-form .form-group input[type="email"],
.contact-form .form-group select{
	position:relative;
	display:block;
	width:100%;
	line-height:26px;
	padding:10px 0px;
	height:56px;
	color:#222222;
	font-size: 18.00px;
	border-radius:0px;
	background:none;
	border-bottom:1px solid #373739;
	-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-form .form-group input::placeholder,
.contact-form .form-group textarea::placeholder{
	color:#222222;
	text-transform:capitalize;
}

.contact-form .form-group input[type="text"]:focus,
.contact-form .form-group input[type="password"]:focus,
.contact-form .form-group input[type="tel"]:focus,
.contact-form .form-group input[type="email"]:focus,
.contact-form .form-group select:focus,
.contact-form .form-group textarea:focus{
	border-color:#ff799e;
}

.contact-form .form-group textarea{
	position:relative;
	display:block;
	width:100%;
	line-height:26px;
	padding:15px 0px;
	color:#222222;
	height:135px;
	font-size: 18.00px;
	resize:none;
	border-radius:0px;
	background:none;
	border-bottom:1px solid #373739;
	-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-form .submit-btn{
	position:relative;
	cursor:pointer;
	color:#ffffff;
	font-size: 18.00px;
	border-radius:5px;
	padding:16px 38px;
	letter-spacing:1px;
	margin-top: 29.00px;
	text-transform:uppercase;
	background-color:#373739;
	-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-form .submit-btn:hover{
	background-color:#ff799e;
}

.contact-page-section .map-column{
	position:relative;
	margin-bottom: 49.00px;
}

.contact-page-section .map-column .inner-column{
	position:relative;
}

.contact-page-section .map-column iframe{
	height:520px;
	width:100%;
	border:12px solid #ffffff;
}