.alert-danger a:link { color: #292368; }
.alert-danger a:visited { color: #ffffff; }
.alert-danger a:hover { color: #ffffff; }

/***********************************************************************************
 *	+ SOCIAL SHARE ICONS
 ***********************************************************************************/

 /* Fixed/sticky icon bar (vertically aligned 50% from the top of the screen) */
.icon-bar {
  position: fixed;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
z-index: 999999;
}


/* Style the icon bar links */
.icon-bar a {
  display: block;
  text-align: center;
  padding: 16px;
  transition: all 0.3s ease;
  color: white;
  font-size: 16px;
}

/* Style the social media icons with color, if you want */
.icon-bar a:hover {
  background-color: #f78e14;
color:#ffffff;
}

.facebookicon {
  background: #3B5998;
  color: white;
}

.twittericon {
  background: #55ACEE;
  color: white;
}

.shareicon {
  background: #d83586;
  color: white;
}

.shareicon a:hover {
  background: #d83586;
  color: white;
}

.whatsappicon {
  background: #27a219;
  color: white;
}

.emailicon {
  background: #a3a7a3;
  color: white;
}

@media (max-width:768px)
{.icon-bar{
 top:unset;
 position:unset;
margin-top:20px;
margin-bottom:20px;
text-align:center;
}

.icon-bar a{
display:inline-block;

}


}

/***********************************************************************************
 *	- CALL ME
 ***********************************************************************************/

.callmebox{
margin-bottom:0px;
}

#callme{
position: fixed;
top: 0px;
z-index:1000;
background-color: #d83586;
color:#ffffff;
padding:10px;
width:100%;
text-align:center;
float:right;
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;
border: thin solid #040c5f;
-webkit-transition: all 0.3s;
transition: all 0.3s;
font-weight:bold;
font-size:16px;
display: none;
}

	#callme:a {
		color: #ffffff!important;
	}

	#callme:hover {
		background-color: #169ee4;
		color: #fff;
	}


	
  /* Smartphone Portrait and Landscape */ 
@media screen and (max-width: 768px) { 
      #callme {display: block;}
      .callmebox{margin-bottom:48px;}
  }

/***********************************************************************************
 *	- Slogan
 ***********************************************************************************/
.slogan{
float:left;
margin-left: 125px;
}

@media (max-width: 1200px) {

.slogan  {
margin-left: 20px;
	}
}

@media (min-width: 200px) and (max-width: 1020px) {

.slogan  {
display:none;
	}
}



/***********************************************************************************
 *	- REVIEW IMAGES
 ***********************************************************************************/
.reviewsimage{
margin-top:20px;
margin-bottom:20px;
}

/***********************************************************************************
 *	- GOOGLE MAPS
 ***********************************************************************************/
.google-maps{
position:relative;
padding-bottom:75%;
overflow:hidden}
.google-maps iframe{
position:absolute;
top:0;
left:0;
width:100%!important;
height:100%!important}

/***********************************************************************************
 *	- EVENTS
 ***********************************************************************************/
 .directions{
width=50%;
}
/***********************************************************************************
 *	- EVENTS
 ***********************************************************************************/
 	
	/* event ARTICLE */
	.event-article {
		margin-bottom: 20px;
	}
	
	.event-article .date {
		display: inline-block;
		padding: 0 20px;
		border-radius: 20px;
		margin-bottom: 15px;
		background-color: #f7931e;
		color: #fff;
		font-family: "Montserrat", sans-serif;
		font-size: 12px;
		letter-spacing: 0.5px;
		text-decoration: none;
		-webkit-transition: all 0.3s;
				transition: all 0.3s;
	}
	
	.event-article-details {
		margin-bottom: 20px;
		font-size: 14px;
	}

/***********************************************************************************
 *	+ EQUAL HEIGHT
 ***********************************************************************************/
.col-container {
	display: table; /* Make the container element behave like a table */
	width: 100%; /* Set full-width to expand the whole page */
	margin-bottom:20px;
	padding:10px;
}

.col-blue {
	display: table-cell; /* Make elements inside the container behave like table cells */
	background-color:#242768;
	color:#ffffff;
	padding:20px;
min-width: 50%;
}

.col-blue h2{
	color:#ffffff;
}

.col-pink {
	display: table-cell; /* Make elements inside the container behave like table cells */
	background-color:#d83586;
	padding:20px;
	color:#ffffff;
	margin-bottom:20px;
min-width: 50%;
}
.col-pink h2{
	color:#ffffff;
}

.col-white {
	display: table-cell; /* Make elements inside the container behave like table cells */
	background-color:#ffffff;
	width:20px;
}


/* If the browser window is smaller than 600px, make the columns stack on top of each other */
@media only screen and (max-width: 600px) {
  .col-pink { 
    display: block;
    width: 100%;
max-width:100%;
  }

  .col-blue { 
    display: block;
    width: 100%;
max-width:100%;
  }

  .col-white { 
    display: block;
    width: 100%;
    height:20px;

  }
}

/***********************************************************************************
 *	+ HOME PAGE IMAGE BLOCKS
 ***********************************************************************************/

* {box-sizing: border-box;}

.blockcontainer {
  position: relative;
  width: 100%;
 margin-bottom:20px;
}

.blockimage {
  display: block;
  width: 100%;
  height: auto;
}

.blockoverlay {
  position: absolute; 
  bottom: 0; 
  background: rgb(47, 187, 172);
  background: rgba(47, 187, 172, 0.9); /* Green see-through */
  color: #f1f1f1; 
  width: 100%;
  transition: .5s ease;
  opacity:1;
  color: white;
  padding: 5px;
  text-align: left;
}

.blockoverlay h3{

color:#ffffff;
margin-bottom:5px;
padding-left:5px;
}

.blockcontainer:hover .blockoverlay {
  opacity: 1;
  background: rgb(22, 159, 229);
  background: rgba(22, 159, 229, 0.9); /* Blue see-through */
}

/***********************************************************************************
 *	+ MENU BOXES
 ***********************************************************************************/

 .menu-box{
padding:10px;
text-align:center;
margin-bottom:20px;
}


/***********************************************************************************
 *	+ ENTS BOXES
 ***********************************************************************************/


.ents-box-blue{
/*border-top: solid 16px #242768;*/
padding:10px;
text-align:center;
margin-bottom:20px;

background-image: url(images/cab-bck.png);
background-repeat:no-repeat;
background-position: top left;
}

.ents-box-pink{
/*border-top: solid 16px #d83586;*/
padding:10px;
text-align:center;
margin-bottom:20px;

/*background-image: url(images/lounge-bck.png);*/
/*background-repeat:no-repeat; */
/*background-position: top center;*/
}                                 

.video-container {
	position:relative;
	padding-bottom:56.25%;
	padding-top:30px;
	height:0;
	overflow:hidden;
margin-bottom:20px;
}

.video-container iframe, .video-container object, .video-container embed {
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
}




/***********************************************************************************
 *	+ ENTS BLOCK COLOURS
 ***********************************************************************************/

.image-ents-blue {
    padding: 5px;
    border: solid 1px #242768;
margin-bottom:20px;

}

.image-ents-pink {
    padding: 5px;
    border: solid 1px #d83586;
margin-bottom:20px;

}

.image-ents-orange {
    padding: 5px;
    border: solid 1px #f7931e;
margin-bottom:20px;

}

/***********************************************************************************
 *	+ FOOTER TELEPHONE
 ***********************************************************************************/

a.ftel {color:#ffffff;}
a.ftel:link  {text-decoration: none; color: #ffffff;}
a.ftel:visited {text-decoration: none; color:#169fe5;}
a.ftel:hover {text-decoration: underline; color:#f7931e;}
a.ftel:active {text-decoration: none; color: #169fe5;}

/***********************************************************************************
 *	+ COLOURS
 ***********************************************************************************/

.pink{
color:#d83586;
}

.lblue{
color:#169fe5;
}

.green{
color:#2fbbac;
}

.dblue{
color:#242768;
}

.orange{
color:#f7931e;
}

.white{
color:#ffffff;
}
/***********************************************************************************
 *	+ LARGE CONTACT
 ***********************************************************************************/
#largecontact  {
float:right;
text-align:right;
	} 
/***********************************************************************************
 *	+ BIG TELEPHONE
 ***********************************************************************************/
#bigtelephone  {
		font-size: 22px;
		line-height: 38px;
        font-weight:700;
		-webkit-transition: all 0.3s;
				transition: all 0.3s;
  text-decoration: none;
display:inline-block;

	}
#bigtelephone:hover {text-decoration:none; color:#f7931e;}
a.bigtelephone:link {text-decoration:none; color:#242768;}
a.bigtelephone:hover {text-decoration:none; color:#f7931e;}

@media only screen 
and (min-device-width : 768px) 
and (max-device-width : 1024px) 
and (orientation : portrait) { #bigtelephone  {margin-right:30px;} }


/***********************************************************************************
 *	+ SMALL CONTACT
 ***********************************************************************************/
#small-contact-block{
display:none;
padding-top:20px;
margin-left:15px;
margin-right:15px;
}
/***********************************************************************************
 *	+ SMALL TELEPHONE
 ***********************************************************************************/
#small-telephone  {
		font-size: 25px;
		line-height: 35px;
        font-weight:700;
		-webkit-transition: all 0.3s;
				transition: all 0.3s;
float:left;
  text-decoration: none;
display:none;

	} 

/***********************************************************************************
 *	+ SMALL FACEBOOK
 ***********************************************************************************/
#small-facebook  {
		font-size: 25px;
		line-height: 35px;
        font-weight:700;
		-webkit-transition: all 0.3s;
				transition: all 0.3s;
float:left;
  text-decoration: none;
display:none;
margin-right:15px;
	} 
/***********************************************************************************
 *	+ SMALL LOCATION
 ***********************************************************************************/
#small-location  {
		font-size: 25px;
		line-height: 35px;
        font-weight:700;
		-webkit-transition: all 0.3s;
				transition: all 0.3s;
float:left;
  text-decoration: none;
display:none;
margin-right:15px;
	} 



@media (min-width: 200px) and (max-width: 767px) {

#bigtelephone  {
display:none;
	}
#largecontact {
display:none;
	}
#small-telephone,#small-facebook,#small-contact-block,#small-location  {
display:inline-block;
	}
}




