@charset "utf-8";
/* CSS Document */

body, html {
	min-height: 100%;
	position: relative;
	font-size: 14px;
}
a, a:hover, a:active {
	text-decoration: none;
	cursor: pointer;
	transition: all ease-out 0.15s;
}
button {
	transition: all ease-out 0.15s;
}
img {
	max-height: 100%;
	max-width: 100%;
}
.container {
	position: relative;
}
header .container {
	padding-left: 0;
	padding-right: 0;
}
.container-fluid {
	padding: 0;
}
header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background-color: #424e35;
	height: 82px;
	vertical-align: top;
	text-align: right;
	line-height: 14px;
	z-index: 900;
	overflow: hidden;
}
nav {
	line-height: 57px;
	height: 57px;
	display: inline-block;
	box-sizing: border-box;
	text-transform: uppercase;
	color: #ffffff;
	border-top: dotted 3px rgba(255,255,255,0.1);
	padding: 0 10px;
	margin-top: 25px;
	vertical-align: top;
}
nav a, nav a:active, a:focus {
	color: #ffffff;
	padding: 0 10px;
	display: inline-block;
	height: 100%;
	text-decoration: none;
	box-sizing: border-box;
	cursor: pointer;
}
nav a:hover {
	color: #fbcd06;
	text-decoration: none;
}
nav a.active {
	color: #424e35;
	background: #fbcd06;
}
nav button {
	display: none;
	height: 54px;
	width: 54px;
	border-width: 0;
	background: url(../img/layout/menu_icon.svg) no-repeat center center transparent;
	background-size: 24px auto;
	position: absolute;
	top: 0;
	left: -90px;
	opacity: 0.7;
	transition: all ease-out 0.15s;
}
nav button:hover {
	opacity: 1;
}
section {
	position: relative;
}
.langlink {
	line-height: 14px;
	font-size: 14px;
	color: #85d341;
	display: inline-block;
	margin: 14px;
}
.langlink:hover {
	color: #fbcd06;
}
main {
	margin-top: 82px;
	z-index: 700;
	position: relative;
}
.downscroll, .downscroll:active, .downscroll:focus {
	position: absolute;
	color: #ffffff;
	font-size: 14px;
	display: inline-block;
	opacity: 0.7;
	z-index: 500;
}
.downscroll:hover {
	opacity: 1;
	color: #ffffff;
}
.downscroll:before, .downscroll:after {
	content: "";
	position: absolute;
	left: 20px;
	border-width: 0 thin thin 0;
	border-color: #ffffff;
	border-style: solid;
	transform: rotate(45deg);
	width: 20px;
	height: 20px;
}
.downscroll:before {
	bottom: -14px;
}
.downscroll:after {
	bottom: -20px;
}
ul {
	margin: 0;
	padding: 0;
	list-style-type: none;
}
/*	SECCIONES	*/

