
@import url('normalize.css');


/*
	Theme Name: Name.
	Created : DD MM YYYY
	Updated : None
	Version: 1.0

*/

/* ========================================================================== */
/* ========================================================================== */
							/* [Table of contents] */
/* ========================================================================== */
/* ========================================================================== */
    
/*	

	1. BASE MODULE.	
		1.1. RESET
		1.2. TYPOGRAPHY
		1.3. BUTTONS
		1.4. BOOTSTRAP ELEMENTS RESET
		1.5  LOADER

	2. LAYOUT MODULE.
		2.1 SPACING AND ALIGNMENT
		2.2 HEADER
		2.3 CONTENT
		2.4 SIDEBAR
		2.5 FOOTER

	3. PAGES MODULE.
		3.1 COMMON STYLES
		.....
3
	4. COMPONENTS MODULE.
		4.1 SCROLLING TOP
		4.2 TESTIMONIAL SLIDER
		......
		
	5. MEDIA QUERIES MODULE.
		5.1 TYPOGRAPHY BREAKPOINTS VIEW
		5.2 THEME BREAKPOINTS VIEW
		
*/ 

/* ==========================================================================
   	1. BASE MODULE.
   ========================================================================== */

/* ================== 
	1.1. RESET. 
   ================== */

/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1.5;
    overflow-x: hidden;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

a:link {
    text-decoration: none;
}

a:visited {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

a:active {
    text-decoration: none;
}

/* ================== 
	1.2. TYPOGRAPHY. 
   ================== */
h1{
    font-size: 24px;
	font-family: 'Roboto Condensed', sans-serif;;
}

h2{
    font-size: 22px;
	font-family: 'Roboto Condensed', sans-serif;
}

h3{
    font-size: 20px;
	font-family: 'Roboto Condensed', sans-serif;
}

h4{
    font-size: 18px;
	font-family: 'Roboto Condensed', sans-serif;
}

h5{
    font-size: 16px;
	font-family: 'Roboto Condensed', sans-serif;;;
}

h6{
    font-size: 14px;
	font-family: 'Roboto Condensed', sans-serif;
}

p{
    font-size: 14px;
	font-family: 'Roboto Condensed', sans-serif;
}

strong {font-weight:bold;}

/* ================== 
	1.3. BUTTONS. 
   ================== */
.btn {
  display: inline-block;
  padding: 6px 18px;
  margin-bottom: 0;
  font-size: 16px;
  font-weight: normal;
  line-height: 1.7;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -ms-touch-action: manipulation;
      touch-action: manipulation;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  background-image: none;
  border: 1px solid transparent;
  border-radius: 5px;
  font-family: 'Source Sans Pro', sans-serif;
}

.btn-custom {
  color: #FFF;
  background-color: #082b53;
  border-color: #082b53;
  transition: 0.3s;
}
.btn-custom:focus,
.btn-custom.focus {
  color: #FFF;
  background-color: #ff1a29;
  border-color: #ff1a29;
}
.btn-custom:hover {
  color: #FFF;
  background-color: #ff1a29;
  border-color: #ff1a29;
}
.btn-custom:active,
.btn-custom.active,
.open > .dropdown-toggle.btn-custom {
  color: #FFF;
  background-color: #ff1a29;
  border-color: #ff1a29;
}

.btn-info {
  color: #333;
  background-color: #cccccc;
  border-color: #cccccc;
  transition: 0.3s;
}
.btn-info:focus,
.btn-info.focus {
  color: #fff;
  background-color: #cccccc;
  border-color: #cccccc;
}
.btn-info:hover {
  color: #fff;
  background-color: #595959;
  border-color: #595959;
}
.btn-info:active,
.btn-info.active,
.open > .dropdown-toggle.btn-info {
  color: #fff;
  background-color: #595959;
  border-color: #595959;
}

.btn-more {
  color: #FFF;
  background-color: #082b53;
  border-color: #082b53;
  transition: 0.3s;
  padding: 8px 20px;
  font-weight: 600;
  font-size: 16px;
  font-family: 'Open Sans', sans-serif;
    margin-top: 10px;
}
.btn-more:focus,
.btn-more.focus {
  color: #FFF;
  background-color: #082b53;
  border-color: #082b53;
}
.btn-more:hover {
  color: #FFF;
  background-color: #082b53;
  border-color: #082b53;
}
.btn-more:active,
.btn-more.active,
.open > .dropdown-toggle.btn-default {
  color: #FFF;
  background-color: #082b53;
  border-color: #082b53;
}


/* ===============================
	1.4. BOOTSTRAP ELEMENTS RESET. 
   =============================== */
hr.center{
    width: 80px;
    border-top: 3px solid #082b53;
    margin: 15px auto 15px auto;
}
/* ================== 
	1.5. LOADER. 
   ================== */
#loader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1031;
  background-color: #F2F2F2;
}

#loader {
  display: block;
  position: relative;
  left: 50%;
  top: 50%;
  width: 150px;
  height: 150px;
  margin: -75px 0 0 -75px;
  border: 3px solid transparent;
  border-top-color: #082b53;
  border-radius: 50%;
  animation: loader 2s linear infinite;
}
#loader::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 5px;
  right: 5px;
  bottom: 5px;
  border: 3px solid transparent;
  border-top-color: #082b53;
  border-radius: 50%;
  animation: loader 3s linear infinite;
}
#loader::after {
  content: "";
  position: absolute;
  top: 15px;
  left: 15px;
  right: 15px;
  bottom: 15px;
  border: 3px solid transparent;
  border-top-color: #082b53;
  border-radius: 50%;
  animation: loader 1.5s linear infinite;
}

@keyframes loader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* ==========================================================================
   	2. LAYOUT MODULE.
   ========================================================================== */


/* ================== 
	2.1. SPACING AND ALIGNMENT. 
   ================== */
.wrapper{
    width: 100%;
    height: auto;
    overflow: hidden;
}

.main{
    margin: 15px 0px 15px 0px;
}

.no-margin-bottom{
    margin: 50px 0px 0px 0px;
}

.section{
    padding: 15px;
    margin: 0px auto 0px auto;
}

.section-full{
    padding: 15px;
    padding: 0px 15px 0px 15px;
    margin: 0px auto 0px auto;
}

.color-background{
    padding: 20px 0px 20px 0px;
    background: #f9f9f9;
}
.post-information{
text-align:justify;
padding-top:25px;
}
@media (min-width: 1200px) {
.section {
    width: 1200px;
}
    
.section-full {
    width: 1800px;
}
	
hr.top-line{
	/*width: 1170px;*/
}
 
}
hr.top-line{
    border-top: 1px solid #fff;
    margin: 0px auto 0px auto;
}
 

/* ================== 
	2.2. HEADER. 
   ================== */
.main-nav .section{
	padding: 0px;
}

.header{
	width: 100%;
	background: transparent;
	margin-bottom: 60px;
  
}

.top-header{
    margin-top: -15px;
    height: 50px;
    transition: 0.5s;
    background: #0798BC;
	padding: 15px 0px 15px 0px;
	transition: 0.3s;
}

.content p{
	color: #FFF;
	transition: 0.3s;
}

.leftside{
	float: left;
}

.rightside{
	float: right;
}

.social-items{
	display: inline-block;
	margin-right: 10px;
}

.social-items .fa{
	font-size: 16px;
	transition: 0.3s;
}

.social-items .fa:hover{
	color: #2D527C;
}

.location-top{
	display: inline-block;
	margin-right: 10px;
}

.hero {
  position: relative;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
  text-align: center;
  color: #fff;
  padding-top: 280px;
  min-height: 750px;
  letter-spacing: 2px;
}

.hero h1 {
  font-size: 50px;
  font-weight: 500;
  line-height: 1.2;
}
.hero h1 span {
  font-size: 60px;
  color: #1abeff;
  line-height: 1.5;
  font-family: 'Anton', sans-serif;
}

@-webkit-keyframes scroll {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }
}
@keyframes scroll {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
  }
}

.main-hero{
    margin-top: -20px;
}

.button-container{
    margin: 30px 0px 30px 0px;
}

.navbar-brand{
	width: 150px;
}

.navbar-brand img{
	width: 100%;
}

.main-slider{
    z-index: 0;
}

.main-nav{
    z-index: 2; 
}

.main-header{
    height: 100%;
    background: transparent;
}

/* ================== 
	2.4. SIDEBAR. 
   ================== */
.sidebar{
    height: 100%;
    clear: both;
}

/* ================== 
	2.5. FOOTER. 
   ================== */
.footer{
	width: 100%;
	background: #333;
	height: 420px;
}

.footer .main{
	margin: 20px 0px 50px 0px;
}

.footer .main .section{
	padding: 60px 15px 0px 15px;
}

.footer a:link {
    text-decoration: none;
	color: #d9d9d9;
}

.footer a:visited {
    text-decoration: none;
	color: #d9d9d9;
}

.footer a:hover {
    text-decoration: none;
	color: #fff;
}

.footer a:active {
    text-decoration: none;
	color: #d9d9d9;
}

hr.line-footer{
	border-top: 1px solid #595959;
    margin: 30px auto 30px auto;
}

.footer-logo{
	width: 180px;
	margin-bottom: 10px;
}

.footer-logo img{
  width: 100%;
}

.about-footer p{
	color: #d9d9d9;
}

.social-footer{
	margin-top: 30px;
}

.social-footer h6{
	color: #d9d9d9;
}

.social-items{
    display: inline-block;
    margin: 10px 5px 0px 0px;
}

.social-items .fa{
    color: #fff;
	font-size: 18px;
	transition: 0.3s;
}

.social-items .fa:hover{
    color: #fff;
}

.icon-fa{
    display:inline-block;
    font-size: 25px;
    line-height: 32px;
    background: #595959;
    color: #FFF;
    width: 40px;
    height: 40px;
    text-align: center;
    vertical-align: bottom;
    border-radius: 5px;
    float: left;
	border: solid 1px #595959;
	transition: 0.3s;
}

.icon-fa:hover{
    background: #082b53;
	border: solid 1px #082b53;
}

.footer-categories h6{
	color: #fff;
}

.categories-list{
	margin: 10px 15px 0px 0px;
	display: inline-block;
	font-size: 14px;
	font-family: 'Open Sans', sans-serif;
}
.categories-list-2{
	margin-top: 10px;
	display: inline-block;
	font-size: 14px;
	font-family: 'Open Sans', sans-serif;
}

.left-footer{
	float: left;
}

.right-footer{
	float: right;
	color: #595959;
}

.left-footer p{
	color: #d9d9d9;
	font-size: 13px;
}

.right-footer p{
	color: #d9d9d9;
	font-size: 13px;
	transition: 0.3s;
}

.subscribe-footer h6{
	color: #082b53;
	margin-bottom: 10px;
}

.subscribe-footer p{
	color: #d9d9d9;
}

.newsletter-box {
	margin: 15px 0px 15px 0px;
}

.newsletter-box form {
  	display: flex;
  	align-items: center;
}

.newsletter-box .input {
  	width: 75%;
  	height: 38px;
  	background: #FDFCFB;
  	border: none;
  	font-family: inherit;
  	color: #737373;
  	letter-spacing: 1px;
  	text-indent: 5%;
  	font-size: 13px;
	font-family: 'Open Sans', sans-serif;
}

.newsletter-box .button {
  	width: 25%;
  	height: 38px;
  	background-color: #082b53;
  	border: none;
  	border-radius: 0 5px 5px 0;
  	font-family: inherit;
  	font-weight: 500;
  	color: inherit;
  	letter-spacing: 1px;
  	cursor: pointer;
  	color: #FFF;
  	font-size: 13px;
	font-family: 'Open Sans', sans-serif;
}

p.cursive{
	font-style: italic;
}

/* ==========================================================================
   	3. PAGES MODULE.
   ========================================================================== */

/* ================== 
	3.1. THEME PAGES COMMON STYLES. 
   ================== */
.pages-header{
    background: #012C40;
    height: 350px; 
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;   
    position: relative;
	margin-bottom: 60px;
}

.section-heading{
    width: 100%;
    position: absolute;
    bottom: 0;
}

.span-title h1{
    color: #FFF;
}

.span-title p{
    color: #FFF;
}

.section-title h2{
    text-align: left;
}

.section-title{
    margin-bottom: 30px;
   /* padding: 0px 120px 0px 120px;*/
}

.section-title p{
    text-align: center;
    color: #8C8C8C;
    margin-top: 10px;
}

/* ================== 
	3.2. ABOUT PAGE. 
   ================== */

/* ================== 
	3.3. PAGE NAME. 
   ================== */

/* ================== 
	3.4. PAGE NAME.  
   ================== */


/* ==========================================================================
   	4. COMPONENTS MODULE.
   ========================================================================== */

/* ===================== 
	4.1. SCROLLING TOP. 
   ==================== */
@media only screen and (min-width: 1024px) {
  main p {
    font-size: 20px;
    font-size: 1.25rem;
  }
}

.cd-top {
  display: inline-block;
  height: 40px;
  width: 40px;
  position: fixed;
  bottom: 40px;
  right: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  /* image replacement properties */
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  background: rgba(255, 64, 76, 1) url(../img/master/cd-top-arrow.svg) no-repeat center 50%;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity .3s 0s, visibility 0s .3s;
  -moz-transition: opacity .3s 0s, visibility 0s .3s;
  transition: opacity .3s 0s, visibility 0s .3s;
  border-radius: 5px;  
  background-color: #082b53;    
}
.cd-top.cd-is-visible, .cd-top.cd-fade-out, .no-touch .cd-top:hover {
  -webkit-transition: opacity .3s 0s, visibility 0s 0s;
  -moz-transition: opacity .3s 0s, visibility 0s 0s;
  transition: opacity .3s 0s, visibility 0s 0s;
}
.cd-top.cd-is-visible {
  /* the button becomes visible */
  visibility: visible;
  opacity: 1;
}
.cd-top.cd-fade-out {
  /* if the user keeps scrolling down, the button is out of focus and becomes less visible */
  opacity: .5;
}
.no-touch .cd-top:hover {
  background-color: #CC0023;
  opacity: 1;
}
@media only screen and (min-width: 768px) {
  .cd-top {
    right: 20px;
    bottom: 20px;
  } 
}

@media only screen and (min-width: 1024px) {
  .cd-top {
    height: 60px;
    width: 60px;
    right: 30px;
    bottom: 30px;
  }
}

/* ======================== 
	4.2 TESTIMONIAL SLIDER.
   ======================== */


/* ==========================================================================
   	5. MEDIA QUERIES MODULE.
   ========================================================================== */

/* ================================== 
	5.1. TYPOGRAPHY BREAKPOINTS VIEW. 
   ================================== */
@media (min-width:576px) {
h1 {
    font-size: 24px;
} 

h2 {
    font-size: 22px;
}

h3 {
    font-size: 20px;
}

h4 {
    font-size: 18px;
}

h5 {
    font-size: 16px;
}

h6 {
    font-size: 14px;
}
    
}

@media (min-width:768px) {
h1 {
    font-size: 26px;
  }  
    
h2 {
    font-size: 24px;
    line-height: 1.2;
  }
    
h3 {
    font-size: 22px;
}

h4 {
    font-size: 20px;
}

h5 {
    font-size: 18px;
}

h6 {
    font-size: 16px;
}
    
}

@media (min-width:992px) {
h1 {
    font-size: 32px;
  }  
    
h2 {
    font-size: 28px;
  }
    
h3 {
    font-size: 26px;
}

h4 {
    font-size: 24px;
}

h5 {
    font-size: 22px;
}

h6 {
    font-size: 14px;
    font-weight: bold;
}
    
}

/* ============================ 
	5.2 THEME BREAKPOINTS VIEW
   ============================ */

@media (min-width:767px) { 
	.mobilsag{
		float:right;	
	}
}

 @media (max-width:992px) {  

/* ============================ 
	1. BASE MODULE BREAKPOINTS. 
   ============================ */
	
/* ============================== 
	2. LAYOUT MODULE BREAKPOINTS. 
   ============================== */
.footer{
	height: 100%;
}
	
.footer .main .section{
	padding: 40px 15px 20px 15px;
}
	
.center-column{
	margin: 30px 0px 30px 0px;
}
    
.sidebar{
    margin-top: 30px;
}

	
/* ============================= 
	3. PAGES MODULE BREAKPOINTS. 
   ============================= */
.pages-header{
    height: 250px; 
	margin-bottom:20px;
}

.pageNavigationTitle {
    background-color: #082b53;
    padding: 7px 10px 7px 15px!important;
    max-height: 72px;
    min-height: 35px;
}
	
/* ================================== 
	4. COMPONENTS MODULE BREAKPOINTS. 
   ================================== */
}

@media (max-width:767px) {
	
/* ============================ 
	1. BASE MODULE BREAKPOINTS. 
   ============================ */

/* ============================== 
	2. LAYOUT MODULE BREAKPOINTS. 
   ============================== */
.bottom-footer{
	text-align: center;
}
	
.left-footer{
	float: none;
}

.right-footer{
	float: none;
	color: #595959;
}
	
.footer .main .section{
	padding: 40px 15px 10px 15px;
}
	
.footer-logo{
    /* width: 80px; */
    /* margin-bottom: 20px; */
    margin: 0 auto;
}

	
/* ============================= 
	3. PAGES MODULE BREAKPOINTS. 
   ============================= */
.section-title{
    padding: 0px 20px 0px 20px;
}
    
/* ================================== 
	4. COMPONENTS MODULE BREAKPOINTS. 
   ================================== */


}

@media (max-width:576px) {
	
/* ============================ 
	1. BASE MODULE BREAKPOINTS. 
   ============================ */
.btn {
  padding: 4px 12px;
  font-size: 14px;
}

/* ============================== 
	2. LAYOUT MODULE BREAKPOINTS. 
   ============================== */
	
/* ============================= 
	3. PAGES MODULE BREAKPOINTS. 
   ============================= */
	
/* ================================== 
	4. COMPONENTS MODULE BREAKPOINTS. 
   ================================== */
}

@media (max-width:450px) {
	
/* ============================ 
	1. BASE MODULE BREAKPOINTS. 
   ============================ */
	
/* ============================== 
	2. LAYOUT MODULE BREAKPOINTS. 
   ============================== */
	
/* ============================= 
	3. PAGES MODULE BREAKPOINTS. 
   ============================= */
	
/* ================================== 
	4. COMPONENTS MODULE BREAKPOINTS. 
   ================================== */
}




 .logolar,  .logolar li{
    display: inline-block;
    vertical-align: middle;
}


.location-top a{
color:#fff;
}

.carousel-fade .carousel-inner .item {
  opacity: 0;
  -webkit-transition-property: opacity;
  -moz-transition-property: opacity;
  -o-transition-property: opacity;
  transition-property: opacity;
}
.carousel-fade .carousel-inner .active {
  opacity: 1;
}
.carousel-fade .carousel-inner .active.left,
.carousel-fade .carousel-inner .active.right {
  left: 0;
  opacity: 0;
  z-index: 1;
}
.carousel-fade .carousel-inner .next.left,
.carousel-fade .carousel-inner .prev.right {
  opacity: 1;
}
.carousel-fade .carousel-control {
  z-index: 2;
}

ul ul.nav.tree {
    margin-left: 15px;
}

ul ul ul.nav.tree {
    margin-left: 15px;
}

ul ul ul ul.nav.tree {
    margin-left: 15px;
}

hr{
    border-top: 2px solid #00a0e3;
}

.footer-categories {
    min-height: 120px;
}

acik:before {
    height: 6px;
    width: 6px;
    display: block;
    border-style: solid;
    border-width: 0 1px 1px 0;
    border-color: transparent #fff #fff transparent;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: border 0.3s;
    transition: border 0.3s;
}