/***********************************************************************************
 *	+ BREADCRUMB
 ***********************************************************************************/


.float-right{
float:right;
clear:both;
}

.centered{
text-align:center;
margin-bottom:10px;
}

.float-left{
float:left;
}

.float-right{
float:right;
}
.clear:{
clear:left;
}
.key{
min-width:230px;
width:50%;
float:left;
}
.keypic{
width:50%;
float:left;
}

.fb-like{
float:right;
margin-bottom:25px;
}

.img-circle{
border-style:solid;
border-width:8px;
border-color:#fcb216;
}




.thumbs{
margin-top:20px;
}
.thumbdropshadow {
    padding: 5px;
    border: solid 1px #EFEFEF;
margin-bottom:10px;
margin-right:10px;
    height: 22%;
    width: 22%;
}
a:hover img.thumbdropshadow {
    border: solid 1px #CCC;
    -moz-box-shadow: 1px 1px 5px #999;
    -webkit-box-shadow: 1px 1px 5px #999;
        box-shadow: 1px 1px 5px #999;
}


.imagedropshadow {
    padding: 5px;
    border: solid 1px #dddddd;
margin-bottom:20px;
}
a:hover img.imagedropshadow {
    border: solid 1px #93b062;
    -moz-box-shadow: 1px 1px 5px #999;
    -webkit-box-shadow: 1px 1px 5px #999;
        box-shadow: 1px 1px 5px #999;
}

.previous{
float:right;
}
	
/***********************************************************************************
 *	+ TYPOGRAPHY
 ***********************************************************************************/
.red{
color:#93b062 !important;
}


.menutitle{
font-size:18px;
text-decoration:none!important;
}
.menutitle a:link, a:active, a:visited, a:hover{
text-decoration: none!important;
}



 
	body {
		font-size: 14px/26px;
		color: #222;
font-family: 'Montserrat', sans-serif;
	}
	
	h1,
	h2,
	h3,
	h4,
	h5,
	h6 {
		margin: 0;
		color: #242768;
        font-family: 'Raleway', sans-serif;
		font-weight: 600;
	}
	
	h1 {
		margin-bottom: 14px;
		font-size: 28px;
		line-height: 40px;

	}
	
	h2 {
		margin-bottom: 14px;
		font-size: 22px;
		line-height: 36px;
	}
	
	h3 {
		margin-bottom: 12px;
		font-size: 18px;
		line-height: 32px;
	}
	
	h4 {
		margin-bottom: 10px;
		font-size: 16px;
		line-height: 27px;
	}
	
	h5 {
		margin-bottom: 8px;
		font-size: 14px;
		line-height: 24px;
	}
	
	h6 {
		margin-bottom: 6px;
		font-size: 12px;
		line-height: 21px;
color:#ffffff;
	}
	
	h1 a, 
	h2 a, 
	h3 a, 
	h4 a, 
	h5 a, 
	h6 a {
		color: #13c0d7!important ;
		text-decoration: none;
		-webkit-transition: color 0.2s;
				transition: color 0.2s;
	}
	
	h1 a:hover, 
	h2 a:hover, 
	h3 a:hover, 
	h4 a:hover, 
	h5 a:hover, 
	h6 a:hover {
		color: #93b062;
		text-decoration: none;
	}
	
	h1 small,
	h2 small,
	h3 small,
	h4 small,
	h5 small,
	h6 small {
		color: inherit;
		font-size: 85%;
	}
	
	p { 
		margin-bottom: 20px; 
	}
	
	
	/* LINKS */
	a {
		color: #d83586;
font-weight:bold;
	}
	
	a:hover,
	a:focus { 
		outline: 0;
		color: #f7931e;
	}

	
	
	/* IMAGES */
	img {
		max-width: 100%; 
	}
	
	
	/* ADDRESS */
	address {
		line-height: inherit;
	}
	
	
	
	/* TRANFORMATION CLASSES */
	.text-mute {
		color: #b4b4b4;
	}
	
	.text-default-color {
		color: #000;
	}
	
	.text-default-highlight {
		padding: 3px 10px;
		background-color: #93b062;
		color: #000;
	}
	
	.text-black-highlight {
		padding: 3px 10px;
		background-color: #212121;
		color: #fff;
	}
	
	.text-big {
		color: #212121;
		font-size: 18px;
		line-height: 30px;
	}
	
	.dropcap {
		float: left;
font-family: 'Bangers', cursive;
		font-size: 36px;
		line-height: 48px;
		font-weight: 700;
		margin-right: 10px;
	}
	
	.bluring {
		-webkit-filter: blur(3px);
				filter: blur(3px);
		-webkit-transition: all 0.3s;
				transition: all 0.3s;
	}
	
	.last,
	.no-margin-bottom {
		margin-bottom: 0 !important;
	}
	
	@media (max-width: 767px) {
		
		.last {
			margin-bottom: 20px !important;
		}
		
	}
	
/***********************************************************************************
 *	+ HEADLINE
 ***********************************************************************************/
	
	.headline {
		margin-bottom: 10px;
width:100%;

	}
	
	.headline:after {
		display: block;
		width: 100%;

		margin-top: 15px;
		content: "";
	}
	
	.headline.text-center:after {
		margin: 15px auto 0;
	}
	
	.headline.text-right:after {
		float: right;
	}
	
	.headline h1 {
		margin-bottom: 0;
		line-height: 36px;
		font-weight: 700;
padding-top:15px;
	}

/***********************************************************************************
 *	+ ALERTS
 ***********************************************************************************/
	
	.alert {
		padding: 15px 30px;
		border: none;
		border-radius: 0;
		color: #fff;
		text-align: center;
	}

	.alert.alert-info {
		background-color: #838383;
	}

	.alert.alert-danger {
		background-color: #f30d39;
	}

	.alert.alert-success {
		background-color: #003689;
	}

	.alert.alert-warning {
		background-color: #f08615;
	}
	
	h1.error {
		color: #93b062;
		font-size: 72px;
		line-height: 72px;
		text-align: right;
		text-transform: uppercase;
	}
	
	h1.error small {
		display: block;
		font-size: 30px;
		letter-spacing: 4px;
	}
	
	@media (max-width: 767px) {
		
		h1.error {
			margin-bottom: 30px;
			text-align: left;
		}
		
	}

/***********************************************************************************
 *	+ LISTS
 ***********************************************************************************/
	
	/* GENERAL */
	ul,
	ol {
		padding: 0;
		list-style-position: inside;
	}
	
	li > ul, 
	li > ol { 
		margin-bottom: 0; 
		margin-left: 20px; 
	}
	
	dl {
		margin-bottom: 20px;
	}
	
	/* CHECK LIST */
	.check-list {
		color: #fff;
		font-weight: 600;
		list-style: none;
	}
	
	.check-list li {
		margin-bottom: 7px;
	}
	
	.check-list li:last-child {
		margin-bottom: 0;
	}
	
	.check-list li:before {
		margin-right: 20px;
		color: #fff;
		font-family: "FontAwesome";
		content: "\f00c";
	}
	
	
	/* BULLET LIST */
	.bullet-list {
		color: #fff;
		font-weight: 600;
		list-style: none;
	}
	
	.bullet-list li {
		margin-bottom: 7px;
	}
	
	.bullet-list li:last-child {
		margin-bottom: 0;
	}
	
	.bullet-list li:before {
		position: relative;
		top: -2px;
		display: inline-block;
		width: 6px;
		height: 6px;
		border-radius: 50%;
		margin-right: 15px;
		content: "";
	}
	
	/* LOGOS LIST */
	.logos-list {
		margin-bottom: 20px;
		list-style: none;
	}
	
	.logos-list li a {
		float: left;
		display: block;
		width: 20%;
		height: 90px;
		padding: 0 20px;
		text-align: center;
		background: no-repeat top center;
		-webkit-transition: all 0.3s;
				transition: all 0.3s;
	}
	
	.logos-list li a:hover {
		background-position: bottom center;
	}
	
	.logos-list:after {
		visibility: hidden;
		display: block;
		font-size: 0;
		content: " ";
		clear: both;
		height: 0;
	}
	
	
	@media (max-width: 767px) {
		
		.logos-list li a {
			float: none;
			width: 100%;
			margin-bottom: 30px;
		}
		
		.logos-list li a:last-child {
			margin-bottom: 0;
		}
		
	}