/*	Home	*/
#home {
	min-height: 520px;
	background-color: #031e0d;
}
.homeSlider {
	height: 520px;
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	overflow: hidden;
}
.slide {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	overflow: hidden;
	width: 100%;
	height: 100%;
	background-repeat: no-repeat;
	background-position: center top;
	background-size: cover;
	transition: all ease-out 0.15s;
	opacity: 0;
}
.slide.active {
	opacity: 1;
}
.slideGuide {
	position: absolute;
	top: 150px;
	right: 40px;
}
.slideGuide a {
	display: block;
	background-color: #ffffff;
	width: 10px;
	height: 10px;
	margin-bottom: 12px;
	border-radius: 5px;
	position: relative;
	box-shadow: 0 0 6px rgba(0,0,0,1);
}
.slideGuide a.active:after {
	content: "";
	display: block;
	width: 18px;
	height: 18px;
	border-radius: 9px;
	position: absolute;
	top: -4px;
	left: -4px;
	border: solid 2px #85d341;
}
.homeContent {
	position: relative;
	height: 520px;
}
.badge-container{
	
	z-index: 1000;
	position: fixed;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	/*
	z-index: 1000;
	position: relative;
	top: 0;
	left: 0;
	*/
}
.badge {
	text-align: center;
	position: absolute;
	top: 40px;
	left: 0;
	z-index: 500;
	background-color: transparent;
	padding: 0 20px;
	transition: all ease-out 0.15s;
}
.badge img {
	max-height: 100%;
	max-width: 100%;
	transition: all ease-out 0.15s;
}
.badge-small{
	top: 20px;
	width: 130px;
}
.homeContent .badge{
	display: none;
}
.logo {
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-25%);
	text-align: left;
}
#home .countries {
	color: #ffffff;
	text-transform: uppercase;
	font-size: 11px;
	display: block;
	border-top: solid 5px #ffffff;
	padding-top: 5px;
	margin-top: 10px;
	margin-left: 26px;
	position: absolute;
	bottom: 20px;
	left: 0;
}
#home .countries a.homeContactLink {
	text-transform: uppercase;
	color: #ffffff;
	display: block;
	margin-left: 26px;
	font-size: 24px;
}
#home .flags {
	margin-left: 26px;
	margin-top: 10px;
	display: block;
}
.homeText {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-30%, -100%);
	color: #8ac953;
	font-weight: bold;
	font-size: 46px;
	line-height: 46px;
	text-transform: uppercase;
	text-align: left;
	text-shadow: 0 0 8px #000000;
}
.homeText small {
	display: block;
	color: #ffffff;
	font-size: 36px;
	line-height: 36px;
	text-transform: none;
}
.search {
	display: inline-block;
	position: absolute;
	top: 10px;
	right: 20px;
	width: auto;
	background-color: rgba(255,255,255,0.7);
	height: 36px;
	transition: all ease-out 0.15s;
	overflow: hidden;
	padding-left: 42px;
	box-sizing: content-box;
	z-index: 600;
}
.search:hover {
	background-color: rgba(255,255,255,1);
}
.searchToggle {
	width: 42px;
	height: 36px;
	border-width: 0;
	background: url(../img/layout/searchIcon.png) center center no-repeat transparent;
	cursor: pointer;
	position: absolute;
	top: 0;
	left: 0;
}
.searchFormRow {
	display: block;
	max-width: 300px;
	font-size: 0;
	width: 0;
	transition: all ease-out 0.15s;
}
.searchFormRow.searchOn {
	width: 300px;
}
.searchFormRow input {
	border: none;
	display: inline-block;
	font-size: 14px;
	width: 220px;
	height: 36px;
	background-color: rgba(255,255,255,0);
	transition: all ease-out 0.15s;
}
.searchFormRow button {
	display: inline-block;
	font-size: 14px;
	height: 36px;
	width: 80px;
	text-align: center;
	line-height: 36px;
	background-color: rgba(66,78,53,0);
	transition: all ease-out 0.15s;
	color: #424e35;
	border-width: 0;
}
.searchFormRow button:hover {
	background-color: rgba(66,78,53,1);
	color: #ffffff;
}
#home .downscroll {
	right: 100px;
	top: 420px;
}
.homeLinksRow {
	height: 100px;
	line-height: 100px;
	background-color: #031e0d;
	color: #848785;
	text-transform: uppercase;
}
.homeLinksRow > div {
	height: 100px;
	text-align: center;
}
.homeLinksRow > div.divider:after {
	content: "";
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	display: block;
	height: 60%;
	width: 0;
	border-right: solid thin #ffffff;
}
.homeLinksRow > span, .homeLinksRow a, .homeLinksRow a:focus, .homeLinksRow a:active, .bigText {
	line-height: 18px;
	display: inline-block;
	vertical-align: middle;
	color: #848785;
	padding: 20px;
	text-align: left;
}
.homeLinksRow a:hover {
	color: #ffffff;
	background-color: #000000;
}
.homeLinksRow a .yellow {
	transition: all ease-out 0.15s;
	display: block;
}
.homeLinksRow a:hover .yellow {
	color: #f4d12f;
}
.block {
	display: block;
}
.big {
	font-size: 40px;
}
.small {
	font-size: 25px;
}
/*	SECURITY	*/