/* -------------------------------- 

Main Components 

-------------------------------- */
.cd-accordion-menu {
 /* width: 90%;
  max-width: 600px;
  background: #4d5158;
  margin: 4em auto;
  box-shadow: 0 4px 40px #70ac76;*/
}
.cd-accordion-menu ul {
  /* by default hide all sub menus */
  display: none;
}
.cd-accordion-menu li {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.cd-accordion-menu input[type=checkbox] {
  /* hide native checkbox */
  position: absolute;
  opacity: 0;
}
.cd-accordion-menu label, .cd-accordion-menu a {
  position: relative;
  display: block;
  padding: 18px 18px 18px 64px;
  background: #4d5158;
  box-shadow: inset 0 -1px #555960;
  color: #ffffff;
  font-size: 1.6rem;
}
.no-touch .cd-accordion-menu label:hover, .no-touch .cd-accordion-menu a:hover {
  background: #52565d;
}
.cd-accordion-menu label::before, .cd-accordion-menu label::after, .cd-accordion-menu a::after {
  /* icons */
  content: '';
  display: inline-block;
  width: 16px;
  height: 16px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cd-accordion-menu label {
  cursor: pointer;
}
.cd-accordion-menu label::before, .cd-accordion-menu label::after {
  background-image: url(../img/cd-icons.svg);
  background-repeat: no-repeat;
}
.cd-accordion-menu label::before {
  /* arrow icon */
  left: 18px;
  background-position: 0 0;
  -webkit-transform: translateY(-50%) rotate(-90deg);
  -moz-transform: translateY(-50%) rotate(-90deg);
  -ms-transform: translateY(-50%) rotate(-90deg);
  -o-transform: translateY(-50%) rotate(-90deg);
  transform: translateY(-50%) rotate(-90deg);
}
.cd-accordion-menu label::after {
  /* folder icons */
  left: 41px;
  background-position: -16px 0;
}
.cd-accordion-menu a::after {
  /* image icon */
 /* left: 36px;
  background: url(../img/cd-icons.svg) no-repeat -48px 0;*/
}
.cd-accordion-menu input[type=checkbox]:checked + label::before {
  /* rotate arrow */
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cd-accordion-menu input[type=checkbox]:checked + label::after {
  /* show open folder icon if item is checked */
  background-position: -32px 0;
}
.cd-accordion-menu input[type=checkbox]:checked + label + ul,
.cd-accordion-menu input[type=checkbox]:checked + label:nth-of-type(n) + ul {
  /* use label:nth-of-type(n) to fix a bug on safari (<= 8.0.8) with multiple adjacent-sibling selectors*/
  /* show children when item is checked */
  display: block;
}
.cd-accordion-menu ul label,
.cd-accordion-menu ul a {
  background: #35383d;
  box-shadow: inset 0 -1px #41444a;
  padding-left: 82px;
}
.no-touch .cd-accordion-menu ul label:hover, .no-touch
.cd-accordion-menu ul a:hover {
  background: #3c3f45;
}
.cd-accordion-menu > li:last-of-type > label,
.cd-accordion-menu > li:last-of-type > a,
.cd-accordion-menu > li > ul > li:last-of-type label,
.cd-accordion-menu > li > ul > li:last-of-type a {
  box-shadow: none;
}
.cd-accordion-menu ul label::before {
  left: 36px;
}
.cd-accordion-menu ul label::after,
.cd-accordion-menu ul a::after {
  left: 59px;
}
.cd-accordion-menu ul ul label,
.cd-accordion-menu ul ul a {
  padding-left: 100px;
}
.cd-accordion-menu ul ul label::before {
  left: 54px;
}
.cd-accordion-menu ul ul label::after,
.cd-accordion-menu ul ul a::after {
  left: 77px;
}
.cd-accordion-menu ul ul ul label,
.cd-accordion-menu ul ul ul a {
  padding-left: 118px;
}
.cd-accordion-menu ul ul ul label::before {
  left: 72px;
}
.cd-accordion-menu ul ul ul label::after,
.cd-accordion-menu ul ul ul a::after {
  left: 95px;
}
@media only screen and (min-width: 600px) {
  .cd-accordion-menu label, .cd-accordion-menu a {
    padding: 10px 10px 10px 20px;
    font-size: 12px;
  }
  .cd-accordion-menu label::before {
    left: 0px;
  }
  .cd-accordion-menu label::after {
    display:none;
  }
  .cd-accordion-menu ul label,
  .cd-accordion-menu ul a {
    padding-left: 35px;
  }
  .cd-accordion-menu ul label::before {
    left: 20px;
  }
  .cd-accordion-menu ul label::after,
  .cd-accordion-menu ul a::after {
    display: none;
  }
  .cd-accordion-menu ul ul label,
  .cd-accordion-menu ul ul a {
    padding-left: 50px;
  }
  .cd-accordion-menu ul ul label::before {
    left: 35px;
  }
  .cd-accordion-menu ul ul label::after,
  .cd-accordion-menu ul ul a::after {
    display: none;
  }
  .cd-accordion-menu ul ul ul label,
  .cd-accordion-menu ul ul ul a {
    padding-left: 65px;
  }
  .cd-accordion-menu ul ul ul label::before {
    left: 50px;
  }
  .cd-accordion-menu ul ul ul label::after,
  .cd-accordion-menu ul ul ul a::after {
    display: none;
  }
}
.cd-accordion-menu.animated label::before {
  /* this class is used if you're using jquery to animate the accordion */
  -webkit-transition: -webkit-transform 0.3s;
  -moz-transition: -moz-transform 0.3s;
  transition: transform 0.3s;
}
.arrowButton{
    display: inline-block;
    font-size: 30px;
    cursor: pointer;
}

.modal-body {
    position: relative;
    padding: 0 15px;
}

.modal-header {
    padding: 0 15px;
    border-bottom: none;
    margin: 10px 0 0 0;
}

.slitem {
	background-size: cover!important;
	background-position: center!important;
}

@media (max-width: 576px) { 
	.slitem {
		height: 245px;
	}
}

@media (min-width: 576px) { 
	.slitem {
		height: 300px;
	}
}


@media (min-width: 768px) { 
	.slitem {
		height: 400px;
	}
}


@media (min-width: 992px) { 
	.slitem {
		height: 500px;
	}
}


@media (min-width: 1200px) { 
	.slitem {
		height: 475px;
	}
}

/*  7. Latest News Area
/*----------------------------------------*/
.container, .row, .col-md-12, .col-md-10, .col-md-9, .col-md-8, .col-md-6, .col-md-7, .col-md-6, .col-md-5, .col-md-4, .col-md-3, .col-md-2, .col-md-1, .as-mainwrapper {
    transition: all 0.3s ease 0s
}

.latest-area {padding: 120px 0 70px;}
.single-latest-text > h3 {
    font-family: raleway;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 5px;
}
.single-latest-item {
    overflow: hidden;
    margin-bottom: 50px;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s
}
.single-latest-item:hover {box-shadow: 2px 5px 25px rgba(34, 30, 31, 0.25);}
.single-latest-text > h3 a {color: #2d3e50;}
.single-latest-image {float: left;}
.single-latest-image a {display: inline-block}
.single-latest-text {
    background: #f6f6f6 none repeat scroll 0 0;
    border-bottom: 2px solid #86bc42;
    overflow: hidden;
    padding: 30px 0 35px 35px;
}
.single-latest-item .single-item-comment-view span {margin-right: 13px;}
.single-latest-item .single-item-comment-view {
    display: block;
    margin-bottom: 2px;
}
.single-latest-item .button-default {
    font-size: 12px;
    margin-top: 7px;
    padding: 4px 21px;
}
.single-latest-item:hover .button-default {background: #2D3E50 none repeat scroll 0 0;}
* {
  margin: 0;
  padding: 0;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.section-title{
    margin-bottom: 30px;
}

.section-title p{
    text-align: center;
    color: #8C8C8C;
	margin-top: 5px;
}

hr.center{
	margin-bottom: 30px;
}

.custom-main{
    margin-bottom: 0px;
}

.background-color{
    background-color: #f2f2f2;
}

/* ================== 
	1.2. TYPOGRAPHY. 
   ================== */
h2{
	text-align: center
}

.btn-modal {
  color: #fff;
  background-color: #00a0e3;
  border-color: #00a0e3;
  padding: 6px 18px;
  border-radius: 5px;
  font-family: 'Open Sans', sans-serif;
}
.btn-modal:focus,
.btn-modal.focus {
  color: #fff;
  background-color: #ff4d58;
  border-color: #ff4d58;
}
.btn-modal:hover {
  color: #fff;
  background-color: #ff4d58;
  border-color: #ff4d58;
}
.btn-modal:active,
.btn-modal.active,
.open > .dropdown-toggle.btn-primary {
  color: #fff;
  background-color: #ff4d58;
  border-color: #ff4d58;
}

/* ========================================================================== */
/* ========================================================================== */
							/* [SHORTCODES ELEMENTS] */
/* ========================================================================== */
/* ========================================================================== */


/* ==========================================================================
    #ACCORDIONS
============================================================================= */
button.accordion {
    background-color: #f2f2f2;
    color: #333;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 14px;
    transition: 0.4s;
    border-radius: 0px;
    border-bottom: solid 1px #FFF;
    font-family: 'Open Sans', sans-serif;
}

button.accordion.active, button.accordion:hover {
    background-color: #e6e6e6;
}

button.accordion:after {
    font-family: FontAwesome;
    content: "\f106";
    color: #666;
    font-weight: bold;
    float: right;
    margin-left: 5px;
    transition: 0.4s;
}

button.accordion.active:after {
    font-family: FontAwesome;
    content: "\f107";
}

div.panel {
    padding: 0 15px;
    background-color: white;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}

.panel{
    border: none;
    margin: 0px;
}

.panel p{
    text-align: left;
    padding: 20px 0px 20px 0px;
    color: #999;
}

/* ========== #ACCORDIONS STYLE 2 ========== */

.elements-2 button.accordion {
    background-color: #FFF;
    color: #00a0e3;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 14px;
    border-radius: 0px;
	border-top: solid 1px #ccc;
    border-left: solid 1px #ccc;
    border-right: solid 1px #ccc;
    font-family: 'Open Sans', sans-serif;
}

.elements-2 button.accordion.last {
    border-bottom: solid 1px #ccc;
}

.elements-2 button.accordion.active, button.accordion:hover {
    background-color: #f2f2f2;
}

.elements-2 button.accordion:after {
    font-family: FontAwesome;
    content: "\f067";
    color: #00a0e3;
    font-weight: bold;
    float: right;
    margin-left: 5px;
    transition: 0.4s;
}

.elements-2 button.accordion.active:after {
    font-family: FontAwesome;
    content: "\f00d";
}

.elements-2 div.panel {
    padding: 0 15px;
    background-color: white;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
	border-left: solid 1px #ccc;
    border-right: solid 1px #ccc;
	border-radius: 0px;
}

.elements-2 .panel{
    border: none;
    margin: 0px;
}

.elements-2 .panel p{
    text-align: left;
    padding: 20px 0px 20px 0px;
    color: #999;
}

/* ========== #ACCORDIONS STYLE 3 ========== */

.elements-3 button.accordion {
    background-color: #f2f2f2;
    color: #333;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    border: none;
    text-align: right;
    outline: none;
    font-size: 14px;
    transition: 0.4s;
    border-radius: 0px;
    border-bottom: solid 1px #FFF;
    font-family: 'Open Sans', sans-serif;
}

.elements-3 button.accordion.active, button.accordion:hover {
    background-color: #e6e6e6;
}

.elements-3 button.accordion.panel1:after {
    font-family: FontAwesome;
    content: "\0031";
    color: #333;
    font-weight: bold;
    float: left;
    margin-left: 5px;
    transition: 0.4s;
	font-family: 'Open Sans', sans-serif;
	background: #dddddd;
	width: 25px;
	height: 25px;
	border-radius: 5%;
	text-align: center;
	line-height: 25px;
}

.elements-3 button.accordion.panel1.active:after {
    font-family: FontAwesome;
    content: "\0031";
	color: #00a0e3;
	font-family: 'Open Sans', sans-serif;
	background: #00a0e3;
	color: #FFF
}

.elements-3 button.accordion.panel2:after {
    font-family: FontAwesome;
    content: "\0032";
    color: #333;
    font-weight: bold;
    float: left;
    margin-left: 5px;
    transition: 0.4s;
	font-family: 'Open Sans', sans-serif;
	background: #dddddd;
	width: 25px;
	height: 25px;
	border-radius: 5%;
	text-align: center;
	line-height: 25px;
}

.elements-3 button.accordion.panel2.active:after {
    font-family: FontAwesome;
    content: "\0032";
	color: #00a0e3;
	font-family: 'Open Sans', sans-serif;
	background: #00a0e3;
	color: #FFF
}

.elements-3 button.accordion.panel3:after {
    font-family: FontAwesome;
    content: "\0033";
    color: #333;
    font-weight: bold;
    float: left;
    margin-left: 5px;
    transition: 0.4s;
	font-family: 'Open Sans', sans-serif;
	background: #dddddd;
	width: 25px;
	height: 25px;
	border-radius: 5%;
	text-align: center;
	line-height: 25px;
}

.elements-3 button.accordion.panel3.active:after {
    font-family: FontAwesome;
    content: "\0033";
	color: #00a0e3;
	font-family: 'Open Sans', sans-serif;
	background: #00a0e3;
	color: #FFF
}

.elements-3 button.accordion.panel4:after {
    font-family: FontAwesome;
    content: "\0034";
    color: #333;
    font-weight: bold;
    float: left;
    margin-left: 5px;
    transition: 0.4s;
	font-family: 'Open Sans', sans-serif;
	background: #dddddd;
	width: 25px;
	height: 25px;
	border-radius: 5%;
	text-align: center;
	line-height: 25px;
}

.elements-3 button.accordion.panel4.active:after {
    font-family: FontAwesome;
    content: "\0034";
	color: #00a0e3;
	font-family: 'Open Sans', sans-serif;
	background: #00a0e3;
	color: #FFF
}

.elements-3 div.panel {
    padding: 0 15px;
    background-color: white;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}

.elements-3 .panel{
    border: none;
    margin: 0px;
}

.elements-3 .panel p{
    text-align: left;
    padding: 20px 0px 20px 0px;
    color: #999;
}

/* ==========================================================================
    #ALERTS
============================================================================= */
.alert {
  padding: 20px;
  margin-bottom: 20px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-family: 'Open Sans', sans-serif;
}

.close {
  float: right;
  font-size: 24px;
  font-weight: bold;
  line-height: 1;
  color: #FFF;
  text-shadow: 0 1px 0 #fff;
  filter: alpha(opacity=20);
  opacity: .2;
  padding-right: 20px;
}

.alert-success {
  color: #fff;
  background-color: #76bf5a;
  border-color: #76bf5a;
  font-size: 16px;
}

.alert-success. fa{
    font-size: 20px;
}

.alert-info {
  color: #FFF;
  background-color: #42a5d7;
  border-color: #42a5d7;
  font-size: 16px;
}

.alert-info .fa{
    font-size: 20px;
}

.alert-warning {
  color: #FFF;
  background-color: #e7c418;
  border-color: #e7c418;
  font-size: 16px;
}

.alert-warning .fa{
    font-size: 20px;
}

.alert-danger {
  color: #FFF;
  background-color: #be5b5b;
  border-color: #be5b5b;
  font-size: 16px;
}

.alert-danger .fa{
    font-size: 20px;
}

/* ==========================================================================
    #ANIMATIONS
============================================================================= */
.animate-box{
    width: 100%;
    height: 100%;
    background: #f2f2f2;
    padding: 40px 10px 60px 10px; 
}

.animate-box .fa{
    font-size: 40px;
    color: #00a0e3;
    margin-bottom: 10px;
}

.animate-box p{
    text-align: center;
    color: #333;
}

.animate-box h4{
    text-align: center;
    color: #333;
    margin: 5px 0px 10px 0px;
}

/* ==========================================================================
    #BLOCKQUOTES
============================================================================= */
blockquote{
  display:block;
  background: #fff;
  padding: 40px 20px 40px 45px;
  margin: 0 0 20px;
  position: relative;
  font-size: 16px;
  line-height: 1.2;
  color: #666;
  text-align: justify;
  border-left: 10px solid #00a0e3;
  border-right: 2px solid #00a0e3;
  -moz-box-shadow: 2px 2px 15px #ccc;
  -webkit-box-shadow: 2px 2px 15px #ccc;
  box-shadow: 2px 2px 15px #ccc;
}

blockquote::before{
  content: "\201C"; /*Unicode for Left Double Quote*/
  font-family: Georgia, serif;
  font-size: 60px;
  font-weight: bold;
  color: #999;
  position: absolute;
  left: 10px;
  top:5px;
}

blockquote::after{
  content: "";
}

blockquote a{
  text-decoration: none;
  background: #eee;
  cursor: pointer;
  padding: 0 3px;
  color: #00a0e3;
}

blockquote a:hover{
 color: #666;
}

blockquote em{
  font-style: italic;
}

/* ========== #BLOCKQUOTES STYLE 2 ========== */

.elements-2 blockquote{
  display:block;
  background: #fff;
  padding: 40px 20px 40px 45px;
  margin: 0 0 20px;
  position: relative;
  font-size: 16px;
  line-height: 1.2;
  color: #666;
  text-align: justify;
  border-left: 10px solid #808080;
  border-right: none;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.elements-2 blockquote::before{
  content: "\201C"; /*Unicode for Left Double Quote*/
  font-family: Georgia, serif;
  font-size: 60px;
  font-weight: bold;
  color: #999;
  position: absolute;
  left: 10px;
  top:5px;
}

.elements-2 blockquote::after{
  content: "";
}

.elements-2 blockquote a{
  text-decoration: none;
  background: #eee;
  cursor: pointer;
  padding: 0 3px;
  color: #00a0e3;
}

.elements-2 blockquote a:hover{
 color: #666;
}

.elements-2 blockquote em{
  font-style: italic;
}

.elements-2 blockquote p{
  margin-top: 10px;
}

/* ========== #BLOCKQUOTES STYLE 2 ========== */

.elements-3 blockquote{
  display:block;
  background: #fff;
  padding: 40px 20px 40px 45px;
  margin: 0 0 20px;
  position: relative;
  font-size: 16px;
  line-height: 1.2;
  color: #666;
  text-align: justify;
  border-left: 10px solid #00a0e3;
  border-right: 2px solid #00a0e3;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.elements-3 blockquote::before{
  content: "\201C"; /*Unicode for Left Double Quote*/
  font-family: Georgia, serif;
  font-size: 60px;
  font-weight: bold;
  color: #999;
  position: absolute;
  left: 10px;
  top:5px;
}

.elements-3 blockquote::after{
  content: "";
}

.elements-3 blockquote a{
  text-decoration: none;
  background: #eee;
  cursor: pointer;
  padding: 0 3px;
  color: #00a0e3;
}

.elements-3 blockquote a:hover{
 color: #666;
}

.elements-3 blockquote em{
  font-style: italic;
}

/* ==========================================================================
    #BREADCRUMB
============================================================================= */

/* ========== #BREADCRUMB RESET ========== */

.breadcrumb {
  padding: 8px 15px;
  margin-bottom: 20px;
  list-style: none;
  background-color: transparent;
  border-radius: 4px;
}
.breadcrumb > li {
  display: inline-block;
}
.breadcrumb > li + li:before {
  padding: 0 5px;
  color: #ccc;
  content: "";
}
.breadcrumb > .active {
  color: #777;
}


/* ========== #BREADCRUMB STYLE 1 ========== */
.breadcrumb {
  font: .75em sans-serif;
  list-style: none;
}

.breadcrumb.bc2x {
  font-size: 16px;
}

.breadcrumb.bc3x {
  font-size: 18px;
}

.breadcrumb p {
  margin: 0;
}

.breadcrumb li {
  display: inline-block;
  margin-bottom: .2em;
}

.breadcrumb li a {
  background-color: #ff8088;
  box-sizing: border-box;
  color: #fff;
  display: block;
  max-height: 2em;
  padding: .5em 1em .5em 1.5em;
  position: relative;
  text-decoration: none;
  transition: .25s;
}

.breadcrumb li a:before {
  border-top: 1em solid transparent;
  border-bottom: 1em solid transparent;
  border-left: 1em solid #fff;
  content: "";
  position: absolute;
  top: 0;
  right: -1.25em;
  z-index: 1;
}

.breadcrumb li a:after {
  border-top: 1em solid transparent;
  border-bottom: 1em solid transparent;
  border-left: 1em solid #ff8088;
  content: "";
  position: absolute;
  top: 0;
  right: -1em;
  transition: .25s;
  z-index: 1;
}

.breadcrumb li a:hover {
  background-color: #ff1a29;
}

.breadcrumb li a:hover:after {
  border-left-color: #ff1a29;
}

.breadcrumb li:last-child a {
  background-color: #ff1a29;
  pointer-events: none;
}

.breadcrumb li:last-child a:after {
  border-left-color: #ff1a29;
}



/* ==========================================================================
    #BUTTONS
============================================================================= */
.buttons-box{
    display: inline-block;
    margin: 0px 10px 10px 0px;
}

/*===== BTN DEFAULT =====*/
.btn-default{
    display: inline-block;
    padding: 10px 25px;
    border: 1px solid #ccc;
    font-size: 15px;
    border-radius: 4px;
    background-color: transparent;
    color: #333;
}

.btn-default:hover {
    color: #333;
    background-color: #FFF;
    border-color: #ccc;
}

.btn-default:focus,
.btn-default.focus {
    color: #333;
    background-color: #FFF;
    border-color: #ccc;
}

/*===== BTN PRIMARY =====*/
.btn-primary {
    display: inline-block;
    padding: 10px 25px;
    border: 1px solid #2e6da4;
    font-size: 15px;
    border-radius: 4px;
    background-color: #337ab7;
    color: #fff;
}
.btn-primary:focus,
.btn-primary.focus {
    color: #fff;
    background-color: #286090;
    border-color: #122b40;
}
.btn-primary:hover {
    color: #fff;
    background-color: #286090;
    border-color: #204d74;
}

/*===== BTN SUCCESS =====*/
.btn-success {
    color: #fff;
    display: inline-block;
    padding: 10px 25px;
    border: 1px solid #5cb85c;
    font-size: 15px;
    border-radius: 4px;
    background-color: #5cb85c;
}
.btn-success:focus,
.btn-success.focus {
    color: #fff;
    background-color: #449d44;
    border-color: #449d44;
}
.btn-success:hover {
    color: #fff;
    background-color: #449d44;
    border-color: #449d44;
}
/*===== BTN INFO =====*/
.btn-info {
    color: #fff;
    display: inline-block;
    padding: 10px 25px;
    border: 1px solid #5bc0de;
    font-size: 15px;
    border-radius: 4px;
    background-color: #5bc0de;
}
.btn-info:focus,
.btn-info.focus {
    color: #fff;
    background-color: #31b0d5;
    border-color: #31b0d5;
}
.btn-info:hover {
    color: #fff;
    background-color: #31b0d5;
    border-color: #31b0d5;
}
/*===== BTN WARNING =====*/
.btn-warning {
    color: #fff;
    display: inline-block;
    padding: 10px 25px;
    border: 1px solid #f0ad4e;
    font-size: 15px;
    border-radius: 4px;
    background-color: #f0ad4e;
}
.btn-warning:focus,
.btn-warning.focus {
    color: #fff;
    background-color: #ec971f;
    border-color: #ec971f;
}
.btn-warning:hover {
    color: #fff;
    background-color: #ec971f;
    border-color: #ec971f;
}
/*===== BTN DANGER =====*/
.btn-danger {
    color: #fff;
    display: inline-block;
    padding: 10px 25px;
    border: 1px solid #d9534f;
    font-size: 15px;
    border-radius: 4px;
    background-color: #d9534f;
}
.btn-danger:focus,
.btn-danger.focus {
    color: #fff;
    background-color: #c9302c;
    border-color: #c9302c;
}
.btn-danger:hover {
    color: #fff;
    background-color: #c9302c;
    border-color: #c9302c;
}

/*===== BTN ROUNDED =====*/
.rounded{
border-radius: 17px;
    
}

.rounded-2{
height: 50px;
-moz-border-radius: 1em 4em 1em 4em;
border-radius: 1em 4em 1em 4em;
    font-weight: normal;
    
}

/*===== BTN TWO COLORS =====*/
.default-diagonal {
  background:#FFF;
  background: linear-gradient(to right bottom, #d9d9d9 50%, #bfbfbf 50%);
  display:inline-block;
  text-align:center;
  color:#333;
  font-weight:normal;
  text-transform:uppercase;
  font-family:sans-serif;
}

.default-diagonal:hover, .two-colors:focus {
  background:#FFF;
  background: linear-gradient(to right bottom, #cccccc 50%, #b3b3b3 50%);
}

.primary-diagonal {
  background:#2e6da4;
  background: linear-gradient(to right bottom, #3277b3 50%, #2e6da4 50%);
  display:inline-block;
  text-align:center;
  color:#FFF;
  font-weight:normal;
  text-transform:uppercase;
  font-family:sans-serif;
}

.primary-diagonal:hover, .two-colors:focus {
  background:#2e6da4;
  background: linear-gradient(to right bottom, #2d6a9f 50%, #275d8b 50%);
  border-color: #275d8b; 
}

.success-diagonal {
  background:#5cb85c;
  background: linear-gradient(to right bottom, #71c171 50%, #5cb85c 50%);
  display:inline-block;
  text-align:center;
  color:#FFF;
  font-weight:normal;
  text-transform:uppercase;
  font-family:sans-serif;
}

.success-diagonal:hover, .two-colors:focus {
  background:#5cb85c;
  background: linear-gradient(to right bottom, #4eb14e 50%, #46a046 50%);
  border-color: #46a046; 
}

.info-diagonal {
  background:#5bc0de;
  background: linear-gradient(to right bottom, #6bc5e1 50%, #5bc0de 50%);
  display:inline-block;
  text-align:center;
  color:#FFF;
  font-weight:normal;
  text-transform:uppercase;
  font-family:sans-serif;
}

.info-diagonal:hover, .two-colors:focus {
  background:#5cb85c;
  background: linear-gradient(to right bottom, #56bddc 50%, #41b5d8 50%);
  border-color: #41b5d8; 
}

.warning-diagonal {
  background:#f0ad4e;
  background: linear-gradient(to right bottom, #f1b25b 50%, #f0ad4e 50%);
  display:inline-block;
  text-align:center;
  color:#FFF;
  font-weight:normal;
  text-transform:uppercase;
  font-family:sans-serif;
}

.warning-diagonal:hover, .two-colors:focus {
  background:#f0ad4e;
  background: linear-gradient(to right bottom, #efa743 50%, #ed9c2c 50%);
  border-color: #ed9c2c; 
}

.danger-diagonal {
  background:#d9534f;
  background: linear-gradient(to right bottom, #da5c58 50%, #d9534f 50%);
  display:inline-block;
  text-align:center;
  color:#FFF;
  font-weight:normal;
  text-transform:uppercase;
  font-family:sans-serif;
}

.danger-diagonal:hover, .two-colors:focus {
  background:#d9534f;
  background: linear-gradient(to right bottom, #d64843 50%, #d1332e 50%);
  border-color: #d1332e; 
}

/* ==========================================================================
    #CALL TO ACTION
============================================================================= */

/* ========== #CALL TO ACTION 1 ========== */
.btn-callout {
  color: #fff;
  background-color: transparent;
  border-color: #fff;
  transition: 0.3s;
  float: right;
  border-radius: 4px;
  margin-top: 5px;
}
.btn-callout:focus,
.btn-callout.focus {
  color: #00a0e3;
  background-color: #fff;
  border-color: #00a0e3;
}
.btn-callout:hover {
  color: #00a0e3;
  background-color: #fff;
  border-color: #00a0e3;
}
.btn-callout:active,
.btn-callout.active,
.open > .dropdown-toggle.btn-default {
  color: #00a0e3;
  background-color: #fff;
  border-color: #00a0e3;
}

.banner-callout{
    width: 100%;
    height: 120px;
    padding: 30px 20px 45px 20px;
    background-color: #00a0e3;
    border-radius: 4px; 
}

.info-callout{
    float: left;
    margin-top: -5px;
}

.info-callout h3{
    color: #FFF;
}

.info-callout p{
    color: #FFF;
}

/* ========== #CALL TO ACTION 2 ========== */
.elements-2 .btn-callout {
  color: #fff;
  background-color: #00a0e3;
  border-color: #fff;
  transition: 0.3s;
  float: right;
  border-radius: 4px;
  margin-top: 5px;
}
.elements-2 .btn-callout:focus,
.elements-2 .btn-callout.focus {
  color: #00a0e3;
  background-color: #fff;
  border-color: #00a0e3;
}
.elements-2 .btn-callout:hover {
  color: #00a0e3;
  background-color: #fff;
  border-color: #00a0e3;
}
.elements-2 .btn-callout:active,
.elements-2 .btn-callout.active,
.open > .dropdown-toggle.btn-default {
  color: #00a0e3;
  background-color: #fff;
  border-color: #00a0e3;
}

.elements-2 .banner-callout{
    width: 100%;
    height: 120px;
    padding: 30px 20px 45px 20px;
    background-color: #fff;
    border-radius: 4px; 
    border: solid 1px #00a0e3;
}

.elements-2 .info-callout{
    float: left;
    margin-top: -5px;
}

.elements-2 .info-callout h3{
    color: #00a0e3;
}

.elements-2 .info-callout p{
    color: #00a0e3;
}

/* ========== #CALL TO ACTION 3 ========== */
.elements-3 .btn-callout {
  color: #fff;
  background-color: transparent;
  border-color: #fff;
  transition: 0.3s;
  float: left;
  border-radius: 50px;
  margin-top: 5px;
}
.elements-3 .btn-callout:focus,
.elements-3 .btn-callout.focus {
  color: #00a0e3;
  background-color: #fff;
  border-color: #00a0e3;
}
.elements-3 .btn-callout:hover {
  color: #00a0e3;
  background-color: #fff;
  border-color: #00a0e3;
}
.elements-3 .btn-callout:active,
.elements-3 .btn-callout.active,
.open > .dropdown-toggle.btn-default {
  color: #00a0e3;
  background-color: #fff;
  border-color: #00a0e3;
}

.elements-3 .banner-callout{
    width: 100%;
    height: 120px;
    padding: 30px 20px 45px 20px;
    background-color: #00a0e3;
    border-radius: 4px; 
}

.elements-3 .info-callout{
    float: right;
    margin-top: -5px;
}

.elements-3 .info-callout h3{
    color: #FFF;
    text-align: right;
}

.elements-3 .info-callout p{
    color: #FFF;
    text-align: right;
}

/* ========== #CALL TO ACTION 4 ========== */
.elements-4 .btn-callout {
  color: #fff;
  background-color: transparent;
  border-color: #fff;
  transition: 0.3s;
  float: none;
  border-radius: 4px;
  margin-top: 15px;
}
.elements-4 .btn-callout:focus,
.elements-4 .btn-callout.focus {
  color: #00a0e3;
  background-color: #fff;
  border-color: #00a0e3;
}
.elements-4 .btn-callout:hover {
  color: #00a0e3;
  background-color: #fff;
  border-color: #00a0e3;
}
.elements-4 .btn-callout:active,
.elements-4 .btn-callout.active,
.open > .dropdown-toggle.btn-default {
  color: #00a0e3;
  background-color: #fff;
  border-color: #00a0e3;
}

.elements-4 .banner-callout{
    width: 100%;
    height: 100%;
    padding: 30px;
    background-color: #00a0e3;
    border-radius: 4px; 
    text-align: center;
}

.elements-4 .info-callout{
    float: none;
    margin-top: -5px;
}

.elements-4 .info-callout h3{
    color: #FFF;
}

.elements-4 .info-callout p{
    color: #FFF;
}


/* ==========================================================================
    #CHARTS
============================================================================= */
#area-chart,
#line-chart,
#bar-chart,
#stacked,
#pie-chart{
  min-height: 250px;
}


/* ==========================================================================
    #CONTENT BOXES
============================================================================= */
/* ========== #CONTENT BOXES 1 ========== */
.content-boxes{
    width:100%;
    height: 100%;
    display:block;
    position:relative;
}

.content-boxes img{
    width: 100%;
}

.content-box-info{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #FFF;
    width: 100%;
    padding: 0px 10px 0px 10px;
}

.content-box-info .icon{
    width: 40px;
    margin: 0px auto 5px auto;
}

.content-box-info .icon .fa{
    font-size: 40px;
}

/* ========== #CONTENT BOXES 2 ========== */
.content-boxes-2{
    background: #eef0f6;
    width: 100%;
    height: 220px;
    padding: 40px;
}

.content-box-info-2 .icon{
    display:inline-block;
    font-size: 25px;
    line-height: 80px;
    background: #595959;
    color: #FFF;
    width: 80px;
    height: 80px;
    text-align: center;
    vertical-align: bottom;
    border-radius: 5px;
    float: left;
	border: solid 1px #595959;
	transition: 0.3s;
    margin-right: 20px;
}

.content-box-info-2 .icon .fa{
    color: #fff;
    font-size: 40px;
}

.btn-right{
    float: right;
    margin-top: 20px;
}

.content-boxes-2 .btn-right .btn-default {
    color: #fff;
    background-color: #00a0e3;
    border-color: #00a0e3;
    padding: 8px 12px;
    font-size: 14px;
    line-height: 1.42857143;
}
.content-boxes-2 .btn-right .btn-default:focus,
.content-boxes-2 .btn-right .btn-default.focus {
  color: #00a0e3;
  background-color: #fff;
  border-color: #fff;
}
.content-boxes-2 .btn-right .btn-default:hover {
  color: #00a0e3;
  background-color: #fff;
  border-color: #fff;
}
.content-boxes-2 .btn-right .btn-default:active,
.content-boxes-2 .btn-right .btn-default.active,
.open > .dropdown-toggle.btn-default {
  color: #00a0e3;
  background-color: #fff;
  border-color: #fff;
}


/* ========== #CONTENT BOXES 3 ========== */
.content-boxes-3{
    background: #02567e;
    width: 100%;
    height: 220px;
    padding: 40px;
}

.content-box-info-3 .icon{
    display:inline-block;
    font-size: 25px;
    line-height: 80px;
    background: #fff;
    color: #FFF;
    width: 80px;
    height: 80px;
    text-align: center;
    vertical-align: bottom;
    border-radius: 50px;
    float: left;
	border: solid 1px #fff;
	transition: 0.3s;
    margin-right: 20px;
}

.content-box-info-3 .icon .fa{
    color: #00a0e3;
    font-size: 40px;
}

.content-box-info-3 h5{
    color: #FFF;
}

.content-box-info-3 p{
    color: #FFF;
}

.btn-right{
    float: right;
    margin-top: 20px;
}

.content-boxes-3 .btn-right .btn-default {
    color: #00a0e3;
    background-color: #fff;
    border-color: #fff;
    padding: 8px 12px;
    font-size: 14px;
    line-height: 1.42857143;
}
.content-boxes-3 .btn-right .btn-default:focus,
.content-boxes-3 .btn-right .btn-default.focus {
  color: #333;
  background-color: #e6e6e6;
  border-color: #8c8c8c;
}
.content-boxes-3 .btn-right .btn-default:hover {
  color: #333;
  background-color: #e6e6e6;
  border-color: #adadad;
}
.content-boxes-3 .btn-right .btn-default:active,
.content-boxes-3 .btn-right .btn-default.active,
.open > .dropdown-toggle.btn-default {
  color: #333;
  background-color: #e6e6e6;
  border-color: #adadad;
}



/* ========== #CONTENT BOXES 3 ========== */
.circle-col-1, .circle-col-2, .circle-col-3, .circle-col-4{
    padding: 40px 10px 50px 10px;
    color: #FFF;
    text-align: center;
}

.circle-col-1 p{
    font-size: 13px;
}

.circle-col-2 p{
    font-size: 13px;
}

.circle-col-3 p{
    font-size: 13px;
}

.circle-col-4 p{
    font-size: 13px;
}

.circle-col-1, .circle-col-3{
    background: #3FB6E0; 
}

.circle-col-2, .circle-col-4{
    background: #65c4e6;
}

.span-circle{
    position: relative;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #FFF;
    margin: auto auto 20px auto;
}

.span-icon{
    position: absolute;
    margin: auto;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 50px;
    border-radius: 3px;
}

.span-icon img{
    width: 100%;
}


/* ==========================================================================
    #COUNTERS
============================================================================= */
/* ========== #COUNTERS STYLE 1 ========== */
.inner-counter{
    background: transparent;
}

.counter-icon{
    width: 40px;
    margin: auto;
}

.counter-icon .fa{
    font-size: 40px;
    color: #666666;
}

.counter{
    text-align: center;
    font-size: 30px;
    color: #666666;
}

.counter-statistics h5{
    text-align: center;
    font-size: 16px;
    color: #808080;
}

/* ========== #COUNTERS STYLE 2 ========== */
.elements-2 .inner-counter{
    background: transparent;
}

.elements-2 .counter-icon{
    font-size: 25px;
    line-height: 80px;
    background: #fff;
    color: #FFF;
    width: 80px;
    height: 80px;
    text-align: center;
    vertical-align: bottom;
    border-radius: 50%;
	border: solid 2px #666666;
    margin: auto;
}

.elements-2 .counter-icon .fa{
    font-size: 40px;
    color: #666666;
}

.elements-2 .counter{
    text-align: center;
    font-size: 30px;
    color: #666666;
}

.elements-2 .counter-statistics h5{
    text-align: center;
    font-size: 16px;
    color: #808080;
}

/* ========== #COUNTERS STYLE 3 ========== */
.elements-3 .inner-counter{
    background: transparent;
}

.elements-3 .counter-icon{
    width: 40px;
    margin: auto;
}

.elements-3 .counter-icon img{
    width: 100%;
}


.elements-3 .counter{
    text-align: center;
    font-size: 30px;
    color: #666666;
}

.elements-3 .counter-statistics h5{
    text-align: center;
    font-size: 16px;
    color: #808080;
}

/* ========== #COUNTERS STYLE 4 ========== */
.elements-4 .inner-counter{
    background: transparent;
}

.elements-4 .counter{
    text-align: center;
    font-size: 60px;
    color: #666666;
}

.elements-4 .counter-statistics h5{
    text-align: center;
    font-size: 16px;
    color: #808080;
}

/* ========== #COUNTERS STYLE 5 ========== */
.elements-5 .inner-counter{
    background: #FFF;
}

.elements-5 .counter{
    text-align: center;
    font-size: 30px;
    color: #666666;
}

.elements-5 .counter-statistics p{
    text-align: center;
    font-size: 14px;
    color: #808080;
}

/* ==========================================================================
    #CUSTOMERS
============================================================================= */
/* ========== #CUSTOMERS STYLE 1 ========== */
.customers-grid{
    border-right: solid 1px #ddd;
    border-bottom: solid 1px #ddd;
    transition: 0.3s;
}

.customers-grid:hover{
    background: #f2f2f2;
}

.last-grid{
    border-right: solid 1px #fff;
}

.botton-grid{
    border-bottom: solid 1px #fff;
}

.customers-grid img{
    width: 100%;
    margin: auto;
}

.customer-logo{
    margin: auto;
    padding: 20px;
}


/* ========== #CUSTOMERS STYLE 2 ========== */
.dark-bg{
    background: #333;
}

.elements-2 .customers-grid{
    border-right: solid 1px #666;
    border-bottom: solid 1px #666;
    transition: 0.3s;
}

.elements-2 .customers-grid:hover{
    background: #f2f2f2;
}

.elements-2 .last-grid{
    border-right: solid 1px #fff;
}

.elements-2 .botton-grid{
    border-bottom: solid 1px #fff;
}

.elements-2 .customers-grid img{
    width: 100%;
    margin: auto;
}

.elements-2 .customer-logo{
    margin: auto;
    padding: 20px;
}

/* ========== #CUSTOMERS STYLE 3 ========== */

.slick-dots {
  text-align: center;
  padding: 0;
}
.slick-dots li {
  display: inline-block;
  margin-left: 4px;
  margin-right: 4px;

}
.slick-dots li.slick-active button {
  background-color: #999;
}
.slick-dots li button {
  font: 0/0 a;
  text-shadow: none;
  color: transparent;
  background-color: #fff;
  border: solid 1px #999;
  width: 15px;
  height: 15px;
  border-radius: 50%;
}
.slick-dots li :hover {
  background-color: #999;
}

.responsive{
    clear: both;
}

.responsive div img{
    margin-left: auto;
    margin-right: auto;
}

@media screen and (max-width: 800px) {
  .next, .prev {
    display: none !important;
  }
}

.span-item img{
    width: 100%;
}


/* ==========================================================================
    #DROPCAPS
============================================================================= */
/* ========== #DROPCAPS STYLE 1 ========== */

.dropcaps p{
    line-height: 1.7;
}

span-dropcaps{
    font-size: 40px;
    float: left;
    width: 60px;
    height: 60px;
    background: #f0f0f0;
    line-height: 60px;
    text-align: center;
    margin-right: 10px;
}

span-dropcaps-color{
    font-size: 40px;
    float: left;
    width: 60px;
    height: 60px;
    background: #00a0e3;
    line-height: 60px;
    text-align: center;
    margin-right: 10px;
    color: #FFF; 
}

color-text{
    background: #00a0e3;
    color: #fff;
    padding: 3px 2px 3px 2px;
}

/* ========== #DROPCAPS STYLE 2 ========== */

span-dropcaps-rounded{
    font-size: 40px;
    float: left;
    width: 60px;
    height: 60px;
    background: #f0f0f0;
    line-height: 60px;
    text-align: center;
    margin-right: 10px;
    border-radius: 50%;
}


span-dropcaps-color-rounded{
    font-size: 40px;
    float: left;
    width: 60px;
    height: 60px;
    background: #00a0e3;
    line-height: 60px;
    text-align: center;
    margin-right: 10px;
    color: #FFF;
    border-radius: 50%; 
}

color-text-2{
    background: #333;
    color: #fff;
    padding: 3px 2px 3px 2px;
}

/* ========== #DROPCAPS STYLE 3 ========== */

.elements-3 .dropcaps p{
    line-height: 1.7;
}

.elements-3 span-dropcaps{
    font-size: 20px;
    float: left;
    width: 40px;
    height: 40px;
    background: #f0f0f0;
    line-height: 40px;
    text-align: center;
    margin-right: 10px;
}

.elements-3 span-dropcaps-color-rounded{
    font-size: 20px;
    float: left;
    width: 40px;
    height: 40px;
    background: #00a0e3;
    line-height: 40px;
    text-align: center;
    margin-right: 10px;
    color: #FFF; 
}

.elements-3 color-text{
    background: #00a0e3;
    color: #fff;
    padding: 3px 2px 3px 2px;
}

/* ==========================================================================
    #FLIP BOXEX
============================================================================= */
/* ========== #FLIP BOXES STYLE 1 ========== */

.flip-boxes{
    width: 100%;
    height: 280px;
    background: #f0f0f0;
    padding: 30px 10px 20px 10px; 
}

.flip-boxes .fa{
    font-size: 40px;
    color: #00a4e6;
    margin-bottom: 10px;
}

.flip-boxes p{
    text-align: center;
    color: #333;
}

.flip-boxes h3{
    text-align: center;
    color: #333;
    font-size: 20px;
    margin-bottom: 10px;
}

.flip-boxes .fa{
    font-size: 40px;
    color: #00a4e6;
    margin-bottom: 10px;
    width: 80px;
    height: 80px;
    border: solid 1px #00a4e6;
    border-radius: 50%;
    padding: 18px 15px 18px 15px;
    transition: 0.3s;
}

.flip-container {
	perspective: 1000px;
}

.flip-container:hover .flipper, .flip-container.hover .flipper {
		transform: rotateY(180deg);
	}

.flip-container, .front, .back {
	width: 100%;
	height: 280px;
}

.flipper {
	transition: 0.6s;
	transform-style: preserve-3d;

	position: relative;
}

.front, .back {
	backface-visibility: hidden;
	position: absolute;
	top: 0;
	left: 0;
}

.front {
	z-index: 2;
	transform: rotateY(0deg);
}

.back {
	transform: rotateY(180deg);
}

.back .flip-boxes{
    background-color: #00a4e6;
    color: #FFF;
    padding: 50px 15px 50px 15px;
}

.back .flip-boxes h3{
    color: #FFF;
    font-size: 25px;
}

.back .flip-boxes p{
    color: #FFF;
    margin-top: 10px;
}

.btn-flip-boxes{
    display: inline-block;
    padding: 8px 26px;
    border: 1px solid #FFF;
    font-size: 17px;
    border-radius: 4px;
    background-color: transparent;
    color: #FFF;
}

.btn-flip-boxes:hover {
  color: #00a4e6;
  background-color: #FFF;
  border-color: #FFF;
}

.btn-flip-boxes:focus,
.btn-flip-boxes.focus {
  color: #00a4e6;
  background-color: #FFF;
  border-color: #FFF;
}

/* ========== #FLIP BOXES UP AND DOWN ========== */
.flip {
  height: 280px;
  cursor: pointer;
  perspective: 800px;
}
.flip:hover > .flip-box.up {
  transform: rotateX(180deg);
}
.flip:hover > .flip-box.down {
  transform: rotateX(-180deg);
}

.flip .flip-box {
  width: 100%;
  height: 100%;
  position: absolute;
  transform-style: preserve-3d;
  transition: all 0.6s;
}

.flip .flip-box .flip-side {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  text-align: center;
  backface-visibility: hidden;
}

.flip .flip-box .flip-side.flip-front {
  background: #f0f0f0;
  padding: 30px 10px 20px 10px;
}

.flip .flip-box .flip-side.flip-back {
  background: #00a4e6;
  padding: 50px 15px 50px 15px;
  color: #FFF;
}

.flip .flip-box.up .flip-back {
  transform: rotateX(180deg);
}

.flip .flip-box.down .flip-back {
  transform: rotateX(-180deg);
}

.flip .flip-box.left .flip-back {
  transform: rotateY(-180deg);
}

.flip .flip-box.right .flip-back {
  transform: rotateY(180deg);
}

.flip-front .fa{
    font-size: 40px;
    color: #00a4e6;
    margin-bottom: 10px;
    width: 80px;
    height: 80px;
    border: solid 1px #00a4e6;
    border-radius: 50%;
    padding: 18px 15px 18px 15px;
    transition: 0.3s;
}

.flip-front p{
    text-align: center;
    color: #333;
}

.flip-front h3{
    text-align: center;
    color: #333;
    font-size: 20px;
    margin-bottom: 10px;
}

.flip-back h3{
    color: #FFF;
    font-size: 25px;
}

.flip-back p{
    color: #FFF;
    margin-top: 10px;
}

.flip-back .btn-flip-boxes{
    display: inline-block;
    padding: 8px 26px;
    border: 1px solid #FFF;
    font-size: 17px;
    border-radius: 4px;
    background-color: transparent;
    color: #FFF;
}

.flip-back .btn-flip-boxes:hover {
  color: #00a4e6;
  background-color: #FFF;
  border-color: #FFF;
}

.flip-back .btn-flip-boxes:focus,
.flip-back .btn-flip-boxes.focus {
  color: #00a4e6;
  background-color: #FFF;
  border-color: #FFF;
}


/* ========== #FLIP BOXES 3D ========== */
.flip-3d {
    margin: 30px auto;
    position: relative;
    height: 100px;
    background: #f0f0f0;
    color: #333;
    text-align:center;
}
.flip-3d h1 {

    line-height: 100px;
    margin:0;
    padding:0;
}
.flip-3d h2 {
    font-size: 21px;
    font-weight: bold;
    margin: 0;
    padding: 16px 0 2px;
}
.flip-3d p {

    padding: 5px 10px;
    margin: 0;
}
.default-state, .active-state {
    height: 100px;
    position: absolute;
    left: 0;
    top: 0;
    transition: transform 0.4s ease;
    transform-origin: center center -50px;
    -webkit-transform-origin: center center -50px;
    width: 100%;
}
.default-state {
    background-color: #f0f0f0;
    transform: perspective(1000px) rotateX(0deg) rotateY(0deg) rotateZ(0deg);
}
.active-state {
    background: #f0f0f0;
    transform: perspective(1000px) rotateX(-90deg) rotateY(0deg) rotateZ(0deg);
}
.flip-3d:hover .default-state {
    transform: perspective(1000px) rotateX(90deg) rotateY(0) rotateZ(0deg);
}
.flip-3d:hover .active-state {
    z-index: 99999;
    transform: perspective(1000px) rotateX(0deg) rotateY(0deg) rotateZ(0);
}

/* ==========================================================================
    #GOOGLE MAPS
============================================================================= */
/* ========== #GOOGLE MAPS STYLE 1 ========== */


/* ==========================================================================
    #GRID BOXES
============================================================================= */
.colored-container{
    background: #f2f2f2;
}

.no-margin{
    margin-top: 0px;
}

.last-main{
    margin-bottom: 60px;
}


/* ========== #GRID BOXES STYLE 1 ========== */
.grid-boxes{
    background: #fff;
    border-right: solid 1px #ddd;
    border-bottom: solid 1px #ddd;
    transition: box-shadow 0.8s ease-in-out;
}

.grid-boxes:hover{
    background: #b3b3b3;
}

.bottom-grid{
    border-bottom: solid 1px transparent;
}

.inner-grid{
    padding: 50px 60px 60px 60px; 
}

.grid-icon{
    width: 40px;
    margin: auto;
}
.grid-icon .fa{
    font-size: 40px;
    color: #00a0e3;
}

.grid-details{
    text-align: center;
    margin-top: 10px;
}

.grid-details h4{
    color: #333;
    margin: 5px 0px 5px 0px;
}

.grid-details p{
    color: #999;
}

.inner-grid:hover h4{
    color: #FFF;
}

.inner-grid:hover p{
    color: #FFF;
}

/* ========== #GRID BOXES STYLE 2 ========== */

.service-grid{
    background: #FFF;
    padding: 60px;
    text-align: center;
    border-right: solid 1px #ddd;
    border-bottom: solid 1px #ddd;
}

.service-grid h6{
    font-weight: 600;
    color: #333;
    transition: 0.6s;
}

.service-grid p{
    color: #999;
}

.last-grid{
    border-right: solid 1px transparent;
}

.bottom-grid{
   border-bottom: solid 1px transparent; 
}

.service-grid-image{
    width: 50px;
    margin: auto;
    margin-bottom: 10px;
}

.service-grid-image img{
    width: 100%;
}

.service-grid:hover h6{
    color: #00a0e3;
    font-weight: normal;
}

/* ==========================================================================
    #ICON BOXES
============================================================================= */
/* ========== #ICON BOXES STYLE 1 ========== */
.icon-boxes{
    width: 100%;
    height: 235px;
    background: #f0f0f0;
    padding: 35px 15px 40px 15px; 
}

.icon-boxes .fa{
    font-size: 40px;
    color: #00a4e6;
    margin-bottom: 10px;
}

.icon-boxes p{
    text-align: center;
    color: #333;
}

.icon-boxes h3{
    text-align: center;
    color: #333;
    font-size: 20px;
    margin-bottom: 10px;
}

/* ========== #ICON BOXES STYLE 2 ========== */

.box-corner-shadow{
    width: 100%;
    height: 235px;
    background: #f0f0f0;
    padding: 35px 15px 40px 15px;
    position: relative;
}

.box-corner-shadow .fa{
    font-size: 40px;
    color: #00a4e6;
    margin-bottom: 10px;
}

.box-corner-shadow p{
    text-align: center;
    color: #333;
}

.box-corner-shadow h3{
    text-align: center;
    color: #333;
    font-size: 20px;
    margin-bottom: 10px;
}

.box-corner-shadow:before, .box-corner-shadow:after
{
  z-index: -1;
  position: absolute;
  content: "";
  bottom: 15px;
  left: 10px;
  width: 50%;
  top: 80%;
  max-width:300px;
  background: #777;
  -webkit-box-shadow: 0 15px 10px #777;
  -moz-box-shadow: 0 15px 10px #777;
  box-shadow: 0 15px 10px #777;
  -webkit-transform: rotate(-3deg);
  -moz-transform: rotate(-3deg);
  -o-transform: rotate(-3deg);
  -ms-transform: rotate(-3deg);
  transform: rotate(-3deg);
}

.box-corner-shadow:after
{
  -webkit-transform: rotate(3deg);
  -moz-transform: rotate(3deg);
  -o-transform: rotate(3deg);
  -ms-transform: rotate(3deg);
  transform: rotate(3deg);
  right: 10px;
  left: auto;
}

/* ========== #ICON BOXES STYLE 3 ========== */

.icon-boxes-shadow{
    width: 100%;
    height: 150px;
    background: #f0f0f0;
    padding: 35px 15px 40px 15px;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
    transition: 0.3s;
}

.icon-boxes-shadow:hover{
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
}

.icon-boxes-shadow .fa{
    font-size: 40px;
    color: #00a4e6;
    margin-bottom: 10px;
}

.icon-boxes-shadow p{
    text-align: center;
    color: #333;
}

.icon-boxes-shadow h3{
    text-align: center;
    color: #333;
    font-size: 20px;
    margin-bottom: 10px;
}

/* ========== #ICON BOXES STYLE 4 ========== */

.icon-boxes-hover{
    width: 100%;
    height: 235px;
    background: #f0f0f0;
    padding: 50px 15px 40px 15px;
    transition: 0.8s;
}

.icon-boxes-hover:hover{
    width: 100%;
    background: #666666;
}

.icon-boxes-hover .fa{
    font-size: 40px;
    color: #00a4e6;

    transition: 0.3s;
}

.icon-boxes-hover p{
    text-align: center;
    color: #333;
    transition: 0.3s;
}

.icon-boxes-hover h3{
    text-align: center;
    color: #333;
    font-size: 20px;
    transition: 0.3s;
}

.icon-boxes-hover:hover .fa{
    font-size: 40px;
    color: #FFF;    
}

.icon-boxes-hover:hover p{
    text-align: center;
    color: #FFF;
}

.icon-boxes-hover:hover h3{
    text-align: center;
    color: #FFF;
    font-size: 20px;
}

/* ========== #ICON BOXES STYLE 5 ========== */

.boxes-bottom-hover{
    width: 100%;
    height: 235px;
    background: #f0f0f0;
    padding: 50px 15px 40px 15px;
    transition: 0.8s;
    border-bottom: solid 2px #f0f0f0;
}

.boxes-bottom-hover:hover{
    width: 100%;
    border-bottom: solid 2px #00a4e6;
}

.boxes-bottom-hover .fa{
    font-size: 40px;
    color: #00a4e6;
    margin: auto;
    width: 70px;
    margin: auto;
}

.boxes-bottom-hover p{
    text-align: center;
    color: #333;

}

.boxes-bottom-hover h3{
    text-align: center;
    color: #333;
    font-size: 20px;
    transition: 0.8s;

}

.boxes-bottom-hover:hover h3{
    text-align: center;
    color: #00a4e6;
    font-size: 20px;
}

/* ========== #ICON BOXES STYLE 5 ========== */

.left-corner-shadow{
    width: 100%;
    height: 235px;
    background: #f0f0f0;
    padding: 35px 15px 40px 15px;
    position: relative;
}

.left-corner-shadow .fa{
    font-size: 40px;
    color: #00a4e6;
    margin-bottom: 10px;
}

.left-corner-shadow p{
    text-align: center;
    color: #333;
}

.left-corner-shadow h3{
    text-align: center;
    color: #333;
    font-size: 20px;
    margin-bottom: 10px;
}

.left-corner-shadow{
  position: relative;
}

.left-corner-shadow:before{
  z-index: -1;
  position: absolute;
  content: "";
  bottom: 15px;
  left: 10px;
  width: 50%;
  top: 80%;
  max-width:300px;
  background: #777;
  -webkit-box-shadow: 0 15px 10px #777;
  -moz-box-shadow: 0 15px 10px #777;
  box-shadow: 0 15px 10px #777;
  -webkit-transform: rotate(-3deg);
  -moz-transform: rotate(-3deg);
  -o-transform: rotate(-3deg);
  -ms-transform: rotate(-3deg);
  transform: rotate(-3deg);
}

/* ========== #ICON BOXES STYLE 5 ========== */

.right-corner-shadow{
    width: 100%;
    height: 235px;
    background: #f0f0f0;
    padding: 35px 15px 40px 15px;
    position: relative;
}

.right-corner-shadow .fa{
    font-size: 40px;
    color: #00a4e6;
    margin-bottom: 10px;
}

.right-corner-shadow p{ 
    text-align: center;
    color: #333;
}

.right-corner-shadow h3{
    text-align: center;
    color: #333;
    font-size: 20px;
    margin-bottom: 10px;
}

.right-corner-shadow:{
  position: relative;
}

.right-corner-shadow:after{
  z-index: -1;
  position: absolute;
  content: "";
  bottom: 15px;
  right: 10px;
  left: auto;
  width: 50%;
  top: 80%;
  max-width:300px;
  background: #777;
  -webkit-box-shadow: 0 15px 10px #777;
  -moz-box-shadow: 0 15px 10px #777;
  box-shadow: 0 15px 10px #777;
  -webkit-transform: rotate(3deg);
  -moz-transform: rotate(3deg);
  -o-transform: rotate(3deg);
  -ms-transform: rotate(3deg);
  transform: rotate(3deg);
}


/* ==========================================================================
    #CIRCLE ICONS
============================================================================= */
/* ========== #CIRCLE ICONS STYLE 1 ========== */

.icon-circle{
    width: 100%;
    height: 100%;
    background: #ffff;
    padding: 5px 10px 5px 10px;
    min-height: 265px;
    
}

.icon-circle .fa{
    font-size: 40px;
    color: #00a4e6;
    margin-bottom: 10px;
    width: 80px;
    height: 80px;
    border: solid 1px #00a4e6;
    border-radius: 50%;
    padding: 18px 15px 18px 15px;
    transition: 0.3s;
}

.icon-circle .fa:hover{
    font-size: 40px;
    color: #fff;
    margin-bottom: 10px;
    width: 80px;
    height: 80px;
    border: solid 1px #333;
    border-radius: 50%;
    padding: 18px 15px 18px 15px;
    background: #104b8f;
}

.icon-circle p{
    text-align: center;
    color: #333;
}

.icon-circle h3{
    text-align: center;
    color: #333;
    font-size: 20px;
}

.read-more h6{
    font-size: 14px;
    text-align: center;
}

/* ========== #ICONS CIRCLE STYLE 2 ========== */

.icon-circle-left{
    padding: 20px 0px 20px 0px;
    clear: both;
}

.left-icon{
    background: #ffff;
    float: left;
    margin-right: 20px;
    text-align: center;
    height: 150px;
}

.icon-circle-left .left-icon p{
    text-align: center;
}

.left-icon .fa{
    font-size: 40px;
    color: #00a4e6;
    margin-bottom: 10px;
    width: 80px;
    height: 80px;
    border: solid 1px #00a4e6;
    border-radius: 50%;
    padding: 18px 15px 18px 15px;
    transition: 0.3s;
}

.left-icon .fa:hover{
    font-size: 40px;
    color: #333;
    margin-bottom: 10px;
    width: 80px;
    height: 80px;
    border: solid 1px #333;
    border-radius: 50%;
    padding: 18px 15px 18px 15px; 
}

.icon-circle-left p{
    text-align: left;
    color: #333;
}

.icon-circle-left h3{
    text-align: left;
    color: #333;
    font-size: 20px;
}

.icon-circle-left .read-more h6{
    font-size: 14px;
    text-align: left;
    margin-top: 30px;
}

/* ========== #ICONS CIRCLE STYLE 3 ========== */

.icon-circle-right{
    padding: 20px 0px 20px 0px;
    clear: both;
}

.right-icon{
    background: #ffff;
    float: right;
    margin-left: 20px;
    text-align: center;
    height: 150px;
}

.icon-circle-right .right-icon p{
    text-align: center;
}

.right-icon .fa{
    font-size: 40px;
    color: #00a4e6;
    margin-bottom: 10px;
    width: 80px;
    height: 80px;
    border: solid 1px #00a4e6;
    border-radius: 50%;
    padding: 18px 15px 18px 15px;
    transition: 0.3s;
}

.right-icon .fa:hover{
    font-size: 40px;
    color: #333;
    margin-bottom: 10px;
    width: 80px;
    height: 80px;
    border: solid 1px #333;
    border-radius: 50%;
    padding: 18px 15px 18px 15px; 
}

.icon-circle-right p{
    text-align: right;
    color: #333;
}

.icon-circle-right h3{
    text-align: right;
    color: #333;
    font-size: 20px;
}

.icon-circle-right .read-more h6{
    font-size: 14px;
    text-align: right;
    margin-top: 30px;
}

/* ==========================================================================
    #IMAGE GALLERY
============================================================================= */
/* ========== #IMAGE GALLERY STYLE 1 ========== */
.magnific-img img {
    width: 100%;
    height: auto;
    margin-bottom: 5px;
    border-radius: 0px;
}

.magnific-img {
    display: inline-block;
    width: 32.3%;
}
a.image-popup-vertical-fit {
    cursor: -webkit-zoom-in;
}
.mfp-with-zoom .mfp-container,
.mfp-with-zoom.mfp-bg {
  opacity: 0;
  -webkit-backface-visibility: hidden;
  /* ideally, transition speed should match zoom duration */
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.mfp-with-zoom.mfp-ready .mfp-container {
    opacity: 1;
}
.mfp-with-zoom.mfp-ready.mfp-bg {
    opacity: 0.98;
}

.mfp-with-zoom.mfp-removing .mfp-container,
.mfp-with-zoom.mfp-removing.mfp-bg {
  opacity: 0;
}
.mfp-arrow-left:before {
    border-right: none !important;
}
.mfp-arrow-right:before {
    border-left: none !important;
}
button.mfp-arrow, .mfp-counter {
    opacity: 0 !important;
    transition: opacity 200ms ease-in, opacity 2000ms ease-out;
}
.mfp-container:hover button.mfp-arrow, .mfp-container:hover .mfp-counter{
	opacity: 1 !important;
}


/* Magnific Popup CSS */
.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1042;
  overflow: hidden;
  position: fixed;
  background: #0b0b0b;
  opacity: 0.8; }

.mfp-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1043;
  position: fixed;
  outline: none !important;
  -webkit-backface-visibility: hidden; }

.mfp-container {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0 8px;
  box-sizing: border-box; }

.mfp-container:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle; }

.mfp-align-top .mfp-container:before {
  display: none; }

.mfp-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 1045; }

.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
  width: 100%;
  cursor: auto; }

.mfp-ajax-cur {
  cursor: progress; }

.mfp-zoom-out-cur, .mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: -moz-zoom-out;
  cursor: -webkit-zoom-out;
  cursor: zoom-out; }

.mfp-zoom {
  cursor: pointer;
  cursor: -webkit-zoom-in;
  cursor: -moz-zoom-in;
  cursor: zoom-in; }

.mfp-auto-cursor .mfp-content {
  cursor: auto; }

.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none; }

.mfp-loading.mfp-figure {
  display: none; }

.mfp-hide {
  display: none !important; }

.mfp-preloader {
  color: #CCC;
  position: absolute;
  top: 50%;
  width: auto;
  text-align: center;
  margin-top: -0.8em;
  left: 8px;
  right: 8px;
  z-index: 1044; }
  .mfp-preloader a {
    color: #CCC; }
    .mfp-preloader a:hover {
      color: #FFF; }

.mfp-s-ready .mfp-preloader {
  display: none; }

.mfp-s-error .mfp-content {
  display: none; }

button.mfp-close,
button.mfp-arrow {
  overflow: visible;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  display: block;
  outline: none;
  padding: 0;
  z-index: 1046;
  box-shadow: none;
  touch-action: manipulation; }

button::-moz-focus-inner {
  padding: 0;
  border: 0; }

.mfp-close {
  width: 44px;
  height: 44px;
  line-height: 44px;
  position: absolute;
  right: 0;
  top: 0;
  text-decoration: none;
  text-align: center;
  opacity: 0.65;
  padding: 0 0 18px 10px;
  color: #FFF;
  font-style: normal;
  font-size: 28px;
  font-family: Arial, Baskerville, monospace; }
  .mfp-close:hover,
  .mfp-close:focus {
    opacity: 1; }
  .mfp-close:active {
    top: 1px; }

.mfp-close-btn-in .mfp-close {
  color: #333; }

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
  color: #FFF;
  right: -6px;
  text-align: right;
  padding-right: 6px;
  width: 100%; }

.mfp-counter {
  position: absolute;
  top: 0;
  right: 0;
  color: #CCC;
  font-size: 12px;
  line-height: 18px;
  white-space: nowrap; }

.mfp-arrow {
  position: absolute;
  opacity: 0.65;
  margin: 0;
  top: 50%;
  margin-top: -55px;
  padding: 0;
  width: 90px;
  height: 110px;
  -webkit-tap-highlight-color: transparent; }
  .mfp-arrow:active {
    margin-top: -54px; }
  .mfp-arrow:hover,
  .mfp-arrow:focus {
    opacity: 1; }
  .mfp-arrow:before,
  .mfp-arrow:after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    position: absolute;
    left: 0;
    top: 0;
    margin-top: 35px;
    margin-left: 35px;
    border: medium inset transparent; }
  .mfp-arrow:after {
    border-top-width: 13px;
    border-bottom-width: 13px;
    top: 8px; }
  .mfp-arrow:before {
    border-top-width: 21px;
    border-bottom-width: 21px;
    opacity: 0.7; }

.mfp-arrow-left {
  left: 0; }
  .mfp-arrow-left:after {
    border-right: 17px solid #FFF;
    margin-left: 31px; }
  .mfp-arrow-left:before {
    margin-left: 25px;
    border-right: 27px solid #3F3F3F; }

.mfp-arrow-right {
  right: 0; }
  .mfp-arrow-right:after {
    border-left: 17px solid #FFF;
    margin-left: 39px; }
  .mfp-arrow-right:before {
    border-left: 27px solid #3F3F3F; }

.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px; }
  .mfp-iframe-holder .mfp-content {
    line-height: 0;
    width: 100%;
    max-width: 900px; }
  .mfp-iframe-holder .mfp-close {
    top: -40px; }

.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%; }
  .mfp-iframe-scaler iframe {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    background: #000; }

/* Main image in popup */
img.mfp-img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  box-sizing: border-box;
  padding: 40px 0 40px;
  margin: 0 auto; }

/* The shadow behind the image */
.mfp-figure {
  line-height: 0; }
  .mfp-figure:after {
    content: '';
    position: absolute;
    left: 0;
    top: 40px;
    bottom: 40px;
    display: block;
    right: 0;
    width: auto;
    height: auto;
    z-index: -1;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    background: #444; }
  .mfp-figure small {
    color: #BDBDBD;
    display: block;
    font-size: 12px;
    line-height: 14px; }
  .mfp-figure figure {
    margin: 0; }

.mfp-bottom-bar {
  margin-top: -36px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  cursor: auto; }

.mfp-title {
  text-align: left;
  line-height: 18px;
  color: #F3F3F3;
  word-wrap: break-word;
  padding-right: 36px; }

.mfp-image-holder .mfp-content {
  max-width: 100%; }

.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer; }

@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
  /**
       * Remove all paddings around the image on small screen
       */
  .mfp-img-mobile .mfp-image-holder {
    padding-left: 0;
    padding-right: 0; }
  .mfp-img-mobile img.mfp-img {
    padding: 0; }
  .mfp-img-mobile .mfp-figure:after {
    top: 0;
    bottom: 0; }
  .mfp-img-mobile .mfp-figure small {
    display: inline;
    margin-left: 5px; }
  .mfp-img-mobile .mfp-bottom-bar {
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    margin: 0;
    top: auto;
    padding: 3px 5px;
    position: fixed;
    box-sizing: border-box; }
    .mfp-img-mobile .mfp-bottom-bar:empty {
      padding: 0; }
  .mfp-img-mobile .mfp-counter {
    right: 5px;
    top: 3px; }
  .mfp-img-mobile .mfp-close {
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    text-align: center;
    padding: 0; } }

@media all and (max-width: 900px) {
  .mfp-arrow {
    -webkit-transform: scale(0.75);
    transform: scale(0.75); }
  .mfp-arrow-left {
    -webkit-transform-origin: 0;
    transform-origin: 0; }
  .mfp-arrow-right {
    -webkit-transform-origin: 100%;
    transform-origin: 100%; }
  .mfp-container {
    padding-left: 6px;
    padding-right: 6px; } }



.magnific-img .image-popup-vertical-fit img a:link {
    text-decoration: none;
    border: solid 2px #000;
}

.magnific-img .image-popup-vertical-fit img a:visited {
    text-decoration: none;
    border: solid 2px #000;
}

.magnific-img .image-popup-vertical-fit img a:hover {
    text-decoration: none;
    border: solid 2px #000;
}

.magnific-img .image-popup-vertical-fit img a:active {
    text-decoration: none;
    color: #000;
    border: solid 2px #000;
}

/* ==========================================================================
    #IMAGES
============================================================================= */
/* ========== #IMAGES STYLE 1 ========== */
.rounded-image img{
    width: 100%;
    border-radius: 5px;
}

/* ========== #IMAGES STYLE 1 ========== */

.rounded-image-2 img{
    width: 100%;
    border-radius: 50%;
}

/* ========== #IMAGES STYLE 3 ========== */

.thumbnail {
  display: block;
  padding: 0px;
  margin-bottom: 20px;
  line-height: 1.42857143;
  background-color: #fff;
  border: 1px solid #f0f0f0;
  border-radius: 4px;
  -webkit-transition: border .2s ease-in-out;
       -o-transition: border .2s ease-in-out;
          transition: border .2s ease-in-out;
}

.caption h3{
    text-align: center;
    font-size: 22px;  
    font-family: 'Montserrat', sans-serif;
}

.caption p{
    text-align: center;
    color: #999;
    margin-bottom: 15px;
}

.thumbnail-btn{
    display: inline-block;
    padding: 6px 16px;
    border: 1px solid #00a0e3;
    font-size: 13px;
    border-radius: 4px;
    background-color: #00a0e3;
    color: #FFF;
    font-family: 'Open Sans', sans-serif;
}

.thumbnail-btn:hover {
  color: #fff;
  background-color: #ff6670;
  border-color: #ff6670;
}

.thumbnail-btn:focus,
.thumbnail-btn.focus {
  color: #FFF;
  background-color: #ff6670;
  border-color: #ff6670;
}


/* ==========================================================================
    #IMAGE HOVER
============================================================================= */
/* ========== #IMAGE HOVER STYLE 1 ========== */
.fade-hover {
  position: relative;
  margin: 15px 0px 15px 0px;
  overflow: hidden;
  
}

.fade-hover .hover-overlay {
  background: rgba(0,0,0,0.7);
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  opacity: 0;
  -webkit-transition: all 0.4s ease-in-out 0s;
  -moz-transition: all 0.4s ease-in-out 0s;
  transition: all 0.4s ease-in-out 0s;
}

.fade-hover:hover .hover-overlay{
  opacity: 1;
}

.thumb-img{
  width: 100%;
}

.details {
  position: absolute;
  text-align: center;
  padding-left: 1em;
  padding-right: 1em;
  width: 100%;
  top: 50%;
  left: 50%;
  opacity: 0;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}

.fade-hover:hover .details{
  top: 50%;
  left: 50%;
  opacity: 1;
}

.details h3{
  color: #fff;
  font-weight: 500;
  letter-spacing: 0.15em;
  margin-bottom: 0.5em;
  text-transform: uppercase;
    font-size: 20px;
}

.details p{
  color: #fff;
  font-size: 14px;
}

.fadeIn-bottom{
  top: 80%;
}

.fadeIn-top{
  top: 20%;
}

.fadeIn-left{
  left: 20%;
}

.fadeIn-right{
  left: 80%;
}

/* ========== #IMAGE HOVER STYLE 2 ========== */


/* ========== #IMAGE HOVER STYLE 3 ========== */
.box-zoomswap {
  width: 100%;
  height: 100%;
  transition: all 1s ease;
  position: relative;
  text-decoration: none;
}
.box-zoomswap:nth-child(1) {
  background-color: rgb(122, 208, 47);
}
.box-zoomswap:nth-child(2) {
  background-color: rgb(122, 208, 47);
}
.box-zoomswap:nth-child(3) {
  background-color: rgb(122, 208, 47);
}
.box-zoomswap::after {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: 100% auto;
  background-image: url(../img/images/image10.jpg);
  transition: all 1s ease;
}
.box-zoomswap .swap-block {
  display: block;
  color: #fff;
  opacity: 0;
  padding: 60px 30px 60px 30px;
  transition: all 1s ease;
}
.box-zoomswap:hover:nth-child(1) {
  background-color: #00a0e3;
}
.box-zoomswap:hover:nth-child(2) {
  background-color: #00a0e3;
}
.box-zoomswap:hover:nth-child(3) {
  background-color: #00a0e3;
}
.box-zoomswap:hover::after {
  opacity: 0;
  background-size: 100% auto;
}
.box-zoomswap:hover .swap-block {
  opacity: 1;
}

.swap-block h2{
    text-align: center;
    color: #FFF;
}

.swap-block p{
  text-align: center;
}



/* ==========================================================================
    #LIGHTBOX
============================================================================= */
/* ========== #IMAGE LIGHTBOX ========== */
.images-group {
  display: flex;
  flex-wrap: wrap;
}
.images-group .image {
    width: 100%;
  cursor: pointer;
}

.image img {
  width: 100%;
}

.lightbox {
  z-index: 1;
  width: 100%;
  height: 100%;
  position: fixed;
  background-color: rgba(0, 0, 0, 0.5);
  visibility: hidden;
  opacity: 0;
  transition: 0.2s;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.lightbox .mobile {
  width: 100%;
  height: auto;
}
.lightbox span {
  color: white;
  cursor: pointer;
  position: absolute;
  top: 30px;
  right: 30px;
  z-index: 1;
}
.lightbox p {
  color: white;
  font-size: 20px;
  text-align: center;
  word-wrap: break-word;
  position: relative;
  margin: 0;
}

.lightbox.active {
  visibility: visible;
  opacity: 1;
}

.placeholder {
  width: 100%;
  height: 1500px;
}


/* ========== #YOUTUBE POPUP ========== */

.popup-youtube .video-image {
    position: relative;
    display: inline-block;
}

.popup-youtube .video-image img{
    width: 100%
}

.popup-youtube .video-image:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 10;
    background: transparent url(../img/master/play.png) center center no-repeat;
}

.popup-youtube .video-image img a:link {
    text-decoration: none;
    color: #FFF;
}

.popup-youtube .video-image img a:visited {
    text-decoration: none;
    color: #FFF;
}

.popup-youtube .video-image img a:hover {
    text-decoration: none;
    color: #FFF;
}

.popup-youtube .video-image img a:active {
    text-decoration: none;
    color: #FFF;
}


/* ==========================================================================
    #MODAL POPUP
============================================================================= */
/* ========== #MODAL POPUP STYLE 1 ========== */

.modal-box{
    text-align: center;
}

.modal-box p{
    margin: 15px 0px 15px 0px;
}

.modal-sm .modal-content{
    background: #FFF;
    border: 1px solid #ddd;
   border: 1px solid rgba(0, 0, 0, .2);
    -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, .5);
          box-shadow: 0 3px 9px rgba(0, 0, 0, .5);
    padding: 10px 20px 10px 20px;
}

.close{
    color: #000;
}

@media (min-width: 992px) {
  .modal-md {
    width: 600px;
  }
}


/* ==========================================================================
    #PAGINATION
============================================================================= */
/* ========== #PAGINATION ARROW SMALL ========== */
.pagination {
    display: inline-block;
}

.pagination a {
    color: black;
    float: left;
    padding: 10px 18px;
    text-decoration: none;
    border: 1px solid #e6e6e6;
}

.pagination a.active {
    background-color: #00a4e6;
    color: #FFF;
    border: 1px solid #00a4e6;
}

.pagination a:hover:not(.active) {
    background-color: #00a4e6;
    color: #FFF;
    border: 1px solid #00a4e6;

}

.pagination a:first-child {
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}

.pagination a:last-child {
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}

/*===== PAGINATION ARROW MEDIUM =====*/

.pagination-medium .pagination {
    display: inline-block;
}

.pagination-medium .pagination a {
    color: black;
    float: left;
    padding: 14px 22px;
    text-decoration: none;
    border: 1px solid #e6e6e6;
    font-size: 18px;
}

.pagination-medium .pagination a.active {
    background-color: #00a4e6;
    color: #FFF;
    border: 1px solid #00a4e6;
}

.pagination-medium .pagination a:hover:not(.active) {
    background-color: #00a4e6;
    color: #FFF;
    border: 1px solid #00a4e6;
}

.pagination-medium .pagination a:first-child {
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}

.pagination-medium .pagination a:last-child {
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}

/*===== PAGINATION ARROW LARGE =====*/

.pagination-large .pagination {
    display: inline-block;
}

.pagination-large .pagination a {
    color: black;
    float: left;
    padding: 18px 26px;
    text-decoration: none;
    border: 1px solid #e6e6e6;
    font-size: 22px;
}

.pagination-large .pagination a.active {
    background-color: #00a4e6;
    border: 1px solid #00a4e6;
    color: #FFF;
}

.pagination-large .pagination a:hover:not(.active) {
    background-color: #00a4e6;
    color: #FFF;
    border: 1px solid #00a4e6;
}

.pagination-large .pagination a:first-child {
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}

.pagination-large .pagination a:last-child {
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}


/* ========== #PAGINATION DOUBLE ARROW SMALL ========== */
.pagination-small-rounded .pagination {
    display: inline-block;
    border-radius: 50%;
}

.pagination-small-rounded .pagination a {
    color: black;
    float: left;
    padding: 10px 18px;
    text-decoration: none;
    border: 1px solid #e6e6e6;
    border-radius: 50%;
    margin: 0px 2px 0px 2px;
    
}

.pagination-small-rounded .pagination a.active {
    background-color: #00a4e6;
    color: #FFF;
    border: 1px solid #00a4e6;
}

.pagination-small-rounded .pagination a:hover:not(.active) {
    background-color: #00a4e6;
    color: #FFF;
    border: 1px solid #00a4e6;

}

.pagination-small-rounded .pagination a:first-child {
    border-radius: 50%;
    margin: 0px 2px 0px 2px;
}

.pagination-small-rounded .pagination a:last-child {
    border-radius: 50%;
    margin: 0px 2px 0px 2px;
}

/* ========== #PAGINATION DOUBLE ARROW MEDIUM ========== */
.pagination-medium-rounded .pagination {
    display: inline-block;
    border-radius: 50%;
}

.pagination-medium-rounded .pagination a {
    color: black;
    float: left;
    padding: 14px 22px;
    text-decoration: none;
    border: 1px solid #e6e6e6;
    font-size: 18px;
    border-radius: 50%;
    margin: 0px 2px 0px 2px;
    
}

.pagination-medium-rounded .pagination a.active {
    background-color: #00a4e6;
    color: #FFF;
    border: 1px solid #00a4e6;
}

.pagination-medium-rounded .pagination a:hover:not(.active) {
    background-color: #00a4e6;
    color: #FFF;
    border: 1px solid #00a4e6;

}

.pagination-medium-rounded .pagination a:first-child {
    border-radius: 50%;
    margin: 0px 2px 0px 2px;
}

.pagination-medium-rounded .pagination a:last-child {
    border-radius: 50%;
    margin: 0px 2px 0px 2px;
}

/* ========== #PAGINATION DOUBLE ARROW LARGE ========== */
.pagination-large-rounded .pagination {
    display: inline-block;
    border-radius: 50%;
}

.pagination-large-rounded .pagination a {
    color: black;
    float: left;
    padding: 18px 28px;
    text-decoration: none;
    border: 1px solid #e6e6e6;
    font-size: 22px;
    border-radius: 50%;
    margin: 0px 2px 0px 2px;
    
}

.pagination-large-rounded .pagination a.active {
    background-color: #00a4e6;
    color: #FFF;
    border: 1px solid #00a4e6;
}

.pagination-large-rounded .pagination a:hover:not(.active) {
    background-color: #00a4e6;
    color: #FFF;
    border: 1px solid #00a4e6;

}

.pagination-large-rounded .pagination a:first-child {
    border-radius: 50%;
    margin: 0px 2px 0px 2px;
}

.pagination-large-rounded .pagination a:last-child {
    border-radius: 50%;
    margin: 0px 2px 0px 2px;
}

/* ==========================================================================
    #PARALLAX
============================================================================= */
/* ========== #PARALLAX STYLE 1 ========== */

.block{
  width: 100%;
  height: 400px;
  position: relative;
  overflow: hidden;
  font-size: 16px;
  padding: 100px 0px 100px 0px;
}
.block h2{
  position: absolute;
  display: block;
  text-align: center;
  margin: 0;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  font-size: 60px;
  color: white;
  font-weight: 400;
  text-align: center;
}
.img-parallax {
  width: 100vmax;
  z-index: -1;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%,0);
  pointer-events: none
}

/* ==========================================================================
    #PRICING TABLES
============================================================================= */
/* ========== #PRICING TABLE STYLE 1 ========== */
.pricing-table{
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
    transition: 0.3s;
    height: 500px;
    border-radius: 5px;
}

.pricing-table:hover {
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
}

.table-header{
    background: #37cde1;
    height: 200px;
}

.top-table-header{
    background: #1ca5b8;
    height: 70px;
}

.top-table-header h2{
    text-align: center;
    line-height: 70px;
    color: #FFF;
}

.pricing{
    height: 130px;
}

.pricing h1{
    color: #FFF;
    text-align: center;
    margin: 30px 0px 5px 0px;
}

.pricing p{
    color: #FFF;
    text-align: center;
}

.pricing-body{
    padding: 20px 0px 30px 0px;
}

.pricing-body p{
    text-align: center;
    line-height: 3;
}

.pricing-body .btn-info {
  color: #fff;
  background-color: #1CA5B8;
  border-color: #1CA5B8;
  padding: 4px 18px;
  font-family: 'Open Sans', sans-serif;
    font-size: 14px;
}
.pricing-body .btn-info:focus,
.pricing-body .btn-info.focus {
  color: #fff;
  background-color: #37cde1;
  border-color: #37cde1;
}
.pricing-body .btn-info:hover {
  color: #fff;
  background-color: #37cde1;
  border-color: #37cde1;
}
.pricing-body .btn-info:active,
.pricing-body .btn-info.active,
.open > .dropdown-toggle.btn-info {
  color: #fff;
  background-color: #37cde1;
  border-color: #37cde1;
}

.elements-2 .pricing-table{
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
    transition: 0.3s;
    height: 500px;
    border-radius: 5px;
}

.elements-2 .pricing-table:hover {
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
}

.elements-2 .table-header{
    background: #ff6670;
    height: 200px;
}

.elements-2 .top-table-header{
    background: #00a0e3;
    height: 70px;
}

.elements-2 .top-table-header h2{
    text-align: center;
    line-height: 70px;
    color: #FFF;
}

.elements-2 .pricing{
    height: 130px;
}

.elements-2 .pricing h1{
    color: #FFF;
    text-align: center;
    margin: 30px 0px 5px 0px;
}

.elements-2 .pricing p{
    color: #FFF;
    text-align: center;
}

.elements-2 .pricing-body{
    padding: 20px 0px 30px 0px;
}

.elements-2 .pricing-body p{
    text-align: center;
    line-height: 3;
}

.elements-2 .pricing-body .btn-info {
  color: #fff;
  background-color: #00a0e3;
  border-color: #00a0e3;
  padding: 4px 18px;
  font-family: 'Open Sans', sans-serif;
    font-size: 14px;
}
.elements-2 .pricing-body .btn-info:focus,
.elements-2 .pricing-body .btn-info.focus {
  color: #fff;
  background-color: #ff6670;
  border-color: #ff6670;
}
.elements-2 .pricing-body .btn-info:hover {
  color: #fff;
  background-color: #ff6670;
  border-color: #ff6670;
}
.elements-2 .pricing-body .btn-info:active,
.elements-2 .pricing-body .btn-info.active,
.open > .dropdown-toggle.btn-info {
  color: #fff;
  background-color: #ff6670;
  border-color: #ff6670;
}


/* ========== #PRICING TABLE STYLE 2 ========== */
.pricing-table-2{
    height: 500px;
    background: #FAFCFC;
    position: relative;
}

.pricing-table-2 .table-header{
    background: #37cde1;
    height: 200px;
}

.pricing-table-2 .top-table-header{
    background: #333;
    height: 40px;
}

.pricing-table-2 .top-table-header h6{
    text-align: center;
    line-height: 40px;
    color: #FFF;
}

.pricing-table-2 .table-header .pricing{
    border: solid 4px #FFF;
    width: 110px;
    height: 110px;
    margin: 25px auto 25px auto;
    border-radius: 50%;
}

.pricing-table-2 .table-header .pricing h1{
    margin: 20px 0px 0px 0px;
}

.pricing-table-2 .table-header .pricing p{
    margin-top: -10px;
}


.pricing-table-2:before, .pricing-table-2:after
{
  z-index: -1;
  position: absolute;
  content: "";
  bottom: 15px;
  left: 10px;
  width: 50%;
  top: 80%;

  background: #777;
  -webkit-box-shadow: 0 15px 10px #777;
  -moz-box-shadow: 0 15px 10px #777;
  box-shadow: 0 15px 10px #777;
  -webkit-transform: rotate(-3deg);
  -moz-transform: rotate(-3deg);
  -o-transform: rotate(-3deg);
  -ms-transform: rotate(-3deg);
  transform: rotate(-3deg);
}

.pricing-table-2:after
{
  -webkit-transform: rotate(3deg);
  -moz-transform: rotate(3deg);
  -o-transform: rotate(3deg);
  -ms-transform: rotate(3deg);
  transform: rotate(3deg);
  right: 10px;
  left: auto;
}

.bottom-btn{
    position: absolute;
    bottom: 0;
    height: 35px;
    background: #37cde1;
    width: 100%;
}

.bottom-btn .btn-info {
  color: #fff;
  background-color: #37cde1;
  border-color: #37cde1;
  padding: 4px 18px;
  font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    width: 100%;
}
.bottom-btn .btn-info:focus,
.bottom-btn .btn-info.focus {
  color: #fff;
  background-color: #37cde1;
  border-color: #37cde1;
}
.bottom-btn .btn-info:hover {
  color: #fff;
  background-color: #37cde1;
  border-color: #37cde1;
}
.bottom-btn .btn-info:active,
.bottom-btn .pricing-body .btn-info.active,
.open > .dropdown-toggle.btn-info {
  color: #fff;
  background-color: #37cde1;
  border-color: #37cde1;
}

/* ========== #TABLES COLORS GREEN ========== */

.pricing-table-2 .green-color{
    background: #289FA0;
}

.green-color{
    background: #289FA0;
}

.green-color .btn-info {
  color: #fff;
  background-color: #289FA0;
  border-color: #289FA0;
  padding: 4px 18px;
  font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    width: 100%;
}
.green-color  .btn-info:focus,
.green-color  .btn-info.focus {
  color: #fff;
  background-color: #289FA0;
  border-color: #289FA0;
}
.green-color  .btn-info:hover {
  color: #fff;
  background-color: #289FA0;
  border-color: #289FA0;
}
.green-color  .btn-info:active,
.green-color .pricing-body .btn-info.active,
.open > .dropdown-toggle.btn-info {
  color: #fff;
  background-color: #289FA0;
  border-color: #289FA0;
}


/* ========== #TABLES COLORS BROWM ========== */

.pricing-table-2 .brown-color{
    background: #9F5C78;
}

.brown-color{
    background: #9F5C78;
}

.brown-color .btn-info {
  color: #fff;
  background-color: #9F5C78;
  border-color: #9F5C78;
  padding: 4px 18px;
  font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    width: 100%;
}
.brown-color .btn-info:focus,
.brown-color .btn-info.focus {
  color: #fff;
  background-color: #9F5C78;
  border-color: #9F5C78;
}
.brown-color  .btn-info:hover {
  color: #fff;
  background-color: #9F5C78;
  border-color: #9F5C78;
}
.brown-color  .btn-info:active,
.brown-color .pricing-body .btn-info.active,
.open > .dropdown-toggle.btn-info {
  color: #fff;
  background-color: #9F5C78;
  border-color: #9F5C78;
}

/* ========== #TABLES COLORS YELLOW ========== */

.pricing-table-2 .yellow-color{
    background: #F5B75C;
}

.yellow-color{
    background: #F5B75C;
}

.yellow-color .btn-info {
  color: #fff;
  background-color: #F5B75C;
  border-color: #F5B75C;
  padding: 4px 18px;
  font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    width: 100%;
}
.yellow-color .btn-info:focus,
.yellow-color .btn-info.focus {
  color: #fff;
  background-color: #F5B75C;
  border-color: #F5B75C;
}
.yellow-color  .btn-info:hover {
  color: #fff;
  background-color: #F5B75C;
  border-color: #F5B75C;
}
.yellow-color  .btn-info:active,
.yellow-color .pricing-body .btn-info.active,
.open > .dropdown-toggle.btn-info {
  color: #fff;
  background-color: #F5B75C;
  border-color: #F5B75C;
}


/* ========== #PRICING TABLE STYLE 3 ========== */

.span-pricing{

    height: 100%;
    background: #FFF;
    text-align: center;
    padding: 60px 0px 60px 0px;
    color: #FFF;
    transition: 0.3s;
}

.center{
    border-radius: 0px;
    box-shadow: none;
    background-color: #f2f2f2;
}

.span-pricing:hover {
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
    background-color: #f2f2f2;
}

.span-pricing h3{
    font-size: 22px;
    font-weight: normal;
    text-align: center;
    color: #333;
}

.span-pricing h4{
    font-size: 50px;
    line-height: 1.3;
    font-weight: 500;
    color: #333;
    text-align: center;
}

.span-pricing span{
    font-size: 14px;
    font-weight: normal;
}

.span-pricing inner-price{
    font-size: 20px;
    font-weight: normal;
    margin-top: 15px;
    margin-left: -15px;
    position: absolute;
}

.span-pricing p{
    font-size: 14px;
    line-height: 2;
    text-align: center;
    color: #999;
    clear: both;
}

hr.pricing-line { 
  width: 60%;
  border: 0; 
  height: 1px; 
  border-top: solid 1px #FFF;
  margin: 10px auto 10px auto;
}

hr.list { 
  width: 100%;
  border: 0; 
  height: 1px; 
  border-top: solid 1px #cccccc;
  margin: 5px auto 5px auto;
  float: right;
}

.span-pricing p.description{
    line-height: 1.5;
    font-size: 13px;
    padding: 10px 20px 10px 20px;
}

.together-left{
    border-radius: 0px;
    box-shadow: none;
    background: #FFF;
    padding-top: 270px;
}

.together-left:hover {
    background-color: transparent;
    box-shadow: none;
}

.span-pricing .btn {
  display: inline-block;
  padding: 8px 22px;
  margin-bottom: 0;
  font-size: 14px;
  font-weight: normal;
  line-height: 1.42857143;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -ms-touch-action: manipulation;
      touch-action: manipulation;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  background-image: none;
  border: 1px solid transparent;
  border-radius: 4px;
    margin-top: 20px;
}

.span-pricing .btn-default {
  color: #333;
  background-color: #fff;
  border-color: #FFF;
}
.span-pricing .btn-default:focus,
.span-pricing .btn-default.focus {
  color: #333;
  background-color: #FFF;
  border-color: #FFF;
}
.span-pricing .btn-default:hover {
  color: #FFF;
  background-color: #00a0e3;
  border-color: #00a0e3;
}
.span-pricing .btn-default:active,
.span-pricing .btn-default.active,
.open > .dropdown-toggle.btn-default {
  color: #333;
  background-color: #FFF;
  border-color: #FFF;
}
.span-pricing .btn-default:active:hover,
.span-pricing .btn-default.active:hover,
.span-pricing .open > .dropdown-toggle.btn-default:hover,
.span-pricing .btn-default:active:focus,
.span-pricing .btn-default.active:focus,
.span-pricing .open > .dropdown-toggle.btn-default:focus,
.span-pricing .btn-default:active.focus,
.span-pricing .btn-default.active.focus,
.span-pricing .open > .dropdown-toggle.btn-default.focus {
  color: #333;
  background-color: #FFF;
  border-color: #FFF;
}
.span-pricing .btn-default:active,
.span-pricing .btn-default.active,
.span-pricing .open > .dropdown-toggle.btn-default {
  background-image: none;
}
.span-pricing .btn-default.disabled:hover,
.span-pricing .btn-default[disabled]:hover,
fieldset[disabled] .btn-default:hover,
.span-pricing .btn-default.disabled:focus,
.span-pricing .btn-default[disabled]:focus,
fieldset[disabled] .btn-default:focus,
.span-pricing .btn-default.disabled.focus,
.span-pricing .btn-default[disabled].focus,
fieldset[disabled] .btn-default.focus {
  background-color: #fff;
  border-color: #FFF;
}
.span-pricing .btn-default .badge {
  color: #fff;
  background-color: #FFF;
}

/* ==========================================================================
    #PROCESS STEPS
============================================================================= */
/* ========== #PROCESS STEPS STYLE 1 ========== */

.bs-wizard {
    margin-top: 40px;
}   border-bottom:0;

/*Form Wizard*/
.bs-wizard {
    border-bottom: solid 1px #e0e0e0; padding: 0 0 10px 0;
}
.bs-wizard > .bs-wizard-step {
    padding: 0; position: relative;
}
.bs-wizard > .bs-wizard-step + .bs-wizard-step {}
.bs-wizard > .bs-wizard-step .bs-wizard-stepnum {
    color: #595959; font-size: 16px; margin-bottom: 5px; font-family: 'Archivo Narrow', sans-serif;
}
.bs-wizard > .bs-wizard-step .bs-wizard-info {
    color: #999; font-size: 14px;
}
.bs-wizard > .bs-wizard-step > .bs-wizard-dot {
    position: absolute; width: 30px; height: 30px; display: block; background: #b3e9ff; top: 48px; left: 50%; margin-top: -15px; margin-left: -15px; border-radius: 50%;
} 
.bs-wizard > .bs-wizard-step > .bs-wizard-dot:after {
    content: ' '; width: 14px; height: 14px; background: #00a4e6; border-radius: 50%; position: absolute; top: 8px; left: 8px; 
} 
.bs-wizard > .bs-wizard-step > .progress {
    position: relative; border-radius: 0px; height: 8px; box-shadow: none; margin: 20px 0;
}
.bs-wizard > .bs-wizard-step > .progress > .progress-bar {
    width:0px; box-shadow: none; background: #b3e9ff;
}
.bs-wizard > .bs-wizard-step.complete > .progress > .progress-bar {
    width:100%;}
.bs-wizard > .bs-wizard-step.active > .progress > .progress-bar {width:50%;
}
.bs-wizard > .bs-wizard-step:first-child.active > .progress > .progress-bar {
    width:0%;
}
.bs-wizard > .bs-wizard-step:last-child.active > .progress > .progress-bar {
    width: 100%;
}
.bs-wizard > .bs-wizard-step.disabled > .bs-wizard-dot {
    background-color: #f5f5f5;
}
.bs-wizard > .bs-wizard-step.disabled > .bs-wizard-dot:after {
    opacity: 0;
}
.bs-wizard > .bs-wizard-step:first-child  > .progress {
    left: 50%; width: 50%;
}
.bs-wizard > .bs-wizard-step:last-child  > .progress {
    width: 50%;
}
.bs-wizard > .bs-wizard-step.disabled a.bs-wizard-dot{ pointer-events: none; }
/*END Form Wizard*/

.elements-2 .bs-wizard > .bs-wizard-step > .bs-wizard-dot {
    position: absolute; width: 30px; height: 30px; display: block; background: #b3e9ff; top: 48px; left: 50%; margin-top: -15px; margin-left: -15px; border-radius: 0px;
} 
.elements-2 .bs-wizard > .bs-wizard-step > .bs-wizard-dot:after {
    content: ' '; width: 14px; height: 14px; background: #00a4e6; position: absolute; top: 8px; left: 8px; border-radius: 0px;
} 


/* ==========================================================================
    #PROFILE CARDS
============================================================================= */
/* ========== #PROFILE CARDS STYLE 1 ========== */
.col-md-42{
  width:20%;
  float:left;
 }

.profile-card {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  margin: auto;
  text-align: center;
  margin-bottom: 20px;
}

.profile-card h3{
    margin: 10px 0px 5px 0px;
	font-size: 15px;
}

.profile-card h6{
    color: #999999;
}

.title {
  color: grey;
  font-size: 18px;
}

.profile-social{
    margin: 10px 0;
}

button-profile {
  border: none;
  outline: 0;
  display: inline-block;
  padding: 5px;
  color: white;
  background-color: #2CA4D9;
  text-align: center;
  cursor: pointer;
  width: 100%;
  font-size: 18px;
  
}

.profile-social a {
  text-decoration: none;
  font-size: 22px;
  color: black;
  margin: 1px;
}

.profile-social a .fa-facebook{
    color: #3b5998;
}

.profile-social a .fa-twitter{
    color: #00aced;
}

.profile-social a .fa-dribbble{
    color: #ea4c89;
}

button-profile:hover{
  opacity: 0.7;
}

button-profile a:hover {
  opacity: 0.7;
}

 /* ========== #PROFILE CARDS STYLE 2 ========== */

.profile-card-2 {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  margin: auto;
  text-align: center;
  padding-bottom: 30px;
}

.profile-card-2 img{
    width: 100%;
}

.profile-card-2 h2{
    margin: 25px 0px 2px 0px;
    font-weight: 600;
}

.profile-card-2 h6{
    text-align: center;
    color: #bfbfbf;
}

.profile-card-2 p{
    text-align: center;
    margin: 15px 0px 10px 0px;
    color: #a6a6a6;
}

.profile-card-2 a .fa-twitter{
   color: #999999;
}

.profile-card-2 a .fa-instagram{
   color: #999999;
}

.profile-card-2 a .fa-dribbble{
   color: #999999;
}

.profile-card-2 .profile-social{
    margin: 0px;
}

.inner-stat{
    display: inline-block;
    margin-right: 20px;
}

.inner-stat h3{
    font-weight: 600;
    color: #333;
    text-align: center;
}

.inner-stat p{
    text-align: center;
}


/* ==========================================================================
    #PROGRESS BAR
============================================================================= */
.progress {
  height: 25px;
  margin-bottom: 20px;
  overflow: hidden;
  background-color: #f5f5f5;
  border-radius: 0px;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.progress-bar {
  float: left;
  width: 0;
  height: 100%;
  font-size: 14px;
  line-height: 25px;
  color: #fff;
  text-align: center;
  background-color: #337ab7;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-transition: width .6s ease;
       -o-transition: width .6s ease;
          transition: width .6s ease;
}

.progress-bar-success {
  background-color: #46a046;
}

.progress-bar-info {
  background-color: #5bc0de;
}

.progress-bar-warning {
  background-color: #ed9c2c;
}

.progress-bar-danger {
  background-color: #d1332e;
}


/* ==========================================================================
    #RECENT POSTS
============================================================================= */
/* ========== #RECENT POSTS STYLE 1 ========== */
.news-big-img{
    position: relative;
}

.news-big-img::after {
  display: block;
  position: relative;
  background-image: linear-gradient(to bottom, rgba(255, 64, 76, 0) 0, #c1577b 100%);
  margin-top: -300px;
  height: 300px;
  width: 100%;
  content: '';
}

.spa-news-big h6.media-heading{
    color: #FFF;
}

.news-big-img img{
    width: 100%;
}

.spa-news-big .media-body{
    margin-top: -140px;
    position: absolute;
    max-width: 450px;
    padding: 0px 40px 0px 40px;
    color: #FFF;
}

.spa-news-big .media-body p{
    color: #FFF;
}

.spa-news-box{
    height: 150px;
    margin-bottom: 12px;
}

.spa-news-box .media .media-left .media-object{
    width: 225px;
}

.spa-news-box .media .media-left .media-object img{
    width: 100%;
}

p.post-details{
    font-size: 13px;
    color: #808080;
    margin-bottom: 7px;
}

.media-body p{
    color: #999999;
}


/* ========== #RECENT POSTS STYLE 2 ========== */
.education-news {
    display: block;
    line-height: 1.42857143;
    background-color: #fff;
    -webkit-transition: border .2s ease-in-out;
       -o-transition: border .2s ease-in-out;
          transition: border .2s ease-in-out;
}
.education-news > img,
.education-news a > img {
    margin-right: auto;
    margin-left: auto;
    width: 100%;
}
a.education-news:hover,
a.education-news:focus,
a.education-news.active {
    border-color: #337ab7;
}
.education-news .caption {
    color: #333;
    padding-bottom: 5px;
}

.left-panel{
    width: 70px;
    height: 120px;
    background: #FDC735;
    float: left;
    margin-right: 15px;
    margin-bottom: 30px;
}

.date-box{
    width: 100%;
    height: 60px;
    border-bottom: solid 1px #FFF;
    padding: 10px 20px 10px 20px;
    text-align: center;
    color: #FFF;
}

.date-box h5{
    font-size: 13px;
}

 h5 span-number{
    font-size: 20px;
    color: #FFF;
     line-height: 1.2;
     font-weight: 600;
}

.comment-box{
    text-align: center;
    color: #FFF;
    padding: 5px 0px 5px 0px;
}

.comment-box p{
    color: #FFF;
}

.inner-caption{
    padding: 10px 10px 0px 10px;
    text-align: left;
}

.inner-caption h6{
    line-height: 1.3;
    margin-bottom: 5px;
}

.inner-caption p{
    text-align: left;
    font-size: 13px;
}


/* ========== #RECENT POSTS STYLE 2 ========== */
.blog-news {
  display: block;
  margin-bottom: 20px;
  line-height: 1.42857143;
  background-color: #fff;
  -webkit-transition: border .2s ease-in-out;
       -o-transition: border .2s ease-in-out;
          transition: border .2s ease-in-out;
}
.blog-news > img,
.blog-news a > img {
  margin-right: auto;
  margin-left: auto;
  width: 100%;
}
a.blog-news:hover,
a.blog-news:focus,
a.blog-news.active {
  border-color: #337ab7;
}
.blog-news .caption {
   background: #F9F9F9;
    width: 90%;
    height: 200px;
    margin: -70px auto 0px auto;
    position: relative;
    padding: 30px;
    color: #333;
    border-radius: 5px;
}

.blog-news .caption h6{
    margin-bottom: 10px;
    font-weight: 600;
    font-size: 14px;
    text-align: left;
}

.blog-news .caption p{
    line-height: 1.7;
    color: #8c8c8c;
    text-align: left;
    margin: 0px;
}

.blog-news .caption .btn-custom{
    padding: 4px 10px;
    font-size: 14px;
    margin-top: 10px;
}


/* ==========================================================================
    #SECTION STYLES
============================================================================= */
/* ========== #SECTION STYLE 1 ========== */

hr.short{
	width: 80px;
    border-top: 3px solid #CC0023;
    margin: 10px 0px 15px 0px;
}

.section-left h3{
    font-weight: 600;
}

.section-left p{
    color: #999;
    line-height: 1.6;
    margin: 10px 0px 20px 0px;
}

.signature{
    width: 250px;
}

.signature img{
    width: 100%;
}

.section-right{
    max-height: 330px;
    margin-top: -30px;
}

.section-right img{
    width: 100%;
}

/* ========== #SECTION STYLE 2 ========== */
.about-front{
    margin-top: 50px
}

.about-front h2{
    text-align: left;
    color: #333;
    font-weight: 600;
}

.about-front h6{
    font-size: 16px;
    margin: 10px 0px 10px 0px;
    color: #666;
}

.about-front p{
    text-align: left;
    color: #999;
    margin-bottom: 20px;
}

.grid-box{
    padding: 50px 10px 50px 0px;
    border-bottom: solid 1px #ddd;
    border-right: solid 1px #ddd;
    height: 160px;
}

.bottom-grid-2{
    border-bottom: solid 1px transparent;
}

.right-grid-2{
    border-right: solid 1px transparent;
    padding-left: 20px;
}

.grid-icon-2{
    float: left;
    margin-right: 20px;
    width: 60px;
}

.grid-icon-2 img{
    width: 100%;
}

.grid-info h6{
    color: #333;
    font-weight: 600;
}

.grid-info p{
    color: #999;
}


/* ==========================================================================
    #SEPARATORS
============================================================================= */
/* ========== #SEPARATORS STYLE 1 ========== */
.separators p{
    color: #999999;
    text-align: center;
}


.separators h2{
    color: #666666;
    text-align: center;
    margin-bottom: 20px;
}

hr{
    margin: 1px auto 2px auto;
}

hr.double {
	border-top: 3px double #DDD;
}

hr.dotted {
	border-top: 1px dotted #8c8b8b;
}

hr.gradient { 
  border: 0; 
  height: 1px; 
  background-image: -webkit-linear-gradient(left, #f0f0f0, #737373, #f0f0f0);
  background-image: -moz-linear-gradient(left, #f0f0f0, #737373, #f0f0f0);
  background-image: -ms-linear-gradient(left, #f0f0f0, #737373, #f0f0f0);
  background-image: -o-linear-gradient(left, #f0f0f0, #737373, #f0f0f0); 
}

hr.icon-middle {
	border-top: 4px double #DDD;
	text-align: center;
}
hr.icon-middle:after {
    font-family: FontAwesome;
	content: '\f13d';
	display: inline-block;
	position: relative;
	top: -15px;
	padding: 0 10px;
	background: #FFF;
	color: #DDD;
	font-size: 18px;
}


/* ==========================================================================
    #SHOP BANNERS
============================================================================= */
/* ========== #SHOP BANNERS STYLE 1 ========== */
.shop-banners{
    background: #f1f2f3;
    height: 300px;
}

.shop-detail{
    float: left;
    padding: 90px 30px 90px 30px;
}

.shop-image{
    background-image: url("../img/images/shoes.png");
    background-position: right;
    background-repeat: no-repeat;
    height: 300px;
}

.shop-image-2{
    background-image: url("../img/images/mobile.png");
    background-position: right;
    background-repeat: no-repeat;
    height: 300px;
}

.btn-shop {
  color: #00a0e3;
  background-color: transparent;
  display: inline-block;
  padding: 8px 12px;
  margin-bottom: 0;
  font-size: 16px;
  font-weight: normal;
  line-height: 1.42857143;
  text-align: center;
  border: 2px solid #00a0e3;
  border-radius: 20px;
  margin-top: 10px; 
  max-width: 140px;
}

.btn-shop:focus,
.btn-shop.focus {
  color: #fff;
  background-color: #00a0e3;
  border-color: #00a0e3;
}
.btn-shop:hover {
  color: #fff;
  background-color: #00a0e3;
  border-color: #00a0e3;
}
.btn-shop:active,
.btn-shop.active,
.open > .dropdown-toggle.btn-warning {
  color: #fff;
  background-color: #00a0e3;
  border-color: #00a0e3;
}

/* ========== #SHOP BANNERS STYLE 2 ========== */
.shop-banners-2{
    background: #75daf0;
    height: 300px;
}

.shop-detail{
    float: left;
    padding: 90px 30px 90px 30px;
}

.shop-banners-2 .shop-image{
    background-image: url("../img/images/pc.png");
    background-position: right;
    background-repeat: no-repeat;
    height: 300px;
}

.shop-banners-2 .shop-image-2{
    background-image: url("../img/images/bike.png");
    background-position: right;
    background-repeat: no-repeat;
    height: 300px;
}

.shop-banners-2 .btn-shop {
  color: #fff;
  background-color: transparent;
  display: inline-block;
  padding: 8px 12px;
  margin-bottom: 0;
  font-size: 16px;
  font-weight: normal;
  line-height: 1.42857143;
  text-align: center;
  border: 2px solid #fff;
  border-radius: 20px;
  margin-top: 10px; 
  max-width: 140px;
}

.shop-banners-2 .btn-shop:focus,
.shop-banners-2 .btn-shop.focus {
  color: #75daf0;
  background-color: #fff;
  border-color: #fff;
}
.shop-banners-2 .btn-shop:hover {
  color: #75daf0;
  background-color: #fff;
  border-color: #fff;
}
.shop-banners-2 .btn-shop:active,
.shop-banners-2 .btn-shop.active,
.open > .dropdown-toggle.btn-warning {
  color: #75daf0;
  background-color: #fff;
  border-color: #fff;
}


/* ==========================================================================
    #SOCIAL ICONS
============================================================================= */
.social-icons .fa {
  padding: 10px;
  font-size: 30px;
  width: 50px;
  text-align: center;
  text-decoration: none;
  margin: 5px 2px;
  border-radius: 50%;
}

.social-icons-2 .fa {
  padding: 10px;
  font-size: 30px;
  width: 50px;
  text-align: center;
  text-decoration: none;
  margin: 5px 2px;
}

.elements .fa:hover {
    opacity: 0.7;
}

.elements .fa-facebook {
  background: #3B5998;
  color: white;
}

.elements .fa-twitter {
  background: #55ACEE;
  color: white;
}

.elements .fa-google {
  background: #dd4b39;
  color: white;
}

.elements .fa-linkedin {
  background: #007bb5;
  color: white;
}

.elements .fa-youtube {
  background: #bb0000;
  color: white;
}

.elements .fa-instagram {
  background: #125688;
  color: white;
}

.elements .fa-pinterest {
  background: #cb2027;
  color: white;
}

.elements .fa-snapchat-ghost {
  background: #fffc00;
  color: white;
  text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
}

.elements .fa-skype {
  background: #00aff0;
  color: white;
}

.elements .fa-android {
  background: #a4c639;
  color: white;
}

.elements .fa-dribbble {
  background: #ea4c89;
  color: white;
}

.elements .fa-vimeo {
  background: #45bbff;
  color: white;
}

.elements .fa-tumblr {
  background: #2c4762;
  color: white;
}

.elements .fa-vine {
  background: #00b489;
  color: white;
}

.elements .fa-foursquare {
  background: #45bbff;
  color: white;
}

.elements .fa-stumbleupon {
  background: #eb4924;
  color: white;
}

.elements .fa-flickr {
  background: #f40083;
  color: white;
}

.fa-yahoo {
  background: #430297;
  color: white;
}

.elements .fa-soundcloud {
  background: #ff5500;
  color: white;
}

.elements .fa-reddit {
  background: #ff5700;
  color: white;
}

/*===== SOCIAL ICONS STYLES 2 =====*/

.social-icons-3 .fa {
  padding: 10px;
  font-size: 25px;
  width: 50px;
  text-align: center;
  text-decoration: none;
  margin: 5px 2px;
}

.social-icons-3 .fa-facebook {
  background: #FFF;
  color: #333;
  border: solid 1px #ddd;
  -moz-box-shadow:    inset 0 0 10px #ddd;
  -webkit-box-shadow: inset 0 0 10px #ddd;
  box-shadow:         inset 0 0 10px #ddd;
}

.social-icons-3 .fa-twitter {
  background: #FFF;
  color: #333;
  border: solid 1px #ddd;
  -moz-box-shadow:    inset 0 0 10px #ddd;
  -webkit-box-shadow: inset 0 0 10px #ddd;
  box-shadow:         inset 0 0 10px #ddd;
}

.social-icons-3 .fa-google {
  background: #FFF;
  color: #333;
  border: solid 1px #ddd;
  -moz-box-shadow:    inset 0 0 10px #ddd;
  -webkit-box-shadow: inset 0 0 10px #ddd;
  box-shadow:         inset 0 0 10px #ddd;
}

.social-icons-3 .fa-linkedin {
  background: #FFF;
  color: #333;
  border: solid 1px #ddd;
  -moz-box-shadow:    inset 0 0 10px #ddd;
  -webkit-box-shadow: inset 0 0 10px #ddd;
  box-shadow:         inset 0 0 10px #ddd;
}

.social-icons-3 .fa-youtube {
  background: #FFF;
  color: #333;
  border: solid 1px #ddd;
  -moz-box-shadow:    inset 0 0 10px #ddd;
  -webkit-box-shadow: inset 0 0 10px #ddd;
  box-shadow:         inset 0 0 10px #ddd;
}

.social-icons-3 .fa-instagram {
  background: #FFF;
  color: #333;
  border: solid 1px #ddd;
  -moz-box-shadow:    inset 0 0 10px #ddd;
  -webkit-box-shadow: inset 0 0 10px #ddd;
  box-shadow:         inset 0 0 10px #ddd;
}

.social-icons-3 .fa-pinterest {
  background: #FFF;
  color: #333;
  border: solid 1px #ddd;
  -moz-box-shadow:    inset 0 0 10px #ddd;
  -webkit-box-shadow: inset 0 0 10px #ddd;
  box-shadow:         inset 0 0 10px #ddd;
}

.social-icons-3 .fa-snapchat-ghost {
  background: #FFF;
  color: #333;
  border: solid 1px #ddd;
  -moz-box-shadow:    inset 0 0 10px #ddd;
  -webkit-box-shadow: inset 0 0 10px #ddd;
  box-shadow:         inset 0 0 10px #ddd;
  text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
}

.social-icons-3 .fa-skype {
  background: #FFF;
  color: #333;
  border: solid 1px #ddd;
  -moz-box-shadow:    inset 0 0 10px #ddd;
  -webkit-box-shadow: inset 0 0 10px #ddd;
  box-shadow:         inset 0 0 10px #ddd;
}

.social-icons-3 .fa-android {
  background: #FFF;
  color: #333;
  border: solid 1px #ddd;
  -moz-box-shadow:    inset 0 0 10px #ddd;
  -webkit-box-shadow: inset 0 0 10px #ddd;
  box-shadow:         inset 0 0 10px #ddd;
}

.social-icons-3 .fa-dribbble {
  background: #FFF;
  color: #333;
  border: solid 1px #ddd;
  -moz-box-shadow:    inset 0 0 10px #ddd;
  -webkit-box-shadow: inset 0 0 10px #ddd;
  box-shadow:         inset 0 0 10px #ddd;
}

.social-icons-3 .fa-vimeo {
  background: #FFF;
  color: #333;
  border: solid 1px #ddd;
  -moz-box-shadow:    inset 0 0 10px #ddd;
  -webkit-box-shadow: inset 0 0 10px #ddd;
  box-shadow:         inset 0 0 10px #ddd;
}

.social-icons-3 .fa-tumblr {
  background: #FFF;
  color: #333;
  border: solid 1px #ddd;
  -moz-box-shadow:    inset 0 0 10px #ddd;
  -webkit-box-shadow: inset 0 0 10px #ddd;
  box-shadow:         inset 0 0 10px #ddd;
}

.social-icons-3 .fa-vine {
  background: #FFF;
  color: #333;
  border: solid 1px #ddd;
  -moz-box-shadow:    inset 0 0 10px #ddd;
  -webkit-box-shadow: inset 0 0 10px #ddd;
  box-shadow:         inset 0 0 10px #ddd;
}

.social-icons-3 .fa-foursquare {
  background: #FFF;
  color: #333;
  border: solid 1px #ddd;
  -moz-box-shadow:    inset 0 0 10px #ddd;
  -webkit-box-shadow: inset 0 0 10px #ddd;
  box-shadow:         inset 0 0 10px #ddd;
}

.social-icons-3 .fa-stumbleupon {
  background: #FFF;
  color: #333;
  border: solid 1px #ddd;
  -moz-box-shadow:    inset 0 0 10px #ddd;
  -webkit-box-shadow: inset 0 0 10px #ddd;
  box-shadow:         inset 0 0 10px #ddd;
}

.social-icons-3 .fa-flickr {
  background: #FFF;
  color: #333;
  border: solid 1px #ddd;
  -moz-box-shadow:    inset 0 0 10px #ddd;
  -webkit-box-shadow: inset 0 0 10px #ddd;
  box-shadow:         inset 0 0 10px #ddd;
}

.social-icons-3 .fa-yahoo {
  background: #FFF;
  color: #333;
  border: solid 1px #ddd;
  -moz-box-shadow:    inset 0 0 10px #ddd;
  -webkit-box-shadow: inset 0 0 10px #ddd;
  box-shadow:         inset 0 0 10px #ddd;
}

.social-icons-3 .fa-soundcloud {
  background: #FFF;
  color: #333;
  border: solid 1px #ddd;
  -moz-box-shadow:    inset 0 0 10px #ddd;
  -webkit-box-shadow: inset 0 0 10px #ddd;
  box-shadow:         inset 0 0 10px #ddd;
}

.social-icons-3 .fa-reddit {
  background: #FFF;
  color: #333;
  border: solid 1px #ddd;
  -moz-box-shadow:    inset 0 0 10px #ddd;
  -webkit-box-shadow: inset 0 0 10px #ddd;
  box-shadow:         inset 0 0 10px #ddd;
}


/*===== SOCIAL ICONS STYLES 3 =====*/
.elements-4  .fa {
  padding: 10px;
  font-size: 25px;
  width: 50px;
  text-align: center;
  text-decoration: none;
  margin: 5px 2px;
  border-radius: 50%;
}

.elements-4 .fa {
  padding: 10px;
  font-size: 25px;
  width: 50px;
  text-align: center;
  text-decoration: none;
  margin: 5px 2px;
}

.elements-4 .fa-facebook {
  background: #FFF;
  color: #333;
  border: solid 1px #ddd;
  -moz-box-shadow:    inset 0 0 10px #ddd;
  -webkit-box-shadow: inset 0 0 10px #ddd;
  box-shadow:         inset 0 0 10px #ddd;
}

.elements-4 .fa-twitter {
  background: #FFF;
  color: #333;
  border: solid 1px #ddd;
  -moz-box-shadow:    inset 0 0 10px #ddd;
  -webkit-box-shadow: inset 0 0 10px #ddd;
  box-shadow:         inset 0 0 10px #ddd;
}

.elements-4 .fa-google {
  background: #FFF;
  color: #333;
  border: solid 1px #ddd;
  -moz-box-shadow:    inset 0 0 10px #ddd;
  -webkit-box-shadow: inset 0 0 10px #ddd;
  box-shadow:         inset 0 0 10px #ddd;
}

.elements-4 .fa-linkedin {
  background: #FFF;
  color: #333;
  border: solid 1px #ddd;
  -moz-box-shadow:    inset 0 0 10px #ddd;
  -webkit-box-shadow: inset 0 0 10px #ddd;
  box-shadow:         inset 0 0 10px #ddd;
}

.elements-4 .fa-youtube {
  background: #FFF;
  color: #333;
  border: solid 1px #ddd;
  -moz-box-shadow:    inset 0 0 10px #ddd;
  -webkit-box-shadow: inset 0 0 10px #ddd;
  box-shadow:         inset 0 0 10px #ddd;
}

.elements-4 .fa-instagram {
  background: #FFF;
  color: #333;
  border: solid 1px #ddd;
  -moz-box-shadow:    inset 0 0 10px #ddd;
  -webkit-box-shadow: inset 0 0 10px #ddd;
  box-shadow:         inset 0 0 10px #ddd;
}

.elements-4 .fa-pinterest {
  background: #FFF;
  color: #333;
  border: solid 1px #ddd;
  -moz-box-shadow:    inset 0 0 10px #ddd;
  -webkit-box-shadow: inset 0 0 10px #ddd;
  box-shadow:         inset 0 0 10px #ddd;
}

.elements-4 .fa-snapchat-ghost {
  background: #FFF;
  color: #333;
  border: solid 1px #ddd;
  -moz-box-shadow:    inset 0 0 10px #ddd;
  -webkit-box-shadow: inset 0 0 10px #ddd;
  box-shadow:         inset 0 0 10px #ddd;
  text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
}

.elements-4 .fa-skype {
  background: #FFF;
  color: #333;
  border: solid 1px #ddd;
  -moz-box-shadow:    inset 0 0 10px #ddd;
  -webkit-box-shadow: inset 0 0 10px #ddd;
  box-shadow:         inset 0 0 10px #ddd;
}

.elements-4 .fa-android {
  background: #FFF;
  color: #333;
  border: solid 1px #ddd;
  -moz-box-shadow:    inset 0 0 10px #ddd;
  -webkit-box-shadow: inset 0 0 10px #ddd;
  box-shadow:         inset 0 0 10px #ddd;
}

.elements-4 .fa-dribbble {
  background: #FFF;
  color: #333;
  border: solid 1px #ddd;
  -moz-box-shadow:    inset 0 0 10px #ddd;
  -webkit-box-shadow: inset 0 0 10px #ddd;
  box-shadow:         inset 0 0 10px #ddd;
}

.elements-4 .fa-vimeo {
  background: #FFF;
  color: #333;
  border: solid 1px #ddd;
  -moz-box-shadow:    inset 0 0 10px #ddd;
  -webkit-box-shadow: inset 0 0 10px #ddd;
  box-shadow:         inset 0 0 10px #ddd;
}

.elements-4 .fa-tumblr {
  background: #FFF;
  color: #333;
  border: solid 1px #ddd;
  -moz-box-shadow:    inset 0 0 10px #ddd;
  -webkit-box-shadow: inset 0 0 10px #ddd;
  box-shadow:         inset 0 0 10px #ddd;
}

.elements-4 .fa-vine {
  background: #FFF;
  color: #333;
  border: solid 1px #ddd;
  -moz-box-shadow:    inset 0 0 10px #ddd;
  -webkit-box-shadow: inset 0 0 10px #ddd;
  box-shadow:         inset 0 0 10px #ddd;
}

.elements-4 .fa-foursquare {
  background: #FFF;
  color: #333;
  border: solid 1px #ddd;
  -moz-box-shadow:    inset 0 0 10px #ddd;
  -webkit-box-shadow: inset 0 0 10px #ddd;
  box-shadow:         inset 0 0 10px #ddd;
}

.elements-4 .fa-stumbleupon {
  background: #FFF;
  color: #333;
  border: solid 1px #ddd;
  -moz-box-shadow:    inset 0 0 10px #ddd;
  -webkit-box-shadow: inset 0 0 10px #ddd;
  box-shadow:         inset 0 0 10px #ddd;
}

.elements-4 .fa-flickr {
  background: #FFF;
  color: #333;
  border: solid 1px #ddd;
  -moz-box-shadow:    inset 0 0 10px #ddd;
  -webkit-box-shadow: inset 0 0 10px #ddd;
  box-shadow:         inset 0 0 10px #ddd;
}

.elements-4 .fa-yahoo {
  background: #FFF;
  color: #333;
  border: solid 1px #ddd;
  -moz-box-shadow:    inset 0 0 10px #ddd;
  -webkit-box-shadow: inset 0 0 10px #ddd;
  box-shadow:         inset 0 0 10px #ddd;
}

.elements-4 .fa-soundcloud {
  background: #FFF;
  color: #333;
  border: solid 1px #ddd;
  -moz-box-shadow:    inset 0 0 10px #ddd;
  -webkit-box-shadow: inset 0 0 10px #ddd;
  box-shadow:         inset 0 0 10px #ddd;
}

.elements-4 .fa-reddit {
  background: #FFF;
  color: #333;
  border: solid 1px #ddd;
  -moz-box-shadow:    inset 0 0 10px #ddd;
  -webkit-box-shadow: inset 0 0 10px #ddd;
  box-shadow:         inset 0 0 10px #ddd;
}


/* ==========================================================================
    #TABLES
============================================================================= */
/* ========== #TABLES STYLE 1 ========== */
.table {
  margin: 0 0 40px 0;
  width: 100%;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  display: table;
}
@media screen and (max-width: 580px) {
  .table {
    display: block;
  }
}

.row-table {
  display: table-row;
  background: #f6f6f6;
}
.row-table:nth-of-type(odd) {
  background: #e9e9e9;
}
.row-table.header {
  font-weight: 900;
  color: #ffffff;
  background: #00a0e3;
}
.row-table.green {
  background: #219150;
}
.row-table.blue {
  background: #012C40;
}
@media screen and (max-width: 580px) {
  .row-table {
    padding: 14px 0 7px;
    display: block;
  }
  .row-table.header {
    padding: 0;
    height: 6px;
  }
  .row-table.header .cell {
    display: none;
  }
  .row-table .cell {
    margin-bottom: 10px;
  }
  .row-table .cell:before {
    margin-bottom: 3px;
    content: attr(data-title);
    min-width: 98px;
    font-size: 10px;
    line-height: 10px;
    font-weight: bold;
    text-transform: uppercase;
    color: #969696;
    display: block;
  }
}

.cell {
  padding: 6px 12px;
  display: table-cell;
}
@media screen and (max-width: 580px) {
  .cell {
    padding: 2px 16px;
    display: block;
  }
}


/* ==========================================================================
    #TABS
============================================================================= */
/*===== TABAS STYLES 1 =====*/

.elements-1 .tab-pane{
    color: #666;
    padding: 20px 0px 20px 0px;
    text-align: left;
}

.elements-1 .tab-pane p{
    color: #666;
    text-align: left;
    margin-bottom: 15px;
}

.elements-1 .nav-tabs {
  border-bottom: 2px solid #00a0e3;
}
.elements-1 .nav-tabs > li {
  float: left;
  margin-bottom: -1px;
  width: 25%;
  text-align: center;
  height: 50px;
  background: #FAFCFC;
 
}
.elements-1 .nav-tabs > li > a {
  margin-right: 0px;
  line-height: 1.42857143;
  border: none;
  border-radius: 0px;
  font-size: 16px;  
  color: #333;
  transition: 0.3s;
  padding: 15px 0px 15px 0px;
    height: 50px;
}

.elements-1 .nav-tabs > li > a:hover {
  background-color: #00a0e3;
  color: #fff;
    height: 50px;
    padding: 15px 0px 15px 0px;
}

.elements-1 .nav-tabs > li.active > a,
.elements-1 .nav-tabs > li.active > a:hover,
.elements-1 .nav-tabs > li.active > a:focus {
  color: #fff;
  cursor: default;
  background-color: #00a0e3;
  border: none;
  border-bottom-color: none;
    height: 50px;
    padding: 15px 0px 15px 0px;
}

.elements-1 .nav-tabs.nav-justified {
  width: 100%;
  border-bottom: 0;
}

.elements-1 .nav-tabs.nav-justified > li {
  float: none;
}

.elements-1 .nav-tabs.nav-justified > li > a {
  margin-bottom: 5px;
  text-align: center;
}

.elements-1 .nav-tabs.nav-justified > .dropdown .dropdown-menu {
  top: auto;
  left: auto;
}

/*===== TABAS STYLES 2 =====*/
.tab-pane{
    color: #666;
    padding: 20px 0px 20px 0px;
    text-align: left;
}

.tab-pane p{
    color: #666;
    text-align: left;
    margin-bottom: 15px;
}

.nav-tabs {
  border-bottom: 2px solid #24aadb;
}
.nav-tabs > li {
  float: left;
  margin-bottom: -1px;
  width: 25%;
  text-align: center;
  height: 120px;
  background: #FAFCFC;
}

.nav-tabs > li > a {
  margin-right: 0px;
  line-height: 1.42857143;
  border: none;
  border-radius: 0px;
  font-size: 16px;  
  color: #333;
  transition: 0.3s;
  padding: 25px 0px 25px 0px;
  height: 120px;
}

.nav-tabs > li > a:hover {
  background-color: #24aadb;
    color: #fff;
    height: 120px;
    padding: 25px 0px 25px 0px;
}

.nav-tabs > li.active > a,
.nav-tabs > li.active > a:hover,
.nav-tabs > li.active > a:focus {
    color: #fff;
    cursor: default;
    background-color: #24aadb;
    border: none;
    border-bottom-color: none;
    height: 120px;
    padding: 25px 0px 25px 0px;
}

.tab-icon, .tab-icon-2, .tab-icon-3, .tab-icon-4{
    width: 50px;
    height: 50px; 
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    margin: 0px auto 5px auto;
}

.nav-tabs > li.active > a .tab-icon{
    background-image: url("../img/master/web-design-3.png");
    
    transition: 0.3s;
}

.nav-tabs > li > a:hover .tab-icon{
    background-image: url("../img/master/web-design-3.png");
    transition: 0.3s;
}

.nav-tabs > li > a .tab-icon{
    background-image: url("../img/master/responsive-3.png");
}

.nav-tabs > li.active > a .tab-icon-2{
    background-image: url("../img/master/layers-3.png"); 
    transition: 0.3s;
}

.nav-tabs > li > a:hover .tab-icon-2{
    background-image: url("../img/master/layers-3.png"); 
    transition: 0.3s;
}

.nav-tabs > li > a .tab-icon-2{
    background-image: url("../img/master/layers-5.png");
}

.nav-tabs > li.active > a .tab-icon-3{
    background-image: url("../img/master/coding-2.png");
    transition: 0.3s;
}

.nav-tabs > li > a:hover .tab-icon-3{
    background-image: url("../img/master/coding-2.png");
    transition: 0.3s;
}

.nav-tabs > li > a .tab-icon-3{
    background-image: url("../img/master/code-4.png");
}

.nav-tabs > li.active > a .tab-icon-4{
    background-image: url("../img/master/cubes.png");
    transition: 0.3s;
}

.nav-tabs > li > a:hover .tab-icon-4{
    background-image: url("../img/master/cubes.png");
    transition: 0.3s;
}

.nav-tabs > li > a .tab-icon-4{
    background-image: url("../img/master/cubes-2.png");
}

.nav-tabs.nav-justified {
    width: 100%;
    border-bottom: 0;
}

.nav-tabs.nav-justified > li {
    float: none;
}

.nav-tabs.nav-justified > li > a {
    margin-bottom: 5px;
    text-align: center;
}

.nav-tabs.nav-justified > .dropdown .dropdown-menu{
    top: auto;
    left: auto;
}

.inner-tab .col-md-7{
    margin-top: 30px;
}

.department-pic img{
    width: 100%;
}

.inner-tab p{
    color: #a6a6a6;
    line-height: 1.7;
    margin: 5px 0px 20px 0px;
}

hr.departments{
    width: 100%;
    border-top: 1px solid #e6e6e6;
    margin: 15px 0px 15px 0px;
}

.span-department p{
    color: #333;
    line-height: 1.7;
    margin: 0px 15px; 
}

.span-department .fa{
    color: #00a0e3;
}


/* ==========================================================================
    #TEAM
============================================================================= */
/* ========== #TEAM STYLE 1 ========== */
.headshot img{
    width: 100%;
}
.profile {
  font-family: 'Raleway', Arial, sans-serif;
  position: relative;
  float: left;
  overflow: hidden;
  margin: 10px 1%;

  width: 100%;
  background: #000000;
  text-align: left;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.profile * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.profile img {
  max-width: 100%;
  position: relative;
  top: 0;
  opacity: 1.0;
  left: 0;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  -webkit-transform-origin: 0 100%;
  transform-origin: 0 100%;
}
.profile h3 {
  position: absolute;
  color: #ffffff;
  bottom: 0;
  text-transform: uppercase;
  padding: 6px;
  margin: 0;
  left: 40px;
  opacity: 0;
  -webkit-transform: translate(-10px, 0);
  transform: translate(-10px, 0);
  -webkit-transition-delay: 0;
  transition-delay: 0;
}
.profile .icons {
  bottom: 35px;
  width: 35px;
  position: absolute;
  text-align: center;
}
.profile .icons i {
  display: inline-block;
  font-size: 22px;
  color: #ffffff;
  opacity: 1;
  position: relative;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  -webkit-transform: translate(-35px, 35px);
  transform: translate(-35px, 35px);
}
.profile .corner {
  position: absolute;
  bottom: 0;
  text-align: center;
}
.profile .icons i,
.profile .corner {
  height: 35px;
  width: 35px;
  line-height: 35px;
  background: #262626;
}
.profile a {
  opacity: 0.8;
}
.profile a:hover {
  opacity: 1;
}
.profile a:hover i {
  width: 40px;
  -webkit-transition: all 0.1s;
  transition: all 0.1s;
}
.profile.right {
  background: #d16163;
}
.profile.right .icons i,
.profile.right .corner {
  background: #d16163;
}
.profile.center {
  background: #479e9a;
}
.profile.center .icons i,
.profile.center .corner {
  background: #479e9a;
}
.profile.left {
  background: #d16163;
}
.profile.left .icons i,
.profile.left .corner {
  background: #d16163;
}

.profile:hover img,
.profile.hover img {
  opacity: 0.5;
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
.profile:hover h3,
.profile.hover h3 {
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
  -webkit-transition-delay: 0.2s;
  transition-delay: 0.2s;
  opacity: 1;
}
.profile:hover .icons,
.profile.hover .icons {
  opacity: 1;
}
.profile:hover .icons i,
.profile.hover .icons i {
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
  opacity: 1;
}
.profile:hover a:first-child i,
.profile.hover a:first-child i {
  -webkit-transition-delay: 0.2s;
  transition-delay: 0.2s;
}
.profile:hover a:nth-child(2) i,
.profile.hover a:nth-child(2) i {
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
}
.profile:hover a:nth-child(3) i,
.profile.hover a:nth-child(3) i {
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
}

.corner .fa{
    color: #FFF;
}

/* ========== #TEAM STYLE 2 ========== */
.team-avatar{
    width: 200px;
    height: 200px;
    margin: auto;
}

.team-avatar img{
    border-radius: 50%;
    width: 100%;
}

.team-card .caption{
    text-align: center;
    margin-top: 15px;
}

.team-card .caption h5{
    color: #333;
    font-weight: 600;
    font-size: 17px;
}

.team-card .caption h6{
    color: #333;
    font-size: 14px;
    margin: -4px 0px 6px 0px;
}

.team-card .caption p{
    font-size: 13px;
    
}

.overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 200px;
  height: 200px;
  opacity: 0;
  transition: .5s ease;
  background-color: rgba(255, 64, 76, 0.5);
  border-radius: 50%;
  margin: 0px auto 0px auto;
}

.team-avatar:hover .overlay {
  opacity: 1;
}

.team-social {
  color: white;
  font-size: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  text-align: center;
}

.team-items{
    display: inline-block;
    margin-right: 10px;
    color: #FFF;
}

.team-items .fa{
    color: #FFF;
}

/* ========== #yuvarlaklar ========== */
.team-avatar2{
    width: 125px;
    height: 125px;
    margin: auto;
}

.team-avatar2{
    width: 125px;
    height: 125px;
    margin: auto;
}

.team-avatar2 img{
    border-radius: 50%;
    width: 100%;
	border-style: solid;
	 border-width: 7px;
	  border-color: #00a0e3;
}

.team-card2 .caption{
    text-align: center;
    margin-top: 15px;
}

.team-card2 .caption h5{
    color: #333;
    font-weight: 600;
    font-size: 17px;
}

.team-card2 .caption h6{
    color: #333;
    font-size: 14px;
    margin: -4px 0px 6px 0px;
}

.team-card2 .caption p{
    font-size: 13px;
    
}

.overlay2 {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 125px;
  height: 125px;
  opacity: 0;
  transition: .5s ease;
  background-color: rgba(255, 64, 76, 0.5);
  border-radius: 50%;
  margin: 0px auto 0px auto;
  opacity: 2;
}

.team-avatar2:hover .overlay2 {
  opacity: 0;
}

.team-social2 {
  color: #fff;
  font-size: 18px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  text-align: center;
}


.team-items2{
    display: inline-block;
    color: #FFF;
}

.team-items2 h5{
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  text-shadow: 2px 1px 1px #000;
}



.team-items2 .fa{
    color: #FFF;
}

/* ========== #TEAM STYLE 3 ========== */

.team-headshot img{
    width: 100%;
}

.team-headshot:hover .overlay-2 {
  opacity: 1;
}

.team-headshot .overlay-2 {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    opacity: 0;
    transition: .5s ease;
    margin: 0px;
    padding: 160px 20px 160px 20px;

}

.inner-overlay-2{
    text-align: center;
    color: #FFF;
    position: absolute;
    margin: auto;
    right: 0;
    bottom: 30px;
    left: 0;
    width: 300px;
    height: 200px;
    border-radius: 3px;
    background-color: rgba(255, 64, 76, 0.5);
    padding: 40px 20px 40px 20px;
}

.inner-overlay-2 h4{
    color: #fff;
}

.inner-overlay-2 h6{
    color: #fff;
    font-size: 14px;
    margin: -4px 0px 6px 0px;
}

.inner-overlay-2 p{
    font-size: 13px;
}

.inner-overlay-2 .team-social-2 {
  color: white;
  font-size: 20px;

}

.inner-overlay-2 .team-items-2{
    display: inline-block;
    margin-right: 10px;
    color: #FFF;
}

.inner-overlay-2 .team-items-2 .fa{
    color: #FFF;
}

/* ========== #TEAM STYLE 4 ========== */
.team-card-3{
    text-align: center;
}

.team-card-3 h6{
    margin-top: 5px;
    font-size: 15px;
}

.team-card-3 p{
    margin-top: -2px;
    font-size: 13px;
}

.team-photo img{
    width: 100%;
}

.our-team h2{
    text-align: left;
    margin-bottom: 10px;
}

.our-team h6{
    font-style: italic;
    color: #999999;
}

.our-team p{
    text-align: left;
    color: #999;
    line-height: 1.5;
    margin-bottom: 15px;
}

.team-card-3 .slick-dots {
  text-align: center;
  padding: 0;
}
.team-card-3 .slick-dots li {
  display: inline-block;
  margin-left: 4px;
  margin-right: 4px;

}
.team-card-3 .slick-dots li.slick-active button {
  background-color: #999;
}
.team-card-3 .slick-dots li button {
  font: 0/0 a;
  text-shadow: none;
  color: transparent;
  background-color: #fff;
  border: solid 1px #999;
  width: 15px;
  height: 15px;
  border-radius: 50%;
}
.team-card-3 .slick-dots li :hover {
  background-color: #999;
}

.team-card-3 .responsive{
    clear: both;
}

.team-card-3 .responsive div img{
    margin-left: auto;
    margin-right: auto;
}

@media screen and (max-width: 800px) {
  .next, .prev {
    display: none !important;
  }
}

.span-item img{
    width: 100%;
}

/* ==========================================================================
    #TESTIMONIALS
============================================================================= */
.main-gallery{
    margin-bottom: 15px;
}

.gallery-cell {
  width: 100%;
    background: #fff;
}

.testimonial-section{
    min-height: 200px;
}

.avatar {
  width: 100px;
  height: 100px;
  margin: auto;
}

.avatar img{
  width: 100%;
  border-radius: 50%;
}

.testimonial-quote{
    margin: 15px  100px 5px 100px;
}

.testimonial-quote p{
    text-align: center;
    font-size: 15px;
}

.autor h6{
    text-align: center;
    margin-bottom: 20px;
}

.testimonial {
  text-align: center;
  max-width: 850px;
  margin: 10px auto 10px auto;
}


.flickity-page-dots .dot.is-selected {
  background: #00a0e3;
}

.testimonials{
  padding: 20px 15px 20px 15px;
  margin-right: auto;
  margin-left: auto;
  clear: both;
}

.testimonials-services{
  margin: -50px auto 20px auto;
}

.flickity-enabled{position:relative}.flickity-enabled:focus{outline:0}.flickity-viewport{overflow:hidden;position:relative;height:100%}.flickity-slider{position:absolute;width:100%;height:100%}.flickity-enabled.is-draggable{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.flickity-enabled.is-draggable .flickity-viewport{cursor:move;cursor:-webkit-grab;cursor:grab}.flickity-enabled.is-draggable .flickity-viewport.is-pointer-down{cursor:-webkit-grabbing;cursor:grabbing}.flickity-prev-next-button{position:absolute;top:50%;width:44px;height:44px;border:none;border-radius:0%;background:#fff;background:hsla(0,0%,100%,.75);cursor:pointer;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%)}.flickity-prev-next-button:hover{background:#fff}.flickity-prev-next-button:focus{outline:0;box-shadow:0 0 0 5px #09F}.flickity-prev-next-button:active{filter:alpha(opacity=60);opacity:.6}.flickity-prev-next-button.previous{left:10px}.flickity-prev-next-button.next{right:10px}.flickity-rtl .flickity-prev-next-button.previous{left:auto;right:10px}.flickity-rtl .flickity-prev-next-button.next{right:auto;left:10px}.flickity-prev-next-button:disabled{filter:alpha(opacity=30);opacity:.3;cursor:auto}.flickity-prev-next-button svg{position:absolute;left:20%;top:20%;width:60%;height:60%}.flickity-prev-next-button .arrow{fill:#333}.flickity-prev-next-button.no-svg{color:#333;font-size:26px}.flickity-page-dots{position:absolute;width:100%;bottom:-5px;padding:0;margin:0;list-style:none;text-align:center;line-height:1}.flickity-rtl .flickity-page-dots{direction:rtl}.flickity-page-dots .dot{display:inline-block;width:30px;height:5px;margin:0 8px;background:#ddd;border-radius:0%;filter:alpha(opacity=25);opacity:.25;cursor:pointer}.flickity-page-dots .dot.is-selected{filter:alpha(opacity=100);opacity:1}


/* ========== #TESTIMONIALS STYLE 2 ========== */
.testimonials-box{
    background: #f0f0f0;
    padding: 60px;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.12),
                0 2px 4px 0 rgba(0,0,0,0.08);
    margin-bottom: 30px;
}

.testimonials-box .avatar-photo{
    width: 100px;
    height: 100px;
    margin: auto;
}

.testimonials-box .avatar-photo img{
    width: 100%;
    border-radius: 50%;
}

.testimonial-text{
    text-align: center;
}

.testimonial-text h5{
    font-size: 18px;
    color: #333;
    font-weight: 600;
    margin-top: 10px;
}

.testimonial-text h6{
    font-size: 15px;
    color: #00a0e3;
    margin: -3px 0px 10px 0px;
}

.testimonials-box .slick-dots {
  text-align: center;
  padding: 0;
}
.testimonials-box .slick-dots li {
  display: inline-block;
  margin-left: 4px;
  margin-right: 4px;

}
.testimonials-box .slick-dots li.slick-active button {
  background-color: #999;
}
.testimonials-box .slick-dots li button {
  font: 0/0 a;
  text-shadow: none;
  color: transparent;
  background-color: #fff;
  border: solid 1px #999;
  width: 15px;
  height: 15px;
  border-radius: 50%;
}
.testimonials-box .slick-dots li :hover {
  background-color: #999;
}

.testimonials-box .responsive{
    clear: both;
}

.testimonials-box .responsive div img{
    margin-left: auto;
    margin-right: auto;
}

@media screen and (max-width: 800px) {
  .next, .prev {
    display: none !important;
  }
}

.span-item img{
    width: 100%;
}


/* ========== #TESTIMONIALS STYLE 3 ========== */
.box-testimonials{
    background: #FAFCFC;
    width: 100%;
    height: 100%;
    position: relative;
    transition: 0.3s;
    margin: 80px 0px 40px 0px;
    box-shadow: 0 15px 30px 0 rgba(0,0,0,0.11),
                0 5px 15px 0 rgba(0,0,0,0.08);
}

.box-testimonials:hover{
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
}

.testimonials-avatar{
    width: 120px;
    height: 120px;
    margin: auto;
    box-shadow: 0 0 10px rgba(0,0,0,0.6);
    -moz-box-shadow: 0 0 10px rgba(0,0,0,0.6);
    -webkit-box-shadow: 0 0 10px rgba(0,0,0,0.6);
    -o-box-shadow: 0 0 10px rgba(0,0,0,0.6);
    border-radius: 50%;
    position: absolute;
    top: -10%; left: 50%;
    transform: translate(-50%,-20%);
}

.testimonials-avatar img{
    width: 100%;
    border-radius: 50%;
}

.testimonials-content{
    text-align: center;
    margin: auto;
    padding: 50px 30px 50px 30px;  
}

.testimonials-content h5{
    color: #333;
    margin-top: -40px;
}

.testimonials-content h6{
    color: #999;
}

.testimonials-content p{
    color: #666;
    margin: 30px;
    font-size: 16px;
    line-height: 2;
}

/* ==========================================================================
    #TIMELINE
============================================================================= */
.timeline-box {
   width: 70%;
   padding: 50px 0;
   margin: 50px auto;
   position: relative;
   overflow: hidden;
}

.timeline-box:before {
   content: '';
   position: absolute;
   top: 0;
   left: 50%;
   margin-left: -1px;
   width: 2px;
   height: 100%;
   background: #ff99a0;
   z-index: 1
}

.timeline-block {
   width: calc(50% + 8px);
   display: -webkit-box;
   display: -ms-flexbox;
   display: flex;
   -webkit-box-pack: justify;
   -ms-flex-pack: justify;
       justify-content: space-between;
   clear: both;
}

.timeline-block-right {
   float: right;
}

.timeline-block-left {
   float: left;
   direction: rtl;
}

.marker {
   width: 16px;
   height: 16px;
   border-radius: 50%;
   border: 2px solid #00a0e3;
   background: #00a0e3;
   margin-top: 10px;
   z-index: 9999
}

.timeline-content {
   width: 95%;
   padding: 0 15px;
   color: #666;
   border: none;
}

.timeline-content:before {
    content: '';
    background: none;   
}

.timeline-content h3 {
   margin-top: -15px;
   margin-bottom: 5px;
   font-size: 25px;
   font-weight: 600
}

.timeline-content h6 {
   color: #666;
   font-weight: normal;
   margin-top: -10px;
}

.timeline-content p {
   font-size: 14px;
   line-height: 1.5em;
   word-spacing: 1px;
   color: #808080;
}



/* ==========================================================================
    #VIDEOS
============================================================================= */
.video-embed{
    margin: auto;
    width: 640px;
}

/* ==========================================================================
    #WIDE SECTIONS
============================================================================= */
.wide-left{
    background-image: url("../img/images/img40.jpg");
    height: 600px; 
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.wide-right{
    background: #FAFCFC;
    height: 600px; 
}

.central-box{
    position: absolute;
    margin: auto;
    right: 0;
    bottom: 50px;
    left: 0;
    width: 600px;
    height: 300px;
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.8);
	padding: 30px;
	box-shadow: 0 15px 30px 0 rgba(0,0,0,0.11), 0 5px 15px 0 rgba(0,0,0,0.08);
}

.central-box h1{
    font-weight: 700;
}

.inner-box-text{
    top: 25%;
    bottom: 0;
    left: 0;
    right: 0;
    position: absolute;
    padding: 0px 40px 0px 40px;
}

.inner-box-text p{
    line-height: 1.7;
    color: #808080;
    margin: 10px 0px 20px 0px;
}

.inner-box-right{
    position: absolute;
    margin: auto;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 320px;
    border-radius: 3px;
    padding: 0px 40px 0px 40px;
}

.inner-item-boxes{
    margin-bottom: 40px;
}

.rounded-icon{
    display:inline-block;
    font-size: 30px;
    line-height: 80px;
    background: #FFF;
    color:white;
    width: 80px;
    height: 80px;
    text-align: center;
    vertical-align: bottom;
    border-radius: 50px;
    float: left;
    margin-right: 20px;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.12),
                0 2px 4px 0 rgba(0,0,0,0.08);
}

.rounded-icon .fa{
    color: #666;
    font-size: 30px;
}

.icon-rounded-info h5{
    font-weight: 600;
}

.icon-rounded-info p{
    color: #999;
}

.btn-wide-section {
  color: #fff;
  background-color: #00a0e3;
  border-color: #00a0e3;
  font-size: 16px;
  padding: 6px 25px;
}
.btn-wide-section:focus,
.btn-wide-section.focus {
  color: #fff;
  background-color: #00a0e3;
  border-color: #00a0e3;
}
.btn-wide-section:hover {
  color: #fff;
  background-color: #ff1a29;
  border-color: #ff1a29;
}

/* ========== #WIDE SECTION STYLES 2 ========== */

.wide-left-2{
    background-image: url("../img/images/img41.jpg");
    height: 500px; 
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.wide-right-2{
    background: #FAFCFC;
    height: 500px; 
}

.wide-right-2 .inner-box-right{
    position: absolute;
    margin: auto;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 320px;
    border-radius: 3px;
    padding: 50px 40px 50px 40px;
}

.wide-right-2 .inner-info{
    padding: 0px 50px 0px 50px;
}

.wide-right-2 .inner-info h2{
    font-weight: 600;
    text-align: left;
}

.wide-right-2 .inner-info p{
    color: 999;
    line-height: 2;
    margin: 10px 0px 10px 0px;
}

 /* ========== #WIDE SECTION 3 ========== */   
.span-wide-left{
    background-image: url("../img/images/dealer/img7.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 500px;
}

.overlay-left:before{
  position: absolute;
  content:" ";
  top:0;
  left:0;
  width:100%;
  height:100%;
  display: block;
  z-index:0;
  background-color: rgba(255,0,0,0.4);
}

.span-wide-right{
    background-image: url("../img/images/dealer/img3.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 500px;
}

.overlay-right:before{
    position: absolute;
    content:" ";
    top:0;
    left:0;
    width:100%;
    height:100%;
    display: block;
    z-index:0;
    background-color: rgba(0,0,0,0.5);
}

.center-content{
    position: absolute;
    margin: auto;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    border-radius: 3px;
    padding: 30px 120px 30px 120px;
    text-align: center;
    color: #FFF;
}

.center-content p{
    margin: 10px 0px 15px 0px;
}

/* ==========================================================================
   	MEDIA QUERIES MODULE.
   ========================================================================== */
@media (max-width:1400px) {  
/* ========== #WIDE SECTION 2 ========== */
.wide-right-2 .inner-box-right{
    position: absolute;
    margin: auto;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 320px;
    border-radius: 3px;
    padding: 10px 40px 10px 40px;
}    
    

.wide-right-2 .inner-info{
    padding: 0px 20px 0px 20px;
}
    
}
    
@media (max-width:992px) {  
.center-box{
    margin: 20px 0px 20px 0px;
}
    
/* ========== #CALL TO ACTION 2 ========== */
.banner-callout{
    width: 100%;
    height: 100%;
    padding: 30px;
}
    
.info-callout{
    float: none;
    margin-top: -5px;
}
      
.banner-callout{
    text-align: center;
} 

.btn-callout {
  float: none;
  margin-top: 15px;
  padding: 8px 25px;
}
    

/* ========== #CALL TO ACTION 2 ========== */
.elements-2 .banner-callout{
    width: 100%;
    height: 100%;
    padding: 30px;
}
    
.elements-2 .info-callout{
    float: none;
    margin-top: -5px;
}
      
.elements-2 .banner-callout{
    text-align: center;
} 

.elements-2 .btn-callout {
  float: none;
  margin-top: 15px;
  padding: 8px 25px;
}
      

/* ========== #CALL TO ACTION 3 ========== */
.elements-3 .banner-callout{
    width: 100%;
    height: 100%;
    padding: 30px;
}
    
.elements-3 .info-callout{
    float: none;
    margin-top: -5px;
}
      
.elements-3 .banner-callout h3{
    text-align: center;
} 
      
.elements-3 .banner-callout p{
    text-align: center;
} 

.elements-3 .btn-callout {
  float: none;
  margin-top: 15px;
  padding: 8px 25px;
}
    
/* ========== #CALL TO ACTION 4 ========== */
.elements-4 .banner-callout{
    width: 100%;
    height: 100%;
    padding: 30px;
}
    
.elements-4 .info-callout{
    float: none;
    margin-top: -5px;
}
      
.elements-4 .banner-callout{
    text-align: center;
} 

.elements-4 .btn-callout {
  float: none;
  margin-top: 15px;
  padding: 8px 25px;
}
    
/* ========== #CONTENT BOXES 2 ========== */
.content-boxes-2{
    background: #eef0f6;
    width: 100%;
    height: 100%;
    padding: 40px 20px 90px 20px;
    margin: 10px 0px 10px 0px;
}
  
/* ========== #CONTENT BOXES 2 ========== */
.content-boxes-3{
    background: #02567e;
    width: 100%;
    height: 100%;
    padding: 40px 20px 90px 20px;
    margin: 10px 0px 10px 0px;
}
    
/* ========== #CONTENT BOXES 3 ========== */  
    
.circle-col-1, .circle-col-2, .circle-col-3, .circle-col-4{
    padding: 40px 10px 60px 10px;
    color: #FFF;
}
    
.span-circle{
    position: relative;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #FFF;
    margin: auto auto 20px auto;
}

.span-icon{
    position: absolute;
    margin: auto;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 40px;
    border-radius: 3px;
}
    
/* ========== #DROPCAPS ========== */
    
.dropcaps{
    margin: 20px 0px 20px 0px;
}
    
/* ========== #FLIP BOXES ========== */   
.flip-container{
    margin: 20px 0px 20px 0px;
}

.flip{
    margin: 20px 0px 20px 0px;
}
    
/* ========== #GRID BOXES ========== */   
.bottom-grid{
    border-bottom: solid 1px #ddd;
}   
    
/* ========== #GRID BOXES STYLE 3 ========== */   
.service-grid{
    border-right: solid 1px transparent;
}
    
/* ========== #ICON BOXES ========== */       
.icon-boxes, .box-corner-shadow, .icon-boxes-shadow, .icon-boxes-hover, .boxes-bottom-hover, .left-corner-shadow, .right-corner-shadow{
    margin: 15px 0px 15px 0px;
}

    .icon-boxes-shadow{
    width: 100%;
    height: 100%;
    background: #FFF;
    padding: 35px 15px 50px 15px;
}
    
/* ========== #SECTION STYLES ========== */  
 
.section-right{
    margin-top: 50px;
}
    
.section-right{
    max-height: 100%;
}
    
.grid-box{
    padding: 50px 20px 50px 20px;
    border-right: solid 1px transparent;
    height: 100%;
}
    
.bottom-grid-2{
    border-bottom: solid 1px #ddd;
}
    
.grid-icon-2{
    height: 100%;
}
    
/* ========== #SHOP BANNERS STYLES ========== */   
.shop-banners{
    background: #808080;
}
    
.shop-detail h1{
    color: #FFF;
}  
    
.shop-detail p{
    color: #FFF;
}
    
.btn-shop {
  color: #FFF;
  background-color: transparent;
  display: inline-block;
  padding: 6px 10px;
  margin-bottom: 0;
  font-size: 14px;
  font-weight: normal;
  line-height: 1.42857143;
  text-align: center;
  border: 2px solid #FFF;
  border-radius: 20px;
  margin-top: 10px; 
}
    
/* ========== #WIDE SECTIONS ========== */       
.wide-right{
    height: 500px; 
}
    
/* ========== #WIDE SECTION 2 ========== */
.wide-right-2 .inner-box-right{
    position: relative;
    margin: auto;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 3px;
    padding: 60px 30px 20px 30px;
}  
    
.wide-right-2 .inner-info{
    padding: 0px;
}

.wide-right-2{
    height: 100%; 
}
  
/* ========== #TEAM ========== */
.team-card{
    margin: 30px 0px 30px 0px;
}
    
/* ========== #TEAM STYLE 4 ========== */  
.our-team h2{
    text-align: center;
    margin-bottom: 10px;
}

.our-team p{
    text-align: center;
    color: #999;
    margin-bottom: 20px;
}    
    
 /* ========== #SECTIONS STYLE 2 ========== */     
.about-front{
    margin-top: 0px
}
  
  /* ========== #RECENT POSTS ========== */      
.spa-news-big{
    margin-bottom: 30px;
}    
    
 
.bottom-bar{
    width: 100%;
    height: 100%;
    background: #FDC735;
    padding: 10px 0px 10px 0px;
}
    
.education-news{
    margin-bottom: 50px;
}  
    
  /* ========== #TABS ========== */      
.department-pic{
    margin-top: 30px;
}    
    
    
    

}    

@media (max-width:768px) { 
/* ========== #CALL TO ACTION 1 ========== */
.btn-callout {
  float: none;
  margin-top: 15px;
  padding: 6px 20px;
    font-size: 14px;
}
   
/* ========== #CALL TO ACTION 2 ========== */
.elements-2 .btn-callout {
  float: none;
  margin-top: 15px;
  padding: 6px 20px;
    font-size: 14px;
}   
    
/* ========== #CALL TO ACTION 3 ========== */
.elements-3 .btn-callout {
  float: none;
  margin-top: 15px;
  padding: 6px 20px;
    font-size: 14px;
}  
    
/* ========== #CALL TO ACTION 4 ========== */
.elements-4 .btn-callout {
  float: none;
  margin-top: 15px;
  padding: 6px 20px;
    font-size: 14px;
}
  
/* ========== #COUNTERS ========== */
.inner-counter{
    margin: 30px 0px 30px 0px;
}
    
    
.customer-logo{
    margin: auto;
    padding: 5px;
}
    
.pricing-center{
    margin: 20px 0px 20px 0px;
}

.together-left{
    display: none;
}
    
/* ========== #SHOP BANNERS STYLES ========== */     
.shop-banners{
    margin: 20px 0px 20px 0px;
}
    
.shop-banners-2{
    margin: 20px 0px 20px 0px;
}
    
    
/* ========== #TIMELINE ========== */      
.timeline-box:before {
    left: 8px;
    width: 2px;
}
    
.timeline-block {
    width: 100%;
    margin-bottom: 30px;
}

.timeline-block-right {
    float: none;
}

.timeline-block-left {
    float: none;
    direction: ltr;
}
    
/* ========== #TESTIMONIALS STYLE 2 ========== */
.testimonials-box{
    background: #f0f0f0;
    padding: 30px;
}
    

/* ========== #TABS ========== */
.nav-tabs > li {
  float: left;
  margin-bottom: -1px;
  width: 25%;
  height: 90px;
}

.nav-tabs > li > a {
  font-size: 14px;  
  padding: 15px 0px 15px 0px;
  height: 90px;
} 
    
.nav-tabs > li > a:hover {
    height: 90px;
    padding: 15px 0px 15px 0px;
}

.nav-tabs > li.active > a,
.nav-tabs > li.active > a:hover,
.nav-tabs > li.active > a:focus {
    height: 90px;
    padding: 15px 0px 15px 0px;
}
     
.tab-icon, .tab-icon-2, .tab-icon-3, .tab-icon-4{
    width: 30px;
    height: 30px; 
}


    
}



@media (max-width:576px) {
 
/* ========== #CONTENT BOX 2 ========== */
.content-box-info-2 .icon{
    line-height: 60px;
    width: 60px;
    height: 60px;
    margin-right: 10px;
}
    
.content-box-info-2 .icon .fa{
    font-size: 40px;
}

/* ========== #CONTENT BOX 3 ========== */
.content-box-info-3 .icon{
    line-height: 60px;
    width: 60px;
    height: 60px;
    margin-right: 10px;
}
    
.content-box-info-3 .icon .fa{
    font-size: 30px;
}
    
/* ========== #GRID BOXES ========== */
.left-grid, .right-grid{
    background: #fff;
    border-right: solid 1px #ddd;
    border-bottom: solid 1px #ddd;
    padding: 30px 20px 30px 20px;
    height: 100%;
}

.schedule-grid{
	color: #333;
	padding: 30px 20px 30px 20px;
    height: 100%;
}
    
 /* ========== #TABS ========== */   
.tab-image{
    width: 100%;
    float: none;
    margin-right: 0px;
    margin-bottom: 20px;
}
   
 /* ========== #TESTIMONIALS ========== */  
.testimonial-quote{
    margin: 15px;
}
    
    
/* ========== #WIDE SECTIONS ========== */ 
.wide-right{
    height: 100%; 
}
    
.rounded-icon{
    display:block;
    font-size: 25px;
    line-height: 60px;
    background: #FFF;
    color:white;
    width: 60px;
    height: 60px;
    text-align: center;
    vertical-align: bottom;
    border-radius: 50px;
    float: none;
    margin: auto;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.12),
                0 2px 4px 0 rgba(0,0,0,0.08);
}

.rounded-icon .fa{
    color: #000;
    font-size: 25px;
    
}
    
.icon-rounded-info h5{
    font-weight: 600;
    text-align: center;
    margin: 10px 0px 10px 0px;
}

.icon-rounded-info p{
    color: #999;
    text-align: center;
}
    
.inner-box-right{
    position: relative;
    margin: auto;
    width: 100%;
    height: 100%;
    border-radius: 3px;
    padding: 40px;
}
    
.inner-item-boxes{
    margin: 20px 0px 20px 0px;
}
    
/* ========== #WIDE SECTION 2 ========== */
.wide-right-2 .inner-box-right{
    padding: 30px;
}  
    
/* ========== #WIDE SECTION 3 ========== */
.center-content{
    padding: 30px;
}


 /* ========== #RECENT POSTS ========== */   
.spa-news-box .media .media-left .media-object{
    width: 150px;
}
    
p.post-details{
    font-size: 12px;
    margin-bottom: 4px;
}
    
.media-body p{
    font-size: 13px;
}
    
.spa-news-big .media-body{
    max-width: 95%;
    color: #FFF;
}
    
.education-news{
    margin-bottom: 20px;
}
    
/* ========== #TABS ========== */    
.nav-tabs > li {
  float: left;
  margin-bottom: -1px;
  width: 25%;
  height: 70px;
}

.nav-tabs > li > a {
  font-size: 11px;  
  padding: 15px 0px 15px 0px;
  height: 70px;
} 
    
.nav-tabs > li > a:hover {
    height: 70px;
    padding: 15px 0px 15px 0px;
}

.nav-tabs > li.active > a,
.nav-tabs > li.active > a:hover,
.nav-tabs > li.active > a:focus {
    height: 70px;
    padding: 15px 0px 15px 0px;
}
     
.tab-icon, .tab-icon-2, .tab-icon-3, .tab-icon-4{
    width: 25px;
    height: 25px; 
}

    
}

@media (max-width:450px) {
    
.spa-news-box .media .media-left .media-object{
    width: 100%;
    margin-bottom: 10px;
}

.media-left,
.media-right,
.media-body {
 /* display:block;*/
  vertical-align: top;
}
    
.media-left,
.media > .pull-left {
  padding-right: 0px;
}
.spa-news-box{
    height: 100%;
    margin-bottom: 20px;
}
    
}

/* CORE STYLES */
body{
	margin: 0;
	font-family: 'Open Sans', sans-serif;
	background: transparent;
	transition: background .3s, padding .3s;
}

/* ========== TOP HEADER. ========== */

.top-nav{
	height: 30px;
}

.top-nav .section{
	padding: 15px;
	height: 55px;
}

.left-nav{
	float: left;
	color: #FFF;
}

.right-nav{
	float: right;
	color: #FFF;
}

.location-top{
	display: inline-block;
	margin-right: 0px;
}

.location-top p{
	font-size: 14px;
}

.social-top{
	display: inline-block;
	margin-right: 10px;
}

.social-top .fa{
	font-size: 16px;
	color: #FFF;
    transition: 0.3s;
}

.social-top .fa:hover{
	color: #00a0e3;
}

.last-icon{
	margin: 0px;
}

/* ========== NAVBAR. ========== */

.navigation {
  width: 100%;
  height: 70px;
  display: table;
  position: relative;
  font-family: inherit;
  background-color: transparent;
}

.navigation * {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

.navigation-portrait {
  height: 60px;
}

.navigation-fixed-wrapper {
  width: 100%;
  left: 0;
  z-index: 19998;
  will-change: opacity;
}

.navigation-fixed-wrapper.fixed {
  position: fixed !important;
  -webkit-animation: fade .50s;
  animation: fade .50s;
}

@keyframes fade {
  from {
    opacity: 0.999;
  }
  to {
    opacity: 1;
  }
}

.navigation-fixed-wrapper .navigation {
  margin-right: auto;
  margin-left: auto;
}

.navigation-fixed-placeholder {
  width: 100%;
  display: none;
}

.navigation-fixed-placeholder.navigation-fixed-placeholder.visible {
  display: block;
}

.navigation-hidden {
  width: 0 !important;
  height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  position: absolute;
  top: -9999px;
}

.align-to-right {
  float: right;
}

.nav-header {
/*  float: left;*/
}

.navigation-hidden .nav-header {
  display: none;
}

.nav-brand {
  line-height: 70px;
  padding: 0 15px;
  color: #70798b;
  font-size: 24px;
  text-decoration: none !important;
}

.nav-brand:hover, .nav-brand:focus {
  color: #70798b;
}

.navigation-portrait .nav-brand {
  font-size: 18px;
  line-height: 48px;
}

.nav-logo > img {
    height: 86px;
    margin: 2px auto;
  padding: 0 15px;
  float: left;
}

.nav-logo:focus > img {
  outline: initial;
}

.navigation-portrait .nav-logo > img {
    height: 55px;
    margin: 2px auto 2px 15px;
    padding: 0;
}

.nav-toggle {
  width: 30px;
  height: 30px;
  padding: 6px 2px 0;
  position: absolute;
  top: 50%;
  margin-top: -14px;
  right: 15px;
  display: none;
  cursor: pointer;
}

.nav-toggle:before {
  content: "";
  position: absolute;
  width: 24px;
  height: 2px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 0.5em 0 0 #fff, 0 1em 0 0 #fff;
} 

.navigation-portrait .nav-toggle {
  display: block;
}

.navigation-portrait .nav-menus-wrapper {
  width: 320px;
  height: 100%;
  top: 0;
  left: -400px;
  position: fixed;
  background-color: #104b8f;
  z-index: 20000;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  -webkit-transition-duration: .8s;
  transition-duration: .8s;
  -webkit-transition-timing-function: ease;
  transition-timing-function: ease;
}

.navigation-portrait .nav-menus-wrapper.nav-menus-wrapper-right {
  left: auto;
  right: -400px;
}

.navigation-portrait .nav-menus-wrapper.nav-menus-wrapper-open {
  left: 0;
}

.navigation-portrait .nav-menus-wrapper.nav-menus-wrapper-right.nav-menus-wrapper-open {
  left: auto;
  right: 0;
}

.nav-menus-wrapper-close-button {
  width: 30px;
  height: 40px;
  margin: 10px 7px;
  display: none;
  float: right;
  color: #70798b;
  font-size: 26px;
  cursor: pointer;
}

.navigation-portrait .nav-menus-wrapper-close-button {
  display: block;
}

.nav-menu {
  margin: 0;
  padding: 0;
  list-style: none;
  line-height: normal;
  font-size: 0;
}

.navigation-portrait .nav-menu {
  width: 100%;
}

.nav-menu.nav-menu-centered {
  text-align: center;
}

.nav-menu.nav-menu-centered > li {
  float: none;
}

.nav-menu > li {
  display: inline-block;
  float: left;
  text-align: left;
}

.navigation-portrait .nav-menu > li {
  width: 100%;
  position: relative;
  border-top: solid 1px #f0f0f0;
}

.navigation-portrait .nav-menu > li:last-child {
  border-bottom: solid 1px #f0f0f0;
}

.nav-menu + .nav-menu > li:first-child {
  border-top: none;
}

.nav-menu > li > a {
    height: 59px;
    padding: 20px 0px 10px 15px;
  display: inline-block;
  position: relative;
  text-decoration: none;
  font-size: 14px;
  color: #FFF;
  -webkit-transition: color 0.3s, background 0.3s;
  transition: color 0.3s, background 0.3s;
}

.navigation-portrait .nav-menu > li > a {
  width: 100%;
  height: auto;
  padding: 12px 15px 12px 26px;
}

.nav-menu > li:hover > a,
.nav-menu > li.active > a,
.nav-menu > li.focus > a {
  color: #fff;
}

.nav-menu > li > a > i,
.nav-menu > li > a > [class*="ion-"] {
  width: 18px;
  height: 16px;
  line-height: 16px;
  -webkit-transform: scale(1.4);
  -ms-transform: scale(1.4);
  transform: scale(1.4);
}

.nav-menu > li > a > [class*="ion-"] {
  width: 16px;
  display: inline-block;
  -webkit-transform: scale(1.8);
  -ms-transform: scale(1.8);
  transform: scale(1.8);
}

.navigation-portrait .nav-menu.nav-menu-social {
  width: 100%;
  text-align: center;
}

.nav-menu.nav-menu-social > li {
  text-align: center;
  float: none;
  border: none !important;
}

.navigation-portrait .nav-menu.nav-menu-social > li {
  width: auto;
}

.nav-menu.nav-menu-social > li > a > [class*="ion-"] {
  font-size: 12px;
}

.nav-menu.nav-menu-social > li > a > .fa {
  font-size: 14px;
}

.navigation-portrait .nav-menu.nav-menu-social > li > a {
  padding: 15px;
}

.submenu-indicator {
  margin-left: 6px;
  margin-top: 6px;
  float: right;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.navigation-portrait .submenu-indicator {
  width: 54px;
  height: 44px;
  margin-top: 0;
  position: absolute;
  top: 0;
  right: 0;
  text-align: center;
  z-index: 20000;
}

.submenu-indicator-chevron {
  height: 6px;
  width: 6px;
  display: block;
  border-style: solid;
  border-width: 0 1px 1px 0;
  border-color: transparent #fff #fff transparent;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: border 0.3s;
  transition: border 0.3s;
}

.nav-dropdown .submenu-indicator-chevron{
  border-color: transparent #808080 #808080 transparent;
}


.navigation-portrait .submenu-indicator-chevron {
  position: absolute;
  top: 18px;
  left: 24px;
}

.nav-menu > li:hover > a .submenu-indicator-chevron,
.nav-menu > .active > a .submenu-indicator-chevron,
.nav-menu > .focus > a .submenu-indicator-chevron {
  border-color: transparent #fff #fff transparent;
}

.navigation-portrait .submenu-indicator.submenu-indicator-up {
  -webkit-transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
  transform: rotate(-180deg);
} 

.nav-overlay-panel {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: fixed;
  display: none;
  z-index: 19999;
}

.no-scroll {
  touch-action: none;
  overflow-x: hidden;
}

/* SEARCH PANEL */
.nav-search {
  height: 70px;
  float: right;
  z-index: 19998;
}

.navigation-portrait .nav-search {
  height: 48px;
  padding: 0 10px;
  margin-right: 52px;
}

.navigation-hidden .nav-search {
  display: none;
}

.nav-search-button {
  width: 70px;
  height: 70px;
  line-height: 70px;
  text-align: center;
  cursor: pointer;
  background-color: #fbfcfd;
}

.navigation-portrait .nav-search-button {
  width: 50px;
  height: 48px;
  line-height: 46px;
  font-size: 22px;
}

.nav-search-icon {
  width: 14px;
  height: 14px;
  margin: 2px 8px 8px 4px;
  display: inline-block;
  vertical-align: middle;
  position: relative;
  color: #70798b;
  text-align: left;
  text-indent: -9999px;
  border: 2px solid;
  border-radius: 50%;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

.nav-search-icon:after, .nav-search-icon:before {
  content: '';
  pointer-events: none;
}

.nav-search-icon:before {
  width: 2px;
  height: 11px;
  top: 11px;
  position: absolute;
  left: 50%;
  border-radius: 0 0 1px 1px;
  box-shadow: inset 0 0 0 32px;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

.nav-search-button:hover .nav-search-icon {
  color: #967ADC;
}

.nav-search > form {
  width: 100%;
  height: 100%;
  padding: 0 auto;
  display: none;
  position: absolute;
  left: 0;
  top: 0;
  background-color: #ffffff;
  z-index: 99;
}

.nav-search-inner {
  width: 70%;
  height: 70px;
  margin: auto;
  display: table;
}

.navigation-portrait .nav-search-inner {
  height: 48px;
}

.nav-search-inner input[type=text],
.nav-search-inner input[type=search] {
  height: 70px;
  width: 100%;
  margin: 0;
  padding: 0 12px;
  font-size: 26px;
  text-align: center;
  color: #70798b;
  outline: none;
  line-height: 70px;
  border: none;
  background-color: transparent;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.navigation-portrait .nav-search-inner input[type=text],
.navigation-portrait .nav-search-inner input[type=search] {
  height: 48px;
  font-size: 18px;
  line-height: 48px;
}

.nav-search-close-button {
  width: 28px;
  height: 28px;
  display: block;
  position: absolute;
  right: 20px;
  top: 20px;
  line-height: normal;
  color: #70798b;
  font-size: 20px;
  cursor: pointer;
  text-align: center;
}

.navigation-portrait .nav-search-close-button {
  top: 10px;
  right: 14px;
}

/* NAVIGATION BUTTON */
.nav-button {
  margin: 18px 15px 0;
  padding: 8px 14px;
  display: inline-block;
  color: #fff;
  font-size: 14px;
  text-align: center;
  text-decoration: none;
  border-radius: 4px;
  background-color: #967ADC;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.nav-button:hover, .nav-button:focus {
  color: #fff;
  text-decoration: none;
  opacity: 0.85;
}

.navigation-portrait .nav-button {
  width: calc(100% - 52px);
  margin: 17px 26px;
}

/* NAVIGATION TEXT */
.nav-text {
  margin: 25px 15px;
  display: inline-block;
  color: #70798b;
  font-size: 14px;
}

.navigation-portrait .nav-text {
  width: calc(100% - 52px);
  margin: 12px 26px 0;
}

.navigation-portrait .nav-text + ul {
  margin-top: 15px;
}

/* DROPDOWN EXTENSION */
.nav-dropdown {
  min-width: 180px;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  list-style: none;
  z-index: 98;
  white-space: nowrap;
  webkit-box-shadow: 2px 0px 10px -2px #454545;
      box-shadow: 2px 0px 10px -2px #454545;
}

.navigation-portrait .nav-dropdown {
  width: 100%;
  position: static;
  left: 0;
}

.nav-dropdown .nav-dropdown {
  right: 100%;
}

.nav-dropdown .nav-dropdown .nav-dropdown {
  left: 100%;
}

.nav-menu > li > .nav-dropdown {
  border-top: solid 1px #f0f0f0;
}

.nav-dropdown > li {
  width: 100%;
  float: left;
  clear: both;
  position: relative;
  text-align: left;
}

.nav-dropdown > li > a {
  width: 100%;
  padding: 16px 20px;
  display: inline-block;
  text-decoration: none;
  float: left;
  font-size: 13px;
  color: #70798b;
  background-color: #fdfdfd;
  -webkit-transition: color 0.3s, background 0.3s;
  transition: color 0.3s, background 0.3s;

}

.nav-dropdown > li:hover > a,
.nav-dropdown > li.focus > a {
  color: #00a0e3;
}

.nav-dropdown.nav-dropdown-left {
  right: 0;
}

.nav-dropdown > li > .nav-dropdown-left {
  left: auto;
  right: 100%;
}

.navigation-landscape .nav-dropdown.nav-dropdown-left > li > a {
  text-align: right;
}

.navigation-portrait .nav-dropdown > li > a {
  padding: 12px 20px 12px 30px;
}

.navigation-portrait .nav-dropdown > li > ul > li > a {
  padding-left: 50px;
}

.navigation-portrait .nav-dropdown > li > ul > li > ul > li > a {
  padding-left: 70px;
}

.navigation-portrait .nav-dropdown > li > ul > li > ul > li > ul > li > a {
  padding-left: 90px;
}

.navigation-portrait .nav-dropdown > li > ul > li > ul > li > ul > li > ul > li > a {
  padding-left: 110px;
}

.nav-dropdown .submenu-indicator {
  right: 15px;
  top: 16px;
  position: absolute;
}

.navigation-portrait .nav-dropdown .submenu-indicator {
  right: 0;
  top: 0;
}

.nav-dropdown .submenu-indicator .submenu-indicator-chevron {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.navigation-portrait .nav-dropdown .submenu-indicator .submenu-indicator-chevron {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.nav-dropdown > li:hover > a .submenu-indicator-chevron,
.nav-dropdown > .focus > a .submenu-indicator-chevron {
  border-color: transparent #00a0e3 #00a0e3 transparent;
}

.navigation-landscape .nav-dropdown.nav-dropdown-left .submenu-indicator {
  left: 10px;
}

.navigation-landscape .nav-dropdown.nav-dropdown-left .submenu-indicator .submenu-indicator-chevron {
  -webkit-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  transform: rotate(135deg);
}

/* HORIZONTAL DROPDOWN EXTENSION */
.nav-dropdown-horizontal {
  width: 100%;
  left: 0;
  background-color: #fdfdfd;
  border-top: solid 1px #f0f0f0;
}

.nav-dropdown-horizontal .nav-dropdown-horizontal {
  width: 100%;
  top: 100%;
  left: 0;
}

.navigation-portrait .nav-dropdown-horizontal .nav-dropdown-horizontal {
  border-top: none;
}

.nav-dropdown-horizontal > li {
  width: auto;
  clear: none;
  position: static;
}

.navigation-portrait .nav-dropdown-horizontal > li {
  width: 100%;
}

.nav-dropdown-horizontal > li > a {
  position: relative;
}

.nav-dropdown-horizontal .submenu-indicator {
  height: 18px;
  top: 11px;
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

.navigation-portrait .nav-dropdown-horizontal .submenu-indicator {
  height: 42px;
  top: 0;
  -webkit-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg);
}

.navigation-portrait .nav-dropdown-horizontal .submenu-indicator.submenu-indicator-up {
  -webkit-transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
  transform: rotate(-180deg);
}

/* MEGAMENU EXTENSION */
.megamenu-panel {
  width: 100%;
  padding: 15px;
  display: none;
  position: absolute;
  font-size: 14px;
  z-index: 98;
  text-align: left;
  color: inherit;
  border-top: solid 1px #f0f0f0;
  background-color: #fdfdfd;
}

.navigation-portrait .megamenu-panel {
  padding: 25px;
  position: static;
  display: block;
}

.megamenu-panel [class*="container"] {
  width: 100%;
}

.megamenu-panel [class*="container"] [class*="col-"] {
  padding: 0;
}

.megamenu-panel-half {
  width: 50%;
}

.megamenu-panel-quarter {
  width: 25%;
}

.navigation-portrait .megamenu-panel-half,
.navigation-portrait .megamenu-panel-quarter {
  width: 100%;
}

/* GRID */
.megamenu-panel-row {
  width: 100%;
}

.megamenu-panel-row:before, .megamenu-panel-row:after {
  display: table;
  content: "";
  line-height: 0;
}

.megamenu-panel-row:after {
  clear: both;
}

.megamenu-panel-row [class*="col-"] {
  display: block;
  min-height: 20px;
  float: left;
  margin-left: 3%;
}

.megamenu-panel-row [class*="col-"]:first-child {
  margin-left: 0;
}

.navigation-portrait .megamenu-panel-row [class*="col-"] {
  float: none;
  display: block;
  width: 100% !important;
  margin-left: 0;
  margin-top: 15px;
}

.navigation-portrait .megamenu-panel-row:first-child [class*="col-"]:first-child {
  margin-top: 0;
}

.megamenu-panel-row .col-1 {
  width: 5.583333333333%;
}

.megamenu-panel-row .col-2 {
  width: 14.166666666666%;
}

.megamenu-panel-row .col-3 {
  width: 22.75%;
}

.megamenu-panel-row .col-4 {
  width: 31.333333333333%;
}

.megamenu-panel-row .col-5 {
  width: 39.916666666667%;
}

.megamenu-panel-row .col-6 {
  width: 48.5%;
}

.megamenu-panel-row .col-7 {
  width: 57.083333333333%;
}

.megamenu-panel-row .col-8 {
  width: 65.666666666667%;
}

.megamenu-panel-row .col-9 {
  width: 74.25%;
}

.megamenu-panel-row .col-10 {
  width: 82.833333333334%;
}

.megamenu-panel-row .col-11 {
  width: 91.416666666667%;
}

.megamenu-panel-row .col-12 {
  width: 100%;
}

/* MEGAMENU TABS */
.megamenu-tabs {
  width: 100%;
  float: left;
  display: block;
}

.megamenu-tabs-nav {
  width: 20%;
  margin: 0;
  padding: 0;
  float: left;
  list-style: none;
}

.navigation-portrait .megamenu-tabs-nav {
  width: 100%;
}

.megamenu-tabs-nav > li > a {
  width: 100%;
  padding: 10px 16px;
  float: left;
  font-size: 13px;
  text-decoration: none;
  color: #70798b;
  border: solid 1px #eff0f2;
  outline: 0;
  background-color: #ffffff;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
}

.megamenu-tabs-nav > li.active a,
.megamenu-tabs-nav > li:hover a {
  background-color: #f5f5f5;
}

.megamenu-tabs-pane {
  width: 80%;
  min-height: 30px;
  padding: 20px;
  float: right;
  display: none;
  opacity: 0;
  font-size: 13px;
  color: #70798b;
  border: solid 1px #eff0f2;
  background-color: #ffffff;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
}

.megamenu-tabs-pane.active {
  display: block;
  opacity: 1;
}

.navigation-portrait .megamenu-tabs-pane {
  width: 100%;
}

/* MEGAMENU LIST */
.megamenu-lists {
  width: 100%;
  display: table;
}

/* The list */
.megamenu-list {
  width: 100%;
  margin: 0 0 15px;
  padding: 0;
  display: inline-block;
  float: left;
  list-style: none;
}

.megamenu-list:last-child {
  margin: 0;
  border: none;
}

.navigation-landscape .megamenu-list {
  margin: -15px 0;
  padding: 20px 0;
  border-right: solid 1px #f0f0f0;
}

.navigation-landscape .megamenu-list:last-child {
  border: none;
}

.megamenu-list > li > a {
  width: 100%;
  padding: 10px 15px;
  display: inline-block;
  color: #70798b;
  text-decoration: none;
  font-size: 13px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.megamenu-list > li > a:hover {
  color: #ffffff;
  background-color: #00a0e3;
}

.megamenu-list > li.megamenu-list-title > a {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  opacity: 0.8;
  color: #70798b;
}

.megamenu-list > li.megamenu-list-title > a:hover {
  opacity: 1;
  background-color: transparent;
}

.navigation-landscape .list-col-2 {
  width: 50%;
}

.navigation-landscape .list-col-3 {
  width: 33%;
}

.navigation-landscape .list-col-4 {
  width: 25%;
}

@media screen and (max-width: 767px){
body{
	padding: 0;
}
	
.navigation {
  width: 100%;
  background-color: #104b8f;
}

.top-nav{
	display: none;
}
	
.nav-menu > li > a {
  font-size: 14px;
  color: #fff;
}
    
.submenu-indicator-chevron {
  border-color: transparent #808080 #808080 transparent;
}
	
}

@media screen and (max-width: 900px){


.top-nav{
	display: none;
}
	

    

	
}

.nav-menus-wrapper{
    overflow-x: hidden;
    border-top: 1px solid #fff;
}

.btn-show{
	padding: 10px 20px;
	color: #fff;
	cursor: pointer;
	border: none;
	background-color: #9fa7b0;
	transition: background .3s;
}
.btn-show:hover{
	background-color: #967ADC;
}

.info{
	padding-left: 15px;
	color: #333;
	font-size: 13px;
	text-align: center;
}
.info span{
	text-decoration: underline;
}

.zoom-in{
    -webkit-animation: zoomIn 400ms ease both;
    -moz-animation: zoomIn 400ms ease both;
    -o-animation: zoomIn 400ms ease both;
    animation: zoomIn 400ms ease both;
}
@-webkit-keyframes zoomIn {
    0% { -webkit-transform: scale(.6); }
    100% { -webkit-transform: scale(1); }
}
@keyframes zoomIn {
    0% { transform: scale(.6); }
    100% { transform: scale(1); }
}
.zoom-out{
    -webkit-animation: zoomOut 400ms ease both;
    -moz-animation: zoomOut 400ms ease both;
    -o-animation: zoomOut 400ms ease both;
    animation: zoomOut 400ms ease both;
}
@-webkit-keyframes zoomOut {
    0% { -webkit-transform: scale(1); }
    100% { -webkit-transform: scale(.6); }
}
@keyframes zoomOut {
    0% { transform: scale(1); }
    100% { transform: scale(.6); }
}



label.tree-toggle.nav-header {
    position: relative;
    display: block;
    padding: 10px 15px;
    color: black;
    font-size: 14px;
}

.nav>li>a {
	    font-size: 14px;
}
/* ==========================================================================
    #ABOUT US
============================================================================= */
/* ========== #ABOUT US 1 ========== */
.about-content h3{
    font-weight: 600;
    color: #333;
}

.about-content h6{
    font-style: italic;
}

.about-content p{
    margin: 10px 0px 10px 0px;
    color: #808080;
    font-size: 15px;
    line-height: 1.7;
}

.about-signature{
    float: right;
    width: 200px;
    margin-right: 20px;
}

.about-signature img{
    width: 100%;
}

.icon-boxes-shadow{
    width: 100%;
    height: 150px;
    background: #FFF;
    padding: 35px 15px 40px 15px;
    position:relative;
    -webkit-box-shadow:0 1px 4px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.1) inset;
       -moz-box-shadow:0 1px 4px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.1) inset;
            box-shadow:0 1px 4px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.1) inset;
}

.icon-boxes-shadow:before, .icon-boxes-shadow:after
{
    content:"";
    position:absolute;
    z-index:-1;
    -webkit-box-shadow:0 0 20px rgba(0,0,0,0.8);
    -moz-box-shadow:0 0 20px rgba(0,0,0,0.8);
    box-shadow:0 0 20px rgba(0,0,0,0.8);
    top:0;
    bottom:0;
    left:10px;
    right:10px;
    -moz-border-radius:100px / 10px;
    border-radius:100px / 10px;
}
.icon-boxes-shadow:after
{
    right:10px;
    left:auto;
    -webkit-transform:skew(8deg) rotate(3deg);
       -moz-transform:skew(8deg) rotate(3deg);
        -ms-transform:skew(8deg) rotate(3deg);
         -o-transform:skew(8deg) rotate(3deg);
            transform:skew(8deg) rotate(3deg);
}

.icon-boxes-shadow .fa{
    font-size: 40px;
    color: #808080;
    margin-bottom: 10px;
}

.icon-boxes-shadow p{
    text-align: center;
    color: #333;
}

.icon-boxes-shadow h3{
    text-align: center;
    color: #333;
    font-size: 20px;
    margin-bottom: 10px;
}

.counter-background{
    background: #00a0e3;
    padding: 40px 0px 40px 0px;
    margin: 60px 0px 60px 0px;
}

.inner-counter{
    background: transparent;
}

.counter-icon{
    width: 40px;
    margin: auto;
}

.counter-icon img{
    width: 100%;
}

.counter{
    text-align: center;
    font-size: 30px;
    color: #FFF;
}

.counter-statistics h5{
    text-align: center;
    font-size: 16px;
    color: #FFF;
}


/* ========== #ABOUT US 2 ========== */
.about-image img{
    width: 100%;
    box-shadow: 0 15px 30px 0 rgba(0,0,0,0.11),
                0 5px 15px 0 rgba(0,0,0,0.08);
}

.rounded-image-3 img{
    border-radius: 10px;
}

.bullet-list{
    margin: 15px 0px 20px 0px;
}

.bullet-list p{
    margin: 0px;
}

.bullet-list .fa{
    color: #00a0e3;
    font-size: 16px;
}

.about-signature-2{
    width: 200px;
}

.about-signature-2 img{
    width: 100%;
}

/* ========== #ABOUT US 3 ========== */

.box-corner-shadow .fa{
    color: #00a0e3;
}


/* ========== #ABOUT US 4 ========== */
.about-content-2 h6{
    font-style: italic;
    margin-bottom: 10px;
    color: #00a0e3;
}

.about-content-2 h2{
    margin-bottom: 10px;
    color: #333;
    font-weight: 600; 
    text-align: left;
}

.about-image-3 img{
    width: 100%;
    box-shadow: 0 15px 30px 0 rgba(0,0,0,0.11),
                0 5px 15px 0 rgba(0,0,0,0.08);
}

.span-about{
    margin-top: 20px;
}

.inner-about{
    display: inline-block;
    margin: 0px 20px 18px 0px;
    width: 250px;
    float: left;
}

.about-icon{
    margin-bottom: 10px;
    width: 40px;
}

.about-icon img{
    width: 100%;
}

.inner-about h6{
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    color: #333;
}

.inner-about p{
    font-size: 13px;
    color: #666;
    line-height: 1.5;
}

/* ==========================================================================
    #CAREERS
============================================================================= */
/* ========== #CAREERS 1 ========== */
.career-icon{
    float: left;
    margin-right: 20px;
    height: 80px;
    width: 60px;
}

.career-icon img{
    width: 100%
}

.iconography{
    height: 80px;
}

.career-title{
    text-align: left;
}

.career-title h2{
    text-align: left;
    font-stretch:ultra-expanded;
    line-height: 1.2;
}

.career-title h1{
    text-align: left;
    font-weight: 600;
    margin-top: -5px;
}

.span-careers h2{
    text-align: left;
}

.span-careers p{
    margin: 10px 0px 10px 0px;
    color: #999;
}

.parallax-bg{
    background-image: url("../img/images/img48.jpg");
    height: 100%; 
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.benefits-box{
    padding: 80px 0px 80px 0px;
}

.span-benefits{
    text-align: center;
    color: #FFF;
    padding: 30px 0px 30px 0px;
    transition: 0.3s;
}

.span-benefits:hover{
    border-radius: 5px;
    background: rgba(255, 64, 76, 0.5);
    box-shadow: 0 15px 30px 0 rgba(0,0,0,0.11),
                0 5px 15px 0 rgba(0,0,0,0.08);
}

.span-benefits h5{
    margin: 10px 0px 5px 10px;
    text-align: center;
    font-weight: 600;
}

.span-benefits p{
    line-height: 1.7;
    font-size: 15px;
}

.span-benefits h6{
    font-size: 16px;
    margin-top: 10px;
    color: #f0f0f0;
}

.benefit-icon a:link {
    text-decoration: none;
    color: #FFF;
}

.benefit-icon a:visited {
    text-decoration: none;
    color: #FFF;
}

.benefit-icon a:hover {
    text-decoration: none;
    color: #FFF;
}

.benefit-icon a:active {
    text-decoration: none;
    color: #FFF;
}

.benefit-icon{
    width: 55px;
    margin: auto;
}

.benefit-icon img{
    width: 100%;
}

.span-jobs{
    padding: 20px 0px 20px 0px;
}

.job-icon{
    margin-bottom: 10px;
    width: 50px;
}

.job-icon img{
    width: 100%;
}

.span-jobs h6{
    font-weight: 600;
}

.apply-link{
    margin-top: 10px;
}

.apply-link p{
    color: #00a0e3;
}

/* ========== #CAREERS 2 ========== */
.job-positions .panel-default > .panel-heading {
  color: #FFF;
  background-color: #00a0e3;
  border-radius: 0px;
}

.job-positions .panel-default {
  border-color: #FAFCFC;
  background: #FAFCFC;
}

.span-careers img{
    width: 100%;
}

.span-careers h1{
    margin: 20px 0px 20px 0px;
    font-weight: 600;
}

.job-positions{
    margin-top: 40px;
}

.job-positions .accordion{
    font-size: 18px;
}

.inner-accordion{
    padding: 30px 10px 30px 10px;
}

.inner-accordion h5{
    color: #333; 
    font-weight: 600;
}

.inner-accordion h6{
    color: #333; 
    margin: 20px 0px 20px 0px;
}

.inner-accordion li{
    padding: 2px 20px 2px 20px;
    font-size: 14px;
    color: #999;
}

.inner-accordion p{
    margin: 0px;
}

.inner-accordion .fa{
    font-size: 20px;
    color: #00a0e3;
}

.inner-accordion a:link {
    text-decoration: none;
    color: #666;
}

.inner-accordion a:visited {
    text-decoration: none;
    color: #666;
}

.inner-accordion a:hover {
    text-decoration: none;
    color: #666;
}

.inner-accordion a:active {
    text-decoration: none;
    color: #666;
}

.career-sidebar{
    background: #00a0e3;
    height: 100%;
    padding: 30px 20px 30px 20px;
    color: #FFF;
}

hr.careers{
    width: 100%;
    border-top: 1px solid #fff;
    margin: 10px auto 10px auto;
}

.map-sidebar{
    margin-top: 40px;
}

/* ========== #CAREERS 3 ========== */
.careers-box{
    box-shadow: 0 0 10px rgba(204,204,204,0.6);
    -moz-box-shadow: 0 0 10px rgba(204,204,204,0.6);
    -webkit-box-shadow: 0 0 10px rgba(204,204,204,0.6);
    -o-box-shadow: 0 0 10px rgba(204,204,204,0.6);
    padding: 40px;
}

.inner-careers{
    clear: both;
    height: 140px;
    padding: 30px 0px 30px 0px;
    border-bottom: solid 1px #f2f2f2;
}

.last-job{
    border-bottom: solid 1px transparent;
}

.inner-careers .job-icon-2{
    width: 70px;
    height: 70px;
    border: solid 2px #ddd;
    border-radius: 50%;
    line-height: 70px;
    position: relative;
    float: left;
    margin-right: 20px;
}

.job-icon-2 img{
  position: absolute;
  margin: auto;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 40px;
  border-radius: 3px;
}

.job-info{
    padding-top: 5px;
}

.job-info h5{
    font-weight: 600;
    color: #666;
}

.job-info p{
    color: #999;
}

.job-info .fa{
    color: #00a0e3;
}

color-text{
    color: #012C40;
}

.btn-apply{
    float: right;
    margin-top: -70px;
    clear: both;
}

.btn-careers {
  color: #FFF;
  background-color: #00a0e3;
  border-color: #00a0e3;
  transition: 0.3s;
  border-radius: 0px;
  border-radius: 5px;
}
.btn-careers:focus,
.btn-careers.focus {
  color: #FFF;
  background-color: #ff1a29;
  border-color: #ff1a29;
}
.btn-careers:hover {
  color: #FFF;
  background-color: #ff1a29;
  border-color: #ff1a29;
}
.btn-careers:active,
.btn-careers.active,
.open > .dropdown-toggle.btn-default {
  color: #FFF;
  background-color: #ff1a29;
  border-color: #ff1a29;
}

/* ==========================================================================
    #CONTACT
============================================================================= */

/* ========== #CONTACT 1 ========== */
.contact-left{
    margin-top: 70px;
}

.contact-left h1{
    margin-bottom: 20px;
    font-size: 40px;
    font-weight: 600;
    line-height: 1;
}

.contact-left h6{
    font-weight: 600;
    color: #00a0e3;
    font-size: 15px;
}

.contact-left p{
    color: #a6a6a6;
    font-size: 16px;
}

.contact-left .fa{
    color: #00a0e3;
}

.form-box{
    margin-top: 60px;
}

.customize{
    border: none;
    -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-transition: none;
       -o-transition: none;
          transition: none;
    border-radius: 0px;
    background: #FAFCFC;
    height: 60px;
    padding: 6px 12px;
    font-size: 14px;
	font-family: 'Open Sans', sans-serif;
	border: solid 1px #eff5f5;
    color: #000;
}

.customize:focus {
  border-color: #e0ebeb;
  outline: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.customize::-moz-placeholder {
  color: #333;
  opacity: 1;
}
.customize:-ms-input-placeholder {
  color: #333;
}
.customize::-webkit-input-placeholder {
  color: #333;
}

.customize::-ms-expand {
  background-color: none;
  border: 0;
}

.controls p{
    text-align: center;
}

.btn-contact {
  color: #FFF;
  background-color: #00a0e3;
  border-color: #00a0e3;
  transition: 0.3s;
  border-radius: 5px;
  margin-top: 20px;
}
.btn-contact:focus,
.btn-contact.focus {
  color: #FFF;
  background-color: #ff1a29;
  border-color: #ff1a29;
}
.btn-contact:hover {
  color: #FFF;
  background-color: #ff1a29;
  border-color: #ff1a29
}
.btn-contact:active,
.btn-contact.active,
.open > .dropdown-toggle.btn-contact {
  color: #FFF;
  background-color: #ff1a29;
  border-color: #ff1a29;
}



/* ========== #CONTACT 2 ========== */
.no-margin{
    margin-bottom: 0px;
}

.contact-left-2 hr.center{
    width: 80px;
    border-top: 3px solid #00a0e3;
    margin: 10px 0px 15px 0px;
}

.inner-contact{
    clear: both;
    height: 100%;
    padding: 30px 0px 30px 0px;
}

.inner-contact .contact-icon {
    width: 50px;
    height: 50px;
    border: solid 2px #00a0e3;
    border-radius: 50%;
    line-height: 50px;
    position: relative;
    float: left;
    margin-right: 20px;
}

.contact-icon img{
  position: absolute;
  margin: auto;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 25px;
  height: 25px;
  border-radius: 3px;
}

.span-left-contact{
    clear: both;
    height: 90px;
}

.contact-info h6{
    color: #333;
}

.contact-info p{
    color: #666;
}

.contact-left-2 p{
    text-align: left;
}

/* ========== #CONTACT 3 ========== */
.footer .no-margin-bottom{
    margin-top: 0px;
}

.contact-address{
    margin: 50px 0px 50px 0px;
}

.span-address{
    text-align: center;
    padding: 0px 40px 0px 40px;
}

.span-address .contact-icon {
    width: 80px;
    height: 80px;
    border: solid 2px #00a0e3;
    border-radius: 50%;
    line-height: 80px;
    position: relative;
    float: none;
    margin: auto auto 10px auto;
}

.span-address .contact-icon img{
  position: absolute;
  margin: auto;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 40px;
  border-radius: 3px;
}

.inner-contact-3{
    background: #FAFCFC;
    height: 100%;
    padding: 50px;
    border: solid 1px #eff5f5;
}

.span-schedule{
    clear: both;
    margin-top: 30px;
}

.span-schedule .list-group-item {
  position: relative;
  display: block;
  padding: 10px 0px;
  margin-bottom: -1px;
  background-color: transparent;
  border: none;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  color: #333;
  transition: 0.3s;
}

.span-schedule .list-group-item:hover {
  color: #cccccc;
  background: transparent;
}

.span-schedule .list-group-item:hover .badge .fa {
  color: #cccccc;
}

.span-schedule .list-group-item.active > .badge,
.span-schedule .nav-pills > .active > a > .badge {
  color: #333;
  background-color: #fff;
}

.span-schedule .badge {
  display: inline-block;
  min-width: 10px;
  padding: 3px 7px;
  font-size: 14px;
  font-weight: normal;
  line-height: 1;
  color: #333;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  background-color: transparent;
  border-radius: 0px;
}

.span-schedule .list-group-item .fa{
    font-size: 16px;
}

.divider-schedule{
    border-top: 1px solid #e6e6e6;
    border-top: 1px solid #e6e6e6;
    margin: 3px auto 3px auto;
}

.shedule-box{
	border: solid 3px #3FB6E0;
	padding: 40px 20px 30px 20px;
}

.inner-time-info .clock{
	float: left;
	margin-right: 20px;
}

/* ========== #CONTACT 4 ========== */
.contact-left-4 h1{
    margin-bottom: 15px;
}

.contact-left-4 p{
    color: #4d4d4d;
    font-size: 16px;
}

.contact-info-4 strong{
    font-weight: 600;
    color: #666;
}

.contact-info-4 p{
    color: #999;
}

.contact-right-4 p{
    text-align: left;
}

/* ========== #CONTACT 5 ========== */
.contact-right-5{
    background: #00a0e3;
    height: 100%;
    padding: 40px 20px 40px 20px;
    color: #FFF;
}

.contact-right-5 h2{
    margin-bottom: 10px;
}

.contact-right-5 h6{
    margin: 20px 0px 10px 0px;
}

.contact-right-5 p{
    line-height: 1.6;
}

/* ========== #Event 5 ========== */
.event-right{
    background: #00a0e3;
    height: 100%;
    padding: 1px 10px 40px 10px;
    color: #FFF;
    margin: 10px 0;
}

.event-right .gorsel img{
	float: left;
	margin:0 10px 10px 0;
}
.event-right > .inner-sidebar-contact > p.tarih{
	font-size: 10px;
    font-style: italic;
}
.event-right > .inner-sidebar-contact > p.baslik{
    font-weight: bold;
    font-size: 12px;
}

.event-right h2{
    margin-bottom: 10px;
}

.event-right h6{
    margin: 20px 0px 10px 0px;
}

.event-right p{
    line-height: 1.6;
}

/* ========== #News 5 ========== */
.news-right{
    background: #104b8f;
    height: 100%;
    padding: 1px 10px 40px 10px;
    color: #FFF;
    margin: 10px 0;
}

.news-right .gorsel img{
	float: left;
	margin:0 10px 10px 0;
}
.news-right > .inner-sidebar-contact > p.tarih{
	font-size: 10px;
    font-style: italic;
}
.news-right > .inner-sidebar-contact > p.baslik{
    font-weight: bold;
    font-size: 12px;
}

.news-right h2{
    margin-bottom: 10px;
}

.news-right h6{
    margin: 20px 0px 10px 0px;
}

.news-right p{
    line-height: 1.6;
}

/* ========== #Menu 5 ========== */
.menu-right{
    background: #4d5158;
    height: 100%;
    padding: 1px 10px 40px 10px;
    color: #ffffff;
    margin: 10px 0;
}


.menu-right h2{
    margin-bottom: 10px;
}

.menu-right h6{
    margin: 20px 0px 10px 0px;
}



/* ========== #Announcement 5 ========== */
.announcement-right{
    background: #00a4e6;
    height: 100%;
    padding: 1px 10px 40px 10px;
    color: #FFF;
    margin: 10px 0;
}

.announcement-right .gorsel img{
	float: left;
	margin:0 10px 10px 0;
}
.announcement-right > .inner-sidebar-contact > p.tarih{
	font-size: 10px;
    font-style: italic;
}
.announcement-right > .inner-sidebar-contact > p.baslik{
    font-weight: bold;
    font-size: 12px;
}

.announcement-right h2{
    margin-bottom: 10px;
}

.announcement-right h6{
    margin: 20px 0px 10px 0px;
}

.announcement-right p{
    line-height: 1.6;
}

.map-box-2{
    margin-bottom: 40px;
}

hr.contact{
    width: 100%;
    border-top: 1px solid #fff;
    margin: 15px auto 15px auto;
}

.inner-sidebar-contact{
    clear: both;
    margin: 15px 0px 15px 0px;
}

.inner-sidebar-contact .contact-icon {
    width: 40px;
    height: 40px;
    border: solid 1px #fff;
    border-radius: 0%;
    line-height: 40px;
    position: relative;
    float: left;
    margin-right: 15px;
}

.inner-sidebar-contact .contact-icon img{
  position: absolute;
  margin: auto;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 25px;
  height: 25px;
  border-radius: 3px;
}

.map-container-bottom{
    background: #333;
}


/* ========== #CONTACT 6 ========== */
.contact-box{
    background: #F6F6F6;
    height: 200px;
    text-align: center;
    padding: 35px 10px 35px 10px;
    transition: 0.6s;
}

.contact-box:hover{
    background: #00a0e3;
    border-radius: 10px;
}

.contact-box-icon .fa{
    font-size: 40px;
    color: #00a0e3;
    transition: 0.3s;
}

.contact-box h3{
    margin-bottom: 5px;
    color: #333;
    transition: 0.3s;
}

.contact-box p{
    color: #999;
    transition: 0.3s;
}

.contact-box:hover .fa{
    color: #FFF;
}

.contact-box:hover h3{
    color: #FFF;
}

.contact-box:hover p{
    color: #FFF;
}

.inner-contact-6{
    background: #00a0e3;
    height: 100%;
    padding: 50px;
    border: solid 1px #eff5f5;
    color: #FFF;
}

.inner-contact-6 .span-address .contact-icon img{
  position: absolute;
  margin: auto;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 40px;
  border-radius: 3px;
}

.inner-contact-6 .span-schedule{
    clear: both;
    margin-top: 30px;
}

.inner-contact-6 .span-schedule .list-group-item {
  position: relative;
  display: block;
  padding: 10px 0px;
  margin-bottom: -1px;
  background-color: transparent;
  border: none;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  color: #fff;
  transition: 0.3s;
}

.inner-contact-6 .span-schedule .list-group-item:hover {
  color: #fff;
  background: transparent;
}

.inner-contact-6 .span-schedule .list-group-item:hover .badge .fa {
  color: #fff;
}

.inner-contact-6 .span-schedule .list-group-item.active > .badge,
.inner-contact-6 .span-schedule .nav-pills > .active > a > .badge {
  color: #fff;
  background-color: #fff;
}

.inner-contact-6 .span-schedule .badge {
  display: inline-block;
  min-width: 10px;
  padding: 3px 7px;
  font-size: 14px;
  font-weight: normal;
  line-height: 1;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  background-color: transparent;
  border-radius: 0px;
}

.inner-contact-6 .span-schedule .list-group-item .fa{
    font-size: 16px;
}

.inner-contact-6 .divider-schedule{
    border-top: 1px solid #fff;
    border-top: 1px solid #fff;
    margin: 3px auto 3px auto;
}

.inner-contact-6 .shedule-box{
	border: solid 3px #3FB6E0;
	padding: 40px 20px 30px 20px;
}

.inner-contact-6 .inner-time-info .clock{
	float: left;
	margin-right: 20px;
}

/* ==========================================================================
    #PROFILE
============================================================================= */
.profile-headshot img{
    width: 100%;
}

.profile-sidebar h5{
    text-align: left;
    font-weight: 600;
    color: #333;
    margin-top: 20px;
}

.profile-sidebar h6{
    text-align: left;
    font-size: 15px;
    margin-top: -5px;
}

.profile-sidebar p{
    text-align: left;
    font-size: 15px;
    margin-top: 15px;
    color: #666;
}

.profile-signature{
    width: 200px;
    margin-top: 15px;
}

.profile-content{
    border-left: solid 2px #ddd;
    height: 100%;
    padding: 20px 40px 20px 40px;
}

.inner-experience{
    padding: 20px 0px 20px 0px;
}

.inner-experience h6{
    color: #333;
    font-weight: 600;
}

.inner-experience p{
    color: #666;
}

hr.profile{
    width: 100;
    border-top: 2px solid #ddd;
    margin: 20px auto 20px auto;
}

.skills{
  margin: 15px 0px 20px 0px;  
}

.progress {
  height: 25px;
  margin-bottom: 15px;
  overflow: hidden;
  background-color: #e6e6e6;
  border-radius: 0px;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.progress-bar {
  float: left;
  width: 0;
  height: 100%;
  font-size: 14px;
  line-height: 25px;
  color: #fff;
  text-align: center;
  background-color: #00a0e3;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-transition: width .6s ease;
       -o-transition: width .6s ease;
          transition: width .6s ease;
    font-family: 'Roboto', sans-serif;
}

.skill-label p{
    font-weight: normal;
    line-height: 1;
    color: #666;
    margin-bottom: 10px;
}

.skills h5{
    text-align: left;
    margin-bottom: 20px;
}

.profile-portfolio {
  display: block;
  padding: 0px;
  line-height: 1.42857143;
  background-color: #fff;
  border: 1px solid #f2f2f2;
  border-radius: 0px;
  -webkit-transition: border .2s ease-in-out;
       -o-transition: border .2s ease-in-out;
          transition: border .2s ease-in-out;
}

.profile-portfolio > img,
.profile-portfolio a > img {
  margin-right: auto;
  margin-left: auto;
  width: 100%;
}

.profile-portfolio .caption{
      padding: 10px 25px 20px 25px;
}

.profile-portfolio .caption h5{
    text-align: center;
    font-size: 18px;
    margin-top: 10px;  
    font-weight: 600;
    
}

.profile-portfolio .caption h6{
    color: #333;
    text-align: center;
    font-size: 16px;
    margin-bottom: 15px;
}

.profile-portfolio p{
    color: #999;
    text-align: center;
}

.profile-portfolio .fa{
    color: #ffd11a;
}

/* ========== #PROFILE 2 ========== */
.full-avatar{
    width: 100%;
    -webkit-box-shadow: inset 0px 0px 212px 50px rgba(0,0,0,0.75);
    -moz-box-shadow: inset 0px 0px 212px 50px rgba(0,0,0,0.75);
    box-shadow: inset 0px 0px 212px 50px rgba(0,0,0,0.75);
    background-image: url("../img/images/profile-full.jpg");
    height: 560px; 
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.profile-info{
    position: absolute;
    margin: auto;
    bottom: 5px;
    left: 20px;
    width: 250px;
    border-radius: 3px;
    color: #FFF;
}

.inner-profile-social{
    display: inline-block;
    margin-top: -30px;
}

.inner-profile-social .icon-fa .fa{
    color: #fff;
	font-size: 18px;
	transition: 0.3s;
}

.inner-profile-social .icon-fa{
    display:inline-block;
    font-size: 18px;
    line-height: 30px;
    background: transparent;
    color: #FFF;
    width: 35px;
    height: 35px;
    text-align: center;
    vertical-align: bottom;
    border-radius: 50%;
    float: left;
	border: solid 2px #fff;
	transition: 0.3s;
}

.inner-profile-social .icon-fa:hover{
    background: #00a0e3;
	border: solid 2px #00a0e3;
}

.profile-about{
    height: 100%;
    padding: 30px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(204,204,204,0.6);
    -moz-box-shadow: 0 0 10px rgba(204,204,204,0.6);
    -webkit-box-shadow: 0 0 10px rgba(204,204,204,0.6);
    -o-box-shadow: 0 0 10px rgba(204,204,204,0.6);
}

.profile-about h6{
    font-weight: 600;
    color: #333;
}

.profile-about p{
    margin: 10px 0px 10px 0px;
    color: #666;
}

.profile-contact-left{
    float: left;
}

.profile-contact-right{
    float: right;
}

.profile-contact p{
    line-height: 1.7;
}

.profile-contact strong{
    font-weight: 600;
}

.profile-content-2 .skills{
    margin-top: 30px;
}

.profile-content-2 hr.profile{
    width: 100;
    border-top: 2px solid #ddd;
    margin: 10px auto 10px auto;
}

/* ========== #PROFILE 3 ========== */
.profile-photo {
  display: block;
  line-height: 1.42857143;
  background-color: #FAFCFC;
  border: 1px solid #eff5f5;
  -webkit-transition: border .2s ease-in-out;
       -o-transition: border .2s ease-in-out;
          transition: border .2s ease-in-out;
  padding-bottom: 30px;
}
.profile-photo > img,
.profile-photo a > img {
  margin-right: auto;
  margin-left: auto;
  width: 100%;
}
a.profile-photo:hover,
a.profile-photo:focus,
a.profile-photo.active {
  border-color: #337ab7;
}
.profile-photo .caption {
  padding: 9px;
  color: #333;
}

.profile-socials{
	width: 140px;
	margin: 10px auto 10px auto;
}

.profile-schedule{
	border: solid 10px #f0f0f0;
	padding: 40px 20px 30px 20px;
	margin: 40px 20px 40px 20px;
}

.profilen h6{
	color: #3FB6E0;
}

.profile-information p{
	font-size: 15px;
}

.profile-information h4{
	color: #333;
    font-weight: 600;
}

.profile-information h5{
	color: #00a0e3;
	margin-bottom: 15px;
}

.specialities{
	margin: 15px 0px 15px 0px;
}

.specialities h6{
    margin-top: 20px;
}

.specialities p{
    color: #999999;
}

.profile-schedule-2{
	border: solid 3px #00a0e3;
	background: #00a0e3;
	padding: 40px 20px 30px 20px;
	margin: 40px 20px 40px 20px;
}

.profile-schedule-2 .span-schedule .list-group-item {
  position: relative;
  display: block;
  padding: 10px 0px;
  margin-bottom: -1px;
  background-color: transparent;
  border: none;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  color: #fff;
  transition: 0.3s;
}

.profile-schedule-2 .span-schedule .badge {
  display: inline-block;
  min-width: 10px;
  padding: 3px 7px;
  font-size: 14px;
  font-weight: normal;
  line-height: 1;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  background-color: transparent;
  border-radius: 0px;
}

.profile-schedule-2 h6{
	color: #fff;
}

.profile-schedule-2 .inner-time-info p{
	color: #FFF;
}

.profile-socials-3{
	width: 160px;
	margin: 10px auto 10px auto;
}

.profile-socials-3 .icon-fa{
	display:inline-block;
    font-size: 18px;
    line-height: 30px;
    background: transparent;
    color: #00a0e3;
    width: 35px;
    height: 35px;
    text-align: center;
    vertical-align: bottom;
    border-radius: 50%;
    float: left;
	border: solid 2px #00a0e3;
	transition: 0.3s;
    margin: 0px 2px 0px 2px;
}

.profile-socials-3 .icon-fa:hover{
    background: #3FB6E0;
    color: #FFF;
	border: solid 1px #3FB6E0;
}

.profile-socials-3.icon-fa .fa{
    color: #00a0e3;
	font-size: 18px;
	transition: 0.3s;
}

.profile-socials-3 .icon-fa:hover{
    background: #00a0e3;
	border: solid 2px #00a0e3;
}

.inner-time-info .clock{
    width: 50px;
}

.inner-time-info .clock img{
    width: 100%;
}

/* ==========================================================================
    #TEAM
============================================================================= */
.team-headshot{
    margin: 20px 0px 20px 0px;
}

.overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 200px;
  height: 200px;
  opacity: 0;
  transition: .5s ease;
  background-color: rgba(255, 64, 76, 0.5);
  border-radius: 50%;
  margin: 0px auto 0px auto;

}

/* ==========================================================================
    #404 ERROR PAGE
============================================================================= */
/* ========== #404 ERROR PAGE 1 ========== */
.error-page-container .pages-header{
    background: transparent;
}

.error-page-container{
    background-image: url("../img/images/img53.jpg");
    min-height: 900px; 
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.error-page-container .middle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
}

.error-page-container .middle h1 {
    font-size: 200px;
    line-height: 1;
}

.error-page-container .middle h2 {
    margin-bottom: 10px;
}

/* ========== #404 ERROR PAGE 2 ========== */
.error-page-content{
    text-align: center;
}

.error-page-content h1{
    font-size: 200px;
    line-height: 1;
    text-align: center;
}

/* ==========================================================================
    #SHOP CLASSIC
============================================================================= */
.shop-banner-img img{
    width: 100%;
}

.shop-front-thumbs{
    background: #FFF;
    padding: 20px;
    height: 490px;
    margin: 20px 0px 20px 0px;
}

.shop-front-thumbs:hover{
    box-shadow: 0 0 10px rgba(204,204,204,0.6);
    -moz-box-shadow: 0 0 10px rgba(204,204,204,0.6);
    -webkit-box-shadow: 0 0 10px rgba(204,204,204,0.6);
    -o-box-shadow: 0 0 10px rgba(204,204,204,0.6);
}

hr.shop{
    width: 100%;
    border-top: 1px solid #ddd;
    margin: 25px auto 15px auto;
}

.shop-thumb-img{
    width: 200px;
    margin: auto;
}

.top-caption{
    margin-bottom: 10px;
    width: 200px;
    height: 60px;

}

.top-caption h6{
    color: #1f5fc7;
    line-height: 1.3;
    font-size: 16px;
    font-weight: 500;
}

.bottom-caption{
    margin: 20px 0px 20px 0px;
    clear: both;
}

.bottom-caption h6{
    color: #333;
    line-height: 1.3;
    font-size: 16px;
    font-weight: 500;
}

old-price{
    text-decoration: line-through;
}

.rating-box .ratingp-stars{
    display: inline-block;
    margin-right: 2px;
    font-size: 13px;
}

.bottom-caption-left{
    float: left;
}

.bottom-caption-right{
    float: right;
}

hr.more-product{
	width: 100%;
    border-top: 1px solid #e6e6e6;
    margin: 20px 0px 20px 0px;
}

/* ========== #RELATED PRODUCT SLIDER. ========== */

.item-info h6{
    text-align: center;
    color: #666;
    text-transform: uppercase;
    margin-top: 10px;
    transition: 0.3s;
}

.item-info h5{
    text-align: center;
    font-weight: 500;
    transition: 0.3s;
}

.item-info p{
    text-align: center;
    margin-top: 10px;
}

.item-box:hover .item-info h6{
    color: #999;
}

.item-box:hover .item-info h5{
    color: #999;
}

.slick-dots {
  text-align: center;
  margin: 0 0 10px 0;
  padding: 0;
}
.slick-dots li {
  display: inline-block;
  margin-left: 4px;
  margin-right: 4px;
    display: none;
}
.slick-dots li.slick-active button {
  background-color: #cc0023;
}
.slick-dots li button {
  font: 0/0 a;
  text-shadow: none;
  color: transparent;
  background-color: #cc0023;
  border: none;
  width: 15px;
  height: 15px;
  border-radius: 50%;
}
.slick-dots li :hover {
  background-color: #cc0023;
}

.navigation-arrows{
    float: right;
    margin-top: -35px;
}

/* Custom Arrow */
.navigation-arrows .prev {
  color: #666;
  display: inline-block;
  padding: 5px 12px 5px 12px;
  transition: 0.3s;
}

.navigation-arrows .prev:hover {
  color: #333;
}

.navigation-arrows .prev .fa {
  font-size: 25px;
}

.prev :hover {
  cursor: pointer;
}

.navigation-arrows .next {
  color: #666;
  display: inline-block;

  transition: 0.3s;
}

.navigation-arrows .next:hover {
  color: #333;
}

.navigation-arrows .next .fa {
  font-size: 25px;
}

.next :hover {
  cursor: pointer;
}

@media screen and (max-width: 800px) {
  .next, .prev {
    display: none !important;
  }
}

#carousel-example-generic {
  display: inline-block;
}
/*****************************/

/* Plugin styles */
ul.thumbnails-carousel {
	padding: 5px 0 0 0;
	margin: 0;
	list-style-type: none;
	text-align: center;
}
ul.thumbnails-carousel .center {
	display: inline-block;
}
ul.thumbnails-carousel li {
	margin: 0px 1px 0px 1px;
	float: left;
	cursor: pointer;
    max-width: 104px;
}

ul.thumbnails-carousel li img {
	width: 100%;
}
.controls-background-reset {
	background: none !important;
}
.active-thumbnail {
	opacity: 0.4;
}
.indicators-fix {
	bottom: 70px;
}

.carousel .item {
    -webkit-transition: opacity 0.2s ease-in-out;
    -moz-transition: opacity 0.2s ease-in-out;
    -ms-transition: opacity 0.2s ease-in-out;
    -o-transition: opacity 0.2s ease-in-out;
    transition: opacity 0.2s ease-in-out;
}

.carousel-inner{
    height: 100%;
}

@media (max-width:768px) {
.middle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
} 
    
.middle h1{
    font-size: 50px;
    text-align: center;
}

.middle h2{
    font-size: 30px;
    text-align: center;
    line-height: 1.3;
}

.middle p{
    text-align: center;
    padding-top: 20px;
}
    
}

@media (max-width:440px) {   
.middle h1{
    font-size: 35px;
    text-align: center;
}

.middle h2{
    font-size: 20px;
    text-align: center;
    line-height: 1.3;
}
    
}

.span-item img{
    width: 100%;
}

.horizontal-banner{
    width: 100%;
}

.product-box{
    padding: 2px 10px 2px 10px;
}

.product-box .item-img{
    float: left;
    margin-right: 20px;
}

.product-box .item-details{
    margin: 20px 0px 20px 0px;
    clear: both;
    height: 80px;
}

.product-box .item-details h6{
    font-size: 16px;
    margin-bottom: 10px;
    color: #1f5fc7;
}

/* ========== #SHOP CLASSIC LEFT SIDEBAR ========== */
.shop-left-sidebar{
    background: #fff;
    margin-top: 20px;
    padding: 30px 20px 30px 20px;
}

.shop-left-sidebar .search-box{
    width: 100%;
    background: #f2f2f2;
}

.shop-left-sidebar .search-box .search-container .form-group .input-group .form-control {
  display: block;
  width: 100%;
  height: 40px;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.42857143;
  color: #555;
  background: #f2f2f2;
  background-image: none;
  border: none;
  border-radius: 0px;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-transition: none;
       -o-transition: none;
          transition: none;
}

.shop-left-sidebar .search-box{
    width: 100%;
    height: 40px;
    background: #ddd;
    padding: 0px;
    margin: 0px;
}

.shop-left-sidebar .search-box .search-container .form-group .input-group .input-group-addon{
    background: #f2f2f2;
    border: none;
    border-radius: 0px;
    height: 40px;
}

.shop-left-sidebar .search-box .search-container .form-group .input-group .input-group-addon .fa{
    font-size: 18px;
    color: #1f5fc7;
}

.sidebar-header{
    margin: 30px 0px 20px 0px;
}


.inner-categories .list-group-item {
  position: relative;
  display: block;
  padding: 10px 0px;
  margin-bottom: -1px;
  background-color: #fff;
  border: none;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  color: #333;
  transition: 0.3s;
}

.inner-categories .list-group-item:hover {
  color: #cccccc;
    background: #FFF;
}

.inner-categories .list-group-item:hover .badge .fa {
  color: #cccccc;
}

.inner-categories .list-group-item.active > .badge,
.inner-categories .nav-pills > .active > a > .badge {
  color: #333;
  background-color: #fff;
}

.inner-categories .badge {
  display: inline-block;
  min-width: 10px;
  padding: 3px 7px;
  font-size: 14px;
  font-weight: normal;
  line-height: 1;
  color: #333;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  background-color: transparent;
  border-radius: 0px;
}

.inner-categories .list-group-item .fa{
    font-size: 16px;
}

.divider-categories{
    border-top: 1px solid #e6e6e6;
    margin: 3px auto 3px auto;
}

p.media-heading{
    font-size: 15px;
    color: #1f5fc7;
    line-height: 1.4;
}

.media-body h5{
    font-size: 15px;
    font-weight: 600;
}

.media-left{
    padding-right: 20px;
}

.promo-banner{
    margin-top: 30px;
}

.promo-banner img{
    width: 100%;
}

/* ==========================================================================
    #PRODUCT DETAIL
============================================================================= */
.product-container{
    margin-bottom: 60px;
}

.product-photo-gallery{
    width: 430px;
    float: left;
    margin-right: 20px;
}

.product-leftside .carousel .carousel-inner .item{
    width: 430px;
}

.product-leftside .carousel .carousel-inner .item img{
    width: 100%;
}

.product-description{
    padding: 20px;
}

.product-description p{
    color: #666;
}

.product-description h6{
    margin-bottom: 15px;
}

.product-rating{
    margin: 10px 0px 10px 0px;
}

.inner-rating-star{
    display: inline-block;
    margin-right: 2px;
    color: #00a0e3;
}

.bullet-descriptions{
    margin: 15px 0px 15px 0px;
    font-size: 14px;
}

.bullet-descriptions li{
    color: #999;
}

.inner-whistlist{
    display: inline-block;
    margin: 15px 10px 0px 0px;
}

.inner-stock{
    display: inline-block;
}

.order-box{
    margin-top: 30px;
}

.order-qty{
    display: inline-block;
    margin-right: 10px;
    
}

.btn-order{
   display: inline-block; 
}


.number{
	color: #00a0e3;
	border: 2px solid #00a0e3;
	border-radius: 5px;
	text-align: center;
	padding: 6px 12px;
}

.order-qty
.number:focus,
.number:active
{
	outline: none;
}

table {
   font-family: 'Open Sans', sans-serif;
    border-collapse: collapse;
    width: 100%;
    font-size: 14px;
}

td, th {
    border: 1px solid #f2f2f2;
    text-align: left;
    padding: 8px;
}

tr:nth-child(even) {
    background-color: #f2f2f2;
}

th{
    font-weight: 600;
}

td.justified{
    text-align: left;
}

td.justified .fa{
    color: #666;
}

th.justified{
    text-align: left;
}

.reviews-container{
    margin-top: 10px;
    clear: both;
}

.inner-reviews{
    height: 150px;
}

.review-avatar{
    width: 100px;
    height: 100px;
    float: left;
    margin-right: 20px;
}

.review-avatar img{
    width: 100%;
    border-radius: 50%;
}

.span-reveiw-star{
    color: #00a0e3;
    height: 25px;
}

.span-reveiw-star .stars-fa{
    display: inline-block;
    margin-right: 2px;
}

.rating-title{
    display: inline-block;
    margin-left: 10px;
}

.review-description p{
    font-size: 13px;
}

.tab-pane{
    color: #666;
    padding: 20px 0px 20px 0px;
    text-align: left;
}

.tab-pane p{
    color: #666;
    text-align: left;
    margin-bottom: 15px;
}

.nav-tabs {
  border-bottom: 1px solid #ddd;
}

.nav-tabs > li {
  float: none;
  margin-bottom: -1px;
  display: inline-block;
}

.nav-tabs > li > a {
  margin-right: 2px;
  line-height: 1.42857143;
  border: none;
  border-bottom: solid 1px transparent;
  border-radius: 4px 4px 0 0;
  font-size: 14px;
  text-align: center;
  font-family: 'Archivo Narrow', sans-serif;
  color: #333;
}

.nav-tabs > li > a:hover {
  border-color: transparent;
  background: transparent;
}

.nav-tabs > li.active > a,
.nav-tabs > li.active > a:hover,
.nav-tabs > li.active > a:focus {
  color: #00a4e6;
  cursor: default;
  background-color: #F9F9F9;
  border: none;
  border-bottom: solid 2px #00a4e6; 
}

.nav-tabs.nav-justified {
  width: 100%;
  border-bottom: 0;
}

.nav-tabs.nav-justified > li {
  float: none;
}

.nav-tabs.nav-justified > li > a {
  margin-bottom: 5px;
  text-align: center;
}

.nav-tabs.nav-justified > .dropdown .dropdown-menu {
  top: auto;
  left: auto;
}


/* ========== #PRODUCT LEFT SIDEBAR ========== */

.with-sidebar .product-photo-gallery{
    width: 320px;
    float: left;
    margin-right: 20px;
}

.with-sidebar .product-leftside .carousel .carousel-inner .item{
    width: 320px;
}

.with-sidebar .product-leftside .carousel .carousel-inner .item img{
    width: 100%;
}

.with-sidebar .product-description .bullet-descriptions P{
    font-size: 13px;
}

/* ==========================================================================
    #SHOPPING CART
============================================================================= */



/* ==========================================================================
    #CHECKOUT
============================================================================= */



/* ==========================================================================
    #BLOG
============================================================================= */
/* ========== #BLOG CLASSIC ========== */
.posts-thumbs {
  display: block;
  margin-bottom: 20px;
  line-height: 1.42857143;
  background-color: #fff;
  -webkit-transition: border .2s ease-in-out;
       -o-transition: border .2s ease-in-out;
          transition: border .2s ease-in-out;
  padding-bottom: 30px;
}
.posts-thumbs > img,
.posts-thumbs a > img {
  margin-right: auto;
  margin-left: auto;
  width: 100%;
}
a.posts-thumbs:hover,
a.posts-thumbs:focus,
a.posts-thumbs.active {
  border-color: #337ab7;
}
.posts-thumbs .caption {
  padding: 10px 0px 10px 0px;
  color: #333;
  text-align: left;
}

.posts-thumbs .caption h4{
    text-align: left;
    line-height: 1.1;
    clear: both;
}

.caption .post-description p{
    text-align: left;
    margin: 20px 0px 20px 0px;
}

.caption-header .post-date{
    background: #00a0e3;
}

.caption-header .post-date p{
    text-align: center;
}

.post-date{
	width: 60px;
	height: 70px;
	position: absolute;
	top: 20px;
	right: 30px;
	background: #0798BC;
	color: #FFF;
	padding: 5px 15px 5px 15px;
    text-align: center;
}

.post-date p{
	color: #FFF;
}

.post-social{
    font-size: 14px;
    color: #999;
    font-family: 'Open Sans', sans-serif;
    float: right;
    margin-bottom: 5px;
}

.post-social .inner-post-social{
    display: inline-block;
    margin-right: 10px;
}

.btn-read-more{
    float: right;
    margin-top: -25px;
}

.author-avatar{
    width: 50px;
    height: 50px;
    float: left;
    margin-right: 15px;
}

.author-avatar img{
    width: 100%;
    border-radius: 50%;
}

.author-name{
    padding-top: 13px;
}

.btn-read-more .fa{
    font-size: 18px;
}

.blog-sidebar{
    background: #fff;
    padding: 0px 10px 30px 10px;
}

.blog-sidebar .search-box{
    width: 100%;
    background: #f2f2f2;
}

.blog-sidebar .search-box .search-container .form-group .input-group .form-control {
  display: block;
  width: 100%;
  height: 40px;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.42857143;
  color: #555;
  background: #f2f2f2;
  background-image: none;
  border: none;
  border-radius: 0px;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-transition: none;
       -o-transition: none;
          transition: none;
}

.blog-sidebar .search-box{
    width: 100%;
    height: 40px;
    background: #ddd;
    padding: 0px;
    margin: 0px;
}

.blog-sidebar .search-box .search-container .form-group .input-group .input-group-addon{
    background: #f2f2f2;
    border: none;
    border-radius: 0px;
    height: 40px;
}

.blog-sidebar .search-box .search-container .form-group .input-group .input-group-addon .fa{
    font-size: 18px;
    color: #1f5fc7;
}

.sidebar-header{
    margin: 30px 0px 20px 0px;
}


.blog-sidebar .inner-categories .list-group-item {
  position: relative;
  display: block;
  padding: 10px 0px;
  margin-bottom: -1px;
  background-color: #fff;
  border: none;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  color: #333;
  transition: 0.3s;
}

.blog-sidebar .inner-categories .list-group-item:hover {
  color: #cccccc;
    background: #FFF;
}

.blog-sidebar .inner-categories .list-group-item:hover .badge .fa {
  color: #cccccc;
}

.blog-sidebar .inner-categories .list-group-item.active > .badge,
.blog-sidebar .inner-categories .nav-pills > .active > a > .badge {
  color: #333;
  background-color: #fff;
}

.blog-sidebar .inner-categories .badge {
  display: inline-block;
  min-width: 10px;
  padding: 3px 7px;
  font-size: 14px;
  font-weight: normal;
  line-height: 1;
  color: #333;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  background-color: transparent;
  border-radius: 0px;
}

.blog-sidebar .inner-categories .list-group-item .fa{
    font-size: 16px;
}

.blog-sidebar .divider-categories{
    border-top: 1px solid #e6e6e6;
    margin: 3px auto 3px auto;
}

.blog-sidebar p.media-heading{
    font-size: 13px;
    color: #808080;
    line-height: 1.4;
}

.blog-sidebar .media-body h5{
    font-size: 15px;
    font-weight: 600;
}

.blog-sidebar .media-left{
    padding-right: 10px;
}

.blog-sidebar .media-left .media-object{
    width: 90px;
    height: 90px;
}

/* ========== #BLOG GRID ========== */
.posts-thumbs-grid {
  display: block;
  line-height: 1.42857143;
  background-color: #fff;
  -webkit-transition: border .2s ease-in-out;
       -o-transition: border .2s ease-in-out;
          transition: border .2s ease-in-out;
 margin: 20px 0px 20px 0px;

}

.posts-thumbs-grid > img,
.posts-thumbs-grid a > img {
  margin-right: auto;
  margin-left: auto;
  width: 100%;
}
a.posts-thumbs-grid:hover,
a.posts-thumbs-grid:focus,
a.posts-thumbs-grid.active {
  border-color: #337ab7;
}
.posts-thumbs-grid .caption {
    padding: 10px 0px 10px 0px;
    color: #333;
    text-align: left;
    min-height: 100px;
    max-height: 100px;
    overflow: hidden;
}

.posts-thumbs-grid .caption h4{
    text-align: left;
    clear: both;
	font-size:16px;
}

.caption .post-description p{
    text-align: left;
    margin: 20px 0px 20px 0px;
}

.caption-header .post-date{
    background: #00a0e3;
}

.caption-header .post-date p{
    text-align: center;
}

/* ========== #BLOG THUMBNAIL ========== */
.post-thumbnail{
    height: 281px;
}

.thumbnail-pic{
    width: 500px;
    float: left;
    margin-right: 20px;
}

.thumbnail-pic img{
    width: 100%;
}

.post-thumbnail .post-description{
    margin: 10px 0px 10px 0px;
    color: #666;
}

.post-content .post-social{
    float: none;
    margin: 15px 0px 15px 0px;
}

.read-more{
    margin-top: 20px;
}

.read-more a:link {
    text-decoration: none;
    color: #333;
}

.read-more a:visited {
    text-decoration: none;
    color: #333;
}

.read-more a:hover {
    text-decoration: none;
    color: #333;
}

.read-more a:active {
    text-decoration: none;
    color: #333;
}

hr.post-divider{
    width: 100%;
    border-top: 1px solid #f2f2f2;
    margin: 25px auto 25px auto;
    clear: both;
}

.inner-post-items{
    display: inline-block;
    margin-right: 10px;
}

.pagination-small .pagination {
    display: inline-block;
    border-radius: 50%;
}

.pagination-small .pagination a {
    color: black;
    float: left;
    padding: 10px 18px;
    text-decoration: none;
    border: 1px solid #e6e6e6;
    margin: 0px 2px 0px 2px;
    transition: 0.3s;
    
}

.pagination-small .pagination a.active {
    background-color: #00a4e6;
    color: #FFF;
    border: 1px solid #00a4e6;
}

.pagination-small .pagination a:hover:not(.active) {
    background-color: #00a4e6;
    color: #FFF;
    border: 1px solid #00a4e6;

}

.pagination-small .pagination a:first-child {
    margin: 0px 2px 0px 2px;
}

.pagination-small .pagination a:last-child {
    margin: 0px 2px 0px 2px;
}


/* ========== #BLOG THUMBNAIL ========== */

.post-thumbnail-2{
    height: 230px;
}

.thumbnail-pic-2{
    width: 400px;
    float: left;
    margin-right: 20px;
}

.thumbnail-pic-2 img{
    width: 100%;
}

.post-thumbnail-2 .post-description p{
    font-size: 14px;
    margin: 5px 0px 5px 0px;
    color: #666;
}

.post-thumbnail-2 .post-content h3{
    line-height: 1.2;
    margin-bottom: 5px;
}

/* ========== #SINGLE POST ========== */
.blog-picture{
    margin-bottom: 10px;
}

.blog-picture img{
    width: 100%;
}

.blog-content h1{
    font-size: 26px;
    font-weight: 600;
    margin-top: 10px;
    margin-right: 80px;
}

.post-information p{
    margin: 20px 0px 20px 0px;
    color: #808080;
    line-height: 1.8;
    font-size: 16px;
    
}

.post-information blockquote{
  display:block;
  background: #fff;
  padding: 40px 20px 40px 45px;
  margin: 0 0 20px;
  position: relative;
  font-size: 16px;
  line-height: 1.2;
  color: #666;
  text-align: justify;
  border-left: 10px solid #00a0e3;
  border-right: 2px solid #00a0e3;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.post-information blockquote::before{
  content: "\201C"; /*Unicode for Left Double Quote*/
  font-family: Georgia, serif;
  font-size: 60px;
  font-weight: bold;
  color: #999;
  position: absolute;
  left: 10px;
  top:5px;
}

.post-information blockquote::after{
  content: "";
}

.post-information blockquote a{
  text-decoration: none;
  background: #eee;
  cursor: pointer;
  padding: 0 3px;
  color: #00a0e3;
}

.post-information blockquote a:hover{
 color: #666;
}

.post-information blockquote em{
  font-style: italic;
}

.video-responsive{
    overflow:hidden;
    padding-bottom:56.25%;
    position:relative;
    height:0;
    margin-bottom: 20px;
}
.video-responsive iframe{
    left:0;
    top:0;
    height:100%;
    width:100%;
    position:absolute;
}
/* ==========================================================================
   	SERVICES.
   ========================================================================== */

/* ========== #SERVICES 2 ========== */
.services-front p{
    line-height: 1.7;
    color: #666;
}

.services-front h6{
    line-height: 1.3;
}

hr.short{
    width: 80px;
    border-top: 3px solid #00a0e3;
    margin: 10px 0px 10px 0px;
}

.service-img{
    float: left;
    margin-right: 20px;
    width: 60px;
}

.service-img img{
    width: 100%;
}

.span-services{
    margin-top: 20px;
}

.service-front-img{
    width: 400px;
}

.service-front-img img{
    width: 100%;
}

.inner-services{
    display: inline-block;
    margin: 0px 20px 18px 0px;
    width: 250px;
    float: left;
}

.inner-services h6{
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    color: #333;
    margin: 10px 0px 5px 0px;
}

.inner-services p{
    font-size: 13px;
    color: #666;
    line-height: 1.5;
}
.services-us{
    background: #fff;
    margin-top: 30px;
    padding: 40px;
    box-shadow: 0 0 10px rgba(204,204,204,0.6);
    -moz-box-shadow: 0 0 10px rgba(204,204,204,0.6);
    -webkit-box-shadow: 0 0 10px rgba(204,204,204,0.6);
    -o-box-shadow: 0 0 10px rgba(204,204,204,0.6);
    border-radius: 5px;
}

.services-us h3{
    margin-bottom: 10px;
}

.services-us p{
    color: #999;
    line-height: 1.7;
}

.services-icons{
    margin-top: 30px;
}

.icon-png{
    margin-right: 20px;
    float: left;
    width: 50px;
}

    
.icon-png img{
    width: 100%;
}


.inner-services-icons{
    margin: 30px 0px 30px 0px;
    padding: 0px 30px 0px 15px;
    height: 60px;
    clear: both;
}

.inner-services .services-icon{
    width: 55px;
}

.inner-services .services-icon img{
    width: 100%;
}

.services-img{
    margin-top: 60px;
    margin-top: 60px;
}

.services-img img{
    width: 100%;
}

.call-banner{
    clear: both;
    background: #00a0e3;
    padding: 30px 0px 30px 0px;
    height: 150px;
    border-bottom: solid 1px #ddd;
}

.banner-left{
    float: left;
}

.banner-left h3{
    text-align: left;
    color: #FFF
}

.banner-left h6{
    text-align: left;
    color: #fff;
    font-size: 16px;
}

.banner-right{
    float: right;
    margin-top: 5px;
}

.banner-right .btn-offer {
  color: #00a0e3;
  background-color: #FFF;
  border-color: #FFF;
    border-radius: 5px;
}
.banner-right .btn-offer:focus,
.banner-right .btn-offer.focus {
  color: #fff;
  background-color: #ff1a29;
  border-color: #ff1a29;
}
.banner-right .btn-offer:hover {
  color: #fff;
  background-color: #ff1a29;
  border-color: #ff1a29;
}
.banner-right .btn-offer:active,
.banner-right .btn-offer.active,
.open > .dropdown-toggle.btn-offer {
  color: #fff;
  background-color: #ff1a29;
  border-color: #ff1a29;
}

/* ========== #SERVICES 3 ========== */
.service-icon-img2{
    width: 50px;
    height: 50px;
    margin: auto;
}

.service-icon-img2 img{
    width: 100%;
}

.icon-circle h3{
    margin: 10px 0px 5px 0px;
}

.wide-section-2{
    background: #EEF2F5;
}

.wide-section-2 .section{
    padding: 70px 20px 70px 20px;
}

.wide-section-content{
    padding: 50px 0px 50px 0px;
}

.wide-section-content p{
    line-height: 2;
    color: #666;
}

.wide-section-3{
    background: #FFF;
}

.wide-section-3 .section{
    padding: 70px 20px 70px 20px;
}

.wide-section-3 .wide-section-content{
    padding: 50px;
}

.inner-wide-section-img img{
    width: 100%;
}




/* ========== #SERVICES 4 ========== */
.service-box{
    height: 340px;
    box-shadow: 0 0 10px rgba(204,204,204,0.6);
    -moz-box-shadow: 0 0 10px rgba(204,204,204,0.6);
    -webkit-box-shadow: 0 0 10px rgba(204,204,204,0.6);
    -o-box-shadow: 0 0 10px rgba(204,204,204,0.6);
    border-top: solid 3px #00a4e6;  
    padding: 40px 10px 40px 10px;
    text-align: center;
    transition: 0.5s;
}

.service-box h5{
    margin: 15px 0px 5px 0px;
    font-size: 18px;
    color: #333;
    font-weight: 600;
}

.service-box:hover{
    border-top: solid 3px #00a0e3; 
}

.service-box:hover .service-icon-box {
    background: #00a0e3;
}

.service-icon-box{
    position: relative;
    background: #00a4e6;
    width: 90px;
    height: 90px;
    margin: auto;
    border-radius: 50%;
    transition: 0.5s;
}

.service-icon-img{
  position: absolute;
  margin: auto;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

.service-icon-img img{
    width: 100%;
}

.service-box strong{
    font-weight: 600;
    color: #666;
}

.service-front-info{
    margin-top: 60px;
}

.service-signature{
    width: 200px;
}

.service-signature img{
    width: 100%;
}

.box-counter{
    padding: 0px 40px 0px 40px;
}

.box-counter .grid-box-counter{
    padding: 30px 10px 30px 0px;
    border-bottom: solid 1px #ddd;
    border-right: solid 1px #ddd;
}

.box-counter .bottom-grid-2{
    border-bottom: solid 1px transparent;
}

.box-counter .right-grid-2{
    border-right: solid 1px transparent;
    padding-left: 20px;
}

.box-counter .grid-icon-2{
    float: left;
    margin-right: 20px;
}

.box-counter .grid-info{
    margin-top: -5px;
}

.grid-box-counter .grid-info .counter{
    color: #333;
    font-weight: 600;
    text-align: left;
}

.box-counter .grid-info p{
    color: #999;
    margin-top: -5px;
}

.parallax { 
    background-image: url("../img/images/background-parallax.jpg");
    height: 500px; 
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.parallax-content{
  position: absolute;
  margin: auto;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 767px;
  height: 190px;
  border-radius: 3px;
  text-align: center;
  color: #FFF;
}

.parallax-content h1{
    font-style: italic;
}

.parallax-content p{
    font-size: 16px;
    margin: 10px 0px 20px 0px;
}


/* ==========================================================================
   	SHOPPING CART.
   ========================================================================== */
.shopping-cart-header{
    margin-bottom: 20px;
}

.header-product{
    height: 40px;
}

.header-price{
    height: 40px;
    text-align: center;
}

.header-quantity{
    height: 40px;
    text-align: center;
}

.header-total{
    height: 30px;
    text-align: center;
}

.span-product{
    height: 140px;
    padding: 20px;
}

.span-product p{
    font-size: 13px;
    margin-bottom: 5px;
}

.span-price{
    height: 140px;
    padding: 20px;
}

.span-quantity{
    height: 140px;
    padding: 20px;
}

.span-quantity .order-qty{
    margin: 20px auto 0px auto;
    width: 73px;
    display:block;
}

.span-quantity .order-qty .number{
	color: #666;
	border: 2px solid #666;
	border-radius: 5px;
	text-align: center;
	padding: 6px 12px;
}

.span-total{
    height: 140px;
    padding: 20px;
}

.product-pic-thumb{
    width: 100px;
    height: 100px;
    float: left;
    margin-right: 20px;
}

.product-pic-thumb img{
    width: 100%;
}

.span-price h6{
    margin-top: 30px;
    text-align: center;
}

.span-total h6{
    margin-top: 30px;
    text-align: center;
}

.shopping-cart-bottom{
    margin-top: 50px;
}

.shop-btn-right{
    float: right;
}

.btn-update{
    display: inline-block;
    margin-right: 10px;
}

.btn-checkout{
    display: inline-block;
}


.inner-shoppping{
    height: 50px;
    clear: both;
}

.inner-product-left{
    float: left;
    font-weight: 600;
}

.inner-product-right{
    float: right;
}

.responsive-view{
    display: none;
}

.delete-item{
    float: right;
    margin-bottom: 20px;
}

.checkout-box{
    width: 500px;
    height: 300px;
    float: right;
    margin-top: 50px;
}

hr.summary{
    width: 100%;
    border-top: 1px solid #cccccc;
    margin: 10px auto 40px auto;
}

hr.summary-2{
    width: 100%;
    border-top: 1px solid #e6e6e6;
    margin: 10px auto 10px auto;
}

.box-summary{
    height: 30px;
    padding: 0px 
}

.inner-summary-left{
    float: left;
    font-weight: 600;
}

.inner-summary-right{
    float: right;
}

.inner-summary-right strong{
    font-weight: 600;
}


/* ==========================================================================
   	CHECKOUT.
   ========================================================================== */

.customer-form .form-group label{
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 10px;
}

.checkout-form {
  display: block;
  width: 100%;
  height: 45px;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.42857143;
  color: #555;
  background-color: #fff;
  background-image: none;
  border: 1px solid #d9d9d9;
  border-radius: 10px;

  -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
       -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
          transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}
.checkout-form:focus {
  border-color: #66afe9;
  outline: 0;
  -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, .6);
          box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, .6);
}
.checkout-form::-moz-placeholder {
  color: #999;
  opacity: 1;
}
.checkout-form:-ms-input-placeholder {
  color: #999;
}
.checkout-form::-webkit-input-placeholder {
  color: #999;
}

.order-summary{
    background: #F2F2F2;
    height: 100%;
    padding: 40px 30px 50px 30px;
    border-radius: 5px;
}

hr.summary-line{
    width: 100%;
    border-top: 1px solid #cccccc;
    margin: 10px auto 40px auto;
}

.inner-order{
    height: 35px;
    border-bottom: solid 1px #e6e6e6;
    margin-top: 15px;
}

.inner-order .label-left{
    float: left;
}

.inner-order .product-total{
    float: right;
}

.label-left strong{
    font-weight: 600;
}

.inner-order .product-total strong{
    font-weight: 600;
}

.no-line{
    border-bottom: solid 1px transparent;
    text-align: center;
}

/* ==========================================================================
   	MEDIA QUERIES MODULE.
   ========================================================================== */
@media (max-width:1100px) { 
 .box-counter .grid-box-counter{
    padding: 20px 15px 20px 15px;
     height: 120px;
} 
    
.box-counter .grid-icon-2{
    float: left;
    margin-right: 20px;
    height: 100px;
}

}

@media (max-width:992px) {  
.about-image{
    margin-top: 50px;
}
    
.about-image-3{
    margin-top: 30px;
}

.inner-about{
    display: inline-block;
    margin: 0px 20px 30px 0px;
    width: 250px;
    float: left;
}
    
.parallax-bg{
    height: 100%; 
}
    
.bottom-benefits{
    margin: 0px;
}

.contact-left{
    margin-top: 0px;
}

.map-box{
    margin-top: 30px;
}
    
.contact-left h1{
    font-size: 30px;
}

.contact-left p{
    font-size: 14px;
}
    
.contact-left-3{
    margin-top: 30px;
}
    
.contact-right-4{
    margin-top: 30px;
}
    
.contact-right-5{
    margin-top: 30px;
}
    
.profile-content{
    border-left: none;
    height: 100%;
    padding: 0px;
    margin-top: 30px;
}
    
.profile-information{
    margin-top: 30px;
}
    
.error-page-container{
    min-height: 700px; 
}
    
.error-page-container .middle h1 {
    font-size: 150px;
}
    
.error-page-content h1{
    font-size: 150px;
}
    
.shop-banner-big{
    height: 100%;
    margin-bottom: 20px;
}
    
.center-banner{
    margin: 20px 0px 20px 0px;
}
    
.product-photo-gallery{
    width:520px;
    float: none;
    margin: 0px auto 20px auto;
}
    
.product-leftside .carousel .carousel-inner .item{
    width: 520px;
}

.product-leftside .carousel .carousel-inner .item img{
    width: 100%;
}
    
.product-container{
    margin-bottom: 0px;
}
    
.with-sidebar .product-photo-gallery{
    width: 520px;
    float: none;
    margin: 0px auto 20px auto;
}

.with-sidebar .product-leftside .carousel .carousel-inner .item{
   width: 520px;
}
    
.with-sidebar{
    margin-bottom: 30px;
}
    
.post-thumbnail{
    height: 100%;
}
    
.thumbnail-pic{
    width: 100%;
    float: none;
    margin: 0px 0px 20px 0px;
}

.service-front-img{
    margin-top: 30px;
}
    
.wide-section-2 .wide-section-content{
    padding: 10px 0px 10px 0px;
} 
    
.wide-section-3 .wide-section-content{
    padding: 10px 0px 10px 0px;
}
    
.box-counter .grid-box-counter{
    padding: 20px 0px 20px 0px;
    height: 100%;
    margin-bottom: 10px;
} 
    
.box-counter .grid-icon-2{
    float: left;
    margin-right: 20px;
    height: 60px;
}
    
.box-counter{
    margin-top: 30px;
}
    
.box-counter .grid-box-counter{
    border-right: solid 1px transparent;
    border-bottom: solid 1px #ddd;
}
    
.bottom-grid-2{
    border-bottom: solid 1px #ddd;
    
}
    
.service-box{
    margin: 20px 0px 20px 0px;
    height: 100%;
    padding: 40px 20px 50px 20px;
}
    
.span-benefits{
    padding: 50px 20px 50px 20px;
}
    
.span-benefits h5{
    font-weight: 600;
}
    
.inner-contact-3{
    background: #FAFCFC;
    height: 100%;
    padding: 30px 20px 30px 20px;
    border: solid 1px #eff5f5;
    margin-top: 30px;
}
    
.shop-left-sidebar{
    margin-top: 20px;
    padding: 15px;
}
    
.contact-box{
    margin: 20px 0px 20px 0px;
    height: 100%;
    padding: 50px 10px 60px 10px;
}
    
.career-sidebar{
    margin-top: 40px;
}
    
.desktop-view{
    display: none;
}
    
.responsive-view{
    display: inherit;
    padding: 0px 50px 0px 50px;
}

.inner-product-right .order-qty{
    margin: 0px;
}
    
.inner-product-right .order-qty .number{
	color: #666;
	border: 1px solid #666;
	border-radius: 5px;
	text-align: center;
	padding: 3px 8px;
}
    
.checkout-box{
    width: 100%;
    height: 300px;
    float: none;
    margin: 0px;
}

.order-summary{
    margin-top: 40px;
}
    
.posts-thumbs {
    height: 100%;
} 
    
.posts-thumbs-grid {
    height: 100%;
}
    
.inner-contact-6{
    margin-top: 40px;
}
    
.service-front-img{
    width: 100%;
}
    
.icon-boxes-shadow{
    width: 100%;
    height: 100%;
    padding: 35px 15px 50px 15px;
}
    
.our-team h6{
    text-align: left;
} 
    
.our-team h2{
    text-align: left;
}
    
.our-team p{
    text-align: left;
}
    
.customers{
    margin-top: 30px;
}
    
.banner{
    display: none;
}

}

@media (max-width:767px) {
    
.error-page-container{
    min-height: 600px; 
}
  
.error-page-container .middle h1 {
    font-size: 100px;
}
    
.error-page-content h1{
    font-size: 100px;
}
    
.inner-reviews{
    height: 100%;
}
    
.review-avatar{
    width: 100px;
    height: 100px;
    float: none;
    margin: 0px 0px 10px 0px;
}
    
.product-description{
    padding: 10px;
}
    
.product-banner{
    display: none;
}
    
.call-banner{
    padding: 15px 0px 15px 0px;
    height: 100%;
    height: 100%;
}  
    
.banner-left{
    float: none;
}
    
.banner-left h3{
    text-align: center;
}

.banner-left h6{
    text-align: center;
    font-size: 14px;
}
    
.banner-right{
    float: none;
}  
    
.banner-right p{
    text-align: center;
    margin-top: 15px;
}
    
.parallax-content{
    width: 100%;
    padding: 0px 20px 0px 20px;
}
    
.profile-about{
    height: 100%;
    padding: 30px;
    margin-top: 40px;
}
    
.author-avatar{
    width: 40px;
    height: 40px;
}
    
.author-name{
    padding-top: 12px;
}
    
.blog-content h1{
    font-size: 26px;
}
    
.address-center{
    margin: 30px 0px 30px 0px;
}

}

@media (max-width:630px) {
.inner-careers{
    clear: both;
    height: 100%;
    padding: 30px 0px 30px 0px;
    border-bottom: solid 1px #f2f2f2;
}
    
.btn-apply{
    float: none;
    margin-top: 40px;
}
    
}
    
@media (max-width:576px) {
.about-signature{
    float: none;
    width: 150px;
    margin: 20px 0px 0px 0px;
}

.error-page-container{
    min-height: 600px; 
}
    
.product-photo-gallery{
    width: 100%;
}
    
.product-leftside .carousel .carousel-inner .item{
    width: 100%;
}

.product-leftside .carousel .carousel-inner .item img{
    width: 100%;
}
    
.thumbnails-carousel li{
    width: 60px;
    display: inline-block;
}   
    
.thumbnails-carousel img{
    width: 100%;
}
    
.with-sidebar .product-photo-gallery{
     width: 100%;
}

.with-sidebar .product-leftside .carousel .carousel-inner .item{
    width: 100%;
}
    
.pagination-small .pagination a {
    padding: 6px 14px;
    text-decoration: none;
    border: 1px solid #e6e6e6;
    font-size: 13px;
}
    
.btn-read-more{
    margin-top: -18px;
} 
    
.btn-read-more .fa{
    font-size: 12px;
}
    
.btn-read-more p{
    font-size: 12px;
}

.services-icons{
    text-align: center;
}
    
.services-us{
    margin-top: 30px;
    padding: 0px 20px 0px 20px;
    box-shadow: none;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    -o-box-shadow: none;
    border-radius: 0px;
}

.services-us h3{
    margin-bottom: 10px;
    text-align: center;
}

.services-us p{
    color: #999;
    line-height: 1.7;
    text-align: center;
}

.icon-png{
    margin: 20px auto 20px auto;
    float: none;
    width: 40px;
}

.inner-services-icons{
    height: 100%;
    clear: both;
}
    
.contact-left h1{
    font-size: 24px;
}
    
.inner-time-info .clock{
	float: left;
	margin-right: 10px;
    width: 50px;
}  
    
.inner-time-info p{
	line-height: 1.3;
}
    
.author-avatar{
    width: 40px;
    height: 40px;
    margin-right: 10px;
}
    
.author-name{
    padding-top: 8px;
}

.number{
	padding: 4px 12px;
}
    
.responsive-view{
    display: inherit;
    padding: 0px;
}

    
.inner-product-right{
    text-align: right;
    width: 180px;
}
       
.checkout-box{
    width: 100%;
    height: 300px;
    float: none;
}

.order-summary{
    padding: 30px 15px 30px 15px;
}
    
.no-line p{
    font-size: 13px;
    margin-top: 20px;
}
    
.blog-content h1{
    font-size: 24px;
    line-height: 1.2;
}


}

.pageNavigationTitle{
	background-color: #082b53b0; 
	padding: 15px 15px 15px 30px; 
	height:45px
}
.pageNavigation{
	background-color: #000000a8; 
	padding: 15px 15px 15px 30px; 
	height:70px
}

.page-map a{
	color:#fff;
}