/***********************************************************************************
 *	+ BUTTONS
 ***********************************************************************************/
	
	.btn {
		position: relative;
		z-index: 1;
		overflow: hidden;
		padding: 12px 30px;
		border: none;
		margin-bottom: 20px;
		font-size: 14px;
		font-weight: 600;
		text-transform: uppercase;
		-webkit-transform: translateZ(0);
			-ms-transform: translateZ(0);
				transform: translateZ(0);
		-webkit-transition: all 0.3s;
				transition: all 0.3s;
	}
	
	.btn:last-child {
		margin-right: 0;
	}
	
	.btn:after {
		position: absolute;
		z-index: -1;
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
		width: 0;
		opacity: 0;
		content: "";
		-webkit-transition: all 0.3s;
				transition: all 0.3s;
	}
	
	.btn:focus,
	.btn:active {
		outline: 0 !important;
		box-shadow: none;
	}
	
	.btn:hover:after {
		width: 100%;
		opacity: 1;
	}
	
	.btn-xs {
		padding: 10px 25px;
		font-size: 12px;
	}
	
	.btn-lg {
		padding: 12px 50px;
	}
	
	
	/* DEFAULT BUTTON */
	.btn-default {
		background-color: #242768;
		color: #fff;
	}
	
	.btn-default, 
	.btn-default:hover, 
	.btn-default:focus,
	.btn-default:active,
	.btn-default:active:focus {
		background-color: #242768;
		color: #fff;
	}
	
	.btn-default:hover {
		background-color: #f7931e;
		color: #ffffff;
	}
	
	
	/* DARK BUTTON */
	.btn-dark {
		background-color: #169fe5 ;
		color: #fff;
	}
	
	.btn-dark:after {
		background-color: #f7931e;
	}
	
	.btn-dark:hover {
		background-color: #f7931e;
		color: #fff;
	}
	
	.btn-dark:focus {
		color: #fff;
	}
	
	
	/* BLACK BUTTON */
	.btn-pink {
		border: 1px solid #d83586 ;
		color: #fff ;
		background-color: #d83586 ;
	}
	
	.btn-pink:after {
		background-color: #d83586 ;
	}
	
	.btn-pink:hover {
		background-color: #f7931e ;
		color: #000!important;
	}

	/* WHITE BUTTON */
	.btn-whiteyellow {
		border: 1px solid #fff;
		background-color: #1d9501;
		color: #ffffff!important;
	}
	
	.btn-whiteyellow:after {
		background-color: #c3001d;
	}
	
	.btn-whiteyellow:hover {
		background-color: #c3001d!importan;
		color: #fff!important;
		border: 1px solid #c3001d;
	}
	
/***********************************************************************************
 *	+ DIVIDERS
 ***********************************************************************************/
	
	.hr {
		border-top: 1px solid #ebebeb;
		margin: 30px 0;
	}
	
	.hr.default-color {
		border-top-color: #93b062;
	}
	
	.hr.black {
		border-top-color: #212121;
	}
	
/***********************************************************************************
 *	+ TEXT BOXES
 ***********************************************************************************/
 
	.text-box {
		position: relative;
		z-index: 1;
		padding: 42px 40px;
		margin-bottom: 50px;
		background: no-repeat center center;
		background-color: #e6e6b3;
		-webkit-background-size: cover;
				background-size: cover;
		-webkit-transform: translateZ(0);
			-ms-transform: translateZ(0);
				transform: translateZ(0);
	}
	
	.text-box-overlay {
		position: absolute;
		z-index: -1;
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
		background-color: #93b062 ;
		opacity: 0.85;
	}
	
	.text-box.rounded {
		border-radius: 5px;
	}
	
	.text-box.bordered {
		border: 1px solid #ebebeb;
		background-color: transparent;
	}
	
	.text-box.bordered-default-color {
		border: 1px solid #93b062;
		background-color: transparent;
	}
	
	.text-box .text-box-title {
		margin-bottom: 20px;
	}
	
	.text-box .text-box-title p {
		margin-bottom: 0;
		font-size: 12px;
		letter-spacing: 3px;
		text-transform: uppercase;
	}
	
	.text-box .text-box-title h2 {
		margin-bottom: 0;
		font-weight: 700;
	}
	
	.text-box.default-color {
		background-color: #93b062;
		color: #fff;
	}
	
	.text-box.blue {
		background-color: #242768;
		color: #fff;
	}
	
	.text-box.blue a,
	.text-box.blue h1,
	.text-box.blue h2,
	.text-box.blue h3,
	.text-box.blue h4,
	.text-box.blue h5,
	.text-box.blue h6, 
	.text-box.blue-color a,
	.text-box.blue-color h1,
	.text-box.blue-color h2,
	.text-box.blue-color h3,
	.text-box.blue-color h4,
	.text-box.blue-color h5,
	.text-box.blue-color h6 {
		color: inherit;
	}

	.text-box.pink {
		background-color: #d83586;
		color: #fff;
	}
	
	.text-box.pink a,
	.text-box.pink h1,
	.text-box.pink h2,
	.text-box.pink h3,
	.text-box.pink h4,
	.text-box.pink h5,
	.text-box.pink h6, 
	.text-box.pink-color a,
	.text-box.pink-color h1,
	.text-box.pink-color h2,
	.text-box.pink-color h3,
	.text-box.pink-color h4,
	.text-box.pink-color h5,
	.text-box.pink-color h6 {
		color: inherit;
	}
	
	.text-box .headline {
		margin-bottom: 15px;
	}
	
	.text-box .btn {
		margin-top: 10px;
	}
	
	.text-box.dark .btn-white,
	.text-box.default-color .btn-white {
		border-color: #fff;
		color: #fff;
	}
	
	.text-box.default-color .btn-white:after {
		background-color: #93b062 ;
	}
	
	.text-box.default-color .btn-white:hover {
		border-color: #93b062 ;
		background-color: #93b062 ;
	}
	
	.text-box.dark .btn-white:after {
		background-color: #93b062;
	}
	
	.text-box.dark .btn-white:hover {
		border-color: #93b062;
		background-color: #93b062;
	}
	
	.text-box > *:last-child {
		margin-bottom: 0;
	}
	
	/* TEXT BOXES LIST */
	.text-boxes-list {
		margin-bottom: 100px;
		list-style: none;
	}
	
	.text-boxes-list > li {
		float: left;
		width: 33.33333%;
	}
	
	.text-boxes-list > li .text-box {
		padding: 20% 15%;
		margin-bottom: 0;
	}
	
	.text-boxes-list:after {
		visibility: hidden;
		display: block;
		font-size: 0;
		content: " ";
		clear: both;
		height: 0;
	}
	
	@media (min-width: 768px) and (max-width: 991px) {
		
		.text-box {
			padding: 42px 20px;
		}
		
		.text-boxes-list > li {
			float: none;
			width: 100%;
		}
		
	}
	
	@media (max-width: 767px) {
		
		.text-box {
			padding: 50px 20px;
		}
		
		.text-boxes-list > li {
			float: none;
			width: 100%;
		}
		
		.text-boxes-list > li .text-box {
			padding: 50px 20px;
		}
		
	}
	
/***********************************************************************************
 *	+ IMAGE BOXES
 ***********************************************************************************/
	
	/* IMAGE BOX STYLE 1 */
	.image-box.style-1 {
		margin-bottom: 50px;
	}
	
	.image-box.style-1 .image-box-thumbnail {
		position: relative;
		margin-bottom: 35px;
	}
	
	.image-box.style-1 h5 {
		margin-bottom: 35px;
		font-weight: 700;
		text-transform: uppercase;
	}


	
	/* IMAGE BOX STYLE 2 */
	.image-box.style-pink {
		position: relative;
		margin-bottom: 50px;
		background-color: #169fe5 ;
		color: #fff;
	}

	.image-box.style-pink .image-box-thumbnail {
		position: relative;
		margin-bottom: 35px;
	}
	
	
	.image-box.style-pink h3 {
		color: #fff;
	}
	
	.image-box.style-pink > a {
		position: absolute;
		bottom: 0;
		left: 0;
		right: 0;
		padding: 15px 30px;
		margin-bottom: 0;
		background-color: #93b062;
		color: #fff;
		font-family: "Montserrat", sans-serif;
		-webkit-transition: all 0.3s;
				transition: all 0.3s;
	}
	
	.image-box.style-pink> a:hover {
		background-color: #212121;
		color: #fff;
	}
	
	.image-box.style-pink .image-box-content {
		position: absolute;
		top: 50%;
		right: 20px;
		text-align: right;
		-webkit-transform: translateY(-50%);
			-ms-transform: translateY(-50%);
				transform: translateY(-50%);
	}
	
	
	/* IMAGE BOX STYLE 3 */
	.image-box.style-3 {
		position: relative;
		overflow: hidden;
		margin-bottom: 50px;
	}
	
	.image-box.style-3 .image-box-thumbnail img {
		display: block;
		width: 100%;
	}
	
	.image-box.style-3 .image-box-content {
		position: absolute;
		z-index: 1;
		bottom: 0;
		left: 0;
		width: 100%;
		padding: 0 10px 20px;
		color: #fff;
		text-align: center;
		-webkit-transform: translateZ(0);
			-ms-transform: translateZ(0);
				transform: translateZ(0);
	}
	
	.image-box.style-3 .image-box-content:before {
		position: absolute;
		z-index: -1;
		top: -35px;
		right: 0;
		bottom: -50px;
		left: 0;
		background-color: #93b062;
		content: "";
		-webkit-transform: skewY(-15deg);
			-ms-transform: skewY(-15deg);
				transform: skewY(-15deg);
		
	}
	
	.image-box.style-lblue .image-box-content h3 {
		color: #fff;
	}
	
	.image-box.style-lblue .image-box-content > *:last-child {
		margin-bottom: 0;
	}
	
	@media (max-width: 767px) {
		
		.image-box.style-3 .image-box-content:before {
			top: -15px;
			bottom: 0;
			-webkit-transform: skewY(0);
				-ms-transform: skewY(0);
					transform: skewY(0);
			
		}
		
	}

	/* IMAGE BOX STYLE 4 */
	.image-box.style-4 {
		position: relative;
		overflow: hidden;
		margin-bottom: 50px;
	}
	
	.image-box.style-4 .image-box-thumbnail img {
		display: block;
		width: 100%;
	}
	
	.image-box.style-4 .image-box-content {
		position: absolute;
		z-index: 1;
		bottom: 0;
		left: 0;
		width: 100%;
		padding: 0 10px 20px;
		color: #fff;
		text-align: center;
		-webkit-transform: translateZ(0);
			-ms-transform: translateZ(0);
				transform: translateZ(0);
	}
	
	.image-box.style-4 .image-box-content:before {
		position: absolute;
		z-index: -1;
		top: -35px;
		right: 0;
		bottom: -50px;
		left: 0;
		background-color: #93b062 ;
		content: "";
		-webkit-transform: skewY(-15deg);
			-ms-transform: skewY(-15deg);
				transform: skewY(-15deg);
		
	}
	
	.image-box.style-4 .image-box-content h3 {
		color: #fff;
	}
	
	.image-box.style-4 .image-box-content > *:last-child {
		margin-bottom: 0;
	}
	
	@media (max-width: 767px) {
		
		.image-box.style-4 .image-box-content:before {
			top: -15px;
			bottom: 0;
			-webkit-transform: skewY(0);
				-ms-transform: skewY(0);
					transform: skewY(0);
			
		}
		
	}