#security {
	background: rgb(77,88,58);
	background: linear-gradient(90deg, rgba(77,88,58,1) 0%, rgba(60,73,50,1) 17%, rgba(21,25,23,1) 100%);
	color: #ffffff;
	padding-bottom: 30px;
}
#security .green {
	color: #8ac953;
}
#security a, #security a, #security a {
	color: #ffffff;
}
#security a.green, #security a.active, #security a.focus {
	color: #8ac953;
}
#security a.green:hover {
	color: #f4d12f;
}
#security .panel-1 {
	font-size: 20px;
	line-height: 20px;
	text-transform: uppercase;
}
#security .panel-1 a {
	font-size: 12px;
	text-transform: uppercase;
}
#security .panel-1 a:hover {
	color: #f4d12f;
}
#security .panel-1 .title {
	padding: 0;
	margin: 76px 0 20px 0;
	font-size: 44px;
	line-height: 44px;
	text-transform: uppercase;
}
#security .panel-1 .title small.green {
	text-transform: none;
	font-size: 28px;
	display: block;
}
#security .panel-2 {
	font-size: 16px;
}
#security .panel-2 .panel-box {
	margin: 76px 0 20px 0;
	padding-left: 20px;
	padding-right: 20px;
	border-left: dotted 5px #ffffff;
	border-right: dotted 5px #ffffff;
}
#security .panel-2 .title {
	margin: 76px 0 20px 0;
	padding-bottom: 20px;
	border-bottom: dotted 5px #ffffff;
}
#security .panel-2 .title small {
	text-transform: none;
	font-size: 18px;
	display: block;
	color: #ffffff;
}
.videobox {
	position: relative;
	width: 100%;
	height: 0;
	padding-bottom: 56.25%;
	margin: 30px 0;
	box-sizing: border-box;
	border: solid 5px #545a51;
}
.video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
#security .panel-3 {
	color: #96aa8a;
}
#security .panel-3 .title {
	padding: 0;
	margin: 76px 0 20px 0;
	font-size: 25px;
	line-height: 44px;
	text-transform: uppercase;
}
#security .panel-3 ul {
	font-size: 13px;
	list-style-type: disc;
	padding: 0;
	margin: 0;
}
/*	ABOUT	*/
#about {
	background: url(../img/layout/bg_about.jpg) no-repeat center center #000000;
	background-size: cover;
}
#about .title {
	padding: 0;
	margin: 36px 0 20px 0;
	font-size: 40px;
	line-height: 40px;
	text-transform: uppercase;
	text-align: center;
	color: #ffffff;
}
.about-text {
	margin: 0;
	padding: 0;
	text-align: center;
	color: #ffffff;
	font-size: 17px;
}
.carrousel {
	margin-top: 80px;
	margin-bottom: 20px;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
	width: 744px;
	box-sizing: border-box;
	padding: 0;
	font-size: 0;
	position: relative;
}
.carrousel-box {
	width: 744px;
	display: inline-block;
	white-space:nowrap;
	overflow: hidden;
}
.carrousel-controls {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: none;
}
.carrousel-btn {
	height: 102px;
	width: 43px;
	display: block;
	position: absolute;
	top: 50%;
	margin-top: -51px;
	border-width: 0;
	background-color: transparent;
	opacity: 0.7;
}
.carrousel-btn:hover {
	opacity: 1;
}
.carrousel-btn-left {
	left: -43px;
}
.carrousel-btn-right {
	right: -43px;
}
.carrousel-item {
	display: inline-block;
	width: 156px;
	margin: 0 15px;
	vertical-align: top;
}
.carrousel-item-number {
	display: block;
	width: 156px;
	height: 156px;
	border: solid thin #ffffff;
	border-radius: 100%;
	text-align: center;
	line-height: 156px;
	font-size: 54px;
	color: #ffffff;
	margin-bottom: 50px;
	box-sizing: border-box;
}
.carrousel-item-text {
	color: #bdd3b3;
	display: block;
	text-align: left;
	font-size: 18px;
	line-height: 18px;
	text-transform: uppercase;
}
.carrousel-item-text b, .carrousel-item-text strong {
	color: #ffffff;
	font-size: 24px;
	display: block;
}
/*	SERVICES	*/
#services .row {
	margin: 0;
	display: flex;
}
#services .panel-1 {
	background: url(../img/layout/bg_services.jpg) no-repeat center center #000000;
	background-size: cover;
	text-align: right;
	margin-right: 0;
	padding-right: 0;
}
#services .panel-1 .services-box {
	display: inline-block;
	min-width: 496px;
	background-color: #6d8a56;
	margin: 0;
	color: #ffffff;
	text-transform: uppercase;
}
#services h2 {
	font-size: 46px;
	text-align: left;
	padding: 40px;
	font-weight: bold;
	color: #ffffff;
}
#services h2 small {
	font-size: 32px;
	font-weight: bold;
	color: #ffffff;
}
#services .panel-1 .services-box ul {
	margin-right: 40px;
	padding: 0 40px 0 40px;
	border-right: dotted 2px #ffffff;
	list-style-type: none;
	text-align: left;
	display: inline-block;
	/*font-size: 20px;*/
	font-size: 16px;
	font-weight: bold;
}
#services .panel-1 .services-link {
	text-align: left;
	margin: 40px;
}
#services .panel-1 .services-link a, #services .panel-1 .services-link a:active, #services .panel-1 .services-link a:focus {
	font-size: 24px;
	line-height: 24px;
	font-weight: bold;
	color: #ffffff;
}
#services .panel-1 .services-link a small {
	font-size: 18px;
	color: #26371e;
	transition: all ease-out 0.15s;
}
#services .panel-1 .services-link a:hover, #services .panel-1 .services-link a:hover small {
	color: #f4d12f;
}
#services .panel-2 {
	background-color: #ffffff;
	text-align: left;
}
#services .panel-2 .services-box {
	display: inline-block;
	max-width: 496px;
	margin: 0;
	padding-top: 80px;
}
#services .panel-2 .services-box p, #services .panel-2 .services-box div {
	margin: 0;
	color: #0a0a0a;
	font-size: 15px;
}
#services .panel-2 .services-box div.services-badge {
	padding: 0;
	position: absolute;
	top: 10px;
	left: -75px;
	display: block;
	width: 150px;
}

