/* 3. Breadcrumb */
.breadcrumb-bg {
  width: 100%;
  background: #3E9998;
  position: relative;
  z-index: 0;
    padding: 0px;
}
.breadcrumb-container {
  bottom: 0px;
  padding: 40px 0px;
  width: 100%;
  left: 0;
  right: 0;
}
.breadcrumb-content h2 {
  text-transform: uppercase;
  font-size: 22px;
  font-weight: bold;
  color: #A7FDFC;
  line-height: .8;
  margin-bottom: 17px;
}
.breadcrumb-content .breadcrumb {
  padding: 0;
  margin-bottom: 0;
  list-style: none;
  background-color: transparent;
  border-radius: 0;
  justify-content: center;
}
.breadcrumb-content .breadcrumb li {
  text-transform: uppercase;
  color: #A7FDFC;
  font-weight: 700;
}
.breadcrumb-content .breadcrumb li a {
  color: #61EDEB;
}
.breadcrumb-item + .breadcrumb-item {
  padding-left: 0;
}
.breadcrumb-item + .breadcrumb-item::before {
  display: inline-block;
  margin-right: .5rem;
  padding-right: 0;
  margin-left: .5rem;
  color: #61EDEB;
  content: "";
  height: 7px;
  width: 7px;
  background: #014B8E;
  border-radius: 50%;
}


.sidebar {
    width: 100%;
    position: -webkit-sticky !important;
    position: sticky !important;
    top: 80px;
}
.sidebar-inner{
	background: #fff;
	padding: 0px;
	margin: 0 0 25px 0;
	border-radius: 5px;
	box-shadow: 0 1px 2px rgba(0,0,0,0.12);
  transition: all 0.3s cubic-bezier(.25,.8,.25,1);
	
}
.sidebar-inner:hover{
	box-shadow: 0 1px 10px rgba(0,0,0,0.12);
}
.sidebar-title{
	background: #A7FDFC;
	color: #014B8E;
	font-size: 18px;
	font-weight: bold;
	padding: 10px;
	margin: 0px;
}
.sidebar-title a{
	color: #014B8E;	
}
.sidebar ul{
	list-style: none;
	padding: 0px;
}
.sidebar ul li{
	list-style: none;
}
.sidebar ul li a{
  margin-bottom: 10px;
  padding: 10px 0px 10px 45px;
	border-bottom: 1px dashed #014B8E;
	color: #014B8E;
    width: 100%;
	display: block;
    margin: 0;
    list-style: none;
  -webkit-transition: all 100ms linear 0s;
  -o-transition: all 100ms linear 0s;
  transition: all 100ms linear 0s;
	position: relative;
}
.sidebar ul li a:before {
	content: "\f061";
	font-family:'FontAwesome';
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
  -webkit-transition: all 100ms linear 0s;
  -o-transition: all 100ms linear 0s;
  transition: all 100ms linear 0s;
}
.sidebar ul li a:hover {
  padding: 10px 0 10px 40px;
}
.sidebar ul li a:hover:before {
  left: 15px;
}



.gallery-img, .gallery-vid {
  height: 200px;
	margin-bottom: 15px;
	border: 5px solid #fff;
	box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.gallery-img a, .gallery-vid a{
	position: relative;
	width: 100%;
	height: 200px;
}
.gallery-img a:before, .gallery-vid a:before{
	content: '\f002';
	font-family: "FontAwesome";
	width: 100%;
	height: 200px;
	line-height: 200px;
	font-size: 60px;
	color: #ccc;
	text-align: center;
	position: absolute;
	background: rgba(0,0,0,0.3);
	opacity: 0;
	transition: .3s all ease;
}
.gallery-vid a:before{
	content: '\f144';
}
.gallery-img:hover a:before, .gallery-vid:hover a:before{
	opacity: 1;
}
.gallery-img img, .gallery-vid img {
  width: 100%;
	height: 200px;
}


#divide{
	margin: 0px;
	padding: 0px;
	background: #fff;
	box-shadow: 0 0 10px rgba(0,0,0,0.3);
}
#divide h4{
	background: #3E9998;
	color: #fff;
	padding: 10px;
}

#divide ul{
	margin: 0px;
	padding: 15px;
	font-size: 14px;
}


#divide ul li{
	display: block;
	padding: 5px;
	border-bottom: 1px solid #ddd;
}
#divide h5{
	font-weight: bold;
	font-size: 16px;
}