/***********************************************************************************
 *	+ ACCORDION
 ***********************************************************************************/
	
	.panel {
		background-color: transparent;
		box-shadow: none;
	}
	
	.panel-heading {
		padding: 0;
		border: none;
		border-radius: 0;
		background-color: transparent
		-webkit-transform: translateZ(0);
			-ms-transform: translateZ(0);
				transform: translateZ(0);
		-webkit-transition: all 0.3s;
				transition: all 0.3s;
	}
	
	.panel-title a,
	.panel-title a:focus {
		position: relative;
		display: block;
		padding: 9px 23px 9px 10px;
		margin-bottom: 10px;
		background-color: #ffffff;
		color: #000!important;
        font-family: 'Raleway', sans-serif;
		font-weight: 600;
		text-decoration: none;
		-webkit-transition: all 0.3s;
				transition: all 0.3s;
  border-style: solid;
  border-width: 1px;
border-color:#dddddd;
	}
	
	.panel-title a:before {
		position: absolute;
		top: 50%;
		right: 20px;
		content: "+";
		-webkit-transform: translateY(-50%);
			-ms-transform: translateY(-50%);
				transform: translateY(-50%);
		-webkit-transition: all 0.3s;
				transition: all 0.3s;
		color: #242768!important;
font-size:36px;
	}
	
	.panel-title a:hover,
	.panel-title a[aria-expanded="true"] {
		background-color: #eaf8f9;
		color: #242768;
	}
	
	.panel-title a[aria-expanded="true"]:before {
		content: "-";
	}
	
	.panel-group .panel + .panel {
		margin-top: 0;
	}
	
	.panel-group .panel-heading + .panel-collapse > .list-group, 
	.panel-group .panel-heading + .panel-collapse > .panel-body {
	 	padding: 20px 25px 30px;
		border: none;
	}
	
	.panel-body > *:last-child {
		margin-bottom: 0;
        background-image: url(../../images/entsbck.png);
	}

	.panel-body dates{

   float:right;
font-size:12px;
}
 
/***********************************************************************************
 *	+ TABS
 ***********************************************************************************/
	
	.nav-tabs {
		border-bottom: none;
	}

	.nav-tabs > li {
		margin-bottom: 0;
		margin-right: 5px;
	}
	
	.nav-tabs > li:last-child {
		margin-right: 0;
	}

	.nav-tabs > li > a {
		padding: 10px 25px;
		border: none;
		border-radius: 5px;
		background-color: #e6e6b3;
		color: #212121;
		-webkit-transition: all 0.3s;
				transition: all 0.3s;
	}

	.nav-tabs > li > a:focus {
		border-color: transparent;
		background-color: transparent;
	}

	.nav-tabs > li > a:hover,
	.nav-tabs > li.active > a,
	.nav-tabs > li.active > a:hover,
	.nav-tabs > li.active > a:focus {
		border: none;
		background-color: #93b062;
		color: #fff;
	}
	
	.tab-content {
		margin: 50px 0;
	}
	
	.tab-content h4 {
		margin-bottom: 20px;
	}
	
	.tab-content ul {
		margin-top: 10px;
		margin-left: 30px;
	}
	
	.tab-content .tab-pane > *:last-child {
		margin-bottom: 0;
	}
	
	.tab-content:after {
		visibility: hidden;
		display: block;
		font-size: 0;
		content: " ";
		clear: both;
		height: 0;
	}
	
	@media (max-width: 767px) {
		
		.nav-tabs > li {
			float: none;
			margin-right: 0;
			margin-bottom: 1px;
		}
		
		.nav-tabs > li:last-child {
			margin-bottom: 0;
		}
		
	}

/***********************************************************************************
 *	+ GOOGLE MAPS
 ***********************************************************************************/

/***********************************************************/

   .map2 {
        position: relative;
        padding-bottom: 75%; // This is the aspect ratio
        height: 0;
        overflow: hidden;
    }
    .map2 iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100% !important;
        height: 100% !important;
    }

/***********************************************************/
 	.map {
		height: 300px;
		margin-bottom: 50px;
        padding:10px;
        border:1px solid #dddddd;
	}
	
	.map img { 
		max-width: none; 
        padding:10px;
        border:1px solid #dddddd;
	}
	
	@media (max-width: 767px) {
		
		.map {
			height: 400px !important;
        border:1px solid #dddddd;
		}
		
	}


 

	