.service-tabs{	
	padding: 0 20px 0 100px;
	overflow-y: auto;
}
.service-detail{
	display: none;
}
.service-detail:first-child{
	display: block;
}
.service-detail p,
.service-detail div{
	padding: 0 0 30px 0;
}

.services-list a{
	color: #ffffff;
	opacity: 1;
	position: relative;
}
.services-list a:hover{
	color: #fbcd06;
}
.services-list a.active,
.services-list a.active:hover,
.services-list a.active:active,
.services-list a.active:focus{
	color: #ffffff;
	cursor: default;
	opacity: 0.6;
}
.services-list a.active:before{
	content:"";
	width: 0;
	display: block;
	border-width: 6px;
	border-style: solid;
	border-color: transparent transparent transparent #ffffff;
	position: absolute;
	top: 50%;
	left: 0;
	transform:  translate(-10px,-6px);
}
/*	STAFF	*/

#staff {
background: background: rgb(10,10,10);
	background: linear-gradient(90deg, rgba(10,10,10,1) 0%, rgba(10,10,10,1) 44%, rgba(73,73,73,1) 100%);
	color: #ffffff;
	min-height: 300px;
	position: relative;
}
.staffLeftBackground  {
	background: url(../img/layout/bg_staff_left.jpg) repeat-y left top transparent;
	background-size: 50% auto;
}
#staff .container {
	padding: 0;
}
#staff .row {
	position: relative;
}
.staff-title {
	/*	position: absolute;
	top: 0;
	right: 0;*/
	padding: 0;
}
#staff .title {
	color: #ffffff;
	text-transform: uppercase;
	font-weight: bold;
	font-size: 54px;
	text-align: left;
}
#staff .title span {
	color: #718e5a;
	display: block;
}
.staff-box {
	/*padding: 0 20px;*/
	margin: 50px 0 70px;
	column-count: 2;
	position: relative;
	
	overflow: hidden;
	height: 470px;
	transition: all ease-out 0.15s;
}
.staff-box:before{
	content: "";
	position: absolute;
	top: 0;
	left: 50%;
	display: block;
	width:0;
	height:100%;
	border-right: dotted 4px #ffffff;
	margin-left: -2px;
}
.staff-box.expanded{
	height: auto;
}
.staff-item {
	display: inline-block;
	height: 110px;
	line-height: 110px;
	padding: 0 20px;
	cursor: pointer;
	vertical-align: top;
	transition: all ease-out 0.15s;
		
	margin-top: 20px;
	margin-bottom: 20px;
}
.staff-item span.staff-item-image {
	display: inline-block;
	height: 110px;
	width: 110px;
	border-radius: 100%;
	box-sizing: border-box;
	border: solid thin #ffffff;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	vertical-align: middle;
	margin-right: 10px;
	position: relative;
	transition: all ease-out 0.15s;
}
.staff-item .staff-country {
	position: absolute;
	top: 0;
	right: -10px;
	font-size: 14px;
	color: #ffffff;
	background-color: #1d5f91;
	border: solid thin #25990a;
	display: inline-block;
	height: 30px;
	min-width: 30px;
	text-align: center;
	line-height: 30px;
	border-radius: 15px;
}
.staff-item span.staff-item-text {
	display: inline-block;
	line-height: normal;
	vertical-align: middle;
	font-size: 14px;
	transition: all ease-out 0.15s;
}
.staff-item-title {
	font-size: 17px;
	transition: all ease-out 0.15s;
}
.staff-item .name {
	font-size: 13px;
	display: block;
	text-transform: uppercase;
	color: #59a9e7;
	transition: all ease-out 0.15s;
}
.staf-item:hover,
.staff-item:hover span.staff-item-text,
.staf-item:hover .staff-item-title,
.staff-col-1 .staff-item:hover .name,
.staf-item:hover .name{
	color: #fbcd06;
}

