/*
Name: Curvearro
License URI: http://www.gnu.org/licenses/gpl-2.0.html
License: GNU General Public License v2 or later
*/

/*--------------------------------------------------------------
	Common
--------------------------------------------------------------*/



html { margin-top: 0px !important; }
@media screen and ( max-width: 782px ){
	html { margin-top: 0px !important; }
}

html {
	overflow-y: scroll;
	overflow-x: hidden;
	-ms-overflow-style: scrollbar;
}
html { font-size: 16px; }
@media (min-width: 768px) and (max-width: 991px) {
	html { font-size: 14px; }
}
@media (min-width: 200px) and (max-width: 768px) {
	html { font-size: 12px; }
}

body,
button,
input,
select,
textarea {
	color: #393939;
	font-family: "Work Sans", "Helvetica Neue", helvetica, arial, sans-serif;
	font-size: 20px;
	font-weight: 400;
	line-height: 1.66;
	-webkit-font-smoothing: antialiased;
}

h1, h2, h3,
h4, h5, h6 {
	clear: both;
	line-height: 1.3;
	margin: 0 0 1.875rem;
	font-weight: 700;
}

h1 {font-size: 3.000rem; /* 48px */color: #fafafa !important;}
h2 { font-size: 2.625rem; /* 42px */  }
h3 {font-size: 2.2rem; /* 36px */}
h4 { font-size: 1.875rem; /* 30px */ }
h5 { font-size: 1.500rem; /* 24px */ }
h6 { font-size: 1.125rem; font-weight: 600; /* 18px */ }

p { margin: 0 0 1.5em; padding: 0; }

dfn, cite, em, i { font-style: italic; }

blockquote {
	font-size: 1.500rem;
	font-style: normal;
	margin: 0 0 0px;
	overflow: hidden;
	padding: 10px 20px;
	quotes: "" "";
	color: #333333;
	font-weight: 600;
	line-height: 1.4;
}

blockquote cite { color: #a5a5a5; font-size: 1.000rem; display: block; font-style: normal; font-weight: 400; margin-top: 0.5em; }


blockquote:before, blockquote:after { content: ""; }

:focus {
	outline: none;
}

address { margin: 0 0 1.5em; }

pre {
	background: #eee;
	font-size: 1.000rem;
	line-height: 1.6;
	margin-bottom: 1.6em;
	max-width: 100%;
	overflow: auto;
	padding: 1.6em;
}

hr { background-color: #bbb; border: 0; height: 1px; margin-bottom: 1.5em; }

code, kbd, tt, var { font-size: 1.000rem; }

abbr, acronym { border-bottom: 1px dotted #666; cursor: help; }

mark, ins { background: #eee; text-decoration: none; }

big { font-size: 125%; }

img { max-width: 100%; height: auto; }

iframe { border: 0; }

#wrapper { background-color: #ffffff; margin: 0px auto; }

/*--------------------------------------------------------------
5. Forms
--------------------------------------------------------------*/

label { color: #393939; display: block; font-weight: 600; margin-bottom: 0.5em; }
fieldset { margin-bottom: 1em; }
input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea {
	color: #393939;
	background: #fff;
	background-image: -webkit-linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0));
	border: 1px solid #f3f3f3;
	-webkit-border-radius: 0px;
	border-radius: 0px;
	display: block;
	padding: 0.7em;
	width: 100%;
}
input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="range"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="time"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="color"]:focus,
textarea:focus {
	color: #393939;
	border-color: #333;
	outline: none;
}
select {
	border: 1px solid #f3f3f3;
	-webkit-border-radius: 0px;
	border-radius: 0px;
	height: 3em;
	max-width: 100%;
	width: 100%;
	padding: 0.7em;
}
input[type="radio"],
input[type="checkbox"] {
	margin-right: 0.5em;
	display: inline-block;
}
input[type="radio"] + label,
input[type="checkbox"] + label {
	font-weight: 400;
}
button,
input[type="button"],
input[type="submit"], 
input[type="reset"] {
    border: 0;
    -webkit-border-radius: 50px;
    border-radius: 50px;
    -webkit-box-shadow: none;
    box-shadow: none;
    color: #fff;
    cursor: pointer;
    display: inline-block;
    font-size: 0.938rem;
    font-weight: 600;
    line-height: 1;
    padding: 16px 35px;
    text-shadow: none;
    -webkit-transition: background 0.2s;
    transition: background 0.2s;
}
input + button,
input + input[type="button"] {
	padding: 0.75em 2em;
}
button.secondary,
input[type="reset"],
input[type="button"].secondary,
input[type="reset"].secondary,
input[type="submit"].secondary {
	background-color: #333;
	color: #fff;
}
button:hover,
button:focus,
input[type="button"]:hover,
input[type="button"]:focus,
input[type="submit"]:hover,
input[type="submit"]:focus {
	background: #333333;
}

/* Placeholder text color */
::-webkit-input-placeholder { color: #393939; }
:-moz-placeholder { color: #393939; }
::-moz-placeholder { color: #393939; }
:-ms-input-placeholder { color: #393939; }

.btn-small, .btn-ex-small {
	display: inline-block;
	-webkit-font-smoothing: antialiased;
	position: relative;
	letter-spacing: 0;
	border-radius: 15px;
	text-align: center;
	transition: .3s;
	font-weight: 600;
}

.btn-small { min-width: 10rem; font-size: 1.063rem; padding: 11px 38px; }
.btn-ex-small {min-width: 9rem;font-size: 1.1rem;padding: 10px 20px;}

.btn-default { color: #ffffff; border: none; }
.btn-default:hover, .btn-default:focus { background: #ffffff; color: #333333; }

.btn-bg-default { color: #ffffff !important; }

.btn-border { background: #ffffff; color: #333333; }
.btn-border:hover, .btn-border:focus { color: #ffffff; }
.btn-border-dark { background: transparent; border: 2px solid #333; color: #333333; } 
.btn-border-dark:hover { color: #fff; } 


.btn-cta:hover, .btn-cta:focus { background: #333333 !important; border: 2px solid #333333; }

.btn-shadow { box-shadow: 0px 0px 10px 2px rgba(0, 0, 0, .2); }
.btn-shadow-lg { box-shadow: 0 0px 25px rgba(0, 0, 0, .3); }

@media (max-width: 768px) {
	.btn-small { padding: 9px 32px; }
	.btn-ex-small { padding: 7px 30px; }
}


/*--------------------------------------------------------------
5. Lists
--------------------------------------------------------------*/

ul, ol {margin: 0 0px 0px 0px;padding: 0;}
ul {list-style: none;}
ol { list-style: decimal; }
li > ul, li > ol { margin-bottom: 0; margin-left: 1.5em; }
dt { font-weight: 600; }
dd { margin: 0 1.5em 1.5em; }


/*--------------------------------------------------------------
6. Tables
--------------------------------------------------------------*/

table { border-collapse: collapse; margin: 0 0 25px; width: 100%; border: 1px solid #eee; }
thead th { border-bottom: 2px solid #bbb; padding-bottom: 0.8rem;  }
th { padding: 0.8rem; text-align: left;border: 1px solid #eee; }
tr { border-bottom: 1px solid #eee; }
td { padding: 0.8rem; border: 1px solid #eee; }
/* th:first-child, td:first-child { padding-left: 0; } */


/*--------------------------------------------------------------
7. Links
--------------------------------------------------------------*/

a {color: #2a83e8;text-decoration: none !important;transition: 0.3s;}
a:focus { outline: none; text-decoration: none !important; }
a:hover, a:active { color: #333333; outline: none; }

/*--------------------------------------------------------------
7. Vertical margin, padding
--------------------------------------------------------------*/

.p-0 { padding: 0 !important; }
.ptop-0 { padding-top: 0 !important; }
.ptop-10 { padding-top: 10px !important; }
.ptop-15 { padding-top: 15px !important; }
.ptop-20 { padding-top: 20px !important; }
.ptop-30 { padding-top: 30px !important; }
.ptop-40 { padding-top: 40px !important; }
.ptop-50 { padding-top: 50px !important; }
.ptop-140 { padding-top: 140px !important; }
.pbottom-0 { padding-bottom: 0 !important; }
.pbottom-5 { padding-bottom: 5px !important; }
.pbottom-10 { padding-bottom: 10px !important; }
.pbottom-20 { padding-bottom: 20px !important; }
.pbottom-30 { padding-bottom: 30px !important; }
.pbottom-40 { padding-bottom: 40px !important; }
.pbottom-50 { padding-bottom: 50px !important; }
.pbottom-140 { padding-bottom: 140px !important; }
.m-0 { margin: 0 !important; }
.mtop-0 { margin-top: 0 !important; }
.mtop-10 { margin-top: 10px !important; }
.mtop-15 { margin-top: 15px !important; }
.mtop-20 { margin-top: 20px !important; }
.mtop-30 { margin-top: 30px !important; }
.mtop-40 { margin-top: 40px !important; }
.mtop-50 { margin-top: 50px !important; }
.mtop-60 { margin-top: 60px !important; }
.mtop-70 { margin-top: 70px !important; }
.mtop-80 { margin-top: 80px !important; }
.mtop-0 { margin-bottom: 0 !important; }
.mbottom-10 { margin-bottom: 10px !important; }
.mbottom-20 { margin-bottom: 20px !important; }
.mbottom-30 { margin-bottom: 30px !important; }
.mbottom-40 { margin-bottom: 40px !important; }
.mbottom-50 { margin-bottom: 50px !important; }
.mbottom-60 { margin-bottom: 60px !important; }
.mbottom-70 { margin-bottom: 70px !important; }
.mbottom-80 { margin-bottom: 80px !important; }
.fullwidth { padding-left: 0px; padding-right: 0px; }


/*--------------------------------------------------------------
	Navbar
--------------------------------------------------------------*/

.navbar-custom .container-fluid {
	margin-right: auto;
    margin-left: auto;
    padding-left: 0px;
    padding-right: 0px;
    max-width: 1366px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
.navbar-custom {
	background-color:#00142a;
	border: 0;
	border-radius: 0;
	z-index: 1000;
	font-family: "Work Sans", sans-serif;
	font-size: 1.000rem;
	transition: background, padding 0.4s ease-in-out 0s;
	margin-bottom: 0;
}
.navbar a { transition: 0.3s ease-in-out; }
.navbar-custom .navbar-brand {
	letter-spacing: 0.25rem; 
	font-weight: 600;
	font-size: 2.125rem;
	line-height: 1.45;
	color: #fff;
	min-height: auto;
	height: auto;
	padding: 9px 15px;
}
.navbar-custom .navbar-brand img {
	padding-top: 4px;
	padding-bottom: 4px;
}

/*Site Branding Text*/
.site-branding-text { float: left; padding: 9px 0; }
.site-branding-text .site-title { 
	letter-spacing: 0.25rem; 
	font-weight: 600;
	font-size: 2.125rem;
	line-height: 1;
	color: #fff;
	margin: 0px;
}
.site-branding-text .site-title > a, 
.site-branding-text .site-title > a:hover, 
.site-branding-text .site-title > a:focus { 
	color: #fff;
}
.site-branding-text .site-description { color: #fff; margin: 0px; }
.navbar-custom .navbar-nav { float: none; margin: 0 auto; display: table; }
.navbar-custom .nav li > a {position: relative;color: #fff;text-transform: capitalize;margin: 10px 24px;}
.navbar-custom .nav .dropdown-menu {
	background: rgba(7, 15, 25, 0.9);
	border-radius: 0;
	border: 0;
	padding: 0;
	box-shadow: none;
}
.navbar-custom .nav .dropdown-menu { min-width: 180px; font-size: 0.875rem; }
.navbar-custom .nav .dropdown-menu > li { padding: 0px 15px; margin: 0px; }
.navbar-custom .nav .dropdown-menu > li > a {
	border-bottom: 1px solid rgba(73, 71, 71, 0.15) !important;
	padding: 10px 0px;
	letter-spacing: 1px;
	color: #dbdbdb !important;
	margin: 0;
}
.navbar-custom .nav .dropdown-menu > li > a:before { display: none; }

.navbar-custom .dropdown-menu .dropdown-menu {
	border-left: 1px solid rgba(73, 71, 71, 0.15);
	left: 100%;
	right: auto;
	top: 0;
	margin-top: 0;
}
.navbar-custom .dropdown-menu.left-side .dropdown-menu {
	border: 0;
	border-right: 1px solid rgba(73, 71, 71, 0.15);
	right: 100%;
	left: auto;
}
.navbar-custom .dropdown-menu>.active>a { background-color: transparent; }
.navbar-custom .nav > li > a:focus,
.navbar-custom .nav > li > a:hover,
.navbar-custom .nav .open > a,
.navbar-custom .nav .open > a:focus,
.navbar-custom .nav .open > a:hover,
.navbar-custom .dropdown-menu > li > a:focus,
.navbar-custom .dropdown-menu > li > a:hover {
	background: none;
	color: #2a83e8;
}
.navbar-custom .dropdown-toggle:after {
	position: absolute;
    display: block;
    right: -15px;
    top: 50%;
    margin-top: -10px;
    font-family: FontAwesome;
    font-size: 15px;
    line-height: 1.2;
    content: "\f107";
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.navbar-custom .navbar-toggle .icon-bar { background: #fff; }
.header-module {margin: 15px 0;}
@media (min-width: 991px) {
	.navbar-custom .dropdown-menu { position: absolute; display: block; visibility: hidden; opacity: 0; }
	.navbar-custom .open > .dropdown-menu { visibility: visible; opacity: 1; }
	.navbar-custom .dropdown-menu .dropdown-toggle:after {
		position: absolute;    
		display: block;
		right: 0px;
		top: 50%;
		margin-top: -6px;
		font: normal normal normal 14px/1 FontAwesome;
		font-size: 0.938rem;
		content: "\f105";
		text-rendering: auto;
		-webkit-font-smoothing: antialiased;
		-moz-osx-font-smoothing: grayscale;
	}
	.navbar-right .dropdown-menu { right: auto; left: 0; }
}

/*--------------------------------------------------------------
	Responsive Styles - Media Queries
--------------------------------------------------------------*/

@media only screen and (max-width: 768px) and (min-width: 100px) { 
	.navbar-transparent {
		padding-bottom: 0px !important;
		padding-top: 0px !important;
	}
}
@media (min-width: 200px) {
	.navbar-custom .nav li > a {
		padding: 0 0 3px;
	}
	.navbar-transparent {
		background: transparent !important;
		padding-bottom: 10px;
		padding-top: 10px;
	}
}
.mobile-header { display: none; }

@media (max-width: 991px) {
	.desktop-header { display: none !important; }
	.mobile-header { display: block !important; }
	.navbar-custom .container-fluid {  padding: 0 50px; }
	.navbar-custom { background-color: rgba(0, 20, 42, 1); }
	.navbar-header { float: none; }
	.navbar-custom .navbar-brand { padding-top: 10px; padding-bottom: 10px; }
	.navbar-toggle { display: block; margin-top: 10px; margin-bottom: 10px; margin-right: 0; padding-right: 0; }
	.navbar-toggle:hover, .navbar-toggle:focus { background: transparent; }
	.navbar-toggle .icon-bar { width: 30px; height: 1px; }
	.navbar-toggle .icon-bar + .icon-bar { margin-top: 8px; }
	/*Collapsing*/
	.navbar-fixed-top .navbar-collapse { max-height: none; }
	.navbar-collapse { border-top: 1px solid transparent; box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1); }
	.navbar-collapse.collapse { display: none !important; }
	.navbar-custom .navbar-nav { 
		margin: 0px; 
		display: block; 
		float: none !important; 
		/*When we add more menu then use below css*/	
		max-height: 300px; overflow-x: hidden; 	
	}
	.navbar-custom .navbar-nav > li { float: none; }
	.navbar-collapse.collapse.in { display: block !important; }
	.collapsing { overflow: hidden!important; }
	.navbar-collapse, .navbar-collapse.collapse.in { background-color: #00142b; padding-right: 0px; padding-left: 0px; }  
	/*Menu*/
	.navbar-custom li > a { 
		margin-left: 0rem !important; 
		margin-right: 0rem !important; 
		margin-top: 24px !important;
		margin-bottom: 24px !important;
	}
	.navbar-custom.navbar-transparent li > a { 
		margin-left: 1.500rem !important; 
		margin-right: 1.500rem !important; 
	}
	.navbar-custom .nav li.active a:before, 
	.navbar-custom .nav li a:hover:before {
		display: none;
	}
	/*Dropdown Menu*/
	.navbar-custom .navbar-nav .dropdown-menu > li > a {
		display: block;
		padding: 3px 20px;
		clear: both;
		font-weight: normal;
		white-space: nowrap;
	}
	.navbar-custom .navbar-nav .dropdown-menu > li > a:hover, 
	.navbar-custom .navbar-nav .dropdown-menu > li > a:focus	{
		color: #fff;
	}
	.navbar-custom .navbar-nav .open .dropdown-menu {
		position: static;
		float: none;
		width: auto;
		margin-top: 0;
		background-color: transparent;
		border: 0;
		-webkit-box-shadow: none;
		box-shadow: none;
	}
	.navbar-custom .navbar-nav .open .dropdown-menu > li > a {
		line-height: 20px;
	}
	.navbar-custom .navbar-nav .open .dropdown-menu .dropdown-header,
	.navbar-custom .navbar-nav .open .dropdown-menu > li > a {
		padding: 12px 0px;
		margin-bottom: 0px !important;
		margin-top: 0px !important;
	}
	.navbar-custom .dropdown-search {
		border-bottom: 1px solid rgba(73, 71, 71, 0.30) !important;
	}
	.navbar-custom .dropdown-toggle:after,
	.navbar-custom .dropdown-menu .dropdown-toggle:after {
		right: 15px;
		content: "\f107";
	}
	.navbar-custom .nav > .open > .dropdown-toggle:after,
	.navbar-custom .dropdown-menu .dropdown.open .dropdown-toggle:after {
		right: 15px;
		content: "\f106";
	}
	/*Header Module*/
	.navbar-custom.navbar-transparent .header-module {
		margin-left: 1.500rem !important;
		margin-right: 1.500rem !important;
	}
	.header-module { margin-left: 0rem; margin-right: 0rem; margin-top: 0rem; }
	.site-branding-text { float: left; padding: 20px 15px; }
}
@media (max-width: 768px) {
	.navbar-custom .container-fluid {  padding: 0 15px; }	
	.navbar-toggle { margin-right: 15px; }
	.navbar-custom li > a,
	.navbar-custom.navbar-transparent li > a { 
		margin-left: 0.938rem !important; 
		margin-right: 0.938rem !important; 
	}
	/*Header Module*/
	.header-module { margin-left: 0.938rem; margin-right: 0.938rem; }
}		

@media (min-width: 1500px) {
    .container {
        width: 1370px;
    }
}

/*--------------------------------------------------------------
	Navbar For Boxed Layout
--------------------------------------------------------------*/

body.boxed .navbar-custom .container-fluid { padding: 0 15px; }
@media (min-width: 992px) { body.boxed .navbar-custom .container-fluid { width: 970px; } }
@media (min-width: 1200px) { body.boxed .navbar-custom .container-fluid { width: 1170px; } }


/*--------------------------------------------------------------
	Header Social Icons
--------------------------------------------------------------*/

.header-social-icon {
    border-left: 1px solid rgba(255, 255, 255, 0.40);
    padding-left: 25px;
    display: inline-block;
    line-height: 16px;
    position: relative;
    top: 0px;
}
.small-social-icon {  margin: 0;
	list-style: none;
    padding: 0;
}
.small-social-icon li {
	margin: 0 0 0 10px;
    display: inline-block;
	line-height: 14px;
}
.small-social-icon li a {
	text-align: center;
	width: auto;
	height: auto;
	font-size: 1.5rem;
	line-height: 16px;
	color: #fff;
}
.header-social-icon .small-social-icon li:first-child { margin-left: 0px; }
@media (max-width: 991px) { 
	.navbar-custom .small-social-icon li a { 
		margin-left: 0 !important; 
		margin-right: 0 !important; 
	}
}
.navbar-custom + .main {
  margin-top: 50px;
}

/*===================================================================================*/
/*	Slider - Video Static
/*===================================================================================*/

/* Video Background*/
.video-controls-box {
	position: absolute !important;
	bottom: 40px;
	left: 0;
	width: 100%;
	z-index: 1;
}
.video-controls-box a {
	display: inline-block;
	color: #fff;
	margin: 0 5px 0 0;
}

/*Video With Upload*/
.videoContainer {
    position:absolute;
	top: 0; 
	left: 0;
    height:100%;
    width:100%;
    overflow: hidden;
}
.videoContainer video {
	height: 100%;
    width: 100%;
    object-fit: cover;
    overflow: hidden;
}


/*===================================================================================*/
/*	Main Slider - Owl Carousel
/*===================================================================================*/

.main-slider { position: relative; }
.main-slider .overlay, .video-slider .overlay {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	height: 100%;
	width: 100%;
	background-color: rgba(0, 0, 0, 0.4);
}
#slider-carousel { margin: 0px; }
#slider-carousel .item {
    position: relative;
    background-color: #fff;
    background-repeat: no-repeat;
    background-position: center center;
    width: 100%;
    z-index: 0;
    background-size: cover;
}
.home-section {
	position: relative;
	background-color: #333;
	background-repeat: no-repeat;
	background-position: center center;
	width: 100%;
	z-index: 1;
	background-size: cover;
}
.slider-caption { position: relative; display: table; height: 100%; /*margin: 0 auto;*/ z-index: 1; }
.caption-content { display: table-cell; vertical-align: middle; text-align: center; }
.slider-caption .title {font-size: 50px;line-height: 1.3;color: #ffffff;text-shadow: 0px 3px 3px rgba(0, 0, 0, .3);}
.slider-caption .subtitle {color: #ffffff;font-size: 25px;letter-spacing: 0.125rem;font-weight: 600;margin-bottom: 1.250rem;text-shadow: 0px 3px 3px rgba(0, 0, 0, .3);}

/*Slider Pointer*/
.pointer-scroll {
	position: absolute;
	font-family: 'fontAwesome';
	content: '\f103';
	bottom: -33px;
	left: 0;
	right: 0;
	border: 2px solid #ffffff;
	color: #fff;
	z-index: 2;
	text-align: center;
	font-size: 1.700rem;
	line-height: 2;
	display: block;
	width: 66px;
	height: 66px;
	margin: 0px auto;
	border-radius: 50%;
	-webkit-animation: intro 2s;
	animation: intro 2s;
}
.pointer-scroll:hover, .pointer-scroll:focus { color: #fff; }
@media (max-width: 767px) {
	.pointer-scroll { bottom: -25px; width: 50px; height: 50px; font-size: 1.350rem; }
}
.pointer-scroll .scroll { 
	-webkit-animation: finger 1s infinite;
	animation: finger 1s infinite;
}
@-webkit-keyframes intro {
  0% {
    opacity: 1;
    -webkit-transform: translateY(40px);
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes intro {
  0% {
    opacity: 1;
    -webkit-transform: translateY(40px);
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@-webkit-keyframes finger {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
  }
}
@keyframes finger {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
  }
}

/*===================================================================================*/
/*	SECTION HEADER
/*===================================================================================*/

.section-header { margin: -4px 0 45px; padding: 0; position: relative; text-align: center; }
.section-header .section-title { margin-top: 0.313rem; margin-bottom: 0; }
.section-header .section-subtitle {font-size: 1.3rem;font-weight: 500;color: #393939b8;margin: 1.5%;text-align: center;}
@media (min-width: 768px) { .section-header.text-left { text-align: left; width: 80%; } }
hr.divider { border-top: none; width: 70px; height: 2px; margin: 15px auto 21px; }


/*===================================================================================*/
/*	Mixed Classes
/*===================================================================================*/

.bg-grey { background-color: #fafafa !important; }
.text-white { color: #ffffff !important; }
.funfact .col-md-3:nth-child(4n+1) { clear:left; }
.services .col-md-4:nth-child(3n+1),
.funfact .col-md-4:nth-child(3n+1){ clear:left; }
@media (min-width: 768px) and (max-width: 992px) {
	.services .col-md-4:nth-child(3n+1), 
	.funfact .col-md-4:nth-child(3n+1)	{ 
		clear: none; 
	}
	.services .col-sm-6:nth-child(2n+1), 
	.funfact .col-sm-6:nth-child(2n+1)	{ 
		clear:left; 
	}	
}
.v-center {
    padding: 0px;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -webkit-box-align: center;
    align-items: center;
}
@media (max-width: 992px) { .v-center { display: block; } }
body.boxed .container-fluid.fullwidth { padding-right: 15px; padding-left: 15px; }

/*===================================================================================*/
/*	Section Module
/*===================================================================================*/

.section-module {position: relative;padding: 80px 0 80px;}
@media only screen and (max-width: 600px) { 
	.section-module { padding: 80px 0 30px; }
	.funfact-inner { margin: 0 0 30px !important; padding: 15px !important; }
	.testimonial-wrapper { padding: 80px 0 90px !important; min-height: 400px !important; }
	.testimonial { padding: 0px 0 25px !important; }
	.call-to-action, .call-to-action-one { padding: 80px 0 80px !important; }
	.pricing { padding-top: 80px !important; }
	.subscribe-newsletter { padding: 75px 0 80px !important; }
	.sponsors { padding: 70px 0 !important; }
	.footer-sidebar { padding: 70px 0 20px !important; }
	.site-branding.pbottom-50 { padding-bottom: 30px !important; }
}
.section-module a{
	color: #393939;
}
.elementor-section	{position: relative; padding: 0px;}
@media only screen and (max-width: 600px)
	.section-module { padding: 0px; }


/*===================================================================================*/
/*	SERVICE SECTION
/*===================================================================================*/

.services {background-color: #ffffff; /* background: url("") left top/510px no-repeat fixed; */}
.services .post {background-color: #eef1f4;margin: 0 0 15px;padding: 30px 20px 30px;border-radius: 3px;transition: 0.3s;}
.services .post:hover { 
	background-color: #fff;
	-webkit-transform: translateY(-7px);
	-ms-transform: translateY(-7px);
	transform: translateY(-7px);
	-webkit-box-shadow: 0 10px 25px 0 rgba(0, 0, 0, 0.1);
	box-shadow: 0 10px 25px 0 rgba(0, 0, 0, 0.1);
}
.services .post:before, .services .post:after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	display: inline-block;
	opacity: 0;
	transition: opacity 0.60s, -webkit-transform 0.60s;
	transition: opacity 0.60s, transform 0.60s;
	transition: opacity 0.60s, transform 0.60s, -webkit-transform 0.60s;
	z-index: 0;
	border-radius: 3px;
}
.services .post:before {
	border-top-color: #f3f3f3;
	border-top-width: 1px;
	border-top-style: solid;
	border-bottom-width: 3px;
	border-bottom-style: solid;
	-webkit-transform: scale(0, 1);
	-ms-transform: scale(0, 1);
	transform: scale(0, 1);
}
.services .post:after {
	border-left-color: #f3f3f3;
	border-right-color: #f3f3f3;
	border-left-width: 1px;
	border-left-style: solid;
	border-right-width: 1px;
	border-right-style: solid;
	-webkit-transform: scale(1, 0);
	-ms-transform: scale(1, 0);
	transform: scale(1, 0);
}
.services .post:hover:after, 
.services .post:hover:before {
	opacity: 1;
	-webkit-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
}
.services .post-thumbnail { 
    position: relative;
    -webkit-transition-duration: 0.2s;
    transition-duration: 0.2s;
    text-align: center;
    margin: 0 auto 1.875rem;
}
.services .post-thumbnail img { border-radius: 2px; }
.services .post-thumbnail a { position: relative; z-index: 1; }
.services .post-thumbnail i.fa { 
	background: #f6f6f6;
    border-radius: 50%;
    width: 6.75rem;
    height: 6.25rem;	
	font-size: 5.250rem;
	line-height: 1.095;
	padding: 5px; 
	position: relative; 
	text-shadow: -2px 0 #000, 0 2px #000, 2px 0 #000, 0 -2px #000; 
}
.services .entry-header { display: block; margin: 0 0 15px; padding: 0; }
.services .entry-header .entry-title  { margin: 0; font-weight: 600; }
.services .entry-header .entry-title a { position: relative; z-index: 1; }
.services p { margin: 0; }


/*===================================================================================*/
/*	About Section
/*===================================================================================*/

.about-thumbnail { margin-top: 40px; margin-left: 40px; }
.about-content {
    padding-left: 50px;
    padding-top: 25px;
    padding-bottom: 25px;
    border-left: 8px solid #2a83e8;
    margin-top: 15%;
    margin-bottom: 15%;
    }
.about-content a {color: #333333;text-decoration: none !important;}
@media (min-width: 768px) and (max-width: 992px) { 
	.about-thumbnail { margin-top: 25px; margin-left: 25px; }
	.about-content { padding-left: 30px; } 
}
@media (max-width: 768px) {  
	.about-thumbnail { margin-top: 15px; margin-left: 15px; }
	.about-content { padding-left: 5%; } 
}
.about-content .entry-subtitle { margin: 0 0 5px; font-weight: 700; }
.about-content .entry-title { margin: 0 0 18px; }

/*===================================================================================*/
/*	PORTFOLIO FILTERS
/*===================================================================================*/

.portfolio-filters { text-align: center; margin: 0 0 40px; padding: 0; }
.portfolio-filters li { display: inline-block; position: relative; margin: 0px 20px 5px; }
.portfolio-filters li a {
	background: transparent; 
	color: #333333;
    display: inline-block;
    text-decoration: none;
	font-weight: 600;
    padding: 0px;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
	position: relative;
}
.portfolio-filters li.active > a, 
.portfolio-filters li > a:hover { background: transparent; color: #121212; }
.portfolio-filters li.active a:before, 
.portfolio-filters li a:before {
	position: absolute;
	-webkit-transition: all 0.35s ease;
	transition: all 0.35s ease;
}
.portfolio-filters li.active a:before, 
.portfolio-filters li a:before {
	top: unset;
	bottom: 0;
	display: block;
	height: 2px;
	width: 0%;
	content: "";
}
.portfolio-filters li.active a:before, 
.portfolio-filters li a:hover:before {
	opacity: 1;
	width: 100%;
}
@media (max-width: 768px) { .portfolio-filters li { margin: 0px 13px 5px; } }
	
/*===================================================================================*/
/*	Portfolio Section
/*===================================================================================*/

.portfolio .post { position: relative; overflow: hidden; margin: 0px 0 30px; width: 100%; text-align: left; }
.portfolio .post *,
.portfolio .post *:before,
.portfolio .post *:after {
	width: inherit;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-transition: all 0.20s linear;
	transition: all 0.20s linear;
}
.portfolio .post figcaption {
	position: absolute;
	bottom: 0%;
	text-align: center;
	width: 100%;
	-webkit-transform: translateY(100%);
	transform: translateY(100%);
	padding: 15px 30px 25px;
	background-color: transparent;
	-webkit-transition: 0.4s;
	transition: 0.4s;
	z-index: 1;
}
.portfolio .post .entry-title a { color: #fff; }
.portfolio .post .entry-title a:hover { color: #fafafa; }
.portfolio .post .entry-title, .portfolio .post p { color: #fff; margin: 0; padding: 0; }
.portfolio .post .entry-title { font-weight: 500; font-size: 1.375rem; line-height: 1.3; margin: 0 0 3px; }
.portfolio .post i {
	background-color: transparent;
    color: #fff;
    border: 1px solid #fff;
    position: absolute;
    font-size: 2rem;
    line-height: 0.85;
    width: 1.875rem;
	height: 1.875rem;
    top: 25px;
    right: 25px;
    text-align: center;
    -webkit-transform: translateY(-55px);
    transform: translateY(-55px);
	-webkit-transition: 0.3s; transition: 0.3s;
	font-style: normal;
	z-index: 1;
}
.portfolio .post i:hover { background-color: #fff; color: #121212; border: 1px solid #fff; }
.portfolio .post:hover img {
	zoom: 1;
	filter: alpha(opacity=20);
	-webkit-opacity: 0.2;
	opacity: 0.2;
	-webkit-transform: translateY(0px);
	transform: translateY(0px);
}
.portfolio .post:hover figcaption,
.portfolio .post:hover .entry-title,
.portfolio .post:hover p, 
.portfolio .post:hover i {
	-webkit-transform: translateY(0);
	transform: translateY(0);
	-moz-transform: translateY(0);
	opacity: 1;
}
.portfolio .post::before, 
.portfolio .post::after {
    position: absolute;
    top: 10px;
    right: 10px;
    bottom: 10px;
    left: 10px;
    content: '';
    opacity: 0;
    -webkit-transition: opacity 0.60s, -webkit-transform 0.60s;
    transition: opacity 0.60s, transform 0.60s;
}
.portfolio .post::before {
	border-top: 1px solid rgba(255, 255, 255, 0.5);
	border-bottom: 1px solid rgba(255, 255, 255, 0.5);
	-webkit-transform: scale(0,1);
	transform: scale(0,1);
}
.portfolio .post::after {
	border-right: 1px solid rgba(255, 255, 255, 0.5);
	border-left: 1px solid rgba(255, 255, 255, 0.5);
	-webkit-transform: scale(1,0);
	transform: scale(1,0);
}
.portfolio .post:hover::before,
.portfolio .post:hover::after {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}
.rd {
    border-radius: 20px;
}

/*===================================================================================*/
/*	26.0 BLOG SECTION 
/*===================================================================================*/

.home-blog .container-fluid { margin-left: 15px; margin-right: 15px; overflow: hidden; }
.home-blog .owl-carousel .owl-stage-outer { overflow: visible !important; }

.home-blog { margin: 0; width: 100%; }
.home-blog .post, .site-content .post, .home-blog .post, .site-content .page { 
	background-color: #ffffff;
	margin: 0 0 50px; 
	padding: 0; 
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
	-webkit-box-shadow: 0px 0px 18px 0px rgba(0, 0, 0, 0.2);
	-moz-box-shadow: 0px 0px 18px 0px rgba(0, 0, 0, 0.2);
	box-shadow: 0px 0px 18px 0px rgba(0, 0, 0, 0.2);
}
.post.sticky
{
	background-color: #efefef !important;
}
.home-blog .post:hover, .site-content .blog .post:hover {
	-webkit-box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.3);
	-moz-box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.3);
	box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.3);
}
.home-blog .post a, .site-content .blog .post a { text-decoration: none; } 
.home-blog .post p:last-child, .site-content .blog .post p:last-child { margin: 0; } 
.post-content { padding: 25px 30px 30px; }
.post-content > hr { background-color: #f3f3f3; margin-top: 40px; margin-bottom: 20px; }
.home-blog .post-thumbnail, .site-content .blog .post-thumbnail { position: relative; overflow: hidden; margin: 0; }
.home-blog .post-thumbnail img { transition: all 300ms ease-out 0s; width: 100%; opacity: 1; }
.home-blog .post .entry-header, .site-content .blog .post .entry-header { margin: 0 0 15px; }
.home-blog .post .entry-header .entry-title, .site-content .blog .post .entry-header .entry-title { color: #333333; line-height: 1.3; font-weight: 700; margin: 0; }
.entry-header .entry-title > a { color: #333333; text-decoration: none; transition: all 0.3s ease 0s; }

.home-blog .col-md-4:nth-child(3n+1){ clear:left; }
@media (min-width: 768px) and (max-width: 992px) {
	.home-blog .col-md-4:nth-child(3n+1) { clear: none; }
	.home-blog .col-sm-6:nth-child(2n+1) { clear:left; }	
}

/*===================================================================================*/
/*	26.1 BLOG META 
/*===================================================================================*/

.entry-meta { color: #a5a5a5; font-weight: 500; font-size: 0.938rem; margin: 0 0 15px; width: 100%; overflow: hidden; }
.entry-meta > span { color: #a5a5a5; margin: 0px 15px 0px 0px; }
@media only screen and (max-width: 600px){ .entry-meta > span { margin-right: 10px; } }
.entry-meta a { color: #a5a5a5; padding: 0; display: inline-block; transition: 0.3s ease-in-out; }
/*Meta Date*/
.entry-meta .entry-date a { color: #333333; }
/*Meta Category*/
.entry-meta .cat-links a:after, .entry-meta .tag-links a:after { content: ','; padding-left: 1px; Padding-right: 5px; }
.entry-meta .cat-links a:last-child::after, .entry-meta .tag-links a:last-child::after { display: none; }
/*Meta Comments*/
.entry-meta .cat-links::before, 
.entry-meta .tag-links::before, 
.entry-meta .entry-date::before { 
	font-family: FontAwesome; 
	margin-right: 7px; 
	margin-left: 1px; 
	color: #ababab; 
}
.entry-meta .entry-date::before { content: "\f073"; }
.entry-meta .cat-links::before { content: "\f115"; }
.entry-meta .tag-links::before { content: "\f02c"; }
.entry-meta .comment-links a::before { content: "\f075"; font-family: FontAwesome; margin-right: 7px; margin-left: 1px; color: #a5a5a5; }
/*Meta Date & Avatar*/
.item-meta { font-size: 0.938rem; line-height: 1.4; font-weight: 500; overflow: hidden; }
.item-meta .avatar { 
    display: block;
    float: left;
    width: 30px;
    height: auto;
    margin: 0px 15px 0 0px;
    border-radius: 100%;
}
.item-meta .avatar img { 
    border-radius: 100%;
	width: 30px;
	max-width: unset;
}
.item-meta a { color: #a5a5a5; transition: 0.3s ease-in-out; }
/*Meta - Social Links*/
.item-meta .small-social-icon { padding-top: 4px; }
.item-meta .small-social-icon li a {
    font-size: 0.875rem;
    line-height: 16px;
    color: #333333;
}
@media (max-width: 992px) { .item-meta.v-center, .item-meta .v-center { display: flex; } }
/*Edit Post*/
.edit-link .post-edit-link { font-weight: 700; color: #333; }
.edit-link .post-edit-link:hover { text-decoration: underline; }
/*More Link*/
.more-link.btn-ex-small {
	font-size: 0.938rem;
}

.blog-author img, .pull-left-comment img {border-radius:0%;}
/*===================================================================================*/
/* Blog & Detail Page
/*===================================================================================*/

@media (min-width: 992px) {
	.site-content { padding-top: 0px !important; }	
	.site-content .blog { margin: -250px 0 0;} 
	.page-default #content { padding-top: 150px !important; margin: -140px 0 0;}
}
.site-content .blog { padding-top: 130px;}
@media (min-width: 601px) and (max-width: 768px){.site-content .blog{padding-top:80px;}}
@media (max-width:600px){.site-content .blog{padding-top:50px;}}
.site-content { padding: 0px 0 50px; }
.site-content .blog .post {
	margin: 0 0 70px;
    -webkit-box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.2);
}
.site-content .blog .post:hover {
    -webkit-box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.2);
}
.site-content .blog .post:last-child {
	margin: 0 0 60px;
}


.site-content .blog .post-thumbnail img { 
	transition: all 300ms ease-out 0s; 
	width: auto; 
	opacity: 1; 
}


.site-content .blog .post-content { padding: 35px 30px 30px; overflow: auto; }
.site-content .blog .post-content > hr { margin-top: 60px; }
.site-content .blog .entry-header { margin: 0 0 22px; }
.site-content .blog .more-link { font-size: 0.938rem; margin-top: 10px; }
.site-content .blog.blog-detail .post-content { text-align: left; }
.site-content .blog .post-content-detail { padding: 35px 30px 10px; }

/*Paginations*/
.pagination { margin: 0px; display: block; padding: 40px 0 50px; text-align: center; }
.pagination a, .nav-links .page-numbers {
	background-color: #fff; 
	border: 1px solid #f3f3f3; 
	color: #333333;
	cursor: pointer;
	display: inline-block;
	line-height: 1.2;
	font-weight: 600;
	transition: all 0.3s ease 0s;
	font-size: 1.125rem;
	border-radius: 0px;
	margin: 0 2px 10px;
	padding: 10px;
	vertical-align: baseline;
	white-space: nowrap;
	width: 47px;
	height: 47px;
}
.pagination a:hover, 
.pagination a.active, 
.nav-links .page-numbers.current { 
	background-color: #red; 
	border: 1px solid #f3f3f3; 
}

/*Blog Author*/
.blog-author { 
	background-color: #ffffff; 
	-webkit-box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.2);
	margin: 0 0px 70px; 
	padding: 35px 30px 30px; 
}
.blog-author .avatar { margin: 0px 40px 30px 0px; height: 120px; width: 120px; float: left; }	
.blog-author .name { margin: 0 0 10px; font-weight: 700; }
.blog-author .small-social-icon li a {
    color: #333333;
}
/*Related Post*/
.related-post { 
	background-color: #ffffff; 
	-webkit-box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.2);
	margin: 0 0px 70px; 
	padding: 35px 30px 30px; 
	overflow: hidden;
}
.site-content .blog .related-post .post { 
	-webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
	margin: 0;
}
.site-content .blog .related-post .post-content {
    padding: 20px;
	text-align: center;
}
.site-content .blog .related-post .entry-header {
    margin: 0px;
}
.site-content .blog .entry-content { text-align: left; }
/*Comments*/
.comment-section { 
	background-color: #ffffff; 
	-webkit-box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.2);  
	margin: 0 0px 70px; 
	padding: 30px 30px 40px; 
}
.comment-title { display: block; margin: 0 0 25px; }
.comment-title h5 { margin: 0; font-weight: 700; }
.comment-box { margin: 0 0 30px; padding: 30px; position: relative; border: 1px solid #f3f3f3; }
.comment-box:last-child { margin: 0px; }
.pull-left-comment { float: left; margin-right: 20px; width: 50px; height:50px; }
.comment-img { margin: 0px 0 20px;  }
.comment-detail { }
.comment-detail-title { margin: 0 0 5px; font-weight: 700; }
.comment-date { font-size: 0.875rem; color: #a5a5a5; display: block; margin: 0 0 15px; font-weight: 400; }
.reply a {
    color: #fff;
    border-radius: 25px;
    display: inline-block;
    font-size: 0.813rem;
    padding: 7px 25px;
    font-weight: 500;
    transition: 0.3s ease-in-out 0s;
}
.reply a:hover, .reply a:focus { color: #fff; }

/*Comment Form*/
.comment-form-section { 
	background-color: #ffffff; 
	-webkit-box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.2);  
	margin: 0 0px 60px; 
	padding: 30px 25px 2px;  
}
.comment-form-section form label { font-size: 0.938rem; display: block; margin: 0 0 20px; font-weight: 600; }
.comment-form-section form input, .comment-form-section form textarea { margin-bottom: 20px; }
.comment-form-section form input { height: 50px; }

/*===================================================================================*/
/* Sidebar & Widgets Section 
/*===================================================================================*/

@media (min-width: 992px) { .sidebar { padding-left: 30px; } }
.sidebar { padding-top: 70px; }
.sidebar .widget .widget-title { background-color: #f5f5f5; font-weight: 700; font-size: 1.250rem; padding: 10px 20px; }
.sidebar .widget { background-color: #ffffff; }
.widget { background-color: transparent; overflow: hidden; padding: 0 0 70px; margin: 0; }
.widget:last-child { padding: 0 0 45px; }
.widget .widget-title { font-weight: 600; margin: 0 0 30px; text-align: left; word-wrap: break-word; }
/*Sidebar News*/
.widget .post { background: transparent; margin: 0 0 25px; padding: 0 0 12px; box-shadow: none; border-bottom: 1px solid #f3f3f3;  }
.widget .post:last-child { margin: 0px; padding: 0px; border-bottom: none !important; }
.widget .post .entry-title { 
	margin: -5px 0 5px; 
	line-height: 1.5; 
	display: block;
	font-size: 1.000rem;
	word-wrap: break-word;
	font-weight: 600;
}
.site-content.page-default .sidebar
{
	padding-top: 30px;
}
.widget .post .entry-title a { color: #333333; }
.widget .post a.post-thumbnail { display: block; float: left; width: 120px; height: auto; margin-right: 20px; margin-bottom: 20px; }
.widget .post .entry-meta { font-size: 0.813rem; margin: -3px 0 10px }
.widget .post .entry-meta span { margin: 0px; }
.widget .post .entry-meta span:before { display: none; }
/*Sidebar Tags*/
.tagcloud { margin: 0px; overflow: hidden; padding: 0px 0; }
.tagcloud a {
	background-color: #fff; 
	border: 1px solid #f3f3f3; 
	color: #333333;
    cursor: pointer;
    display: inline-block;
	font-size: 0.875rem !important;
	font-weight: 500;
    margin: 0 5px 10px 0;
    padding: 7px 17px;
    transition: all 0.3s ease 0s;
    vertical-align: baseline;
    white-space: nowrap;
}
.widget .tagcloud a:hover { background-color: #fff; border: 1px solid #f3f3f3; }
/*Widget Paragraph*/
.widget p { margin: 0 0 20px; }
.widget p:last-child { margin: 0; }
/*Widget Search*/
.widget_search .search-submit { margin-top: 10px; }
/*Sidebar Calender*/
.widget_calendar {}
.widget table {
	font-weight: 500;
	color: #393939;
	font-size: 0.938rem;
	border-collapse: separate;
	border-spacing: 0;
	border-width: 1px 0 0 1px;
	table-layout: fixed;
	width: 100%
}
.widget #wp-calendar caption { 
	text-align: center;background-color: #333333; 
	color: #ffffff;
	font-weight: 600;
	font-size: 1.000rem;
    margin: 0;
	padding: 10px 0;
}
.widget #calendar_wrap th { color: #333333; text-align: center; border-width: 0 1px 1px 0; line-height: 1.5; }
.widget #calendar_wrap td { border-width: 0 1px 1px 0; line-height: 1.5; }
.widget #wp-calendar tr td { border-width: 0 1px 1px 0; line-height: 1.5; }
.widget #wp-calendar a { color: #333333; font-weight: 600; }
.widget #wp-calendar a:hover, 
.widget #wp-calendar #next a:hover, 
.widget #wp-calendar #prev a:hover { 
	color: #00a7d1; 
}
.widget table, .widget th, .widget td { border: 1px solid rgba(51, 51, 51, 0.1); }
.widget_calendar th, .widget_calendar td { text-align: center; padding: 0.4rem; }
/*Sidebar Widget Archive, Widget categories, Widget Links, Widget Meta, widget Nav Menu, 
Widget Pages, Widget Recent Comments, Widget Recent Entries */
.widget_archive ul, .widget_categories ul, .widget_links ul, 
.widget_meta ul, .widget_nav_menu ul, .widget_pages ul, 
.widget_recent_comments ul, .widget_recent_entries ul { 
	padding: 0;
	margin: 0;
	list-style: outside none none;
	font-weight: 500;
}
.widget_archive li, .widget_categories li, .widget_links li, .widget_meta li, 
.widget_nav_menu li, .widget_pages li, .widget_recent_comments li, .widget_recent_entries li {
    margin: 0;
	padding-left: 15px !important;
	padding-top: 12px;
	padding-bottom: 12px;
	border-bottom: 1px solid #f3f3f3;
}
.widget_archive li:last-child, .widget_categories li:last-child, .widget_links li:last-child, .widget_meta li:last-child, 
.widget_nav_menu li:last-child, .widget_pages li:last-child, .widget_recent_comments li:last-child, .widget_recent_entries li:last-child {
    margin: 0px;
	padding-bottom: 0px;
	border-bottom: none;
}
.widget li a, .widget_archive li a, .widget_categories li a, .widget_links li a, .widget_meta li a, .widget_nav_menu li a, .widget_pages li a, .widget_recent_comments li a, .widget_recent_entries li a {
	color: #333333;
	transition: all 0.3s ease 0s;
	position: relative;
}
.widget_archive li a:before, .widget_categories li a:before, .widget_links li a:before, .widget_meta li a:before, 
.widget_nav_menu li a:before, .widget_pages li a:before, .widget_recent_comments li a:before, .widget_recent_entries li a:before {
    content: "\f105";
	font-family: FontAwesome;
    position: absolute;
    right: auto;
    left: -15px;
    font-size: 0.938rem;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}
.widget_archive li a:hover:before, .widget_categories li a:hover:before, .widget_links li a:hover:before, 
.widget_meta li a:hover:before, .widget_nav_menu li a:hover:before, .widget_pages li a:hover:before, 
.widget_recent_comments li a:hover:before, .widget_recent_entries li a:hover:before {
    left: -12px;
}
.widget_recent_entries li a { display: block; }
/*Widget Recent Comment*/
.widget_recent_comments li { padding-left: 0px !important; }
.widget_recent_comments li a:before { display: none; }


	
/*===================================================================================*/
/*	FUNFACT SECTION
/*===================================================================================*/

.funfact { position: relative; }
.funfact-inner { 
	cursor: pointer; 
	margin: 0 0 50px; 
	border: 5px solid transparent; 
	padding: 30px; 
	-webkit-transition: -webkit-transform 0.5 s ease;
	-moz-transition: -moz-transform 0.5s ease;
	transition: 0.5s ease all;
	word-wrap: break-word;
}
.funfact-inner:hover { 
	border: 5px solid rgba(255, 255, 255, 0.7);     
	-webkit-box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.4); 
	-moz-box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.4);
	-ms-box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.4); 
	box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.4); 
	-webkit-transform: scale(1.03);
	-moz-transform: scale(1.03);
	-o-transform: scale(1.03);
	transform: scale(1.03);
	-webkit-transform-origin: center center;
	-moz-transform-origin: center center;
	-o-transform-origin: center center;
	transform-origin: center center;
} 
.funfact-icon { color: rgba(255, 255, 255, 0.7); font-size: 2.250rem !important; margin-bottom: 20px; transition: 0.3s; }
.funfact-title { margin-bottom: 7px; color: #ffffff; }
.funfact-inner .description { color: #fff; font-size: 1.125rem; margin: 0; }
@media (max-width: 768px) { .funfact-inner:hover { transform: scale(1); } }

/*===================================================================================*/
/*	TESTIMONIAL SECTION
/*===================================================================================*/

.testimonial-wrapper {
	position: relative;
	width: 100%;
	min-height: 450px;
	background: url("images/testimonial-bg.jpg") center center no-repeat;
	background-size: cover;
	padding: 100px 0 110px;
}
.testimonial-wrapper .overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 11, 24, 0.8);
}
.testimonial { 
	height: 100%; 
	width: 100%;
	margin-top: -210px;
	padding: 0px 0 50px; 
	position: relative;
	background-color: transparent;
}
@media only screen and (max-width: 480px) { 
	.testimonial { margin-top: -170px !important; }
}
.testmonial-block { 
	background-color: #ffffff;
	border-left: none;
	position: relative; 
	margin: 0px 0 50px; 
	padding: 50px 30px 50px; 
	border-left: none; 
	font-style: normal;
	box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
	transition: 0.3s;
	-webkit-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1); 
	-moz-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
	-ms-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1); 
	box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
	-webkit-transform: translateY(0px);
	-ms-transform: translateY(0px);
	transform: translateY(0px);		
	border: 1px solid #eee;
	font-size: 1.000rem;
    line-height: 1.6;
    color: #393939;
    font-weight: 400;
}
.testmonial-block:hover { 
	-webkit-box-shadow: 0 20px 25px 0 rgba(0, 0, 0, 0.1); 
	-moz-box-shadow: 0 20px 25px 0 rgba(0, 0, 0, 0.1);
	-ms-box-shadow: 0 20px 25px 0 rgba(0, 0, 0, 0.1); 
	box-shadow: 0 20px 25px 0 rgba(0, 0, 0, 0.1);
	-webkit-transform: translateY(-7px);
	-ms-transform: translateY(-7px);
	transform: translateY(-7px);
}
	
.description-box { background-color: #ffffff; border-radius: 0px; margin: 0 0 35px; padding: 30px; position: relative; min-height: 182px; }
.testmonial-block .avatar { margin: 0px auto 30px; width: 100px; height: auto;  }
.testmonial-block .description { margin: 0 0 24px; }

.testmonial-block .name { color: #333333; margin: 0px 0 -5px; font-weight: 600; }
.testmonial-block .name > a { color: #333333; }

.testmonial-block .designation { color: #9d9d9d; font-size: 0.875rem; padding-left: 7px; font-weight: 500; }
.testmonial-block .designation::before { content: "/"; padding-right: 7px; }

.star-rating { overflow: hidden; position: relative; font-weight: 400; margin: 0 auto 25px; }
.star-rating .fa { font-size: 0.938rem; color: #c1c1c1; }
.star-rating .checked { color: #ffd203; }


/*===================================================================================*/
/*    Subscribe Newsletter
/*===================================================================================*/

.subscribe-newsletter {
    position: relative;
    width: 100%;
    background-position: center center; 
    background-repeat: no-repeat;
    background-size: cover;
    padding: 100px 0 110px;
    background-attachment: fixed;
}
.subscribe-newsletter .overlay {
   position: absolute;
   top: 0;
   bottom: 0;
   left: 0;
   right: 0;
   height: 100%;
   width: 100%;
}


.subscribe-newsletter .widget:last-child { padding: 0px; }


.subscribe-newsletter .section-header { margin: -4px 0 0px; }
.sib_signup_form { width: 80%; margin: 0 auto; }
@media (min-width: 600px) { .sib_signup_form { width: 60%; margin: 0 auto; } }
.sib_signup_form .form-control { font-size: 0.938rem; height: 50px; padding: 10px 15px; }
.sib_signup_form .input-group-btn  input[type="submit"] { height: 50px; font-size: 0.938rem; padding: 10px 20px; border-radius: 4px; border-top-left-radius: 0 !important; border-bottom-left-radius: 0 !important; }
.sib_signup_form .input-group-btn  input[type="submit"]:hover, .sib_signup_form .input-group-btn  input[type="submit"]:focus {
   background: #202020;
   color: #fff;
}
.sib_signup_form .input-group-addon  > i { color: #333; }

/*SendinBlue Plugin Subscriber to Newsletter*/

.subscribe-newsletter .widget.widget_sib_subscribe_form { padding: 0; }
.sib_signup_form { margin-top: 25px; }
.sib_signup_form input[type="email"] { 
    font-size: 0.938rem;
   height: 50px;
   padding: 10px 15px;
}
.sib_signup_form input[type="email"]:focus {
   border-color: #2a83e8;
}
.sib_signup_form .input-group-addon {
   padding: 6px 15px;
}
.sib_signup_form .input-group-btn  input[type="submit"] {
   height: 50px;
   font-size: 0.938rem;
   padding: 10px 20px;
   font-weight: 400;
}
li.widget_sib_subscribe_form { list-style: none; }
.widget_sib_subscribe_form .widgettitle { display: none; }


/*===================================================================================*/
/*	TEAM MEMBERS SECTION
/*===================================================================================*/

.section-module.team-members {padding-bottom: 0;padding-top: 0;}
.team-grid { text-align: center; position: relative; overflow: hidden; }
.team-grid .details {
  width: 100%;
  padding-bottom: 10px;
  position: absolute;
  left: 0;
  bottom: -270px;
  min-height: 345px;
 -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -ms-transition: all 0.3s;
  transition: all 0.3s;
}
.team-grid .details:after {
  content: "";
  background: url("images/shadow-gradiant.png") center center/cover no-repeat;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: -20px;
  opacity: 1;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -ms-transition: all 0.3s;
  transition: all 0.3s;
}
.team-grid:hover .details { bottom: -225px; }
.team-grid:hover .details:after { opacity: 1; }
.team-grid .details .name,
.team-grid .details .position,
.team-grid .details a {
  color: #fff;
}
.team-grid .details .name { margin: 0 0 9px; font-weight: 500; z-index: 10; position: relative; }
.team-grid .details .position { font-size: 0.938rem; display: block; margin: 0; z-index: 10; position: relative; }
.team-grid .social-links { margin-top: 20px; display: inline-block; position: relative; z-index: 10; list-style: none; }
.team-grid .social-links li { float: left; margin-right: 0px; }
.team-grid .social-links li:last-child { margin-right: 0; }
@media (min-width: 768px) and (max-width: 992px) { 
	.team-grid .details { bottom: -370px; min-height: 435px; }
	.team-grid:hover .details { bottom: -315px; }
	.team-members .fullwidth { padding-left: 15px; padding-right: 15px; }
}
@media (min-width: 200px) and (max-width: 768px) { 
	.team-grid .details { bottom: -380px; min-height: 435px; }
	.team-grid:hover .details { bottom: -315px; }
	.team-members .fullwidth { padding-left: 15px; padding-right: 15px;  }
}

/*===================================================================================*/
/*	CALL TO ACTION SECTION
/*===================================================================================*/

.call-to-action, .call-to-action-one { padding: 100px 0 100px; }
.call-to-action-one .title { margin: 0 0 10px; }
.call-to-action .title { font-weight: 600; margin: 0 0 5px; }
.call-to-action p, .call-to-action-one p { margin: 0px; }
@media (min-width: 992px) { 
	.call-to-action { padding: 190px 0 100px; }
	.mtop-space-150 { margin-top: -150px; }
}
@media (max-width: 768px) { 
	.call-to-action, .call-to-action-one { text-align: center; }
	.call-to-action .text-left, .call-to-action .text-right, 
	.call-to-action-one .text-left, .call-to-action-one .text-right { 
		text-align: center; 
	}
	.call-to-action .ptop-15, .call-to-action-one .ptop-15 { padding-top: 40px !important; }
}

/*===================================================================================*/
/*	Google map
/*===================================================================================*/

#wpgmza_map{float:none !important;}

/*===================================================================================*/
/*Contact Info Section
/*===================================================================================*/

.contact {
    position: relative;
    width: 100%;
	height: 100%;
    background: url(../images/testimonial-bg.jpg) center center no-repeat;
    background-size: cover;
}
.contact .overlay {
   position: absolute;
   top: 0;
   bottom: 0;
   left: 0;
   right: 0;
   height: 100%;
   width: 100%;
   background-color: rgba(250, 250, 250, 0.95);
}
.contact-form { 
	background-color: #fff; 
	-webkit-box-shadow: 0px 0px 35px 0px rgba(0, 0, 0, 0.3);
	-moz-box-shadow: 0px 0px 35px 0px rgba(0, 0, 0, 0.3);
	box-shadow: 0px 0px 35px 0px rgba(0, 0, 0, 0.3);
	margin: 0 0 50px; 
	padding: 50px 50px 40px 50px; 
}
.contact .title { font-size: 2.500rem; margin-bottom: 35px; }
.contact .subtitle { margin-bottom: 5px; }

.wpcf7-form { margin: 0; }
.wpcf7-form p { margin: 0 0 15px; }

.wpcf7-form label { font-weight: 500; display: block; margin-bottom: 15px; }
.wpcf7-form label:last-child { margin-bottom: 0px; }
.wpcf7-form input[type="text"], .wpcf7-form input[type="email"], .wpcf7-form textarea, .wpcf7-form select, 
.wpcf7-form input[type="url"], .wpcf7-form input[type="password"], .wpcf7-form input[type="search"], 
.wpcf7-form input[type="number"], .wpcf7-form input[type="tel"], .wpcf7-form input[type="range"], 
.wpcf7-form input[type="date"], .wpcf7-form input[type="month"], .wpcf7-form input[type="week"], 
.wpcf7-form input[type="time"], .wpcf7-form input[type="datetime"], .wpcf7-form input[type="datetime-local"], 
.wpcf7-form input[type="color"] { 
	border-top: none;
    border-left: none;
    border-right: none;
	border-bottom: 1px solid #696969;
	border-radius: 0;
	font-size: 1.000rem;
	padding: 12px 0px;
	font-weight: 500;
}
.wpcf7-form input[type="text"]:focus, .wpcf7-form input[type="email"]:focus, .wpcf7-form textarea:focus, 
.wpcf7-form select:focus, .wpcf7-form input[type="url"]:focus, .wpcf7-form input[type="password"]:focus, 
.wpcf7-form input[type="search"]:focus, .wpcf7-form input[type="number"]:focus, .wpcf7-form input[type="tel"]:focus, 
.wpcf7-form input[type="range"]:focus, .wpcf7-form input[type="date"]:focus, .wpcf7-form input[type="month"]:focus, 
.wpcf7-form input[type="week"]:focus, .wpcf7-form input[type="time"]:focus, .wpcf7-form input[type="datetime"]:focus, 
.wpcf7-form input[type="datetime-local"]:focus, .wpcf7-form input[type="color"]:focus { 
	outline: 0; 
}
.wpcf7-form .wpcf7-submit { margin: 15px 0 0; text-align: center; }

/*Contact Info*/
.contact-info {
	background-color: transparent;
    padding: 50px;
    margin-top: 25px;
    margin-bottom: 25px;
}
.contact-widget { margin: 0 0 30px; }
.contact-icon {
	color: #fff;	
    float: left;
    margin: 0 25px 25px 0;
    padding: 3px;
	width: 2.563rem;
	height: 2.563rem;
	text-align: center;
	border-radius: 100%;
	font-size: 1.375rem;
	line-height: 1.6;
}
.contact-icon i { color: #fff; transition: all 0.3s ease-in-out 0s; }
.contact-widget .title { font-weight: 700; font-size: 1.375rem; margin: 0 0 15px; }
.contact-widget address {line-height: 1.7;margin: 0;}
.contact-widget address > a {color: #393939;}
.contact-widget address > a:after {/* content: "|"; */margin-right: 15px;margin-left: 15px;font-size: 1.125rem;}
.contact-widget address > a:last-child::after { display: none; }
@media (max-width: 992px) { 
	.contact-info { padding-left: 20px; } 
	.contact-widget address > a { display: block; }
	.contact-widget address > a:after { display: none; }
}
/*===================================================================================*/
/*	PAGE TITLE SECTION 
/*===================================================================================*/

body.page .navbar-custom, body.woocommerce .navbar-custom, .archive .navbar-custom, .search .navbar-custom, .single .navbar-custom, body.blog .navbar-custom{ background-color: rgba(0, 20, 42, 1); }
.navbar-custom + .page-title-section { margin-top: 62px; }

.page-title-section { 
	transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
	position: relative; 
	padding: 245px 0; 
	width: 100%; 
	height: 100%; 
}
@media (max-width: 992px) {
    .page-title-section { padding: 155px 0; }
}
@media (max-width: 768px) {
    .page-title-section { padding: 105px 0; }
}
@media (max-width: 480px) {    
    .page-title-section { padding: 63px 0 63px; }
}
.page-title-section .overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.7);
}
.page-title-section .content-center { 
	position: relative;
	display: table;
	height: 100%;
}
.page-title { position: relative; }
.page-title h1 { margin: 0px; word-wrap: break-word; color: #fff; }
.page-breadcrumb {
	list-style: none outside none;
	margin: 0px;
	padding: 15px 0 0px;
	font-weight: 500;
	font-size: 1.000rem;
}
.page-breadcrumb > li { color: #eceded; display: inline-block; }
.page-breadcrumb > li + li:before { color: #eceded; content: "/"; padding: 0 10px 0 5px; }
.page-breadcrumb > li a { color: #eceded; }
.page-breadcrumb > li.active a { text-decoration: underline; }
@media (max-width: 768px) {
    .page-title h1 { margin: 0; text-align: center; }
    .page-breadcrumb { text-align: center; padding: 15px 0 5px; float: none; }
}
@media (max-width: 480px) { 
    .page-title h1 { font-size: 2.000rem; }
    .page-breadcrumb { padding: 5px 0 5px; }
}

/*===================================================================================*/
/*	Footer Section
/*===================================================================================*/

.site-footer {
    background-color: #17212c;
    margin: 0px;
    padding: 0px;
	position: relative;	
}
	.site-footer .container-fluid {
		margin-right: auto;
		margin-left: auto;
		padding-left: 0px;
		padding-right: 0px;
		max-width: 1366px;
	}
}
.footer-sidebar .navbar-brand {    
	float: none;
    height: 0;
    padding: 0;
    font-size: 0;
    line-height: 0; 
}
.footer-sidebar {padding: 50px 0 0px;}
.footer-sidebar .widget { font-size: 0.938rem; }
@media (max-width: 479px){ .footer-sidebar .widget { padding-left: 40px; } }
.footer-sidebar .widget:last-child {font-size: 1rem;padding-bottom: 40px; padding-left: 20px;}
@media (max-width: 767px){ .footer-sidebar .widget { padding-left: 40px; } }
.footer-sidebar .widget:last-child {font-size: 0.938rem;padding-bottom: 40px;}
.footer-sidebar .widget .widget-title:after {
    display: none;
}
.footer-contact-info { background-color: #141414; padding: 40px 0; }
.footer-sidebar .widget .post .entry-content p, .footer-sidebar .widget, 
.footer-sidebar .widget p, .footer-sidebar .widget .post .entry-title a {
	color: #adbbcb;
}
.footer-sidebar h1, .footer-sidebar h2, .footer-sidebar h3, 
.footer-sidebar h4, .footer-sidebar h5, .footer-sidebar h6 {  
	color: #fbf9f7;
}
.footer-sidebar .widget_archive li, .footer-sidebar .widget_categories li, .footer-sidebar .widget_links li, 
.footer-sidebar .widget_meta li, .footer-sidebar .widget_nav_menu li, .footer-sidebar .widget_pages li, 
.footer-sidebar .widget_recent_comments li, .footer-sidebar .widget_recent_entries li {
    padding-left: 0px !important;
    padding-top: 0;
    padding-bottom: 15px;
    border-bottom: none;
}
.footer-sidebar .widget_archive li a:before, .footer-sidebar .widget_categories li a:before, .footer-sidebar .widget_links li a:before, 
.footer-sidebar .widget_meta li a:before, .footer-sidebar .widget_nav_menu li a:before, .footer-sidebar .widget_pages li a:before, 
.footer-sidebar .widget_recent_comments li a:before, .widget_recent_entries li a:before {
    display: none;
}
.footer-sidebar .widget a, .footer-sidebar .widget_archive a, .footer-sidebar .widget_categories a, .footer-sidebar .widget_links a, 
.footer-sidebar .widget_meta a, .footer-sidebar .widget_nav_menu a, .footer-sidebar .widget_pages a, .footer-sidebar .widget_recent_comments a, 
.footer-sidebar .widget_recent_entries a, .footer-sidebar .widget dl, .footer-sidebar .widget ul > li, .footer-sidebar .widget ol > li, 
.footer-sidebar .widget address, .footer-sidebar .widget .wp-caption .wp-caption-text, .footer-sidebar .widget .gallery-caption, 
.footer-sidebar .widget .entry-caption, .footer-sidebar .widget ul#recentcomments li.recentcomments span.comment-author-link, .footer-sidebar .widget #wp-calendar td, .footer-sidebar .widget td {
	color: #adbbcb;
	font-size:15px;
}

.footer-sidebar .widget #wp-calendar caption { background-color: #2c3d51; }
.footer-sidebar .widget #wp-calendar th, .footer-sidebar .widget #wp-calendar a, .footer-sidebar .widget th { color: #fff; }
.footer-sidebar .widget table, .footer-sidebar .widget th, .footer-sidebar .widget td { border: 1px solid rgba(45, 61, 81, 0.4); }
/*Sidebar News*/
.footer-sidebar .widget .post { padding: 0px; border-bottom: none; }
/*Footer Sidebar Tags*/
.footer-sidebar .widget .tagcloud a {
    background-color: transparent;
    border: 1px solid rgba(45, 61, 81, 0.7);
}
.footer-sidebar .widget .tagcloud a:hover, .footer-sidebar .widget .tagcloud a:focus {
    background-color: #2d3d51;
    border: 1px solid rgb(45, 61, 81);
	color: #fff !important;
}

.footer-tab {padding: 20px 0 0 0;color: #fff;text-align: center;border-top: 3px solid #2a83e8;}
.footer-tab .widget { font-size: 0.938rem; }
@media (min-width: 768px){ .footer-tab .widget { padding-left: 40px; } }
.footer-tab .widget:last-child {font-size: 0.938rem;padding-bottom: 40px;}
.footer-tab .widget .widget-title:after {
display: none;}
.footer-tab a {color: #fff;
    text-decoration: none !important;
}
/*===================================================================================*/
/*	FOOTER COPYRIGHTS - SITE INFO
/*===================================================================================*/

.site-info { padding-bottom: 60px; }
@media (min-width: 992px){ .site-info {padding: 0 0px 25px 0;} }
.site-info p { color: #ffffff; letter-spacing: 0.10rem; margin: 0; padding: 0; }
.site-info a, .site-info a:hover, .site-info a:focus { color: #ffffff; }


/*===================================================================================*/
/*	FOOTER SITE BRANDING TITLE
/*===================================================================================*/

.footer-sidebar .site-branding {
	position: relative;
	z-index: 3;
}
.footer-sidebar .site-title {
    clear: none;
    font-size: 2.75rem;
    line-height: 1.2;
    letter-spacing: 0.05rem;
    margin: 0;
    word-wrap: break-word;
}


/*===================================================================================*/
/*	404 Error Page
/*===================================================================================*/

.error-404 { padding-bottom: 90px; }
.error-404 h1 { font-size: 14.000rem; line-height: 1; font-weight: 500; letter-spacing: 1px; }
.error-404 h1 > i { font-size: 12.000rem; }
.error-404 h2 { font-size: 3.000rem; font-family: 'Lobster Two', cursive; }
@media (max-width: 768px) { 
	.error-404 h1 { font-size: 6.000rem; }
	.error-404 h1 > i { font-size: 6.000rem; }
	.error-404 h2 { font-size: 2.000rem; }
}


/*===================================================================================*/
/*	Preloader
/*===================================================================================*/

#loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
}
#loader {
    display: block;
    position: relative;
    left: 50%;
    top: 50%;
    width: 100px;
    height: 100px;
    margin: -75px 0 0 -75px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #3498db;

    -webkit-animation: spin 2s linear infinite; /* Chrome, Opera 15+, Safari 5+ */
    animation: spin 2s linear infinite; /* Chrome, Firefox 16+, IE 10+, Opera */

    z-index: 1001;
}

#loader:before {
	content: "";
	position: absolute;
	top: 5px;
	left: 5px;
	right: 5px;
	bottom: 5px;
	border-radius: 50%;
	border: 3px solid transparent;
	border-top-color: #e74c3c;

	-webkit-animation: spin 3s linear infinite; /* Chrome, Opera 15+, Safari 5+ */
	animation: spin 3s linear infinite; /* Chrome, Firefox 16+, IE 10+, Opera */
}

#loader:after {
	content: "";
	position: absolute;
	top: 15px;
	left: 15px;
	right: 15px;
	bottom: 15px;
	border-radius: 50%;
	border: 3px solid transparent;
	border-top-color: #f9c922;

	-webkit-animation: spin 1.5s linear infinite; /* Chrome, Opera 15+, Safari 5+ */
	  animation: spin 1.5s linear infinite; /* Chrome, Firefox 16+, IE 10+, Opera */
}

@-webkit-keyframes spin {
	0%   { 
		-webkit-transform: rotate(0deg);  /* Chrome, Opera 15+, Safari 3.1+ */
		-ms-transform: rotate(0deg);  /* IE 9 */
		transform: rotate(0deg);  /* Firefox 16+, IE 10+, Opera */
	}
	100% {
		-webkit-transform: rotate(360deg);  /* Chrome, Opera 15+, Safari 3.1+ */
		-ms-transform: rotate(360deg);  /* IE 9 */
		transform: rotate(360deg);  /* Firefox 16+, IE 10+, Opera */
	}
}
@keyframes spin {
	0%   { 
		-webkit-transform: rotate(0deg);  /* Chrome, Opera 15+, Safari 3.1+ */
		-ms-transform: rotate(0deg);  /* IE 9 */
		transform: rotate(0deg);  /* Firefox 16+, IE 10+, Opera */
	}
	100% {
		-webkit-transform: rotate(360deg);  /* Chrome, Opera 15+, Safari 3.1+ */
		-ms-transform: rotate(360deg);  /* IE 9 */
		transform: rotate(360deg);  /* Firefox 16+, IE 10+, Opera */
	}
}

#loader-wrapper .loader-section {
	position: fixed;
	top: 0;
	width: 51%;
	height: 100%;
	background: #222222;
	z-index: 1000;
	-webkit-transform: translateX(0);  /* Chrome, Opera 15+, Safari 3.1+ */
	-ms-transform: translateX(0);  /* IE 9 */
	transform: translateX(0);  /* Firefox 16+, IE 10+, Opera */
}

#loader-wrapper .loader-section.section-left {
	left: 0;
}

#loader-wrapper .loader-section.section-right {
	right: 0;
}

/* Loaded */
.loaded #loader-wrapper .loader-section.section-left {
	-webkit-transform: translateX(-100%);  /* Chrome, Opera 15+, Safari 3.1+ */
		-ms-transform: translateX(-100%);  /* IE 9 */
			transform: translateX(-100%);  /* Firefox 16+, IE 10+, Opera */

	-webkit-transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);  
			transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);
}

.loaded #loader-wrapper .loader-section.section-right {
	-webkit-transform: translateX(100%);  /* Chrome, Opera 15+, Safari 3.1+ */
		-ms-transform: translateX(100%);  /* IE 9 */
			transform: translateX(100%);  /* Firefox 16+, IE 10+, Opera */

-webkit-transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);  
	transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);
}

.loaded #loader {
	opacity: 0;
	-webkit-transition: all 0.3s ease-out;  
			transition: all 0.3s ease-out;
}
.loaded #loader-wrapper {
	visibility: hidden;

	-webkit-transform: translateY(-100%);  /* Chrome, Opera 15+, Safari 3.1+ */
		-ms-transform: translateY(-100%);  /* IE 9 */
			transform: translateY(-100%);  /* Firefox 16+, IE 10+, Opera */

	-webkit-transition: all 0.3s 1s ease-out;  
			transition: all 0.3s 1s ease-out;
}


/*===================================================================================*/
/*	Page Scroll Up
/*===================================================================================*/

.scroll-up {
	position: fixed;
	display: none;
	bottom: 30px;
	right: 30px;
	z-index: 999;
}
.scroll-up a {
	display: block;
	height: 2.5rem;
	width: 2.5rem;
	text-align: center;
	line-height: 2;
	font-size: 1.250rem;
	background: #0e1f34;
	color: #fff;
	opacity: 1;
	transform: rotate(45deg);
    transition: all 0.3s ease 0s;
}
.scroll-up a:hover,
.scroll-up a:active {
	opacity: 1;
	color: #fff;
}
.scroll-up a > i {
	transform: rotate(-45deg);
}



/* Update css */

.main-slider .overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    background-color: rgb(0 0 0 / 54%);
}

/*Meta Category*/
.entry-meta .cat-links a:after { display: none; }
.entry-meta .cat-links a:last-child::after { display: none; }

/*Additional Css----------------------------------------------------------------------------*/

#service_content.row { text-align: center; } 
@media(min-width: 1200px) {
	body.boxed {
		width: 1210px;
		-webkit-box-shadow: 0 0 10px 0 rgba(48, 48, 48, 0.5);
		box-shadow: 0 0 10px 0 rgba(48, 48, 48, 0.5);
		/* margin: 30px auto; */
		margin: 0px auto;
		position: relative;
		background: url(../../images/bg-patterns/bg-img1.png) repeat fixed;
	}
}

@media (min-width: 768px) and (max-width: 979px)  {
	body.boxed { width: 100%; }
}

@media (max-width: 767px) {
	body.boxed { width: 100%; }
	body { padding-left: 0px !important; padding-right: 0px !important; }	
}

@media (min-width: 980px) and (max-width: 1199px) {
	body.boxed { width: 100%; }	
}

/* Text meant only for screen readers. */
.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute !important;
	width: 1px;
	word-wrap: normal !important; /* Many screen reader and browser combinations announce broken words as they would appear visually. */
}

.screen-reader-text:focus {
	background-color: #eee;
	clip: auto !important;
	clip-path: none;
	color: #444;
	display: block;
	font-size: 1em;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000;
	/* Above WP toolbar. */
}
.consultup-callout {
	background: url() no-repeat fixed 0 0 /cover;
	height: 100%;
	overflow: hidden;
	width: 100%;
	padding: 0;
}
.consultup-callout .overlay {
	height: 100%;
	position: relative;
	width: 100%;
	padding: 130px 0;
}
.consultup-callout .consultup-callout-inner {
	margin: 0 auto;
	width: 66.6667%;
	padding: 0 15px;
}
.consultup-callout .consultup-callout-inner.text-left {
	float: left;
}
.consultup-callout .consultup-callout-inner.text-right {
	float: right;
}
.consultup-callout h3 {
	font-size: 40px;
	font-weight: 800;
	color: #ffffff;
	line-height: 48px;
	text-shadow: 1px 3px 8px rgba(0, 0, 0, 0.17);
}
.consultup-callout p {
	font-size: 18px;
	line-height: 30px;
	color: white;
}
.consultup-callout .btn:last-child {
	margin-left: 15px;
}
.consultup-callout .overlay {
	background: rgba(0, 41, 84, 0.8);
}
/*==================== Life@Curvearro ====================*/
.life-section .overlay {
	background: #ffffff;
}
.life-section .overlay h3, .testimonials-section .overlay h3 a {
	color: #212121;
}
#ti-life .owl-controls .owl-buttons div {
	background: #fff;
	border-color: #fff;
	color: #002954;
}
#ti-life .owl-controls .owl-buttons div:hover {
	background: #008ec2;
	border-color: #008ec2;
	color: #fff;
}
#ti-life .owl-controls .owl-page span {
	border-color: #008ec2;
}
#ti-life .owl-page.active {
	background: #008ec2;
}
#ti-life .owl-page {
	background: rgba(0,0,0,0.6);
}
/*---------testi widget---------*/
.life_qute .sub-qute i {
	color: #008ec2;
}
.life_qute .sub-qute {
	background: #eef1f44f;
	color: #757575;
	border-color: #eaeaea;
}
.life_qute .sub-qute::after {
    border-top-color: #fff;
}
.life_qute p {
	color: #777;
}
.life_qute .user-title {
	color: #000;
}
.life_qute .ti-client {
	border-bottom-color: #008ec2;
	border-left-color: #008ec2;
	border-top-color: #e8e8e8;
	border-right-color: #e8e8e8;
}
/*---------------------------------------
Curvearro-testimonials  
-----------------------------------------*/
.life-section {
	height: 100%;
	overflow: hidden;
	/* width: 100%; */
	padding: 0;
}
.life-section .overlay {
	height: 100%;
	position: relative;
	width: 100%;
	padding: 80px 0;
}
.content-life {
	margin: 0 auto;
	border-radius: 4px;
}
.life_qute .life_qute {
	float: left;
	width: 100%;
	padding: 25px 25px 15px;
}
.life_qute .sub-qute {
	display: block;
	padding-bottom: 20px;
	border-radius: 0;
	padding: 20px;
	position: relative;
	float: left;
	box-shadow: 2px 2px 2px rgba(0,0,0,.04);
}
.life_qute .sub-qute h5 {
	font-size: 18px;
	font-weight: 800;
	margin-bottom: 30px;
}
.life_qute .sub-qute i {
	font-size: 20px;
	line-height: 60px;
}
.life_qute .sub-qute .context {
	padding: 15px 20px 30px 20px;
	margin-bottom: 6px;
	position: relative;
}
.life_qute .consultup-client-qute {
    margin-top: 25px;
}
.life_qute .consultup-client {
	width: 80px;
	height: 80px;
	border-width: 2px;
	border-style: solid;
	border-radius: 50%;
	padding: 4px;
	vertical-align: middle;
	display: inline-block;
}
.life_qute .consultup-client img {
	max-width: 100%;
	height: auto;
	border-radius: 50%;
	display: block;
	overflow: hidden;
	transform-style: initial;
	margin: auto;
}
.consultup-client-qute .consultup-client-info {
	vertical-align: middle;
	display: inline-block;
	text-align: left;
	margin: 0 10px;
	max-width: calc(100% - 120px);
}
.life_qute .user-title {
	margin-bottom: 2px;
	margin-top: 0;
	font-size: 14px;
	font-weight: 700;
}
.life_qute .user-designation {
	margin-bottom: 0;
	position: relative;
	left: 0;
	line-height: 25px;
	font-size: 14px;
}
.consultup-testi-two .item-inner {
	margin-bottom: 30px;
}
.consultup-testi-two .item-inner {
  position: relative;
  height: 380px;
  overflow: hidden;
}
.consultup-testi-two .item-inner:hover .item-content {
  margin-top: 15px;
}
.consultup-testi-two .item-inner:hover .item-mask {
  background-color: rgba(0, 0, 0, 0);
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0) 0), to(rgba(0, 0, 0, 0.8) 35%));
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, 0.8) 35%);
  background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, 0.8) 35%);
  background: -ms-linear-gradient(top, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, 0.8) 35%);
  background: -o-linear-gradient(top, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, 0.8) 35%);
}
.consultup-testi-two .item-inner {
  background-size: cover;
}
.consultup-testi-two .item-mask {
  background-color: rgba(0, 0, 0, 0);
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0) 0), to(rgba(0, 0, 0, 0.8) 85%));
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, 0.8) 85%);
  background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, 0.8) 85%);
  background: -ms-linear-gradient(top, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, 0.8) 85%);
  background: -o-linear-gradient(top, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, 0.8) 85%);
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}
.consultup-testi-two .item-content {
  padding: 45px;
  color: #fff;
  position: absolute;
  width: 100%;
  height: 380px;
  left: 0;
  -webkit-transition: margin-top 0.4s ease-in-out;
  -moz-transition: margin-top 0.4s ease-in-out;
  -ms-transition: margin-top 0.4s ease-in-out;
  -o-transition: margin-top 0.4s ease-in-out;
  margin-top: 230px;
}
.cr-about-section {
	height: 100%;
	overflow: hidden;
	width: 100%;
	padding: 0;
}
.cr-about-section .overlay {
	height: 100%;
	position: relative;
	width: 100%;
	padding: 80px 0;
	background-color: #eef1f4;
}
.cr-about-section h2 {
	font-size: 40px;
	font-weight: 600;
	line-height: 1.2em;
	position: relative;
	z-index: 1;
	padding-bottom: 80px;
}
.cr-about-section h2::before {
    position: absolute;
	left: 0px;
	bottom: 0px;
	width: 190px;
	height: 215px;
	content: 'Impact';
	z-index: -1;
	font-size: 400%;
	line-height: 200px;
}
.subtitle {
	font-weight: 400;
}
.cr-about-section h2::before {
    color: #ffffff;
}

.img-shadow {
    box-shadow: 30px 30px 1px 0 #008ec2;
}

.cb-about-section {
	height: 100%;
	overflow: hidden;
	width: 100%;
	padding: 0;
	background-color: #fafafa;
}
.cb-about-section .overlay {
	height: 100%;
	position: relative;
	width: 100%;
	padding: 80px 0;
}
.cb-about-section h2 {
	font-size: 40px;
	font-weight: 600;
	line-height: 1.2em;
	position: relative;
	z-index: 1;
	padding-bottom: 80px;
}
.cb-about-section h2::before {
    position: absolute;
	left: 0px;
	bottom: 0px;
	width: 190px;
	height: 215px;
	content: 'Growth';
	z-index: -1;
	font-size: 400%;
	line-height: 200px;
}
.subtitle {
	font-weight: 400;
}
.cb-about-section h2::before {
    color: #ffffff;
}

.img-shadow {
    box-shadow: 30px 30px 1px 0 #008ec2;
}

.breadcrumb-section {
	background: url(images/sub-header.jpg) no-repeat fixed 0 0 /cover;
	height: 100%;
	margin: 0 0 0px;
	overflow: hidden;
	padding: 0;
	width: 100%;
	box-shadow: 0 0 5px 0 #aaaaaa;
}
.breadcrumb-section .overlay {
	height: 100%;
    position: relative;
    width: 100%;
    background: linear-gradient(rgb(5, 27, 68) 0px, rgba(5, 27, 68, 0.18) 50%, rgba(5, 27, 68, 0.8) 100%);
    padding: 160px 0px 100px;
}
.breadcrumb-section .blog-category {
	position: inherit;
	margin-top: 15px;
	left: 0;
}
.breadcrumb-section .blog-date {
    margin-right: 5px;
}
.breadcrumb-title {
	text-align: left;
	padding: 0;
}
.breadcrumb-title h1 {
	font-size: 40px;
	font-weight: 700;
	margin: 0;
	line-height: 50px;
	padding-bottom: 0px;
	color:#fff;
}
.breadcrumb-title p {
    font-size: 20px;
    color: #ffffff;
    margin: 5% 0px;
}
.breadcrumb-title a {
    font-size: 20px;
    color: #ffffff;
}
.page-breadcrumb {
	list-style: none outside none;
	margin-bottom: 25px;
	padding: 0;
	text-align: center;
	font-size: 15px;
	line-height: 20px;
	color: #fafafa !important;
}
.page-breadcrumb > li {
	display: inline-block;
}
.page-breadcrumb > li + li:before {
	content: "\f138";
	font-family: fontawesome;
	padding: 0 5px;
}

.underline-primary {
	border-bottom: 3px solid #3695eb;
	}
.breadcrumb-section .information {
	background-color: #00142ae8;
	padding: 40px;
}
/*---------------------------------------
	3.4.innumber-sercive        
-----------------------------------------*/
.innumber-service-section {
	position: relative;
	padding: 0 0 80px 0;
}
.innumber-service {
	margin-bottom: 30px;
	margin-top: 30px;
	position: relative;
	overflow: hidden;
	border-width: 1px;
	border-style: solid;
}
.innumber-service .innumber-service-inner {
	padding: 30px;
}
.innumber-service .innumber-service-inner-img {
	margin: -30px -30px 0 -30px;
}

.innumber-service-inner .ser-icon {
	border-radius: 2%;
	transition: color 0s ease 0s, all 250ms ease 0s;
	width: auto;
	text-align: center;
}
.innumber-service.text-right .ser-icon {
	margin: auto 0 auto auto;
}
.innumber-service.text-center .ser-icon {
	margin: 0 auto  0 auto;
}
.innumber-service-inner i {
	font-size: 60px;
	line-height: 80px;
	text-shadow: 1px 1px 1px rgba(150, 150, 150, 1);
}
.innumber-service-inner h3 {
	transition: all 0.5s ease 0s;
	padding: 25px 0px 25px 0;
	display: inline-block;
	font-weight: 700;
	line-height: 26px;
	margin-bottom: 6px;
}
.innumber-service-inner p {
	transition: all 0.5s ease 0s;
	font-size: 18px;
	margin-bottom: 20px;
}
.innumber-service-inner .btn-theme-two {
	margin: 6px 0 0;
	padding: 5px 18px;
	transition: all 0.3s ease 0s;
	border-width: 2px;
	border-style: solid;
}
/*------ sercive-two -----*/
#services .innumber-service.two {
    margin-top: -80px;
}
.innumber-service.two {
    position: relative;
    overflow: hidden;
    text-align: left;
    border: inherit;
}
.innumber-service.two .img-box {
    min-height: 250px;
}
.innumber-service.two .innumber-ser-two-inner {
    opacity: 0.9;
    width: 100%;
    height: 100%;
    padding: 20px 22px;
    position: absolute;
    left: 0;
    bottom: -74%;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    -ms-transition: all 0.3s;
    transition: all 0.3s;
}
.container-fluid .innumber-service.two .innumber-ser-two-inner {
    bottom: -84%;
}
.innumber-service.two:hover .innumber-ser-two-inner {
    bottom: 0;
    padding: 45px 22px;
}
.innumber-service.two .innumber-ser-two-inner h3 {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    text-transform: capitalize;
    margin: 0 0 1em;
    position: relative;
}
.innumber-service.two .innumber-ser-two-inner h3 i {
    font-size: 20px;
    position: absolute;
    right: 0;
}
.innumber-service.two .innumber-ser-two-inner p {
    color: #fff;
    margin: 0;
}
/*------ sercive-three -----*/
.innumber-service.three {
    box-shadow: 0px 10px 30px 0px rgba(205, 205, 205, 0.33);
	transition: all .3s;
	border: inherit;
}
.innumber-service.three {
    box-shadow: 0px 10px 30px 0px rgba(205, 205, 205, 0.33);
	transition: all .3s;
	border: inherit;
}
.innumber-service.three .innumber-service-inner {
    padding: 30px 30px;
    text-align: center;
}
.innumber-service.three.text-right .img-responsive {
	margin: auto 0 auto auto;
}
.innumber-service.three.text-center .img-responsive {
	margin: 0 auto  0 auto;
}
.innumber-service.three h3 {
    font-size: 30px;
}
.innumber-service.three .innumber-service-inner-img {
    padding: 20px 0 20px 0;
    margin: auto;
}
.innumber-service.three::before {
    position: absolute;
    content: '';
    left: 0px;
    bottom: 0px;
    height: 3px;
    width: 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;
}
.innumber-service.three:hover::before, .innumber-service.three:hover::after {
    width: 50%;
}
.innumber-service.three::after {
    position: absolute;
    content: '';
    right: 0px;
    bottom: 0px;
    height: 3px;
    width: 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;
}
.innumber-service.three:hover {
    box-shadow: 0px 0px 25px rgba(0,0,0,0.15);
}
.innumber-service.three .btn-theme {
	font-size: 14px; 
	font-weight: 600;
	background: inherit;
	border-width: 0 0 1px 0;
	border-style: solid;
	border-radius: 0;
	padding: 0 0 6px 0;
	line-height: 1;
	text-transform: uppercase;
	transition: all 500ms ease;
}
.innumber-service.three .btn-theme:hover {
	box-shadow: inherit;
}
.innumber-service::after {
	background: #2a83e8;
}
.innumber-service-inner i {
	color: #2a83e8;
}
.innumber-service.two .innumber-ser-two-inner {
    background: #2a83e8;
}
.innumber-service.three::before, .innumber-service.three::after {
    background-color: #2a83e8;
}
.innumber-service.three .btn-theme:hover {
	color: #50b9ce;
	border-color: #50b9ce;
}
.number {
	font-size: 45px;
	color: #2a83e8;
	position: relative;
	font-weight: 900;
	font-family: "Tungsten A", "Tungsten B", "Khand", sans-serif;
}
.wd-about-section {
	height: 100%;
	overflow: hidden;
	width: 100%;
	padding: 0;
	background-color: #eef1f4;
}
.wd-about-section .overlay {
	height: 100%;
	position: relative;
	width: 100%;
	padding: 80px 0;
}
.wd-about-section h2 {
	font-size: 55px;
	font-weight: 600;
	line-height: 2em;
	position: relative;
	z-index: 1;
	padding-bottom: 50px;
}
.wd-about-section h2::before {
    position: absolute;
    left: 0px;
    bottom: 0px;
    width: 125px;
    height: 210px;
    content: 'Quality';
    z-index: -1;
    font-size: 250%;
    line-height: 200px;
}
.subtitle {
	font-weight: 400;
}
.wd-about-section h2::before {
    color: #ffffff;
}

.img-shadow {
    box-shadow: 30px 30px 1px 0 #008ec2;
}
.list-profile {
	padding: 15px;
	text-align: center;
	border-radius: 20px;
}
.mngprofile-list{
	font-size: 25px;
	line-height: 30px;
	font-weight: 700;
	margin-top: 10px;
	margin-bottom: 10px;
}
.mngprofile-list1{
	font-size: 20px;
	line-height: 25px;
	font-weight: 600;
	margin-top: 8px;
	margin-bottom: 8px;
}
.mngprofile-list2{
	font-size: 18px;
	line-height: 20px;
	font-weight: 500;
	margin-top: 6px;
	margin-bottom: 6px;
}
.mngprofile-title{
	font-size: 20px;
	line-height: 30px;
	font-weight: 500;
	margin-top: 10px;
	margin-bottom: 10px;
}
.mngprofile-title1{
	font-size: 18px;
	line-height: 30px;
	font-weight: 500;
	margin-top: 8px;
	margin-bottom: 8px;
}
.mngprofile-title2{
	font-size: 16px;
	line-height: 30px;
	font-weight: 500;
	margin-top: 6px;
	margin-bottom: 6px;
}
.overview-section {
	height: 100%;
	overflow: hidden;
	width: 100%;
	padding: 0;
	background-color: #ffffff;
}
.overview-section .overlay {
	height: 100%;
	position: relative;
	width: 100%;
	padding: 80px 0;
}
.overview-section h2 {
	font-size: 45px;
	font-weight: 600;
	position: relative;
	z-index: 1;
	padding-bottom: 80px;
}
.overview-section h2::before {
    position: absolute;
    left: 0px;
    bottom: 0px;
    width: 150px;
    height: 215px;
    content: 'Overview';
    z-index: -1;
    font-size: 250%;
	line-height: 200px;}
.subtitle {
	font-weight: 400;
}
.overview-section h2::before {
    color: #eef1f4;
}

.img-shadow {
    box-shadow: 30px 30px 1px 0 #008ec2;
}
.overview-thumbnail { margin-top: 40px; margin-left: 40px; }
.overview-content {
    padding-left: 50px;
    padding-top: 25px;
    padding-bottom: 25px;
    border-left: 8px solid #2a83e8;
    margin-top: 10%;
    margin-bottom: 10%;
    }

.overview-thumbnail img { box-shadow: -40px -40px 0px 0px #2a83e8; }
@media (min-width: 768px) and (max-width: 992px) { 
	.about-thumbnail img { box-shadow: -25px -25px 0px 0px #2a83e8; }
}
@media (max-width: 768px) {  
	.overview-thumbnail img { box-shadow: -15px -15px 0px 0px #2a83e8; }
}
.overview a {color: #393939;text-decoration: none !important;transition: 0.3s;}
.overview-number {
	text-align:center;
    }
.round {
    margin-bottom: 40px !important;
    width: 120px;
    height: 120px;
    background-color: #3695eb;
    -webkit-border-radius: 90px;
    -moz-border-radius: 90px;
    margin-left: 30%;
    overflow: hidden;
}
.bg-pending { padding: 0px !important; 
}
.bg-bodder{
	border-bottom: 2px solid #2a83e8;
}
.other-content {
    padding-left: 50px;
    padding-top: 25px;
    padding-bottom: 25px;
    border-left: 8px solid #2a83e8;
    margin-top: 10%;
    margin-bottom: 10%;
    }
.other-content a {color: #ffffff;text-decoration: none !important;}
@media (min-width: 768px) and (max-width: 992px) { 
	.other-thumbnail { margin-top: 25px; margin-left: 25px; }
	.other-content { padding-left: 30px; } 
}
@media (max-width: 768px) {  
	.other-thumbnail { margin-top: 15px; margin-left: 15px; }
	.other-content { padding-left: 5%; } 
}
.other-content .entry-subtitle { margin: 0 0 5px; font-weight: 700; }
.other-content .entry-title { margin: 0 0 18px; }

.faq-title{font-size: 1.42383rem;line-height: 1.80203rem;font-weight: 600;margin-top: 2.5%;margin-bottom: 2.5%;}
.inner-row {
	margin-top: 10%;
	margin-left: 10%;
	margin-right: 10%;
	text-align: center;
	color: white;
}
/*** LOCATIONS ***/
div#footer-locations {
	padding: 1%;
	color: #103594;
}

div#footer-locations h4 {
	/* margin: 11px; */
	color: #ffffff;
}

div#footer-locations ul {
	margin: 1px 0 0;
	padding: 0;
}

div#footer-locations ul li {
	padding: 0;
	float: left;
	margin: 0 5px 5px 0 !important;
	text-align: center;
}

div#footer-locations ul li a {
	width: 255px;
	height: 151px;
	display: block;
	color: #fff;
	font-size: 22px;
	line-height: 150px;
	background-color: #0e1f34;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	overflow: hidden;
	position: relative;
}

div#footer-locations ul li a img,
div#footer-locations ul li a i {
	width: 100%;
	opacity: 0;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;

	-webkit-transition: all 0.3s linear;
	-moz-transition: all 0.3s linear;
	-ms-transition: all 0.3s linear;
	-o-transition: all 0.3s linear;
	transition: all 0.3s linear;
}

div#footer-locations ul li a i {
	z-index: 5;
	font-size: 24px;
	line-height: 150px;
	-moz-transform: scale(0);
	-webkit-transform: scale(0);
	-o-transform: scale(0);
	-ms-transform: scale(0);
	transform: scale(0);
}

div#footer-locations ul li a:hover img {
	opacity: .6;

	-webkit-transition: all 0.3s linear;
	-moz-transition: all 0.3s linear;
	-ms-transition: all 0.3s linear;
	-o-transition: all 0.3s linear;
	transition: all 0.3s linear;
}

div#footer-locations ul li a:hover i {
	opacity: 1;
	-moz-transform: scale(1);
	-webkit-transform: scale(1);
	-o-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
}

div#footer-locations ul li a:hover {
	background-color: #1b3360;
	font-size: 0;
}

.bottom-quote-form input[type="text"],
.bottom-quote-form textarea,
.bottom-quote-form select {
	height: 44px;
	font-size: 16px;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
}

.bottom-quote-form textarea {
	padding: 10px !important;
	height: 82px !important;
}

.bottom-quote-form .form-row {
    width: 349px;
    float: left;
    margin: 0 25px 20px 0;
}

.bottom-quote-form label {
	color: #fff;
	text-transform: none;
	font-size: 16px !important;
	font-weight: normal !important;
	float: left;
	margin-bottom: 5px;
}

.bottom-quote-form label.budget {
	font-size: 14px !important;
}

.bottom-quote-form input[type="text"]:focus,
textarea:focus {
	box-shadow: none;
	box-shadow: 0 0 10px 0 #66addf;
	outline: none;
}

.bottom-quote-form input::-webkit-input-placeholder {color: #999; }
.bottom-quote-form input::-moz-placeholder {color: #999; }
.bottom-quote-form input::-moz-placeholder { color: #999; }

.new-bottom-quote-form.bottom-quote-form .btn-get-quote {
    width: auto !important;
    float: right;
    margin: 35px 0 0 0;
    font-size: 20px;
    cursor: pointer !important;
}
.underline-left{
	border-left: 3px solid #3695eb;
}
.bg-qniek {
	    background-color: #ecf3fc !important;
}

.describe {
	padding-left: 50px;
	padding-top: 25px;
	padding-bottom: 25px;
	border-left: 8px solid #2a83e8;
	margin-top: -3%;
}

 .pending30 {
	padding-bottom:30px;
}
.pen{
	padding:20px 0px;
}
.parosel{
    display: flex;
}
.pabnt{
    display: inline-block;
    width: 100%;
    cursor: pointer;
    padding: 18px 16px;
    border-radius: 4px;
    margin-top: 12px;
    margin-bottom: 12px;
    font-family: ITCAvantGardeStd,arial;
    font-weight: 600;
    margin-left: 4px;
    margin-right: 4px;
    letter-spacing: 1px;
    line-height: 1.2em;
    text-align: center;
    background: #0055b7;
    transition: all .3s ease;
    background-color: #0055b7;
}
.pabnt-bor:hover, .pabnt-bor:focus { background: #2a83e8; }

.home-bt{
	color:#ffffff;
	min-width: 20rem;
	display: inline-block;
    cursor: pointer;
    padding: 18px 16px;
    border-radius: 4px;
    margin-top: 12px;
    margin-bottom: 12px;
    font-family: ITCAvantGardeStd,arial;
    font-weight: 600;
    margin-left: 4px;
    margin-right: 4px;
    letter-spacing: 1px;
    line-height: 1.2em;
    text-align: center;
    background: #0055b7;
    transition: all .3s ease;
    background-color: #0055b7;
}
.home-bta{
	color:#ffffff;
	min-width: 20rem;
	display: inline-block;
	cursor: pointer;
	border: 1px solid #2a83e8;
	padding: 15px 15px;
	border-radius: 4px;
	margin-top: 12px;
	margin-bottom: 12px;
	font-family: ITCAvantGardeStd,arial;
	font-weight: 600;
	margin-left: 4px;
	margin-right: 4px;
	letter-spacing: 1px;
	line-height: 1.2em;
	text-align: center;
	transition: all .3s ease;
}
.description {
	font-family: 'Inter-Regular', Sans-Serif;
	font-weight: normal;
	font-size: 24px;
	line-height: 35px;
	letter-spacing: -0.0055em;
	margin: 30px;
	color: #CED4DA;
}
.service-heading{
	text-align: center;
	margin-top: 5%;
	margin-bottom: 5%;
}
.webinar-content{
	margin-left: auto;
	max-width: 600px;
	padding-top: 8%;
	padding-right: 5%;
}
.webinar-video-image {
    position: relative;
    text-align: center;
    width: 100%;
    height: 100%;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}
.webinar-video-image .video-btn::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
    bottom: 0;
    left: 0;
    font-size: 90px;
    border-radius: 50%;
    border: 4px solid;
    }
.webinar-video-image .video-btn {
    position: absolute;
    left: -60px;
    display: inline-block;
    top: 50%;
    transform: translateY(-50%);
    width: 115px;
    height: 115px;
    line-height: 115px;
    border-radius: 50%;
    font-size: 90px;
    color: #0055b7;
    }
.video-btn:hover, .video-btn:focus { background: #0055b7; color:#ffffff; }
.servicein {
	text-align: center;
    margin: 35px;
    padding: 35px;
    background: #fafafa;
    font-size: 50px;
}
.servicein p{
	margin: 0 0 0.8em;
	font-size: 20px;
}
.servicein img {
    max-width: 80px;
}
.strong{
	font-weight: 700;
}
.b-shadow {
	box-shadow: 10px 10px 10px 10px rgb(205 205 205 / 10%);
}
.corl {
    color:#0056b8;
}