/***********************************************************************************
 *	+ SOCIAL MEDIA
 ***********************************************************************************/
	
	.social-media {
		margin-bottom: 20px;
	}
	
	.social-media a {
		display: inline-block;
		margin-right: 20px;
		font-size: 18px;
		line-height: 32px;
		color: #242768;
		text-decoration: none;
		-webkit-transition: all 0.3s;
				transition: all 0.3s;
	}
	
	.social-media.bordered,
	.social-media.rounded {
		margin-top: -5px;
	}
	
	.social-media.bordered a {
		width: 25px;
		height: 25px;
		border: 1px solid #c7c7c7;
		border-radius: 50%;
		margin: 5px 15px 5px 0;
		font-size: 12px;
		line-height: 20px;
		text-align: center;
	}
	
	.social-media.rounded a {
       	width: 34px;
		height: 34px;
	   vertical-align: middle; 
		border-radius: 50%;
        margin-top:10px;
		background-color: #242768;
		color: #fff;
		font-size: 16px;
		text-align: center;
padding-top:2px;
	}
	
	.social-media a:last-child {
		margin-right: 0;
	}
	.social-media a.phone:hover { color: #f7931e !important; }
	.social-media a.location:hover { color: #f7931e !important; }	
	.social-media a.facebook:hover { color: #3b579d !important; }
	.social-media a.twitter:hover { color: #2caae1 !important; }
	.social-media a.google:hover { color: #da4835 !important; }
	.social-media a.flickr:hover { color: #0061db !important; }
	.social-media a.youtube:hover { color: #cc181e !important; }
	.social-media a.tripadvisor:hover { color: #00a680 !important; }
	.social-media a.tiktok:hover { color: #000000 !important; }
	.social-media a.whatsapp:hover { color: #44c254 !important; }
	.social-media a.email:hover { color: #689c49 !important; }
	
	.social-media.bordered a.facebook:hover { 
		color: #3b579d !important; 
		border-color: #3b579d !important; 
	}
	.social-media.bordered a.twitter:hover { 
		color: #2caae1 !important; 
		border-color: #2caae1 !important; 
	}

	.social-media.bordered a.google:hover { 
		color: #da4835 !important; 
		border-color: #da4835 !important; 
	}
	.social-media.bordered a.instagram:hover { 
		color: #82685a !important; 
		border-color: #82685a !important; 
	}

	.social-media.bordered a.youtube:hover { 
		color: #cc181e !important; 
		border-color: #cc181e !important; 
	}
	.social-media.bordered a.tripadvisor:hover { 
		color: #1e892f !important; 
		border-color: #1e892f !important; 
	}
	.social-media.bordered a.email:hover { 
		color: #6c6f71 !important; 
		border-color: #6c6f71 !important; 
	}

	.social-media.bordered a.snapchat:hover { 
		color: #efe200 !important; 
		border-color: #efe200 !important; 
}
	
	.social-media.rounded a:hover {
		color: #fff !important;
	}
	
	.social-media.rounded a.facebook:hover { background-color: #3b579d !important; }
	.social-media.rounded a.twitter:hover { background-color: #2caae1 !important; }
	.social-media.rounded a.google:hover { background-color: #da4835 !important; }
	.social-media.rounded a.instagram:hover {background: radial-gradient(circle at 30% 107%, #285AEB 0%, #285AEB 5%, #d6249f 45%,#fd5949 60%,#fdf497 90%);}
	.social-media.rounded a.youtube:hover { background-color: #cc181e !important; }
	.social-media.rounded a.tiktok:hover { background-color: #000000 !important; }
	.social-media.rounded a.email:hover { background-color: #689c49 !important; }
	.social-media.rounded a.tripadvisor:hover { background-color: #00a680 !important; }
	
	/* DEFAULT COLOR */
	.social-media.default-color a:hover {
		color: #93b062 !important;
	}
	
	.social-media.bordered.default-color a:hover {
		border-color: #93b062 !important;
		color: #93b062 !important;
	}
	
	.social-media.rounded.default-color a:hover {
		background-color: #93b062 !important;
		color: #fff !important;
	}
	

 
/***********************************************************************************
 *	+ TESTIMONIALS
 ***********************************************************************************/
	
	/* BLOCKQUOTES */
	blockquote {
		position: relative;
		padding: 0;
		padding-left: 20px;
		border: none;
		margin-bottom: 30px;
		font: inherit;
	}
	
	blockquote:before {
		position: absolute;
		top: 0;
		bottom: 0;
		left: 0;
		border: 2px solid #93b062;
		border-radius: 5px;
		content: "";
	}
	
	blockquote footer:before,
	blockquote small:before {
		content: none;
	}
	
	
	/* TESTIMONIALS */
	.actcarousel {
		padding: 0px 5px 20px;
		margin-bottom: 20px;
		color: #ffffff;
		text-align: center;
	}
	
	.actcarousel blockquote {
		padding-left: 0;
		margin-bottom: 40px;
		font-size: 15px;
		font-style: italic;
	}
	
	.actcarousel blockquote:before {
		position: relative;
		display: block;
		border: none;
		margin-bottom: 10px;
		color: #93b062;
		font-size: 48px;
		font-style: normal;
		content: "\201c";
	}
	
	.actcarousel > img {
		display: inline-block;
		margin-bottom: 30px;
	}
	
	.actcarousel > h5 {
		padding-top: 10px;
		margin: 0 -15px;
	}
	
	.actcarousel > h5 span pink {
		color: #d83586;
		font-weight: 500;
	}
	.actcarousel > h5 span dblue {
		color: #242768;
		font-weight: 500;
	}
	
	.actcarousel > h5 small {
		display: block;
		margin-top: 5px;
		color: #2fbbac;
		font-family: "Montserrat", sans-serif;
		font-size: 11px;
		letter-spacing: 2px;
		text-transform: uppercase;
	}

/***********************************************************************************
 *	+ ISOTOPE
 ***********************************************************************************/
	
	.isotope {
		margin-bottom: 75px;
	}
	
	.isotope.gutter {
		margin: -15px -15px 50px;
	}
	
	.isotope .isotope-item {
		float: left;
		width: 25%;
	}
	
	.isotope.gutter .isotope-item {
		padding: 15px;
	}
	
	.isotope.col-3 .isotope-item {
		width: 33.333333%;
	}
	
	.isotope.col-4 .isotope-item {
		width: 25%;
	}
	
	.isotope .portfolio-item {
		margin-bottom: 0;
	}
	
	.isotope:after {
		visibility: hidden;
		display: block;
		font-size: 0;
		content: " ";
		clear: both;
		height: 0;
	}
	
	@media (min-width: 768px) and (max-width: 991px) {
		
		.isotope.col-4 .isotope-item {
			width: 33.33333%;
		}
		
	}
	
	@media (max-width: 767px) {
		
		.isotope .isotope-item,
		.isotope.col-3 .isotope-item,
		.isotope.col-4 .isotope-item {
			float: none;
			width: 100%;
		}
		
	}
	
	@media (min-width: 480px) and (max-width: 767px) {
		
		.isotope .isotope-item,
		.isotope.col-3 .isotope-item,
		.isotope.col-4 .isotope-item {
			float: left;
			width: 50%;
		}
		
	}
	
/***********************************************************************************
 *	+ FILTER
 ***********************************************************************************/
 
	.filter {
		list-style: none;
		margin-bottom: 50px;
	}
	
	.filter li {
		display: inline-block;
		margin-right: 15px;
		text-align: center;
	}
	
	.filter li:last-child {
		margin-right: 0;
	}
	
	.filter li a {
		display: block;
		text-decoration: none;
		padding: 4px 25px;
		color: #ffffff;
		-webkit-transition: all 0.3s;
				transition: all 0.3s;
		border-color: #93b062 ;
		background-color: #93b062 ;
	}
	
	.filter li a:hover,
	.filter li a.active {
		border-color: #93b062;
		background-color: #93b062;
		color: #fff;
	}
	
	@media (max-width: 790px) {
		
		.filter li {
			display: block;
			margin-right: 0;
			margin-bottom: 15px;
		}
		
		.filter li:last-child {
			margin-bottom: 0;
		}
		
	}


/***********************************************************************************
 *	+ BREADCRUMB
 ***********************************************************************************/
	
	.breadcrumb {
		background-color: transparent;
		margin: 0;
		padding: 0;

	}

	.breadcrumb > li + li:before {
		padding: 0;
		margin: 0 10px 0 7px;
		color: #2e2925;
		font-family: "FontAwesome";
		content: "\f105";
	}

	.breadcrumb li a {
		color: #242768;
		-webkit-transition: all 0.3s;
				transition: all 0.3s;
	}

	.breadcrumb li a:hover {
		color: #f7941e;
		text-decoration: none;
	}

	.breadcrumb li.active {
		color: #c43079;
font-weight:bold;
	}
	
/***********************************************************************************
 *	+ FULL SECTIONS
 ***********************************************************************************/
	
	.full-section {
		position: relative;
		z-index: 1;
        margin-top:100px;
        margin-bottom:100px;


		background: no-repeat center center;
	}
	
	.full-section-overlay-color {
		position: absolute;
		z-index: 2;
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
		background-color: #000;
		opacity: 0.65;
	}
	
	.full-section-container {
		position: relative;
		z-index: 3;
        padding:20px;
	}
	
	
	/* FULL SCREEN */
	.full-screen {
		margin-bottom: -50px;
	}
	
	.full-screen .full-section-container {
		position: absolute;
		top: 50%;
		left: 0;
		width: 100%;
		-webkit-transform: translateY(-50%);
			-ms-transform: translateY(-50%);
				transform: translateY(-50%);
	}
	
	
	/* PARALLAX */
	.parallax { 
		background-attachment: fixed !important;
		-webkit-background-size: cover !important;
				background-size: cover !important;	
	}
	
	
	/* FULL SECTION WITH HALF IMAGE/SOLID COLOR */
	.half-image-left,
	.half-image-right {
		position: absolute;
		top: 0;
		bottom: 0;
		width: 50%;
		background: no-repeat center center;
		-webkit-background-size: cover;
				background-size: cover;
	}
	
	.half-image-left {
		left: 0;
	}
	
	.half-image-right {
		right: 0;
	}
	
	.half-image-left img,
	.half-image-right img {
		display: none;
	}
	
	
	/* ELEMENTS IN DARK SECTION */
	.full-section.dark-section {
		background-color: #212121;
		color: #fff;
        border-bottom: 11px;
        border-top: 11px;
        border-image: url(images/copyrightbar.png)
	}
	
	.full-section.dark-section a,
	.full-section.dark-section h1,
	.full-section.dark-section h2,
	.full-section.dark-section h3,
	.full-section.dark-section h4,
	.full-section.dark-section h5,
	.full-section.dark-section h6,
	.full-section.dark-section .text-big {
		color: #93b062;
	}
	
	.full-section.dark-section a:hover {
		color: #93b062;
	}
	
	.full-section.dark-section .check-list,
	.full-section.dark-section .bullet-list {
		color: inherit;
	}
	
	.full-section.dark-section .btn-white {
		border: none;
		background-color: #fff;
		color: #212121;
	}
	
	.full-section.dark-section .btn:hover {
		color: #fff;
	}
	
	.full-section.dark-section .text-box {
		color: #212121;
	}
	
	.full-section.dark-section .text-box.bordered,
	.full-section.dark-section .text-box.bordered-default-color {
		color: inherit;
	}
	
	.full-section.dark-section .text-box .btn-dark,
	.full-section.dark-section .text-box .btn-default {
		color: #fff;
	}
	
	.full-section.dark-section .text-box .btn-dark:hover,
	.full-section.dark-section .text-box .btn-default:hover {
		color: #fff;
	}
	
	.full-section.dark-section .text-box.dark,
	.full-section.dark-section .text-box.default-color {
		color: #fff;
	}
	
	.full-section.dark-section .panel-title a,
	.full-section.dark-section .panel-title a:focus {
		color: #212121;
	}
	
	.full-section.dark-section .panel-title a:hover,
	.full-section.dark-section .panel-title a[aria-expanded="true"] {
		color: #fff;
	}
	
	.full-section.dark-section .nav-tabs > li > a {
		color: #212121;
	}
	
	.full-section.dark-section .nav-tabs > li > a:hover,
	.full-section.dark-section .nav-tabs > li.active > a {
		color: #fff;
	}
	
	.full-section.dark-section .pie-chart-percent,
	.full-section.dark-section .pie-chart-details {
		color: inherit;
	}
	
	.full-section.dark-section .progress-bar span {
		color: inherit;
	}
	
	.full-section.dark-section .counter-value {
		color: inherit;
	}
	
	.full-section.dark-section .countdown > div { 
		color: inherit;
	}
	
	.full-section.dark-section .price-plan-header h6 {
		color: #fff;
	}
	
	.full-section.dark-section .price-plan .btn-dark,
	.full-section.dark-section .price-plan .btn-default {
		color: #fff;
	}
	
	.full-section.dark-section .vertical-timeline li .period {
		color: inherit;
	}
	
	.full-section.dark-section .actcarousel > h5 {
		color: #ffffff;
	}
	
	.full-section.dark-section .filter li a:hover {
		color: #fff;
	}
	
	.full-section.dark-section .pagination li a {
		color: #212121;
	}
	
	.full-section.dark-section .pagination li a:hover,
	.full-section.dark-section .pagination li.active a,
	.full-section.dark-section .pagination li.active a:hover {
		color: #fff;
	}
	
	.full-section.dark-section .service-box .service-box-content > a {
		color: inherit;
	}
	
	.full-section.dark-section .service-box .service-box-content > a:hover {
		color: #93b062;
	}
	
	.full-section.dark-section .service-box.style-3:hover > i {
		color: inherit;
	}
	
	.full-section.dark-section .portfolio-item-hover a.zoom-action {
		color: #fff;
	}
	
	.full-section.dark-section .blog-article .date:hover {
		color: #fff;
	}
	
	.full-section.dark-section .widget-tags a {
		color: #838383;
	}
	
	.full-section.dark-section .widget-tags a:hover {
		color: #fff;
	}
	
	.full-section.dark-section .widget-recent-posts ul li .post-title {
		color: inherit;
	}
	
	.full-section.dark-section .widget-recent-posts ul li .post-title:hover {
		color: #93b062;
	}
	
	
	/* BACKROUNDS AND STYLE FOR FULL SECTIONS */
	#section-1 {
		padding: 120px 0 100px;
		margin-top: 50px;
		margin-bottom: 0;
		background-color: #f4f8fd;
	}
	
	#section-1 .headline {
		margin-bottom: 50px;
	}
	
	#section-2 {
		padding: 50px 0 30px;
		margin-bottom: 0;
		background-color: #93b062;
		font-size: 24px;
		line-height: 40px;
	}
	
	#section-2 .btn {
		margin-top: 17px;
	}
	
	#section-2 .btn-dark:after {
		background-color: #fff;
	}
	
	#section-2 .btn-dark:hover {
		background-color: #fff;
		color: #212121;
	}
	
	#section-3 {
		padding: 35px 0 15px;
		background-color: #93b062 ;
		font-size: 24px;
		line-height: 40px;
	}
	
	#section-4 {
		padding: 120px 0 80px;
		margin-top: 50px;
		margin-bottom: 0;
		background-image: url(../../images/backgrounds/bg-1.jpg);
	}
	
	#section-5 {
		padding: 40px 0 20px;
		background-color: #93b062;
	}
	
	#section-6 {
		padding: 80px 0 35px;
		margin-top: 50px;
		margin-bottom: -50px;
		background-image: url(../../images/backgrounds/bg-2.jpg)
	}
	
	#section-7 {
		padding: 120px 0 110px;
		margin-top: 50px;
		margin-bottom: 0;
		background-color: #e6e6b3;
	}
	
	#section-7 .headline {
		margin-bottom: 50px;
	}
	
	#section-8 {
		padding: 120px 0 80px;
		margin-top: 50px;
		margin-bottom: 0;
		background-image: url(../../images/backgrounds/bg-3.jpg);
	}
	
	#section-9 {
		padding: 170px 0 130px;
		margin-bottom: 0;
		background: url(../../images/backgrounds/bg-4.jpg) no-repeat left bottom;
		background-color: #f7f7f7;
	}
	
	#section-10 {
		padding: 80px 0 35px;
		margin-bottom: -50px;
		background-image: url(../../images/backgrounds/bg-5.jpg);
	}
	
	#section-11 {
		padding: 35px 0 15px;
		margin-top: 80px;
		margin-bottom: 0;
		background-color: #93b062 ;
		font-size: 24px;
		line-height: 40px;
	}
	
	#section-12 {
		padding: 100px 0 60px;
		margin-top: 80px;
		margin-bottom: 0;
		background-image: url(../../images/backgrounds/bg-6.jpg);
	}
	
	#section-13 {
		padding: 100px 0 80px;
		margin-top: 50px;
		margin-bottom: -50px;
		background-color: #e6e6b3;
	}
	
	#section-14 {
		padding: 100px 0 50px;
		margin-top: 80px;
		margin-bottom: 0;
		background: url(../../images/backgrounds/bg-7.jpg) no-repeat right bottom;
		background-color: #f4f8fa;
	}
	
	#section-15 {
		padding: 60px 0;
		background-image: url(../../images/backgrounds/bg-8.jpg);
	}
	
	#section-16 {
		padding: 30px 30px 5px;
		border-left: 10px solid #93b062;
		background-color: #e6e6b3;
	}
	
	#section-17 {
		padding: 100px 0 50px;
		margin-top: 50px;
		margin-bottom: 0;
		background: url(../../images/backgrounds/bg-4.jpg) no-repeat left bottom;
		background-color: #f7f7f7;
	}
	
	#section-17 .text-box {
		background-color: #fff;
	}
	
	#section-18 {
		padding: 100px 0 80px;
		margin-top: 50px;
		margin-bottom: -50px;
		background-image: url(../../images/backgrounds/bar.jpg);
	}

	#section-20 {
		padding: 120px 0 80px;
		margin-top: 00px;
		margin-bottom: 0;
		background-image: url(../../images/backgrounds/bg-1.jpg);
	}
	
	@media (min-width: 768px) and (max-width: 991px) {
		
		.half-image-left,
		.half-image-right {
			position: relative;
			width: 100%;
			background-image: none !important;
		}
		
		.half-image-left img,
		.half-image-right img {
			display: block;
			margin-bottom: 50px;
		}
		
		#section-1 {
			padding-top: 0;
		}
		
		#section-7 {
			padding-top: 0;
		}
		
	}
	
	
	@media (max-width: 767px) {
		
		.full-screen .full-section-container {
			position: relative;
			top: 0;
			-webkit-transform: translateY(0);
				-ms-transform: translateY(0);
					transform: translateY(0);
		}
		
		.half-image-left,
		.half-image-right {
			position: relative;
			width: 100%;
			background-image: none !important;
		}
		
		.half-image-left img,
		.half-image-right img {
			display: block;
			margin-bottom: 50px;
		}
		
		#section-1 {
			padding-top: 0;
		}
		
		#section-7 {
			padding-top: 0;
		}
		
	}