.staff-item:hover span.staff-item-image{
	border-color: #fbcd06;
}
.staff-col-2 {
	padding-left: 0;
	max-width: 41.66666667%;
	width: auto;
}
.staff-col-2 .name {
	color: #25990a;
}
.staff-col-2 .staff-box {
	border-left: dotted 2px #ffffff;
	border-right: dotted 2px #ffffff;
}
.staff-btn,
.staff-btn:active,
.staff-btn:focus{
	position: absolute;
	right: 20px;
	bottom: 20px;
	border: none;
	background-color: #6d8a56;
	color: #ffffff;
}
.staff-btn:hover{
	color: #6d8a56;
	background-color: #ffffff;
}

/*	INFORMATION	*/

#information {
	background: url(../img/layout/bg_information.jpg) no-repeat center center #000000;
	background-size: cover;
	color: #ffffff;
	font-size: 13px;
}
#information .panel-1 {
	padding-right: 100px;
}
#information .title {
	font-size: 35px;
	line-height: 35px;
	color: #70a955;
	margin: 0;
	padding: 40px 0 20px 0;
	border-bottom: dotted 2px #ffffff;
	text-transform: uppercase;
}
#information .title b, #information .title strong {
	font-size: 50px;
	color: #ffffff;
}
.info-text {
	margin: 20px 0 70px;
	padding: 0;
}
#information .subtitle {
	padding-top: 136px;
	position: relative;
	font-size: 40px;
	color: #ffffff;
	text-transform: uppercase;
	text-align: right;
	line-height: 25px;
}
#information .subtitle span {
	font-size: 25px;
	color: #6d8a56;
}
#information .panel-2 {
	text-align: ;
}
#information .panel-2 .info-text {
	padding: 0 0 0 70px;
	border-left: dotted 2px #ffffff;
}
#information .info-text-short {
	padding: 10px 0;
	border-bottom: solid thin #ffffff;
}
#information .info-text-short:last-child {
	border-bottom: none;
}
#information .info-text-short a, #information .info-text-short a:active, #information .info-text-short a:focus {
	color: #59a9e7;
}
#information .info-text-short a:hover {
	color: #f4d12f;
}
.news-text{
	display: none;
}
#news-index p {
	color: #59a9e7;
	cursor: pointer;
	transition: all ease-out 0.15s;
}
#news-index p:hover {
	color: #fbcd06;
}
#news-index p.active{
	color: #ffffff;
	cursor: default;
}
.news-text:first-child{
	display: block;
}




/*	CONTACT	*/

