/* oSaaS Multipurpose HTML Template */

/************ TABLE OF CONTENTS ***************
1. Fonts
2. Reset
3. Global
4. Main Header / Header Two / Three / Four / Five
5. Banner Section/ Two
6. Featured Section / Two / Three / Four / Five / Dix
7. Clients Section / Two
8. Framework Section
9. Platform Intro Section
10. Price Section
11. Counter Section
12. Partners Section
13. Blog Section
14. Main Footer / Two / Three / Four 
15. About Section
16. SEO Section
17. About Software Section
18. Agents Section
19. Intro Section
20. Pricing Section
21. Journer Section
22. Facilities Section
23. Team Section
24. Subscribe Section
25. Testimonial Section
26. Products Section
27. Download Section
28. Choose Section
29. Process Section
30. CTA Section
31. Contact Info Section
32. Software Section
33. Tracking Section
34. Demo Section
35. Page Title Section
36. Services Section
37. Faq's Section
38. Process Section
39. Portfolio Section
40. Blog Widgets
41. Not Found
42. Contact Form
43. Map Section

**********************************************/

/* 
	font-family: 'Roboto', sans-serif;
	font-family: 'Ubuntu', sans-serif;
	font-family: 'Poppins', sans-serif;
*/

@import url('flaticon.css');
@import url('animate.css');
@import url('owl.css');
@import url('elegenticon.css');
@import url('linearicons.css');
@import url('jquery-ui.css');
@import url('animation.css');
@import url('fontawesome.min.css');
@import url('jquery.timepicker.min.css');
@import url('jquery.fancybox.min.css');
@import url('jquery.mCustomScrollbar.min.css');

@font-face {
  font-family: 'Gilroy-ExtraBold';
  src:  url('../fonts/Gilroy-ExtraBold.eot');
  src:  url('../fonts/Gilroy-ExtraBold.eot#iefix') format('embedded-opentype'),
    url('../fonts/Gilroy-ExtraBold.ttf') format('truetype'),
    url('../fonts/Gilroy-ExtraBold.woff') format('woff'),
    url('../fonts/Gilroy-ExtraBold.svg#Gilroy-ExtraBold-Reg') format('svg');
  font-weight: normal;
  font-style: normal;
  font-display: block;
}

/*** 

====================================================================
	Reset
====================================================================

 ***/
 
* {
	margin:0px;
	padding:0px;
	border:none;
	outline:none;
}

/*** 

====================================================================
	Global Settings
====================================================================

 ***/

body {
	font-family: 'Roboto', sans-serif;
	font-size:14px;
	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:#3246d3;
}

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: 'Ubuntu', sans-serif; 
}

.pull-left{
	float:left;
}

.pull-right{
	float:right;
}

/* Typography */

h1{
	font-size:80px;
}

h2{
	font-size:30px;
}

h3{
	font-size:26px;
}

h4{
	font-size:24px;
}

h5{
	font-size:20px;
}

h6{
	font-size:18px;
}

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: 14px;
	line-height: 30px;
	color: #ffffff;
	padding: 10px 32px;
	font-weight: 700;
	overflow: hidden;
	border-radius:5px;
	background-color: #3246d3;
	text-transform: capitalize;
	
}

.btn-style-one:before{
	position: absolute;
	content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0;
    background-color: #007bff;
    -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;
}

/* Btn Style Two */

.btn-style-two{
	position: relative;
	display: inline-block;
	font-size: 16px;
	line-height: 30px;
	color: #ffffff;
	padding: 15px 35px;
	font-weight: 700;
	overflow:hidden;
	cursor:pointer;
	border-radius:3px;
	text-transform:capitalize;
	background-color: #007bff;
	box-shadow:0px 10px 30px rgba(255,95,99,0.30);
}

.btn-style-two .txt i{
	position: relative;
	font-style:normal;
	margin-right:10px;
	font-weight:400;
}

.btn-style-two:before{
	position: absolute;
	content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0;
    background-color: #3246d3;
    -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-two .txt{
	position:relative;
	z-index:1;
}

.btn-style-two:hover::before{
    opacity: 1;
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
}

.btn-style-two:hover{
	color: #ffffff;
}

/* Btn Style Three */

.btn-style-three{
	position: relative;
	display: inline-block;
	font-size: 16px;
	line-height: 30px;
	color: #19274d;
	padding: 13px 35px;
	font-weight: 700;
	overflow:hidden;
	cursor:pointer;
	border-radius:3px;
	text-transform:capitalize;
	border:2px solid #e9ebef;	
}

.btn-style-three:before{
	position: absolute;
	content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    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-three .txt{
	position:relative;
	z-index:1;
}

.btn-style-three .txt i{
	position:relative;
	font-weight:300;
	margin-right:10px;
	-webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}

.btn-style-three:hover::before{
    opacity: 1;
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
}

.btn-style-three:hover{
	color: #ffffff;
	border-color:#222222;
}

/* Btn Style Four */

.btn-style-four{
	position: relative;
	display: inline-block;
	font-size: 16px;
	line-height: 30px;
	color: #ffffff;
	padding: 12px 36px;
	font-weight: 700;
	overflow: hidden;
	border-radius: 50px;
	overflow:hidden;
	text-transform: capitalize;
	background-image: -ms-linear-gradient(left, #007bff 0%, #a1bbff 100%);
	background-image: -moz-linear-gradient(left, #007bff 0%, #a1bbff 100%);
	background-image: -o-linear-gradient(left, #007bff 0%, #a1bbff 100%);
	background-image: -webkit-gradient(linear, left top, right top, color-stop(0, #007bff), color-stop(100, #a1bbff));
	background-image: -webkit-linear-gradient(left, #007bff 0%, #a1bbff 100%);
	background-image: linear-gradient(to right, #007bff 0%, #a1bbff 100%);
}

.btn-style-four:before{
	position: absolute;
	content: '';
    top: -2px;
    left: -2px;
    right:-2px;
	bottom:-2px;
    z-index: 1;
    opacity: 0;
	border-radius:50px;
    -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(left, #a1bbff 0%, #007bff 100%);
	background-image: -moz-linear-gradient(left, #a1bbff 0%, #007bff 100%);
	background-image: -o-linear-gradient(left, #a1bbff 0%, #007bff 100%);
	background-image: -webkit-gradient(linear, left top, right top, color-stop(0, #a1bbff), color-stop(100, #007bff));
	background-image: -webkit-linear-gradient(left, #a1bbff 0%, #007bff 100%);
	background-image: linear-gradient(to right, #a1bbff 0%, #007bff 100%);
}

.btn-style-four .txt{
	position:relative;
	z-index:1;
}

.btn-style-four i{
	font-weight:300;
	margin-right:10px;
}

.btn-style-four:hover::before{
    opacity: 1;
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
}

.btn-style-four:hover{
	color: #ffffff;
	border-color:#00e49a;
}

/* Btn Style Five */

.btn-style-five{
	position: relative;
	display: inline-block;
	font-size: 16px;
	line-height: 30px;
	color: #19274d;
	padding: 12px 36px;
	font-weight: 700;
	overflow: hidden;
	border-radius: 50px;
	overflow:hidden;
	background-color:#ffffff;
	text-transform: capitalize;
}

.btn-style-five:before{
	position: absolute;
	content: '';
    top: -2px;
    left: -2px;
    right:-2px;
	bottom:-2px;
    z-index: 1;
    opacity: 0;
    background-color: #19274d;
    -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-five .txt{
	position:relative;
	z-index:1;
}

.btn-style-five i{
	position:relative;
	font-weight:300;
	margin-right:10px;
}

.btn-style-five:hover::before{
    opacity: 1;
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
}

.btn-style-five:hover{
	color: #ffffff;
}

/* Btn Style Six */

.btn-style-six{
	position: relative;
	display: inline-block;
	font-size: 16px;
	line-height: 30px;
	color: #ffffff;
	padding: 14px 42px;
	font-weight: 700;
	overflow: hidden;
	border-radius: 50px;
	overflow:hidden;
	background-color:#19274d;
	text-transform: capitalize;
}

.btn-style-six:before{
	position: absolute;
	content: '';
    top: -2px;
    left: -2px;
    right:-2px;
	bottom:-2px;
    z-index: 1;
    opacity: 0;
    background-color: #ffffff;
    -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 i{
	position:relative;
	font-weight:300;
	margin-right:10px;
}

.btn-style-six:hover::before{
    opacity: 1;
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
}

.btn-style-six:hover{
	color: #19274d;
}

/* Btn Style Seven */

.btn-style-seven{
	position: relative;
	display: inline-block;
	font-size: 16px;
	line-height: 30px;
	color: #19274d;
	padding: 13px 43px;
	font-weight: 700;
	overflow:hidden;
	cursor:pointer;
	border-radius:50px;
	text-transform:capitalize;
	border:2px solid #fff1f1;	
}

.btn-style-seven:before{
	position: absolute;
	content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0;
    background-color: #007bff;
    -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-seven .txt{
	position:relative;
	z-index:1;
}

.btn-style-seven .txt i{
	position:relative;
	font-weight:300;
	margin-right:10px;
	-webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}

.btn-style-seven:hover::before{
    opacity: 1;
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
}

.btn-style-seven:hover{
	color: #ffffff;
	border-color:#007bff;
}

/* Btn Style Eight */

.btn-style-eight{
	position: relative;
	display: inline-block;
	font-size: 16px;
	line-height: 30px;
	color: #ffffff;
	padding: 10px 38px;
	font-weight: 700;
	overflow:hidden;
	cursor:pointer;
	border-radius:4px;
	text-transform:capitalize;
	background-color:#4377ff;
}

.btn-style-eight:before{
	position: absolute;
	content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0;
    background-color: #19274d;
    -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-eight .txt{
	position:relative;
	z-index:1;
}

.btn-style-eight .txt i{
	position:relative;
	font-weight:300;
	margin-right:10px;
	-webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}

.btn-style-eight:hover::before{
    opacity: 1;
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
}

.btn-style-eight:hover{
	color: #ffffff;
	border-color:#007bff;
}

/* Btn Style Nine */

.btn-style-nine{
	position: relative;
	display: inline-block;
	font-size: 16px;
	line-height: 30px;
	color: #ffffff;
	padding: 15px 41px;
	font-weight: 700;
	overflow:hidden;
	cursor:pointer;
	border-radius:4px;
	text-transform:capitalize;
	background-color:#4377ff;
}

.btn-style-nine:before{
	position: absolute;
	content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0;
    background-color: #19274d;
    -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-nine .txt{
	position:relative;
	z-index:1;
}

.btn-style-nine .txt i{
	position:relative;
	font-weight:300;
	margin-right:10px;
	-webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}

.btn-style-nine:hover::before{
    opacity: 1;
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
}

.btn-style-nine:hover{
	color: #ffffff;
	border-color:#007bff;
}

/* Btn Style Ten */

.btn-style-ten{
	position: relative;
	display: inline-block;
	font-size: 16px;
	line-height: 30px;
	color: #19274d;
	padding: 15px 41px;
	font-weight: 700;
	overflow:hidden;
	cursor:pointer;
	border-radius:4px;
	text-transform:capitalize;
	background-color:#a1bbff;
}

.btn-style-ten:before{
	position: absolute;
	content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0;
    background-color: #4377ff;
    -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-ten .txt{
	position:relative;
	z-index:1;
}

.btn-style-ten .txt i{
	position:relative;
	font-weight:300;
	margin-right:10px;
	-webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}

.btn-style-ten:hover::before{
    opacity: 1;
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
}

.btn-style-ten:hover{
	color: #ffffff;
	border-color:#007bff;
}

/* Btn Style Eleven */

.btn-style-eleven{
	position: relative;
	display: inline-block;
	font-size: 16px;
	line-height: 30px;
	color: #ffffff;
	padding: 15px 48px;
	font-weight: 700;
	overflow:hidden;
	cursor:pointer;
	border-radius:4px;
	text-transform:capitalize;
	background-color:#19274d;
}

.btn-style-eleven:before{
	position: absolute;
	content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    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-eleven .txt{
	position:relative;
	z-index:1;
}

.btn-style-eleven .txt i{
	position:relative;
	font-weight:300;
	margin-right:10px;
	-webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}

.btn-style-eleven:hover::before{
    opacity: 1;
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
}

.btn-style-eleven:hover{
	color: #ffffff;
	border-color:#007bff;
}

/* Btn Style Twelve */

.btn-style-twelve{
	position: relative;
	display: inline-block;
	font-size: 16px;
	line-height: 30px;
	color: #ffffff;
	padding: 15px 41px;
	font-weight: 700;
	overflow: hidden;
	border-radius:50px;
	background-color: #3246d3;
	text-transform: capitalize;
	font-family: 'Roboto', sans-serif;
	background-image: -ms-linear-gradient(left, #0C4195 0%, #1c73c5 100%);
	background-image: -moz-linear-gradient(left, #0C4195 0%, #1c73c5 100%);
	background-image: -o-linear-gradient(left, #0C4195 0%, #1c73c5 100%);
	background-image: -webkit-gradient(linear, left top, right top, color-stop(0, #0C4195), color-stop(100, #1c73c5));
	background-image: -webkit-linear-gradient(left, #0C4195 0%, #1c73c5 100%);
	background-image: linear-gradient(to right, #0C4195 0%, #1c73c5 100%);
}

.btn-style-twelve: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, #0C4195 0%, #1C73C5 100%);
	background-image: -moz-linear-gradient(right, #0C4195 0%, #1C73C5 100%);
	background-image: -o-linear-gradient(right, #0C4195 0%, #1C73C5 100%);
	background-image: -webkit-gradient(linear, right top, left top, color-stop(0, #0C4195), color-stop(100, #1C73C5));
	background-image: -webkit-linear-gradient(right, #0C4195 0%, #1C73C5 100%);
	background-image: linear-gradient(to left, #0C4195 0%, #1C73C5 100%);
}

.btn-style-twelve .txt{
	position:relative;
	z-index:1;
}

.btn-style-twelve:hover::before{
    opacity: 1;
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
}

.btn-style-twelve:hover{
	color: #ffffff;
}

/* Btn Style Thirteen */

.btn-style-thirteen{
	position: relative;
	display: inline-block;
	font-size: 16px;
	line-height: 30px;
	color: #19274d;
	padding: 13px 47px;
	font-weight: 700;
	overflow:hidden;
	cursor:pointer;
	border-radius:50px;
	text-transform:capitalize;
	border:2px solid #d7e5f0;
	font-family: 'Roboto', sans-serif;
}

.btn-style-thirteen:before{
	position: absolute;
	content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0;
    background-color: #19274d;
    -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-thirteen .txt{
	position:relative;
	z-index:1;
}

.btn-style-thirteen .txt i{
	position:relative;
	font-weight:300;
	margin-right:10px;
	-webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}

.btn-style-thirteen:hover::before{
    opacity: 1;
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
}

.btn-style-thirteen:hover{
	color: #ffffff;
	border-color:#19274d;
}

/* Btn Style Fourteen */

.btn-style-fourteen{
	position: relative;
	display: inline-block;
	font-size: 16px;
	line-height: 30px;
	color: #ffffff;
	padding: 15px 41px;
	font-weight: 700;
	overflow: hidden;
	border-radius:50px;
	background-color: #0556c4;
	text-transform: capitalize;
	font-family: 'Roboto', sans-serif;
}

.btn-style-fourteen: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-color:#222222;
}

.btn-style-fourteen .txt{
	position:relative;
	z-index:1;
}

.btn-style-fourteen:hover::before{
    opacity: 1;
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
}

.btn-style-fourteen:hover{
	color: #ffffff;
}

/* Btn Style Fifteen */

.btn-style-fifteen{
	position: relative;
	display: inline-block;
	font-size: 16px;
	line-height: 30px;
	color: #ffffff;
	padding: 15px 41px;
	font-weight: 700;
	overflow: hidden;
	border-radius:50px;
	background-color: #1374f6;
	text-transform: capitalize;
	font-family: 'Roboto', sans-serif;
}

.btn-style-fifteen: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-color:#222222;
}

.btn-style-fifteen .txt{
	position:relative;
	z-index:1;
}

.btn-style-fifteen .txt i{
	position:relative;
	font-weight:400;
	margin-right:10px;
}

.btn-style-fifteen:hover::before{
    opacity: 1;
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
}

.btn-style-fifteen:hover{
	color: #ffffff;
}

/* Btn Style Sixteen */

.btn-style-sixteen{
	position: relative;
	display: inline-block;
	font-size: 16px;
	line-height: 30px;
	color: #19274d;
	padding: 15px 41px;
	font-weight: 700;
	overflow: hidden;
	border-radius:50px;
	background-color: #ffffff;
	text-transform: capitalize;
	font-family: 'Roboto', sans-serif;
	box-shadow:0px 0px 10px rgba(0,0,0,0.07);
}

.btn-style-sixteen: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-color:#222222;
}

.btn-style-sixteen .txt{
	position:relative;
	z-index:1;
}

.btn-style-sixteen:hover::before{
    opacity: 1;
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
}

.btn-style-sixteen:hover{
	color: #ffffff;
}

/* Btn Style Seventeen */

.btn-style-seventeen{
	position: relative;
	display: inline-block;
	font-size: 16px;
	line-height: 30px;
	color: #ffffff;
	padding: 15px 41px;
	font-weight: 700;
	overflow: hidden;
	border-radius:50px;
	background-color: #ff5f5f;
	text-transform: capitalize;
	font-family: 'Roboto', sans-serif;
	box-shadow:0px 0px 10px rgba(0,0,0,0.07);
}

.btn-style-seventeen: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-color:#ffffff;
}

.btn-style-seventeen .txt{
	position:relative;
	z-index:1;
}

.btn-style-seventeen:hover::before{
    opacity: 1;
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
}

.btn-style-seventeen:hover{
	color: #ff5f5f;
}

/* Social Icon One */

.social-icon-one{
	position: relative;
	display: block;
}

.social-icon-one li{
	position: relative;
	margin-left:9px;
	display: inline-block;
}

.social-icon-one li a{
	position: relative;
	width:32px;
	height:32px;
	display: block;
	font-size: 14px;
	line-height: 32px;
	color: #cccccc;
	text-align:center;
	border-radius:2px;
	background-color:#333333;
	-webkit-transition: all 300ms ease;
	-moz-transition: all 300ms ease;
	-ms-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	transition: all 300ms ease;
}

.social-icon-one li a:hover{
	color: #333333;
	background-color:#feec42;
}

.theme_color{
	color:#3246d3;
}

.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:120px; }

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:24px;
	text-transform:uppercase;
	line-height:60px;
	text-align:center;
	z-index:100;
	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:#3246d3;
}

/*** 

====================================================================
	Section Title
====================================================================

***/

.sec-title{
	position:relative;
	z-index:1;
	margin-bottom:35px;
}

.sec-title .title{
	position:relative;
	color:#007bff;
	font-size:16px;
	font-weight:700;
	margin-bottom:15px;
	letter-spacing:1px;
	text-transform:capitalize;
}

.sec-title h1{
	position:relative;
	color:#19274d;
	font-weight:700;
	font-size:72px;
	line-height:1.1em;
	padding-bottom:20px;
}

.sec-title h1 span{
	position:relative;
	font-weight:300;
}

.sec-title .text{
	position:relative;
	font-size:16px;
	line-height:1.8em;
	color:#666666;
	margin-top:20px;
}

.sec-title.centered{
	text-align: center !important;
}

/* .sec-title.light .title, */
.sec-title.light .text,
.sec-title.light h1{
	color:#ffffff;
}

.sec-title.style-two .title{
	color:#007bff;
    background: linear-gradient(to right, #007bff 0%, #a1bbff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.sec-title.style-two h1{
	font-size:60px;
	font-weight:600;
	font-family: 'Poppins', sans-serif;
}

.sec-title.style-three{
	margin-bottom:50px;
}

.sec-title.style-three .title{
	color:#4377ffco;
}

.sec-title.style-three.light .title{
	color:#ffffff;
}

.sec-title.style-three h1{
	font-size:60px;
}

.sec-title.style-three .text{
	position: relative;
    color: #19274d;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.6em;
    padding-left: 25px;
    margin-top: 15px;
    border-left: 4px solid #4377ff;
}

.sec-title.style-four .title{
	background: -webkit-linear-gradient(45deg, #0c4094, #1c72c4 80%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.sec-title.style-four.light .title{
	color:#ffffff;
	-webkit-text-fill-color: inherit;
}

.sec-title.style-four h1{
	font-weight:500;
	font-size:60px;
}

.sec-title.style-four .text{
	margin-top:0px;
	color:#19274d;
	font-size:24px;
	line-height:1.6em;
}

.sec-title.style-five .title{
	color:#19274d;
}

.sec-title.style-five h1{
	font-size:60px;
	padding-bottom:12px;
	font-family: 'Gilroy-ExtraBold';
}

.sec-title.style-five .text{
	margin-top:0px;
	color:#19274d;
	font-size:18px;
	line-height:1.7em;
}

.sec-title.style-five .text span{
	font-weight:600;
}

.sec-title.style-six.light .title{
	color:#ffffff;
}

.sec-title.style-six h1{
	font-size:60px;
	font-weight:600;
	padding-bottom:12px;
	font-family: 'Poppins', sans-serif;
}

.sec-title.style-six .text{
	color:#19274d;
	line-height:1.9em;
}

.sec-title.style-six .text span{
	font-weight:600;
}

/* List Style One */

.list-style-one{
	position:relative;
	z-index:1;
}

.list-style-one li{
	position:relative;
	color:#19274d;
	font-size:16px;
	font-weight:400;
	margin-bottom:20px;
	padding-left:70px;
	line-height:1.5em;
	padding-top:10px;
	min-height:50px;
}

.list-style-one li span{
	position:relative;
	color:#19274d;
	font-weight:700;
}

.list-style-one li:before{
	position:absolute;
	conetent: "\f1da";
	left:0px;
	top:0px;
	width:50px;
	height:50px;
	color:#19274d;
	line-height:46px;
	text-align:center;
	border-radius:50px;
	display:inline-block;
	border:2px solid #e9ebef;
	font-family: "Flaticon";
	-webkit-transition:all 300ms ease;
	-ms-transition:all 300ms ease;
	-o-transition:all 300ms ease;
	-moz-transition:all 300ms ease;
	transition:all 300ms ease;
}

.list-style-one li:hover::before{
	background-color:#0e209e;
	border-color:#0e209e;
	color:#ffffff;
}

/* List Style Two */

.list-style-two{
	position:relative;
	z-index:1;
}

.list-style-two li{
	position:relative;
	color:#19274d;
	font-size:16px;
	font-weight:400;
	margin-bottom:20px;
	padding-left:70px;
	line-height:1.9em;
	padding-top:6px;
}

.list-style-two li span{
	position:relative;
	color:#19274d;
	font-size:20px;
	display:block;
	font-weight:700;
	margin-bottom:12px;
}

.list-style-two li:before{
	position:absolute;
	content: "\f1da";
	left:0px;
	top:0px;
	width:50px;
	height:50px;
	color:#fb5248;
	line-height:50px;
	text-align:center;
	border-radius:50px;
	display:inline-block;
	background-color:#fff0df;
	font-family: "Flaticon";
	-webkit-transition:all 300ms ease;
	-ms-transition:all 300ms ease;
	-o-transition:all 300ms ease;
	-moz-transition:all 300ms ease;
	transition:all 300ms ease;
}

.list-style-two li:hover::before{
	background-color:#fb5248;
	color:#ffffff;
}

/* List Style Three */

.list-style-three{
	position:relative;
	z-index:1;
}

.list-style-three li{
	position:relative;
	color:#19274d;
	font-size:16px;
	font-weight:700;
	margin-bottom:20px;
	padding-left:70px;
	line-height:1.9em;
	padding-top:0px;
	line-height:50px;
	margin-bottom:20px;
}

.list-style-three li span{
	position:absolute;
	left:0px;
	top:0px;
	width:50px;
	height:50px;
	color:#19274d;
	font-size:16px;
	display:block;
	text-align:center;
	font-weight:700;
	line-height:50px;
	text-align:center;
	border-radius:50px;
	margin-bottom:12px;
	display:inline-block;
	background-color:#ffffff;
}

.list-style-two li:hover::before{
	background-color:#fb5248;
	color:#ffffff;
}

/* List Style Four */

.list-style-four{
	position:relative;
	z-index:1;
}

.list-style-four li{
	position:relative;
	color:#19274d;
	font-size:16px;
	font-weight:500;
	margin-bottom:30px;
	padding-left:70px;
	line-height:1.9em;
	padding-top:6px;
}

.list-style-four li span{
	position:relative;
	color:#19274d;
	font-size:20px;
	display:block;
	font-weight:700;
	margin-bottom:12px;
}

.list-style-four li:before{
	position:absolute;
	content: "\f1da";
	left:0px;
	top:0px;
	width:50px;
	height:50px;
	color:#4377ff;
	line-height:50px;
	text-align:center;
	border-radius:50px;
	display:inline-block;
	background-color:#a1bbff;
	font-family: "Flaticon";
	-webkit-transition:all 300ms ease;
	-ms-transition:all 300ms ease;
	-o-transition:all 300ms ease;
	-moz-transition:all 300ms ease;
	transition:all 300ms ease;
}

.list-style-four li:hover::before{
	background-color:#4377ff;
	color:#ffffff;
}

/* List Style Five */

.list-style-five{
	position:relative;
	z-index:1;
}

.list-style-five li{
	position:relative;
	color:#19274d;
	font-size:16px;
	font-weight:400;
	margin-bottom:8px;
	padding-left:30px;
	line-height:1.6em;
}

.list-style-five li:before{
	position:absolute;
	content: "\f1da";
	left:0px;
	top:0px;
	color:#4377ff;
	color:#19274d;
	font-family: "Flaticon";
	-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 style
====================================================================

***/

.main-header{
	position:absolute;
	z-index:999;
	width:100%;
	-ms-animation-duration: 500ms;
    -moz-animation-duration: 500ms;
    -op-animation-duration: 500ms;
    -webkit-animation-duration: 500ms;
    animation-duration: 500ms;
}

.header-top{
	position:relative;
	background-color:#ffffff;
	border-bottom:1px solid #eef3ff;
}

.header-top .auto-container{
	max-width:1420px;
}

.header-top .brand-column{
	position:relative;
}

.header-top .brand-column .text{
	position:relative;
	color:#19274d;
	font-size:14px;
	padding:9px 0px;
}

.header-top .brand-column .text span{
	position:relative;
	color:#ffffff;
	font-size:14px;
	font-weight:500;
	padding:4px 12px;
	margin-right:10px;
	border-radius:50px;
	text-transform:uppercase;
	background-image: -ms-linear-gradient(left, #007bff 0%, #a1bbff 100%);
	background-image: -moz-linear-gradient(left, #007bff 0%, #a1bbff 100%);
	background-image: -o-linear-gradient(left, #007bff 0%, #a1bbff 100%);
	background-image: -webkit-gradient(linear, left top, right top, color-stop(0, #007bff), color-stop(100, #a1bbff));
	background-image: -webkit-linear-gradient(left, #007bff 0%, #a1bbff 100%);
	background-image: linear-gradient(to right, #007bff 0%, #a1bbff 100%);
}

.header-top .links-column{
	position:relative;
	text-align:right;
}

.header-top .links-column ul{
	position:relative;
	padding:0px 10px;
	display:inline-block;
	background-color:#fff8f8;
	border-radius:0px 0px 6px 6px;
}

.header-top .links-column ul:before{
	position:absolute;
	content:'';
	left:0px;
	bottom:0px;
	height:3px;
	width:100%;
	border-radius:0px 0px 6px 6px;
	background-image: -ms-linear-gradient(left, #007bff 0%, #a1bbff 100%);
	background-image: -moz-linear-gradient(left, #007bff 0%, #a1bbff 100%);
	background-image: -o-linear-gradient(left, #007bff 0%, #a1bbff 100%);
	background-image: -webkit-gradient(linear, left top, right top, color-stop(0, #007bff), color-stop(100, #a1bbff));
	background-image: -webkit-linear-gradient(left, #007bff 0%, #a1bbff 100%);
	background-image: linear-gradient(to right, #007bff 0%, #a1bbff 100%);
}

.header-top .links-column ul li{
	position:relative;
	padding:9px 25px;
	display:inline-block;
}

.header-top .links-column ul li a{
	position:relative;
	color:#19274d;
	font-size:14px;
	font-weight:500;
	-webkit-transition:all 300ms ease;
	-ms-transition:all 300ms ease;
	-o-transition:all 300ms ease;
	-moz-transition:all 300ms ease;
	transition:all 300ms ease;
}

.header-top .links-column ul li a:hover{
	color:#007bff;
}

.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 .outer-container{
	padding:0px 15px;
	max-width:1480px;
	margin:0 auto;
}

.main-header .header-upper{
	position:relative;
	z-index:1;
	transition: all 600ms ease;
    -moz-transition: all 600ms ease;
    -webkit-transition: all 600ms ease;
    -ms-transition: all 600ms ease;
    -o-transition: all 600ms ease;
}

.main-header .header-upper .outer-box{
	position:absolute;
	right:0px;
	top:0px;
	float:right;
	padding:40px 0px 20px;
	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-toggler{
	position:relative;
	font-size:28px;
	color:#ff9600;
	cursor:pointer;
	display:inline-block;
}

.main-header .header-upper .outer-box .login-nav{
	position:relative;
	margin-left:30px;
	display:inline-block;
}

.main-header .header-upper .outer-box .login-nav li{
	position:relative;
	margin-left:18px;
	display:inline-block;
}

.main-header .header-upper .outer-box .login-nav li a{
	position:relative;
	color:#ffffff;
	font-size:16px;
	font-weight:700;
	padding:13px 0px;
	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;
}

.main-header .header-upper .outer-box .login-nav li a:hover{
	color:#007bff;
}

.main-header .header-upper .outer-box .login-nav li:last-child a{
	position:relative;
	color:#ffffff;
	font-size:16px;
	font-weight:700;
	padding:13px 36px;
	border-radius:5px;
	display:inline-block;
	background-color:#19274d;
}

.main-header .header-upper .outer-box .login-nav li:last-child a:hover{
	background-color:#007bff;
	color:#ffffff;
}

.main-header .header-upper .outer-box .button-box{
	position:relative;
	margin-left:40px;
	display:inline-block;
}

/* Search Box Outer */

.main-header .header-upper .search-box-outer{
	position:relative;
	float:left;
}

.main-header .header-upper .search-box-btn{
	position:relative;
	float:left;
	top:0px;
	display:block;
	font-size:18px;
	color:#19274d;
	line-height:26px;
	cursor:pointer;
	background:none;
	padding:13px 0px;
	margin-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:after{
	display:none;
}

/* 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:23px 0px  !important;
	color:#ffffff !important;
}

.sticky-header .main-menu .navigation > li > a:after{
	display:none;
}

.main-header .nav-outer{
	position:relative;
	float: right;
	width:100%;
	margin-top:-105px;
	text-align:center;
	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;
	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-header .header-upper .logo-box .logo{
	position:relative;
	padding:40px 0px 20px;
	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-lower{
	position:relative;
	background-color:rgba(0,0,0,0.55);
}

.main-menu{
	position:static;
	float:left;
	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;
}

.main-menu .navbar-collapse{
	padding:0px;
	display:block;
}

.main-menu .navigation{
	position:static;
	margin:0px;
	width:100%;
}

.main-menu .navigation > li{
	position:relative;
	float:none;
	display:inline-block;
	margin:0px 18px;
	transition:all 500ms ease;
	-moz-transition:all 500ms ease;
	-webkit-transition:all 500ms ease;
	-ms-transition:all 500ms ease;
	-o-transition:all 500ms ease;
}

.main-menu .navigation > li:last-child{
	margin-right:0px;
}

.main-header .header-upper .upper-right{
	position:relative;
	padding-top:36px;
}

.main-header .header-upper .info-box{
	position:relative;
	color:#333333;
	font-weight:600;
	padding-left:42px;
	margin-right:40px;
	float:left;
}

.main-header .header-upper .info-box:last-child{
	margin-right:0px;
}

.main-header .header-upper .info-box .icon-box{
	position:absolute;
	left:0px;
	top:4px;
	color:#13a2b1;
	font-size:28px;
	line-height:1em;
}

.main-header .header-upper .info-box li{
	position:relative;
	color:#555555;
	font-size:13px;
	font-weight:400;
	
}

.main-header .header-upper .info-box li strong{
	position:relative;
	color:#333333;
	font-size:14px;
	font-weight:700;
	margin-bottom:4px;
	display:block;
}

.main-header .header-upper .info-box li a{
	position:relative;
	color:#555555;
	transition:all 300ms ease;
	-moz-transition:all 300ms ease;
	-webkit-transition:all 300ms ease;
	-ms-transition:all 300ms ease;
	-o-transition:all 300ms ease;
}

.main-header .header-upper .info-box li a:hover{
	color:#13a2b1;
}

.main-header .header-upper .info-box .btn-box{
	position:relative;
	margin-top:-4px;
}

.main-header .header-upper .social-box{
	position:relative;
	float:right;
	padding:21px 0px;
}

.main-menu .navigation > li > a{
	position:relative;
	display:block;
	color:#ffffff;
	text-align:center;
	line-height:30px;
	text-transform:capitalize;
	letter-spacing:0px;
	opacity:1;
	font-weight:700;
	padding:50px 0px 20px;
	font-size:16px;
	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: 'Roboto', sans-serif;
}

.main-menu .navigation > li:hover > a,
.main-menu .navigation > li.current > a{
	color:#007bff;
}

.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:210px;
	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: #1e1e1e;
	box-shadow: 0px 0px 10px rgba(0,0,0,0.10);
}

.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 rgba(255,255,255,0.10);
}

.main-menu .navigation > li > ul > li:last-child{
	border-bottom:none;
}

.main-menu .navigation > li > ul > li > a{
	position:relative;
	padding:10px 18px;
	display: block;
    line-height: 20px;
    font-weight: 400;
    font-size: 12px;
    color: rgba(255,255,255,0.50);
    letter-spacing: 1px;
    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-menu .navigation > li > ul > li:hover > a{
	color:#ffffff;
	padding-left:30px;
	background:#3246d3;
}

.main-menu .navigation > li > ul > li.dropdown > a:after{
	font-family: 'FontAwesome';
	content: "\f105";
	position:absolute;
	right:15px;
	top:10px;
	width:10px;
	height:20px;
	display:block;
	color:#ffffff;
	line-height:20px;
	font-size:16px;
	font-weight:normal;
	text-align:center;
	z-index:5;
	opacity:0.4;
	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.dropdown:hover > a:after{
	color:#ffffff;
	opacity:1;
}

.main-menu .navigation > li > ul > li > ul{
	position:absolute;
	left:100%;
	top:100%;
	width:210px;
	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: #1e1e1e;
	-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 rgba(255,255,255,0.10);
}

.main-menu .navigation > li > ul > li > ul > li:last-child{
	border-bottom:none;	
}

.main-menu .navigation > li > ul > li > ul > li > a{
	position: relative;
    padding: 10px 18px;
    display: block;
    line-height: 20px;
    font-weight: 400;
    font-size: 12px;
    color: rgba(255,255,255,0.50);
    letter-spacing: 1px;
    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-menu .navigation > li > ul > li > ul > li:hover > a{
	color:#ffffff;
	padding-left:30px;
	background:#3246d3;
}

.main-menu .navigation > li > ul > li > ul > li.dropdown > a:after{
	font-family: 'FontAwesome';
	content: "\f105";
	position:absolute;
	right:10px;
	top:10px;
	width:10px;
	height:20px;
	display:block;
	color:#ffffff;
	line-height:20px;
	font-size:16px;
	font-weight:normal;
	text-align:center;
	z-index:5;
	opacity:0.5;
	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.dropdown:hover > a:after{
	color:#ffffff;
	opacity:1;
}

.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 .social-icon-one{
	position: relative;
	float:left;
}

.main-header.fixed-header{
	position:fixed;
	left: 0px;
    right: 0px;
    top: 0px;
    z-index: 9999;
    width: 100%;
	border-bottom: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;
	background-color:#000000;
}

.main-header .header-upper .outer-box .login-box{
	position:relative;
	width:52px;
	height:52px;
	float:left;
	color:#ffffff;
	font-size:18px;
	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:18px;
	margin-left:14px;
	cursor:pointer;
	line-height:52px;
	text-align:center;
	border-radius:50px;
	background-color:#05db56;
}

.main-menu .navigation > li > ul > li > ul > li > ul{
	position: absolute;
    left: 100%;
    top: 100%;
    width: 210px;
    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: #1e1e1e;
    box-shadow: 0px 0px 10px rgba(0,0,0,0.10);
}

.main-menu .navigation > li > ul > li > ul > li > ul > li{
    position: relative;
    width: 100%;
    border-bottom: 1px solid rgba(255,255,255,0.10);
}

.main-menu .navigation > li > ul > li > ul > li > ul > li > a{
	position: relative;
    padding: 10px 18px;
    display: block;
    line-height: 20px;
    font-weight: 400;
    font-size: 12px;
    color: rgba(255,255,255,0.50);
    letter-spacing: 1px;
    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-menu .navigation > li > ul > li > ul > 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 > ul > li > ul > li > a:hover{
	background-color:#3246d3;
	color:#ffffff;
}

.main-header .header-upper .outer-box .menu-toggler{
	position:relative;
	float:right;
	cursor:pointer;
	color:#ffffff;
	font-size:28px;
	margin-left:30px;
	padding-left:30px;
}

.main-header .header-upper .outer-box .menu-toggler:before{
    position: absolute;
    content: '';
    left: 0px;
    top: 5px;
    width: 1px;
    height: 20px;
    border-left: 1px solid rgba(255,255,255,0.30);
}

.main-header.fixed-header .nav-outer{
	margin-top:-70px;
}

.main-header.fixed-header .main-menu .navigation > li > a{
	padding:20px 0px 20px;
}

.main-header.fixed-header .header-upper .logo-box .logo{
	padding:8px 0px 8px;
}

.main-header.fixed-header .header-upper .outer-box{
	padding:9px 0px 9px;
}

/* Language DropDown */

.main-header .header-upper .language{
	position:relative;
	float:left;
	line-height:1em;
}

.main-header .header-upper .language .flag-icon{
	position:relative;
	width:50px;
	height:50px;
	overflow:hidden;
	border-radius:50%;
	display:inline-block;
	border:3px solid #ffffff;
}

.main-header .header-upper .language .dropdown-menu{
	left:0px !important;
	width:170px;	
	border-radius:0px;
	background-color:#1e1e1e;
	border:none;
	padding:0px;
	margin-top:60px;
    border-top:3px solid #3246d3;
	transform:translate3d(0px, 0px, 0px) !important;
}

.main-header .header-upper .language > a{
	display:inline-block;
    border:0px;
	padding:0px;
	font-weight:400;
	font-size:12px;
	line-height:1em;
	border-radius: 0px;
	color:rgba(255,255,255,0.50);
	text-transform:uppercase;
}

.main-header .header-upper .language > a:focus{
	box-shadow:inherit;
}

.main-header .header-upper .language > a:after{
	display:none;
}

.main-header .header-upper language a:hover{
	background:none;
}

.main-header .header-upper .language .dropdown-menu > li{
	padding-right:0px !important;
	margin:0px !important;
	float:none;
	display:block !important;
    border-bottom: 1px solid rgba(255,255,255,0.20);
}

.main-header .header-upper .language .dropdown-menu > li:last-child{
	border-bottom:none;	
}

.main-header .header-upper .language .dropdown-menu > li > a{
	padding:12px 16px !important;
	font-weight:400;
	font-size:12px;
	line-height:1em;
	border-radius: 0px;
	color:rgba(255,255,255,0.90);
	text-transform:uppercase;
	display: block;
	text-align:left;
	letter-spacing:1px;
	-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 .language .dropdown-menu > li > a > .flag{
	margin-right:6px;
}

.main-header .header-upper .language .dropdown-menu > li > a:hover{
	color:#ffffff;
	background-color:#3246d3;
}

/* Search Box */

.main-header .header-lower .outer-box{
	position:absolute;
	right:0px;
	top:0px;
}

.main-header .header-lower .social-box{
	position:relative;
	float:left;
	padding:14px 0px;
	margin-right:28px;
}

.main-header .header-lower .social-box a{
	position:relative;
	color:#555555;
	font-size:18px;
	margin-left:18px;
	display:inline-block;
	transition: all 100ms ease;
    -moz-transition: all 100ms ease;
    -webkit-transition: all 100ms ease;
    -ms-transition: all 100ms ease;
    -o-transition: all 100ms ease;
}

.main-header .header-lower .social-box a:hover{
	color:#13a2b1;
}

.main-header .header-lower .search-box-outer{
	position: relative;
	float:left;
}

.main-header .header-lower .search-box-btn{
	position:relative;
	height:50px;
	display:block;
	font-size:18px;
	color:#333536;
	padding:0px;
	margin:0px;
	cursor:pointer;
	background:none;
	text-align: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-lower .search-box-btn:after{
	display:none;
}

.main-header .header-lower .search-box-outer .dropdown-menu{
	top:48px !important;
	right:0px;
	padding:0px;
	width:280px;
	left: auto !important;
	border-radius:0px;
	border-top:3px solid #13a2b1;
	transform: translate3d(0px, 0px, 0px) !important;
}

.sticky-header .search-box-outer .dropdown-menu{
	top:40px;
}

.main-header .header-lower .search-box-outer .dropdown-menu > li{
	padding:0px;
	border:none;
	background:none;
}

.main-header .header-lower .search-panel .form-container{
	padding:25px 20px;
}

.main-header .header-lower .search-panel .form-group{
	position:relative;
	margin:0px;
}

.main-header .header-lower .search-panel input[type="text"],
.main-header .header-lower .search-panel input[type="search"],
.main-header .header-lower .search-panel input[type="password"],
.main-header .header-lower .search-panel select{
	display:block;
	width:100%;
	color:#000000;
	line-height:24px;
	font-size:14px;
	padding:7px 40px 7px 15px;
	height:40px;
	border:1px solid #e0e0e0;
	background:#ffffff;
}

.main-header .header-lower .search-panel input:focus,
.main-header .header-lower .search-panel select:focus{
	border-color:#13a2b1;
}

.main-header .header-lower .search-panel .search-btn{
	position:absolute;
	right:0px;
	top:0px;
	width:40px;
	height:40px;
	text-align:center;
	color:#ffffff;
	font-size:12px;
	background:#13a2b1;
	cursor:pointer;
}

/*** 

====================================================================
	Banner Section
====================================================================

***/

.banner-section{
	position:relative;
	overflow:hidden;
	padding-top:50px;
	background-color:#19274d;
}

.banner-section .mouse-btn-down{
	position:absolute;
	left:50%;
	margin-left:-20px;
	bottom:20px;
	width:30px;
	height:68px;
	cursor:pointer;
	display:block;
	z-index:20;
	cursor:pointer;
}

/* Chevron */

.chevron {
  position: absolute;
  width: 28px;
  height: 8px;
  opacity: 0;
  transform: scale3d(0.5, 0.5, 0.5);
  animation: move 3s ease-out infinite;
}

.chevron:first-child {
  animation: move 3s ease-out 1s infinite;
}

.chevron:nth-child(2) {
  animation: move 3s ease-out 2s infinite;
}

.chevron:before,
.chevron:after {
  content: ' ';
  position: absolute;
  top: 0;
  height: 100%;
  width: 51%;
  background: #fff;
}

.chevron:before {
  left: 0;
  transform: skew(0deg, 30deg);
}

.chevron:after {
  right: 0;
  width: 50%;
  transform: skew(0deg, -30deg);
}

@keyframes move {
  25% {
    opacity: 1;

  }
  33% {
    opacity: 1;
    transform: translateY(30px);
  }
  67% {
    opacity: 1;
    transform: translateY(40px);
  }
  100% {
    opacity: 0;
    transform: translateY(55px) scale3d(0.5, 0.5, 0.5);
  }
}

@keyframes pulse {
  to {
    opacity: 1;
  }
}

.banner-section .image-layer{
	position:absolute;
	right:-300px;
	top:0px;
	width:867px;
	min-height:100vh;
	height:100%;
	opacity:0;
	background-repeat: no-repeat;
	background-position: right top;
	transition:all 900ms ease;
	-moz-transition:all 900ms ease;
	-webkit-transition:all 900ms ease;
	-ms-transition:all 900ms ease;
	-o-transition:all 900ms ease;
}

.banner-section .image-layer.now-in-view{
	right:0px;
	opacity:1;
}

.banner-section .content-column{
	position:relative;
}

.banner-section .content-column .icon-layer{
	position:absolute;
	content:'';
	right:0px;
	bottom:185px;
	width:480px;
	height:70px;
	background-repeat:no-repeat;
}

.banner-section .content-column .inner-column{
	position:relative;
	padding-top:250px;
}

.banner-section .content-column .title{
	position:relative;
	color:#a5aec5;
	font-size:18px;
	line-height:1.8em;
	margin-bottom:20px;
	font-weight:500;
}

.banner-section .content-column h1{
	position:relative;
	color:#ffffff;
	font-weight:300;
	line-height:1.1em;
	margin-bottom:35px;
}

.banner-section .content-column h1 span{
	font-weight:700;
}

.banner-section .content-column .text{
	position:relative;
	color:#a5aec5;
	font-size:18px;
	line-height:1.8em;
	margin-bottom:35px;
	font-weight:500;
}

.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;
	width:auto;
	opacity:0;
	margin-left:250px;
	transition:all 900ms ease;
	-moz-transition:all 900ms ease;
	-webkit-transition:all 900ms ease;
	-ms-transition:all 900ms ease;
	-o-transition:all 900ms ease;
}

.banner-section .image-column .image.now-in-view img{
	margin-left:0px;
	opacity:1;
	-webkit-transition-delay: 500ms;
	-moz-transition-delay: 500ms;
	-ms-transition-delay: 500ms;
	-o-transition-delay: 500ms;
	transition-delay: 500ms;
}

/* Subscribe Form */

.subscribe-form{
	position:relative;
	width:100%;
	margin-bottom:0px;
}

.subscribe-form .form-group{
    position: relative;
    display: block;
    z-index:1;
	margin-bottom: 0px;
}

.subscribe-form .form-group input[type="text"],
.subscribe-form .form-group input[type="tel"],
.subscribe-form .form-group input[type="email"],
.subscribe-form .form-group textarea {
    position:relative;
	display:block;
	width:100%;
	height:80px;
	font-size:16px;
	color:#ffffff;
	line-height:38px;
	font-weight:400;
	border-radius:5px;
	background:none;
	padding:10px 20px 10px 40px;
	border:3px solid rgba(255,255,255,0.10);
	transition:all 500ms ease;
	-webkit-transition:all 500ms ease;
	-ms-transition:all 500ms ease;
	-o-transition:all 500ms ease;
}

.subscribe-form .form-group input[type="email"]:focus{
	border-color:#3246d3;
}

.subscribe-form .form-group textarea::-webkit-input-placeholder,
.subscribe-form .form-group input::-webkit-input-placeholder{
	color:#a5aec5;
}

.subscribe-form .form-group .theme-btn{
	position: absolute;
	top: 15px;
	right: 15px;
	cursor:pointer;
}

/*** 

====================================================================
	Mobile Menu
====================================================================

***/

.main-header .mobile-nav-toggler{
	position: relative;
	float: right;
	font-size: 40px;
	line-height: 50px;
	cursor: pointer;
	color:#ffffff;
	display: none;
}

.mobile-menu{
	position: fixed;
	right: 0;
	top: 0;
	width: 300px;
	padding-right:30px;
	max-width:100%;
	height: 100%;
	opacity: 0;
	visibility: hidden;
	z-index: 999999;
}

.mobile-menu .nav-logo{
	position:relative;
	padding:20px 20px;
	text-align:left;	
}

.mobile-menu .nav-logo img{
	max-width:200px;
}

.mobile-menu-visible{
	overflow: hidden;
}

.mobile-menu-visible .mobile-menu{
	opacity: 1;
	visibility: visible;
}

.mobile-menu .menu-backdrop{
	position: fixed;
	right: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	background: rgba(0,0,0,0.90);
	-webkit-transform: translateX(101%);
	-ms-transform: translateX(101%);
	transform: translateX(101%);
}

.mobile-menu-visible .mobile-menu .menu-backdrop{
	opacity: 1;
	visibility: visible;
	-webkit-transition:all 0.7s ease;
	-moz-transition:all 0.7s ease;
	-ms-transition:all 0.7s ease;
	-o-transition:all 0.7s ease;
	transition:all 0.7s ease;
	-webkit-transform: translateX(0%);
	-ms-transform: translateX(0%);
	transform: translateX(0%);
}

.mobile-menu .menu-box{
	position: absolute;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	max-height: 100%;
	overflow-y: auto;
	background: #ffffff;
	padding: 0px 0px;
	z-index: 5;
	opacity: 0;
	visibility: hidden;
	border-radius: 0px;
	-webkit-transform: translateX(101%);
	-ms-transform: translateX(101%);
	transform: translateX(101%);
}

.mobile-menu-visible .mobile-menu .menu-box{
	opacity: 1;
	visibility: visible;
	-webkit-transition:all 0.7s ease 500ms;
	-moz-transition:all 0.7s ease 500ms;
	-ms-transition:all 0.7s ease 500ms;
	-o-transition:all 0.7s ease 500ms;
	transition:all 0.7s ease 500ms;
	-webkit-transform: translateX(0%);
	-ms-transform: translateX(0%);
	transform: translateX(0%);
}

.mobile-menu .close-btn{
	position: absolute;
	right: 10px;
	top: 10px;
	line-height: 30px;
	width: 30px;
	text-align: center;
	font-size: 24px;
	color: #000000;
	cursor: pointer;
	z-index: 10;
	-webkit-transition:all 0.5s ease;
	-moz-transition:all 0.5s ease;
	-ms-transition:all 0.5s ease;
	-o-transition:all 0.5s ease;
	transition:all 0.5s ease;
	-webkit-transform: translateY(-50px);
	-ms-transform: translateY(-50px);
	transform: translateY(-50px);
}

.mobile-menu-visible .mobile-menu .close-btn{
	-webkit-transform: translateY(0px);
	-ms-transform: translateY(0px);
	transform: translateY(0px);
}

.mobile-menu .close-btn:hover{
	opacity: 0.50;
}

.mobile-menu .navigation{
	position: relative;
	display: block;
	width:100%;
	border-top: 1px solid rgba(0,0,0,0.10);
}

.mobile-menu .navigation li{
	position: relative;
	display: block;
	border-bottom: 1px solid rgba(0,0,0,0.10);
}

.mobile-menu .navigation li > ul > li:last-child{
	border-bottom: none;
}

.mobile-menu .navigation li > ul > li:first-child{
	border-top: 1px solid rgba(0,0,0,0.10);
}

.mobile-menu .navigation li > a{
	position: relative;
	display: block;
	line-height: 24px;
	padding: 14px 20px;
	font-size: 15px;
	color: #404040;
	font-weight:600;
	text-transform: uppercase;
	-webkit-transition:all 0.5s ease;
	-moz-transition:all 0.5s ease;
	-ms-transition:all 0.5s ease;
	-o-transition:all 0.5s ease;
	transition:all 0.5s ease;
}

.mobile-menu .navigation li:hover > a,
.mobile-menu .navigation li.current > a{
	color:#3246d3;	
}

.mobile-menu .navigation li.dropdown .dropdown-btn{
	position:absolute;
	right:0px;
	top:0px;
	width:100%;
	height:50px;
	text-align:center;
	font-size:16px;
	line-height:52px;
	color:#404040;
	cursor:pointer;
	z-index:5;
}

.mobile-menu .navigation li.dropdown .dropdown-btn span{
	position:absolute;
	right:0px;
	top:3px;
	height:44px;
	width:50px;
	line-height:44px;
}

.mobile-menu .navigation li.dropdown .dropdown-btn span:after{
	content:'';
	position:absolute;
	left:0px;
	top:10px;
	width:1px;
	height:24px;
	border-left:1px solid rgba(0,0,0,0.10);
}

.mobile-menu .navigation li > ul,
.mobile-menu .navigation li > ul > li > ul{
	display: none;
}

.mobile-menu.yellow-theme .navigation li:hover > a,
.mobile-menu.yellow-theme .navigation li.current > a{
	color:#feec42;
}

.sticky-header .navbar-header{
	display:none;
}

.sticky-header .mobile-nav-toggler{
	display:none;
}

/************************ Mega Menu ***************************/

.main-menu .navigation > li.has-mega-menu{
	position:static;
}

.main-menu .navigation > li > .mega-menu{
	position:absolute;
	left:0px;
	right: 0;
	margin: auto;
	width:100%;
	max-width: 1170px;
	background-color: #1e1e1e;
    padding: 45px 40px 30px 45px;
    top: 100%;
	z-index:100;
	opacity: 0;
	-webkit-transform: scaleY(0);
	-moz-transform: scaleY(0);
	-ms-transform: scaleY(0);
	-o-transform: scaleY(0);
	transform: scaleY(0);
	-webkit-transform-origin: top;
	-moz-transform-origin: top;
	-ms-transform-origin: top;
	-o-transform-origin: top;
	transform-origin: top;
	transition:all 500ms ease;
	-moz-transition:all 500ms ease;
	-webkit-transition:all 500ms ease;
	-ms-transition:all 500ms ease;
	-o-transition:all 500ms ease;
	-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:hover > .mega-menu{
	opacity: 1;
	visibility: visible;
	-webkit-transform: scaleY(1);
	-moz-transform: scaleY(1);
	-ms-transform: scaleY(1);
	-o-transform: scaleY(1);
	transform: scaleY(1);
}

.main-menu .navigation > li > .mega-menu .mega-menu-bar{
	position: relative;
	text-align:left;
}

.main-menu .navigation > li .mega-menu-bar h4{
	position:relative;
	color:rgba(255,255,255,0.50);
	padding-bottom:10px;
	margin-bottom:20px;
	letter-spacing:1px;
	text-transform:uppercase;
	border-bottom:1px solid rgba(255,255,255,0.10);
}

.main-menu .navigation > li .mega-menu-bar > ul{
	position:relative;
}

.main-menu .navigation > li .mega-menu-bar .column > ul > li{
	position:relative;
	width:100%;
	margin-bottom:15px;
	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;
}

.main-menu .navigation > li .mega-menu-bar .column{
	position:relative;
	margin-bottom:10px;
}

.main-menu .navigation > li .mega-menu-bar .column > ul > li:last-child{
	border:none;
}

.main-menu .navigation > li .mega-menu-bar .column > ul > li > a{
	position:relative;
	display:block;
	padding:0px 0px;
	line-height:20px;
	font-weight:400;
	font-size:12px;
	color:rgba(255,255,255,0.50);
	letter-spacing:1px;
	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-menu .navigation > li .mega-menu-bar .column > ul > li > a:hover{
	color:#ffffff;
}

.header-style-one.fixed-header .header-lower{
	position:fixed;
	top:0px;
	background-color:#222222;
}

.header-style-one.fixed-header .header-lower .nav-outer:before{
	display:none;
}

.header-style-two{
	position:relative;
}

.header-style-two .header-upper{
	background-color:#ffffff;
	box-shadow:0px 10px 8px rgba(255,233,233,0.20);
}

.header-style-two .header-upper .logo-box .logo{
	padding:27px 0px 28px;
}

.header-style-two .main-menu .navigation > li > a{
	padding:37px 0px 38px;
	color:#19274d;
}

.header-style-two .main-menu .navigation > li > ul > li > ul > li:hover > a,
.header-style-two .main-menu .navigation > li > ul > li:hover > a{
	background-color:#007bff;
}

.header-style-two .header-upper .outer-box{
	padding:21px 0px 20px;
}

.header-style-two .header-upper .language .flag-icon{
	box-shadow:0px 10px 15px rgba(250,70,74,0.15);
}

.header-style-two.fixed-header .header-upper .outer-box {
    padding: 7px 0px 0px;
}

.header-style-two .header-upper .language .dropdown-menu{
	border-color:#007bff;
	margin-top:84px;
}

.header-style-two .header-upper .language .dropdown-menu > li > a:hover{
	background-color:#007bff;
}

.header-style-two.fixed-header{
	position:relative;
	background-color:#ffffff;
}

.header-style-two.fixed-header .header-upper{
	position:fixed;
	left:0px;
	top:0px;
	right:0px;
}

/* Header Style Three */

.header-style-three{
	position:relative;
	border-bottom:1px solid #efefef;
}

.header-style-three .nav-outer{
	margin-top:-130px;
	padding-right:220px;
}

.header-style-three .header-upper .logo-box .logo{
	padding:38px 0px 37px;
}

.header-style-three .main-menu .navigation > li.dropdown:after{
	position:absolute;
	content: "\f067";
	right:0px;
	top:54px;
	opacity:1;
	color:#4377ff;
	font-size:12px;
	font-weight:800;
	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: 'Font Awesome 5 Free';
}

.header-style-three .main-menu .navigation > li.dropdown > a{
	padding-right:18px !important;
}

.header-style-three .main-menu .navigation > li:hover::after,
.header-style-three .main-menu .navigation > li.current::after{
	opacity:1;
}

.header-style-three .main-menu .navigation > li > a{
	padding:50px 0px 50px;
	color:#19274d;
}

.header-style-three .main-menu .navigation > li > ul > li > ul > li:hover > a,
.header-style-three .main-menu .navigation > li > ul > li:hover > a{
	background-color:#4377ff;
}

.header-style-three .header-upper .outer-box{
	padding:38px 0px 32px;
}

.header-style-three .header-upper .language .flag-icon{
	box-shadow:0px 10px 15px rgba(250,70,74,0.15);
}

.header-style-three .header-upper .language .dropdown-menu{
	border-color:#4377ff;
	margin-top:84px;
}

.header-style-three .header-upper .language .dropdown-menu > li > a:hover{
	background-color:#4377ff;
}

.header-style-three.fixed-header{
	position:relative;
	background-color:#ffffff;
}

.header-style-three.fixed-header .header-upper{
	position:fixed;
	left:0px;
	top:0px;
	right:0px;
	background-color:#ffffff;
}

.header-style-three.fixed-header .main-menu .navigation > li.dropdown:after{
	top:24px;
}

/* Header Style Four */

.header-style-four .main-menu .navigation > li > a{
	color:#19274d;
}

.header-style-four .header-upper .logo-box{
	position:relative;
	left:50%;
	margin-left:-80px;
}

.header-style-four .header-upper .nav-outer{
	padding-right:180px;
}

.header-style-four .header-upper .language .dropdown-menu{
	right:0px !important;
	left:auto !important;
}

.header-style-four .main-menu .navigation{
	position:relative;
}

.header-style-four .main-menu .navigation.left-nav{
	float:left;
	text-align:left;
}

.header-style-four .main-menu .navigation.right-nav{
	float:right;
	text-align:right;
}

.header-style-four.fixed-header{
	background-color:#ffffff;
	box-shadow:0px 0px 15px rgba(0,0,0,0.10);
}

.header-style-five .header-upper .logo-box .logo{
	padding:27px 0px 28px;
}

.header-style-five .main-menu .navigation > li > a{
	padding:37px 0px 38px;
	color:#19274d;
}

.header-style-five .header-upper .outer-box{
	padding:21px 0px 20px;
}

.header-style-five .header-upper .language .flag-icon{
	box-shadow:0px 10px 15px rgba(19,116,246,0.15);
}

.header-style-five.fixed-header{
	position:relative;
	background-color:#ffffff;
}

.header-style-five.fixed-header .header-upper{
	position:fixed;
	left:0px;
	top:0px;
	right:0px;
	background-color:#ffffff;
	box-shadow:0px 10px 10px rgba(0,0,0,0.03);
}

.header-style-five.fixed-header .header-upper .outer-box {
    padding: 4px 0px 0px;
}

/* Custom Select */

.form-group .ui-selectmenu-button.ui-button{
	width:100%;
	font-size:14px;
	font-style:normal;
	height:50px;
	padding:10px 20px 10px 20px;
	line-height:28px;
	color:#777777;
	border: none;
	border-radius:0px;
	background:none;
	border:1px solid #e0e0e0;
}

.form-group .ui-button .ui-icon{
	background:none;
	position:relative;
	top:2px;
	text-indent:0px;
	color:#333333;	
}

.form-group .ui-button .ui-icon:before{
	font-family: 'Font Awesome 5 Free';
	content: "\f107";
	position:absolute;
	right:0px;
	top:2px !important;
	top:13px;
	width:10px;
	height:20px;
	display:block;
	color:#000000;
	line-height:20px;
	font-size:16px;
	font-weight:normal;
	text-align:center;
	z-index:5;
	font-weight:800;
}

.ui-menu .ui-menu-item{
	font-size:14px;
}

.ui-menu .ui-menu-item:last-child{
	border:none;	
}

.ui-state-active, .ui-widget-content .ui-state-active{
	background:#0088dd;
	border-color:#0088dd;
}

.ui-menu .ui-menu-item-wrapper{
	position:relative;
	display:block;
	padding:8px 20px;
	font-size:14px;
	line-height:24px;
}

.ui-menu-item:hover{
	background-color:#0088dd;
}

/*** 

====================================================================
	Search Popup
====================================================================

***/


.search-popup{
	position: fixed;
	left: 0;
	top: 0;
	height: 100vh;
	width: 100%;
	z-index: 99999;
	margin-top: -540px;
	transform: translateY(-100%);
	background-color: rgba(0,0,0,0.90);
    -webkit-transition: all 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -moz-transition: all 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -o-transition: all 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    transition: all 1500ms cubic-bezier(0.860, 0.000, 0.070, 1.000); /* easeInOutQuint */
    -webkit-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -moz-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -o-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
    transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000); /* easeInOutQuint */
}

.sidenav-bar-visible .search-popup{
	width: 80%;
}

.search-popup:before{
	position: absolute;
	left: 0;
	top: 100%;
	width: 100%;
	height: 560px;
	background-image: url(../images/icons/waves-shape.png);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	margin-top: 0px;
	content: "";
}

.search-active .search-popup{
	transform: translateY(0%);
	margin-top: 0;
}

.search-popup .close-search{
	position: absolute;
	left: 0;
	right: 0;
	top: 75%;
	margin: 0 auto;
	margin-top: -200px;
	border-radius: 50%;
	text-align: center;
	background-color: #3246d3;
	width: 70px;
	cursor:pointer;
	box-shadow: 0 0 10px rgba(0,0,0,0.05);
	border-bottom: 3px solid #ffffff;
	-webkit-transition: all 500ms ease;
	-moz-transition: all 500ms ease;
	-ms-transition: all 500ms ease;
	-o-transition: all 500ms ease;
	transition: all 500ms ease;
	opacity: 0;
	visibility: hidden;
}

.search-popup .close-search span{
	position: relative;
	display: block;
	height: 70px;
	width: 70px;
	font-size: 30px;
	line-height: 70px;
	color: #ffffff;
}

.search-active .search-popup .close-search{
	visibility: visible;
	opacity: 1;
	top: 50%;
	-webkit-transition-delay: 1500ms;
	-moz-transition-delay: 1500ms;
	-ms-transition-delay: 1500ms;
	-o-transition-delay: 1500ms;
	transition-delay: 1500ms;
}

.search-popup form{
	position: absolute;
	max-width: 700px;
	top: 50%;
	left: 15px;
	right: 15px;
	margin:-35px auto 0;
	transform: scaleX(0);
	transform-origin: center;
	background-color: #111111;
	-webkit-transition: all 300ms ease;
	-moz-transition: all 300ms ease;
	-ms-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	transition: all 300ms ease;
}

.search-active .search-popup form{
	transform: scaleX(1);
	-webkit-transition-delay: 1200ms;
	-moz-transition-delay: 1200ms;
	-ms-transition-delay: 1200ms;
	-o-transition-delay: 1200ms;
	transition-delay: 1200ms;
}

.search-popup .form-group{
	position:relative;
	margin:0px;	
	overflow: hidden;
}

.search-popup .form-group input[type="text"],
.search-popup .form-group input[type="search"]{
	position:relative;
	display:block;
	font-size:18px;
	line-height: 50px;
	color:#000000;
	height:70px;
	width:100%;
	padding: 10px 30px;
	background-color: #ffffff;
	-webkit-transition:all 500ms ease;
	-moz-transition:all 500ms ease;
	-ms-transition:all 500ms ease;
	-o-transition:all 500ms ease;
	transition:all 500ms ease;
	font-weight:500;
	text-transform:capitalize;
}

.search-popup .form-group input[type="submit"],
.search-popup .form-group button{
	position:absolute;
	right:30px;
	top:0px;
	height:70px;
	line-height: 70px;
	background: transparent;
	text-align:center;
	font-size:24px;
	color:#000000;
	padding: 0;
	cursor:pointer;
	-webkit-transition:all 500ms ease;
	-moz-transition:all 500ms ease;
	-ms-transition:all 500ms ease;
	-o-transition:all 500ms ease;
	transition:all 500ms ease;
}

.search-popup .form-group input[type="submit"]:hover,
.search-popup .form-group button:hover{
	color: #000000;
}

.search-popup input::placeholder,
.search-popup textarea::placeholder{
	color:#000000;
}

.search-popup .close-search.style-two{
	position: absolute;
	right: 25px;
	left: auto;
	color:#ffffff;
	width:auto;
	height:auto;
	top:25px;
	margin:0px;
	border:none;
	background:none !important;
	box-shadow:none !important;
	-webkit-transition:all 500ms ease;
	-moz-transition:all 500ms ease;
	-ms-transition:all 500ms ease;
	-o-transition:all 500ms ease;
	transition:all 500ms ease;
}

.search-popup .close-search.style-two span{
	font-size:20px;
	color:#ffffff;
}

/*** 

====================================================================
	Featured Section
====================================================================

***/

.featured-section{
	position:relative;
	padding-top:110px;
	overflow:hidden;
	background-image: -ms-linear-gradient(top, #F9FBFF 0%, #ffffff 100%);
	background-image: -moz-linear-gradient(top, #F9FBFF 0%, #ffffff 100%);
	background-image: -o-linear-gradient(top, #F9FBFF 0%, #ffffff 100%);
	background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #F9FBFF), color-stop(100, #ffffff));
	background-image: -webkit-linear-gradient(top, #F9FBFF 0%, #ffffff 100%);
	background-image: linear-gradient(to bottom, #F9FBFF 0%, #ffffff 100%);
}

.featured-section .owl-carousel .owl-stage-outer{
	padding-top:30px;
}

.featured-section .owl-dots,
.featured-section .owl-nav{
	display:none;
}

.featured-section .outer-container{
	position:relative;
	padding:0px 10px;
	padding-bottom:110px;
}

.feature-block .inner-box .circle-one{
	position:absolute;
	top:-30px;
	left:10%;
	width:52px;
	height:52px;
	z-index:-1;
	opacity:0;
	border-radius:50px;
	display:inline-block;
	background-color:#007bff;
	-webkit-transition:all 500ms ease;
	-moz-transition:all 500ms ease;
	-ms-transition:all 500ms ease;
	-o-transition:all 500ms ease;
	transition:all 500ms ease;
}

.feature-block .inner-box .circle-two{
	position:absolute;
	left:72%;
	bottom:-26px;
	width:52px;
	height:52px;
	z-index:-1;
	opacity:0;
	border-radius:50px;
	display:inline-block;
	background-color:#3246d3;
	-webkit-transition:all 500ms ease;
	-moz-transition:all 500ms ease;
	-ms-transition:all 500ms ease;
	-o-transition:all 500ms ease;
	transition:all 500ms ease;
}

.feature-block .inner-box:hover .circle-one,
.feature-block .inner-box:hover .circle-two{
	opacity:1;
}

.featured-section .button-box{
	position:relative;
	margin-top:90px;
}

.featured-section .button-box .theme-btn{
	margin:0px 14px;
}

.feature-block{
	position:relative;
	margin-bottom:30px;
}

.feature-block .inner-box{
	position:relative;
	padding:50px 35px;
	border-radius:5px;
	-webkit-transition:all 500ms ease;
	-moz-transition:all 500ms ease;
	-ms-transition:all 500ms ease;
	-o-transition:all 500ms ease;
	transition:all 500ms ease;
}

.feature-block .inner-box .icon-box{
	position:relative;
	width:60px;
	height:60px;
	color:#f59e22;
	line-height:60px;
	text-align:center;
	font-size:26px;
	border-radius:4px;
	background-color:#ffffff;
	-webkit-transition:all 500ms ease;
	-moz-transition:all 500ms ease;
	-ms-transition:all 500ms ease;
	-o-transition:all 500ms ease;
	transition:all 500ms ease;
	box-shadow:0px 10px 10px rgba(50,70,211,0.05);
}

.feature-block .inner-box:hover .icon-box{
	background-color:#f59e22;
	color:#ffffff;
}

.feature-block .inner-box .icon-box:before{
	position:absolute;
	content:'';
	left:-30px;
	top:-30px;
	width:121px;
	height:126px;
	opacity:0;
	background:url(../images/icons/feature-icon.png);
	background-repeat:no-repeat;
	-webkit-transition:all 500ms ease;
	-moz-transition:all 500ms ease;
	-ms-transition:all 500ms ease;
	-o-transition:all 500ms ease;
	transition:all 500ms ease;
}

.feature-block .inner-box:hover .icon-box:before{
	opacity:1;
}

.feature-block .inner-box h2{
	position:relative;
	line-height:1.3em;
	font-weight:700;
	margin-top:32px;
}

.feature-block .inner-box h2 a{
	position:relative;
	color:#19274d;
}

.feature-block .inner-box h2 span{
	position:relative;
	font-weight:400;
	display:block;
}

.feature-block .inner-box .text{
	position:relative;
	color:#19274d;
	font-size:16px;
	line-height:1.8em;
	margin-top:18px;
}

.feature-block .inner-box:hover{
	background-color:#ffffff;
	box-shadow:0px 0px 20px rgba(50,70,211,0.07);
}

.feature-block.color-two .inner-box .icon-box{
	color:#3246d3;
}

.feature-block.color-two .inner-box:hover .icon-box{
	background-color:#3246d3;
	color:#ffffff;
}


.feature-block.color-three .inner-box .icon-box{
	color:#007bff;
}

.feature-block.color-three .inner-box:hover .icon-box{
	background-color:#007bff;
	color:#ffffff;
}

.feature-block.color-four .inner-box .icon-box{
	color:#1fae96;
}

.feature-block.color-four .inner-box:hover .icon-box{
	background-color:#1fae96;
	color:#ffffff;
}

.feature-block.color-five .inner-box .icon-box{
	color:#6f60ff;
}

.feature-block.color-five .inner-box:hover .icon-box{
	background-color:#6f60ff;
	color:#ffffff;
}


.feature-block.color-six .inner-box .icon-box{
	color:#00d0ff;
}

.feature-block.color-six .inner-box:hover .icon-box{
	background-color:#00d0ff;
	color:#ffffff;
}

/*** 

====================================================================
	Clients Section
====================================================================

***/

.clients-section{
	position:relative;
	padding:0px 0px 80px;
	border-bottom:1px solid #f2f1ff;
}

.clients-section .auto-container{
	max-width:1600px;
}

.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.5;
	display:inline-block;
	-webkit-transition:all 300ms ease;
	-ms-transition:all 300ms ease;
	-o-transition:all 300ms ease;
	-moz-transition:all 300ms ease;
	transition:all 300ms ease;
}

.clients-section .sponsors-outer .image-box img:hover{
	opacity:1;
}

.clients-section.style-two{
	border-bottom:0px;
}

/*** 

====================================================================
	Clients Section Two
====================================================================

***/

.clients-section-two{
	position:relative;
	padding:60px 0px 100px;
}

.clients-section-two .pattern-layer{
	position:absolute;
	left:0px;
	top:0px;
	right:0px;
	bottom:0px;
	background-position:center center;
	background-repeat:no-repeat;
}

.clients-section-two .outer-container{
	padding:0px 70px;
}

.clients-section-two .sponsors-outer .owl-dots,
.clients-section-two .sponsors-outer .owl-nav{
	position:relative;
	display:none;
}

.clients-section-two .sponsors-outer .image-box{
	position:relative;
	text-align:center;
	margin:0px;
}

.clients-section-two .sponsors-outer .image-box img{
	max-width:100%;
	width:auto;
	opacity:0.3;
	display:inline-block;
	-webkit-transition:all 300ms ease;
	-ms-transition:all 300ms ease;
	-o-transition:all 300ms ease;
	-moz-transition:all 300ms ease;
	transition:all 300ms ease;
}

.clients-section-two .sponsors-outer .image-box img:hover{
	opacity:1;
}

/*** 

====================================================================
	Framework Section
====================================================================

***/

.framework-section{
	position:relative;
	overflow:hidden;
	text-align:center;
	padding:110px 0px 0px;
}

.framework-section .sec-title{
	text-align:left;
}

.framework-section .platform-icons{
	position:absolute;
	left:0px;
	top:0px;
	right:0px;
	bottom:0px;
}

.framework-section .circle-one{
	position:absolute;
	left:-80px;
	bottom:-400px;
	width:1200px;
	height:800px;
	border-radius:600px;
	background-color:#19274d;
}

.framework-section .circle-two{
	position:absolute;
	right:-80px;
	bottom:-300px;
	width:800px;
	height:600px;
	border-radius:600px;
	background-color:#3246d3;
}

.framework-section .sec-title .theme-btn{
	margin-top:40px;
}

.framework-section .image-outer{
	position:relative;
	top:1px;
	text-align:center;
	display:inline-block;
}

.framework-section .platform-icons .java{
	position:absolute;
	left:-20%;
	top:45%;
	font-size:18px;
	color:#19274d;
	padding:16px 28px;
	border-radius:4px;
	font-weight:700;
	background-color:#ffffff;
	box-shadow:0px 10px 20px rgba(0,0,0,0.10);
}

.framework-section .platform-icons .java .icon{
	position:relative;
	color:#3246d3;
	margin-right:5px;
	font-weight:400;
}

.framework-section .platform-icons .wordpress{
	position:absolute;
	left:-5%;
	top:3%;
	font-size:18px;
	color:#19274d;
	padding:16px 28px;
	border-radius:4px;
	font-weight:700;
	background-color:#ffffff;
	box-shadow:0px 10px 20px rgba(0,0,0,0.10);
}

.framework-section .platform-icons .wordpress .icon{
	position:relative;
	color:#3246d3;
	margin-right:5px;
	font-weight:400;
}

.framework-section .platform-icons .ios{
	position:absolute;
	left:-5%;
	bottom:3%;
	font-size:18px;
	color:#19274d;
	padding:16px 28px;
	border-radius:4px;
	font-weight:700;
	background-color:#ffffff;
	box-shadow:0px 10px 20px rgba(0,0,0,0.10);
}

.framework-section .platform-icons .ios .icon{
	position:relative;
	color:#3246d3;
	margin-right:5px;
	font-weight:400;
}

.framework-section .platform-icons .python{
	position:absolute;
	right:15%;
	top:-5%;
	font-size:18px;
	color:#19274d;
	padding:16px 28px;
	border-radius:4px;
	font-weight:700;
	background-color:#ffffff;
	box-shadow:0px 10px 20px rgba(0,0,0,0.10);
}

.framework-section .platform-icons .python .icon{
	position:relative;
	color:#3246d3;
	margin-right:5px;
	font-weight:400;
}

.framework-section .platform-icons .window{
	position:absolute;
	right:-20%;
	top:50%;
	font-size:18px;
	color:#19274d;
	padding:16px 28px;
	border-radius:4px;
	font-weight:700;
	background-color:#ffffff;
	box-shadow:0px 10px 20px rgba(0,0,0,0.10);
}

.framework-section .platform-icons .window .icon{
	position:relative;
	color:#3246d3;
	margin-right:5px;
	font-weight:400;
}

/*** 

====================================================================
	PlatForm Section
====================================================================

***/

.platform-intro-section{
	position:relative;
	padding:120px 0px 70px;
}

.platform-intro-section .buttons-column{
	position:relative;
}

.platform-intro-section .buttons-column .inner-column{
	position:relative;
	padding-right:50px;
	padding-top:115px;
}

.platform-intro-section .content-column{
	position:relative;
}

.platform-intro-section .content-column .inner-column{
	position:relative;
	margin-left:-25px;
}

.platform-intro-section .platform-tabs{
	position:relative;	
}

.platform-intro-section .platform-tabs .tab-btns{
	position:relative;
	margin-bottom:40px;
}

.platform-intro-section .platform-tabs .tab-btns .tab-btn{
	position:relative;
	display:block;
	font-size:16px;
	color:#3246d3;
	font-weight:700;
	cursor:pointer;
	border-radius:4px;
	line-height:1.6em;
	margin-bottom:30px;
	padding:30px 0px 30px 100px;
	transition:all 500ms ease;
	text-transform:capitalize;
	border:2px solid #f6f7f9;
}

.platform-intro-section .platform-tabs .tab-btns .tab-btn:before{
	position:absolute;
	content:'';
	left:40px;
	top:25px;
	width:36px;
	height:36px;
	border-radius:50px;
	display:inline-block;
	border:5px solid #3246d3;
}

.platform-intro-section .platform-tabs .tab-btns .tab-btn:hover{
	border-color:#3246d3;
}

.platform-intro-section .platform-tabs .tab-btns .tab-btn:nth-child(2){
	color:#007bff;
}

.platform-intro-section .platform-tabs .tab-btns .tab-btn:nth-child(2):hover{
	border-color:#007bff;
}

.platform-intro-section .platform-tabs .tab-btns .tab-btn:nth-child(2)::before{
	border-color:#007bff;
}

.platform-intro-section .platform-tabs .tab-btns .tab-btn:nth-child(3){
	color:#f59e22;
}

.platform-intro-section .platform-tabs .tab-btns .tab-btn:nth-child(3):hover{
	border-color:#f59e22;
}

.platform-intro-section .platform-tabs .tab-btns .tab-btn:nth-child(3)::before{
	border-color:#f59e22;
}

.platform-intro-section .platform-tabs .tab-btns .tab-btn:nth-child(4){
	color:#1fae96;
}

.platform-intro-section .platform-tabs .tab-btns .tab-btn:nth-child(4):hover{
	border-color:#1fae96;
}

.platform-intro-section .platform-tabs .tab-btns .tab-btn:nth-child(4)::before{
	border-color:#1fae96;
}

.platform-intro-section .platform-tabs .tab-btns .tab-btn:last-child{
	margin-bottom:0px;
}

.platform-intro-section .platform-tabs .tabs-content{
	position:relative;
}

.platform-intro-section .platform-tabs .tabs-content .tab{
	position:relative;
	display:none;
	margin-bottom:40px;
}

.platform-intro-section .platform-tabs .tabs-content .tab.active-tab{
	display:block;	
}

.platform-tab-content{
	position:relative;
}

.platform-tab-content .inner-content{
	position:relative;
	padding:90px 70px;
	border-radius:15px;
	background-color:#f9f8ff;
}

.platform-tab-content .inner-content .big-icon{
	position:absolute;
	right:35px;
	top:35px;
	width:306px;
	height:306px;
}

.platform-tab-content .inner-content .icon-outer{
	position:relative;
	margin-bottom:40px;
	display:inline-block;
}

.platform-tab-content .inner-content .icon-outer .circles-layer{
	position:absolute;
	left:0px;
	top:0px;
	width:120px;
	height:120px;
	z-index:1;
}

.platform-tab-content .inner-content .icon-outer .circles-layer:before{
	position:absolute;
	content:'';
	left:3px;
	top:15px;
	width:16px;
	height:16px;
	border-radius:50px;
	background-color:#3246d3;
	box-shadow:0px 10px 15px rgba(50,70,211,0.15);
}

.platform-tab-content .inner-content .icon-outer .circles-layer:after{
	position:absolute;
	content:'';
	right:6px;
	bottom:15px;
	width:16px;
	height:16px;
	border-radius:50px;
	background-color:#007bff;
	box-shadow:0px 10px 15px rgba(255,95,99,0.15);
}

.platform-tab-content .inner-content .icon-outer .icon-box{
	position:relative;
	width:120px;
	height:120px;
	line-height:120px;
	text-align:center;
	border-radius:50%;
	display:inline-block;
	background-color:#ffffff;
}

.platform-tab-content .inner-content .sec-title{
	margin-bottom:10px;
}

.platform-tab-content .inner-content .icon-outer .icon-box .icon{
	position:relative;
}

.platform-tab-content .inner-content .text{
	position:relative;
	color:#19274d;
	font-size:18px;
	line-height:1.7em;
}

.platform-tab-content .inner-content .text span{
	position:relative;
	font-weight:700;
}

/*** 

====================================================================
	Price Section
====================================================================

***/

.price-section{
	position:relative;
	padding:110px 0px 110px;
	background-color:#f9f8ff;
}

.price-section .trial-column{
	position:relative;
	float:left;
	padding:0px;
}

.price-section .trial-column .inner-column{
	position:relative;
	padding:50px 45px;
	margin-top:100px;
	background-size:cover;
}

.price-section .trial-column .inner-column:before{
	position:absolute;
	content:'';
	left:0px;
	top:0px;
	right:0px;
	bottom:0px;
	background-color:rgba(50,70,211,0.90);
}

.price-section .trial-column .inner-column .icon{
	position:relative;
	color:#ffffff;
	font-size:60px;
	line-height:1em;
}

.price-section .trial-column .inner-column h2{
	position:relative;
	color:#ffffff;
	font-weight:700;
	margin-top:20px;
}

.price-section .trial-column .inner-column h2 span{
	position:relative;
	font-weight:400;
}

.price-section .trial-column .inner-column .title{
	position:relative;
	color:#ffffff;
	font-weight:400;
	font-size:16px;
	margin-top:2px;
}

.price-section .trial-column .inner-column .text{
	position:relative;
	color:#ffffff;
	font-weight:400;
	font-size:18px;
	margin-top:22px;
	line-height:1.8em;
}

.price-section .trial-column .inner-column .app-options{
	position:relative;
	margin-top:28px;
}

.price-section .trial-column .inner-column .app-options li{
	position:relative;
	margin-right:20px;
	display:inline-block;
}

.price-section .trial-column .inner-column .app-options li a{
	position:relative;
	width:60px;
	height:60px;
	color:#ffffff;
	font-size:20px;
	line-height:60px;
	text-align:center;
	border-radius:4px;
	display:inline-block;
	background-color:#0e209e;
	-webkit-transition:all 300ms ease;
	-ms-transition:all 300ms ease;
	-o-transition:all 300ms ease;
	-moz-transition:all 300ms ease;
	transition:all 300ms ease;
}

.price-section .trial-column .inner-column .app-options li a:hover{
	background-color:#ffffff;
	color:#3246d3;
}

.price-section .price-column{
	position:relative;
	float:left;
	padding:0px;
}

.price-section .price-column .inner-column{
	position:relative;
	padding:60px 90px;
	background-color:#ffffff;
}

.price-section .price-column .inner-column .upper-box{
	position:relative;
	margin-bottom:28px;
	padding-bottom:30px;
	border-bottom:1px solid #dee2ff;
}

.price-section .price-column .inner-column .upper-box .title-box{
	position:relative;
}

.price-section .price-column .inner-column .upper-box .title-box .title-inner{
	position:relative;
	padding-top:8px;
	padding-left:125px;
}

.price-section .price-column .inner-column .upper-box .title-box .icon{
	position:absolute;
	left:0px;
	top:0px;
	color:#3246d3;
	line-height:1em;
	font-size:78px;
}

.price-section .price-column .inner-column .upper-box .title-box .title-inner h2{
	position:relative;
	font-weight:700;
	color:#19274d;
	line-height:1.1em;
}

.price-section .price-column .inner-column .upper-box .title-box .title-inner h2 span{
	font-weight:400;
}

.price-section .price-column .inner-column .upper-box .title-box .title-inner .title{
	position:relative;
	color:#19274d;
	font-size:16px;
	line-height:1.3em;
	margin-top:12px;
}

.price-section .price-column .inner-column .upper-box .price{
	position:absolute;
	right:0px;
	top:0px;
	color:#007bff;
	font-size:80px;
	font-weight:700;
	line-height:1em;
	letter-spacing:-1px;
}

.price-section .price-column .inner-column .upper-box .price sub{
	position:relative;
	color:#19274d;
	font-weight:700;
	font-size:16px;
}

.price-section .price-column .inner-column .upper-box .text{
	position:relative;
	color:#19274d;
	font-size:24px;
	line-height:1.5em;
	margin-top:25px;
}

.price-section.style-two{
	background-color:#f5fbff;
}

.price-section.style-two .trial-column .inner-column:before{
	opacity:0.90;
	background-color:inherit;
	background-image: -ms-linear-gradient(left, #0C4094 0%, #1c74c6 100%);
	background-image: -moz-linear-gradient(left, #0C4094 0%, #1c74c6 100%);
	background-image: -o-linear-gradient(left, #0C4094 0%, #1c74c6 100%);
	background-image: -webkit-gradient(linear, left top, right top, color-stop(0, #0C4094), color-stop(100, #1c74c6));
	background-image: -webkit-linear-gradient(left, #0C4094 0%, #1c74c6 100%);
	background-image: linear-gradient(to right, #0C4094 0%, #1c74c6 100%);
}

.price-section.style-two .trial-column .inner-column .app-options li a{
	background-color:#002b5d;
}

.price-section.style-two .price-column .inner-column .upper-box .title-box .icon{
	background: -webkit-linear-gradient(-45deg, #0c4094, #1c74c6 80%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.price-section.style-two .price-column .inner-column .upper-box .price{
	background: -webkit-linear-gradient(-45deg, #0c4094, #1c74c6 80%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.price-section.style-two .price-column .inner-column .upper-box .price sub,
.price-section.style-two .price-column .inner-column .upper-box .price sup{
	background: -webkit-linear-gradient(-45deg, #0c4094, #1c74c6 80%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Style Three */

.price-section.style-three{
	background-color:#ffffff;
}

.price-section.style-three .price-column .inner-column{
	box-shadow:0px 0px 15px rgba(0,0,0,0.10);
}

.price-section.style-three .trial-column .inner-column:before{
	opacity:0.90;
	background-color:inherit;
	background-image: -ms-linear-gradient(left, #007bff 0%, #a1bbff 100%);
    background-image: -moz-linear-gradient(left, #007bff 0%, #a1bbff 100%);
    background-image: -o-linear-gradient(left, #007bff 0%, #a1bbff 100%);
    background-image: -webkit-gradient(linear, left top, right top, color-stop(0, #007bff), color-stop(100, #a1bbff));
    background-image: -webkit-linear-gradient(left, #007bff 0%, #a1bbff 100%);
    background-image: linear-gradient(to right, #007bff 0%, #a1bbff 100%);
}

.price-section.style-three .trial-column .inner-column .app-options li a{
	background-color:#002b5d;
}

.price-section.style-three .trial-column .inner-column .app-options li a:hover{
	background-color:#ffffff;
	color:#fe6b45;
}

.price-section.style-three .price-column .inner-column .upper-box .title-box .icon{
	background: -webkit-linear-gradient(-45deg, #007bff, #a1bbff 80%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.price-section.style-three .price-column .inner-column .upper-box .price{
	background: -webkit-linear-gradient(-45deg, #007bff, #a1bbff 80%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.price-section.style-three .price-column .inner-column .upper-box .price sub,
.price-section.style-three .price-column .inner-column .upper-box .price sup{
	background: -webkit-linear-gradient(-45deg, #007bff, #a1bbff 80%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.price-section.style-three .price-column .inner-column .list-style-one li:before{
	color:#fa4949;
}

.price-section.style-three .price-column .inner-column .list-style-one li:hover::before{
	background-color:#fa4949;
	border-color:#fa4949;
	color:#ffffff;
}

/*** 

====================================================================
	Counter Section
====================================================================

***/

.counter-section{
	position:relative;
	padding:100px 0px 100px;
	background-color:#3246d3;
	background-position:center center;
	background-repeat:no-repeat;
}

.counter-section .section-icon{
	position:relative;
	width:120px;
	height:120px;
	color:#3246d3;
	font-size:80px;
	text-align:center;
	border-radius:50%;
	line-height:120px;
	display:block;
	margin:0 auto;
	margin-bottom:50px;
	background-color:#ffffff;
}

.counter-section .fact-counter .column:nth-child(2),
.counter-section .fact-counter .column:nth-child(3){
	margin-top:70px;
}

/* Fact Counter */

.fact-counter{
	position:relative;
}

.fact-counter .column{
	position:relative;
	margin-bottom:30px;
}

.fact-counter .column .inner{
	position:relative;
	text-align:center;
}

.fact-counter .column .inner .content{
	position:relative;
	width:180px;
	text-align:center;
	padding:45px 10px;
	border-radius:5px;
	display:inline-block;
	background-color:#ffffff;
}

.fact-counter .count-outer .percentage{
	display:inline-block;
	font-weight:700;
	color:#19274d;
	font-size:60px;
	line-height:1em;
	font-family: 'Ubuntu', sans-serif; 
}

.fact-counter .column .inner .count-outer{
	position:relative;
	font-weight:700;
	color:#19274d;
	font-size:60px;
	line-height:1em;
	font-family: 'Ubuntu', sans-serif; 
}

.fact-counter .column .inner .count-outer i{
	position:relative;
	font-style:normal;
	color:#3246d3;
	font-size:30px;
	font-weight:300;
}

.fact-counter .column .inner .counter-title{
	position:relative;
	font-size:16px;
	font-weight:700;
	margin-top:10px;
	color:#19274d;
}

.counter-section.style-two{
	background-color:inherit;
}

.counter-section.style-two:before{
	position:absolute;
	content:'';
	left:0px;
	top:0px;
	right:0px;
	bottom:0px;
	z-index:-1;
	background-image: -ms-linear-gradient(left, #007bff 0%, #a1bbff 100%);
    background-image: -moz-linear-gradient(left, #007bff 0%, #a1bbff 100%);
    background-image: -o-linear-gradient(left, #007bff 0%, #a1bbff 100%);
    background-image: -webkit-gradient(linear, left top, right top, color-stop(0, #007bff), color-stop(100, #a1bbff));
    background-image: -webkit-linear-gradient(left, #007bff 0%, #a1bbff 100%);
    background-image: linear-gradient(to right, #007bff 0%, #a1bbff 100%);
}

.counter-section.style-two .fact-counter .column .inner .count-outer i{
	color:#fc5548;
	font-size:30px;
	font-weight:700;
}

.counter-section.style-two .section-icon{
	color:#fa4a49;
}

/*** 

====================================================================
	Partners Section
====================================================================

***/

.partners-section{
	position:relative;
	padding:185px 0px 140px;
}

.partners-section .image-column{
	position:relative;
}

.partners-section .image-column .inner-column{
	position:relative;
}

.partners-section .image-column .inner-column .circle-one{
	position:absolute;
	right:-60px;
	top:-60px;
	width:125px;
	height:125px;
	border-radius:50%;
	background-image: -ms-linear-gradient(left, #007bff 0%, #a1bbff 100%);
    background-image: -moz-linear-gradient(left, #007bff 0%, #a1bbff 100%);
    background-image: -o-linear-gradient(left, #007bff 0%, #a1bbff 100%);
    background-image: -webkit-gradient(linear, left top, right top, color-stop(0, #007bff), color-stop(100, #a1bbff));
    background-image: -webkit-linear-gradient(left, #007bff 0%, #a1bbff 100%);
    background-image: linear-gradient(to right, #007bff 0%, #a1bbff 100%);
}

.partners-section .image-column .inner-column .circle-two{
	position:absolute;
	left:-60px;
	bottom:-60px;
	width:125px;
	height:125px;
	border-radius:50%;
	background-color:#3246d3;
}

.partners-section .image-column .inner-column .image{
	position:relative;
}

.partners-section .image-column .inner-column .image img{
	position:relative;
	width:100%;
	display:block;
	border-radius:8px;
}

.partners-section .content-column{
	position:relative;
}

.partners-section .content-column .inner-column{
	position:relative;
	padding-left:60px;
	padding-top:35px;
}

/* Partners Tab */

.partners-tabs{
	position:relative;
	padding-bottom:35px;
}

.partners-tabs .tab-btns{
	position:relative;
	margin-top:40px;
}

.partners-tabs .tab-btns:before{
	position:absolute;
	content:'';
	left:0px;
	top:0px;
	width:100%;
	height:2px;
	background-color:#eaedff;
	-webkit-transition:all 300ms ease;
	-ms-transition:all 300ms ease;
	-o-transition:all 300ms ease;
	-moz-transition:all 300ms ease;
	transition:all 300ms ease;
}

.partners-tabs .tab-btns .tab-btn.active-btn::before,
.partners-tabs .tab-btns .tab-btn:hover::before{
	opacity:1;
}

.partners-tabs .tab-btns .tab-btn{
	position:relative;
	display:block;
	margin:0px 0px;
	font-size:24px;
	background:none;
	color:#19274d;
	font-weight:700;
	line-height:24px;
	cursor:pointer;
	margin-right:40px;
	margin-bottom:12px;
	padding-top:30px;
	border-top:1px solid #e6e9f4;
	display:inline-block;
	transition:all 500ms ease;
	text-transform:capitalize;
	-webkit-transition:all 300ms ease;
	-ms-transition:all 300ms ease;
	-o-transition:all 300ms ease;
	-moz-transition:all 300ms ease;
	transition:all 300ms ease;
	font-family: 'Ubuntu', sans-serif;
}

.partners-tabs .tab-btns .tab-btn:last-child{
	margin-right:0px;
}

.partners-tabs .tab-btns .tab-btn span{
	position:relative;
	display:block;
	color:#3246d3;
	font-size:14px;
	margin-top:7px;
}

.partners-tabs .tab-btns .tab-btn:nth-child(2) span{
	color:#007bff;
}

.partners-tabs .tab-btns .tab-btn:nth-child(3) span{
	color:#1fae96;
}

.partners-tabs .tab-btns .tab-btn:before{
	position:absolute;
	content:'';
	left:0px;
	top:-1px;
	width:100%;
	height:4px;
	opacity:0;
	background-color:#3246d3;
	-webkit-transition:all 300ms ease;
	-ms-transition:all 300ms ease;
	-o-transition:all 300ms ease;
	-moz-transition:all 300ms ease;
	transition:all 300ms ease;
}

.partners-tabs .tab-btns .tab-btn:hover .icon,
.partners-tabs .tab-btns .tab-btn.active-btn .icon{
	color:#ffffff;
	background-color:#3246d3;
}

.partners-tabs .tabs-content{
	position:relative;
}

.partners-tabs .tabs-content .tab{
	position:relative;
	display:none;
}

.partners-tabs .tabs-content .tab.active-tab{
	display:block;	
}

.partners-tabs .tabs-content .text{
	position: relative;
    color: #19274d;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.3em;
    margin-bottom: 45px;
	font-family: 'Ubuntu', sans-serif;
}

.partners-section.style-two .image-column .inner-column .circle-two{
	background-image: -ms-linear-gradient(left, #007bff 0%, #a1bbff 100%);
    background-image: -moz-linear-gradient(left, #007bff 0%, #a1bbff 100%);
    background-image: -o-linear-gradient(left, #007bff 0%, #a1bbff 100%);
    background-image: -webkit-gradient(linear, left top, right top, color-stop(0, #007bff), color-stop(100, #a1bbff));
    background-image: -webkit-linear-gradient(left, #007bff 0%, #a1bbff 100%);
    background-image: linear-gradient(to right, #007bff 0%, #a1bbff 100%);
}

.partners-section.style-two .content-column .lower-box:before{
	background-color:#fb5448;
}

.partners-section.style-two .content-column .lower-box ul li{
	font-family: 'Poppins', sans-serif;
	margin-right:60px;
}

.partners-section.style-two .content-column .lower-box ul li span{
	color:#fb5448;
}

.partners-section.style-two .content-column .lower-box ul li:last-child{
	margin-right:0px;
}

/*** 

====================================================================
	Blog Section
====================================================================

***/

.blog-section{
	position:relative;
	padding:100px 0px 100px;
}

.blog-section:before{
	position:absolute;
	content:'';
	right:100px;
	top:0px;
	width:300%;
	height:1300px;
	background-color:#19274d;
	border-radius:0px 15px 15px 0px;
}

.blog-section .inner-container{
	position:relative;
}

.blog-section .circle-one{
	position:absolute;
	top:-30px;
	left:28%;
	width:52px;
	height:52px;
	border-radius:50px;
	display:inline-block;
	background-color:#007bff;
}

.blog-section .circle-two{
	position:absolute;
	left:42%;
	bottom:10px;
	width:52px;
	height:52px;
	border-radius:50px;
	display:inline-block;
	background-color:#3246d3;
}

.news-block{
	position:relative;
	margin-bottom:30px;
}

.news-block .inner-box{
	position:relative;
	padding:40px 30px;
	border-radius:4px;
	background-color:#0a1533;
}

.news-block .inner-box .category{
	position:relative;
	color:#ffffff;
	font-size:14px;
	padding:6px 18px;
	border-radius:5px;
	font-weight:700;
	display:inline-block;
	background-color:#3246d3;
}

.news-block .inner-box h5{
	position:relative;
	line-height:1.6em;
	font-weight:700;
	margin-top:25px;
}

.news-block .inner-box h5 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 .inner-box h5 a:hover{
	color:#007bff;
}

.news-block .inner-box .text{
	position:relative;
	color:#9aa6c8;
	font-size:14px;
	line-height:1.9em;
	margin-top:18px;
}

.news-block .inner-box .post-meta{
	position:relative;
	padding-top:18px;
	margin-top:22px;
	border-top:1px solid rgba(255,255,255,0.08);
}

.news-block .inner-box .post-meta li{
	position:relative;
	font-size:14px;
	color:#ffffff;
	font-weight:700;
	margin-right:6px;
	display:inline-block;
}

.news-block .inner-box .post-meta li:last-child{
	margin-right:0px;
}

.news-block .inner-box .post-meta li .icon{
	position:relative;
	margin-right:10px;
	color:#007bff;
	font-weight:300;
}

/*** 

====================================================================
	Main Footer
====================================================================

***/

.main-footer{
	position:relative;
	overflow:hidden;
	padding:90px 0px 0px;
}

.main-footer:before{
	position:absolute;
	content:'';
	left:140px;
	top:0px;
	bottom:0px;
	width:300%;
	border-radius:15px;
	background-color:#ffffff;
}

.main-footer .footer-widget{
	position:relative;
	z-index:1;
	margin-bottom:40px;
}

.main-footer .widgets-section{
	position:relative;
	padding-bottom:40px;
}

.main-footer .footer-widget h5{
	position:relative;
	font-weight:700;
	color:#19274d;
	line-height:1.2em;
	margin-bottom:30px;
	text-transform:capitalize;
}

/* List Link */

.list-link{
	position:relative;
}

.list-link li{
	position:relative;
	margin-bottom:15px;
}

.list-link li a{
	position:relative;
	color:#19274d;
	font-size:16px;
	-webkit-transition:all 300ms ease;
	-ms-transition:all 300ms ease;
	-o-transition:all 300ms ease;
	-moz-transition:all 300ms ease;
	transition:all 300ms ease;
}

.list-link li a:hover{
	color:#3246d3;
}

.main-footer .quote-btn{
	position:relative;
	color:#ffffff;
	font-size:16px;
	font-weight:700;
	padding:20px 40px;
	border-radius:5px;
	background-color:#3246d3;
	-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 .quote-btn .icon{
	font-weight:400;
	margin-right:8px;
}

.main-footer .quote-btn:hover{
	background-color:#f45b60;
}

.main-footer .footer-bottom{
	position:relative;
}

.main-footer .footer-bottom .inner-container{
	position:relative;
	padding:24px 0px;
	border-top:1px solid #d8e3ff;
}

.main-footer .copyright-two{
	position:relative;
	color:#ffffff;
	font-size:18px;
	font-weight:400;
	text-align:center;
	margin-top:35px;
}

.main-footer .copyright-two a{
	position:relative;
	color:#ffffff;
	font-weight:600;
}

.main-footer .footer-bottom .copyright-column{
	position:relative;
	text-align:right;
}

.main-footer .footer-bottom .copyright-column .copyright{
	position:relative;
	color:#19274d;
	font-size:18px;
	font-weight:700;
}

.main-footer .footer-bottom .copyright-column .copyright a{
	position:relative;
	color:#f45b60;
}

.main-footer .footer-bottom .social-column{
	position:relative;
}

.main-footer .footer-bottom .social-column ul{
	position:relative;
}

.main-footer .footer-bottom .social-column ul li{
	position:relative;
	margin-right:14px;
	display:inline-block;
}

.main-footer .footer-bottom .social-column ul li a{
	position:relative;
	color:#19274d;
	font-size:18px;
	-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 .footer-bottom .social-column ul li a:hover{
	color:#f45b60;
}

.main-footer .upper-box{
	position:relative;
	margin-bottom:30px;
}

.main-footer .upper-box .social-box{
	position:relative;
	margin-bottom:30px;
}

.main-footer .upper-box .social-box li{
	position:relative;
	margin-left:10px;
	display:inline-block;
}

.main-footer .upper-box .social-box li a{
	position:relative;
	width:60px;
	height:60px;
	color:#ffffff;
	font-size:18px;
	text-align:center;
	line-height:54px;
	border-radius:50px;
	display:inline-block;
	-webkit-transition:all 300ms ease;
	-ms-transition:all 300ms ease;
	-o-transition:all 300ms ease;
	-moz-transition:all 300ms ease;
	transition:all 300ms ease;
	border:2px solid rgba(255,255,255,0.10);
}

.main-footer .upper-box .social-box li a:hover{
	background-color:#ffffff;
	border-color:#ffffff;
	color:#fa4949;
}

.main-footer.style-two{
	padding-top:110px;
	padding-bottom:100px;
	background-image: -ms-linear-gradient(left, #007bff 0%, #a1bbff 100%);
	background-image: -moz-linear-gradient(left, #007bff 0%, #a1bbff 100%);
	background-image: -o-linear-gradient(left, #007bff 0%, #a1bbff 100%);
	background-image: -webkit-gradient(linear, left top, right top, color-stop(0, #007bff), color-stop(100, #a1bbff));
	background-image: -webkit-linear-gradient(left, #007bff 0%, #a1bbff 100%);
	background-image: linear-gradient(to right, #007bff 0%, #a1bbff 100%);
}

.main-footer.style-two::before,
.main-footer.style-four::before,
.main-footer.style-five::before{
	display:none;
}

.main-footer.style-two .widgets-section{
	position:relative;
	padding:75px 70px 40px;
	border-radius:15px;
	background-color:#ffffff;
}

.main-footer.style-two .widgets-section .circle-one{
	position:absolute;
	left:-100px;
	top:-50px;
	width:325px;
	height:325px;
	opacity:0.06;
	border-radius:50%;
	background-color:#ffffff;
}

.main-footer.style-two .widgets-section .circle-two{
	position:absolute;
	right:-100px;
	bottom:-50px;
	width:325px;
	height:325px;
	opacity:0.06;
	border-radius:50%;
	background-color:#ffffff;
}

.main-footer .download-options{
	position:relative;
	text-align:center;
	margin-bottom:70px;
}

.main-footer .download-options ul{
	position:relative;
}

.main-footer .download-options ul li{
	position:relative;
	margin-right:28px;
	margin-bottom:15px;
	display:inline-block;
}

.main-footer .download-options ul li.download{
	position:relative;
	color:#19274d;
	font-size:20px;
	font-weight:700;
}

.main-footer .download-options ul li a{
	position:relative;
	color:#19274d;
	font-size:16px;
	font-weight:700;
	padding:18px 38px;
	border-radius:5px;
	display:inline-block;
	border:2px solid #e6edf7;
	transition:all 500ms ease;
	-webkit-transition:all 500ms ease;
	-ms-transition:all 500ms ease;
	-o-transition:all 500ms ease;
}

.main-footer .download-options ul li a span{
	position:relative;
	margin-right:10px;
	color:#4377ff;
	font-size:16px;
	font-weight:400;
}

.main-footer .download-options ul li:nth-child(2) a span{
	font-weight:800;
}

.main-footer .download-options ul li a:hover{
	color:#ffffff;
	border-color:#4377ff;
	background-color:#4377ff;
}

.main-footer .download-options ul li a:hover span{
	color:#ffffff;
}

.main-footer.style-three{
	padding-top:80px;
	background-color:#fcfdff;
}

.main-footer.style-three:before{
	display:none;
}

.main-footer.style-three .footer-bottom .social-column ul li a:hover{
	color:#4377ff;
}

.main-footer.style-three .footer-bottom .copyright-column .copyright a{
	color:#4377ff;
}

/* Footer Style Four */

.main-footer.style-four{
	padding-top:170px;
	background-color:#19274d;
}

.main-footer.style-four .footer-widget h5{
	color:#ffffff;
}

.main-footer.style-four .list-link li a{
	color:#ffffff;
}

.main-footer.style-four .footer-bottom .social-column ul li a{
	color:#ffffff;
}

.main-footer.style-four .footer-bottom .inner-container{
	border-color:rgba(255,255,255,0.10);
}

.main-footer.style-four .footer-bottom .copyright-column .copyright,
.main-footer.style-four .footer-bottom .copyright-column .copyright a{
	color:#ffffff;
}

/* Style Five */

.main-footer.style-five{
	padding-top:100px;
	background-color:#19274d;
}

.main-footer.style-five .footer-widget h5{
	color:#ffffff;
}

.main-footer.style-five .list-link li a{
	color:#ffffff;
}

.main-footer.style-five .footer-bottom{
	background-image: -ms-linear-gradient(left, #007bff 0%, #a1bbff 100%);
    background-image: -moz-linear-gradient(left, #007bff 0%, #a1bbff 100%);
    background-image: -o-linear-gradient(left, #007bff 0%, #a1bbff 100%);
    background-image: -webkit-gradient(linear, left top, right top, color-stop(0, #007bff), color-stop(100, #a1bbff));
    background-image: -webkit-linear-gradient(left, #007bff 0%, #a1bbff 100%);
    background-image: linear-gradient(to right, #007bff 0%, #a1bbff 100%);
}

.main-footer.style-five .footer-bottom .social-column ul li a{
	color:#ffffff;
}

.main-footer.style-five .footer-bottom .inner-container{
	border:none;
}

.main-footer.style-five .footer-bottom .copyright-column .copyright,
.main-footer.style-five .footer-bottom .copyright-column .copyright a{
	color:#ffffff;
}

/*** 

====================================================================
	Banner Section Two
====================================================================

***/

.banner-section-two{
	position:relative;
	overflow:hidden;
}

.banner-section-two .auto-container{
	max-width:1420px;
}

.banner-section-two .content-column{
	position:relative;
}

.banner-section-two .content-column .inner-column{
	position:relative;
	padding-top:130px;
}

.banner-section-two .content-column .title{
	position:relative;
	color:#007bff;
	font-size:18px;
	line-height:1.8em;
	margin-bottom:15px;
	font-weight:500;
}

.banner-section-two .content-column h1{
	position:relative;
	color:#19274d;
	font-size:72px;
	font-weight:600;
	line-height:1.1em;
	margin-bottom:35px;
}

.banner-section-two .content-column .text{
	position:relative;
	color:#a5aec5;
	font-size:18px;
	line-height:1.8em;
	margin-bottom:35px;
	font-weight:500;
}

.banner-section-two .image-column{
	position:relative;
}

.banner-section-two .image-column .inner-column{
	position:relative;
}

.banner-section-two .image-column .inner-column:before{
	position:absolute;
	content:'';
	left:280px;
	top:90px;
	width:200%;
	bottom:0px;
	background-color:#ffe9e9;
}

.banner-section-two .image-column .image{
	position:relative;
	margin-left:120px;
	margin-right:-190px;
}

.banner-section-two .image-column .image img{
	position:relative;
	transition:all 900ms ease;
	-moz-transition:all 900ms ease;
	-webkit-transition:all 900ms ease;
	-ms-transition:all 900ms ease;
	-o-transition:all 900ms ease;
}

.banner-section-two .image-column .image.now-in-view img{
	margin-left:0px;
	opacity:1;
	-webkit-transition-delay: 500ms;
	-moz-transition-delay: 500ms;
	-ms-transition-delay: 500ms;
	-o-transition-delay: 500ms;
	transition-delay: 500ms;
}

/* Counter Boxed */

.banner-section-two .image-column .counter-boxed{
	position:absolute;
	left:60px;
	top:110px;
	z-index:1;
}

.banner-section-two .image-column .counter-boxed .graph-outer{
	position:relative;
	width:270px;
	padding:40px 40px;
	text-align:center;
	display:inline-block;
	background-color:#ffffff;
	box-shadow:0px 0px 15px rgba(251,71,73,0.10);
}

.banner-section-two .image-column .counter-boxed .count-box{
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    font-size: 16px;
    color: #19274d;
    font-weight: 700;
    margin-top: -38px;
	text-align:center;
}

.banner-section-two .image-column .counter-boxed .count-box .count-text{
	position:relative;
	color:#19274d;
	font-size:48px;
	font-weight:700;
}

.banner-section-two .image-column .counter-boxed .count-box .sign{
	font-size: 20px;
}

.banner-section-two .image-column .counter-boxed h6{
	position: relative;
	line-height: 1.6em;
	color: #19274d;
	font-weight: 700;
	margin-top:22px;
	text-transform: capitalize;
	font-family: 'Roboto', sans-serif;
}

.banner-section-two .authors-box{
	position:absolute;
	left:0px;
	bottom:0px;
}

.banner-section-two .authors-box .banner-author-box{
	position:relative;
	margin-right:30px;
	display:inline-block;
}

.banner-section-two .authors-box .banner-author-box .box-inner{
	position:relative;
	min-height:250px;
	padding-left:255px;
	padding-top:70px;
}

.banner-section-two .authors-box .banner-author-box .box-inner .author-image{
	position:absolute;
	left:0px;
	top:0px;
}

.banner-section-two .authors-box .banner-author-box .box-inner .rating{
	position:relative;
	color:#007bff;
	font-size:14px;
}

.banner-section-two .authors-box .banner-author-box .box-inner h3{
	position:relative;
	color:#19274d;
	font-size:24px;
	font-weight:600;
	line-height:1.4em;
	margin-top:10px;
	font-family: 'Poppins', sans-serif;
}

.banner-section-two .authors-box .banner-author-box .box-inner .author{
	position:relative;
	color:#19274d;
	font-size:18px;
	font-weight:600;
	margin-top:12px;
}

.banner-section-two .authors-box .banner-author-box .box-inner .author span{
	position:relative;
	color:#007bff;
	font-size:14px;
	font-weight:700;
}

/* Subscribe Form */

.subscribe-form-two{
	position:relative;
	width:100%;
	margin-bottom:0px;
}

.subscribe-form-two .form-group{
    position: relative;
    display: block;
    z-index:1;
	margin-bottom: 0px;
}

.subscribe-form-two .form-group input[type="text"],
.subscribe-form-two .form-group input[type="tel"],
.subscribe-form-two .form-group input[type="email"],
.subscribe-form-two .form-group textarea {
    position:relative;
	display:block;
	width:100%;
	height:80px;
	font-size:16px;
	color:#19274d;
	line-height:38px;
	font-weight:400;
	border-radius:50px;
	background:#f6f8ff;
	padding:10px 20px 10px 40px;
	transition:all 500ms ease;
	-webkit-transition:all 500ms ease;
	-ms-transition:all 500ms ease;
	-o-transition:all 500ms ease;
}

.subscribe-form-two .form-group input[type="email"]:focus{
	
}

.subscribe-form-two .form-group textarea::-webkit-input-placeholder,
.subscribe-form-two .form-group input::-webkit-input-placeholder{
	color:#19274d;
}

.subscribe-form-two .form-group .theme-btn{
	position: absolute;
	top: 15px;
	right: 15px;
	cursor:pointer;
}

/*** 

====================================================================
	About Section
====================================================================

***/

.about-section{
	position:relative;
	padding:120px 0px 80px;
}

.about-section .image-column{
	position:relative;
	margin-bottom:40px;
}

.about-section .image-column .inner-column{
	position:relative;
}

.about-section .image-column .pattern-layer{
	position:absolute;
	left:-35px;
	bottom:-35px;
	width:60px;
	height:60px;
	background-repeat:no-repeat;
}

.about-section .image-column .image{
	position:relative;
	display:inline-block;
}

.about-section .image-column .image img{
	position:relative;
}

.about-section .image-column .image-content{
	position:absolute;
	right:20px;
	bottom:0px;
	width:100%;
	max-width:320px;
	padding:45px 45px;
	background-color:#ffffff;
	box-shadow:0px 0px 20px rgba(250,71,71,0.20);
}

.about-section .image-column .image-content .icon-box{
	position:absolute;
	left:-42px;
	top:-50px;
	width:102px;
	height:106px;
}

.about-section .image-column .image-content h4{
	position:relative;
	color:#19274d;
	font-size:24px;
	font-weight:600;
	line-height:1.3em;
	margin-bottom:25px;
	font-family: 'Poppins', sans-serif;
}

.about-section .image-column .image-content .circle-box{
	position:absolute;
	content:'';
	right:-15px;
	top:-15px;
	width:32px;
	height:32px;
	z-index:-1;
	border-radius:50%;
	background-image: -ms-linear-gradient(left, #007bff 0%, #a1bbff 100%);
	background-image: -moz-linear-gradient(left, #007bff 0%, #a1bbff 100%);
	background-image: -o-linear-gradient(left, #007bff 0%, #a1bbff 100%);
	background-image: -webkit-gradient(linear, left top, right top, color-stop(0, #007bff), color-stop(100, #a1bbff));
	background-image: -webkit-linear-gradient(left, #007bff 0%, #a1bbff 100%);
	background-image: linear-gradient(to right, #007bff 0%, #a1bbff 100%);
}

.about-section .image-column .image-content ul{
	position:relative;
}

.about-section .image-column .image-content ul li{
	position:relative;
	color:#19274d;
	font-size:16px;
	font-weight:700;
	margin-bottom:12px;
	padding-top:8px;
	padding-left:60px;
	margin-bottom:25px;
}

.about-section .image-column .image-content ul li:last-child{
	margin-bottom:0px;
}

.about-section .image-column .image-content ul li .icon{
	position:absolute;
	left:0px;
	top:0px;
	color:#fa474a;
	line-height:1em;
	font-size:40px;
	font-weight:500;
	background: linear-gradient(to top, #fa474a 0%, #a1bbff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-section .content-column{
	position:relative;
	margin-bottom:40px;
}

.about-section .content-column .sec-title{
	margin-bottom:10px;
}

.about-section .content-column .inner-column{
	position:relative;
	padding-left:40px;
	padding-top:80px;
}

.about-section .content-column .text{
	position:relative;
	color:#19274d;
	font-size:18px;
	line-height:1.8em;
	margin-bottom:40px;
}

.about-section .content-column .text span{
	font-weight:600;
}

/*** 

====================================================================
	SEO Section
====================================================================

***/

.seo-section{
	position:relative;
	padding:110px 0px 70px;
	background-color:#f2f5ff;
}

.seo-section .left-column{
	position:relative;
}

.seo-section .left-column .inner-column:before{
	position:absolute;
	content:'';
	right:-20px;
	top:50px;
	width:2px;
	bottom:-40px;
	background-color:#eacece;
}

.seo-section .left-column .inner-column{
	position:relative;
	padding-right:50px;
}

.seo-section .right-column{
	position:relative;
}

.seo-section .right-column .inner-column{
	position:relative;
	padding-left:50px;
}

.seo-section .column .inner-column{
	position:relative;
}

.seo-block{
	position:relative;
	margin-bottom:30px;
}

.seo-block .inner-box{
	position:relative;
}

.seo-block .inner-box .upper-box{
	position:relative;
	text-align:right;
	padding-top:25px;
	padding-right:135px;
	min-height:100px;
}

.seo-block .inner-box .upper-box .icon-box{
	position:absolute;
	right:0px;
	top:0px;
	width:100px;
	height:100px;
	font-size:60px;
	line-height:100px;
	text-align:center;
	border-radius:50px;
	background-color:#ffffff;
	box-shadow:10px 10px 20px rgba(250,71,71,0.20);
}

.seo-block .inner-box .upper-box .icon-box .icon{
	position:relative;
	color:#fa474a;
	line-height:1em;
	background: linear-gradient(to top, #fa474a 0%, #a1bbff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.seo-block .inner-box .upper-box h2{
	position:relative;
	color:#19274d;
	font-weight:600;
	line-height:1.3em;
	font-family: 'Poppins', sans-serif;
}

.seo-block .inner-box .text{
	position:relative;
	color:#19274d;
	font-size:24px;
	line-height:1.5em;
	margin-top:32px;
	text-align:right;
	margin-bottom:30px;
}

.seo-block .inner-box .btn-box{
	position:relative;
	text-align:right;
}

.seo-block .inner-box .btn-box .theme-btn{
	margin-left:15px;
}

.seo-block.style-two .inner-box .upper-box{
	padding-right:0px;
	padding-left:135px;
	text-align:left;
}

.seo-block.style-two .inner-box .upper-box .icon-box{
	left:0px;
	right:auto;
}

.seo-block.style-two .inner-box .text{
	text-align:left;
}

/*** 

====================================================================
	About Software Section
====================================================================

***/

.about-software-section{
	position:relative;
	overflow:hidden;
	padding-top:130px;
	padding-bottom:130px;
}

.about-software-section .content-column{
	position:relative;
	margin-bottom:40px;
}

.about-software-section .content-column .inner-column{
	position:relative;
}

.about-software-section .content-column .sec-title{
	margin-bottom:10px;
}

.about-software-section .content-column .text{
	position: relative;
    color: #19274d;
    font-size: 18px;
    line-height: 1.8em;
    margin-bottom: 40px;
}

.about-software-section .content-column .text span{
	font-weight: 600;
}

.about-software-section .content-column .row{
	margin:0px -2px;
}

.about-software-section .content-column .number-block{
	padding:0px 2px;
}

/* Number Block */

.number-block{
	position:relative;
}

.number-block .block-inner{
	position:relative;
	padding:45px 35px;
	box-shadow:10px 0px 20px rgba(250,71,71,0.07);
}

.number-block .block-inner .number{
	position:relative;
	font-size:80px;
	font-weight:600;
	line-height:1em;
	color: #007bff;
	font-family: 'Poppins', sans-serif;
    background: linear-gradient(to right, #007bff 0%, #a1bbff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.number-block .block-inner h4{
	position:relative;
	color:#19274d;
	font-weight:700;
	line-height:1.4em;
	margin-top:15px;
	font-family: 'Poppins', sans-serif;
}

.number-block .block-inner .block-text{
	position:relative;
	color:#19274d;
	font-size:14px;
	line-height:1.8em;
	margin-top:14px;
}

.about-software-section .images-column{
	position:relative;
	margin-bottom:40px;
}

.about-software-section .images-column .inner-column{
	position:relative;
	margin-right:-550px;
}

.about-software-section .images-column .circle-layer{
	position:absolute;
	right:50px;
	top:0px;
	width:900px;
	height:900px;
	overflow:hidden;
	border-radius:50%;
	background-image: -ms-linear-gradient(left, #007bff 0%, #a1bbff 100%);
	background-image: -moz-linear-gradient(left, #007bff 0%, #a1bbff 100%);
	background-image: -o-linear-gradient(left, #007bff 0%, #a1bbff 100%);
	background-image: -webkit-gradient(linear, left top, right top, color-stop(0, #007bff), color-stop(100, #a1bbff));
	background-image: -webkit-linear-gradient(left, #007bff 0%, #a1bbff 100%);
	background-image: linear-gradient(to right, #007bff 0%, #a1bbff 100%);
}

.about-software-section .images-column .images{
	position:relative;
}

.about-software-section .images-column .images .image{
	position:relative;
	display:inline-block;
}

.about-software-section .images-column .images .image:first-child{
	top:100px;
}

.about-software-section .images-column .images .image:last-child{
	margin-left:-120px;
}

/*** 

====================================================================
	Agency Section
====================================================================

***/

.agency-section{
	position:relative;
	padding-top:120px;
	padding-bottom:120px;
	background-image: -ms-linear-gradient(left, #007bff 0%, #a1bbff 100%);
	background-image: -moz-linear-gradient(left, #007bff 0%, #a1bbff 100%);
	background-image: -o-linear-gradient(left, #007bff 0%, #a1bbff 100%);
	background-image: -webkit-gradient(linear, left top, right top, color-stop(0, #007bff), color-stop(100, #a1bbff));
	background-image: -webkit-linear-gradient(left, #007bff 0%, #a1bbff 100%);
	background-image: linear-gradient(to right, #007bff 0%, #a1bbff 100%);
}

.agency-section .agents-images{
	position:absolute;
	left:0px;
	top:0px;
	right:0px;
	bottom:0px;
}

.agency-section .agents-images .agent{
	position:absolute;
	left:50%;
	top:50%;
	width:138px;
	height:138px;
	opacity:0;
	overflow:hidden;
	border-radius:50%;
	margin-left:-64px;
	margin-top:-64px;
	border:5px solid #ffffff;
	transition: all 900ms ease;
    -moz-transition: all 900ms ease;
    -webkit-transition: all 900ms ease;
    -ms-transition: all 900ms ease;
    -o-transition: all 900ms ease;
}

.agency-section .agents-images .agent.now-in-view{
	left:15%;
	top:2%;
	opacity:1;
}

.agency-section .agents-images .agent-1{
	position:absolute;
	left:50%;
	top:50%;
	opacity:0;
	width:100px;
	height:100px;
	overflow:hidden;
	border-radius:50%;
	margin-left:-50px;
	margin-top:-50px;
	border:4px solid #ffffff;
	transition: all 900ms ease;
    -moz-transition: all 900ms ease;
    -webkit-transition: all 900ms ease;
    -ms-transition: all 900ms ease;
    -o-transition: all 900ms ease;
}

.agency-section .agents-images .agent-1.now-in-view{
	left:10%;
	top:85%;
	opacity:1;
}

.agency-section .agents-images .agent-2{
	position:absolute;
	left:50%;
	top:50%;
	opacity:0;
	width:176px;
	height:176px;
	overflow:hidden;
	border-radius:50%;
	margin-left:-88px;
	margin-top:-88px;
	border:5px solid #ffffff;
	transition: all 900ms ease;
    -moz-transition: all 900ms ease;
    -webkit-transition: all 900ms ease;
    -ms-transition: all 900ms ease;
    -o-transition: all 900ms ease;
}

.agency-section .agents-images .agent-2.now-in-view{
	left:75%;
	top:25%;
	opacity:1;
}

.agency-section .agents-images .agent-3{
	position:absolute;
	left:50%;
	top:50%;
	width:86px;
	height:86px;
	opacity:0;
	overflow:hidden;
	border-radius:50%;
	margin-left:-43px;
	margin-top:-43px;
	border:5px solid #ffffff;
	transition: all 900ms ease;
    -moz-transition: all 900ms ease;
    -webkit-transition: all 900ms ease;
    -ms-transition: all 900ms ease;
    -o-transition: all 900ms ease;
}

.agency-section .agents-images .agent-3.now-in-view{
	left:84%;
	top:85%;
	opacity:1;
}

.agency-section .agents-images .agent-4{
	position:absolute;
	left:50%;
	top:50%;
	opacity:0;
	width:136px;
	height:136px;
	overflow:hidden;
	border-radius:50%;
	margin-left:-68px;
	margin-top:-68px;
	border:5px solid #ffffff;
	transition: all 900ms ease;
    -moz-transition: all 900ms ease;
    -webkit-transition: all 900ms ease;
    -ms-transition: all 900ms ease;
    -o-transition: all 900ms ease;
}

.agency-section .agents-images .agent-4.now-in-view{
	left:90%;
	top:55%;
	opacity:1;
}

.agency-section .sec-title .title{
	color:#ffffff;
	background:none;
	-webkit-text-fill-color:inherit;
}

.agency-section .sec-title h1{
	padding-bottom:0px;
}

.agency-section .section-icon{
	position:relative;
	width:120px;
	height:120px;
	color:#fa474a;
	font-size:80px;
	text-align:center;
	border-radius:50%;
	line-height:120px;
	display:block;
	margin:0 auto;
	margin-bottom:50px;
	background-color:#ffffff;
}

.agency-section .pattern-layer{
	position:absolute;
	left:0px;
	bottom:0px;
	width:100%;
	height:905px;
	background-position:center bottom;
	background-repeat:no-repeat;
}

.agency-section .buttons-box{
	position:relative;
}

.agency-section .buttons-box .theme-btn{
	margin:0px 12px;
}

.agency-section .btn-style-five{
	padding:14px 42px;
}

/*** 

====================================================================
	Intro Section
====================================================================

***/

.intro-section{
	position:relative;
	padding-top:120px;
	padding-bottom:100px;
}

.intro-section .owl-dots{
	display:none;
}

.intro-section .owl-nav{
	position:absolute;
	left:0px;
	top:50%;
	right:0px;
	opacity:0;
	margin-top:-40px;
	-webkit-transition:all 300ms ease;
	-ms-transition:all 300ms ease;
	-o-transition:all 300ms ease;
	-moz-transition:all 300ms ease;
	transition:all 300ms ease;
}

.intro-section:hover .owl-nav{
	opacity:1;
}

.intro-section .owl-nav .owl-prev{
	position:absolute;
	left:-40px;
	top:0px;
	width:80px;
	height:80px;
	color:#19274d;
	font-size:22px;
	text-align:center;
	line-height:80px;
	border-radius:50px;
	display:inline-block;
	-webkit-transition:all 300ms ease;
	-ms-transition:all 300ms ease;
	-o-transition:all 300ms ease;
	-moz-transition:all 300ms ease;
	transition:all 300ms ease;
	background-color:#ffffff;
	box-shadow:0px 10px 12px rgba(0,0,0,0.10);
}

.intro-section .owl-nav .owl-next{
	position:absolute;
	right:-40px;
	top:0px;
	width:80px;
	height:80px;
	color:#19274d;
	font-size:22px;
	text-align:center;
	line-height:80px;
	border-radius:50px;
	display:inline-block;
	-webkit-transition:all 300ms ease;
	-ms-transition:all 300ms ease;
	-o-transition:all 300ms ease;
	-moz-transition:all 300ms ease;
	transition:all 300ms ease;
	background-color:#ffffff;
	box-shadow:0px 10px 12px rgba(0,0,0,0.10);
}

.intro-section .owl-nav .owl-prev:hover,
.intro-section .owl-nav .owl-next:hover{
	color:#ffffff;
	background-image: -ms-linear-gradient(left, #007bff 0%, #a1bbff 100%);
	background-image: -moz-linear-gradient(left, #007bff 0%, #a1bbff 100%);
	background-image: -o-linear-gradient(left, #007bff 0%, #a1bbff 100%);
	background-image: -webkit-gradient(linear, left top, right top, color-stop(0, #007bff), color-stop(100, #a1bbff));
	background-image: -webkit-linear-gradient(left, #007bff 0%, #a1bbff 100%);
	background-image: linear-gradient(to right, #007bff 0%, #a1bbff 100%);
}

.intro-section .video-column{
	position:relative;
}

.intro-section .video-column .inner-column{
	position:relative;
}

.video-box{
	position:relative;
}

.video-box .video-image{
	position:relative;
	margin:0px;
}

.video-box .video-image img{
	position:relative;
	width:100%;
	z-index:3;
}

.video-box .overlay-box{
	position:absolute;
	left:0px;
	top:0px;
	width:100%;
	height:100%;
	text-align:center;
	overflow:hidden;
	line-height: 45px;
	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;
}

.video-box .overlay-box:before{
	position:absolute;
	content:'';
	left:0px;
	top:0px;
	right:0px;
	bottom:0px;
	z-index:10;
	background-color:rgba(0,0,0,0);
}

.video-box .overlay-box span{
	position: absolute;
	width:120px;
	height: 120px;
	left:50%;
    top: 50%;
	z-index:10;
	color: #ffffff;
	font-weight:400;
	font-size:26px;
	text-align: center;
	border-radius:50%;
	padding-left:4px;
	display: inline-block;
	margin-top: -60px;
	margin-left:-60px;
	line-height:120px;
	transition: all 900ms ease;
    -moz-transition: all 900ms ease;
    -webkit-transition: all 900ms ease;
    -ms-transition: all 900ms ease;
    -o-transition: all 900ms ease;
	background-image: -ms-linear-gradient(left, #007bff 0%, #a1bbff 100%);
	background-image: -moz-linear-gradient(left, #007bff 0%, #a1bbff 100%);
	background-image: -o-linear-gradient(left, #007bff 0%, #a1bbff 100%);
	background-image: -webkit-gradient(linear, left top, right top, color-stop(0, #007bff), color-stop(100, #a1bbff));
	background-image: -webkit-linear-gradient(left, #007bff 0%, #a1bbff 100%);
	background-image: linear-gradient(to right, #007bff 0%, #a1bbff 100%);
}

.video-box .ripple,
.video-box .ripple:before,
.video-box .ripple:after {
    position: absolute;
    top: 50%;
    left: 50%;
    width:120px;
	height: 120px;
    -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(250, 69, 74, .6);
    -moz-box-shadow: 0 0 0 0 rgba(250, 69, 74, .6);
    -ms-box-shadow: 0 0 0 0 rgba(250, 69, 74, .6);
    -o-box-shadow: 0 0 0 0 rgba(250, 69, 74, .6);
    box-shadow: 0 0 0 0 rgba(250, 69, 74, .6);
    -webkit-animation: ripple 3s infinite;
    -moz-animation: ripple 3s infinite;
    -ms-animation: ripple 3s infinite;
    -o-animation: ripple 3s infinite;
    animation: ripple 3s infinite;
}

.video-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;
}

.video-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(253, 167, 0, 0);}
    100% {box-shadow: 0 0 0 0 rgba(253, 167, 0, 0);}
}

@keyframes ripple {
    70% {box-shadow: 0 0 0 70px rgba(253, 167, 0, 0);}
    100% {box-shadow: 0 0 0 0 rgba(253, 167, 0, 0);}
}

.intro-section .content-column{
	position:relative;
}

.intro-section .content-column .inner-column{
	position:relative;
	padding-top:35px;
	padding-left:30px;
}

.intro-section .content-column .app-options{
	position:relative;
}

.intro-section .content-column .app-options .app-block{
	position:relative;
	width:120px;
	height:120px;
	float:left;
	margin-right:20px;
	padding-top:24px;
	margin-bottom:20px;
	text-align:center;
	border:2px solid #fff1f1;
	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;
}

.intro-section .content-column .app-options .app-block .overlay-link{
	position:absolute;
	left:0px;
	top:0px;
	right:0px;
	bottom:0px;
	z-index:1;
}

.intro-section .content-column .app-options .app-block .icon{
	position:relative;
	font-size:36px;
	color: #fa474a;
    line-height: 1em;
    background: linear-gradient(to top, #fa474a 0%, #a1bbff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.intro-section .content-column .app-options .app-block h6{
	position:relative;
	color:#19274d;
	font-size:14px;
	font-weight:700;
	margin-top:5px;
}

.intro-section .content-column .app-options .app-block:last-child{
	margin-right:0px;
}

.intro-section .content-column .app-options .app-block:hover{
	border-color:#fb5148;
}

/*** 

====================================================================
	Featured Section Two
====================================================================

***/

.featured-section-two{
	position:relative;
	padding-bottom:80px;
}

.featured-section-two.style-two{
	padding-top:110px;
}

.featured-section-two .inner-container{
	position:relative;
	padding-top:110px;
	border-top:1px solid #ffd0cb;
}

.feature-block-two{
	position:relative;
	margin-bottom:30px;
}

.feature-block-two .inner-box{
	position:relative;
	padding:28px 34px;
	border-radius:7px;
	border:2px solid #fff1f1;
	-webkit-transition:all 500ms ease;
	-ms-transition:all 500ms ease;
	-o-transition:all 500ms ease;
	-moz-transition:all 500ms ease;
	transition:all 500ms ease;
}

.feature-block-two .inner-box .upper-box{
	position:relative;
	padding-left:50px;
}

.feature-block-two .inner-box .upper-box .icon{
	position:absolute;
	left:0px;
	top:1px;
	font-size:24px;
	line-height:1em;
	color: #fa474a;
    line-height: 1em;
    background: linear-gradient(to top, #fa474a 0%, #a1bbff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
	-webkit-transition:all 500ms ease;
	-ms-transition:all 500ms ease;
	-o-transition:all 500ms ease;
	-moz-transition:all 500ms ease;
	transition:all 500ms ease;
}

.feature-block-two .inner-box .upper-box h5{
	position:relative;
	font-size:20px;
	font-weight:600;
	line-height:1.3em;
	font-family: 'Poppins', sans-serif;
}

.feature-block-two .inner-box .upper-box h5 a{
	position:relative;
	color:#19274d;
	-webkit-transition:all 500ms ease;
	-ms-transition:all 500ms ease;
	-o-transition:all 500ms ease;
	-moz-transition:all 500ms ease;
	transition:all 500ms ease;
}

.feature-block-two .inner-box .text{
	position:relative;
	color:#19274d;
	font-size:16px;
	margin-top:12px;
	-webkit-transition:all 500ms ease;
	-ms-transition:all 500ms ease;
	-o-transition:all 500ms ease;
	-moz-transition:all 500ms ease;
	transition:all 500ms ease;
}

.feature-block-two .inner-box .arrow{
	position:absolute;
	right:0px;
	top:2px;
	color:#c4cee9;
	font-size:20px;
	-webkit-transition:all 500ms ease;
	-ms-transition:all 500ms ease;
	-o-transition:all 500ms ease;
	-moz-transition:all 500ms ease;
	transition:all 500ms ease;
}

.feature-block-two .inner-box:before{
	position:absolute;
	content:'';
	left:0px;
	top:0px;
	height:100%;
	width:0%;
	border-radius:7px;
	-webkit-transition:all 500ms ease;
	-ms-transition:all 500ms ease;
	-o-transition:all 500ms ease;
	-moz-transition:all 500ms ease;
	transition:all 500ms ease;
	background-image: -ms-linear-gradient(left, #007bff 0%, #a1bbff 100%);
	background-image: -moz-linear-gradient(left, #007bff 0%, #a1bbff 100%);
	background-image: -o-linear-gradient(left, #007bff 0%, #a1bbff 100%);
	background-image: -webkit-gradient(linear, left top, right top, color-stop(0, #007bff), color-stop(100, #a1bbff));
	background-image: -webkit-linear-gradient(left, #007bff 0%, #a1bbff 100%);
	background-image: linear-gradient(to right, #007bff 0%, #a1bbff 100%);
}

.feature-block-two .inner-box:hover{
	
}

.feature-block-two .inner-box:hover::before{
	width:100%;
}

.feature-block-two .inner-box:hover .upper-box .icon{
	color:#ffffff;
	background:none;
	-webkit-text-fill-color: inherit;
}

.feature-block-two .inner-box:hover .arrow,
.feature-block-two .inner-box:hover .text,
.feature-block-two .inner-box:hover .upper-box h5 a{
	color:#ffffff;
}

.feature-block-two .inner-box .big-icon{
	position:absolute;
	right:0px;
	bottom:-10px;
	font-size:80px;
	line-height:1em;
	color:rgba(255,255,255,0.10);
}

/*** 

====================================================================
	Pricing Section
====================================================================

***/

.pricing-section{
	position:relative;
	padding:110px 0px 70px;
	background-color:#f2f5ff;
}

/* Price Box */

.price-box{
	position:relative;
	margin-bottom:30px;
}

.price-box .box-inner{
	position:relative;
	padding:74px 15px;
	border-radius:10px;
	text-align:center;
	background-color:#ffffff;
}

.price-box .box-inner .price{
	position:relative;
	font-weight:600;
	font-size:80px;
	color: #007bff;
	line-height:1em;
	font-family: 'Poppins', sans-serif;
    background: linear-gradient(to right, #007bff 0%, #a1bbff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
	font-family: 'Poppins', sans-serif;
}

.price-box .box-inner .price sub{
	position:relative;
	font-size:24px;
	color: #007bff;
	line-height:1em;
	font-family: 'Poppins', sans-serif;
    background: linear-gradient(to right, #007bff 0%, #a1bbff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.price-box .box-inner h4{
	position:relative;
	color:#19274d;
	font-weight:600;
	line-height:1.3em;
	margin-top:12px;
}

/* Price Box Two */

.price-box-two{
	position:relative;
	margin-bottom:30px;
}

.price-box-two .box-inner{
	position:relative;
	padding:74px 70px;
	border-radius:10px;
	background-color:#ffffff;
}

.price-box-two .box-inner .content{
	position:relative;
	padding-top:12px;
	padding-left:160px;
}

.price-box-two .box-inner .content .price-box{
	position:absolute;
	left:0px;
	top:0px;
	text-align:center;
}

.price-box-two .box-inner .content .price{
	position:relative;
	font-weight:600;
	font-size:80px;
	color: #007bff;
	line-height:1em;
	font-family: 'Poppins', sans-serif;
    background: linear-gradient(to right, #007bff 0%, #a1bbff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
	font-family: 'Poppins', sans-serif;
}

.price-box-two .box-inner .content .price sub{
	position: relative;
    font-size: 24px;
    color: #007bff;
    line-height: 1em;
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(to right, #007bff 0%, #a1bbff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.price-box-two .box-inner .content .price-box h4{
	position: relative;
    color: #19274d;
    font-weight: 600;
    line-height: 1.1em;
    margin-top: 12px;
	display:block;
	font-size:24px;
}

.price-box-two .box-inner .content .text{
	position:relative;
	color:#19274d;
	font-size:14px;
	font-weight:400;
	line-height:1.9em;
}

.price-box-two .box-inner .content .text span{
	font-weight:500;
}

.pricing-section .version-column{
	position:relative;
}

.pricing-section .version-column .inner-column{
	position:relative;
	border-radius:15px;
	padding:70px 70px 0px;
	background-image: -ms-linear-gradient(left, #007bff 0%, #a1bbff 100%);
	background-image: -moz-linear-gradient(left, #007bff 0%, #a1bbff 100%);
	background-image: -o-linear-gradient(left, #007bff 0%, #a1bbff 100%);
	background-image: -webkit-gradient(linear, left top, right top, color-stop(0, #007bff), color-stop(100, #a1bbff));
	background-image: -webkit-linear-gradient(left, #007bff 0%, #a1bbff 100%);
	background-image: linear-gradient(to right, #007bff 0%, #a1bbff 100%);
}

/* Subscribe Form */

.subscribe-form-three{
	position:relative;
	width:100%;
	margin-bottom:0px;
}

.subscribe-form-three .form-group{
    position: relative;
    display: block;
    z-index:1;
	margin-bottom: 0px;
}

.subscribe-form-three .form-group input[type="text"],
.subscribe-form-three .form-group input[type="tel"],
.subscribe-form-three .form-group input[type="email"],
.subscribe-form-three .form-group textarea {
    position:relative;
	display:block;
	width:100%;
	height:80px;
	font-size:16px;
	color:#19274d;
	line-height:38px;
	font-weight:400;
	border-radius:50px;
	background:#ffffff;
	padding:10px 20px 10px 40px;
	transition:all 500ms ease;
	-webkit-transition:all 500ms ease;
	-ms-transition:all 500ms ease;
	-o-transition:all 500ms ease;
}

.subscribe-form-three .form-group textarea::-webkit-input-placeholder,
.subscribe-form-three .form-group input::-webkit-input-placeholder{
	color:#19274d;
}

.subscribe-form-three .form-group .theme-btn{
	position: absolute;
	top: 15px;
	right: 15px;
	cursor:pointer;
}

.pricing-section .version-column h2{
	position:relative;
	font-size:36px;
	color:#ffffff;
	font-weight:600;
	line-height:1.3em;
	text-align:center;
	margin-top:30px;
	font-family: 'Poppins', sans-serif;
}

.pricing-section .version-column .days{
	position:relative;
	font-size:20px;
	color:#ffffff;
	font-weight:400;
	line-height:1.3em;
	text-align:center;
	margin-top:6px;
	margin-bottom:25px;
}

.pricing-section .version-column .days span{
	font-weight:700;
}

/*** 

====================================================================
	Blog Section Two
====================================================================

***/

.blog-section-two{
	position:relative;
	padding:110px 0px 70px;
}

.blog-section-two .sec-title .theme-btn{
	margin-top:30px;
}

.news-block-two{
	position:relative;
	margin-bottom:30px;
}

.news-block-two .inner-box{
	position:relative;
	text-align:center;
	padding-top:26px;
}

.news-block-two .inner-box .image{
	position:relative;
	overflow:hidden;
	background-color:#fa474a;
}

.news-block-two .inner-box .image img{
	position:relative;
	width:100%;
	display:block;
	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.05,1.05);
}

.news-block-two .inner-box .post-info{
	position:absolute;
	top:0px;
	left:60px;
	right:60px;
	padding:13px 18px;
	border-radius:50px;
	display:inline-block;
	z-index:1;
	width:auto;
	background-image: -ms-linear-gradient(left, #007bff 0%, #a1bbff 100%);
	background-image: -moz-linear-gradient(left, #007bff 0%, #a1bbff 100%);
	background-image: -o-linear-gradient(left, #007bff 0%, #a1bbff 100%);
	background-image: -webkit-gradient(linear, left top, right top, color-stop(0, #007bff), color-stop(100, #a1bbff));
	background-image: -webkit-linear-gradient(left, #007bff 0%, #a1bbff 100%);
	background-image: linear-gradient(to right, #007bff 0%, #a1bbff 100%);
}

.news-block-two .inner-box .post-info li{
	position:relative;
	color:#ffffff;
	font-size:16px;
	font-weight:700;
	line-height:1.1em;
	padding-right:10px;
	margin-right:10px;
	display:inline-block;
	border-right:1px solid #ffffff;
}

.news-block-two .inner-box .post-info li:last-child{
	margin-right:0px;
	padding-right:0px;
	border-right:none;
}

.news-block-two .inner-box .lower-content{
	position:relative;
	padding-top:35px;
}

.news-block-two .inner-box .lower-content .post-author{
	position:relative;
	padding-left:50px;
	color:#19274d;
	font-size:16px;
	text-align:left;
	font-weight:700;
	padding-top:9px;
	margin-bottom:20px;
	display:inline-block;
}

.news-block-two .inner-box .lower-content .post-author .author-image{
	position:absolute;
	left:0px;
	top:0px;
	width:40px;
	height:40px;
	border-radius:50%;
	overflow:hidden;
}

.news-block-two .inner-box .lower-content h2{
	position:relative;
	font-weight:600;
	line-height:1.4em;
	margin-top:4px;
	font-family: 'Poppins', sans-serif;
}

.news-block-two .inner-box .lower-content h2 a{
	position:relative;
	color:#19274d;
	-webkit-transition:all 500ms ease;
	-ms-transition:all 500ms ease;
	-o-transition:all 500ms ease;
	-moz-transition:all 500ms ease;
	transition:all 500ms ease;
}

.news-block-two .inner-box .lower-content h2 a:hover{
	color:#fa474a;
}

/*** 

====================================================================
	Banner Section Three
====================================================================

***/

.banner-section-three{
	position:relative;
	z-index:9;
}

.banner-section-three .chat-icon{
	position:absolute;
	left:30px;
	top:30px;
	width:512px;
	height:374px;
	background-repeat:no-repeat;
}

.banner-section-three .content-column{
	position:relative;
}

.banner-section-three .content-column .inner-column{
	position:relative;
	margin-left:-70px;
	padding-top:195px;
}

.banner-section-three .content-column .option-list{
	position:relative;
	margin-bottom:15px;
}

.banner-section-three .content-column .option-list li{
	position:relative;
	color:#19274d;
	font-size:18px;
	font-weight:700;
	padding-left:15px;
	margin-right:26px;
	display:inline-block;
}

.banner-section-three .content-column .option-list li:before{
	position:absolute;
	content:'-';
	left:0px;
	top:0px;
	color:#4377ff;
}

.banner-section-three .content-column h1{
	position:relative;
	color:#19274d;
	font-size:80px;
	font-weight:700;
	line-height:1.1em;
}

.banner-section-three .content-column h1 i{
	position:relative;
	font-weight:300;
	font-style:normal;
}

.banner-section-three .content-column h1 span{
	color:#4377ff;
}

.banner-section-three .content-column .text{
	position:relative;
	color:#19274d;
	font-size:20px;
	font-weight:400;
	line-height:1.6em;
	padding-left:25px;
	margin-top:28px;
	margin-bottom:28px;
	border-left:4px solid #4377ff;
}

.banner-section-three .content-column .users-box{
	position:relative;
}

.banner-section-three .content-column .users-box .box-inner{
	position:relative;
	padding-top:17px;
	padding-left:130px;
}

.banner-section-three .content-column .users-box .icon{
	position:absolute;
	left:0px;
	top:0px;
}

.banner-section-three .content-column .users-box .box-inner .active{
	position:relative;
	color:#19274d;
	font-size:14px;
}

.banner-section-three .content-column .users-box .total-users{
	position:relative;
	display:block;
	color:#4377ff;
	font-size:30px;
	font-weight:700;
	margin-top:8px;
}

.banner-section-three .image-column{
	position:relative;
}

.banner-section-three .image-column .inner-column{
	position:relative;
	margin-left:-70px;
	margin-right:-40px;
}

.banner-section-three .image-column .logo-icon{
	position:absolute;
	left:0px;
	top:120px;
	right:0px;
	bottom:0px;
	background-position:center center;
	background-repeat:no-repeat;
	background-size:contain;
}

.banner-section-three .image-column .image{
	position:relative;
	margin-top:-130px;
	z-index:1;
}

/*** 

====================================================================
	Platform Section
====================================================================

***/

.platform-section{
	position:relative;
	padding-top:110px;
	overflow:hidden;
	padding-bottom:60px;
	background-color:#f5f9ff;
}

.platform-section:before{
	position:absolute;
	content:'';
	left:0px;
	bottom:0px;
	width:100%;
	height:210px;
	background-color:#ffffff;
}

.platform-section .auto-container{
	position:relative;
}

.platform-section .triangle-icon{
	position:absolute;
	right:-100px;
	bottom:150px;
	border-top: 100px solid #4377ff;
    border-right: 100px solid transparent;
}

.platform-section .platform-tabs{
	position:relative;
	margin-top:50px;
	padding-bottom:35px;
}

.platform-section .platform-tabs .tab-btns{
	position:relative;
	text-align:center;
	margin-bottom:70px;
}

.platform-section .platform-tabs .tab-btns .tab-btn{
	position:relative;
	display:block;
	margin:0px 20px;
	font-size:16px;
	background:none;
	color:#19274d;
	font-weight:700;
	line-height:24px;
	cursor:pointer;
	text-align:center;
	margin-bottom:12px;
	display:inline-block;
	transition:all 500ms ease;
	text-transform:capitalize;
}

.platform-section .platform-tabs .tab-btns .tab-btn:before{
	position:absolute;
	content:'';
	left:50%;
	bottom:-70px;
	width:149px;
	height:67px;
	opacity:0;
	-webkit-transition:all 500ms ease;
	-ms-transition:all 500ms ease;
	-o-transition:all 500ms ease;
	-moz-transition:all 500ms ease;
	transition:all 500ms ease;
	background:url(../images/icons/line-1.png) no-repeat;
}

.platform-section .platform-tabs .tab-btns .tab-btn .icon{
	position:relative;
	width:80px;
	height:80px;
	color:#4377ff;
	font-size:30px;
	line-height:80px;
	text-align:center;
	margin:0px 10px 20px;
	border-radius:50%;
	
	display:inline-block;
	background-color:#ffffff;
	-webkit-transition:all 500ms ease;
	-ms-transition:all 500ms ease;
	-o-transition:all 500ms ease;
	-moz-transition:all 500ms ease;
	transition:all 500ms ease;
}

.platform-section .platform-tabs .tab-btns .tab-btn:nth-child(6):before,
.platform-section .platform-tabs .tab-btns .tab-btn:nth-child(7):before,
.platform-section .platform-tabs .tab-btns .tab-btn:nth-child(8):before{
	left:auto;
	right:50%;
	transform:rotateY(180deg);
}

.platform-section .platform-tabs .tab-btns .tab-btn:hover .icon,
.platform-section .platform-tabs .tab-btns .tab-btn.active-btn .icon{
	color:#ffffff;
	background-color:#ffffff;
    
}



/* .platform-section .platform-tabs .tab-btns .tab-btn:hover::before, */
.platform-section .platform-tabs .tab-btns .tab-btn.active-btn::before{
	opacity:1;
}

.platform-section .platform-tabs .tabs-content{
	position:relative;
	padding-left:100px;
}

.platform-section .platform-tabs .tabs-content .tab{
	position:relative;
	display:none;
}

.platform-section .platform-tabs .tabs-content .tab.active-tab{
	display:block;	
}

.platform-section .platform-tabs .tabs-content .image{
	position:relative;
	z-index:1;
}

.platform-section .platform-tabs .tabs-content .image-two{
	position:absolute;
	right:110px;
	bottom:-40px;
	z-index:2;
}

.platform-section .platform-tabs .tabs-content .image:before{
	position:absolute;
	content:'';
	left:-110px;
	bottom:-90px;
	width:305px;
	height:305px;
	z-index:-1;
	border-radius:50%;
	background-color:#4377ff;
}

/*** 

====================================================================
	Journey Section
====================================================================

***/

.journey-section{
	position:relative;
	padding:120px 0px 70px;
}

.journey-section .video-column{
	position:relative;
}

.journey-section .video-column .inner-column{
	position:relative;
}

.journey-section .video-column .inner-column .image{
	position:relative;
}

.journey-section .video-column .inner-column .image img{
	position:relative;
	width:100%;
	display:block;
}

.journey-section .video-column .video-box{
	position:absolute;
	top:30px;
	right:30px;
	width:120px;
	height:120px;
	color:#4377ff;
	font-size:26px;
	text-align:center;
	border-radius:50%;
	line-height: 120px;
	display:inline-block;
	z-index:1;
	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;
	background-color:#ffffff;
}

.journey-section .video-column .video-box .overlay-box span{
	position: absolute;
	width:120px;
	height:120px;
	left:50%;
    top: 50%;
	z-index:99;
	color: #ffffff;
	font-weight:400;
	font-size:16px;
	text-align: center;
	border-radius:10px;
	padding-left:7px;
	display: inline-block;
	margin-top: -60px;
	margin-left:-60px;
	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);
}

.journey-section .video-column .video-box .ripple,
.journey-section .video-column .video-box .ripple:before,
.journey-section .video-column .video-box .ripple:after {
    position: absolute;
    top: 50%;
    left: 50%;
	width:120px;
	height:120px;
	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(50, 199, 136, .4);
    -moz-box-shadow: 0 0 0 0 rgba(50, 199, 136, .4);
    -ms-box-shadow: 0 0 0 0 rgba(50, 199, 136, .4);
    -o-box-shadow: 0 0 0 0 rgba(50, 199, 136, .4);
    box-shadow: 0 0 0 0 rgba(50, 199, 136, .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;
}

.journey-section .video-column .video-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;
}

.journey-section .video-column .video-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;
}

.journey-section .content-column{
	position:relative;
}

.journey-section .content-column .inner-column{
	position:relative;
	padding-left:40px;
}

.journey-section .content-column .title{
	position:relative;
	color:#19274d;
	font-size:18px;
	font-weight:700;
}

.journey-section .content-column h1{
    position: relative;
    color: #19274d;
    font-size: 60px;
    font-weight: 700;
    line-height: 1.1em;
	margin-top:18px;
	margin-bottom:30px;
}

.journey-section .content-column h1 span{
	font-weight:300;
}

.journey-section .content-column .text{
	position: relative;
    color: #19274d;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.6em;
    padding-left: 25px;
    margin-top: 28px;
    margin-bottom: 34px;
    border-left: 4px solid #4377ff;
}

.journey-section .content-column .buttons-box{
	position:relative;
	margin-top:25px;
}

.journey-section .content-column .buttons-box .theme-btn{
	margin-right:15px;
}

/*** 

====================================================================
	Facilities Section
====================================================================

***/

.facilities-section{
	position:relative;
	padding:110px 0px 50px;
	background-color:#f5f9ff;
}

.facilities-section .triangle-one{
	position:absolute;
	left:-780px;
	top:80px;
	width:810px;
	height:810px;
	z-index:1;
	background-color:#4377ff;
	transform:rotate(30deg);
}

.facilities-section .triangle-two{
	position:absolute;
	left:-780px;
	top:-50px;
	width:810px;
	height:810px;
	background-color:#19274d;
	transform:rotate(70deg);
}

.facilities-section .content-column{
	position:relative;
	margin-bottom:40px;
}

.facilities-section .content-column .visitors-box{
	position:relative;
}

.facilities-section .content-column .visitors-box .arrow-box{
	position:absolute;
	right:0px;
	top:65px;
	width:60px;
	height:60px;
	color:#19274d;
	font-size:22px;
	line-height:60px;
	text-align:center;
	border-radius:50%;
	display:inline-block;
	background-color:#ffffff;
	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;
	box-shadow:0px 10px 10px rgba(50,199,136,0.10);
}

.facilities-section .content-column .visitors-box .arrow-box:hover{
	color:#ffffff;
	background-color:#4377ff;
}

.facilities-section .content-column .inner-column{
	position:relative;
	margin-right:-20px;
}

.facilities-section .content-column .counter-boxed{
	position:relative;
	margin-right:35px;
}

.facilities-section .content-column .counter-boxed .graph-outer:before{
	position:absolute;
	content:'';
	left:17px;
	top:17px;
	width:130px;
	height:130px;
	border-radius:50%;
	border:2px solid #e7f1ff;
}

.facilities-section .content-column .count-box{
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    font-size: 16px;
    color: #4377ff;
    font-weight: 700;
    margin-top: -38px;
	text-align:center;
}

.facilities-section .content-column .count-text{
	position:relative;
	color:#19274d;
	font-size:48px;
	font-weight:700;
}

.facilities-section .content-column .counter-boxed .count-box .sign{
	font-size: 20px;
}

.facilities-section .content-column .counter-boxed h6{
	position: relative;
	line-height: 1.6em;
	color: #19274d;
	font-weight: 700;
	margin-top:10px;
	text-align:center;
	text-transform: capitalize;
	font-family: 'Roboto', sans-serif;
}

.facilities-section .blocks-column{
	position:relative;
	margin-bottom:40px;
}

.facilities-section .blocks-column .inner-column{
	position:relative;
	padding-left:60px;
}

.facilities-section .blocks-column .circle-one{
	position:absolute;
	top:10%;
	right:40%;
	width:40px;
	height:40px;
	border-radius:50px;
	display:inline-block;
	background-color:#4377ff;
}

.facilities-section .blocks-column .circle-two{
	position:absolute;
	top:36%;
	right:-5%;
	width:60px;
	height:60px;
	border-radius:50px;
	display:inline-block;
	background-color:#4377ff;
}

.facilities-section .blocks-column .row{
	margin:0px -20px;
}

.facilities-section .blocks-column .service-block{
	padding:0px 20px;
}

.facilities-section .blocks-column .service-block:nth-child(2n + 0){
	transform:translateY(40px);
}

/* Service Block */

.service-block{
	position:relative;
	margin-bottom:40px;
}

.service-block .inner-box{
	position:relative;
	text-align:center;
	border-radius:8px;
	overflow:hidden;
	padding:50px 40px 65px;
	background-color:#ffffff;
	box-shadow:0px 10px 10px rgba(50,199,136,0.10);
}

.service-block .inner-box:before{
	position:absolute;
	content:'';
	left:0px;
	top:0px;
	height:100%;
	width:100%;
	opacity:0;
	border-top:5px solid #4377ff;
	background-color:#19274d;
	transition:all 500ms ease;
	-moz-transition:all 500ms ease;
	-webkit-transition:all 500ms ease;
	-ms-transition:all 500ms ease;
	-o-transition:all 500ms ease;
	transform:scale(0.5,1);
}

.service-block .inner-box:hover::before{
	opacity:1;
	transform:scale(1,1);
}

.service-block .inner-box h4{
	position:relative;
	font-weight:700;
	line-height:1.3em;
	margin-bottom:18px;
}

.service-block .inner-box h4 a{
	position:relative;
	color:#19274d;
	transition:all 500ms ease;
	-moz-transition:all 500ms ease;
	-webkit-transition:all 500ms ease;
	-ms-transition:all 500ms ease;
	-o-transition:all 500ms ease;
}

.service-block .inner-box:hover .text,
.service-block .inner-box:hover h4 a{
	color:#ffffff;
}

.service-block .inner-box .text{
	position:relative;
	color:#19274d;
	font-size:16px;
	line-height:1.9em;
	margin-bottom:30px;
	transition:all 500ms ease;
	-moz-transition:all 500ms ease;
	-webkit-transition:all 500ms ease;
	-ms-transition:all 500ms ease;
	-o-transition:all 500ms ease;
}

.service-block .inner-box .icon-outer{
	position:relative;
	display:inline-block;
}

.service-block .inner-box .icon-outer .icon-box{
	position:relative;
	color:#4377ff;
	font-size:60px;
	line-height:1em;
	transition:all 500ms ease;
	-moz-transition:all 500ms ease;
	-webkit-transition:all 500ms ease;
	-ms-transition:all 500ms ease;
	-o-transition:all 500ms ease;
}

.service-block .inner-box .icon-outer:before{
	position:absolute;
	content:'';
	left:10px;
	top:10px;
	width:75px;
	height:75px;
	border-radius:50%;
	background-color:#f0fff9;
	transition:all 500ms ease;
	-moz-transition:all 500ms ease;
	-webkit-transition:all 500ms ease;
	-ms-transition:all 500ms ease;
	-o-transition:all 500ms ease;
}

.service-block .inner-box:hover .icon-outer:before{
	background-color:rgba(255,255,255,0.10);
}

/*** 

====================================================================
	Team Section
====================================================================

***/

.team-section{
	position:relative;
	padding:100px 0px 110px;
}

.team-section .owl-nav{
	display:none;
}

.team-section .owl-dots{
	position:relative;
	text-align:center;
	margin-top:30px;
}

.team-section .owl-dots .owl-dot{
	position:relative;
	width:30px;
	height:6px;
	margin:0px 6px;
	border-radius:5px;
	display:inline-block;
	background-color:#f2f3f6;
	transition: all 600ms ease;
    -moz-transition: all 600ms ease;
    -webkit-transition: all 600ms ease;
    -ms-transition: all 600ms ease;
    -o-transition: all 600ms ease;
}

.team-section .owl-dots .owl-dot.active,
.team-section .owl-dots .owl-dot:hover{
	background-color:#4377ff;
}

.team-block{
	position:relative;
	margin-bottom:30px;
}

.team-block .inner-box{
	position:relative;
	padding:35px 35px;
	border:2px solid #f2f3f6;
}

.team-block .inner-box:before{
	position:absolute;
	content:'';
	left:0px;
	bottom:-2px;
	right:0px;
	height:3px;
	opacity:0;
	transform: scale(0.5,1);
	background-color:#4377ff;
	transition:all 500ms ease;
	-moz-transition:all 500ms ease;
	-webkit-transition:all 500ms ease;
	-ms-transition:all 500ms ease;
	-o-transition:all 500ms ease;
}

.team-block .inner-box:hover::before{
	opacity:1;
	transform: scale(1,1);
}

.team-block .inner-box .content{
	position:relative;
	overflow:hidden;
}

.team-block .inner-box .content .circle-one{
	position:absolute;
	left:0px;
	top:0px;
	width:47px;
	height:47px;
	border-radius:50%;
	display:inline-block;
	background-color:#e2fff3;
}

.team-block .inner-box .content .circle-two{
	position:absolute;
	left:25px;
	top:25px;
	width:26px;
	height:26px;
	border-radius:50%;
	display:inline-block;
	background-color:#4377ff;
}

.team-block .inner-box .designation{
	position:relative;
	color:#4377ff;
	font-size:16px;
	font-weight:700;
	line-height:1.3em;
	text-align:right;
	margin-bottom:28px;
}

.team-block .inner-box .image{
	position:relative;
	width:145px;
	height:145px;
	margin:0 auto;
	border-radius:50%;
	overflow:hidden;
	margin-bottom:25px;
}

.team-block .inner-box h2{
	position:relative;
	font-weight:700;
	line-height:1.1em;
	font-family: 'Roboto', sans-serif;
}

.team-block .inner-box h2 a{
	position:relative;
	color:#19274d;
	transition:all 500ms ease;
	-moz-transition:all 500ms ease;
	-webkit-transition:all 500ms ease;
	-ms-transition:all 500ms ease;
	-o-transition:all 500ms ease;
}

.team-block .inner-box h2 a:hover{
	color:#4377ff;
}

.team-block .inner-box .content .social-outer-box{
	position:absolute;
	right:0px;
	bottom:0px;
	
	transition:all 900ms ease;
	-moz-transition:all 900ms ease;
	-webkit-transition:all 900ms ease;
	-ms-transition:all 900ms ease;
	-o-transition:all 900ms ease;
}

.team-block .inner-box .content .social-outer-box .plus{
	position:relative;
	right:0px;
	bottom:0px;
	width:50px;
	z-index:1;
	height:50px;
	color:#ffffff;
	cursor:pointer;
	line-height:50px;
	text-align:center;
	border-radius:5px;
	display:inline-block;
	background-color:#4377ff;
}

.team-block .inner-box .content .social-outer-box .social-boxed{
	position:absolute;
	right:0px;
	bottom:-400px;
	transition:all 900ms ease;
	-moz-transition:all 900ms ease;
	-webkit-transition:all 900ms ease;
	-ms-transition:all 900ms ease;
	-o-transition:all 900ms ease;
}

.team-block .inner-box .content .social-outer-box:hover{
	overflow:visible;
}

.team-block .inner-box .content .social-outer-box:hover .social-boxed{
	bottom:100%;
	top:auto;
}

.team-block .inner-box .content .social-outer-box .social-boxed .social-box{
	position:relative;
}

.team-block .inner-box .content .social-outer-box .social-boxed .social-box li{
	position:relative;
	padding-bottom:10px;
}

.team-block .inner-box .content .social-outer-box .social-boxed .social-box li a{
	position:relative;
	width:50px;
	height:50px;
	color:#19274d;
	font-size:16px;
	border-radius:5px;
	text-align:center;
	line-height:48px;
	display:inline-block;
	border:2px solid #f2f3f6;
	transition:all 500ms ease;
	-moz-transition:all 500ms ease;
	-webkit-transition:all 500ms ease;
	-ms-transition:all 500ms ease;
	-o-transition:all 500ms ease;
}

.team-block .inner-box .content .social-outer-box .social-boxed .social-box li.facebook a:hover{
	color:#ffffff;
	border-color:#4064ad;
	background-color:#4064ad;
}

.team-block .inner-box .content .social-outer-box .social-boxed .social-box li.twitter a:hover{
	color:#ffffff;
	border-color:#2d88ff;
	background-color:#2d88ff;
}

.team-block .inner-box .content .social-outer-box .social-boxed .social-box li.behance a:hover{
	color:#ffffff;
	border-color:#0055f8;
	background-color:#0055f8;
}

/*** 

====================================================================
	Subscribe Section
====================================================================

***/

.subscribe-section{
	position:relative;
	padding:100px 0px 120px;
}

.subscribe-section .chat-icon{
	position:absolute;
	left:0px;
	top:0px;
	width:512px;
	height:374px;
	z-index:1;
	background-repeat:no-repeat;
}

.subscribe-section .chat-icon-two{
	position:absolute;
	right:20%;
	top:150px;
	width:256px;
	height:256px;
	z-index:1;
	opacity:0.10;
	background-repeat:no-repeat;
}

.subscribe-section .sec-title{
	margin-bottom:30px;
}

.subscribe-section .subscribe-form-four{
	max-width:680px;
	margin:0 auto;
}

.subscribe-section .pattern-layer{
	position:absolute;
	left:0px;
	top:0px;
	right:0px;
	bottom:-110px;
	background-color:#4377ff;
	clip-path: polygon(0 0, 100% 0%, 100% 100%, 0 84%);
}

/* Subscribe Form */

.subscribe-form-four{
	position:relative;
	width:100%;
	margin-bottom:0px;
}

.subscribe-form-four .form-group{
    position: relative;
    display: block;
    z-index:1;
	margin-bottom: 0px;
}

.subscribe-form-four .form-group input[type="text"],
.subscribe-form-four .form-group input[type="tel"],
.subscribe-form-four .form-group input[type="email"],
.subscribe-form-four .form-group textarea {
    position:relative;
	display:block;
	width:100%;
	height:80px;
	font-size:16px;
	color:#19274d;
	line-height:38px;
	font-weight:400;
	border-radius:5px;
	background:#ffffff;
	padding:10px 20px 10px 40px;
	transition:all 500ms ease;
	-webkit-transition:all 500ms ease;
	-ms-transition:all 500ms ease;
	-o-transition:all 500ms ease;
}

.subscribe-form-four .form-group textarea::-webkit-input-placeholder,
.subscribe-form-four .form-group input::-webkit-input-placeholder{
	color:#19274d;
}

.subscribe-form-four .form-group .theme-btn{
	position: absolute;
	top: 10px;
	right: 10px;
	cursor:pointer;
}

.subscribe-section .list-outer{
	position:relative;
	text-align:center;
	margin-top:30px;
}

.subscribe-section .list-outer li{
	position:relative;
	color:#ffffff;
	font-size:16px;
	padding-left:70px;
	padding-top:14px;
	margin-right:60px;
	display:inline-block;
}

.subscribe-section .list-outer li:before{
	position:absolute;
	content: "\f1da";
	left:0px;
	top:0px;
	width:50px;
	height:50px;
	color:#ffffff;
	line-height:50px;
	text-align:center;
	border-radius:50px;
	display:inline-block;
	font-family: "Flaticon";
	-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:2px solid rgba(255,255,255,0.10);
}

.list-style-four li:hover::before{
	background-color:#4377ff;
	color:#ffffff;
}

.subscribe-section .list-outer li:last-child{
	margin-right:0px;
}

/*** 

====================================================================
	Testimonial Section
====================================================================

***/

.testimonial-section{
	position:relative;
	padding:0px 0px 150px;
}

.testimonial-section .carousel-column{
	position:relative;
}

.testimonial-section .carousel-column .inner-column{
	position:relative;
	padding-top:180px;
	margin-right:-20px;
}

.testimonial-section .carousel-column .text{
	position: relative;
    color: #19274d;
    font-size: 24px;
    font-weight: 500;
    line-height: 1.5em;
    padding-left: 28px;
    margin-top: 15px;
}

.testimonial-section .carousel-column .text:before{
	position:absolute;
	content:'';
	left:0px;
	top:0px;
	width:4px;
	height:60px;
	background-color:#4377ff;
}

.testimonial-section .clients-tabs{
	position:relative;
	margin-top:50px;
	padding-bottom:35px;
}

.testimonial-section .clients-tabs .tab-btns{
	position:relative;
	margin-top:40px;
}

.testimonial-section .clients-tabs .tab-btns:before{
	position:absolute;
	content:'';
	left:0px;
	top:0px;
	width:100%;
	height:1px;
	background-color:#e6e9f4;
	-webkit-transition:all 300ms ease;
	-ms-transition:all 300ms ease;
	-o-transition:all 300ms ease;
	-moz-transition:all 300ms ease;
	transition:all 300ms ease;
}

.testimonial-section .clients-tabs .tab-btns .tab-btn.active-btn::before,
.testimonial-section .clients-tabs .tab-btns .tab-btn:hover::before{
	opacity:1;
}

.testimonial-section .clients-tabs .tab-btns .tab-btn.active-btn,
.testimonial-section .clients-tabs .tab-btns .tab-btn:hover{
	opacity:1;
}

.testimonial-section .clients-tabs .tab-btns .tab-btn{
	position:relative;
	display:block;
	margin:0px 0px;
	font-size:24px;
	background:none;
	color:#19274d;
	font-weight:700;
	line-height:24px;
	cursor:pointer;
	margin-right:40px;
	margin-bottom:12px;
	padding-top:30px;
	opacity:0.20;
	border-top:1px solid #e6e9f4;
	display:inline-block;
	transition:all 500ms ease;
	text-transform:capitalize;
	-webkit-transition:all 300ms ease;
	-ms-transition:all 300ms ease;
	-o-transition:all 300ms ease;
	-moz-transition:all 300ms ease;
	transition:all 300ms ease;
}

.testimonial-section .clients-tabs .tab-btns .tab-btn:after{
	position:absolute;
	content:'';
	left:10px;
	top:0px;
	opacity:0;
	-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-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-top: 10px solid #4377ff;
}

.testimonial-section .clients-tabs .tab-btns .tab-btn.active-btn::after,
.testimonial-section .clients-tabs .tab-btns .tab-btn:hover::after{
	opacity:1;
}

.testimonial-section .clients-tabs .tab-btns .tab-btn:last-child{
	margin-right:0px;
}

.testimonial-section .clients-tabs .tab-btns .tab-btn span{
	position:relative;
	display:block;
	color:#4377ff;
	font-size:14px;
	margin-top:7px;
}

.testimonial-section .clients-tabs .tab-btns .tab-btn:before{
	position:absolute;
	content:'';
	left:0px;
	top:-1px;
	width:100%;
	height:1px;
	opacity:0;
	background-color:#4377ff;
	-webkit-transition:all 300ms ease;
	-ms-transition:all 300ms ease;
	-o-transition:all 300ms ease;
	-moz-transition:all 300ms ease;
	transition:all 300ms ease;
}

.testimonial-section .clients-tabs .tab-btns .tab-btn:hover .icon,
.testimonial-section .clients-tabs .tab-btns .tab-btn.active-btn .icon{
	color:#ffffff;
	background-color:#4377ff;
}

.testimonial-section .clients-tabs .tabs-content{
	position:relative;
}

.testimonial-section .clients-tabs .tabs-content .tab{
	position:relative;
	display:none;
}

.testimonial-section .clients-tabs .tabs-content .tab.active-tab{
	display:block;	
}











.testimonial-section .blocks-column{
	position:relative;
}

.testimonial-section .blocks-column .inner-column{
	position:relative;
	padding-left:100px;
}

.testimonial-section .blocks-column .inner-column .category-block:nth-child(2),
.testimonial-section .blocks-column .inner-column .category-block:nth-child(5),
.testimonial-section .blocks-column .inner-column .category-block:nth-child(8),
.testimonial-section .blocks-column .inner-column .category-block:nth-child(11){
	transform:translateY(30px);
}

.testimonial-section .blocks-column .inner-column .category-block:nth-child(3n + 0){
	transform:translateY(60px);
}

.category-block{
	position:relative;
	margin-bottom:30px;
}

.category-block .inner-box{
	position:relative;
	display:block;
	text-align:center;
	padding:45px 15px;
	border-radius:10px;
	background-color:#ffffff;
	box-shadow:0px 5px 10px rgba(0,0,0,0.05);
}

.category-block .inner-box .icon{
	position:relative;
	color:#4377ff;
	font-size:50px;
}

.category-block .inner-box h6{
	position:relative;
	color:#19274d;
	font-weight:700;
	margin-top:5px;
	text-transform:uppercase;
}

/*** 

====================================================================
	Products Section
====================================================================

***/

.products-section{
	position:relative;
	padding:110px 0px 70px;
	border-bottom:2px solid #e6edf7;
	background-image: -ms-linear-gradient(top, #F9FBFF 0%, #fbfdff 100%);
	background-image: -moz-linear-gradient(top, #F9FBFF 0%, #fbfdff 100%);
	background-image: -o-linear-gradient(top, #F9FBFF 0%, #fbfdff 100%);
	background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #F9FBFF), color-stop(100, #fbfdff));
	background-image: -webkit-linear-gradient(top, #F9FBFF 0%, #fbfdff 100%);
	background-image: linear-gradient(to bottom, #F9FBFF 0%, #fbfdff 100%);
}

.product-block{
	position:relative;
	margin-bottom:30px;
}

.product-block .inner-box{
	position:relative;
	padding-left:110px;
}

.product-block .inner-box .icon-box{
	position:absolute;
	left:0px;
	top:0px;
	width:80px;
	height:80px;
	border-radius:8px;
	text-align:center;
	line-height:80px;
	background-color:#ffffff;
	box-shadow:0px 10px 10px rgba(0,0,0,0.10);
}

.product-block .inner-box h5{
	position:relative;
	color:#19274d;
	font-weight:700;
	line-height:1.3em;
}

.product-block .inner-box h5 a{
	position:relative;
	color:#19274d;
}

.product-block .inner-box .text{
	position:relative;
	color:#19274d;
	font-weight:400;
	line-height:1.8em;
	margin-top:8px;
	font-size:16px;
	margin-bottom:10px;
}

.product-block .inner-box .download{
	position:relative;
	color:#a367bf;
	font-weight:700;
	font-size:14px;
}

.product-block:nth-child(2) .inner-box .download{
	color:#f05b68;
}

.product-block:nth-child(3) .inner-box .download{
	color:#005edf;
}

/*** 

====================================================================
	Banner Section Four
====================================================================

***/

.banner-section-four{
	position:relative;
	overflow:hidden;
	padding-top:200px;
}

.banner-section-four .mouse-btn-down{
	position:absolute;
	left:50%;
	margin-left:-20px;
	bottom:20px;
	width:30px;
	height:68px;
	cursor:pointer;
	display:block;
	z-index:20;
	cursor:pointer;
}

.banner-section-four .content-box{
	position:relative;
	text-align:center;
}

.banner-section-four .content-box .title{
	position:relative;
	color:#19274d;
	font-size:18px;
	font-weight:500;
	line-height:1.3em;
}

.banner-section-four .content-box h1{
	position:relative;
	color:#19274d;
	font-size:80px;
	font-weight:500;
	line-height:1em;
	margin-top:25px;
	margin-bottom:30px;
}

.banner-section-four .content-box .btn-box{
	position:relative;
	margin-top:40px;
}

.banner-section-four .content-box .btn-box .theme-btn{
	margin:0px 12px;
}

.banner-section-four .image-box{
	position:relative;
	margin-top:50px;
}

/*** 

====================================================================
	Featured Section Three
====================================================================

***/

.featured-section-three{
	position:relative;
	padding-bottom:20px;
}

.feature-block-three{
	position:relative;
	margin-bottom:30px;
}

.feature-block-three .inner-box{
	position:relative;
	padding:25px 35px;
	box-shadow:0px 10px 20px rgba(0,0,0,0.05);
}

.feature-block-three .inner-box .content{
	position:relative;
	padding-left:62px;
}

.feature-block-three .inner-box .content .arrow{
	position:absolute;
	right:0px;
	top:25px;
	font-size:22px;
	color:#e4e8f2;
	line-height:1em;
}

.feature-block-three .inner-box .content .icon{
	position:absolute;
	left:0px;
	top:0px;
}

.feature-block-three .inner-box .content h4{
	position:relative;
	color:#19274d;
	font-weight:500;
	font-family: 'Roboto', sans-serif;
}

.feature-block-three .inner-box .text{
	position:relative;
	color:#19274d;
	font-size:16px;
	margin-top:6px;
}

/*** 

====================================================================
	Featured Section Four
====================================================================

***/

.featured-section-four{
	position:relative;
	padding:70px 0px 90px;
}

.featured-section-four .image-column{
	position:relative;
}

.featured-section-four .image-column .inner-column{
	position:relative;
	margin-left:-40px;
	padding-right:30px;
}

.featured-section-four .image-column .image{
	position:relative;
}

.featured-section-four .content-column{
	position:relative;
}

.featured-section-four .content-column .inner-column{
	position:relative;
}

.feature-block-four{
	position:relative;
}

.feature-block-four .inner-box{
	position:relative;
	padding:35px 28px;
	overflow:hidden;
	box-shadow:0px 10px 40px #fafcfe;
}

.feature-block-four .inner-box .number{
	position:absolute;
	right:-25px;
	bottom:-20px;
	color:#fafcfe;
	font-weight:700;
	font-size:140px;
	line-height:1em;
}

.feature-block-four .inner-box .upper-box{
	position:relative;
	padding-top:8px;
	padding-left:62px;
}

.feature-block-four .inner-box .upper-box .icon{
	position:absolute;
	left:0px;
	top:0px;
}

.feature-block-four .inner-box .upper-box h4{
	position:relative;
	color:#19274d;
	font-weight:500;
	line-height:1.3em;
}

.feature-block-four .inner-box .text{
	position:relative;
	color:#19274d;
	font-size:16px;
	line-height:1.8em;
	margin-top:28px;
	z-index:1;
}

/*** 

====================================================================
	Download Section
====================================================================

***/

.download-section{
	position:relative;
}

.download-section .outer-container{
	position:relative;
	max-width:1775px;
	margin:0 auto;
	overflow:hidden;
	border-radius:10px;
	padding:110px 0px 0px;
}

.download-section .outer-container:before{
	position:absolute;
	content:'';
	left:0px;
	top:0px;
	right:0px;
	bottom:0px;
	border-radius:10px;
	background-color:#19274d;
}

.download-section .triangle-one{
	position:absolute;
	left:-300px;
	top:0px;
	width:560px;
	height:580px;
	transform:rotate(50deg);
	background-image: -ms-linear-gradient(left, #0C4195 0%, #1C73C5 100%);
	background-image: -moz-linear-gradient(left, #0C4195 0%, #1C73C5 100%);
	background-image: -o-linear-gradient(left, #0C4195 0%, #1C73C5 100%);
	background-image: -webkit-gradient(linear, left top, right top, color-stop(0, #0C4195), color-stop(100, #1C73C5));
	background-image: -webkit-linear-gradient(left, #0C4195 0%, #1C73C5 100%);
	background-image: linear-gradient(to right, #0C4195 0%, #1C73C5 100%);
}

.download-section .triangle-two{
	position:absolute;
	right:-250px;
	bottom:0px;
	width:660px;
	height:580px;
	transform:rotate(60deg);
	background-image: -ms-linear-gradient(left, #09B89B 0%, #9ffdb3 100%);
	background-image: -moz-linear-gradient(left, #09B89B 0%, #9ffdb3 100%);
	background-image: -o-linear-gradient(left, #09B89B 0%, #9ffdb3 100%);
	background-image: -webkit-gradient(linear, left top, right top, color-stop(0, #09B89B), color-stop(100, #9ffdb3));
	background-image: -webkit-linear-gradient(left, #09B89B 0%, #9ffdb3 100%);
	background-image: linear-gradient(to right, #09B89B 0%, #9ffdb3 100%);
}

.download-section .subscribe-form-five{
	max-width:690px;
	margin:0 auto;
}

.download-section .outer-container .list-outer{
	position:relative;
	text-align:center;
	margin-top:50px;
}

.download-section .outer-container .list-outer li{
	position:relative;
	color:#ffffff;
	font-size:16px;
	padding-left:80px;
	padding-top:14px;
	margin-right:70px;
	font-weight:700;
	margin-bottom:25px;
	display:inline-block;
}

.download-section .outer-container .list-outer li:before{
	position:absolute;
	content: "\f1da";
	left:0px;
	top:0px;
	width:50px;
	height:50px;
	color:#ffffff;
	line-height:50px;
	text-align:center;
	border-radius:50px;
	display:inline-block;
	font-family: "Flaticon";
	-webkit-transition:all 300ms ease;
	-ms-transition:all 300ms ease;
	-o-transition:all 300ms ease;
	-moz-transition:all 300ms ease;
	transition:all 300ms ease;
	background-color:#4377ff;
}

.download-section .outer-container .list-outer li:last-child{
	margin-right:0px;
}

.download-section .outer-container .image-box{
	position:relative;
	margin-top:70px;
}


/* Subscribe Form */

.subscribe-form-five{
	position:relative;
	width:100%;
	margin-bottom:0px;
}

.subscribe-form-five .form-group{
    position: relative;
    display: block;
    z-index:1;
	margin-bottom: 0px;
}

.subscribe-form-five .form-group input[type="text"],
.subscribe-form-five .form-group input[type="tel"],
.subscribe-form-five .form-group input[type="email"],
.subscribe-form-five .form-group textarea {
    position:relative;
	display:block;
	width:100%;
	height:80px;
	font-size:16px;
	color:#19274d;
	line-height:38px;
	font-weight:400;
	border-radius:50px;
	background:#ffffff;
	padding:10px 20px 10px 40px;
	transition:all 500ms ease;
	-webkit-transition:all 500ms ease;
	-ms-transition:all 500ms ease;
	-o-transition:all 500ms ease;
}

.subscribe-form-five .form-group textarea::-webkit-input-placeholder,
.subscribe-form-five .form-group input::-webkit-input-placeholder{
	color:#19274d;
}

.subscribe-form-five .form-group .theme-btn{
	position: absolute;
	top: 10px;
	right: 10px;
	cursor:pointer;
	border-radius:50px;
}

/*** 

====================================================================
	Choose Section
====================================================================

***/

.choose-section{
	position:relative;
	padding:110px 0px 80px;
}

.choose-section .content-column{
	position:relative;
}

.choose-section .content-column .inner-column{
	position:relative;
	padding-top:50px;
}

.choose-section .content-column .list{
	position:relative;
}

.choose-section .content-column .list li{
	position:relative;
	padding-left:50px;
	margin-bottom:20px;
	color:#19274d;
	font-size:20px;
	line-height:1.6em;
}

.choose-section .content-column .list li:before{
	position:absolute;
	content: "\f1da";
	left:0px;
	top:4px;
	color:#104da0;
	display:inline-block;
	font-family: "Flaticon";
	-webkit-transition:all 300ms ease;
	-ms-transition:all 300ms ease;
	-o-transition:all 300ms ease;
	-moz-transition:all 300ms ease;
	transition:all 300ms ease;
}

.choose-section .content-column .list li span{
	position:relative;
	font-weight:600;
}

.choose-section .carousel-column{
	position:relative;
	margin-bottom:40px;
}

.choose-section .carousel-column .inner-column{
	position:relative;
	margin-right:-50px;
}

.choose-section .carousel-column .owl-nav{
	display:none;
}

.choose-section .carousel-column .owl-dots{
	position:absolute;
	left:0px;
	bottom:30px;
	right:0px;
	text-align:center;
}

.choose-section .carousel-column .owl-dots .owl-dot{
	position:relative;
	width:10px;
	height:10px;
	margin:0px 5px;
	border-radius:50px;
	display:inline-block;
	background-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;
}

.choose-section .carousel-column .owl-dots .owl-dot.active,
.choose-section .carousel-column .owl-dots .owl-dot:hover{
	background-color:#104da1;
}

/*** 

====================================================================
	Process Section
====================================================================

***/

.process-section{
	position:relative;
	z-index:1;
	background-color:#f5fbff;
}

.process-section .carousel-column{
	position:relative;
}

.process-section .carousel-column .inner-column{
	position:relative;
	margin-right:40px;
	padding:75px 50px 70px;
}

.process-section .carousel-column .inner-column:before{
	position:absolute;
	content:'';
	left:0px;
	top:0px;
	right:0px;
	bottom:-40px;
	background-color:#ffffff;
}

/* Testimonial Block */

.testimonial-block{
	position:relative;
}

.testimonial-block .inner-box{
	position:relative;
}

.testimonial-block .inner-box .text{
	position:relative;
	color:#19274d;
	font-size:24px;
	font-weight:500;
	line-height:1.5em;
}

.testimonial-block .inner-box .author-box{
	position:relative;
	margin-top:35px;
	border-top:1px solid #e6e9f4;
}

.testimonial-block .inner-box .author-box .box-inner{
	position:relative;
	padding-top:30px;
	display:inline-block;
}

.testimonial-block .inner-box .author-box .box-inner:before{
	position:absolute;
	content:'';
	left:0px;
	top:-1px;
	height:1px;
	width:80%;
	background-color:#0d4599;
}

.testimonial-block .inner-box .author-box .box-inner:after{
	position: absolute;
    content: '';
    left: 20px;
    top: 0px;
    -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-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-top: 8px solid #0e4599;
}

.testimonial-block .inner-box .author-box .author-content{
	position:relative;
	padding-left:90px;
	padding-top:5px;
}

.testimonial-block .inner-box .author-box .author-content .author-image{
	position:absolute;
	left:0px;
	top:0px;
}

.testimonial-block .inner-box .author-box .author-content h4{
	position:relative;
	color:#19274d;
	font-weight:700;
	line-height:1.3em;
}

.testimonial-block .inner-box .author-box .author-content .designation{
	position:relative;
	font-size:14px;
	font-weight:700;
	line-height:1.3em;
	margin-top:10px;
	background: -webkit-linear-gradient(45deg, #0c4094, #1c72c4 80%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.process-section .carousel-column .clients-box{
	position:relative;
	padding-top:35px;
	margin-top:60px;
	border-top:1px solid #e6e9f4;
}

.process-section .carousel-column .clients-box .client-column{
	position:relative;
	margin-bottom:20px;
}

.process-section .carousel-column .clients-box .client-column img{
	position:relative;
	opacity:0.20;
	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;
}

.process-section .carousel-column .clients-box .client-column img:hover{
	opacity:1;
	filter: grayscale(0%);
}

.process-section .content-column{
	position:relative;
}

.process-section .content-column .inner-column{
	position:relative;
	padding:110px 0px 80px;
}

.process-block{
	position:relative;
	margin-bottom:30px;
}

.process-block .inner-box{
	position:relative;
	padding-left:90px;
}

.process-block .inner-box .arrow{
	position: absolute;
    right: 0px;
    top: 0px;
    font-size: 22px;
    color: #e4e8f2;
    line-height: 1em;
}

.process-block .inner-box .number{
	position:absolute;
	left:0px;
	top:0px;
	font-size:60px;
	font-weight:500;
	line-height:1em;
	background: -webkit-linear-gradient(-45deg, #ffffff, #0e8bff 80%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.process-block .inner-box h4{
	position:relative;
	color:#19274d;
	font-weight:700;
	line-height:1.3em;
	font-family: 'Roboto', sans-serif;
}

.process-block .inner-box .text{
	position:relative;
	color:#19274d;
	font-weight:400;
	font-size:16px;
	line-height:1.9em;
	margin-top:10px;
}

.process-block:nth-child(2) .inner-box .number{
	background: -webkit-linear-gradient(-45deg, #ffffff, #fea147 80%);
	-webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.process-block:nth-child(3) .inner-box .number{
	background: -webkit-linear-gradient(-45deg, #ffffff, #fe8f8f 80%);
	-webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/*** 

====================================================================
	Counter Section Two
====================================================================

***/

.counter-section-two{
	position:relative;
	padding:145px 0px 230px;
	background-image: -ms-linear-gradient(left, #0C4094 0%, #1c74c6 100%);
	background-image: -moz-linear-gradient(left, #0C4094 0%, #1c74c6 100%);
	background-image: -o-linear-gradient(left, #0C4094 0%, #1c74c6 100%);
	background-image: -webkit-gradient(linear, left top, right top, color-stop(0, #0C4094), color-stop(100, #1c74c6));
	background-image: -webkit-linear-gradient(left, #0C4094 0%, #1c74c6 100%);
	background-image: linear-gradient(to right, #0C4094 0%, #1c74c6 100%);
}

.counter-section-two .fact-counter-two .column .inner:before{
	position:absolute;
	content:'';
	right:-20px;
	top:10px;
	bottom:10px;
	width:1px;
	background-color:rgba(255,255,255,0.10);
}

.counter-section-two .fact-counter-two .column:last-child .inner:before{
	display:none;
}

/* Fact Counter */

.fact-counter-two{
	position:relative;
}

.fact-counter-two .column{
	position:relative;
	margin-bottom:30px;
}

.fact-counter-two .column .inner{
	position:relative;
	text-align:center;
}

.fact-counter-two .column .inner .content{
	position:relative;
}

.fact-counter-two .column .inner .content .icon-box{
	position:relative;
}

.fact-counter-two .column .inner .content .plus{
	position:relative;
	width:50px;
	height:50px;
	color:#ffffff;
	line-height:46px;
	text-align:center;
	margin-top:25px;
	border-radius:50px;
	display:inline-block;
	border:2px solid rgba(255,255,255,0.10);
}

.fact-counter-two .count-outer .percentage{
	display:inline-block;
	font-weight:700;
	color:#19274d;
	font-size:60px;
	line-height:1em;
}

.fact-counter-two .column .inner .count-outer{
	position:relative;
	font-weight:700;
	color:#ffffff;
	font-size:60px;
	line-height:1em;
}

.fact-counter-two .column .inner .counter-title{
	position:relative;
	font-size:18px;
	font-weight:500;
	margin-top:30px;
	color:#ffffff;
	margin-bottom:15px;
}

/*** 

====================================================================
	CTA Section
====================================================================

***/

.cta-section{
	position:relative;
	padding-bottom:20px;
}

.cta-section .inner-container{
	position:relative;
	padding:75px 90px 40px;
	background-color:#ffffff;
	box-shadow:0px 0px 15px rgba(0,0,0,0.10);
}

.cta-section .inner-container.margin-top{
	margin-top:-150px;
}

.cta-section .title-column{
	position:relative;
}

.cta-section .title-column .inner-column{
	position:relative;
}

.cta-section .button-column{
	position:relative;
}

.cta-section .button-column .inner-column{
	position:relative;
	text-align:right;
	padding-top:55px;
}

.cta-section .button-column .theme-btn{
	margin-left:20px;
}

/*** 

====================================================================
	Featured Section
====================================================================

***/

.featured-section-five{
	position:relative;
	padding:110px 0px 80px;
}

.featured-section-five .tab-column{
	position:relative;
	margin-bottom:30px;
}

.featured-section-five .tab-column .inner-column{
	position:relative;
	padding:40px 40px;
	border-radius:12px;
	margin-right:30px;
	background-color:#19274d;
}

.cources-tabs{
	position:relative;
}

.cources-tabs .tab-btns{
	position:relative;
	margin-bottom:30px;
	display:inline-block;
	border-bottom:2px solid #364674;
}

.cources-tabs .tab-btns .tab-btn.active-btn,
.cources-tabs .tab-btns .tab-btn:hover{
	opacity:1;
	color:#ffffff;
}

.cources-tabs .tab-btns .tab-btn{
	position:relative;
	display:block;
	margin:0px 0px;
	font-size:18px;
	background:none;
	color:#8490ae;
	font-weight:500;
	line-height:24px;
	cursor:pointer;
	padding:0px 22px;
	margin-bottom:18px;
	display:inline-block;
	transition:all 500ms ease;
	text-transform:capitalize;
	-webkit-transition:all 300ms ease;
	-ms-transition:all 300ms ease;
	-o-transition:all 300ms ease;
	-moz-transition:all 300ms ease;
	transition:all 300ms ease;
}

.cources-tabs .tab-btns .tab-btn:before{
	position:absolute;
	content:'';
	left:0px;
	bottom:-20px;
	opacity:0;
	height:5px;
	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;
	background-image: -ms-linear-gradient(left, #0C4094 0%, #1c74c6 100%);
	background-image: -moz-linear-gradient(left, #0C4094 0%, #1c74c6 100%);
	background-image: -o-linear-gradient(left, #0C4094 0%, #1c74c6 100%);
	background-image: -webkit-gradient(linear, left top, right top, color-stop(0, #0C4094), color-stop(100, #1c74c6));
	background-image: -webkit-linear-gradient(left, #0C4094 0%, #1c74c6 100%);
	background-image: linear-gradient(to right, #0C4094 0%, #1c74c6 100%);
}

.cources-tabs .tab-btns .tab-btn.active-btn::before,
.cources-tabs .tab-btns .tab-btn:hover::before{
	opacity:1;
}

.cources-tabs .tab-btns .tab-btn:last-child{
	margin-right:0px;
}

.cources-tabs .tabs-content{
	position:relative;
}

.cources-tabs .tabs-content .tab{
	position:relative;
	display:none;
}

.cources-tabs .tabs-content .tab.active-tab{
	display:block;	
}

.cources-tabs .tabs-content .code-text{
	position:relative;
	color:#69ffb3;
	font-size:18px;
	font-weight:500;
	line-height:1.7em;
}

.cources-tabs .tabs-content .code-text .title{
	position:relative;
	color:#df4bff;
}

.featured-section-five .content-column{
	position:relative;
	margin-bottom:30px;
}

.featured-section-five .content-column .inner-column{
	position:relative;
	padding-top:30px;
}

.featured-section-five .content-column .sec-title{
	margin-bottom:15px;
}

.featured-section-five .content-column .column-text{
	position:relative;
	color:#19274d;
	font-size:16px;
	line-height:1.7em;
}

/*** 

====================================================================
	Blog Section Three
====================================================================

***/

.blog-section-three{
	position:relative;
	padding:110px 0px 70px;
}

.blog-section-three .inner-container{
	position:relative;
}

.blog-section-three .circle-one{
	position:absolute;
	top:-30px;
	left:28%;
	width:52px;
	height:52px;
	border-radius:50px;
	display:inline-block;
	background-image: -ms-linear-gradient(left, #0C4094 0%, #1c74c6 100%);
	background-image: -moz-linear-gradient(left, #0C4094 0%, #1c74c6 100%);
	background-image: -o-linear-gradient(left, #0C4094 0%, #1c74c6 100%);
	background-image: -webkit-gradient(linear, left top, right top, color-stop(0, #0C4094), color-stop(100, #1c74c6));
	background-image: -webkit-linear-gradient(left, #0C4094 0%, #1c74c6 100%);
	background-image: linear-gradient(to right, #0C4094 0%, #1c74c6 100%);
}

.blog-section-three .circle-two{
	position:absolute;
	left:42%;
	bottom:10px;
	width:52px;
	height:52px;
	border-radius:50px;
	display:inline-block;
	background-image: -ms-linear-gradient(left, #0C4094 0%, #1c74c6 100%);
	background-image: -moz-linear-gradient(left, #0C4094 0%, #1c74c6 100%);
	background-image: -o-linear-gradient(left, #0C4094 0%, #1c74c6 100%);
	background-image: -webkit-gradient(linear, left top, right top, color-stop(0, #0C4094), color-stop(100, #1c74c6));
	background-image: -webkit-linear-gradient(left, #0C4094 0%, #1c74c6 100%);
	background-image: linear-gradient(to right, #0C4094 0%, #1c74c6 100%);
}

.blog-section-three .sec-title .theme-btn{
	margin-top:30px;
}

.news-block-three{
	position:relative;
	margin-bottom:30px;
}

.news-block-three .inner-box{
	position:relative;
	padding:40px 30px;
	border-radius:0px;
	border:2px solid #e1f3ff;
	background-color:#ffffff;
}

.news-block-three .inner-box .category{
	position:relative;
	color:#ffffff;
	font-size:14px;
	padding:6px 18px;
	border-radius:50px;
	font-weight:700;
	display:inline-block;
	background-image: -ms-linear-gradient(left, #0C4094 0%, #1c74c6 100%);
	background-image: -moz-linear-gradient(left, #0C4094 0%, #1c74c6 100%);
	background-image: -o-linear-gradient(left, #0C4094 0%, #1c74c6 100%);
	background-image: -webkit-gradient(linear, left top, right top, color-stop(0, #0C4094), color-stop(100, #1c74c6));
	background-image: -webkit-linear-gradient(left, #0C4094 0%, #1c74c6 100%);
	background-image: linear-gradient(to right, #0C4094 0%, #1c74c6 100%);
}

.news-block-three .inner-box h5{
	position:relative;
	line-height:1.5em;
	font-weight:500;
	margin-top:25px;
}

.news-block-three .inner-box h5 a{
	position:relative;
	color:#19274d;
	-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 h5 a:hover{
	color:#1c74c6;
}

.news-block-three .inner-box .text{
	position:relative;
	color:#19274d;
	font-size:15px;
	line-height:1.8em;
	margin-top:18px;
}

.news-block-three .inner-box .post-meta{
	position:relative;
	padding-top:18px;
	margin-top:5px;
	border-top:1px solid rgba(255,255,255,0.08);
}

.news-block-three .inner-box .post-meta li{
	position:relative;
	font-size:14px;
	font-weight:700;
	margin-right:4px;
	display:inline-block;
	background: -webkit-linear-gradient(45deg, #0c4094, #1c72c4 80%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.news-block-three .inner-box .post-meta li:last-child{
	margin-right:0px;
}

.news-block-three .inner-box .post-meta li .icon{
	position:relative;
	margin-right:10px;
	font-weight:300;
	background: -webkit-linear-gradient(45deg, #0c4094, #1c72c4 80%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/*** 

====================================================================
	Contact Info Section
====================================================================

***/

.contact-info-section{
	position:relative;
	padding-top:40px;
}

.contact-info-section .inner-container{
	position:relative;
	padding:45px 45px 15px;
	background-image: -ms-linear-gradient(left, #0C4094 0%, #1c74c6 100%);
	background-image: -moz-linear-gradient(left, #0C4094 0%, #1c74c6 100%);
	background-image: -o-linear-gradient(left, #0C4094 0%, #1c74c6 100%);
	background-image: -webkit-gradient(linear, left top, right top, color-stop(0, #0C4094), color-stop(100, #1c74c6));
	background-image: -webkit-linear-gradient(left, #0C4094 0%, #1c74c6 100%);
	background-image: linear-gradient(to right, #0C4094 0%, #1c74c6 100%);
}

.contact-info-section .inner-container.margin-bottom{
	margin-bottom:-80px;
	z-index:1;
}

.contact-info-section .inner-container .side-image{
	position:absolute;
	right:0px;
	top:-60px;
}

.contact-info-section .info-column{
	position:relative;
	margin-bottom:30px;
}

.contact-info-section .info-column .inner-column{
	position:relative;
	padding-left:40px;
}

.contact-info-section .info-column .icon{
	position:absolute;
	left:0px;
	top:0px;
	color:#ffffff;
	font-size:20px;
}

.contact-info-section .info-column .title{
	position:relative;
	color:#ffffff;
	font-size:16px;
	font-weight:700;
}

.contact-info-section .info-column h2{
	position:relative;
	color:#ffffff;
	font-weight:700;
}

.contact-info-section .info-column h2 a{
	position:relative;
	color:#ffffff;
}

/*** 

====================================================================
	Banner Section Five
====================================================================

***/

.banner-section-five{
	position:relative;
	overflow:hidden;
	padding-top:245px;
	padding-bottom:120px;
	background-color:#f4f7fc;
}

.banner-section-five:before{
	position:absolute;
	content:'';
	right:0px;
	top:0px;
	bottom:0px;
	width:20%;
	background-color:#1374f6;
}

.banner-section-five .auto-container{
	max-width:1500px;
}

.banner-section-five .content-column{
	position:relative;
	margin-bottom:30px;
}

.banner-section-five .content-column .inner-column{
	position:relative;
	padding-top:65px;
}

.banner-section-five .content-column .title{
	position:relative;
	color:#19274d;
	font-size:18px;
	font-weight:500;
}

.banner-section-five .content-column h1{
	position:relative;
	color:#19274d;
	font-size:100px;
	font-weight:700;
	line-height:1em;
	margin-top:30px;
	font-family: 'Gilroy-ExtraBold';
}

.banner-section-five .content-column .buttons-box{
	position:relative;
	margin-top:30px;
}

.banner-section-five .content-column .buttons-box .theme-btn{
	margin-right:25px;
}

.banner-section-five .image-column{
	position:relative;
}

.banner-section-five .image-column .inner-column{
	position:relative;
	margin-bottom:30px;
}

.banner-section-five .image-column .image{
	position:relative;
	z-index:2;
}

.banner-section-five .image-column .image img{
	position:relative;
	max-width:inherit;
}

.banner-section-five .image-column .layer-one{
	position:absolute;
	left:20px;
	bottom:-20px;
	right:-130px;
	height:20px;
	z-index:1;
	background-color:rgba(255,255,255,0.10);
	box-shadow:0px 0px 10px rgba(0,0,0,0.10);
}

.banner-section-five .image-column .layer-two{
	position:absolute;
	left:40px;
	bottom:-40px;
	right:-105px;
	height:40px;
	z-index:-1;
	background-color:rgba(255,255,255,0.10);
	box-shadow:0px 0px 10px rgba(0,0,0,0.10);
}

/*** 

====================================================================
	Blocks Section
====================================================================

***/

.software-section{
	position:relative;
	padding:115px 0px 80px;
}

.software-section .blocks-column{
	position:relative;
	margin-bottom:40px;
}

.software-section .blocks-column .inner-column{
	position:relative;
}

.customize-block{
	position:relative;
	margin-bottom:30px;
}

.customize-block .inner-box{
	position:relative;
	padding:40px 30px;
	border-radius:15px;
	text-align:center;
	background-color:#f4f9ff;
}

.customize-block .inner-box .title{
	position:relative;
	color:#1374f6;
	font-size:14px;
	font-weight:700;
}

.customize-block .inner-box h4{
	position:relative;
	color:#19274d;
	font-weight:700;
	line-height:1.3em;
	margin-top:10px;
}

.customize-block .inner-box .image{
	position:relative;
	margin-top:25px;
}

/* Engineer Block */

.engineer-block{
	position:relative;
	margin-bottom:30px;
}

.engineer-block .inner-box{
	position:relative;
	padding:50px 30px;
	border-radius:15px;
	text-align:center;
	background-color:#fff4fa;
}

.engineer-block .inner-box .content{
	position:relative;
}

.engineer-block .inner-box .check{
	position:absolute;
	right:20px;
	top:20px;
	width:40px;
	height:40px;
	color:#ffffff;
	line-height:40px;
	border-radius:50px;
	display:inline-block;
	background-color:#ff8c8c;
	box-shadow:0px 10px 10px rgba(255,140,140,0.20);
}

.engineer-block .inner-box .content .image{
	position:relative;
	width:140px;
	height:140px;
	margin:0 auto;
	border-radius:50%;
	border:10px solid #ffffff;
}

.engineer-block .inner-box .content .image:before{
	position:absolute;
	content:'';
	left:-10px;
	top:-10px;
	right:-10px;
	bottom:-10px;
	z-index:1;
	background:url(../images/icons/circle-layer.png) no-repeat;
}

.engineer-block .inner-box .content .designation{
	position:relative;
	color:#ff8c8c;
	font-size:14px;
	font-weight:700;
	margin-top:25px;
}

.engineer-block .inner-box .content .name{
	position:relative;
	color:#19274d;
	font-size:24px;
	font-weight:700;
	margin-top:10px;
	font-family: 'Gilroy-ExtraBold';
}

.engineer-block .inner-box .owl-nav{
	display:none;
}

.engineer-block .inner-box .owl-dots{
	position:relative;
	text-align:center;
	margin-top:20px;
}

.engineer-block .inner-box .owl-dots .owl-dot{
	position:relative;
	width:20px;
	height:4px;
	opacity:0.20;
	margin:0px 5px;
	display:inline-block;
	background-color:#ff8c8c;
	-webkit-transition:all 300ms ease;
	-ms-transition:all 300ms ease;
	-o-transition:all 300ms ease;
	-moz-transition:all 300ms ease;
	transition:all 300ms ease;
}

.engineer-block .inner-box .owl-dots .owl-dot.active,
.engineer-block .inner-box .owl-dots .owl-dot:hover{
	opacity:1;
}

/* Business Block */

.business-block{
	position:relative;
}

.business-block .inner-box{
	position:relative;
	border-radius:15px;
	padding:45px 30px 45px 40px;
	background-color:#5fcda9;
}

.business-block .inner-box .content{
	position:relative;
	padding-left:90px;
}

.business-block .inner-box .content .graph-outer{
	position:absolute;
	left:0px;
	top:12px;
	width:80px;
	text-align:center;
}

.business-block .inner-box .content .count-box{
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    font-size: 24px;
    color: #ffffff;
    font-weight: 700;
    margin-top: -17px;
	text-align:center;
}

.business-block .inner-box .content .count-box .count-text{
	position:relative;
	color:#ffffff;
	font-size:24px;
	font-weight:700;
	font-family: 'Gilroy-ExtraBold';
}

.business-block .inner-box .content .count-box .sign{
	font-size: 20px;
}

.business-block .inner-box .content .title{
	position:relative;
	color:#ffffff;
	font-size:14px;
	font-weight:700;
}

.business-block .inner-box .content h4{
	position:relative;
	color:#ffffff;
	font-weight:700;
	line-height:1.3em;
	margin-top:8px;
	font-family: 'Gilroy-ExtraBold';
}

.business-block .inner-box .content .image{
	position:absolute;
	right:0px;
	top:-25px;
}

.software-section .content-column{
	position:relative;
	margin-bottom:40px;
}

.software-section .content-column .inner-column{
	position:relative;
	padding-left:40px;
	padding-top:58px;
}

.software-section .content-column .title{
	position:relative;
	color:#19274d;
	font-size:18px;
	font-weight:500;
	line-height:1.3em;
}

.software-section .content-column h1{
	position:relative;
	color:#19274d;
	font-size:56px;
	line-height:1.1em;
	margin-top:18px;
	font-family: 'Gilroy-ExtraBold';
}

.software-section .content-column .languages{
	position:relative;
	padding:28px 0px;
	margin-top:32px;
	margin-bottom:32px;
	border-top:2px solid #e8eeff;
	border-bottom:2px solid #e8eeff;
}

.software-section .content-column .languages li{
	position:relative;
	color:#19274d;
	font-size:18px;
	font-weight:700;
	margin-right:45px;
	display:inline-block;
}

.software-section .content-column .languages li .icon{
	position:relative;
	color:#3246d3;
	font-weight:400;
	margin-right:7px;
}

.software-section .content-column .languages li:last-child{
	margin-right:0px;
}

.software-section .content-column .inner-column .text{
	position:relative;
	margin-top:32px;
	color:#19274d;
	font-size:18px;
	line-height:1.8em;
}

.software-section .content-column .inner-column .text span{
	position:relative;
	font-weight:600;
}

/*** 

====================================================================
	Featured Section Six
====================================================================

***/

.featured-section-six{
	position:relative;
	padding:110px 0px 80px;
	background-image: -ms-linear-gradient(top, #F4F7FC 0%, #ffffff 100%);
	background-image: -moz-linear-gradient(top, #F4F7FC 0%, #ffffff 100%);
	background-image: -o-linear-gradient(top, #F4F7FC 0%, #ffffff 100%);
	background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #F4F7FC), color-stop(100, #ffffff));
	background-image: -webkit-linear-gradient(top, #F4F7FC 0%, #ffffff 100%);
	background-image: linear-gradient(to bottom, #F4F7FC 0%, #ffffff 100%);
}

.feature-block-five{
	position:relative;
	margin-bottom:30px;
}

.feature-block-five .inner-box{
	position:relative;
	text-align:center;
}

.feature-block-five .inner-box .icon-box{
	position:relative;
}

.feature-block-five .inner-box h2{
	position:relative;
	line-height:1.3em;
	margin-top:30px;
	margin-bottom:15px;
	font-family: 'Gilroy-ExtraBold';
}

.feature-block-five .inner-box h2 a{
	position:relative;
	color:#19274d;
	-webkit-transition:all 300ms ease;
	-ms-transition:all 300ms ease;
	-o-transition:all 300ms ease;
	-moz-transition:all 300ms ease;
	transition:all 300ms ease;
}

.feature-block-five .inner-box .text{
	position:relative;
	color:#19274d;
	font-size:16px;
	line-height:1.8em;
	margin-top:12px;
	padding:0px 35px;
	margin-bottom:15px;
}

.feature-block-five .inner-box .read-more{
	position:relative;
	color:#1374f6;
	font-size:16px;
	font-weight:700;
	-webkit-transition:all 300ms ease;
	-ms-transition:all 300ms ease;
	-o-transition:all 300ms ease;
	-moz-transition:all 300ms ease;
	transition:all 300ms ease;
}

.feature-block-five .inner-box h2 a:hover{
	color:#1374f6;
}

.feature-block-five .inner-box .read-more:hover{
	color:#19274d;
}

/*** 

====================================================================
	Counter Section Three
====================================================================

***/

.counter-section-three{
	position:relative;
}

.counter-section-three .inner-container{
	position:relative;
	padding:80px 80px 50px;
	box-shadow:0px 10px 20px rgba(5,88,200,0.20);
	background-image: -ms-linear-gradient(left, #004EB7 0%, #1374f6 100%);
	background-image: -moz-linear-gradient(left, #004EB7 0%, #1374f6 100%);
	background-image: -o-linear-gradient(left, #004EB7 0%, #1374f6 100%);
	background-image: -webkit-gradient(linear, left top, right top, color-stop(0, #004EB7), color-stop(100, #1374f6));
	background-image: -webkit-linear-gradient(left, #004EB7 0%, #1374f6 100%);
	background-image: linear-gradient(to right, #004EB7 0%, #1374f6 100%);
}

/* Fact Counter */

.fact-counter-three{
	position:relative;
}

.fact-counter-three .column{
	position:relative;
	margin-bottom:30px;
}

.fact-counter-three .column .inner{
	position:relative;
	text-align:center;
}

.fact-counter-three .column .inner .content{
	position:relative;
}

.fact-counter-three .column .inner .content:before{
	position:absolute;
	content:'';
	right:-20px;
	top:0px;
	width:1px;
	height:100%;
	background-color:rgba(255,255,255,0.20);
}

.fact-counter-three .column:last-child .inner .content:before{
	display:none;
}

.fact-counter-three .count-outer .percentage{
	display:inline-block;
	font-weight:500;
	color:#ffffff;
	font-size:60px;
	line-height:1em;
}

.fact-counter-three .column .inner .count-outer{
	position:relative;
	font-weight:500;
	color:#ffffff;
	font-size:60px;
	line-height:1em;
}

.fact-counter-three .column .inner .counter-title{
	position:relative;
	font-weight:500;
	color:#ffffff;
	margin-bottom:15px;
}

/*** 

====================================================================
	Tracking Section
====================================================================

***/

.tracking-section{
	position:relative;
	padding-top:120px;
	overflow:hidden;
}

.tracking-section .blocks-column{
	position:relative;
}

.tracking-section .blocks-column .inner-column{
	position:relative;
}

.feature-block-six{
	position:relative;
	margin-bottom:1px;
}

.feature-block-six .inner-box{
	position:relative;
	padding:45px 40px;
	box-shadow:0px 10px 20px rgba(19,116,246,0.10);
}

.feature-block-six .inner-box .big-icon{
	position:absolute;
	right:-30px;
	top:0px;
	font-size:140px;
	line-height:1em;
	color:rgba(255,255,255,0.10);
}

.feature-block-six .inner-box:before{
	position:absolute;
	content:'';
	left:-30px;
	top:0px;
	right:-30px;
	bottom:0px;
	opacity:0;
	transform:scale(0.5,1);
	background-color:#1374f6;
	-webkit-transition:all 300ms ease;
	-ms-transition:all 300ms ease;
	-o-transition:all 300ms ease;
	-moz-transition:all 300ms ease;
	transition:all 300ms ease;
}

.feature-block-six.active .inner-box:before,
.feature-block-six .inner-box:hover::before{
	opacity:1;
	transform:scale(1,1);
}

.feature-block-six .inner-box .content{
	position:relative;
	padding-left:70px;
}

.feature-block-six .inner-box .icon{
	position:absolute;
	left:0px;
	top:8px;
	color:#1374f6;
	font-size:44px;
	line-height:1em;
	-webkit-transition:all 300ms ease;
	-ms-transition:all 300ms ease;
	-o-transition:all 300ms ease;
	-moz-transition:all 300ms ease;
	transition:all 300ms ease;
}

.feature-block-six .inner-box h4{
	position:relative;
	font-family: 'Gilroy-ExtraBold';
}

.feature-block-six .inner-box h4 a{
	position:relative;
	color:#19274d;
	-webkit-transition:all 300ms ease;
	-ms-transition:all 300ms ease;
	-o-transition:all 300ms ease;
	-moz-transition:all 300ms ease;
	transition:all 300ms ease;
}

.feature-block-six .inner-box .text{
	position:relative;
	color:#19274d;
	font-size:16px;
	line-height:1.9em;
	margin-top: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;
}

.feature-block-six.active .inner-box h4 a,
.feature-block-six.active .inner-box .icon,
.feature-block-six.active .inner-box .text,

.feature-block-six .inner-box:hover h4 a,
.feature-block-six .inner-box:hover .icon,
.feature-block-six .inner-box:hover .text{
	color:#ffffff;
}

.tracking-section .image-column{
	position:relative;
}

.tracking-section .image-column .inner-column{
	position:relative;
}

.tracking-section .image-column .image{
	position:relative;
	margin-top:-20px;
}

.tracking-section .image-column .image img{
	position:relative;
	max-width:inherit;
}

/*** 

====================================================================
	Demo Section
====================================================================

***/

.demo-section{
	position:relative;
	overflow:hidden;
	padding:0px 0px 20px;
	background-color:#f4f7fc;
}

.demo-section .image-layer{
	position:absolute;
	left:0px;
	bottom:0px;
	width:354px;
	height:233px;
	background-repeat:no-repeat;
}

.demo-section .content-column{
	position:relative;
}

.demo-section .content-column .inner-column{
	position:relative;
	padding-top:110px;
}

.demo-section .content-column .button-box{
	position:relative;
}

.demo-section .content-column .button-box .theme-btn{
	position:relative;
	margin-right:15px;
	border-radius:50px;
}

.demo-section .image-column{
	position:relative;
}

.demo-section .image-column .inner-column{
	position:relative;
}

.demo-section .image-column .image{
	position:relative;
}

.demo-section .image-column .image img{
	position:relative;
	max-width:inherit;
}

/*** 

====================================================================
	Testimonial Section Two
====================================================================

***/

.testimonial-section-two{
	position:relative;
	padding:80px 0px 50px;
}

.testimonial-section-two .color-one{
	position:absolute;
	left:15%;
	top:22%;
	width:16px;
	height:16px;
	background-color:#ffe6e6;
}

.testimonial-section-two .color-two{
	position:absolute;
	left:20%;
	top:65%;
	width:16px;
	height:16px;
	background-color:#e3e6ff;
}

.testimonial-section-two .color-three{
	position:absolute;
	right:12%;
	top:18%;
	width:16px;
	height:16px;
	background-color:#ffe6e6;
}

.testimonial-section-two .color-four{
	position:absolute;
	right:18%;
	top:65%;
	width:16px;
	height:16px;
	background-color:#3246d3;
}

.testimonial-section-two .testimonial-tabs{
	position:relative;
	margin-top:50px;
	text-align:center;
	padding-bottom:35px;
}

.testimonial-section-two .testimonial-tabs .tab-btns{
	position:relative;
	margin-top:40px;
	display:inline-block;
}

.testimonial-section-two .testimonial-tabs .tab-btns:before{
	position:absolute;
	content:'';
	left:0px;
	top:0px;
	width:100%;
	height:1px;
	background-color:#e6e9f4;
	-webkit-transition:all 300ms ease;
	-ms-transition:all 300ms ease;
	-o-transition:all 300ms ease;
	-moz-transition:all 300ms ease;
	transition:all 300ms ease;
}

.testimonial-section-two .testimonial-tabs .tab-btns .tab-btn.active-btn::before,
.testimonial-section-two .testimonial-tabs .tab-btns .tab-btn:hover::before{
	opacity:1;
}

.testimonial-section-two .testimonial-tabs .tab-btns .tab-btn.active-btn,
.testimonial-section-two .testimonial-tabs .tab-btns .tab-btn:hover{
	opacity:1;
}

.testimonial-section-two .testimonial-tabs .tab-btns .tab-btn{
	position:relative;
	display:block;
	margin:0px 0px;
	font-size:24px;
	background:none;
	color:#19274d;
	font-weight:700;
	line-height:24px;
	cursor:pointer;
	margin-right:40px;
	margin-bottom:12px;
	padding-top:30px;
	opacity:0.20;
	border-top:1px solid #eaedff;
	display:inline-block;
	transition:all 500ms ease;
	text-transform:capitalize;
	-webkit-transition:all 300ms ease;
	-ms-transition:all 300ms ease;
	-o-transition:all 300ms ease;
	-moz-transition:all 300ms ease;
	transition:all 300ms ease;
}

.testimonial-section-two .testimonial-tabs .tab-btns .tab-btn:last-child{
	margin-right:0px;
}

.testimonial-section-two .testimonial-tabs .tab-btns .tab-btn span{
	position:relative;
	display:block;
	color:#1374f6;
	font-size:14px;
	margin-top:7px;
}

.testimonial-section-two .testimonial-tabs .tab-btns .tab-btn:before{
	position:absolute;
	content:'';
	left:0px;
	top:-1px;
	width:100%;
	height:4px;
	opacity:0;
	background-color:#1374f6;
	-webkit-transition:all 300ms ease;
	-ms-transition:all 300ms ease;
	-o-transition:all 300ms ease;
	-moz-transition:all 300ms ease;
	transition:all 300ms ease;
}

.testimonial-section-two .testimonial-tabs .tab-btns .tab-btn:hover .icon,
.testimonial-section-two .testimonial-tabs .tab-btns .tab-btn.active-btn .icon{
	color:#ffffff;
	background-color:#1374f6;
}

.testimonial-section-two .testimonial-tabs .tabs-content{
	position:relative;
	text-align:center;
}

.testimonial-section-two .testimonial-tabs .tabs-content .author-image{
	position:relative;
	width:120px;
	height:120px;
	margin:0 auto;
}

.testimonial-section-two .testimonial-tabs .tabs-content .author-image:before{
	position:absolute;
	content:'';
	left:-30px;
	top:-30px;
	width:60px;
	height:60px;
	z-index:-1;
	border-radius:50px;
	background-color:#007bff;
}

.testimonial-section-two .testimonial-tabs .tabs-content .author-image:after{
	position:absolute;
	content:'';
	right:-25px;
	bottom:-25px;
	width:60px;
	height:60px;
	z-index:-1;
	border-radius:50px;
	background-color:#3246d3;
}

.testimonial-section-two .testimonial-tabs .tabs-content .tab{
	position:relative;
	display:none;
}

.testimonial-section-two .testimonial-tabs .tabs-content .tab.active-tab{
	display:block;	
}

.testimonial-section-two .testimonial-tabs .tabs-content .text{
	position:relative;
	color:#19274d;
	font-size:60px;
	line-height:1.1em;
	max-width:850px;
	margin:0 auto;
	margin-top:30px;
	font-family: 'Gilroy-ExtraBold';
}

/*** 

====================================================================
	Platform Section Two
====================================================================

***/

.platform-section-two{
	position:relative;
	padding-top:110px;
	background-color:#19274d;
}

.platform-section-two .sec-title.light .title{
	color:#ffffff;
}

.platform-section-two .buttons-box{
	position:relative;
	margin-bottom:65px;
}

.platform-section-two .buttons-box .theme-btn{
	margin:0px 12px;
}

.platform-section-two .outer-container{
	position:relative;
	text-align:center;
	padding:0px 15px;
	top:2px;
}

/*** 

====================================================================
	Blog Section Four
====================================================================

***/

.blog-section-four{
	position:relative;
	padding:110px 0px 80px;
}

.blog-section-four .inner-container{
	position:relative;
}

.blog-section-four .sec-title .theme-btn{
	margin-top:40px;
	padding:14px 50px;
}

.news-block-four{
	position:relative;
	margin-bottom:30px;
}

.news-block-four .inner-box{
	position:relative;
	padding-top:26px;
	padding:18px;
	border-radius:8px;
	border:2px solid #f6f6ff;
}

.news-block-four .inner-box .image{
	position:relative;
	overflow:hidden;
	border-radius:8px;
	background-color:#1374f6;
}

.news-block-four .inner-box .image img{
	position:relative;
	width:100%;
	display:block;
	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.05,1.05);
}

.news-block-four .inner-box .image .post-date{
	position:absolute;
	right:20px;
	top:20px;
	z-index:1;
	width:65px;
	height:65px;
	color:#1374f6;
	font-size:24px;
	font-weight:700;
	padding-top:12px;
	text-align:center;
	border-radius:50px;
	display:inline-block;
	background-color:#ffffff;
}

.news-block-four .inner-box .image .post-date span{
	font-size:12px;
	color:#19274d;
	display:block;
	text-transform:capitalize;
}

.news-block-four .inner-box .post-info{
	position:absolute;
	top:0px;
	left:60px;
	right:60px;
	padding:13px 18px;
	border-radius:50px;
	display:inline-block;
	z-index:1;
	width:auto;
	background-image: -ms-linear-gradient(left, #007bff 0%, #a1bbff 100%);
	background-image: -moz-linear-gradient(left, #007bff 0%, #a1bbff 100%);
	background-image: -o-linear-gradient(left, #007bff 0%, #a1bbff 100%);
	background-image: -webkit-gradient(linear, left top, right top, color-stop(0, #007bff), color-stop(100, #a1bbff));
	background-image: -webkit-linear-gradient(left, #007bff 0%, #a1bbff 100%);
	background-image: linear-gradient(to right, #007bff 0%, #a1bbff 100%);
}

.news-block-four .inner-box .post-info li{
	position:relative;
	color:#ffffff;
	font-size:16px;
	font-weight:700;
	line-height:1.1em;
	padding-right:10px;
	margin-right:10px;
	display:inline-block;
	border-right:1px solid #ffffff;
}

.news-block-four .inner-box .post-info li:last-child{
	margin-right:0px;
	padding-right:0px;
	border-right:none;
}

.news-block-four .inner-box .lower-content{
	position:relative;
}

.news-block-four .inner-box .lower-content .category-link{
	position:relative;
	margin-left:20px;
	margin-top:-17px;
}

.news-block-four .inner-box .lower-content .category-link li{
	position:relative;
	color:#ffffff;
	font-size:14px;
	padding:8px 20px;
	margin-right:8px;
	border-radius:50px;
	font-weight:700;
	display:inline-block;
	background-color:#1374f6;
}

.news-block-four .inner-box .lower-content h4{
	position:relative;
	font-size:22px;
	line-height:1.5em;
	margin-top:20px;
	font-weight:700;
	padding:0px 8px;
}

.news-block-four .inner-box .lower-content h4 a{
	position:relative;
	color:#19274d;
	-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-four .inner-box .lower-content h4 a:hover{
	color:#1374f6;
}

.news-block-four .inner-box .lower-content .text{
	position:relative;
	color:#19274d;
	font-size:16px;
	line-height:1.8em;
	margin-top:12px;
	padding:0px 8px;
	margin-bottom:15px;
}

/*** 

====================================================================
	Main Footer
====================================================================

***/

.footer-style-two{
	position:relative;
	overflow:hidden;
	padding:150px 0px 0px;
}

.footer-style-two:before{
	position:absolute;
	content:'';
	left:-80px;
	top:35px;
	bottom:-80px;
	width:120%;
	transform:rotate(-3deg);
	background-image: -ms-linear-gradient(left, #004EB7 0%, #1374f6 100%);
	background-image: -moz-linear-gradient(left, #004EB7 0%, #1374f6 100%);
	background-image: -o-linear-gradient(left, #004EB7 0%, #1374f6 100%);
	background-image: -webkit-gradient(linear, left top, right top, color-stop(0, #004EB7), color-stop(100, #1374f6));
	background-image: -webkit-linear-gradient(left, #004EB7 0%, #1374f6 100%);
	background-image: linear-gradient(to right, #004EB7 0%, #1374f6 100%);
}

.footer-style-two .footer-widget{
	position:relative;
	z-index:1;
	margin-bottom:40px;
}

.footer-style-two .widgets-section{
	position:relative;
	padding-bottom:40px;
}

.footer-style-two .footer-widget h4{
	position:relative;
	color:#ffffff;
	line-height:1.2em;
	margin-bottom:30px;
	text-transform:capitalize;
	font-family: 'Gilroy-ExtraBold';
}

.footer-style-two .logo-widget .logo{
	position:relative;
	margin-bottom:15px;
}

.footer-style-two .logo-widget .text{
	position:relative;
	color:#ffffff;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.8em;
	margin-bottom: 25px;
}

.footer-style-two .logo-widget .social-box{
	position:relative;
}

.footer-style-two .logo-widget .social-box li{
	position:relative;
	margin-right:8px;
	display:inline-block;
}

.footer-style-two .logo-widget .social-box li a{
	position:relative;
	color:#ffffff;
	font-size:16px;
	width:50px;
	height:50px;
	line-height:48px;
	text-align:center;
	border-radius:50px;
	display:inline-block;
	border:2px solid rgba(255,255,255,0.15);
	-webkit-transition:all 300ms ease;
	-ms-transition:all 300ms ease;
	-o-transition:all 300ms ease;
	-moz-transition:all 300ms ease;
	transition:all 300ms ease;
}

.footer-style-two .logo-widget .social-box li a:hover{
	background-color:#ffffff;
	border-color:#ffffff;
	color:#1374f6;
}

/* List Link */

.footer-style-two .list-link{
	position:relative;
}

.footer-style-two .list-link li{
	position:relative;
	margin-bottom:18px;
}

.footer-style-two .list-link li a{
	position:relative;
	color:#ffffff;
	font-size:16px;
	-webkit-transition:all 300ms ease;
	-ms-transition:all 300ms ease;
	-o-transition:all 300ms ease;
	-moz-transition:all 300ms ease;
	transition:all 300ms ease;
}

.footer-style-two .list-link li a:hover{
	
}

/*Gallery Widget*/

.footer-style-two .gallery-widget{
	position:relative;
}

.footer-style-two .gallery-widget .images-outer{
	position:relative;
	margin:0px -3px;
}

.footer-style-two .gallery-widget .image-box{
	position:relative;
	float:left;
	width:33.333%;
	padding:0px 6px;
	margin-bottom:12px;
}

.footer-style-two .gallery-widget .image-box img{
	position:relative;
	display:block;
	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;
}

.footer-style-two .gallery-widget .image-box img:hover{
	opacity:0.70;	
}

/* Recent Posts */

.footer-style-two .news-widget{
	position: relative;
}

.footer-style-two .news-widget {
	position: relative;
}

.footer-style-two .news-widget .post{
	position: relative;
	min-height: 70px;
	padding-left: 90px;
	margin-bottom: 20px;
}

.footer-style-two .news-widget .post:last-child{
	margin-bottom: 0;
}

.footer-style-two .news-widget .post .thumb{
	position: absolute;
	left: 0;
	top: 0;
	height: 70px;
	width: 70px;
	overflow: hidden;
}

.footer-style-two .news-widget .post .thumb a{
	display: block;
}

.footer-style-two .news-widget .post .thumb img{
	display: block;
	width: 100%;
	height: auto;
}

.footer-style-two .news-widget .post h6{
	position: relative;
	color: #ffffff;
	line-height: 1.3em;
	font-weight: 700;
	padding-top: 1px;
	font-family: 'Gilroy-ExtraBold';
}

.footer-style-two .news-widget .post h6 a{
	color:#ffffff;
	-webkit-transition: all 300ms ease;
	-moz-transition: all 300ms ease;
	-ms-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	transition: all 300ms ease;
}

.footer-style-two .news-widget .post h6 a:hover{
	
}

.footer-style-two .news-widget .post .post-info{
	position: relative;
	top:-4px;
}

.footer-style-two .news-widget .post .post-info li{
	position: relative;
	font-size:12px;
	margin-right:12px;
	display:inline-block;
	color:rgba(255,255,255,0.40);
}

.footer-style-two .news-widget .post .post-info li .icon{
	position: relative;
	margin-right:6px;
	font-weight:400;
}

.footer-style-two .footer-bottom{
	position:relative;
	padding:18px 0px;
	text-align:center;
	border-top:1px solid rgba(255,255,255,0.10);
}

.footer-style-two .footer-bottom .copyright{
	position:relative;
	color:#ffffff;
	font-size:16px;
}

/*** 

====================================================================
	Page Title
====================================================================

***/

.page-title{
	position:relative;
	padding:190px 0px 190px;
}

.page-title .images-outer{
	position:absolute;
	left:0px;
	top:0px;
	right:0px;
	bottom:0px;
}

.page-title .images-outer .image.one{
	position:absolute;
	left:5%;
	top:40px;
}

.page-title .images-outer .image.two{
	position:absolute;
	left:25%;
	bottom:0%;
}

.page-title .images-outer .image.three{
	position:absolute;
	left:62%;
	top:60px;
}

.page-title .images-outer .image.four{
	position:absolute;
	left:68%;
	bottom:5%;
}

.page-title .images-outer .image.five{
	position:absolute;
	right:2%;
	top:32%;
}

.page-title .auto-container{
	position:relative;
}

.page-title h1{
	position:relative;
	color:#19274d;
	font-size:72px;
	font-weight:600;
	text-align:center;
	line-height:1.2em;
	margin-bottom: 0px;
	text-transform:capitalize;
	font-family: 'Poppins', sans-serif;
}

.page-breadcrumb{
	position:relative;
	margin-top:20px;
	text-align:center;
}

.page-breadcrumb li{
	position:relative;
	display:inline-block;
	margin-right:10px;
	padding-right:15px;
	color:#007bff;
	font-size:16px;
	font-weight:500;
	text-transform:capitalize;
}

.page-breadcrumb li:after{
	position:absolute;
	content: "|";
	right:-2px;
	top:-1px;
	color:#007bff;
	font-size:14px;
	font-weight:700;
	font-family: 'FontAwesome';
}

.page-breadcrumb li:last-child::after{
	display: none;
}

.page-breadcrumb li:last-child{
	padding-right:0px;
	margin-right:0px;
}

.page-breadcrumb li a{
	color:#007bff;
	font-weight:500;
	text-transform: capitalize;
	transition:all 0.3s ease;
	-moz-transition:all 0.3s ease;
	-webkit-transition:all 0.3s ease;
	-ms-transition:all 0.3s ease;
	-o-transition:all 0.3s ease;
}

.page-breadcrumb li a:hover{
	color:#19274d;
}

/*** 

====================================================================
	Services Section
====================================================================

***/

.services-section{
	position:relative;
	padding:110px 0px 90px;
}

.service-block-two{
	position:relative;
	margin-bottom:30px;
}

.service-block-two .inner-box{
	position:relative;
	text-align:center;
	padding:20px 20px;
	border:2px solid #e9efff;
	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;
}

.service-block-two .inner-box:hover{
	border-color:#007bff;
}

.service-block-two .inner-box .content{
	position:relative;
	padding-top:50px;
	padding-bottom:30px;
}

.service-block-two .inner-box .content:before{
	position:absolute;
	content:'';
	left:0px;
	top:0px;
	right:0px;
	bottom:0px;
	background-image: -ms-linear-gradient(top, #F9FBFF 0%, #ffffff 100%);
	background-image: -moz-linear-gradient(top, #F9FBFF 0%, #ffffff 100%);
	background-image: -o-linear-gradient(top, #F9FBFF 0%, #ffffff 100%);
	background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #F9FBFF), color-stop(100, #ffffff));
	background-image: -webkit-linear-gradient(top, #F9FBFF 0%, #ffffff 100%);
	background-image: linear-gradient(to bottom, #F9FBFF 0%, #ffffff 100%);
}

.service-block-two .inner-box .icon-outer{
	position:relative;
	display:inline-block;
}

.service-block-two .inner-box .icon-outer:before{
	position:absolute;
	left:50%;
	top:-10px;
	content:'';
	width:20px;
	height:110px;
	margin-left:-10px;
	border-radius:50px;
	background-image: -ms-linear-gradient(left, #F65052 0%, #fe7d48 100%);
	background-image: -moz-linear-gradient(left, #F65052 0%, #fe7d48 100%);
	background-image: -o-linear-gradient(left, #F65052 0%, #fe7d48 100%);
	background-image: -webkit-gradient(linear, left top, right top, color-stop(0, #F65052), color-stop(100, #fe7d48));
	background-image: -webkit-linear-gradient(left, #F65052 0%, #fe7d48 100%);
	background-image: linear-gradient(to right, #F65052 0%, #fe7d48 100%);
}

.service-block-two .inner-box .icon-outer .icon-box{
	position:relative;
	width:90px;
	height:90px;
	line-height:90px;
	border-radius:50%;
	display:inline-block;
	background-color:#ffffff;
}

.service-block-two .inner-box .icon-outer .icon-box .icon{
	position:relative;
	color:#fa474a;
	font-size:48px;
	background: linear-gradient(to top, #fa474a 0%, #a1bbff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.services-section .service-block-two:first-child .inner-box .icon-outer .icon-box .icon{
	padding-left:10px;
}

.service-block-two .inner-box h2{
	position:relative;
	font-weight:600;
	line-height:1.2em;
	margin-top:35px;
	font-family: 'Poppins', sans-serif;
}

.service-block-two .inner-box h2 a{
	position:relative;
	color:#19274d;
	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;
}

.service-block-two .inner-box h2 a:hover{
	color:#f75251;
}

.service-block-two .inner-box .text{
	position:relative;
	font-weight:400;
	line-height:1.9em;
	margin-top:15px;
	color:#19274d;
	font-size:16px;
	padding:0px 25px;
	margin-bottom:20px;
}

.service-block-two .inner-box .read-more{
	position:relative;
	font-weight:700;
	font-size:16px;
	color:#fa454a;
	background: -webkit-linear-gradient(45deg, #fa454a, #ff9167 80%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/*** 

====================================================================
	About Section Two
====================================================================

***/

.about-section-two{
	position:relative;
	padding:0px 0px 120px;
}

.about-section-two .image-column{
	position:relative;
	margin-bottom:40px;
}

.about-section-two .image-column .inner-column{
	position:relative;
	padding-right:25px;
}

.about-section-two .image-column:before{
	position:absolute;
	content:'';
	left:-25px;
	bottom:-40px;
	right:90px;
	top:35px;
	border-radius:15px;
	background-image: -ms-linear-gradient(left, #007bff 0%, #a1bbff 100%);
	background-image: -moz-linear-gradient(left, #007bff 0%, #a1bbff 100%);
	background-image: -o-linear-gradient(left, #007bff 0%, #a1bbff 100%);
	background-image: -webkit-gradient(linear, left top, right top, color-stop(0, #007bff), color-stop(100, #a1bbff));
	background-image: -webkit-linear-gradient(left, #007bff 0%, #a1bbff 100%);
	background-image: linear-gradient(to right, #007bff 0%, #a1bbff 100%);
}

.about-section-two .image-column .image{
	position:relative;
	display:inline-block;
}

.about-section-two .image-column .image img{
	position:relative;
	border-radius:30px;
}

.about-section-two .content-column{
	position:relative;
	margin-bottom:40px;
}

.about-section-two .content-column .inner-column{
	position:relative;
	padding-top:55px;
	padding-left:20px;
	padding-right:60px;
}

/*** 

====================================================================
	Intro Section Two
====================================================================

***/

.intro-section-two{
	position:relative;
	overflow:hidden;
	padding-top:110px;
	padding-bottom:70px;
}

.intro-section-two .image-layer{
	position:absolute;
	right:-280px;
	top:-100px;
	width:460px;
	height:423px;
	background-repeat:no-repeat;
}

.intro-section-two .auto-container{
	position:relative;
}

.intro-section-two .auto-container:before{
	position:absolute;
	content:'';
	right:270px;
	top:-110px;
	bottom:-120px;
	width:300%;
	border-radius:30px;
	background-color:#f9f8ff;
}

.intro-section-two .content-column{
	position:relative;
	margin-bottom:40px;
}

.intro-section-two .content-column .sec-title h1{
	padding-bottom:0px;
}

.intro-section-two .content-column .sec-title .text{
	margin-top:15px;
}

.intro-section-two .content-column .inner-column{
	position:relative;
}

.intro-section-two .content-column .video-box{
	position:relative;
	width:80px;
	height:80px;
	color:#ffffff;
	font-size:20px;
	text-align:center;
	border-radius:50%;
	line-height: 80px;
	display:inline-block;
	z-index:1;
	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;
	background-image: -ms-linear-gradient(left, #007bff 0%, #a1bbff 100%);
	background-image: -moz-linear-gradient(left, #007bff 0%, #a1bbff 100%);
	background-image: -o-linear-gradient(left, #007bff 0%, #a1bbff 100%);
	background-image: -webkit-gradient(linear, left top, right top, color-stop(0, #007bff), color-stop(100, #a1bbff));
	background-image: -webkit-linear-gradient(left, #007bff 0%, #a1bbff 100%);
	background-image: linear-gradient(to right, #007bff 0%, #a1bbff 100%);
}

.intro-section-two .content-column .video-box .overlay-box span{
	position: absolute;
	width:80px;
	height:80px;
	left:50%;
    top: 50%;
	z-index:99;
	color: #ffffff;
	font-weight:400;
	font-size:16px;
	text-align: center;
	border-radius:10px;
	padding-left:7px;
	display: inline-block;
	margin-top: -40px;
	margin-left:-40px;
	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);
}

.intro-section-two .content-column .video-box .ripple,
.intro-section-two .content-column .video-box .ripple:before,
.intro-section-two .content-column .video-box .ripple:after {
    position: absolute;
    top: 50%;
    left: 50%;
	width:80px;
	height:80px;
	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(250, 70, 74, .4);
    -moz-box-shadow: 0 0 0 0 rgba(250, 70, 74, .4);
    -ms-box-shadow: 0 0 0 0 rgba(250, 70, 74, .4);
    -o-box-shadow: 0 0 0 0 rgba(250, 70, 74, .4);
    box-shadow: 0 0 0 0 rgba(250, 70, 74, .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;
}

.intro-section-two .content-column .video-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;
}

.intro-section-two .content-column .video-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;
}

.intro-section-two .image-column{
	position:relative;
	margin-bottom:40px;
}

.intro-section-two .image-column .inner-column{
	position:relative;
	padding-top:55px;
}

/*** 

====================================================================
	Clients Section Three
====================================================================

***/

.clients-section-three{
	position:relative;
	padding:105px 0px 105px;
}

.clients-section-three .auto-container{
	max-width:1600px;
}

.clients-section-three .sponsors-outer .owl-dots,
.clients-section-three .sponsors-outer .owl-nav{
	position:relative;
	display:none;
}

.clients-section-three .sponsors-outer .image-box{
	position:relative;
	text-align:center;
	margin:0px;
}

.clients-section-three .sponsors-outer .image-box img{
	max-width:100%;
	width:auto;
	opacity:0.2;
	display:inline-block;
	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-three .sponsors-outer .image-box img:hover{
	opacity:1;
	filter: grayscale(0%);
}

/*** 

====================================================================
	Team Page Section
====================================================================

***/

.team-page-section{
	position:relative;
	padding:120px 0px 100px;
}

.team-block-two{
	position:relative;
	margin-bottom:30px;
}

.team-block-two .inner-box{
	position:relative;
	padding:35px 35px;
	border:2px solid #f2f3f6;
}

.team-block-two .inner-box:before{
	position:absolute;
	content:'';
	left:0px;
	bottom:-2px;
	right:0px;
	height:3px;
	opacity:0;
	transform: scale(0.5,1);
	background-color:#fa484b;
	transition:all 500ms ease;
	-moz-transition:all 500ms ease;
	-webkit-transition:all 500ms ease;
	-ms-transition:all 500ms ease;
	-o-transition:all 500ms ease;
}

.team-block-two .inner-box:hover::before{
	opacity:1;
	transform: scale(1,1);
}

.team-block-two .inner-box .content{
	position:relative;
	overflow:hidden;
}

.team-block-two .inner-box .content .circle-one{
	position:absolute;
	left:0px;
	top:0px;
	width:47px;
	height:47px;
	border-radius:50%;
	display:inline-block;
	background-color:#ffe6e5;
}

.team-block-two .inner-box .content .circle-two{
	position:absolute;
	left:25px;
	top:25px;
	width:26px;
	height:26px;
	border-radius:50%;
	display:inline-block;
	background-image: -ms-linear-gradient(left, #007bff 0%, #a1bbff 100%);
    background-image: -moz-linear-gradient(left, #007bff 0%, #a1bbff 100%);
    background-image: -o-linear-gradient(left, #007bff 0%, #a1bbff 100%);
    background-image: -webkit-gradient(linear, left top, right top, color-stop(0, #007bff), color-stop(100, #a1bbff));
    background-image: -webkit-linear-gradient(left, #007bff 0%, #a1bbff 100%);
    background-image: linear-gradient(to right, #007bff 0%, #a1bbff 100%);
}

.team-block-two .inner-box .designation{
	position:relative;
	font-size:16px;
	font-weight:700;
	line-height:1.3em;
	text-align:right;
	margin-bottom:28px;
	    color: #fa454a;
    background: -webkit-linear-gradient(45deg, #fa454a, #ff9167 80%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.team-block-two .inner-box .image{
	position:relative;
	width:145px;
	height:145px;
	margin:0 auto;
	border-radius:50%;
	overflow:hidden;
	margin-bottom:25px;
}

.team-block-two .inner-box h2{
	position:relative;
	font-weight:700;
	line-height:1.1em;
	font-family: 'Roboto', sans-serif;
}

.team-block-two .inner-box h2 a{
	position:relative;
	color:#19274d;
	transition:all 500ms ease;
	-moz-transition:all 500ms ease;
	-webkit-transition:all 500ms ease;
	-ms-transition:all 500ms ease;
	-o-transition:all 500ms ease;
}

.team-block-two .inner-box h2 a:hover{
	color:#fa484b;
}

.team-block-two .inner-box .content .social-outer-box{
	position:absolute;
	right:0px;
	bottom:0px;
	
	transition:all 900ms ease;
	-moz-transition:all 900ms ease;
	-webkit-transition:all 900ms ease;
	-ms-transition:all 900ms ease;
	-o-transition:all 900ms ease;
}

.team-block-two .inner-box .content .social-outer-box .plus{
	position:relative;
	right:0px;
	bottom:0px;
	width:50px;
	z-index:1;
	height:50px;
	color:#ffffff;
	cursor:pointer;
	line-height:50px;
	text-align:center;
	border-radius:50px;
	display:inline-block;
	background-image: -ms-linear-gradient(left, #007bff 0%, #a1bbff 100%);
    background-image: -moz-linear-gradient(left, #007bff 0%, #a1bbff 100%);
    background-image: -o-linear-gradient(left, #007bff 0%, #a1bbff 100%);
    background-image: -webkit-gradient(linear, left top, right top, color-stop(0, #007bff), color-stop(100, #a1bbff));
    background-image: -webkit-linear-gradient(left, #007bff 0%, #a1bbff 100%);
    background-image: linear-gradient(to right, #007bff 0%, #a1bbff 100%);
}

.team-block-two .inner-box .content .social-outer-box .social-boxed{
	position:absolute;
	right:0px;
	bottom:-400px;
	transition:all 900ms ease;
	-moz-transition:all 900ms ease;
	-webkit-transition:all 900ms ease;
	-ms-transition:all 900ms ease;
	-o-transition:all 900ms ease;
}

.team-block-two .inner-box .content .social-outer-box:hover{
	overflow:visible;
}

.team-block-two .inner-box .content .social-outer-box:hover .social-boxed{
	bottom:100%;
	top:auto;
}

.team-block-two .inner-box .content .social-outer-box .social-boxed .social-box{
	position:relative;
}

.team-block-two .inner-box .content .social-outer-box .social-boxed .social-box li{
	position:relative;
	padding-bottom:10px;
}

.team-block-two .inner-box .content .social-outer-box .social-boxed .social-box li a{
	position:relative;
	width:50px;
	height:50px;
	color:#19274d;
	font-size:16px;
	border-radius:50px;
	text-align:center;
	line-height:48px;
	display:inline-block;
	border:2px solid #f2f3f6;
	transition:all 500ms ease;
	-moz-transition:all 500ms ease;
	-webkit-transition:all 500ms ease;
	-ms-transition:all 500ms ease;
	-o-transition:all 500ms ease;
}

.team-block-two .inner-box .content .social-outer-box .social-boxed .social-box li a:hover{
	color:#ffffff;
	border-color:#fb4e49;
	background-color:#fb4e49;
}

/*** 

====================================================================
	Featured Section Seven
====================================================================

***/

.featured-section-seven{
	position:relative;
	padding:110px 0px 80px;
	background-color:#f9f8ff;
}

.feature-block-seven{
	position:relative;
	margin-bottom:30px;
}

.feature-block-seven .inner-box{
	position:relative;
	padding:45px 30px;
	border-radius:5px;
	background-color:#ffffff;
}

.feature-block-seven .inner-box .number{
	position:absolute;
	right:-10px;
	top:-16px;
	color:#f9f8ff;
	font-size:120px;
	line-height:1em;
	font-weight:600;
	font-family: 'Poppins', sans-serif;
}

.feature-block-seven .inner-box .icon-box{
	position:relative;
}

.feature-block-seven .inner-box .icon-box .icon{
	position:relative;
	color: #fa474a;
    line-height: 1em;
	font-size:30px;
    background: linear-gradient(to top, #fa474a 0%, #a1bbff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.feature-block-seven .inner-box h5{
	position:relative;
	color:#19274d;
	font-weight:600;
	line-height:1.3em;
	margin-top:18px;
	font-family: 'Poppins', sans-serif;
}

.feature-block-seven .inner-box .text{
	position:relative;
	color:#19274d;
	font-weight:400;
	line-height:1.8em;
	margin-top:12px;
}

/*** 

====================================================================
	Skill Section
====================================================================

***/

.skill-section{
	position:relative;
	padding:140px 0px 120px;
}

.skill-section .content-column{
	position:relative;
}

.skill-section .content-column .inner-column{
	position:relative;
	padding-right:60px;
}

/* Skills Section */

.skills .skill-item{
	position:relative;
	margin-bottom:30px;
}

.skills .skill-item:last-child{
	margin-bottom:0px;
}

.skills .skill-item .skill-bar{
	position:relative;
	width:100%;
	padding:6px;
	border:2px solid #ffefeb;
}

.skills .skill-item .skill-bar .bar-inner{
	position:relative;
	width:100%;
	overflow:hidden;
	height:5px;
	background:#cccccc;
}

.skills.style-two .skill-item .skill-bar .bar-inner{
	background-color:#eeeeee;
}

.skills .skill-item .skill-bar .bar-inner .bar{
	position:absolute;
	left:0px;
	top:0px;
	height:5px;
	width:0px;
	background-image: -ms-linear-gradient(left, #007bff 0%, #a1bbff 100%);
    background-image: -moz-linear-gradient(left, #007bff 0%, #a1bbff 100%);
    background-image: -o-linear-gradient(left, #007bff 0%, #a1bbff 100%);
    background-image: -webkit-gradient(linear, left top, right top, color-stop(0, #007bff), color-stop(100, #a1bbff));
    background-image: -webkit-linear-gradient(left, #007bff 0%, #a1bbff 100%);
    background-image: linear-gradient(to right, #007bff 0%, #a1bbff 100%);
	-webkit-transition:all 2000ms ease;
	-ms-transition:all 2000ms ease;
	-o-transition:all 2000ms ease;
	-moz-transition:all 2000ms ease;
	transition:all 2000ms ease;
}

.skills .skill-item .skill-header{
	position:relative;
	margin-bottom:12px;
}

.skills .skill-item .skill-header .skill-title{
	float:left;
	color:#19274d;
	font-size:18px;
	font-weight:600;
	line-height:1.4em;
	text-transform:capitalize;
	font-family: 'Poppins', sans-serif;
}

.skills .skill-item .skill-header .skill-percentage{
	position:relative;
	float:right;
	font-weight:600;
	font-size:18px;
	color: #fa454a;
	text-transform:uppercase;
	font-family: 'Poppins', sans-serif;
}

.skill-section .images-column{
	position:relative;
}

.skill-section .images-column .inner-column{
	position:relative;
	padding-right:20px;
	padding-left:50px;
	padding-top:90px;
}

.skill-section .images-column .image{
	position:relative;
}

.skill-section .images-column .image:before{
	position:absolute;
	content:'';
	left:-30px;
	bottom:-30px;
	width: 0;
    height: 0;
    border-bottom: 150px solid #fa4a49;
    border-right: 150px solid transparent;
}

.skill-section .images-column .image img{
	position:relative;
	
	display:block;
}

.skill-section .images-column .image-one{
	position:absolute;
	left:-30px;
	top:0px;
}

.skill-section .images-column .image-two{
	position:absolute;
	right:-85px;
	bottom:-140px;
}

/*** 

====================================================================
	Faq's Page Section
====================================================================

***/

.faq-page-section{
	position:relative;
	padding:100px 0px 100px;
}

.faq-page-section .inner-container{
	position:relative;
	max-width:780px;
	margin:0 auto;
}

/*** 

====================================================================
	Accordion Style
====================================================================

***/

.accordion-box{
	position:relative;
}

.accordion-box .block{
	position: relative;
    margin-bottom:0px;
}

.accordion-box .block.active-block{
	
}

.accordion-box .block .acc-btn{
	position:relative;
	font-size:18px;
	cursor:pointer;
	line-height:34px;
	color:#19274d;
	font-weight:700;
	background:#ffffff;
	padding:19px 55px 17px 0px;
	transition:all 500ms ease;
	-ms-transition:all 500ms ease;
	-o-transition:all 500ms ease;
	-moz-transition:all 500ms ease;
	-webkit-transition:all 500ms ease;
	border-bottom:2px solid #e7edff;
}

.accordion-box .block .acc-btn.active{
	
}

.accordion-box .block .icon-outer{
	position:absolute;
	right:0px;
	top:18px;
	width:36px;
	height:36px;
	font-size:20px;
	color: #ffffff;
	border-radius:0px 8px 8px 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;
}

.accordion-box .block .icon-outer .icon{
    position: absolute;
	right: 0px;
	width:36px;
	height:36px;
	color:#ffffff;
    font-size: 14px;
    text-align: center;
	line-height:36px;
	border-radius:50%;
	background-image: -ms-linear-gradient(left, #007bff 0%, #a1bbff 100%);
    background-image: -moz-linear-gradient(left, #007bff 0%, #a1bbff 100%);
    background-image: -o-linear-gradient(left, #007bff 0%, #a1bbff 100%);
    background-image: -webkit-gradient(linear, left top, right top, color-stop(0, #007bff), color-stop(100, #a1bbff));
    background-image: -webkit-linear-gradient(left, #007bff 0%, #a1bbff 100%);
    background-image: linear-gradient(to right, #007bff 0%, #a1bbff 100%);
}

.accordion-box .block .icon-outer .icon-plus{
	opacity:1;
}

.accordion-box .block .icon-outer .icon-minus{
	opacity:0;
}

.accordion-box .block .acc-btn.active .icon-outer .icon-minus{
	opacity:1;
	background-color:#1c17a0;
}

.accordion-box .block .acc-btn.active .icon-outer .icon-plus{
	opacity:0;
}

.accordion-box .block .acc-content{
	position:relative;
	display:none;
}

.accordion-box .block .acc-content .content-text{
	padding-bottom:6px;
}

.accordion-box .block .acc-content.current{
	display:block;	
}

.accordion-box .block .content{
	position:relative;
	font-size:16px;
	color:#ffffff;
	line-height:1.8em;
	padding:35px 35px 30px 30px;
	box-shadow:0px 0px 10px rgba(250,70,74,0.20);
	background-image: -ms-linear-gradient(left, #007bff 0%, #a1bbff 100%);
    background-image: -moz-linear-gradient(left, #007bff 0%, #a1bbff 100%);
    background-image: -o-linear-gradient(left, #007bff 0%, #a1bbff 100%);
    background-image: -webkit-gradient(linear, left top, right top, color-stop(0, #007bff), color-stop(100, #a1bbff));
    background-image: -webkit-linear-gradient(left, #007bff 0%, #a1bbff 100%);
    background-image: linear-gradient(to right, #007bff 0%, #a1bbff 100%);
}

.accordion-box .block .content .text{
	line-height:1.9em;
	font-size:16px;	
	color:#ffffff;
	font-weight:400;
}

.accordion-box .block .content p:last-child{
	margin-bottom:0px;	
}

.accordion-box .block .content .text span{
	font-weight:600;
}

/*** 

====================================================================
	Updates Section
====================================================================

***/

.updates-section{
	position:relative;
	padding:110px 0px 70px;
	background-size:cover;
}

.updates-section:before{
	position:absolute;
	content:'';
	left:0px;
	top:0px;
	right:0px;
	bottom:0px;
	background-color:rgba(103,112,138,0.70);
}

.updates-section .subscribe-column{
	position:relative;
	margin-bottom:40px;
}

.updates-section .subscribe-column .inner-column{
	position:relative;
}

.updates-section .subscribe-column .title{
	position:relative;
	color:#ffffff;
	font-size:18px;
	font-weight:700;
	line-height:1.3em;
}

.updates-section .subscribe-column h1{
	position:relative;
	color:#ffffff;
	font-size:60px;
	font-weight:700;
	line-height:1.1em;
	margin-top:25px;
	margin-bottom:42px;
}

/* Subscribe Form */

.subscribe-form-six{
	position:relative;
	width:100%;
	margin-bottom:0px;
}

.subscribe-form-six .form-group{
    position: relative;
    display: block;
    z-index:1;
	margin-bottom: 0px;
}

.subscribe-form-six .form-group input[type="text"],
.subscribe-form-six .form-group input[type="tel"],
.subscribe-form-six .form-group input[type="email"],
.subscribe-form-six .form-group textarea {
    position:relative;
	display:block;
	width:100%;
	height:80px;
	font-size:16px;
	color:#ffffff;
	line-height:38px;
	font-weight:400;
	border-radius:50px;
	background:none;
	padding:10px 20px 10px 40px;
	transition:all 500ms ease;
	-webkit-transition:all 500ms ease;
	-ms-transition:all 500ms ease;
	-o-transition:all 500ms ease;
	border:1px solid rgba(255,255,255,0.50);
}

.subscribe-form-six .form-group input[type="email"]:focus{
	
}

.subscribe-form-six .form-group textarea::-webkit-input-placeholder,
.subscribe-form-six .form-group input::-webkit-input-placeholder{
	color:#ffffff;
}

.subscribe-form-six .form-group .theme-btn{
	position: absolute;
	top: 15px;
	right: 15px;
	cursor:pointer;
}

.updates-section .info-column{
	position:relative;
	margin-bottom:40px;
}

.updates-section .info-column .inner-column{
	position:relative;
}

.updates-section .info-column .info-block{
	position:relative;
}

.updates-section .info-column .info-block .inner-box{
	position:relative;
	text-align:center;
}

.updates-section .info-column .info-block .inner-box .icon-box{
	position:relative;
	width:120px;
	height:120px;
	line-height:140px;
	text-align:center;
	border-radius:50%;
	margin-bottom:30px;
	display:inline-block;
	background-color:#ffffff;
}

.updates-section .info-column .info-block .inner-box .icon-box .icon{
	position:relative;
	font-size:44px;
	background: -webkit-linear-gradient(-45deg, #007bff, #a1bbff 80%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.updates-section .info-column .info-block h2{
	position:relative;
	color:#ffffff;
	font-weight:700;
	line-height:1.3em;
	margin-bottom:20px;
}

.updates-section .info-column .info-block .phone{
	position:relative;
}

.updates-section .info-column .info-block .phone a{
	position:relative;
	color:#ffffff;
	font-weight:500;
	font-size:16px;
	margin-bottom:8px;
	display:block;
}

.updates-section .info-column .info-block .email{
	position:relative;
}

.updates-section .info-column .info-block .email a{
	position:relative;
	color:#ffffff;
	font-weight:500;
	font-size:16px;
	margin-bottom:8px;
	display:block;
}

/*** 

====================================================================
	Process Page Section
====================================================================

***/

.process-page-section{
	position:relative;
	padding-top:120px;
	padding-bottom:40px;
}

.process-block-two{
	position:relative;
	margin-bottom:40px;
}

.process-block-two .inner-box{
	position:relative;
}

.process-block-two .inner-box .image-column{
	position:relative;
	margin-bottom:40px;
}

.process-block-two .inner-box .image-column .inner-column{
	position:relative;
	padding-right:40px;
}

.process-block-two .inner-box .image-column .image{
	position:relative;
}

.process-block-two .inner-box .image-column .image img{
	position:relative;
	width:100%;
	display:block;
}

.process-block-two .inner-box .content-column{
	position:relative;
	margin-bottom:40px;
}

.process-block-two .inner-box .content-column .inner-column{
	position:relative;
	padding-top:30px;
}

.process-block-two .inner-box .content-column .icon-box{
	position:relative;
	width:80px;
	height:80px;
	color:#ffffff;
	font-size:30px;
	line-height:80px;
	border-radius:50%;
	text-align:center;
	box-shadow:0px 10px 10px rgba(252,93,71,0.10);
	background-image: -ms-linear-gradient(left, #007bff 0%, #a1bbff 100%);
    background-image: -moz-linear-gradient(left, #007bff 0%, #a1bbff 100%);
    background-image: -o-linear-gradient(left, #007bff 0%, #a1bbff 100%);
    background-image: -webkit-gradient(linear, left top, right top, color-stop(0, #007bff), color-stop(100, #a1bbff));
    background-image: -webkit-linear-gradient(left, #007bff 0%, #a1bbff 100%);
    background-image: linear-gradient(to right, #007bff 0%, #a1bbff 100%);
}

.process-block-two .inner-box .content-column h1{
	position:relative;
	color:#19274d;
	font-weight:600;
	line-height:1.1em;
	font-size:60px;
	margin-top:30px;
	font-family: 'Poppins', sans-serif;
}

.process-block-two .inner-box .content-column .text{
	position:relative;
	color:#19274d;
	font-weight:400;
	line-height:1.8em;
	font-size:18px;
	margin-top:30px;
	margin-bottom:30px;
}

.process-block-two .inner-box .content-column .text span{
	position:relative;
	font-weight:600;
}

/* Process Block Three */

.process-block-three{
	position:relative;
	margin-bottom:40px;
}

.process-block-three .inner-box{
	position:relative;
}

.process-block-three .inner-box .image-column{
	position:relative;
	margin-bottom:40px;
}

.process-block-three .inner-box .image-column .inner-column{
	position:relative;
	padding-left:40px;
}

.process-block-three .inner-box .image-column .image{
	position:relative;
}

.process-block-three .inner-box .image-column .image img{
	position:relative;
	width:100%;
	display:block;
}

.process-block-three .inner-box .content-column{
	position:relative;
	margin-bottom:40px;
}

.process-block-three .inner-box .content-column .inner-column{
	position:relative;
	padding-top:30px;
	padding-right:30px;
}

.process-block-three .inner-box .content-column .icon-box{
	position:relative;
	width:80px;
	height:80px;
	color:#ffffff;
	font-size:30px;
	line-height:80px;
	border-radius:50%;
	text-align:center;
	box-shadow:0px 10px 10px rgba(25,23,191,0.10);
	background-image: -ms-linear-gradient(left, #1917BF 0%, #46cff8 100%);
	background-image: -moz-linear-gradient(left, #1917BF 0%, #46cff8 100%);
	background-image: -o-linear-gradient(left, #1917BF 0%, #46cff8 100%);
	background-image: -webkit-gradient(linear, left top, right top, color-stop(0, #1917BF), color-stop(100, #46cff8));
	background-image: -webkit-linear-gradient(left, #1917BF 0%, #46cff8 100%);
	background-image: linear-gradient(to right, #1917BF 0%, #46cff8 100%);
}

.process-block-three .inner-box .content-column h1{
	position:relative;
	color:#19274d;
	font-weight:600;
	line-height:1.1em;
	font-size:60px;
	margin-top:30px;
	font-family: 'Poppins', sans-serif;
}

.process-block-three .inner-box .content-column .text{
	position:relative;
	color:#19274d;
	font-weight:400;
	line-height:1.8em;
	font-size:18px;
	margin-top:30px;
	margin-bottom:50px;
}

.process-block-three .inner-box .content-column .text span{
	position:relative;
	font-weight:600;
}

.process-block-three .inner-box .content-column .app-options{
	position:relative;
}

.process-block-three .inner-box .content-column .app-options .app-block{
	position:relative;
	width:120px;
	height:120px;
	float:left;
	margin-right:20px;
	padding-top:24px;
	text-align:center;
	border:2px solid #f1faff;
	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;
}

.process-block-three .inner-box .content-column .app-block .overlay-link{
	position:absolute;
	left:0px;
	top:0px;
	right:0px;
	bottom:0px;
	z-index:1;
}

.process-block-three .inner-box .content-column .app-options .app-block .icon{
	position:relative;
	font-size:36px;
	color: #1b1fc2;
    line-height: 1em;
    background: -webkit-linear-gradient(-45deg, #1b1fc2, #44c6f5 80%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.process-block-three .inner-box .content-column .app-options .app-block h6{
	position:relative;
	color:#19274d;
	font-size:14px;
	font-weight:700;
	margin-top:5px;
}

.process-block-three .inner-box .content-column .app-options .app-block:last-child{
	margin-right:0px;
}

.process-block-three .inner-box .content-column .app-options .app-block:hover{
	border-color:#2548ce;
}

/* Process Block Four */

.process-block-four{
	position:relative;
	margin-bottom:40px;
}

.process-block-four .inner-box{
	position:relative;
}

.process-block-four .inner-box .image-column{
	position:relative;
	margin-bottom:40px;
}

.process-block-four .inner-box .image-column .inner-column{
	position:relative;
	padding-right:40px;
}

.process-block-four .inner-box .image-column .image{
	position:relative;
}

.process-block-four .inner-box .image-column .image img{
	position:relative;
	width:100%;
	display:block;
}

.process-block-four .inner-box .content-column{
	position:relative;
	margin-bottom:40px;
}

.process-block-four .inner-box .content-column .inner-column{
	position:relative;
	padding-top:30px;
}

.process-block-four .inner-box .content-column .icon-box{
	position:relative;
	width:80px;
	height:80px;
	color:#ffffff;
	font-size:30px;
	line-height:80px;
	border-radius:50%;
	text-align:center;
	box-shadow:0px 10px 10px rgba(252,93,71,0.10);
	background-image: -ms-linear-gradient(left, #39CB6E 0%, #6ad831 100%);
	background-image: -moz-linear-gradient(left, #39CB6E 0%, #6ad831 100%);
	background-image: -o-linear-gradient(left, #39CB6E 0%, #6ad831 100%);
	background-image: -webkit-gradient(linear, left top, right top, color-stop(0, #39CB6E), color-stop(100, #6ad831));
	background-image: -webkit-linear-gradient(left, #39CB6E 0%, #6ad831 100%);
	background-image: linear-gradient(to right, #39CB6E 0%, #6ad831 100%);
}

.process-block-four .inner-box .content-column h1{
	position:relative;
	color:#19274d;
	font-weight:600;
	line-height:1.1em;
	font-size:60px;
	margin-top:30px;
	font-family: 'Poppins', sans-serif;
}

.process-block-four .inner-box .content-column .text{
	position:relative;
	color:#19274d;
	font-weight:400;
	line-height:1.8em;
	font-size:18px;
	margin-top:30px;
	margin-bottom:30px;
}

.process-block-four .inner-box .content-column .text span{
	position:relative;
	font-weight:600;
}




.process-block-four .inner-box .content-column .row{
	margin:0px -2px;
}

.process-block-four .inner-box .content-column .number-block-two{
	padding:0px 2px;
}

.process-block-four .inner-box .content-column .number-block-two:first-child{
	z-index:1;
}

/* Number Block */

.number-block-two{
	position:relative;
}

.number-block-two .block-inner{
	position:relative;
	padding:45px 35px;
	box-shadow:10px 0px 20px rgba(70,206,93,0.07);
}

.number-block-two .block-inner .icon{
	position:absolute;
	right:0px;
	top:0px;
}

.number-block-two .block-inner .number{
	position:relative;
	font-size:80px;
	font-weight:600;
	line-height:1em;
	color: #37ca6f;
	font-family: 'Poppins', sans-serif;
    background: linear-gradient(to right, #37ca6f 0%, #67d734 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.number-block-two .block-inner h4{
	position:relative;
	color:#19274d;
	font-weight:600;
	line-height:1.4em;
	margin-top:15px;
	font-family: 'Poppins', sans-serif;
}

.number-block-two .block-inner .block-text{
	position:relative;
	color:#19274d;
	font-size:14px;
	line-height:1.8em;
	margin-top:14px;
}

/*** 

====================================================================
	Works Section
====================================================================

***/

.works-section{
	position:relative;
	padding:110px 0px 70px;
	background-color:#f2f5ff;
}

.work-block{
	position:relative;
	margin-bottom:30px;
}

.work-block .inner-box{
	position:relative;
	text-align:center;
}

.work-block .inner-box .icon-box{
	position:relative;
	width:120px;
	height:120px;
	margin:0 auto;
	margin-bottom:30px;
	background-color:#ffffff;
}

.work-block .inner-box .icon-box .check{
	position:absolute;
	right:-20px;
	top:-20px;
	width:40px;
	height:40px;
	color:#ffffff;
	line-height:40px;
	display:inline-block;
	box-shadow: 0px 10px 10px rgba(252,93,71,0.10);
    background-image: -ms-linear-gradient(left, #007bff 0%, #a1bbff 100%);
    background-image: -moz-linear-gradient(left, #007bff 0%, #a1bbff 100%);
    background-image: -o-linear-gradient(left, #007bff 0%, #a1bbff 100%);
    background-image: -webkit-gradient(linear, left top, right top, color-stop(0, #007bff), color-stop(100, #a1bbff));
    background-image: -webkit-linear-gradient(left, #007bff 0%, #a1bbff 100%);
    background-image: linear-gradient(to right, #007bff 0%, #a1bbff 100%);
}

.work-block .inner-box .icon-box .icon{
	position:relative;
	width:120px;
	height:120px;
	color: #fa474a;
    line-height: 120px;
	font-size:66px;
    background: -webkit-linear-gradient(-45deg, #fa474a, #ff7943 80%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
	display:inline-block;
}

.work-block .inner-box h3{
	position:relative;
	color:#19274d;
	font-weight:600;
	margin-bottom:12px;
	font-family: 'Poppins', sans-serif;
}

.work-block .inner-box h3 a{
	position:relative;
	color:#19274d;
	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;
}

.work-block .inner-box h3 a:hover{
	color:#fb4b49;
}

.work-block .inner-box .text{
	position:relative;
	color:#19274d;
	font-size:18px;
	line-height:1.8em;
	padding:0px 25px;
	margin-bottom:28px;
}

.work-block .inner-box .arrow{
	position:relative;
	width:50px;
	height:50px;
	color:#ff7644;
	font-size:18px;
	line-height:50px;
	border-radius:50%;
	display:inline-block;
	background-color:#ffffff;
	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;
}

.work-block .inner-box:hover .arrow{
	color:#ffffff;
	background-color:#fb4b49;
}

/*** 

====================================================================
	Services Page Section
====================================================================

***/

.service-page-section{
	position:relative;
	padding:110px 0px 70px;
}

.service-page-section .video-column{
	position:relative;
	margin-bottom:40px;
}

.service-page-section .video-column .inner-column{
	position:relative;
	padding-top:75px;
	padding-right:40px;
}

.service-page-section .content-column{
	position:relative;
	margin-bottom:40px;
}

.service-page-section .content-column .sec-title{
	margin-bottom:0px;
}

.service-page-section .content-column .inner-column{
	position:relative;
}

.service-page-section .content-column .row{
	margin:0px 0px;
}

.service-page-section .content-column .feature-block-eight{
	padding:0px 0px;
	float:left;
}

.feature-block-eight{
	position:relative;
}

.feature-block-eight .inner-box{
	position:relative;
	padding:35px 28px;
	overflow:hidden;
	box-shadow:0px 10px 40px #fafcfe;
}

.feature-block-eight .inner-box .number{
	position:absolute;
	right:-10px;
	bottom:-20px;
	color:#fafcfe;
	font-weight:700;
	font-size:140px;
	line-height:1em;
}

.feature-block-eight .inner-box .upper-box{
	position:relative;
	padding-top:8px;
	padding-left:62px;
}

.feature-block-eight .inner-box .upper-box .icon{
	position:absolute;
	left:0px;
	top:0px;
}

.feature-block-eight .inner-box .upper-box h4{
	position:relative;
	color:#19274d;
	font-weight:500;
	line-height:1.3em;
}

.feature-block-eight .inner-box .text{
	position:relative;
	color:#19274d;
	font-size:16px;
	line-height:1.8em;
	margin-top:28px;
	z-index:1;
}

/*** 

====================================================================
	Service Page Section Two
====================================================================

***/

.service-page-section-two{
	position:relative;
	padding:160px 0px 60px;
}

.service-block-three{
	position:relative;
	margin-bottom:75px;
}

.service-block-three .inner-box{
	position:relative;
	text-align:center;
	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;
}

.service-block-three .inner-box .image{
	position:relative;
	background-color:#007bff;
}

.service-block-three .inner-box .image .icon-box{
	position:absolute;
	z-index:1;
	right:20px;
	top:-40px;
	width:80px;
	height:80px;
	color:#ffffff;
	font-size:32px;
	line-height:80px;
	border-radius:50px;
	box-shadow: 0px 10px 10px rgba(252,93,71,0.10);
    background-image: -ms-linear-gradient(left, #007bff 0%, #a1bbff 100%);
    background-image: -moz-linear-gradient(left, #007bff 0%, #a1bbff 100%);
    background-image: -o-linear-gradient(left, #007bff 0%, #a1bbff 100%);
    background-image: -webkit-gradient(linear, left top, right top, color-stop(0, #007bff), color-stop(100, #a1bbff));
    background-image: -webkit-linear-gradient(left, #007bff 0%, #a1bbff 100%);
    background-image: linear-gradient(to right, #007bff 0%, #a1bbff 100%);
}

.service-block-three .inner-box .image img{
	position:relative;
	width:100%;
	display: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;
}

.service-block-three .inner-box:hover .image img{
	opacity:0.5;
}

.service-block-three .inner-box .lower-content{
	position:relative;
	margin-left:20px;
	margin-right:20px;
	padding:30px 15px;
	margin-top:-60px;
	background-color:#ffffff;
	box-shadow:0px 0px 15px rgba(250,83,86,0.10);
}

.service-block-three .inner-box .lower-content:before{
	position:absolute;
	content:'';
	left:0px;
	top:0px;
	width:4px;
	bottom:0px;
	transform:scale(1,0.32);
	background-color:#fd6246;
	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;
}

.service-block-three .inner-box .lower-content:after{
	position:absolute;
	content:'';
	right:0px;
	top:0px;
	width:4px;
	bottom:0px;
	transform:scale(1,0.32);
	background-color:#fd6246;
	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;
}

.service-block-three .inner-box:hover .lower-content:before,
.service-block-three .inner-box:hover .lower-content:after{
	transform:scale(1,0.7);
}

.service-block-three .inner-box .lower-content h4{
	position:relative;
	font-weight:600;
	line-height:1.3em;
}

.service-block-three .inner-box .lower-content h4 a{
	position:relative;
	color:#19274d;
	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;
}

.service-block-three .inner-box .lower-content h4 a:hover{
	color:#007bff;
}

.service-block-three .inner-box .lower-content .text{
	position:relative;
	font-weight:400;
	color:#19274d;
	font-size:16px;
	line-height:1.6em;
	margin-top:8px;
}

/*** 

====================================================================
	Service Detail Section
====================================================================

***/

.service-detail-section{
	position:relative;
	padding:110px 0px 120px;
}

.service-detail-section .inner-container{
	position:relative;
}

.service-detail-section .image{
	position:relative;
	margin-bottom:50px;
}

.service-detail-section .image img{
	position:relative;
	width:100%;
	display:block;
}

.service-detail-section .service-info-boxed{
	position:relative;
	margin-left:70px;
	margin-right:70px;
}

.service-detail-section .service-info-boxed .box-inner{
	position:relative;
	z-index:1;
	margin-bottom:-75px;
	padding:42px 70px;
	border-radius:12px;
	box-shadow:0px 0px 15px rgba(250,70,74,0.15);
	background-image: -ms-linear-gradient(left, #007bff 0%, #a1bbff 100%);
    background-image: -moz-linear-gradient(left, #007bff 0%, #a1bbff 100%);
    background-image: -o-linear-gradient(left, #007bff 0%, #a1bbff 100%);
    background-image: -webkit-gradient(linear, left top, right top, color-stop(0, #007bff), color-stop(100, #a1bbff));
    background-image: -webkit-linear-gradient(left, #007bff 0%, #a1bbff 100%);
    background-image: linear-gradient(to right, #007bff 0%, #a1bbff 100%);
}

.service-detail-section .service-info-boxed .arrow{
	position:absolute;
	right:-25px;
	top:50%;
	width:55px;
	height:55px;
	color:#fa454a;
	font-size:24px;
	line-height:55px;
	margin-top:-28px;
	text-align:center;
	border-radius:50px;
	display:inline-block;
	background-color:#ffffff;
	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;
	box-shadow:0px 0px 10px rgba(250,70,74,0.15);
}

.service-detail-section .service-info-boxed .arrow:hover{
	background-color:#fa474a;
	color:#ffffff;
}

.service-detail-section .service-info-boxed h4{
	position:relative;
	color:#ffffff;
	font-weight:600;
	line-height:1.3em;
	font-family: 'Poppins', sans-serif;
}

.service-detail-section .two-column{
	position:relative;
	margin-top:40px;
}

.service-detail-section .service-info-boxed .text{
	position:relative;
	color:#ffffff;
	font-size:16px;
	margin-top:8px;
	line-height:1.6em;
}

.service-detail-section .inner-container p{
	position:relative;
	color:#19274d;
	font-size:18px;
	line-height:1.7em;
	margin-bottom:20px;
}

.service-detail-section .new-posts{
	position:relative;
	margin-top:60px;
}

.service-detail-section .new-posts .grid-icon{
	position:absolute;
	left:50%;
	width:80px;
	height:80px;
	color:#ffffff;
	line-height:86px;
	text-align:center;
	margin-left:-40px;
	border-radius:50px;
	font-size:22px;
	box-shadow: 0px 0px 15px rgba(250,70,74,0.15);
    background-image: -ms-linear-gradient(left, #007bff 0%, #a1bbff 100%);
    background-image: -moz-linear-gradient(left, #007bff 0%, #a1bbff 100%);
    background-image: -o-linear-gradient(left, #007bff 0%, #a1bbff 100%);
    background-image: -webkit-gradient(linear, left top, right top, color-stop(0, #007bff), color-stop(100, #a1bbff));
    background-image: -webkit-linear-gradient(left, #007bff 0%, #a1bbff 100%);
    background-image: linear-gradient(to right, #007bff 0%, #a1bbff 100%);
}

.service-detail-section .new-posts .title{
	position:relative;
	color: #007bff;
	font-size:16px;
	font-weight:700;
    background: linear-gradient(to right, #007bff 0%, #a1bbff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.service-detail-section .new-posts h4{
	position:relative;
	color:#19274d;
	font-weight:600;
	margin-top:10px;
	font-family: 'Poppins', sans-serif;
}

.service-detail-section .new-posts h4 a{
	position:relative;
	color:#19274d;
}

.service-detail-section .new-posts .right-text{
	text-align:right;
}

/*** 

====================================================================
	Portfolio Page Section
====================================================================

***/

.portfolio-page-section{
	position:relative;
	padding:110px 0px 120px;
}

.portfolio-page-section .btn-box{
	margin-top:10px;
}

/* Gallery Item */

.gallery-block{
	position:relative;
	margin-bottom:30px;
}

.gallery-block .inner-box{
	position:relative;
	width:100%;
}

.gallery-block .image-box{
	position:relative;
	display:block;
	margin:0px;
	overflow:hidden;
	border-radius:20px;
}

.gallery-block .image-box img{
	position:relative;
	display:block;
	width:100%;
}

.gallery-block .overlay-box{
	position:absolute;
	left:0px;
	top:0px;
	width:100%;
	height:100%;
	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: rotateY(-180deg);
    -webkit-transform: rotateY(-180deg);
    -ms-transform: rotateY(-180deg);
    -o-transform: rotateY(-180deg);
	transform: rotateY(-180deg);
}

.gallery-block .overlay-box:before{
	position:absolute;
	content:'';
	left:0px;
	top:0px;
	width:100%;
	height:100%;
	opacity:0.8;
	background-image: -ms-linear-gradient(left, #007bff 0%, #a1bbff 100%);
    background-image: -moz-linear-gradient(left, #007bff 0%, #a1bbff 100%);
    background-image: -o-linear-gradient(left, #007bff 0%, #a1bbff 100%);
    background-image: -webkit-gradient(linear, left top, right top, color-stop(0, #007bff), color-stop(100, #a1bbff));
    background-image: -webkit-linear-gradient(left, #007bff 0%, #a1bbff 100%);
    background-image: linear-gradient(to right, #007bff 0%, #a1bbff 100%);
}

.gallery-block .inner-box:hover .overlay-box{
	opacity:1;
	-moz-transform: rotateY(0deg);
    -webkit-transform: rotateY(0deg);
    -ms-transform: rotateY(0deg);
    -o-transform: rotateY(0deg);
    transform: rotateY(0deg);
    visibility: visible;
}

.gallery-block .overlay-inner{
	position:absolute;
	left:0px;
	top:0px;
	width:100%;
	height:100%;
	display:table;
	vertical-align:middle;
	padding:10px 0px;
}

.gallery-block .overlay-inner .content{
	position:relative;
	display:table-cell;
	vertical-align:middle;
}

.gallery-block .overlay-inner .link{
	position:relative;
	width:50px;
	height:50px;
	font-size:20px;
	color:#fb4b49;
	line-height:50px;
	margin:0px 3px;
	font-weight:600;
	text-align:center;
	border-radius:50px;
	display:inline-block;
	background-color:#ffffff;
	transition:all 300ms ease;
	-webkit-transition:all 300ms ease;
	-ms-transition:all 300ms ease;
	-o-transition:all 300ms ease;
}

.gallery-block .overlay-inner .link .icon{
	position:relative;
	z-index:1;
}

.gallery-block .overlay-inner .link:hover{
	box-shadow:inset 0 0 10px rgba(0,0,0,0.90);
}

/*** 

====================================================================
	Contact Page Section
====================================================================

***/

.contact-page-section{
	position:relative;
	padding:110px 0px 80px;
}

.contact-page-section .info-column{
	position:relative;
	margin-bottom:40px;
}

.contact-page-section .info-column .inner-column{
	position:relative;
	padding-right:70px;
}

.contact-page-section .info-column .sec-title .text{
	margin-top:5px;
}

.contact-page-section .info-column .contact-info{
	position:relative;
}

.contact-page-section .info-column .contact-info li{
	position:relative;
	color:#19274d;
	font-weight:600;
	font-size:24px;
	padding-left:110px;
	min-height:80px;
	padding-top:8px;
	margin-bottom:22px;
	line-height:1.4em;
}

.contact-page-section .info-column .contact-info li .icon{
	position:absolute;
	left:0px;
	top:0px;
	width:80px;
	height:80px;
	border-radius:50%;
	background-color:#ffffff;
	box-shadow:0px 10px 10px rgba(28,158,225,0.10);
}

.contact-page-section .info-column .contact-info li i{
	position:relative;
	color:#7da3ac;
	font-size:14px;
	font-weight:700;
	font-style:normal;
	display:block;
	margin-bottom:0px;
}

.contact-page-section .info-column .contact-info li:last-child{
	margin-bottom:0px;
}

.contact-page-section .form-column{
	position:relative;
	margin-bottom:40px;
}

.contact-page-section .form-column .inner-column{
	position:relative;
	padding:60px 60px 60px;
	box-shadow:0px 10px 22px rgba(250,71,74,0.05);
}

/* Contact Form */

.contact-form{
	position:relative;
}

.contact-form .form-group{
	position:relative;
	margin-bottom:20px;
}

.contact-form .form-group .icon{
	position:absolute;
	right:20px;
	top:22px;
	color:#fa4a49;
	font-size:16px;
	line-height:1em;
	font-weight:400;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="password"],
.contact-form select,
.contact-form textarea{
	display:block;
	width:100%;
	line-height:28px;
	height:56px;
	font-size:16px;
	padding:8px 30px;
	color:#19274d;
	border-radius:0px;
	background-color:#fffafa;
	transition:all 500ms ease;
	-webkit-transition:all 500ms ease;
	-ms-transition:all 500ms ease;
	-o-transition:all 500ms ease;
}

.contact-form .form-group textarea::-webkit-input-placeholder,
.contact-form .form-group input::-webkit-input-placeholder{
	color:#19274d;
}

.contact-form textarea{
	height:170px;
	resize:none;
	font-size:15px;
	padding-top:18px;
}

.contact-form input[type="text"]:focus,
.contact-form input[type="email"]:focus,
.contact-form input[type="password"]:focus,
.contact-form select:focus,
.contact-form textarea:focus{
	border-color:#ffc108;
}

.contact-form .theme-btn{
	cursor:pointer;
	padding:15px 57px;
	box-shadow:0px 0px 15px rgba(250,70,74,0.15);
}

.map-section{
	padding-bottom:90px;
}

/*** 

====================================================================
	Error Section
====================================================================

***/

.error-section{
	position:relative;
	padding-top:110px;
	padding-bottom:110px;
}

.error-section .image{
	position:relative;
	margin-bottom:0px;
}

.error-section .btns-box .theme-btn{
	top:-30px;
	padding:15px 46px;
	margin-top:-110px;
}

/*** 

====================================================================
	Sidebar Page Container
====================================================================

***/

.sidebar-page-container{
	position:relative;
	padding:100px 0px 80px;
}

.sidebar-page-container .content-side,
.sidebar-page-container .sidebar-side{
	margin-bottom:40px;
}

.sidebar-page-container .sidebar-side .sidebar-inner{
	padding-left:20px;
}

.sticky-top{
	top:90px;
	z-index:1;
}

/*Sidebar Widget*/

.sidebar-widget{
    position: relative;
    margin-bottom: 40px;
}

.sidebar-widget .widget-content{
	position:relative;
	padding:35px 35px;
	border:2px solid #ededed;
}

.sidebar-widget:last-child{
	margin-bottom:0px;
}

.sidebar-title{
	position:relative;
	margin-bottom:35px;
}

.sidebar-title h5{
	position: relative;
    color: #19274d;
    font-weight: 600;
    line-height: 1.3em;
	padding-left:30px;
	text-align:left;
    text-transform: capitalize;
	font-family: 'Poppins', sans-serif;
}

.sidebar-title h5:before{
	position:absolute;
	content:'';
	left:0px;
	bottom:0px;
	width:3px;
	height:25px;
	background-image: -ms-linear-gradient(top, #FA474A 0%, #ff7843 100%);
	background-image: -moz-linear-gradient(top, #FA474A 0%, #ff7843 100%);
	background-image: -o-linear-gradient(top, #FA474A 0%, #ff7843 100%);
	background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #FA474A), color-stop(100, #ff7843));
	background-image: -webkit-linear-gradient(top, #FA474A 0%, #ff7843 100%);
	background-image: linear-gradient(to bottom, #FA474A 0%, #ff7843 100%);
}

.about-widget{
	text-align:center;
}

.about-widget .author-image{
	position:relative;
	width:140px;
	height:140px;
	overflow:hidden;
	border-radius:50%;
	margin:0 auto;
}

.about-widget h6{
	position:relative;
	color:#19274d;
	font-weight:600;
	margin-top:25px;
	font-family: 'Poppins', sans-serif;
}

.about-widget .text{
	position:relative;
	color:#19274d;
	font-weight:400;
	margin-top:12px;
	font-size:14px;
	line-height:1.9em;
}

.about-widget .social-box{
	position:relative;
	margin-top:12px;
}

.about-widget .social-box li{
	position:relative;
	margin:0px 9px;
	display:inline-block;
}

.about-widget .social-box li a{
	position:relative;
	color:#b3bed3;
	transition:all 500ms ease;
	-webkit-transition:all 500ms ease;
	-ms-transition:all 500ms ease;
	-o-transition:all 500ms ease;
}

.about-widget .social-box li a:hover{
	color:#19274d;
}

/*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 30px;
	background:#f6f4ff;
	display:block;
	font-size:14px;
	width:100%;
	height:60px;
	color:#19274d;
	font-style:italic;
	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;
}

.sidebar .search-box .form-group input::placeholder,
.sidebar .search-box .form-group textarea::placeholder{
	color:#19274d;
}

.sidebar .search-box .form-group button{
	position:absolute;
	right:0px;
	top:0px;
	height:60px;
	width:60px;
	display:block;
	font-size:16px;
	color:#ffffff;
	cursor:pointer;
	line-height:100%;
	font-weight:normal;
	border-radius:50px;
	box-shadow: 0px 0px 15px rgba(250,70,74,0.15);
    background-image: -ms-linear-gradient(left, #007bff 0%, #a1bbff 100%);
    background-image: -moz-linear-gradient(left, #007bff 0%, #a1bbff 100%);
    background-image: -o-linear-gradient(left, #007bff 0%, #a1bbff 100%);
    background-image: -webkit-gradient(linear, left top, right top, color-stop(0, #007bff), color-stop(100, #a1bbff));
    background-image: -webkit-linear-gradient(left, #007bff 0%, #a1bbff 100%);
    background-image: linear-gradient(to right, #007bff 0%, #a1bbff 100%);
}

/* Post Widget */

.sidebar .popular-posts .post{
	position:relative;
	font-size:14px;
	color:#666666;
	padding-top:6px;
	padding-left:100px;
	min-height:110px;
	margin-bottom:28px;
	border-bottom:1px solid #e1e6ff;
}

.sidebar .popular-posts .post:last-child{
	margin-bottom:0px;
	min-height:auto;
	border:none;
}

.sidebar .popular-posts .post:last-child{
	margin-bottom:0px;
}

.sidebar .popular-posts .post .post-thumb{
	 position:absolute;
	 left:0px;
	 top:0px;
	 width:80px;
	 border-radius:0px;
	overflow:hidden;
}

.sidebar .popular-posts .post .post-thumb .overlay-box{
	position: absolute;
    content: '';
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    display: block;
    color: #ffffff;
    font-size: 18px;
    opacity: 0;
	overflow:hidden;
	border-radius:50%;
    text-align: center;
    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;
    background-color: rgba(251,80,73,0.70);
}

.sidebar .popular-posts .post .post-thumb .overlay-box .fa{
	top: 50%;
    position: relative;
    margin-top: -12px;
    display: block;
}

.sidebar .popular-posts .post:hover .post-thumb .overlay-box{
	opacity:1;
}

.sidebar .popular-posts .post .post-thumb img{
	display:block;
	width:100%;
	transition:all 0.3s ease;
	-moz-transition:all 0.3s ease;
	-webkit-transition:all 0.3s ease;
	-ms-transition:all 0.3s ease;
	-o-transition:all 0.3s ease;
}

.sidebar .popular-posts .post .text{
	position:relative;
	top:-4px;
	font-size:16px;
	margin:0px 0px 0px;
	font-weight:600;
	color:#19274d;
	line-height:1.6em;
	text-transform:capitalize;
	font-family: 'Poppins', sans-serif;
}

.sidebar .popular-posts .post .text a{
	color:#19274d;
	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:#fa474a;
}

.sidebar .popular-posts .post-info{
	position:relative;
	color: #007bff;
    font-size: 14px;
    font-weight: 400;
	margin-top:4px;
	padding-left:20px;
    background: linear-gradient(to right, #007bff 0%, #a1bbff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.sidebar .popular-posts .post-info:before{
	position:absolute;
	content:'\f073';
	left:0px;
	top:5px;
	font-size:13px;
	font-weight:800;
	font-family: 'FontAwesome';
	color: #fa474a;
    line-height: 1em;
    background: linear-gradient(to top, #fa474a 0%, #a1bbff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Blog Cat */

.blog-cat{
	position:relative;
}

.blog-cat li{
	position:relative;
	margin-bottom:10px;
}

.blog-cat li a{
	position:relative;
	color:#19274d;
	font-size:14px;
	display:block;
	font-weight:500;
	z-index:1;
	border-radius:50px;
	padding:14px 50px 14px 30px;
	background-color:#edf5ff;
	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:before{
	position:absolute;
	content:'';
	left:0px;
	top:0px;
	width:0px;
	bottom:0px;
	z-index:-1;
	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-image: -ms-linear-gradient(left, #007bff 0%, #a1bbff 100%);
    background-image: -moz-linear-gradient(left, #007bff 0%, #a1bbff 100%);
    background-image: -o-linear-gradient(left, #007bff 0%, #a1bbff 100%);
    background-image: -webkit-gradient(linear, left top, right top, color-stop(0, #007bff), color-stop(100, #a1bbff));
    background-image: -webkit-linear-gradient(left, #007bff 0%, #a1bbff 100%);
    background-image: linear-gradient(to right, #007bff 0%, #a1bbff 100%);
}

.blog-cat li a:hover::before{
	width:100%;
}

.blog-cat li a:hover{
	color:#ffffff;
}

.blog-cat li a span{
	position:absolute;
	right:0px;
	top:0px;
	width:50px;
	height:51px;
	line-height:52px;
	text-align:center;
	border-radius:50px;
	background-color:#dae6f6;
}

.blog-cat li a:hover span{
	background-color:#dc4016;
}

/* Social Widget */

.social-widget .social-box li{
	position:relative;
	margin-right:8px;
	display:inline-block;
}

.social-widget .social-box li a{
	position:relative;
	width:40px;
	height:40px;
	color:#19274d;
	line-height:42px;
	text-align:center;
	border-radius:50px;
	display:inline-block;
	background-color:#eaf2ff;
	transition:all 500ms ease;
	-moz-transition:all 500ms ease;
	-webkit-transition:all 500ms ease;
	-ms-transition:all 500ms ease;
	-o-transition:all 500ms ease;
}

.social-widget .social-box li a:before{
	position:absolute;
	content:'';
	left:0px;
	top:0px;
	right:0px;
	bottom:0px;
	border-radius:50px;
	transform:scale(0,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;
	box-shadow: 0px 10px 15px rgba(250,70,74,0.15);
	background-image: -ms-linear-gradient(left, #007bff 0%, #a1bbff 100%);
    background-image: -moz-linear-gradient(left, #007bff 0%, #a1bbff 100%);
    background-image: -o-linear-gradient(left, #007bff 0%, #a1bbff 100%);
    background-image: -webkit-gradient(linear, left top, right top, color-stop(0, #007bff), color-stop(100, #a1bbff));
    background-image: -webkit-linear-gradient(left, #007bff 0%, #a1bbff 100%);
    background-image: linear-gradient(to right, #007bff 0%, #a1bbff 100%);
}

.social-widget .social-box li a span{
	position:relative;
}

.social-widget .social-box li a:hover::before{
	transform:scale(1,1);
}

.social-widget .social-box li a:hover{
	color:#ffffff;
}

/* Tweet Widget */

.tweet-widget .tweets-outer{
	position:relative;
}

.tweet-block{
	position:relative;
	margin-bottom:30px;
}

.tweet-block .block-inner{
	position:relative;
	padding-left:35px;
	padding-bottom:30px;
	border-bottom:1px solid #e1e6ff;
}

.tweet-block .block-inner .icon{
	position:absolute;
	left:0px;
	top:5px;
	font-size:20px;
	line-height:1em;
	color: #fa474a;
    line-height: 1em;
    background: linear-gradient(to top, #fa474a 0%, #a1bbff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.tweet-block .block-inner .text{
	position:relative;
	color:#19274d;
	font-size:14px;
	line-height:2em;
}

.tweet-block .block-inner .tweet-date{
	position:relative;
	color:#19274d;
	font-size:14px;
	line-height:1.3em;
	font-weight:600;
	margin-top:10px;
	text-transform:uppercase;
	font-family: 'Poppins', sans-serif;
}

.tweet-block:last-child{
	margin-bottom:0px;
}

.tweet-block:last-child .block-inner{
	margin-bottom:0px;
	padding-bottom:0px;
	border:none;
}

.instagram-widget .row{
	margin:0px -7px;
}

.instagram-widget .post-thumb{
	 position:relative;
	 width:28%;
	 float:left;
	 border-radius:0px;
	 overflow:hidden;
	 margin:0px 8px 18px;
}

.instagram-widget .post-thumb .overlay-box{
	position: absolute;
    content: '';
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    display: block;
    color: #ffffff;
    font-size: 18px;
    opacity: 0;
    text-align: center;
    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;
    background-color: rgba(251,81,72,0.70);
}

.instagram-widget .post-thumb .overlay-box .fa{
	top: 50%;
    position: relative;
    margin-top: -12px;
    display: block;
}

.instagram-widget .post-thumb:hover .overlay-box{
	opacity:1;
}

.instagram-widget .post-thumb img{
	display:block;
	width:100%;
	transition:all 0.3s ease;
	-moz-transition:all 0.3s ease;
	-webkit-transition:all 0.3s ease;
	-ms-transition:all 0.3s ease;
	-o-transition:all 0.3s ease;
}

/* Popular Tags */

.sidebar .popular-tags a{
	position:relative;
	display:inline-block;
	line-height:24px;
	padding:5px 24px;
	margin:0px 2px 7px 0px;
	color:#19274d;
	text-align:center;
	font-size:12px;
	background:#f4f4f4;
	font-weight:500;
	border-radius:50px;
	text-transform:uppercase;
	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{
	box-shadow: 0px 10px 15px rgba(250,70,74,0.15);
	background-image: -ms-linear-gradient(left, #007bff 0%, #a1bbff 100%);
    background-image: -moz-linear-gradient(left, #007bff 0%, #a1bbff 100%);
    background-image: -o-linear-gradient(left, #007bff 0%, #a1bbff 100%);
    background-image: -webkit-gradient(linear, left top, right top, color-stop(0, #007bff), color-stop(100, #a1bbff));
    background-image: -webkit-linear-gradient(left, #007bff 0%, #a1bbff 100%);
    background-image: linear-gradient(to right, #007bff 0%, #a1bbff 100%);
	color:#ffffff;
}

.add-widget .image img{
	width:100%;
	display:block;
}

.news-block-five{
	position:relative;
	margin-bottom:40px;
}

.news-block-five .inner-box{
	position:relative;
}

.news-block-five .inner-box .image{
	position:relative;
	overflow:hidden;
	background-color:#007bff;
}

.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{
	opacity:0.5;
}

.news-block-five .inner-box .image .overlay-box{
	position:absolute;
	left:0px;
	top:0px;
	width:100%;
	height:100%;
	display:block;
	text-align:center;
}

.news-block-five .inner-box .image .overlay-box .icon{
	position:absolute;
	left:50%;
	top:50%;
	width:80px;
	height:80px;
	color:#ffffff;
	margin-left:-40px;
	text-align:center;
	border-radius:50%;
	line-height:80px;
	display:inline-block;
	padding-left:4px;
	font-size:18px;
	margin-top:-40px;
	background-color:#ff5b2e;
}

.news-block-five .inner-box .image .overlay-box .ripple,
.news-block-five .inner-box .image .overlay-box .ripple:before,
.news-block-five .inner-box .image .overlay-box .ripple:after {
    position: absolute;
    top: 50%;
    left: 50%;
    width:80px;
	height:80px;
	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, 91, 46, .4);
    -moz-box-shadow: 0 0 0 0 rgba(255, 91, 46, .4);
    -ms-box-shadow: 0 0 0 0 rgba(255, 91, 46, .4);
    -o-box-shadow: 0 0 0 0 rgba(255, 91, 46, .4);
    box-shadow: 0 0 0 0 rgba(255, 91, 46, .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-five .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-five .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;
}

.news-block-five .inner-box .owl-nav{
	position:absolute;
	left:0px;
	top:50%;
	width:100%;
	margin-top:-25px;
}

.news-block-five .inner-box .owl-nav .owl-prev{
	position:absolute;
	left:30px;
	width:55px;
	height:55px;
	line-height:55px;
	text-align:center;
	font-size:20px;
	color:#ffffff;
	font-weight:600;
	border-radius:50px;
	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;
}

.news-block-five .inner-box .owl-nav .owl-next{
	position:absolute;
	right:30px;
	width:55px;
	height:55px;
	line-height:55px;
	text-align:center;
	font-size:20px;
	color:#ffffff;
	font-weight:600;
	border-radius:50px;
	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;
}

.news-block-five .inner-box .owl-nav .owl-prev:hover,
.news-block-five .inner-box .owl-nav .owl-next:hover{
	box-shadow: 0px 10px 15px rgba(250,70,74,0.15);
	background-image: -ms-linear-gradient(left, #007bff 0%, #a1bbff 100%);
    background-image: -moz-linear-gradient(left, #007bff 0%, #a1bbff 100%);
    background-image: -o-linear-gradient(left, #007bff 0%, #a1bbff 100%);
    background-image: -webkit-gradient(linear, left top, right top, color-stop(0, #007bff), color-stop(100, #a1bbff));
    background-image: -webkit-linear-gradient(left, #007bff 0%, #a1bbff 100%);
    background-image: linear-gradient(to right, #007bff 0%, #a1bbff 100%);
}

.news-block-five .inner-box .lower-content{
	position:relative;
	padding:50px 50px 40px;
	border:2px solid #ededed;
	border-top:0px;
}

.news-block-five.style-two .inner-box .lower-content{
	border-top:2px solid #ededed;
}

.news-block-five .inner-box .lower-content .category{
	position:relative;
	color:#ffffff;
	padding:5px 28px;
	font-weight:500;
	border-radius:50px;
	display:inline-block;
	background-image: -ms-linear-gradient(left, #007bff 0%, #a1bbff 100%);
    background-image: -moz-linear-gradient(left, #007bff 0%, #a1bbff 100%);
    background-image: -o-linear-gradient(left, #007bff 0%, #a1bbff 100%);
    background-image: -webkit-gradient(linear, left top, right top, color-stop(0, #007bff), color-stop(100, #a1bbff));
    background-image: -webkit-linear-gradient(left, #007bff 0%, #a1bbff 100%);
    background-image: linear-gradient(to right, #007bff 0%, #a1bbff 100%);
}

.news-block-five .inner-box .lower-content h2{
	position:relative;
	font-size:34px;
	line-height:1.3em;
	font-weight:600;
	margin-top:25px;
	font-family: 'Poppins', sans-serif;
}

.news-block-five .inner-box .lower-content h2 a{
	position:relative;
	color:#19274d;
	transition:all 300ms ease;
	-webkit-transition:all 300ms ease;
	-ms-transition:all 300ms ease;
	-o-transition:all 300ms ease;
	-moz-transition:all 300ms ease;
}

.news-block-five .inner-box .lower-content h2 a:hover{
	color:#fa4a49;
}

.news-block-five .inner-box .lower-content .post-meta{
	position:relative;
	margin-top:22px;
}

.news-block-five .inner-box .lower-content .post-meta li{
	position:relative;
	margin-right:12px;
	font-weight:400;
	display:inline-block;
	color: #007bff;
    font-size: 14px;
	padding-left:22px;
    background: linear-gradient(to right, #007bff 0%, #a1bbff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.news-block-five .inner-box .lower-content .post-meta li .icon{
	position:absolute;
	left:0px;
	top:4px;
	color: #fa474a;
    line-height: 1em;
    background: linear-gradient(to top, #fa474a 0%, #a1bbff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.news-block-five .inner-box .lower-content .text{
	position:relative;
	color:#19274d;
	font-size:16px;
	line-height:1.8em;
	margin-top:20px;
	margin-bottom:25px;
}

.news-block-five .inner-box .lower-content .post-author{
	position:relative;
	padding-left:50px;
	color:#19274d;
	font-size:16px;
	text-align:left;
	font-weight:600;
	padding-top:9px;
	margin-bottom:20px;
	display:inline-block;
	font-family: 'Poppins', sans-serif;
}

.news-block-five .inner-box .lower-content .post-author .author-image{
	position:absolute;
	left:0px;
	top:0px;
	width:40px;
	height:40px;
	border-radius:50%;
	overflow:hidden;
}

.news-block-five .inner-box .lower-content .read-more{
	position:relative;
	color:#19274d;
	font-size:14px;
	font-weight:600;
	transition:all 300ms ease;
	-webkit-transition:all 300ms ease;
	-ms-transition:all 300ms ease;
	-o-transition:all 300ms ease;
	-moz-transition:all 300ms ease;
}

.news-block-five .inner-box .lower-content .read-more .arrow{
	position:relative;
	margin-right:4px;
}

.news-block-five .inner-box .lower-content .read-more:hover{
	color:#007bff;
}

/* News Block Six */

.news-block-six{
	position:relative;
	margin-bottom:40px;
}

.news-block-six .inner-box{
	position:relative;
	padding:50px 50px;
	box-shadow: 0px 10px 15px rgba(250,70,74,0.15);
	background-image: -ms-linear-gradient(left, #007bff 0%, #a1bbff 100%);
    background-image: -moz-linear-gradient(left, #007bff 0%, #a1bbff 100%);
    background-image: -o-linear-gradient(left, #007bff 0%, #a1bbff 100%);
    background-image: -webkit-gradient(linear, left top, right top, color-stop(0, #007bff), color-stop(100, #a1bbff));
    background-image: -webkit-linear-gradient(left, #007bff 0%, #a1bbff 100%);
    background-image: linear-gradient(to right, #007bff 0%, #a1bbff 100%);
}

.news-block-six .inner-box:before{
	position:absolute;
	content:'';
	left:0px;
	top:0px;
	right:0px;
	bottom:0px;
	background:url(../images/background/pattern-5.png) repeat;
}

.news-block-six .inner-box .content{
	position:relative;
	padding-left:110px;
}

.news-block-six .inner-box .content .quote{
	position:absolute;
	left:0px;
	top:0px;
	color:#ffffff;
	line-height:1em;
	font-size:84px;
}

.news-block-six .inner-box .content h2{
	position:relative;
	line-height:1.3em;
	font-weight:600;
	font-size:34px;
	font-family: 'Poppins', sans-serif;
}

.news-block-six .inner-box .content h2 a{
	position:relative;
	color:#ffffff;
}

.news-block-six .inner-box .content .post-meta{
	position:relative;
	margin-top:22px;
}

.news-block-six .inner-box .content .post-meta li{
	position:relative;
	margin-right:12px;
	font-weight:400;
	display:inline-block;
	color: #ffffff;
    font-size: 14px;
	padding-left:22px;
}

.news-block-six .inner-box .content .post-meta li .icon{
	position:absolute;
	left:0px;
	top:4px;
	color: #ffffff;
    line-height: 1em;
}

.news-block-five.style-three .inner-box .lower-content{
	border:none;
	background-color:#fff9f9;
}

.blog-classic .styled-pagination{
	margin-top:50px;
}

/*** 

====================================================================
	Styled Pagination
====================================================================

***/

.styled-pagination{
	position:relative;
}

.styled-pagination li{
	position:relative;
	margin:0px 4px 10px;
	display:inline-block;
}

.styled-pagination li a{
	position:relative;
	width:50px;
	height:50px;
	z-index:1;
	color:#19274d;
	font-size:14px;
	font-weight:500;
	line-height:48px;
	text-align:center;
	border-radius:50px;
	display:inline-block;
	border:2px solid #ededed;
	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;
}

.styled-pagination li a:before{
	position:absolute;
	content:'';
	left:-2px;
	top:-2px;
	right:-2px;
	bottom:-2px;
	z-index:-1;
	border-radius:50px;
	transform:scale(0,0);
	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;
	box-shadow: 0px 10px 15px rgba(250,70,74,0.15);
	background-image: -ms-linear-gradient(left, #007bff 0%, #a1bbff 100%);
    background-image: -moz-linear-gradient(left, #007bff 0%, #a1bbff 100%);
    background-image: -o-linear-gradient(left, #007bff 0%, #a1bbff 100%);
    background-image: -webkit-gradient(linear, left top, right top, color-stop(0, #007bff), color-stop(100, #a1bbff));
    background-image: -webkit-linear-gradient(left, #007bff 0%, #a1bbff 100%);
    background-image: linear-gradient(to right, #007bff 0%, #a1bbff 100%);
}

.styled-pagination li.active a,
.styled-pagination li:hover a{
	color:#ffffff;
}

.styled-pagination li.active a:before,
.styled-pagination li:hover a:before{
	transform:scale(1,1);
}

/* News Detail */

.blog-detail{
	position:relative;
	margin-bottom:40px;
}

.blog-detail .inner-box{
	position:relative;
	padding:50px 50px 55px;
	border:2px solid #ededed;
}

.blog-detail .inner-box .category{
	position:relative;
	color:#ffffff;
	padding:5px 28px;
	font-weight:500;
	border-radius:50px;
	display:inline-block;
	background-image: -ms-linear-gradient(left, #007bff 0%, #a1bbff 100%);
    background-image: -moz-linear-gradient(left, #007bff 0%, #a1bbff 100%);
    background-image: -o-linear-gradient(left, #007bff 0%, #a1bbff 100%);
    background-image: -webkit-gradient(linear, left top, right top, color-stop(0, #007bff), color-stop(100, #a1bbff));
    background-image: -webkit-linear-gradient(left, #007bff 0%, #a1bbff 100%);
    background-image: linear-gradient(to right, #007bff 0%, #a1bbff 100%);
}

.blog-detail .inner-box h2{
	position:relative;
	font-size:36px;
	color:#19274d;
	line-height:1.3em;
	font-weight:600;
	margin-top:25px;
	font-family: 'Poppins', sans-serif;
}

.blog-detail .inner-box .post-meta{
	position:relative;
	margin-top:22px;
	margin-bottom:20px;
}

.blog-detail .inner-box .post-meta li{
	position:relative;
	margin-right:12px;
	font-weight:500;
	display:inline-block;
	color: #007bff;
    font-size: 14px;
	padding-left:22px;
    background: linear-gradient(to right, #007bff 0%, #a1bbff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.blog-detail .inner-box .post-meta li .icon{
	position:absolute;
	left:0px;
	top:4px;
	color: #fa474a;
    line-height: 1em;
    background: linear-gradient(to top, #fa474a 0%, #a1bbff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.blog-detail .inner-box p{
	position:relative;
	color:#19274d;
	font-size:16px;
	line-height:1.7em;
	margin-bottom:25px;
}

.blog-detail .inner-box .image{
	position:relative;
	margin-top:35px;
	margin-bottom:30px;
}

.blog-detail .inner-box h3{
	position:relative;
	font-size:30px;
	color:#19274d;
	line-height:1.3em;
	font-weight:600;
	margin-top:25px;
	font-family: 'Poppins', sans-serif;
}

.blog-detail .inner-box .text{
	position:relative;
	color:#19274d;
	font-size:16px;
	line-height:1.7em;
	margin-top:20px;
	margin-bottom:25px;
	padding-bottom:30px;
	border-bottom:1px solid #ededed;
}

.blog-detail .inner-box .list-style-five{
	margin-top:25px;
	margin-bottom:35px;
}

.blog-detail .inner-box blockquote{
	position:relative;
	padding:50px 40px;
	border-radius:10px;
	text-align:center;
	margin-bottom:30px;
	box-shadow: 0px 10px 15px rgba(250,70,74,0.15);
	background-image: -ms-linear-gradient(left, #007bff 0%, #a1bbff 100%);
    background-image: -moz-linear-gradient(left, #007bff 0%, #a1bbff 100%);
    background-image: -o-linear-gradient(left, #007bff 0%, #a1bbff 100%);
    background-image: -webkit-gradient(linear, left top, right top, color-stop(0, #007bff), color-stop(100, #a1bbff));
    background-image: -webkit-linear-gradient(left, #007bff 0%, #a1bbff 100%);
    background-image: linear-gradient(to right, #007bff 0%, #a1bbff 100%);
}

.blog-detail .inner-box blockquote .title{
	position:relative;
	color:#ffffff;
	font-size:14px;
}

.blog-detail .inner-box blockquote .quote-text{
	position:relative;
	color:#ffffff;
	font-size:24px;
	font-weight:600;
	line-height:1.7em;
	margin-top:15px;
	font-family: 'Poppins', sans-serif;
}

/* Post Share Options */

.blog-detail .post-share-options{
	position:relative;
	padding:20px 0px 40px;
	margin-top:40px;
	border-bottom:1px solid #e1e6ff;
}

.blog-detail .post-share-options .post-title{
	position:relative;
	color:#19274d;
	font-size:20px;
	line-height: 25px;
	font-weight:600;
	display: block;
	margin-bottom:20px;
	font-family: 'Poppins', sans-serif;
}

.blog-detail .post-share-options .tags{
	position: relative;
	display: inline-block;
}

.blog-detail .post-share-options .tags li{
	position: relative;
	margin-right:4px;
	margin-bottom:6px;
	display: inline-block;
}

.blog-detail .post-share-options .tags a{
	position:relative;
	color:#19274d;
	font-size:12px;
	font-weight:700;
	line-height: 25px;
	border-radius:50px;
	padding:5px 26px 3px;
	display:inline-block;
	background-color:#efefef;
	text-transform:uppercase;
	-webkit-transition: all 300ms ease;
	-moz-transition: all 300ms ease;
	-ms-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	transition: all 300ms ease;
}

.blog-detail .post-share-options .tags a:hover{
	color:#ffffff;
	box-shadow: 0px 10px 15px rgba(250,70,74,0.15);
	background-image: -ms-linear-gradient(left, #007bff 0%, #a1bbff 100%);
    background-image: -moz-linear-gradient(left, #007bff 0%, #a1bbff 100%);
    background-image: -o-linear-gradient(left, #007bff 0%, #a1bbff 100%);
    background-image: -webkit-gradient(linear, left top, right top, color-stop(0, #007bff), color-stop(100, #a1bbff));
    background-image: -webkit-linear-gradient(left, #007bff 0%, #a1bbff 100%);
    background-image: linear-gradient(to right, #007bff 0%, #a1bbff 100%);
}

.blog-detail .post-share-options .social-icon{
	position: relative;
	display: inline-block;
}

.blog-detail .post-share-options .social-icon li{
	position: relative;
	display: inline-block;
	margin-left: 20px;
}

.blog-detail .post-share-options .social-icon li:last-child{
	margin-right:0px;
}

.blog-detail .post-share-options .social-icon li a{
	display: inline-block;
	font-size: 18px;
	line-height: 25px;
	color: #b5becc;
	-webkit-transition: all 300ms ease;
	-moz-transition: all 300ms ease;
	-ms-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	transition: all 300ms ease;
}

.blog-detail .post-share-options .social-icon li a:hover{
	color: #fa474a;
}

.blog-detail .inner-box .new-posts{
	position:relative;
	margin-top:45px;
	padding-bottom:40px;
	border-bottom:1px solid #e1e6ff;
}

.blog-detail .inner-box .new-posts .grid-icon{
	position:absolute;
	left:50%;
	margin-top:15px;
	color: #fa474a;
    line-height: 1em;
    background: linear-gradient(to top, #fa474a 0%, #a1bbff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
	text-align:center;
	font-size:46px;
}

.blog-detail .inner-box .new-posts .title{
	position:relative;
	color: #007bff;
	font-size:16px;
	font-weight:700;
    background: linear-gradient(to right, #007bff 0%, #a1bbff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.blog-detail .inner-box .new-posts h4{
	position:relative;
	color:#19274d;
	font-weight:600;
	margin-top:10px;
	font-size:28px;
	font-family: 'Poppins', sans-serif;
}

.blog-detail .inner-box .new-posts h4 a{
	position:relative;
	color:#19274d;
}

.blog-detail .inner-box .new-posts .right-text{
	text-align:right;
}

.blog-detail .related-projects{
	position:relative;
	margin-top:40px;
}

.blog-detail .related-projects .projects-title{
	position:relative;
	color:#19274d;
	font-weight:600;
	margin-bottom:30px;
	font-size:26px;
	font-family: 'Poppins', sans-serif;
}

.related-block{
	position:relative;
	margin-bottom:45px;
}

.related-block .inner-block{
	position:relative;
	box-shadow:0px 0px 15px rgba(0,0,0,0.05);
}

.related-block .inner-block .block-image{
	position:relative;
}

.related-block .inner-block .block-image img{
	position:relative;
	width:100%;
	display:block;
}

.related-block .inner-block .block-lower-content{
	position:relative;
	padding:30px 30px;
}

.related-block .inner-block .block-lower-content .post-date{
	position: relative;
    margin-right: 12px;
    font-weight: 500;
    display: inline-block;
    color: #007bff;
    font-size: 14px;
    padding-left: 22px;
    background: linear-gradient(to right, #007bff 0%, #a1bbff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.related-block .inner-block .block-lower-content .post-date .icon{
	position: absolute;
    left: 0px;
    top: 4px;
    color: #fa474a;
    line-height: 1em;
    background: linear-gradient(to top, #fa474a 0%, #a1bbff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.related-block .inner-block .block-lower-content h5{
	position:relative;
	margin-top:12px;
	font-weight:600;
	line-height:1.5em;
	font-family: 'Poppins', sans-serif;
}

.related-block .inner-block .block-lower-content h5 a{
	position:relative;
	color:#19274d;
}

.related-block .inner-block .block-lower-content .block-text{
	position: relative;
    color: #19274d;
    font-size: 16px;
    line-height: 1.7em;
    margin-top: 12px;
}

/*Author Box*/

.blog-author-box{
	position:relative;
	margin-bottom:60px;
}

.blog-author-box .author-inner{
	position:relative;
	padding:40px 40px;
	border:2px solid #e1e6ff;
}

.blog-author-box .author-inner .content-box{
	position:relative;
	padding-left:220px;
}

.blog-author-box .author-inner .content-box .author-image{
	position:absolute;
	left:0px;
	top:0px;
	width:180px;
	overflow:hidden;
	margin-bottom:20px;
}

.blog-author-box .author-inner .content-box .author-name{
	position:relative;
	color:#ff5b2e;
	font-weight:700;
	font-size:12px;
}

.blog-author-box .author-inner .content-box h6{
	position:relative;
	color:#19274d;
	font-weight:600;
	margin-bottom:5px;
	font-size:36px;
}

.blog-author-box .author-inner .content-box .author-box-text{
	position:relative;
	color:#19274d;
	font-size:14px;
	font-weight:400;
	line-height:1.9em;
	margin-bottom:10px;
}

/*** 

====================================================================
	Comments Area
====================================================================

 ***/

.sidebar-page-container .comments-area{
	position:relative;
	margin-bottom:50px;
}

.sidebar-page-container .group-title{
	position:relative;
}

.sidebar-page-container .group-title h3{
	position:relative;
	color:#19274d;
	font-weight:600;
	margin-top:0px;
	margin-bottom:30px;
	text-transform:capitalize;
	font-family: 'Poppins', sans-serif;
}

.sidebar-page-container .comments-area .comment-box{
	position:relative;
	padding:0px 0px 30px;
	margin-bottom:40px;
	border-bottom:1px solid #eff2ff;
	-webkit-transition:all 300ms ease;
	-ms-transition:all 300ms ease;
	-o-transition:all 300ms ease;
	-moz-transition:all 300ms ease;
	transition:all 300ms ease;
}

.sidebar-page-container .comments-area .comment-box:last-child{
	margin-bottom:0px;
}

.sidebar-page-container .comments-area .comment{
	position:relative;
	font-size:14px;
	min-height:120px;
	padding:5px 0px 0px 135px;
}

.sidebar-page-container .comments-area .reply-comment{
	margin-left:60px;	
}

.sidebar-page-container .comments-area .comment-box .author-thumb{
	position:absolute;
	left:0px;
	top:0px;
	width:100px;
	border-radius:50%;
	margin-bottom:20px;
	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:15px;
}

.sidebar-page-container .comments-area .comment-box strong{
	font-size:18px;
	font-weight:600;
	color:#19274d;
	display:block;
	line-height:1.3em;
	text-transform:capitalize;
	font-family: 'Poppins', sans-serif;
}

.sidebar-page-container .comments-area .comment-box .comment-text{
	color:#19274d;
	font-size:14px;
	line-height:1.9em;
	margin-bottom:0px;
	padding-top:0px;
}

.sidebar-page-container .comments-area .comment-info .comment-time{
	font-size:12px;
	color:#ff5b2e;
	margin-top:10px;
	font-weight:700;
	display:inline-block;
}

.sidebar-page-container .comments-area .comment-box .theme-btn{
	position:absolute;
	right:0px;
	top:0px;
	font-size:14px;
	color:#19274d;
	font-weight:700;
	padding:8px 20px;
	border-radius:50px;
	display:inline-block;
	text-transform:capitalize;
	border:2px solid #f4f4ff;
}

.sidebar-page-container .comments-area .comment-box .theme-btn:hover{
	color:#ffffff;
	border-color:#ff5b2e;
	background-color:#ff5b2e;
}

.sidebar-page-container .comments-area .comment-box .theme-btn .icon{
	margin-right:6px;
}




/* Comment Form */

.comment-form{
	position:relative;
}

.comment-form .form-outer{
	position:relative;
	padding:50px 50px;
	background-color:#fff7f3;
}

.comment-form .form-group{
	position:relative;
	margin-bottom:20px;
}

.comment-form .form-group .icon{
	position:absolute;
	right:20px;
	top:22px;
	color:#fa4a49;
	font-size:16px;
	line-height:1em;
	font-weight:800;
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="password"],
.comment-form select,
.comment-form textarea{
	display:block;
	width:100%;
	line-height:28px;
	height:60px;
	font-size:16px;
	padding:8px 30px;
	color:#19274d;
	border-radius:0px;
	background-color:#ffffff;
	transition:all 500ms ease;
	-webkit-transition:all 500ms ease;
	-ms-transition:all 500ms ease;
	-o-transition:all 500ms ease;
}

.comment-form .form-group textarea::-webkit-input-placeholder,
.comment-form .form-group input::-webkit-input-placeholder{
	color:#19274d;
}

.comment-form textarea{
	height:170px;
	resize:none;
	font-size:15px;
	padding-top:18px;
}

.comment-form input[type="text"]:focus,
.comment-form input[type="email"]:focus,
.comment-form input[type="password"]:focus,
.comment-form select:focus,
.comment-form textarea:focus{
	border-color:#ffc108;
}

.comment-form .theme-btn{
	cursor:pointer;
	padding:15px 40px;
	box-shadow:0px 0px 15px rgba(250,70,74,0.15);
}

.contact-form input.error,
.contact-form select.error,
.contact-form textarea.error{
	border-color:#ff0000 !important;	
}

.contact-form label.error{
	display:block;
	line-height:24px;
	padding:5px 0px 0px;
	margin:0px;
	text-transform:uppercase;
	font-size:12px;
	color:#ff0000;
	font-weight:500;	
}