/***********************************************************************************
 *	+ VIDEO PLAYER
 ***********************************************************************************/	
	
	#local-video-section,
	#youtube-video-section {
		position: absolute;
		z-index: 1;
		overflow: hidden;
		top: 0;
		width: 100%;
		height: 100%;
	}
	
	#video-section {
		height: 700px;
		padding: 0;
		margin-top: 100px;
		margin-bottom: 0;
	}
	
	.youtube-player {
		display: none;
	}
	
	#video-section .full-section-container {
		position: absolute;
		z-index: 2;
		top: 50%;
		left: 0;
		width: 100%;
		-webkit-transform: translateY(-50%);
			-ms-transform: translateY(-50%);
				transform: translateY(-50%);
	}
	
	.embed-responsive {
		margin-bottom: 20px;
	}
	
	#local-video-section video {
		width: 100%;
	}
	
/***********************************************************************************
 *	+ SCROLL UP
 ***********************************************************************************/
	
	#scroll-up {
		position: fixed;
		z-index: 8000;
		bottom: 50px;
		right: 50px;
		display: none;
		width: 46px;
		height: 46px;
		background-color: #169fe5;
		color: #FFFFFF;
		font-size: 24px;
		line-height: 42px;
		text-align: center;
		text-decoration: none;
		cursor: pointer;
		-webkit-transition: all 0.3s;
				transition: all 0.3s;
	}

	#scroll-up:hover {
		background-color: #f78e14;
		color: #FFFFFF;
	}
	
	@media (max-width: 767px) {
		
		#scroll-up {
			right: 20px;
			bottom: 20px;
		}
		
	}