#contact {
	background: rgb(10,10,10);
	background: linear-gradient(200deg, rgba(10,10,10,1) 0%, rgba(10,10,10,1) 44%, rgba(73,73,73,1) 100%);
	color: #ffffff;
}
#contact p {
	margin: 0 0 20px;
	padding: 0;
}
#contact a, #contact a:active, #contact a:focus {
	color: #ffffff;
}
#contact a.green, #contact a.green:active, #contact a.green:focus {
	color: #74aa47;
}
#contact a:hover {
	color: #f4d12f;
}
.green {
	color: #74aa47;
}
.gray {
	color: #939090
}
#contact h1 {
	font-size: 36px;
	text-transform: uppercase;
}
#contact h2 {
	font-size: 32px;
	line-height: 32px;
	margin: 10px 0 10px 0;
}
#contact .text-box {
	margin-top: 60px;
	margin-bottom: 60px;
}
#contact .text-box-1 {
	border-right: dotted 3px #ffffff;
	padding-right: 60px;
	text-align: left;
}
#contact .text-box-2 {
	padding-left: 60px;
	text-align: right;
}
#contact .text-box-2 p {
	margin: 0 0 10px;
}
#contact .indent-box {
	padding-left: 20px;
}
#contact .group-box {
	padding: 10px 30px;
	display: inline-block;
	border-top: solid thin #ffffff;
	border-bottom: solid thin #ffffff;
	margin-top: 30px;
	margin-bottom: 20px;
}
#contact .group-box p {
	padding-right: 20px;
}
.small {
	font-size: 11px;
}
.big {
	font-size: 14px;
	text-transform: uppercase;
}

.bigText .small{
	font-size: 25px;
}
.bigText .big{
	font-size: 40px;
}

/*	MODALS	*/
.modal img{
	display: block;
	width: auto;
	height: auto;
	margin-left: auto;
	margin-right: auto;
}
#contactModal .modal-content{
	color: #ffffff;
	background-color: #6d8a56;
}
textarea{
	resize: vertical;
}


/*	QUOTATION FORM	*/

#quotationModal .modal-content {
    color: #6d8a56;
	background-color: #6d8a56;
}
#quotationModal .modal-content input,
#quotationModal .modal-content textarea{
	color: #6d8a56;	
}
#quotationModal div span{
	display: inline-block;
	position: relative;
}
#quotationModal div span label{
	display: block;
	font-size: 11px;
	color: #ffffff;
	font-weight: normal;
}
.form_group_title{
	display: inline-block;
	vertical-align: top;
	width: 30%;	
	color: #ffffff;
}
.form-input{
	display: inline-block;
	vertical-align: top;
	width: 65%;
}


/*	RESPONSIVES	*/
@media all and (max-width: 1200px) {
.homeLinksRow {
	font-size: 12px;
}
.homeLinksRow > span, .homeLinksRow a, .homeLinksRow a:focus, .homeLinksRow a:active, .bigText {
	padding-left: 0px;
	padding-right: 0px;
}
.homeLinksRow div:last-child {
	text-transform: none;
}
/*	Services	*/
#services .panel-1 {
	background-image: none;
	background-color: #6d8a56;
}
#services .panel-1 .services-box {
	background: none;
}
#services .panel-2 .services-box {
	width: 100%;
}
#staff .container, #staff .container .row {
	width: 100%;
	margin: 0;
}
#staff .title {
	text-transform: uppercase;
	font-size: 40px;
}
.staff-item span.staff-item-image {
	width: 70px;
	height: 70px;
}
.staff-item span.staff-item-text, .staff-item-title, .staff-item .name {
	font-size: 12px;
}
.staff-item .staff-country {
	font-size: 10px;
	padding: 0 2px;
	height: 20px;
	min-width: 20px;
	line-height: 20px;
}
.staff-box{
	height: 360px;
}
.staff-item{
	margin-top: 10px;
	margin-bottom: 10px;
	height: 100px;
	line-height: 100px;
}
}
@media all and (max-width: 992px) {
nav {
	text-transform: none;
	font-size: 12px;
}
.langlink {
	position: absolute;
	top: 0;
	right: 0;
}
.homeLinksRow > div {
	padding-left: 5px;
	padding-right: 5px;
}
.homeLinksRow .bigText .big,  .homeLinksRow .bigText .small {
	font-size: 24px;
	text-transform: uppercase;
}
#security .panel-1 .title {
	font-size: 24px;
	line-height: 24px;
}
#security .panel-1 .title small.green {
	font-size: 18px;
}
#security .panel-1 {
	font-size: 12px;
	line-height: 14px;
}
#security .panel-1 a {
	font-size: 10px;
}
#security .panel-2 {
	font-size: 12px;
}
#security .panel-2 .title {
	font-size: 24px;
}
#security .panel-2 .title small {
	font-size: 14px;
}
#security .panel-3 .title {
	font-size: 24px;
	line-height: 24px;
}
#security .panel-3 ul {
	font-size: 11px;
}
.carrousel {
	width: auto;
	margin: 80px 30px 40px;
}
.carrousel-item {
	width: 120px;
}
.carrousel-item-number {
	height: 120px;
	line-height: 120px;
	width: 120px;
	font-size: 36px;
	margin-bottom: 20px;
}
.carrousel-item-text {
	font-size: 12px;
	text-align: center;
}
.carrousel-item-text b, .carrousel-item-text strong {
	font-size: 14px;
}
.carrousel-box {
	width: auto;
}
#services .row {
	display: flex;
}
#services .panel-1 .services-box {
	min-width: auto;
}
#services h2 {
	font-size: 24px;
}
#services h2 small {
	font-size: 18px;
}
#services .panel-1 .services-box ul {
	font-size: 14px;
	text-transform: none;
}
#services .panel-1 .services-link a {
	font-size: 18px;
	line-height: 18px;
}
#services .panel-2 .services-box p, #services .panel-2 .services-box div {
	padding: 0 20px 30px 20px;
	font-size: 14px;
}
#services .panel-2 .services-box div.services-badge {
	display: none;
}
.staff-item span.staff-item-image, .staff-item span.staff-item-text, .staff-item-title, .staff-item .name {
	display: block;
}
.staff-item {
	height: auto;
	line-height: normal;
}
.staff-item span.staff-item-text {
	margin-top: 10px;
}
.staff-item br {
	display: none;
}
#staff .title {
	font-size: 30px;
}
#information .panel-1 {
	padding-right: 30px;
}
#information .subtitle {
	font-size: 24px;
}
#contact h1, #contact h2 {
	font-size: 24px;
}
#contact .group-box {
	padding: 10px 0px;
}