/***********************************************************************************
 *	+ SLIDERS
 ***********************************************************************************/
	
	/* REVOLUTION SLIDER */
	.rev_slider_wrapper {
		margin-bottom: 100px;
		height: 650px;
	}
	
	
	/* BULLETS */
	.tp-bullets.custom .tp-bullet {
		width: 16px;
		height: 16px;
		background-color: #93b062 ;
        border-radius;50%;
		-webkit-transition: all 0.3s;
				transition: all 0.3s;
	}

	.tp-bullets.custom .tp-bullet:hover,
	.tp-bullets.custom .tp-bullet.selected {
		background-color: #93b062;
	}


	/* TYPOGRAPHY */
	.tp-caption.title {
		color: #fff;
		font-size: 72px;
		line-height: 72px;
		font-weight: 800;
        font-family: 'Montserrat', cursive;
	}
	
	.tp-caption.title-2 {
		color: #002047;
		font-size: 72px;
		line-height: 72px;
		font-weight: 800;

	}
	
	.tp-caption.title-2 span {
		margin: 0 -15px;
		font-family: "Open Sans", sans-serif;
		font-size: 48px;
		font-weight: 300;
		text-transform: lowercase;
	}
	
	.tp-caption.title-small {
		color: #93b062;
		font-size: 36px;
		line-height: 48px;
		font-weight: 800;
		text-transform: uppercase;
	}
	
	.tp-caption.title-small-2 {
		color: #fff;
font-family: 'Bangers', cursive;
		font-size: 60px;
		line-height: 72px;
		font-weight: 700;
	}
	
	.tp-caption.title-small-2 .text-light {
		font-family: "Open Sans", sans-serif;
		font-weight: 300;
	}
	
	.tp-caption.title-small-2 .text-light span {
		color: #93b062;
	}
	
	.tp-caption.subtitle {
		color: #fff;
		font-size: 18px;
		line-height: 30px;
		font-weight: 600;
	}
	
	.tp-caption.subtitle-2 {
		color: #93b062;
		font-size: 18px;
		line-height: 30px;
		font-weight: 600;
	}
	
	.tp-caption.subtitle-3 {
		color: #93b062;
		font-family: "Montserrat", sans-serif;
		font-size: 32px;
		line-height: 42px;
	}
	
	.tp-caption.subtitle-4 {
		color: #93b062;
		font-family: "Montserrat", sans-serif;
		font-size: 24px;
		line-height: 36px;
	}
	
	.tp-caption.text {
		color: #fff;
		font-size: 16px;
		line-height: 26px;
	}
	
	.tp-caption.text-2 {
		color: #838383;
		font-size: 16px;
		line-height: 26px;
	}
	
	.tp-caption.link a {
		display: block;
		width: 460px;
		padding: 10px 50px;
		border-radius: 4px;
		background-color: #001631;
		color: #fff;
		font-size: 14px;
		font-weight: 600;
		text-decoration: none;
		text-transform: uppercase;
		-webkit-transition: all 0.3s;
				transition: all 0.3s;
	}
	
	.tp-caption.link a:hover {
		background-color: #93b062;
	}
	
	.tp-caption.rectangle {
		width: 755px;
		height: 320px;
		border-top: 3px solid #93b062;
		background-color: #93b062 ;
	}
	
	.tp-caption.rectangle-2 {
		width: 460px;
		height: 405px;
		border-radius: 20px;
		background-color: #23447f;
	}
	
	@media (min-width: 768px) and (max-width: 991px) {
		
		.tparrows.tp-leftarrow,
		.tparrows.tp-rightarrow {
			display: none;
		}
		
		.tp-caption.rectangle {
			width: 470px;
			height: 250px;
			margin-left: 30px;
		}
		
		.tp-caption .btn {
			padding: 9px 25px;
			font-size: 10px;
		}
		
		.tp-caption.title-2 span {
			margin: 0 -5px;
		}
		
		.tp-caption.rectangle-2 {
			width: 350px;
			height: 300px;
		}
		
		.tp-caption.link a {
			width: 350px;
			padding-left: 35px;
		}
		
	}
	
	@media (max-width: 767px) {
		
		.tparrows.tp-leftarrow,
		.tparrows.tp-rightarrow {
			display: none;
		}
		
		.tp-bullets.custom {
			top: auto !important;
			bottom: -30px !important;
		}
		
		.tp-caption.rectangle {
			width: 220px;
			height: 100px;
			margin-left: 30px;
		}
		
		.tp-caption .btn {
			padding: 4px 15px;
			font-size: 4px;
		}
		
		.tp-caption.title-2 span {
			margin: 0;
			font-size: 20px;
		}
		
		.tp-caption.rectangle-2 {
			width: 150px;
			height: 120px;
			border-radius: 10px;
		}
		
		.tp-caption.link a {
			width: 150px;
			padding: 5px 15px;
			margin-top: 10px;
			font-size: 6px;
		}
		
	}
	
	@media (min-width: 480px) and (max-width: 767px) {
		
		.tp-caption.rectangle {
			width: 300px;
			height: 150px;
			margin-left: 30px;
		}
		
		.tp-caption .btn {
			padding: 6px 20px;
			font-size: 6px;
		}
		
		.tp-caption.rectangle-2 {
			width: 250px;
			height: 180px;
		}
		
		.tp-caption.link a {
			width: 250px;
			padding: 8px 20px;
			font-size: 8px;
		}
		
	}


	/* OWL Carousel */
	.owl-carousel {
		margin-bottom: 30px;
      /*  background-image: url(../../images/entsbck2.png); */
	}
	
	.owl-carousel .owl-item img {
		display: inline;
		width: auto;
	}
	
	.owl-dots {
		position: absolute;
		bottom: 30px;
		left: 0;
		width: 100%; 
		text-align: center;
	}
	
	.owl-dot {
		display: inline-block;
		width: 15px;
		height:15px;
		margin-right: 5px;
		background-color: #242768 ;
	}
	
	.owl-dot:hover,
	.owl-dot.active {
		background-color: #d83586;
	}
	
	.owl-dot:last-child {
		margin-right: 0;
	}
	
	.owl-prev,
	.owl-next {
		position: absolute;
		top: 30%;
		width: 32px;
		height: 32px;
		text-align: center;
		-webkit-transform: translateY(-50%);
			-ms-transform: translateY(-50%);
				transform: translateY(-50%);
	}
	
	.owl-prev {
		left: -20px;
	}
	
	.owl-next {
		right: -20px;
	}
	
	.owl-prev:before,
	.owl-next:before {
		font-family: "FontAwesome";
		font-size: 48px;
	}
	
	.owl-prev:before {
		content: "\f104";
	}
	
	.owl-next:before {
		content: "\f105";
	}
	
	.owl-prev:hover,
	.owl-next:hover {
		opacity: 0.5;
	}
	
	/* TESTIMONIALS SLIDER */
	.actcarousel-slider .owl-prev {
		left: -40px;
	}
	
	.actcarousel-slider .owl-next {
		right: -40px;
	}
	
	.actcarousel-slider .owl-dots {
		bottom: -10px;
		display: none !important; 
	}
	
	
	/* LOGOS SLIDER */
	.logos-slider {
		margin-bottom: 30px;
		text-align: center;
	}
	
	.logos-slider .item a {
		display: block;
		height: 90px;
		padding: 0 20px;
		text-align: center;
		background: no-repeat top center;
		-webkit-transition: all 0.3s;
				transition: all 0.3s;
	}
	
	.logos-slider .item a:hover {
		background-position: bottom center;
	}
	
	
	@media (min-width: 768px) and (max-width: 991px) {
		
		.actcarousel-slider .owl-dots {
			display: block !important;
		}
		
		.actcarousel-slider .owl-prev,
		.actcarousel-slider .owl-next {
			display: none !important;
		}
		
	}
	
	@media (max-width: 767px) {
		
		.owl-dots {
			bottom: 15px;
		}
		
		.actcarousel-slider .owl-dots {
			display: block !important;
		}
		
		.actcarousel-slider .owl-prev,
		.actcarousel-slider .owl-next {
			display: none !important;
		}
		
	}
	
/***********************************************************************************
 *	+ FANCYBOX
 ***********************************************************************************/
	
	.fancybox-overlay {
		background: rgba(0, 0, 0, 0.8);
	}

/***********************************************************************************
 *	+ ANIMATIONS
 ***********************************************************************************/
	
	.wow {
		visibility: hidden;
	}
	
	.wow.animated {
		visibility: visible;
	}
	