.staff-box{
	height: 440px;
}
}
@media all and (max-width: 768px) {
.badge-container{
	display: none;
}

header {
	z-index: 900;
	overflow: visible;
	height: 56px;
}
.langlink {
	position: absolute;
	top: 0;
	right: auto;
	left: 0;
}
main {
	z-index: 100;
	margin-top: 56px;
}
nav {
	position: absolute;
	left: 100%;
	top: 0px;
	margin-top: 0;
	transition: all ease-out 0.15s;
	border-top: 0;
	width: 50%;
	height: auto;
	z-index: 600;
	background-color: #424e35;
}
nav.on {
	left: 50%;
}
nav a,  nav a.active {
	display: block;
	text-align: left;
	height: 36px;
	width: 100%;
	line-height: 36px;
	background-color: transparent;
	color: #ffffff;
}
.menuToggle {
	display: block;
}
.homeContent {
	height: auto;
}
.homeSlider {
	height: 200px;
}

.homeContent .badge{
	display: inline-block;
	position: relative;
	top: auto;
	left: auto;
	height: 120px;
	display: inline-block;
	margin-top: 20px;
	padding: 0;
	width: 25%;
	vertical-align: top;
}
.logo {
	position: relative;
	padding: 0;
	top: auto;
	left: auto;
	height: 120px;
	display: inline-block;
	transform: none;
	margin-top: 20px;
	margin-left: 20px;
	width: 50%;
	vertical-align: top;
}
.homeText {
	position: relative;
	top: auto;
	left: auto;
	transform: none;
	display: block;
	font-size: 24px;
	margin-top: 5px;
}
.homeText br {
	display: none;
}
.homeText small {
	display: inline-block;
	padding-left: 10px;
	font-size: 18px;
	line-height: 18px;
}
#home .countries {
	text-transform: none;
	font-size: 10px;
	display: block;
	border-top: solid 0 #ffffff;
	padding-top: 5px;
	margin-top: 10px;
	margin-left: 0;
	position: relative;
	bottom: auto;
	left: auto;
	text-align: center;
}
.slideGuide {
	top: 180px;
	right: 10px;
}
.slideGuide a {
	display: inline-block;
	margin-bottom: 0;
	margin-right: 10px;
}
.homeLinksRow {
	height: auto;
	line-height: normal;
	background-color: #031e0d;
	color: #848785;
	text-transform: uppercase;
}
.homeLinksRow div {
	height: auto;
	text-align: left;
	text-transform: none;
}
.homeLinksRow div.col-sm-2 {
	display: inline-block;
	width: 30%;
	text-align: center;
}
.homeLinksRow > div.divider:after {
	display: none;
}
.homeLinksRow .bigText {
	display: block;
	text-align: center;
	margin-top: 20px;
}
#home .downscroll {
	display: none;
	right: 20px;
	bottom: 20px;
	font-size: 10px;
}
.homeText {
	text-transform: none;
	transform: none;
	display: block;
	font-size: 18px;
	line-height: 24px;
	margin-top: 5px;
}
#security .panel-2 .panel-box,  #security .panel-3 .title {
	border: none;
	margin-top: 30px;
}
#security .panel-2 .title {
	margin-top: 30px;
}
#security .panel-3 ul {
	padding-left: 30px;
}
.carrousel-item {
	width: 80px;
}
.carrousel-item-number {
	height: 80px;
	line-height: 80px;
	width: 80px;
	font-size: 24px;
	margin-bottom: 20px;
}
#services .row {
	display: block;
}
#services .panel-1 .services-box {
	width: 100%;
	text-align: left;
}
#services .panel-1 .services-box ul {
	border: none;
}
#services .panel-2 .services-box {
	padding-top: 20px;
}
.staffLeftBackground {
	background: none;
}
.staff-col-1, .staff-col-2 {
	width: 50%;
	display: inline-block;
	margin-top: 50px;
}
.staff-col-2 .staff-box {
	border: none;
}
.staff-title {
	position: absolute;
	top: 20px;
	left: 20px;
}
#staff .title span {
	display: inline;
}
#information .panel-2 {
	text-align: left;
	background-color: rgba(0,0,0,0.5);
	padding: 20px;
}
#information .subtitle {
	padding-top: 0;
	text-align: left;
}
#information .panel-2 .info-text {
	padding: 0;
	margin: 0;
	border: none;
}
#contact .text-box-1 {
	border: none;
}
#contact .text-box-2 {
	padding-left: 0;
	text-align: left;
}
.staff-col-1{
	width: 100%;
}
}
 @media all and (max-width: 576px) {

.homeSlider,
.slideGuide{
	display: none;
}
	 
.homeContent .badge{
	height: 100px;
}
.logo {
	height: 100px;
}

.carrousel-box{
	width: 100%;
}

#security .panel-3 .title {
	text-transform: none;
}
#about .title {
	font-size: 24px;
}
#services h2 {
	padding: 20px 40px;
}
#information .title b, #information .title strong,  #information .title {
	font-size: 30px;
}
#contact h1 {
	text-transform: none;
}
.staff-box{
	column-count:auto;
}
.staff-box::before{
	display: none;
}
#services .panel-1 .services-link{
	margin: 5px 0;
	display: block;
}
}

@media all and (max-width: 576px) {
#services .panel-2 .services-box p, #services .panel-2 .services-box div{
	padding-left: 0;
	padding-right: 0;
}
}

.fonrequest a {
background-color: burlywood;
color: #000;
background: #D8A714;
text-transform:uppercase;

}
.fonrequest2 a {
    width: 100%;
	font-size: 20px;
	font-weight: bold;
	padding: 25px;
	background: url(../img/layout/recuest.png) no-repeat center center #000000;

}

.but_lat_tours {
	height: 78px;
	width: 230px;
	margin-bottom: 7px;
}
.but_lat_tours a {
	background-image: url(../img/layout/lateral_recuest.png);
	behavior: url(iepngfix.htc);
	height: 78px;
	width: 230px;
	display: block;
	background-repeat: no-repeat;
}
.but_lat_tours a:hover {
	height: 78px;
	width: 230px;
	background-position: 0px bottom;
}


div.fixed {
  position: fixed;
  bottom: 0;
  right: 0;
  width: 230px;
}