/***********************************************************************************
 *	+ WIDGETS
 ***********************************************************************************/
	
	.widget {
		margin-bottom: 75px;
	}
	
	.widget-title {
		margin-bottom: 10px;
		text-transform: uppercase;
	}
	
	/* WIDGET TEXT */
	.widget-text {}
	
	.widget-text div > *:last-child {
		margin-bottom: 0;
	}
	
	.copyright {
		margin-top: 8px;
		text-align: center;
	}
	
	
	/* WIDGET SERACH */
	.widget-search {}
	
	.widget-search form {
		position: relative;
	}
	
	.widget-search #s {
		width: 100%;
		height: 45px;
		padding-right: 30px;
		border: none;
		border-bottom: 1px solid #ebebeb;
		background-color: transparent;
	}
	
	.widget-search #s:focus {
		border-color: #93b062;
	}
	
	
	/* WIDGET CATEGORIES */
	.widget-categories {}
	
	.widget-categories ul {
		margin-bottom: 0;
		list-style: none;
	}
	
	.widget-categories ul li {
		margin-bottom: 15px;
	}
	
	.widget-categories ul li:last-child {
		margin-bottom: 0;
	}
	
	.widget-categories ul li a {
		position: relative;
		display: block;
		padding-left: 20px;
		color: #838383;
		font-weight: 500;
		-webkit-transition: all 0.3s;
				transition: all 0.3s;
	}
	
	.widget-categories ul li a:before {
		position: absolute;
		top: 10px;
		left: 0;
		display: inline-block;
		width: 6px;
		height: 6px;
		border-radius: 50%;
		background-color: #93b062;
		opacity: 0;
		content: "";
		-webkit-transition: all 0.3s;
				transition: all 0.3s;
	}
	
	.widget-categories ul li a:hover {
		color: #212121;
		text-decoration: none;
	}
	
	.widget-categories ul li a:hover:before {
		opacity: 1;
	}
	
	
	/* WIDGET CATEGORIES DROPDOWN */
	.widget-categories-dropdown {}
	
	
	/* WIDGET ARCHIVES */
	.widget-archives {}
	
	.widget-archives ul {
		margin-bottom: 0;
		list-style: none;
	}
	
	.widget-archives ul li {
		margin-bottom: 15px;
	}
	
	.widget-archives ul li:last-child {
		margin-bottom: 0;
	}
	
	.widget-archives ul li a {
		color: #838383;
		font-weight: 500;
		-webkit-transition: all 0.3s;
				transition: all 0.3s;
	}
	
	.widget-archives ul li a:before {
		position: relative;
		top: -2px;
		display: inline-block;
		width: 6px;
		height: 6px;
		border-radius: 50%;
		margin-right: 15px;
		background-color: #93b062;
		opacity: 0;
		content: "";
		-webkit-transition: all 0.3s;
				transition: all 0.3s;
	}
	
	.widget-archives ul li a:hover {
		color: #212121;
		text-decoration: none;
	}
	
	.widget-archives ul li a:hover:before {
		opacity: 1;
	}
	
	
	/* WIDGET ARCHIVES DROPDOWN */
	.widget-archives-dropdown {}
	
	
	/* WIDGET PAGES */
	.widget-pages {}
	
	.widget-pages ul {
		margin-bottom: 30px;
		list-style: none;
	}
	
	.widget-pages ul li {
		margin-bottom: 15px;
	}
	
	.widget-pages ul li:last-child {
		margin-bottom: 0;
	}
	
	.widget-pages ul li a {
		color: #ffffff;
		font-weight: 500;
		-webkit-transition: all 0.3s;
				transition: all 0.3s;
	}
	
	.widget-pages ul li a:before {
		position: relative;
		top: -2px;
		display: inline-block;
		width: 6px;
		height: 6px;
		border-radius: 50%;
		margin-right: 15px;
		background-color: #fff;
		opacity: 0;
		content: "";
		-webkit-transition: all 0.3s;
				transition: all 0.3s;
	}
	
	.widget-pages ul li a:hover {
		color: #ffffff;
		text-decoration: none;
	}
	
	.widget-pages ul li a:hover:before {
		opacity: 1;
	}
	
	
	/* WIDGET METADATA */
	.widget-metadata {}
	
	.widget-metadata ul {
		margin-bottom: 0;
		list-style: none;
	}
	
	.widget-metadata ul li {
		margin-bottom: 15px;
	}
	
	.widget-metadata ul li:last-child {
		margin-bottom: 0;
	}
	
	.widget-metadata ul li a {
		color: #838383;
		font-weight: 500;
		-webkit-transition: all 0.3s;
				transition: all 0.3s;
	}
	
	.widget-metadata ul li a:before {
		position: relative;
		top: -2px;
		display: inline-block;
		width: 6px;
		height: 6px;
		border-radius: 50%;
		margin-right: 15px;
		background-color: #93b062;
		opacity: 0;
		content: "";
		-webkit-transition: all 0.3s;
				transition: all 0.3s;
	}
	
	.widget-metadata ul li a:hover {
		color: #212121;
		text-decoration: none;
	}
	
	.widget-metadata ul li a:hover:before {
		opacity: 1;
	}
	
	
	/* WIDGET TAGS */
	.widget-tags {}
	
	.widget-tags a {
		position: relative;
		z-index: 1;
		overflow: hidden;
		display: inline-block;
		padding: 5px 18px;
		margin: 5px 5px 5px 0;
		background-color: #f1f1f1;
		color: #838383;
		text-decoration: none;
		text-transform: uppercase;
		-webkit-transform: translateZ(0);
			-ms-transform: translateZ(0);
				transform: translateZ(0);
		-webkit-transition: all 0.3s;
				transition: all 0.3s;
	}
	
	.widget-tags a:after {
		position: absolute;
		z-index: -1;
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
		border-radius: 20px;
		background-color: #93b062;
		content: "";
		-webkit-transform: scale(0);
			-ms-transform: scale(0);
				transform: scale(0);
		-webkit-transition: all 0.3s;
				transition: all 0.3s;
	}
	
	.widget-tags a:hover {
		border-color: #93b062;
		background-color: #93b062;
		color: #fff;
	}
	
	.widget-tags a:hover:after {
		-webkit-transform: scale(1);
			-ms-transform: scale(1);
				transform: scale(1);
	}
	
	@media (min-width: 768px) and (max-width: 991px) {
		
		.widget-tags a {
			padding: 3px 12px;
			font-size: 12px;
		}
		
	}
	
	
	/* WIDGET NEWSLETTER */
	.widget-newsletter {}
	
	.widget-newsletter form {
		position: relative;
	}
	
	.widget-newsletter #newsletter-email {
		width: 100%;
		height: 44px;
		padding-right: 140px;
		padding-right: 140px;
		border-radius: 15px;
	}
	

	
	.newsletter-bordered {
		border: 10px solid #f1f1f1;
		background-color: #f1f1f1;
	}
	
	.newsletter-bordered #newsletter-email {
		padding-right: 20px;
		border-radius: 0;
		margin-bottom: 10px;
	}
	
	.newsletter-bordered button[type="submit"] {
		position: relative;
		width: 100%;
		border-radius: 5px;
		margin-bottom: 0;
	}
	
	.newsletter-bordered button[type="submit"]:after {
		border-radius: 5px;
	}
	
	@media (min-width: 768px) and (max-width: 991px) {
		
		.widget-newsletter #newsletter-email {
			padding-right: 20px;
		}
		
		.newsletter-bordered {
			padding: 0;
			border: none;
			background-color: transparent;
		}
		
	}
	
	@media (max-width: 767px) {
		
		.widget-newsletter #newsletter-email {
			padding-right: 20px;
		}
		
		.widget-newsletter button[type="submit"] {
			position: relative;
			right: 0;
			border-radius: 15px;
		}
		
		.newsletter-bordered button[type="submit"] {
			border-radius: 5px;
		}
		
	}
	
	
	/* WIDGET RECENT POSTS */
	.widget-recent-posts {}
	
	.widget-recent-posts ul {
		list-style: none;
		margin-bottom: 0;
	}
	
	.widget-recent-posts ul li {
		margin-bottom: 20px;
	}
	
	.widget-recent-posts ul li:last-child {
		margin-bottom: 0;
	}
	
	.widget-recent-posts ul li img {
		float: left;
		margin-right: 20px;
		margin-bottom: 20px;
	}
	
	.widget-recent-posts ul li .post-title {
		color: #212121;
		font-family: "Montserrat", sans-serif;
		-webkit-transition: all 0.3s;
				transition: all 0.3s;
	}
	
	.widget-recent-posts ul li .post-details {
		margin-top: 5px;
		font-size: 12px;
		-webkit-transition: all 0.3s;
				transition: all 0.3s;
	}
	
	.widget-recent-posts ul li .post-details a {
		display: inline-block;
		padding-right: 5px;
		border-right: 1px solid #838383;
		margin-right: 2px;
		color: #838383;
		line-height: 12px;
		text-decoration: none;
	}
	
	.widget-recent-posts ul li .post-details a:last-child {
		padding-right: 0;
		border-right: 0;
		margin-right: 0;
	}
	
	.widget-recent-posts ul li .post-details a:before {
		position: relative;
		top: 2px;
		margin-right: 7px;
		font-family: "setup-icons";
		font-size: 14px;
	}
	
	.widget-recent-posts ul li .post-details a.author:before {
		content: "\e9ca";
	}
		
	.widget-recent-posts ul li .post-details a.date:before {
		content: "\e91c";
	}
	
	.widget-recent-posts ul li .post-title:hover {
		color: #93b062;
		text-decoration: none;
	}
	
	.widget-recent-posts ul li .post-date {
		font-size: 12px;
	}
	
	.widget-recent-posts ul li:after {
		visibility: hidden;
		display: block;
		font-size: 0;
		content: " ";
		clear: both;
		height: 0;
	}
	
	@media (min-width: 768px) and (max-width: 991px) {
		
		.widget-recent-posts ul li img {
			display: none;
		}
		
	}
	
	
	/* WIDGET RECENT COMMENTS */
	.widget-recent-comments {}
	
	.widget-recent-comments ul {
		list-style: none;
		margin-bottom: 0;
	}
	
	.widget-recent-comments ul li {
		margin-bottom: 20px;
	}
	
	.widget-recent-comments ul li:last-child {
		margin-bottom: 0;
	}
	
	
	/* WIDGET CALENDAR */
	.widget-calendar {}
	
	.widget-calendar table {
		width: 100%;
		text-align: center;
	}
	
	.widget-calendar table th, 
	.widget-calendar table td {
		padding: 5px;
		border-top: 1px solid #ebebeb;
		border-left: 1px solid #ebebeb;
		text-align: center;
	}
	
	.widget-calendar table th:last-child, 
	.widget-calendar table td:last-child {
		border-right: 1px solid #ebebeb;
	}
	
	.widget-calendar table tr:last-child td {
		border-bottom: 1px solid #ebebeb;
	}
	
	.widget-calendar table tfoot td,
	.widget-calendar table tfoot td:last-child,
	.widget-calendar table tfoot tr:last-child td {
		border: none;
	}
	
	.widget-calendar table td#today {
		background-color: #93b062;
		color: #fff;
	}
	
	
	/* WIDGET FLICKR */
	.widget-flickr {}
	
	.flickr-photos {
		margin: -2px;
	}
	
	.flickr_badge_image {
		position: relative;
		float: left;
		padding: 2px;
	}
	
	.flickr_badge_image img {
		width: 64px;
		height: auto;
	}
	
	.flickr-photos:after {
		visibility: hidden;
		display: block;
		font-size: 0;
		content: " ";
		clear: both;
		height: 0;
	}
	
	@media (min-width: 1200px) {
		
		.flickr_badge_image img {
			width: 80px;
		}
		
	}
	
	
	/* WIDGET INSTAGRAM */
	.widget-instagram {}
	
	#instafeed {
		margin: -2px;
	}
	
	#instafeed a {
		float: left;
		display: block;
		width: 72px;
	}
	
	#instafeed a img {
		display: block; 
		width: 100%;
		height: auto;
		padding: 2px;
	}
	
	#instafeed:after {
		visibility: hidden;
		display: block;
		height: 0;
		font-size: 0;
		content: " ";
		clear: both;
	}
	
	
	@media (min-width: 1200px) {
		
		#instafeed a {
			width: 90px;
		}
		
	}
	
	
	/* WIDGET CONTACT */
	.widget-contact {}
	
	.widget-contact ul {
		margin-bottom: 0;
		list-style: none;
	}
	
	.widget-contact ul li {
		position: relative;
		padding-left: 40px;
		margin-bottom: 35px;
	}
	
	.widget-contact ul li:last-child {
		margin-bottom: 0;
	}
	
	.widget-contact ul li i {
		position: absolute;
		top: 5px;
		left: 0;
		font-size: 24px;
		line-height: 24px;
		-webkit-transition: all 0.3s;
				transition: all 0.3s;
	}
	
	.widget-contact ul li:hover i {
		color: #fff;
	}
	
	.widget-contact ul li a {
		color: #000000;
	}
	
	.widget-contact ul li small {
		display: block;
		font-size: 16px;
		letter-spacing: 1px;
		text-transform: uppercase;
	}
	
	@media (min-width: 768px) and (max-width: 991px) {
		
		.widget-contact ul li {
			padding-left: 0;
		}
		
		.widget-contact ul li i {
		display: none;	
		}
		
	}


	@media (min-width: 768px) and (max-width: 991px) {
		
		.widget-contact ul li {
			padding-left: 0;
		}
		
		.widget-contact ul li i {
			display: none;
		}
		
	}




	
	
	/* WIDGET SOCIAL */
	.widget-social {}
	
	.widget-social .social-media {
		margin-bottom: 0;
	}
 /***********************************************************************************
 *	+ PAGINATION
 ***********************************************************************************/
 
	.pagination {
		display: block;
		margin-top: 0;
		margin-bottom: 50px;
    text-align:center;
	}

	.pagination li {
		display: inline-block;
		margin-right: 3px;
	}

	.pagination li:last-child {
		margin-right: 0;
	}

	.pagination li a {
		display: block;
		width: 38px;
		height: 38px;
    padding:6px 9px 5px 9px;
		border: none;
		border-radius: 5px;
		background-color: #f1f1f1;
		color: #212121;
		font-size: 12px;
		line-height: 28px;
		text-align: center;
		-webkit-transition: all 0.3s;
				transition: all 0.3s;
	}
	
	.pagination li.prev a,
	.pagination li.next a {
		background-color: #169fe5;
		color: #ffffff;
	}

	.pagination > li:last-child > a,
	.pagination > li:first-child > a,
	.pagination > li:last-child > span,
	.pagination > li:first-child > span {
		border-radius: 5px;
	}

	.pagination li a:hover,
	.pagination li.active a,
	.pagination li.active a:hover {
		background-color: #f7931e;
		color: #fff;
	}
	.pagination .current{
    font-weight: bold;
    background: #169fe5;
    color: #fff;
}
.video-container {
	position:relative;
	padding-bottom:56.25%;
	padding-top:30px;
	height:0;
	overflow:hidden;
margin-bottom:20px;
}

.video-container iframe, .video-container object, .video-container embed {
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
}