@charset "utf-8";
/* CSS Document */

/******************************

[Table of Contents]

1. Fonts
2. Body and some general stuff
3. Header
	3.1 Logo
	3.2 Languages
	3.3 Main Navigation
	3.4 Hamburger Menu
4. Main Slider
	4.1 Main Slider Dots
	4.2 Main Slider Nav
5. Footer
	5.1 Location
	5.2 Social


******************************/

/***********
1. Fonts
***********/

@import url('https://fonts.googleapis.com/css?family=Montserrat:700|Open+Sans:300,400,600,700,800');
@font-face
{
	font-family: 'Myriad Pro Regular';
	src: url('../fonts/myriad-pro-regular.ttf')  format('truetype'),
		 url('../fonts/myriad-pro-regular.otf')  format('opentype');
}

/*********************************
2. Body and some general stuff
*********************************/

*
{
	margin: 0;
	padding: 0;
}

body {
	background-image: url('../img/background2.png');
	background-repeat: no-repeat;
	background-size:cover;
	overflow-x: hidden;
	overflow-y: hidden;
}

/*********************************
2. Header
*********************************/

.header {
	left:20%;
}

.languages
{
	top:0;
	margin-left:60%;
}

ul#lang_buttons
       {
	width:300px;
	height:35px;
	opacity: 0.60;
	list-style: none;
       }

ul#lang_buttons li
       {
	text-align:center;
       }	

ul#lang_buttons li a
       {
	color:#FFF;
	text-decoration:none;
	font-size:22px;
	font-family: 'Open Sans', sans-serif;
	display:inline-block;
	float:left;
	margin-right:10px;
       }

ul#lang_buttons li a:hover 
       { 
    background-color:#7D7D7D;
	color:#FFF;
       }
	   
/*********************************
3.3 Main Navigation
*********************************/
.main_nav
{
	margin-right: 40%;
	margin-top:-4%;
	height: 100%;
	flex-basis: 100%;
	text-align: right;
}

.nav_items
{
	height: 100%;
}
.nav_items li
{
	display: inline-block;
	margin-left: 35px;
	height: 100%;
}
.nav_items li a
{
	font-family: 'Myriad Pro Regular', sans-serif;
	color:#fff;
	text-decoration:none;
	font-size:28px;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 3.5px;
	height: 100%;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding-left: 14px;
	padding-right: 10px;
}

.nav_items li:hover a
{
	color: #5EBAE6;
}

/*********************************
3.4 Hamburger Menu
*********************************/

.hamburger_container
{
	display: none;
	cursor: pointer;
	padding: 10px;
	margin-right: -10px;
	flex-basis: 50%;
	text-align: right;
}
.hamburger_text
{
	display: inline-block;
	margin-right: 7px;
	font-weight: 400;
	font-family:Segoe, "Segoe UI", "DejaVu Sans", "Trebuchet MS", Verdana, sans-serif;
	font-size:14px;
	color: #ffffff;
}
.hamburger_icon
{
	position: relative;
	display: inline-block;
	width: 22px;
	height: 3px;
	background: #ffffff;
	margin-bottom: 4px;
}
.hamburger_icon::before,
.hamburger_icon::after
{
	display: block;
	position: absolute;
	left: 0;
	width: 22px;
	height: 3px;
	background: #ffffff;
	content: '';
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
}
.hamburger_icon.active
{
	background: transparent;
}
.hamburger_icon.active::before
{
	top: -9px;
	transform: translateY(9px) rotate(45deg);
}
.hamburger_icon.active::after
{
	top: 9px;
	transform: translateY(-9px) rotate(-45deg);
}
.hamburger_icon::before
{
	top: -6px;
}
.hamburger_icon::after
{
	top: 6px;
}
.hamburger_container:hover .hamburger_icon::before
{
	top: -8px;
}
.hamburger_container:hover .hamburger_icon::after
{
	top: 8px;
}
.hamburger_container:hover .hamburger_icon.active::before
{
	-webkit-transform: none;
	-moz-transform: none;
	-ms-transform: none;
	-o-transform: none;
	transform: none;
	top: 0;
}
.hamburger_container:hover .hamburger_icon.active::after
{
	-webkit-transform: none;
	-moz-transform: none;
	-ms-transform: none;
	-o-transform: none;
	transform: none;
	top: 0;
}

.fs_menu_container
{
	position: fixed;
	top: -100vh;
	left: 0;
	width: 100vw;
	height: 100vh;
	background-image: url('../img/background6.png');
	background-repeat: no-repeat;
	background-size:cover;

	overflow-x: hidden;
	overflow-y: hidden;
	z-index: 19;
	-webkit-transition: all 1s 0s cubic-bezier(1,0,0,1);
	-moz-transition: all 1s 0s cubic-bezier(1,0,0,1);
	-ms-transition: all 1s 0s cubic-bezier(1,0,0,1);
	-o-transition: all 1s 0s cubic-bezier(1,0,0,1);
	transition: all 1s 0s cubic-bezier(1,0,0,1);
	padding-left: 48px;
	padding-right: 63px;
	padding-top: 150px;
	text-align: right;
}

.fs_menu_shapes img
{
	width: 100%;
}
.fs_menu_container.active
{
	top: 0;
}
.fs_menu_list
{
	display: inline-block;
}
.fs_menu_list li
{
	overflow: hidden;
}
.fs_menu_list li a
{
	display: inline-block;
	font-size: 62px;
	font-weight: 500;
	color: #fff;
	font-family:Gotham, "Helvetica Neue", Helvetica, Arial, sans-serif;
	line-height: 1.4;
	-webkit-transform: translateY(-100%);
	-moz-transform: translateY(-100%);
	-ms-transform: translateY(-100%);
	-o-transform: translateY(-100%);
	transform: translateY(-100%);
	-webkit-transition: all 600ms 600ms cubic-bezier(.19,1,.22,1);
	-moz-transition: all 600ms 600ms cubic-bezier(.19,1,.22,1);
	-ms-transition: all 600ms 600ms cubic-bezier(.19,1,.22,1);
	-o-transition: all 600ms 600ms cubic-bezier(.19,1,.22,1);
	transition: all 1600ms cubic-bezier(.19,1,.22,1);
}
.fs_menu_list li:first-child a {transition-delay: 600ms;}
.fs_menu_list li:nth-child(2) a {transition-delay: 670ms;}
.fs_menu_list li:nth-child(3) a {transition-delay: 740ms;}
.fs_menu_list li:nth-child(4) a {transition-delay: 810ms;}
.fs_menu_list li:nth-child(5) a {transition-delay: 880ms;}
.fs_menu_list li:nth-child(6) a {transition-delay: 950ms;}
.fs_menu_list li:nth-child(7) a {transition-delay: 900ms;}
.fs_menu_list li:nth-child(8) a {transition-delay: 950ms;}
.fs_menu_list li:nth-child(9) a {transition-delay: 1000ms;}
.fs_menu_list li:nth-child(10) a {transition-delay: 1050ms;}
.fs_menu_container.active .fs_menu_list li a
{
	transform: none;
}
.fs_menu_list li a span
{
	position: relative;
}
.fs_menu_list li a span span
{
	position: absolute;
	top: -1px;
	left: -5px;
	color: #5EBAE6;
	z-index: -1;
}
.fs_menu_list li a > span::after
{
	display: block;
	position: absolute;
	bottom: 4px;
	left: 0;
	width: 0%;
	height: 3px;
	background: #171717;
	content: '';
	-webkit-transition: all 600ms cubic-bezier(.19,1,.22,1);
	-moz-transition: all 600ms cubic-bezier(.19,1,.22,1);
	-ms-transition: all 600ms cubic-bezier(.19,1,.22,1);
	-o-transition: all 600ms cubic-bezier(.19,1,.22,1);
	transition: all 600ms cubic-bezier(.19,1,.22,1);
}
.fs_menu_list li a:hover span::after
{
	width: 100%;
}
/*********************************
4. Main Slider
*********************************/
.home
{
	overflow: hidden;
}
.hero_slider_container
{
	width: 60%;
	height: 480px;
	margin-top: 8%;
	margin-left:20%;
	
}

.hero_slider_container img
{
border-radius: 20px;
border-color:#fff;
border:3px;
}
.main_slider_item_bg
{
	position: relative;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	
}

.container_expl h1
{
	font-size:37px;
	margin-left:20%;
	margin-top:2%;
	font-family: 'Myriad Pro Regular', sans-serif;
	color:#FFF;
	max-width:60%;
}


/*********************************
4.2 Main Slider Nav
*********************************/
.main_slider_nav
{
	position: absolute;
	top: 55%;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
	z-index: 11;
	padding: 10px;
	cursor: pointer;
}
.main_slider_nav_left
{
	left: 39px;
}
.main_slider_nav_right
{
	right: 39px;
}
.main_slider_nav i
{
	color: #FFFFFF;
	font-size: 18px;
}
.main_slider_nav:hover i
{
	color: #1D2B4D;
}
/*********************************
5. Footer
*********************************/

/*********************************
5.1 Location
*********************************/
.next {
	text-decoration:none;
	margin-bottom:5%;
	margin-left:10%;
}

.next img {
    max-width: 90px; 
    max-height: 40px;
}

.container_expl h1
	{
	color:#FFF;
	margin-left:20%;
	text-decoration:none;
	max-width:60%;
	font-weight:300;
	font-size:22px;
	font-family: 'Myriad Pro Regular', sans-serif;
	}
	
@charset "utf-8";
/* CSS Document */

/******************************

[Table of Contents]
0. 1800px
1. 1680px
2. 1440px
3. 1280px
4. 1199px
5. 1024px
6. 991px
7. 959px
8. 880px
9. 768px
10. 667px
11. 600px
12. 539px
13. 479px
14. 400px

******************************/


@media only screen and (min-width: 1800px)
{	

}

@media only screen and (min-width: 1600px) and (max-width: 1800px)
{
	*
{
	margin: 0;
	padding: 0;
}

body {
	background-image: url('../img/background2.png');
	background-repeat: no-repeat;
	background-size:cover;
	overflow-x: hidden;
	overflow-y: hidden;
}

/*********************************
2. Header
*********************************/

.header {
	left:20%;
}

.logo_container img {
    max-width: 210px; 
    max-height: 210px;
}

.languages
{
	top:0;
	margin-left:45%;
}

ul#lang_buttons
       {
	width:300px;
	height:35px;
	opacity: 0.60;
	list-style: none;
       }

ul#lang_buttons li
       {
	text-align:center;
       }	

ul#lang_buttons li a
       {
	color:#FFF;
	text-decoration:none;
	font-size:22px;
	font-family: 'Open Sans', sans-serif;
	display:inline-block;
	float:left;
	margin-right:10px;
       }

ul#lang_buttons li a:hover 
       { 
    background-color:#7D7D7D;
	color:#FFF;
       }
	   

.main_nav
{
	margin-right: 40%;
	margin-top:-4%;
	height: 100%;
	flex-basis: 100%;
	text-align: right;
}

.nav_items
{
	height: 100%;
}
.nav_items li
{
	display: inline-block;
	margin-left: 35px;
	height: 100%;
}
.nav_items li a
{
	font-family: 'Myriad Pro Regular', sans-serif;
	color:#fff;
	text-decoration:none;
	font-size:23px;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 3.5px;
	height: 100%;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding-left: 12px;
	padding-right: 9px;
}

.nav_items li:hover a
{
	color: #5EBAE6;
}

.main_slider_nav_left
{
	left: 39px;
}
.main_slider_nav_right
{
	right: 39px;
}


.hamburger_container
{
	display: none;
	cursor: pointer;
	padding: 10px;
	margin-right: -10px;
	flex-basis: 50%;
	text-align: right;
}
.hamburger_text
{
	display: inline-block;
	margin-right: 7px;
	font-weight: 400;
	font-family:Segoe, "Segoe UI", "DejaVu Sans", "Trebuchet MS", Verdana, sans-serif;
	font-size:14px;
	color: #ffffff;
}
.hamburger_icon
{
	position: relative;
	display: inline-block;
	width: 22px;
	height: 3px;
	background: #ffffff;
	margin-bottom: 4px;
}
.hamburger_icon::before,
.hamburger_icon::after
{
	display: block;
	position: absolute;
	left: 0;
	width: 22px;
	height: 3px;
	background: #ffffff;
	content: '';
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
}
.hamburger_icon.active
{
	background: transparent;
}
.hamburger_icon.active::before
{
	top: -9px;
	transform: translateY(9px) rotate(45deg);
}
.hamburger_icon.active::after
{
	top: 9px;
	transform: translateY(-9px) rotate(-45deg);
}
.hamburger_icon::before
{
	top: -6px;
}
.hamburger_icon::after
{
	top: 6px;
}
.hamburger_container:hover .hamburger_icon::before
{
	top: -8px;
}
.hamburger_container:hover .hamburger_icon::after
{
	top: 8px;
}
.hamburger_container:hover .hamburger_icon.active::before
{
	-webkit-transform: none;
	-moz-transform: none;
	-ms-transform: none;
	-o-transform: none;
	transform: none;
	top: 0;
}
.hamburger_container:hover .hamburger_icon.active::after
{
	-webkit-transform: none;
	-moz-transform: none;
	-ms-transform: none;
	-o-transform: none;
	transform: none;
	top: 0;
}

.fs_menu_container
{
	position: fixed;
	top: -100vh;
	left: 0;
	width: 100vw;
	height: 100vh;
	background-image: url('../img/background6.png');
	background-repeat: no-repeat;
	background-size:cover;

	overflow-x: hidden;
	overflow-y: hidden;
	z-index: 19;
	-webkit-transition: all 1s 0s cubic-bezier(1,0,0,1);
	-moz-transition: all 1s 0s cubic-bezier(1,0,0,1);
	-ms-transition: all 1s 0s cubic-bezier(1,0,0,1);
	-o-transition: all 1s 0s cubic-bezier(1,0,0,1);
	transition: all 1s 0s cubic-bezier(1,0,0,1);
	padding-left: 48px;
	padding-right: 63px;
	padding-top: 150px;
	text-align: right;
}

.fs_menu_shapes img
{
	width: 100%;
}
.fs_menu_container.active
{
	top: 0;
}
.fs_menu_list
{
	display: inline-block;
}
.fs_menu_list li
{
	overflow: hidden;
}
.fs_menu_list li a
{
	display: inline-block;
	font-size: 62px;
	font-weight: 500;
	color: #fff;
	font-family:Gotham, "Helvetica Neue", Helvetica, Arial, sans-serif;
	line-height: 1.4;
	-webkit-transform: translateY(-100%);
	-moz-transform: translateY(-100%);
	-ms-transform: translateY(-100%);
	-o-transform: translateY(-100%);
	transform: translateY(-100%);
	-webkit-transition: all 600ms 600ms cubic-bezier(.19,1,.22,1);
	-moz-transition: all 600ms 600ms cubic-bezier(.19,1,.22,1);
	-ms-transition: all 600ms 600ms cubic-bezier(.19,1,.22,1);
	-o-transition: all 600ms 600ms cubic-bezier(.19,1,.22,1);
	transition: all 1600ms cubic-bezier(.19,1,.22,1);
}
.fs_menu_list li:first-child a {transition-delay: 600ms;}
.fs_menu_list li:nth-child(2) a {transition-delay: 670ms;}
.fs_menu_list li:nth-child(3) a {transition-delay: 740ms;}
.fs_menu_list li:nth-child(4) a {transition-delay: 810ms;}
.fs_menu_list li:nth-child(5) a {transition-delay: 880ms;}
.fs_menu_list li:nth-child(6) a {transition-delay: 950ms;}
.fs_menu_list li:nth-child(7) a {transition-delay: 900ms;}
.fs_menu_list li:nth-child(8) a {transition-delay: 950ms;}
.fs_menu_list li:nth-child(9) a {transition-delay: 1000ms;}
.fs_menu_list li:nth-child(10) a {transition-delay: 1050ms;}
.fs_menu_container.active .fs_menu_list li a
{
	transform: none;
}
.fs_menu_list li a span
{
	position: relative;
}
.fs_menu_list li a span span
{
	position: absolute;
	top: -1px;
	left: -5px;
	color: #5EBAE6;
	z-index: -1;
}
.fs_menu_list li a > span::after
{
	display: block;
	position: absolute;
	bottom: 4px;
	left: 0;
	width: 0%;
	height: 3px;
	background: #171717;
	content: '';
	-webkit-transition: all 600ms cubic-bezier(.19,1,.22,1);
	-moz-transition: all 600ms cubic-bezier(.19,1,.22,1);
	-ms-transition: all 600ms cubic-bezier(.19,1,.22,1);
	-o-transition: all 600ms cubic-bezier(.19,1,.22,1);
	transition: all 600ms cubic-bezier(.19,1,.22,1);
}

.fs_menu_list li a:hover span::after
{
	width: 100%;
}

.home
{
	overflow: hidden;
}
.hero_slider_container
{
	width: 80%;
	height: 420px;
	margin-top: 8%;
	margin-left:10%;
}

.main_slider_item_bg
{
	position: relative;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
}


.main_slider_nav
{
	position: absolute;
	top: 55%;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
	z-index: 11;
	padding: 10px;
	cursor: pointer;
}

.main_slider_nav i
{
	color: #FFFFFF;
	font-size: 18px;
}
.main_slider_nav:hover i
{
	color: #1D2B4D;
}

.next {
	text-decoration:none;
	margin-bottom:5%;
	margin-left:10%;
}

.next img {
    max-width: 90px; 
    max-height: 40px;
}

.container_expl h1
	{
	color:#FFF;
	margin-left:20%;
	text-decoration:none;
	max-width:60%;
	font-weight:300;
	font-size:22px;
	font-family: 'Myriad Pro Regular', sans-serif;
	}

}

@media only screen and (min-width: 1450px) and (max-width: 1600px)
				   and (min-height: 900px)
{

body {
	background-image: url('../img/background5.png');
	background-repeat: no-repeat;
	background-size:cover;
	overflow-x: hidden;
	overflow-y: hidden;
}


.header {
	left:20%;
}

.languages
{
	margin-top:-150px;
	margin-left:62%;
}

	.logo_container
{
	flex-basis: 50%;
	margin-top: 1%;
	margin-left: -5%;
}

.logo
{
	margin-left: 0;
	margin-top:0;
}

.logo_container img {
    max-width: 190px; 
    max-height: 190px;
}

ul#lang_buttons
       {
	width:300px;
	height:35px;
	opacity: 0.60;
	list-style: none;
       }

ul#lang_buttons li
       {
	text-align:center;
       }	

ul#lang_buttons li a
       {
	color:#FFF;
	text-decoration:none;
	font-size:22px;
	font-family: 'Open Sans', sans-serif;
	display:inline-block;
	float:left;
	margin-right:10px;
       }

ul#lang_buttons li a:hover 
       { 
    background-color:#7D7D7D;
	color:#FFF;
       }
	   
.main_nav
	  {
	margin-right:30%;
	margin-top:-4%;
	height: 100%;
	flex-basis: 100%;
	text-align: right;
	  }

.nav_items
{
	height: 100%;
}
.nav_items li
{
	display: inline-block;
	margin-left: 20px;
	height: 100%;
}
.nav_items li a
{
	font-family: 'Myriad Pro Regular', sans-serif;
	color:#fff;
	text-decoration:none;
	font-size:20px;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 3.5px;
	height: 100%;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding-left: 12px;
	padding-right: 10px;
}

.nav_items li:hover a
{
	color: #5EBAE6;
}

.home
{
	overflow: hidden;
}
.hero_slider_container
{
	width: 80%;
	height: 350px;
	margin-top: 10%;
	margin-left:10%;
}

.main_slider_item_bg
{
	position: relative;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
}

.main_slider_nav
{
	position: absolute;
	top: 55%;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
	z-index: 11;
	padding: 10px;
	cursor: pointer;
}
.main_slider_nav_left
{
	left: 39px;
}
.main_slider_nav_right
{
	right: 39px;
}
.main_slider_nav i
{
	color: #FFFFFF;
	font-size: 18px;
}
.main_slider_nav:hover i
{
	color: #1D2B4D;
}

.next {
	text-decoration:none;
	margin-bottom:5%;
	margin-left:10%;
}

.next img {
    max-width: 90px; 
    max-height: 40px;
}

.container_expl h1
	{
	color:#FFF;
	margin-left:20%;
	text-decoration:none;
	max-width:60%;
	font-weight:300;
	font-size:22px;
	font-family: 'Myriad Pro Regular', sans-serif;
	}	
}

@media only screen and (min-width: 1450px) and (max-width: 1600px)
				   and (max-height: 900px)
{

body {
	background-image: url('../img/background5.png');
	background-repeat: no-repeat;
	background-size:cover;
	overflow-x: hidden;
	overflow-y: hidden;
}


.header {
	left:20%;
}

.languages
{
	margin-top:-150px;
	margin-left:62%;
}

	.logo_container
{
	flex-basis: 50%;
	margin-top: 1%;
	margin-left: -5%;
}

.logo
{
	margin-left: 0;
	margin-top:0;
}

.logo_container img {
    max-width: 175px; 
    max-height: 175px;
}

ul#lang_buttons
       {
	width:300px;
	height:35px;
	opacity: 0.60;
	list-style: none;
       }

ul#lang_buttons li
       {
	text-align:center;
       }	

ul#lang_buttons li a
       {
	color:#FFF;
	text-decoration:none;
	font-size:22px;
	font-family: 'Open Sans', sans-serif;
	display:inline-block;
	float:left;
	margin-right:10px;
       }

ul#lang_buttons li a:hover 
       { 
    background-color:#7D7D7D;
	color:#FFF;
       }
	   
.main_nav
	  {
	margin-right:30%;
	margin-top:-4%;
	height: 100%;
	flex-basis: 100%;
	text-align: right;
	  }

.nav_items
{
	height: 100%;
}
.nav_items li
{
	display: inline-block;
	margin-left: 20px;
	height: 100%;
}
.nav_items li a
{
	font-family: 'Myriad Pro Regular', sans-serif;
	color:#fff;
	text-decoration:none;
	font-size:20px;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 3.5px;
	height: 100%;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding-left: 12px;
	padding-right: 10px;
}

.nav_items li:hover a
{
	color: #5EBAE6;
}

.home
{
	overflow: hidden;
}
.hero_slider_container
{
	width: 70%;
	height: 340px;
	margin-top: 9%;
	margin-left:15%;
}

.main_slider_item_bg
{
	position: relative;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
}

.main_slider_nav
{
	position: absolute;
	top: 55%;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
	z-index: 11;
	padding: 10px;
	cursor: pointer;
}
.main_slider_nav_left
{
	left: 39px;
}
.main_slider_nav_right
{
	right: 39px;
}
.main_slider_nav i
{
	color: #FFFFFF;
	font-size: 18px;
}
.main_slider_nav:hover i
{
	color: #1D2B4D;
}

.next {
	text-decoration:none;
	margin-bottom:5%;
	margin-left:10%;
}

.next img {
    max-width: 90px; 
    max-height: 40px;
}

.container_expl h1
	{
	color:#FFF;
	margin-left:20%;
	text-decoration:none;
	max-width:60%;
	font-weight:300;
	font-size:22px;
	font-family: 'Myriad Pro Regular', sans-serif;
	}	
}



@media only screen and (min-width: 1400px) and (max-width: 1450px)
{

body {
	background-image: url('../img/background5.png');
	background-repeat: no-repeat;
	background-size:cover;
	overflow-x: hidden;
	overflow-y: hidden;
}


.header {
	left:20%;
}

.languages
{
	margin-top:-150px;
	margin-left:55%;
}

	.logo_container
{
	flex-basis: 50%;
	margin-top: 1%;
	margin-left: -5%;
}

.logo
{
	margin-left: 0;
	margin-top:0;
}

.logo_container img {
    max-width: 190px; 
    max-height: 190px;
}

ul#lang_buttons
       {
	width:300px;
	height:35px;
	opacity: 0.60;
	list-style: none;
       }

ul#lang_buttons li
       {
	text-align:center;
       }	

ul#lang_buttons li a
       {
	color:#FFF;
	text-decoration:none;
	font-size:22px;
	font-family: 'Open Sans', sans-serif;
	display:inline-block;
	float:left;
	margin-right:10px;
       }

ul#lang_buttons li a:hover 
       { 
    background-color:#7D7D7D;
	color:#FFF;
       }
	   
.main_nav
	  {
	margin-right:30%;
	margin-top:-4%;
	height: 100%;
	flex-basis: 100%;
	text-align: right;
	  }

.nav_items
{
	height: 100%;
}
.nav_items li
{
	display: inline-block;
	margin-left: 20px;
	height: 100%;
}
.nav_items li a
{
	font-family: 'Myriad Pro Regular', sans-serif;
	color:#fff;
	text-decoration:none;
	font-size:20px;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 3.5px;
	height: 100%;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding-left: 12px;
	padding-right: 10px;
}

.nav_items li:hover a
{
	color: #5EBAE6;
}

.home
{
	overflow: hidden;
}
.hero_slider_container
{
	width: 80%;
	height: 350px;
	margin-top: 8%;
	margin-left:10%;
}

.main_slider_item_bg
{
	position: relative;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
}

.main_slider_nav
{
	position: absolute;
	top: 55%;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
	z-index: 11;
	padding: 10px;
	cursor: pointer;
}
.main_slider_nav_left
{
	left: 39px;
}
.main_slider_nav_right
{
	right: 39px;
}
.main_slider_nav i
{
	color: #FFFFFF;
	font-size: 18px;
}
.main_slider_nav:hover i
{
	color: #1D2B4D;
}
.next {
	text-decoration:none;
	margin-bottom:5%;
	margin-left:10%;
}

.next img {
    max-width: 90px; 
    max-height: 40px;
}

.container_expl h1
	{
	color:#FFF;
	margin-left:20%;
	text-decoration:none;
	max-width:60%;
	font-weight:300;
	font-size:22px;
	font-family: 'Myriad Pro Regular', sans-serif;
	}
}

@media only screen and (min-width: 1350px) and (max-width: 1400px)
				   and (max-height: 670px)
{

body {
	background-image: url('../img/background5.png');
	background-repeat: no-repeat;
	background-size:cover;
	overflow-x: hidden;
	overflow-y: hidden;
}


.header {
	left:20%;
}

.languages
{
	margin-top:-150px;
	margin-left:55%;
}

	.logo_container
{
	flex-basis: 50%;
	margin-top: 1%;
	margin-left: -5%;
}

.logo
{
	margin-left: 0;
	margin-top:0;
}

.logo_container img {
    max-width: 170px; 
    max-height: 170px;
}

ul#lang_buttons
       {
	width:300px;
	height:35px;
	opacity: 0.60;
	list-style: none;
       }

ul#lang_buttons li
       {
	text-align:center;
       }	

ul#lang_buttons li a
       {
	color:#FFF;
	text-decoration:none;
	font-size:22px;
	font-family: 'Open Sans', sans-serif;
	display:inline-block;
	float:left;
	margin-right:10px;
       }

ul#lang_buttons li a:hover 
       { 
    background-color:#7D7D7D;
	color:#FFF;
       }
	   
.main_nav
	  {
	margin-right:30%;
	margin-top:-4%;
	height: 100%;
	flex-basis: 100%;
	text-align: right;
	  }

.nav_items
{
	height: 100%;
}
.nav_items li
{
	display: inline-block;
	margin-left: 20px;
	height: 100%;
}
.nav_items li a
{
	font-family: 'Myriad Pro Regular', sans-serif;
	color:#fff;
	text-decoration:none;
	font-size:20px;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 3.5px;
	height: 100%;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding-left: 12px;
	padding-right: 10px;
}

.nav_items li:hover a
{
	color: #5EBAE6;
}

.home
{
	overflow: hidden;
}
.hero_slider_container
{
	width: 80%;
	height: 300px;
	margin-top:7%;
	margin-left:10%;
}

.main_slider_item_bg
{
	position: relative;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
}


.main_slider_nav
{
	position: absolute;
	top: 55%;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
	z-index: 11;
	padding: 10px;
	cursor: pointer;
}
.main_slider_nav_left
{
	left: 39px;
}
.main_slider_nav_right
{
	right: 39px;
}
.main_slider_nav i
{
	color: #FFFFFF;
	font-size: 18px;
}
.main_slider_nav:hover i
{
	color: #1D2B4D;
}

.next {
	text-decoration:none;
	margin-bottom:5%;
	margin-left:10%;
}

.next img {
    max-width: 90px; 
    max-height: 40px;
}

.container_expl h1
	{
	color:#FFF;
	margin-left:20%;
	text-decoration:none;
	max-width:60%;
	font-weight:300;
	font-size:22px;
	font-family: 'Myriad Pro Regular', sans-serif;
	}
}



@media only screen and (min-width: 1350px) and (max-width: 1400px)
				   and (min-height: 670px) and (max-height: 800px)
{

body {
	background-image: url('../img/background5.png');
	background-repeat: no-repeat;
	background-size:cover;
	overflow-x: hidden;
	overflow-y: hidden;
}


.header {
	left:20%;
}

.languages
{
	margin-top:-150px;
	margin-left:55%;
}

	.logo_container
{
	flex-basis: 50%;
	margin-top: 1%;
	margin-left: -5%;
}

.logo
{
	margin-left: 0;
	margin-top:0;
}

.logo_container img {
    max-width: 180px; 
    max-height: 180px;
}

ul#lang_buttons
       {
	width:300px;
	height:35px;
	opacity: 0.60;
	list-style: none;
       }

ul#lang_buttons li
       {
	text-align:center;
       }	

ul#lang_buttons li a
       {
	color:#FFF;
	text-decoration:none;
	font-size:22px;
	font-family: 'Open Sans', sans-serif;
	display:inline-block;
	float:left;
	margin-right:10px;
       }

ul#lang_buttons li a:hover 
       { 
    background-color:#7D7D7D;
	color:#FFF;
       }
	   
.main_nav
	  {
	margin-right:30%;
	margin-top:-4%;
	height: 100%;
	flex-basis: 100%;
	text-align: right;
	  }

.nav_items
{
	height: 100%;
}
.nav_items li
{
	display: inline-block;
	margin-left: 20px;
	height: 100%;
}
.nav_items li a
{
	font-family: 'Myriad Pro Regular', sans-serif;
	color:#fff;
	text-decoration:none;
	font-size:20px;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 3.5px;
	height: 100%;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding-left: 12px;
	padding-right: 10px;
}

.nav_items li:hover a
{
	color: #5EBAE6;
}

.home
{
	overflow: hidden;
}
.hero_slider_container
{
	width: 80%;
	height: 320px;
	margin-top:9%;
	margin-left:10%;
}

.main_slider_item_bg
{
	position: relative;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
}

.main_slider_nav
{
	position: absolute;
	top: 55%;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
	z-index: 11;
	padding: 10px;
	cursor: pointer;
}
.main_slider_nav_left
{
	left: 39px;
}
.main_slider_nav_right
{
	right: 39px;
}
.main_slider_nav i
{
	color: #FFFFFF;
	font-size: 18px;
}
.main_slider_nav:hover i
{
	color: #1D2B4D;
}

.next {
	text-decoration:none;
	margin-bottom:5%;
	margin-left:10%;
}

.next img {
    max-width: 90px; 
    max-height: 40px;
}

.container_expl h1
	{
	color:#FFF;
	margin-left:20%;
	text-decoration:none;
	max-width:60%;
	font-weight:300;
	font-size:22px;
	font-family: 'Myriad Pro Regular', sans-serif;
	}
}


@media only screen and (min-width: 1350px) and (max-width: 1400px)
				   and (min-height: 800px) and (max-height: 900px)
{

body {
	background-image: url('../img/background5.png');
	background-repeat: no-repeat;
	background-size:cover;
	overflow-x: hidden;
	overflow-y: hidden;
}


.header {
	left:20%;
}

.languages
{
	margin-top:-150px;
	margin-left:55%;
}

	.logo_container
{
	flex-basis: 50%;
	margin-top: 1%;
	margin-left: -5%;
}

.logo
{
	margin-left: 0;
	margin-top:0;
}

.logo_container img {
    max-width: 180px; 
    max-height: 180px;
}

ul#lang_buttons
       {
	width:300px;
	height:35px;
	opacity: 0.60;
	list-style: none;
       }

ul#lang_buttons li
       {
	text-align:center;
       }	

ul#lang_buttons li a
       {
	color:#FFF;
	text-decoration:none;
	font-size:22px;
	font-family: 'Open Sans', sans-serif;
	display:inline-block;
	float:left;
	margin-right:10px;
       }

ul#lang_buttons li a:hover 
       { 
    background-color:#7D7D7D;
	color:#FFF;
       }
	   
.main_nav
	  {
	margin-right:30%;
	margin-top:-4%;
	height: 100%;
	flex-basis: 100%;
	text-align: right;
	  }

.nav_items
{
	height: 100%;
}
.nav_items li
{
	display: inline-block;
	margin-left: 20px;
	height: 100%;
}
.nav_items li a
{
	font-family: 'Myriad Pro Regular', sans-serif;
	color:#fff;
	text-decoration:none;
	font-size:20px;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 3.5px;
	height: 100%;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding-left: 12px;
	padding-right: 10px;
}

.nav_items li:hover a
{
	color: #5EBAE6;
}

.home
{
	overflow: hidden;
}
.hero_slider_container
{
	width: 80%;
	height: 320px;
	margin-top: 7%;
	margin-left:10%;
}

.main_slider_item_bg
{
	position: relative;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
}


.main_slider_nav
{
	position: absolute;
	top: 55%;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
	z-index: 11;
	padding: 10px;
	cursor: pointer;
}
.main_slider_nav_left
{
	left: 39px;
}
.main_slider_nav_right
{
	right: 39px;
}
.main_slider_nav i
{
	color: #FFFFFF;
	font-size: 18px;
}
.main_slider_nav:hover i
{
	color: #1D2B4D;
}
.next {
	text-decoration:none;
	margin-bottom:5%;
	margin-left:10%;
}

.next img {
    max-width: 90px; 
    max-height: 40px;
}

.container_expl h1
	{
	color:#FFF;
	margin-left:20%;
	text-decoration:none;
	max-width:60%;
	font-weight:300;
	font-size:22px;
	font-family: 'Myriad Pro Regular', sans-serif;
	}
}


@media only screen and (min-width: 1350px) and (max-width: 1400px)
				   and (min-height: 900px)
{

body {
	background-image: url('../img/background5.png');
	background-repeat: no-repeat;
	background-size:cover;
	overflow-x: hidden;
	overflow-y: hidden;
}


.header {
	left:20%;
}

.languages
{
	margin-top:-150px;
	margin-left:55%;
}

	.logo_container
{
	flex-basis: 50%;
	margin-top: 1%;
	margin-left: -5%;
}

.logo
{
	margin-left: 0;
	margin-top:0;
}

.logo_container img {
    max-width: 190px; 
    max-height: 190px;
}

ul#lang_buttons
       {
	width:300px;
	height:35px;
	opacity: 0.60;
	list-style: none;
       }

ul#lang_buttons li
       {
	text-align:center;
       }	

ul#lang_buttons li a
       {
	color:#FFF;
	text-decoration:none;
	font-size:22px;
	font-family: 'Open Sans', sans-serif;
	display:inline-block;
	float:left;
	margin-right:10px;
       }

ul#lang_buttons li a:hover 
       { 
    background-color:#7D7D7D;
	color:#FFF;
       }
	   
.main_nav
	  {
	margin-right:30%;
	margin-top:-4%;
	height: 100%;
	flex-basis: 100%;
	text-align: right;
	  }

.nav_items
{
	height: 100%;
}
.nav_items li
{
	display: inline-block;
	margin-left: 20px;
	height: 100%;
}
.nav_items li a
{
	font-family: 'Myriad Pro Regular', sans-serif;
	color:#fff;
	text-decoration:none;
	font-size:20px;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 3.5px;
	height: 100%;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding-left: 12px;
	padding-right: 10px;
}

.nav_items li:hover a
{
	color: #5EBAE6;
}

.home
{
	overflow: hidden;
}
.hero_slider_container
{
	width: 80%;
	height: 350px;
	margin-top: 8%;
	margin-left:10%;
}

.main_slider_item_bg
{
	position: relative;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
}

.main_slider_nav
{
	position: absolute;
	top: 55%;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
	z-index: 11;
	padding: 10px;
	cursor: pointer;
}
.main_slider_nav_left
{
	left: 39px;
}
.main_slider_nav_right
{
	right: 39px;
}
.main_slider_nav i
{
	color: #FFFFFF;
	font-size: 18px;
}
.main_slider_nav:hover i
{
	color: #1D2B4D;
}
.next {
	text-decoration:none;
	margin-bottom:5%;
	margin-left:10%;
}

.next img {
    max-width: 90px; 
    max-height: 40px;
}

.container_expl h1
	{
	color:#FFF;
	margin-left:20%;
	text-decoration:none;
	max-width:60%;
	font-weight:300;
	font-size:22px;
	font-family: 'Myriad Pro Regular', sans-serif;
	}
}


@media only screen and (min-width: 1200px) and (max-width: 1350px)
{
	

body {
	background-image: url('../img/background5.png');
	background-repeat: no-repeat;
	background-size:cover;
	overflow-x: hidden;
	overflow-y: hidden;
}


.header {
	left:20%;
}

.languages
{
	margin-top:-150px;
	margin-left:55%;
}

	.logo_container
{
	flex-basis: 50%;
	margin-top: 1%;
	margin-left: -5%;
}

.logo
{
	margin-left: 0;
	margin-top:0;
}

.logo_container img {
    max-width: 180px; 
    max-height: 180px;
}

ul#lang_buttons
       {
	width:300px;
	height:35px;
	opacity: 0.60;
	list-style: none;
       }

ul#lang_buttons li
       {
	text-align:center;
       }	

ul#lang_buttons li a
       {
	color:#FFF;
	text-decoration:none;
	font-size:22px;
	font-family: 'Open Sans', sans-serif;
	display:inline-block;
	float:left;
	margin-right:10px;
       }

ul#lang_buttons li a:hover 
       { 
    background-color:#7D7D7D;
	color:#FFF;
       }
	   
.main_nav
	  {
	margin-right:30%;
	margin-top:-4%;
	height: 100%;
	flex-basis: 100%;
	text-align: right;
	  }

.nav_items
{
	height: 100%;
}
.nav_items li
{
	display: inline-block;
	margin-left: 20px;
	height: 100%;
}
.nav_items li a
{
	font-family: 'Myriad Pro Regular', sans-serif;
	color:#fff;
	text-decoration:none;
	font-size:19px;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 3.5px;
	height: 100%;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding-left: 12px;
	padding-right: 10px;
}

.nav_items li:hover a
{
	color: #5EBAE6;
}

.home
{
	overflow: hidden;
}
.hero_slider_container
{
	width: 80%;
	height: 350px;
	margin-top: 8%;
	margin-left:10%;
}

.main_slider_item_bg
{
	position: relative;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
}


.main_slider_nav
{
	position: absolute;
	top: 55%;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
	z-index: 11;
	padding: 10px;
	cursor: pointer;
}
.main_slider_nav_left
{
	left: 39px;
}
.main_slider_nav_right
{
	right: 39px;
}
.main_slider_nav i
{
	color: #FFFFFF;
	font-size: 18px;
}
.main_slider_nav:hover i
{
	color: #1D2B4D;
}

.container_expl h1
{
	color:#FFF;
	margin-left:10%;
	margin-right:10%;
	text-decoration:none;
	max-width:100%;
	font-size:22px;
	font-family: 'Myriad Pro Regular', sans-serif;
	font-weight: 250;
}

.next {
	text-decoration:none;
	margin-bottom:2%;
	margin-left:10%;
}

.next img {
    max-width: 90px; 
    max-height: 40px;
}


}

@media only screen and (min-width: 992px) and (max-width: 1200px)
				   and (min-height: 850px)

{
body {
	background-image: url('../img/background6.png');
	background-repeat: no-repeat;
	background-size:cover;
	overflow-x: hidden;
	overflow-y: hidden;
}


.header {
	left:20%;
}

.languages
{
	margin-top:-140px;
	margin-left:60%;
}

	.logo_container
{
	flex-basis: 50%;
	margin-top: 1%;
	margin-left: -5%;
}

.logo
{
	margin-left: 0;
	margin-top:0;
}

.logo_container img {
    max-width: 180px; 
    max-height: 180px;
}

ul#lang_buttons
       {
	width:300px;
	height:35px;
	opacity: 0.60;
	list-style: none;
       }

ul#lang_buttons li
       {
	text-align:center;
       }	

ul#lang_buttons li a
       {
	color:#FFF;
	text-decoration:none;
	font-size:20px;
	font-family: 'Open Sans', sans-serif;
	display:inline-block;
	float:left;
	margin-right:10px;
       }

ul#lang_buttons li a:hover 
       { 
    background-color:#7D7D7D;
	color:#FFF;
       }
	   
.main_nav
	  {
	margin-left:-28%;
	margin-top:10%;
	height: 100%;
	flex-basis: 100%;
	text-align: right;
	  }

.nav_items
{
	height: 100%;
}
.nav_items li
{
	display: inline-block;
	margin-left: 20px;
	height: 100%;
}
.nav_items li a
{
	font-family: 'Myriad Pro Regular', sans-serif;
	color:#fff;
	text-decoration:none;
	font-size:19px;
	font-weight: 450;
	text-transform: uppercase;
	letter-spacing: 3.5px;
	height: 100%;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding-left: 10px;
	padding-right: 8px;
}

.nav_items li:hover a
{
	color: #5EBAE6;
}

.home
{
	overflow: hidden;
}
.hero_slider_container
{
	width: 80%;
	height: 440px;
	margin-top: 25%;
	margin-left:10%;
}

.main_slider_item_bg
{
	position: relative;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
}


.main_slider_custom_dots li
{
	display: inline-block;
	font-size: 14px;
	font-weight: 300;
	line-height: 84px;
	color: #FFFFFF;
	padding-left: 42px;
	padding-right: 42px;
	cursor: pointer;
	margin-right: 10px;
	border-style: solid;
    border-width: 5px;
	border-color: #5EBAE6;
	border-radius:8px;
}


.main_slider_nav
{
	position: absolute;
	top: 35%;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
	z-index: 11;
	padding: 10px;
	cursor: pointer;
}
.main_slider_nav_left
{
	left: 39px;
}
.main_slider_nav_right
{
	right: 39px;
}
.main_slider_nav i
{
	color: #FFFFFF;
	font-size: 18px;
}
.main_slider_nav:hover i
{
	color: #1D2B4D;
}

.container_expl h1
{
	color:#FFF;
	margin-left:10%;
	margin-right:10%;
	text-decoration:none;
	max-width:100%;
	font-size:21px;
	font-family: 'Myriad Pro Regular', sans-serif;
	font-weight: 250;
}

.next {
	text-decoration:none;
	margin-bottom:2%;
	margin-left:10%;
}

.next img {
    max-width: 100px; 
    max-height: 50px;
}


}


@media only screen and (min-width: 992px) and (max-width: 1200px)
				   and (min-height: 670px) and (max-height: 850px)

{
	
body {
	background-image: url('../img/background5.png');
	background-repeat: no-repeat;
	background-size:cover;
	overflow-x: hidden;
	overflow-y: hidden;
}


.header {
	left:20%;
}

.languages
{
	margin-top:-140px;
	margin-left:60%;
}

	.logo_container
{
	flex-basis: 50%;
	margin-top: 1%;
	margin-left: -5%;
}

.logo
{
	margin-left: 0;
	margin-top:0;
}

.logo_container img {
    max-width: 150px; 
    max-height: 150px;
}

ul#lang_buttons
       {
	width:300px;
	height:35px;
	opacity: 0.60;
	list-style: none;
       }

ul#lang_buttons li
       {
	text-align:center;
       }	

ul#lang_buttons li a
       {
	color:#FFF;
	text-decoration:none;
	font-size:20px;
	font-family: 'Open Sans', sans-serif;
	display:inline-block;
	float:left;
	margin-right:10px;
       }

ul#lang_buttons li a:hover 
       { 
    background-color:#7D7D7D;
	color:#FFF;
       }
	   
.main_nav
	  {
	margin-right:30%;
	margin-top:-4%;
	height: 100%;
	flex-basis: 100%;
	text-align: right;
	  }

.nav_items
{
	height: 100%;
}
.nav_items li
{
	display: inline-block;
	margin-left: 20px;
	height: 100%;
}
.nav_items li a
{
	font-family: 'Myriad Pro Regular', sans-serif;
	color:#fff;
	text-decoration:none;
	font-size:17px;
	font-weight: 450;
	text-transform: uppercase;
	letter-spacing: 3.5px;
	height: 100%;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding-left: 10px;
	padding-right: 8px;
}

.nav_items li:hover a
{
	color: #5EBAE6;
}

.home
{
	overflow: hidden;
}
.hero_slider_container
{
	width: 80%;
	height: 350px;
	margin-top: 7%;
	margin-left:10%;
}

.main_slider_item_bg
{
	position: relative;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
}


.main_slider_nav
{
	position: absolute;
	top: 55%;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
	z-index: 11;
	padding: 10px;
	cursor: pointer;
}
.main_slider_nav_left
{
	left: 39px;
}
.main_slider_nav_right
{
	right: 39px;
}
.main_slider_nav i
{
	color: #FFFFFF;
	font-size: 18px;
}
.main_slider_nav:hover i
{
	color: #1D2B4D;
}

.container_expl h1
{
	color:#FFF;
	margin-left:10%;
	margin-right:10%;
	text-decoration:none;
	max-width:100%;
	font-size:21px;
	font-family: 'Myriad Pro Regular', sans-serif;
	font-weight: 250;
}

.next {
	text-decoration:none;
	margin-bottom:2%;
	margin-left:10%;
}

.next img {
    max-width: 90px; 
    max-height: 40px;
}


}


@media only screen and (min-width: 992px) and (max-width: 1200px)
				   and (max-height: 670px)

{
	
body {
	background-image: url('../img/background5.png');
	background-repeat: no-repeat;
	background-size:cover;
	overflow-x: hidden;
	overflow-y: hidden;
}


.header {
	left:20%;
}

.languages
{
	margin-top:-140px;
	margin-left:60%;
}

	.logo_container
{
	flex-basis: 50%;
	margin-top: 1%;
	margin-left: -5%;
}

.logo
{
	margin-left: 0;
	margin-top:0;
}

.logo_container img {
    max-width: 150px; 
    max-height: 150px;
}

ul#lang_buttons
       {
	width:300px;
	height:35px;
	opacity: 0.60;
	list-style: none;
       }

ul#lang_buttons li
       {
	text-align:center;
       }	

ul#lang_buttons li a
       {
	color:#FFF;
	text-decoration:none;
	font-size:20px;
	font-family: 'Open Sans', sans-serif;
	display:inline-block;
	float:left;
	margin-right:10px;
       }

ul#lang_buttons li a:hover 
       { 
    background-color:#7D7D7D;
	color:#FFF;
       }
	   
.main_nav
	  {
	margin-right:30%;
	margin-top:-4%;
	height: 100%;
	flex-basis: 100%;
	text-align: right;
	  }

.nav_items
{
	height: 100%;
}
.nav_items li
{
	display: inline-block;
	margin-left: 20px;
	height: 100%;
}
.nav_items li a
{
	font-family: 'Myriad Pro Regular', sans-serif;
	color:#fff;
	text-decoration:none;
	font-size:17px;
	font-weight: 450;
	text-transform: uppercase;
	letter-spacing: 3.5px;
	height: 100%;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding-left: 10px;
	padding-right: 8px;
}

.nav_items li:hover a
{
	color: #5EBAE6;
}

.home
{
	overflow: hidden;
}
.hero_slider_container
{
	width: 80%;
	height: 350px;
	margin-top: 7%;
	margin-left:10%;
}

.main_slider_item_bg
{
	position: relative;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
}


.main_slider_nav
{
	position: absolute;
	top: 55%;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
	z-index: 11;
	padding: 10px;
	cursor: pointer;
}
.main_slider_nav_left
{
	left: 39px;
}
.main_slider_nav_right
{
	right: 39px;
}
.main_slider_nav i
{
	color: #FFFFFF;
	font-size: 18px;
}
.main_slider_nav:hover i
{
	color: #1D2B4D;
}

.container_expl h1
{
	color:#FFF;
	margin-left:10%;
	margin-right:10%;
	text-decoration:none;
	max-width:100%;
	font-size:21px;
	font-family: 'Myriad Pro Regular', sans-serif;
	font-weight: 250;
}

.next {
	text-decoration:none;
	margin-bottom:5%;
	margin-left:10%;
}

.next img {
    max-width: 90px; 
    max-height: 40px;
}


}


@media only screen and (min-width: 768px) and (max-width: 992px)
				   and (min-height: 650px)
{
	*
{
	margin: 0;
	padding: 0;
}

body {
	background-image: url('../img/background5.png');
	background-repeat: no-repeat;
	background-size:cover;
	overflow-x: hidden;
	overflow-y: hidden;
}


.header {
	left:20%;
}

.languages
{
	margin-top:0;
	margin-left:55%;
}

	.logo_container
{
	flex-basis: 50%;
	margin-top: 1%;
	margin-left: -5%;
}

.logo
{
	margin-left: 0;
	margin-top:0;
}

.logo_container img {
    max-width: 160px; 
    max-height: 160px;
}

ul#lang_buttons
       {
	width:300px;
	height:35px;
	opacity: 0.60;
	list-style: none;
       }

ul#lang_buttons li
       {
	text-align:center;
       }	

ul#lang_buttons li a
       {
	color:#FFF;
	text-decoration:none;
	font-size:22px;
	font-family: 'Open Sans', sans-serif;
	display:inline-block;
	float:left;
	margin-right:10px;
       }

ul#lang_buttons li a:hover 
       { 
    background-color:#7D7D7D;
	color:#FFF;
       }
	   
.main_nav
	  {
	margin-right:30%;
	margin-top:-5%;
	height: 100%;
	flex-basis: 100%;
	text-align: right;
	  }

.nav_items
{
	height: 100%;
}
.nav_items li
{
	display: inline-block;
	margin-left: 20px;
	height: 100%;
}
.nav_items li a
{
	font-family: 'Myriad Pro Regular', sans-serif;
	color:#fff;
	text-decoration:none;
	font-size:19px;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 3.5px;
	height: 100%;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding-left: 12px;
	padding-right: 10px;
}

.nav_items li:hover a
{
	color: #5EBAE6;
}

.home
{
	overflow: hidden;
}
.hero_slider_container
{
	width: 80%;
	height: 350px;
	margin-top: 8%;
	margin-left:10%;
}

.main_slider_item_bg
{
	position: relative;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
}


.main_slider_nav
{
	position: absolute;
	top: 55%;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
	z-index: 11;
	padding: 10px;
	cursor: pointer;
}
.main_slider_nav_left
{
	left: 39px;
}
.main_slider_nav_right
{
	right: 39px;
}
.main_slider_nav i
{
	color: #FFFFFF;
	font-size: 18px;
}
.main_slider_nav:hover i
{
	color: #1D2B4D;
}

.container_expl
{
	position:absolute;
	top:75%;
	margin-left:10%;
	margin-right:10%;
}

.container_expl h1
	{
	color:#FFF;
	margin-left:-1%;
	text-decoration:none;
	max-width:100%;
	font-size:18px;
	font-family: 'Myriad Pro Regular', sans-serif;
	}

.next {
  color: white;
  margin-left:88%;
  margin-top:25%;
}

.round {
  border-radius: 50%;
}
	   
}

@media only screen and (min-width: 768px) and (max-width: 992px)
				   and (min-height: 850px)
{
	*
{
	margin: 0;
	padding: 0;
}

body {
	background-image: url('../img/background6.png');
	background-repeat: no-repeat;
	background-size:cover;
	overflow-x: hidden;
	overflow-y: hidden;
}


.header {
	left:20%;
}

.languages
{
	margin-top:-150px;
	margin-left:55%;
}

	.logo_container
{
	flex-basis: 50%;
	margin-top: 1%;
	margin-left: -5%;
}

.logo
{
	margin-left: 0;
	margin-top:0;
}

.logo_container img {
    max-width: 160px; 
    max-height: 160px;
}

ul#lang_buttons
       {
	width:300px;
	height:35px;
	opacity: 0.60;
	list-style: none;
       }

ul#lang_buttons li
       {
	text-align:center;
       }	

ul#lang_buttons li a
       {
	color:#FFF;
	text-decoration:none;
	font-size:22px;
	font-family: 'Open Sans', sans-serif;
	display:inline-block;
	float:left;
	margin-right:10px;
       }

ul#lang_buttons li a:hover 
       { 
    background-color:#7D7D7D;
	color:#FFF;
       }
	   
.main_nav
	  {
	margin-left:-110px;
	margin-top:5%;
	height: 100%;
	flex-basis: 100%;
	text-align: right;
	  }

.nav_items
{
	height: 100%;
}
.nav_items li
{
	display: inline-block;
	margin-left: 10px;
	height: 100%;
}
.nav_items li a
{
	font-family: 'Myriad Pro Regular', sans-serif;
	color:#fff;
	text-decoration:none;
	font-size:14px;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 3.5px;
	height: 100%;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding-left: 4px;
	padding-right: 4px;
}

.nav_items li:hover a
{
	color: #5EBAE6;
}

.hero_slider_container
{
	width: 84%;
	height: 400px;
	margin-top: 25%;
	margin-left:8%;
}


.main_slider_nav_left
{
	left: 12px;
	margin-top:-10%;
}
.main_slider_nav_right
{
	right: 12px;
	margin-top:-10%;
}

.container_expl
{
	position:absolute;
	top:65%;
	margin-left:10%;
	margin-right:10%;
}

.container_expl h1
	{
	color:#FFF;
	margin-left:-1%;
	text-decoration:none;
	max-width:100%;
	font-size:18px;
	font-family: 'Myriad Pro Regular', sans-serif;
	}

.next {
  color: white;
  margin-left:88%;
  margin-top:32%;
}

.round {
  border-radius: 50%;
}
}


@media only screen and (min-width: 768px) and (max-width: 992px)
				   and (min-height: 650px) and (max-height: 850px)
{
	*
{
	margin: 0;
	padding: 0;
}

body {
	background-image: url('../img/background5.png');
	background-repeat: no-repeat;
	background-size:cover;
	overflow-x: hidden;
	overflow-y: hidden;
}


.header {
	left:20%;
}

.languages
{
	margin-top:0;
	margin-left:55%;
}

	.logo_container
{
	flex-basis: 50%;
	margin-top: 1%;
	margin-left: -5%;
}

.logo
{
	margin-left: 0;
	margin-top:0;
}

.logo_container img {
    max-width: 160px; 
    max-height: 160px;
}

ul#lang_buttons
       {
	width:300px;
	height:35px;
	opacity: 0.60;
	list-style: none;
       }

ul#lang_buttons li
       {
	text-align:center;
       }	

ul#lang_buttons li a
       {
	color:#FFF;
	text-decoration:none;
	font-size:22px;
	font-family: 'Open Sans', sans-serif;
	display:inline-block;
	float:left;
	margin-right:10px;
       }

ul#lang_buttons li a:hover 
       { 
    background-color:#7D7D7D;
	color:#FFF;
       }
	   
.main_nav
	  {
	margin-right:30%;
	margin-top:-5%;
	height: 100%;
	flex-basis: 100%;
	text-align: right;
	  }

.nav_items
{
	height: 100%;
}
.nav_items li
{
	display: inline-block;
	margin-left: 20px;
	height: 100%;
}
.nav_items li a
{
	font-family: 'Myriad Pro Regular', sans-serif;
	color:#fff;
	text-decoration:none;
	font-size:19px;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 3.5px;
	height: 100%;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding-left: 12px;
	padding-right: 10px;
}

.nav_items li:hover a
{
	color: #5EBAE6;
}

.home
{
	overflow: hidden;
}
.hero_slider_container
{
	width: 80%;
	height: 350px;
	margin-top: 12%;
	margin-left:10%;
}

.main_slider_item_bg
{
	position: relative;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
}

.main_slider_nav
{
	position: absolute;
	top: 55%;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
	z-index: 11;
	padding: 10px;
	cursor: pointer;
}
.main_slider_nav_left
{
	left: 39px;
}
.main_slider_nav_right
{
	right: 39px;
}
.main_slider_nav i
{
	color: #FFFFFF;
	font-size: 18px;
}
.main_slider_nav:hover i
{
	color: #1D2B4D;
}
.container_expl
{
	position:absolute;
	top:75%;
	margin-left:10%;
	margin-right:10%;
}

.container_expl h1
	{
	color:#FFF;
	margin-left:-1%;
	text-decoration:none;
	max-width:100%;
	font-size:18px;
	font-family: 'Myriad Pro Regular', sans-serif;
	}

.next {
  color: white;
  margin-left:88%;
  margin-top:25%;
}

.round {
  border-radius: 50%;
}
}

@media only screen and (min-width: 768px) and (max-width: 992px)
				   and (max-height: 650px)
{
		*
{
	margin: 0;
	padding: 0;
}

body {
	background-image: url('../img/background5.png');
	background-repeat: no-repeat;
	background-size:cover;
	overflow-x: hidden;
	overflow-y: hidden;
}


.header {
	left:20%;
}

.languages
{
	margin-top:-90px;
	margin-left:55%;
}

	.logo_container
{
	flex-basis: 50%;
	margin-top: 1%;
	margin-left: -5%;
}

.logo
{
	margin-left: 0;
	margin-top:0;
}

.logo_container img {
    max-width: 100px; 
    max-height: 100px;
}

ul#lang_buttons
       {
	width:300px;
	height:35px;
	opacity: 0.60;
	list-style: none;
       }

ul#lang_buttons li
       {
	text-align:center;
       }	

ul#lang_buttons li a
       {
	color:#FFF;
	text-decoration:none;
	font-size:18px;
	font-family: 'Open Sans', sans-serif;
	display:inline-block;
	float:left;
	margin-right:10px;
       }

ul#lang_buttons li a:hover 
       { 
    background-color:#7D7D7D;
	color:#FFF;
       }
	   
.main_nav
	  {
	margin-left:7%;
	margin-top:-2%;
	height: 100%;
	flex-basis: 100%;
	text-align: right;
	  }

.nav_items
{
	height: 100%;
}
.nav_items li
{
	display: inline-block;
	margin-left: 10px;
	height: 100%;
}
.nav_items li a
{
	font-family: 'Myriad Pro Regular', sans-serif;
	color:#fff;
	text-decoration:none;
	font-size:11px;
	font-weight: 400;
	text-transform: uppercase;
	letter-spacing: 3.2px;
	height: 100%;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding-left: 3px;
	padding-right: 3px;
}

.nav_items li:hover a
{
	color: #5EBAE6;
}

.home
{
	overflow: hidden;
}
.hero_slider_container
{
	width: 80%;
	height: 240px;
	margin-top: 3%;
	margin-left:10%;
}

.main_slider_item_bg
{
	position: relative;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
}



.main_slider_nav
{
	position: absolute;
	top: 55%;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
	z-index: 11;
	padding: 10px;
	cursor: pointer;
}
.main_slider_nav_left
{
	left: 39px;
}
.main_slider_nav_right
{
	right: 39px;
}
.main_slider_nav i
{
	color: #FFFFFF;
	font-size: 18px;
}
.main_slider_nav:hover i
{
	color: #1D2B4D;
}

.container_expl
{
	position:absolute;
	top:75%;
	margin-left:10%;
	margin-right:10%;
}

.container_expl h1
	{
	color:#FFF;
	margin-left:0;
	margin-top:20px;
	text-decoration:none;
	max-width:100%;
	font-size:15px;
	font-family: 'Myriad Pro Regular', sans-serif;
	}

.next {
  color: white;
  margin-left:80%;
  margin-top:5%;
}

.round {
  border-radius: 50%;
}
	   
}



@media only screen and (min-width: 568px) and (max-width: 768px)
				   and (min-height: 750px)
{
	body {
	background-image: url('../img/background6.png');
	background-repeat: no-repeat;
	background-size:cover;
	overflow-x: hidden;
	overflow-y: hidden;
}
	.logo_container
{
	flex-basis: 50%;
	margin-top: 1%;
	margin-left: -5%;
}

.logo
{
	margin-left: 0;
	margin-top:2%;
}

.logo_container img {
    max-width: 130px; 
    max-height: 130px;
}

.logo span:first-of-type
{
	position: absolute;
	z-index: -1;
}

.languages
{
	margin-top:0;
	margin-left:55%;
}

.languages_container
{
	position: absolute;
	
}

ul#lang_buttons
       {
	width:300px;
	height:35px;
	opacity: 0.60;
	margin-top:-65px;
	margin-right:8%;
	display: inline;
	float:right;
       }

ul#lang_buttons li
       {
	text-align:center;
       }	

ul#lang_buttons li a
       {
	color:#FFF;
	text-decoration:none;
	font-size:14px;
	font-family: 'Open Sans', sans-serif;
	display:inline-block;
	float:left;
	margin-right:10px;
		height: 100%;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding-left: 1px;
	padding-right: 1px;
       }

ul#lang_buttons li a:hover 
       { 
    background-color:#7D7D7D;
	color:#FFF;
       }
	   
.main_nav
{
	margin-top:2%;
	margin-left:-20%;
	height: 100%;
	flex-basis: 200%;
	text-align: right;
}
	   
.nav_items li a
{
	font-family: 'Myriad Pro Regular', sans-serif;
	color:#fff;
	text-decoration:none;
	font-size:13px;
	font-weight: 400;
	text-transform: uppercase;
	letter-spacing: 2px;
	height: 100%;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding-left:0;
	padding-right: 0;
}

.hero_slider_container
{
	width: 84%;
	height: 360px;
	margin-top: 18%;
	margin-left:8%;
}

.row h1
{
	font-size:28px;
	margin-left:15px;
	margin-top:90px;
	font-family: 'Myriad Pro Regular', sans-serif;
	color:#FFF;
	max-width:390px;
}

.main_slider_dots
{
	visibility: hidden;
	display: none;
}

.main_slider_custom_dots li
{
	display: inline-block;
	font-size: 14px;
	font-weight: 300;
	line-height: 60px;
	color: #FFFFFF;
	padding-left: 25px;
	padding-right: 25px;
	cursor: pointer;
	margin-right: 10px;
	border-style: solid;
    border-width: 5px;
	border-color: #5EBAE6;
	border-radius:8px;
}

.main_slider_nav_left
{
	left: 12px;
	margin-top:-10%;
}
.main_slider_nav_right
{
	right: 12px;
	margin-top:-10%;
}

.container_expl
{
	position:absolute;
	top:75%;
	margin-left:10%;
	margin-right:10%;
}

.container_expl h1
	{
	color:#FFF;
	margin-left:0;
	margin-top:20px;
	text-decoration:none;
	max-width:100%;
	font-size:15px;
	font-family: 'Myriad Pro Regular', sans-serif;
	}

.next {
  color: white;
  margin-left:80%;
  margin-top:5%;
}

.round {
  border-radius: 50%;
}
}
@media only screen and (min-width: 568px) and (max-width: 768px)
				   and (max-height: 750px)
{
	body {
	background-image: url('../img/background6.png');
	background-repeat: no-repeat;
	background-size:cover;
	overflow-x: hidden;
	overflow-y: hidden;
}
	.logo_container
{
	flex-basis: 50%;
	margin-top: 1%;
	margin-left: -5%;
}

.logo
{
	margin-left: 0;
	margin-top:0;
}

.logo_container img {
    max-width: 110px; 
    max-height: 110px;
}

.logo span:first-of-type
{
	position: absolute;
	z-index: -1;
}

.languages
{
	margin-top:0;
	margin-left:55%;
}

.languages_container
{
	position: absolute;
	
}

ul#lang_buttons
       {
	width:300px;
	height:35px;
	opacity: 0.60;
	margin-top:-65px;
	margin-right:8%;
	display: inline;
	float:right;
       }

ul#lang_buttons li
       {
	text-align:center;
       }	

ul#lang_buttons li a
       {
	color:#FFF;
	text-decoration:none;
	font-size:12px;
	font-family: 'Open Sans', sans-serif;
	display:inline-block;
	float:left;
	margin-right:10px;
		height: 100%;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding-left: 1px;
	padding-right: 1px;
       }

ul#lang_buttons li a:hover 
       { 
    background-color:#7D7D7D;
	color:#FFF;
       }
	   
.main_nav
{
	margin-top:6%;
	margin-left:-20%;
	height: 100%;
	flex-basis: 200%;
	text-align: right;
}
	   
.nav_items li a
{
	font-family: 'Myriad Pro Regular', sans-serif;
	color:#fff;
	text-decoration:none;
	font-size:13px;
	font-weight: 400;
	text-transform: uppercase;
	letter-spacing: 2px;
	height: 100%;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding-left:0;
	padding-right: 0;
}

.hero_slider_container
{
	width: 84%;
	height: 295px;
	margin-top: 25%;
	margin-left:8%;
}

.row h1
{
	font-size:20px;
	margin-left:15px;
	margin-top:90px;
	font-family: 'Myriad Pro Regular', sans-serif;
	color:#FFF;
	max-width:390px;
}

.main_slider_dots
{
	visibility: hidden;
	display: none;
}

.main_slider_custom_dots li
{
	display: inline-block;
	font-size: 14px;
	font-weight: 300;
	line-height: 60px;
	color: #FFFFFF;
	padding-left: 25px;
	padding-right: 25px;
	cursor: pointer;
	margin-right: 10px;
	border-style: solid;
    border-width: 5px;
	border-color: #5EBAE6;
	border-radius:8px;
}

.main_slider_nav_left
{
	left: 12px;
	margin-top:-10%;
}
.main_slider_nav_right
{
	right: 12px;
	margin-top:-10%;
}

.container_expl
{
	position:absolute;
	top:75%;
	margin-left:10%;
	margin-right:10%;
}

.container_expl h1
	{
	color:#FFF;
	margin-left:0;
	margin-top:20px;
	text-decoration:none;
	max-width:100%;
	font-size:15px;
	font-family: 'Myriad Pro Regular', sans-serif;
	}

.next {
  color: white;
  margin-left:80%;
  margin-top:5%;
}

.round {
  border-radius: 50%;
}
}

@media only screen and (min-width: 481px) and (max-width: 568px)
{
	body {
	background-image: url('../img/background6.png');
	background-repeat: no-repeat;
	background-size:cover;
	overflow-x: hidden;
	overflow-y: hidden;
}
	.logo_container
{
	flex-basis: 50%;
	margin-top: 1%;
	margin-left: 20%;
}

.logo
{
	margin-left: 0;
	margin-top:0;
}

.logo_container img {
    max-width: 110px; 
    max-height: 110px;
}

.logo span:first-of-type
{
	position: absolute;
	z-index: -1;
}

.languages_container
{
	position: absolute;
	
}

ul#lang_buttons
       {
	width:300px;
	height:35px;
	opacity: 0.60;
	margin-top:-55px;
	margin-right:0;
	display: inline;
	float:right;
       }

ul#lang_buttons li
       {
	text-align:center;
       }	

ul#lang_buttons li a
       {
	color:#FFF;
	text-decoration:none;
	font-size:12px;
	font-family: 'Open Sans', sans-serif;
	display:inline-block;
	float:left;
	margin-right:10px;
		height: 100%;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding-left: 1px;
	padding-right: 1px;
       }

ul#lang_buttons li a:hover 
       { 
    background-color:#7D7D7D;
	color:#FFF;
       }
	   
.main_nav
{
	margin-left: -12%;
	margin-top:12%;
	height: 100%;
	flex-basis: 200%;
	text-align: right;
}
	   
.nav_items li a
{
	font-family: 'Myriad Pro Regular', sans-serif;
	color:#fff;
	text-decoration:none;
	font-size:8px;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 2px;
	height: 100%;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding-left:0;
	padding-right: 0;
}

.hero_slider_container
{
	width: 84%;
	height: 295px;
	margin-top: 32%;
	margin-left:8%;
}

.row h1
{
	font-size:22px;
	margin-left:15px;
	margin-top:90px;
	font-family: 'Myriad Pro Regular', sans-serif;
	color:#FFF;
	max-width:390px;
}

.main_slider_dots
{
	visibility: hidden;
	display: none;
}

.main_slider_custom_dots li
{
	display: inline-block;
	font-size: 14px;
	font-weight: 300;
	line-height: 60px;
	color: #FFFFFF;
	padding-left: 25px;
	padding-right: 25px;
	cursor: pointer;
	margin-right: 10px;
	border-style: solid;
    border-width: 5px;
	border-color: #5EBAE6;
	border-radius:8px;
}

.main_slider_nav_left
{
	left: 12px;
	margin-top:-10%;
}
.main_slider_nav_right
{
	right: 12px;
	margin-top:-10%;
}

.container_expl h1
{
	color:#FFF;
	margin-left:20%;
	text-decoration:none;
	max-width:310px;
	font-size:15px;
	font-family: 'Myriad Pro Regular', sans-serif;
}

.footer
{
	position:absolute;
	bottom:3%;
}

.footer a {
  text-decoration: none;
  display: inline-block;
  padding: 8px 16px;
  color:#fff;
}

footer a:hover {
  background-color: #ddd;
  color:#000;
}

.previous {
  color: white;
  margin-left:7%;
  margin-top:10%;
}

.next {
  color: white;
  margin-left:80%;
  margin-top:10%;
}

.round {
  border-radius: 50%;
}

.cr p
{
	margin-bottom: 0px;
}

}

@media only screen and (min-width: 400px) and (max-width: 480px)
{
		
		body {
	background-image: url('../img/background6.png');
	background-repeat: no-repeat;
	background-size:cover;
	overflow-y: scroll;
}

.logo_container img {
    max-width: 120px; 
    max-height: 120px;
}

.languages_container
{
	position: absolute;
	
}

ul#lang_buttons
       {
	width:300px;
	height:35px;
	opacity: 0.60;
	margin-top:-110px;
	margin-right:0;
	display: inline;
	float:right;
       }

ul#lang_buttons li
       {
	text-align:center;
       }	

ul#lang_buttons li a
       {
	color:#FFF;
	text-decoration:none;
	font-size:12px;
	font-family: 'Open Sans', sans-serif;
	display:inline-block;
	float:left;
	margin-right:10px;
		height: 100%;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding-left: 1px;
	padding-right: 1px;
       }

	.hamburger_container
	{
		display: block;
		top:2%;
		right:2%;
	}
	
.hamburger_container
{
	cursor: pointer;
	padding: 10px;
	margin-left: 42px;
	margin-top:-60px;
	flex-basis: 50%;
	text-align: right;
}
.hamburger_text
{
	margin-right: 7px;
	font-weight: 400;
	font-family:Segoe, "Segoe UI", "DejaVu Sans", "Trebuchet MS", Verdana, sans-serif;
	font-size:18px;
	color: #ffffff;
}
.hamburger_icon
{
	position: relative;
	display: inline-block;
	width: 22px;
	height: 3px;
	background: #ffffff;
	margin-top: 0;
}


.fs_menu_container.active
	{
		padding-top: 200px;
	}
	.fs_menu_list li a
	{
		font-size: 24px;
	}
	.fs_menu_list li a > span::after
	{
		bottom: 0px;
		height: 2px;
	}
	.fs_menu_list li a span span
	{
		top: 0;
		left: -2px;
	}
	   
.main_nav
{
		display: none;
}

.hero_slider_container
{
	width: 84%;
	height: 280px;
	margin-top: 15%;
	margin-left:8%;
}

.row h1
{
	visibility: hidden;
	display: none;
}

.main_slider_dots
{
	visibility: hidden;
	display: none;
}

.main_slider_nav_left
{
	top:45%;
	left: 3px;
}
.main_slider_nav_right
{
	top:45%;
	right: 3px;
}

.footer_contact 
{
	position:relative;
	left:23%;
	margin-bottom:27%;
}

.container_expl h1
{
font-size:12px;
	text-align:justify;
}

.next {
	text-decoration:none;
	margin-bottom:3%;
	margin-left:5%;
}

.next img {
    max-width: 35px; 
    max-height: 13px;
}


}

@media only screen and (min-width: 380px) and (max-width: 400px)
{
		
		body {
	background-image: url('../img/background6.png');
	background-repeat: no-repeat;
	background-size:cover;
	overflow-y: scroll;
}

.logo_container img {
    max-width: 120px; 
    max-height: 120px;
}

.languages_container
{
	position: absolute;
	
}

ul#lang_buttons
       {
	width:300px;
	height:35px;
	opacity: 0.60;
	margin-top:-110px;
	margin-right:0;
	display: inline;
	float:right;
       }

ul#lang_buttons li
       {
	text-align:center;
       }	

ul#lang_buttons li a
       {
	color:#FFF;
	text-decoration:none;
	font-size:12px;
	font-family: 'Open Sans', sans-serif;
	display:inline-block;
	float:left;
	margin-right:10px;
		height: 100%;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding-left: 1px;
	padding-right: 1px;
       }

.hamburger_container
	{
		display: block;
		top:2%;
		right:2%;
	}
	
.hamburger_container
{
	cursor: pointer;
	padding: 10px;
	margin-left: 42px;
	margin-top:-60px;
	flex-basis: 50%;
	text-align: right;
}
.hamburger_text
{
	margin-right: 7px;
	font-weight: 400;
	font-family:Segoe, "Segoe UI", "DejaVu Sans", "Trebuchet MS", Verdana, sans-serif;
	font-size:18px;
	color: #ffffff;
}
.hamburger_icon
{
	position: relative;
	display: inline-block;
	width: 22px;
	height: 3px;
	background: #ffffff;
	margin-top: 0;
}


.fs_menu_container.active
	{
		padding-top: 200px;
	}
	.fs_menu_list li a
	{
		font-size: 24px;
	}
	.fs_menu_list li a > span::after
	{
		bottom: 0px;
		height: 2px;
	}
	.fs_menu_list li a span span
	{
		top: 0;
		left: -2px;
	}
	   
.main_nav
{
		display: none;
}

.hero_slider_container
{
	width: 84%;
	height: 280px;
	margin-top: 15%;
	margin-left:8%;
}

.row h1
{
	visibility: hidden;
	display: none;
}

.main_slider_dots
{
	visibility: hidden;
	display: none;
}

.main_slider_nav_left
{
	top:45%;
	left: 3px;
}
.main_slider_nav_right
{
	top:45%;
	right: 3px;
}


.container_expl h1
{
	font-size:10px;
	text-align:justify;
}

.next {
	text-decoration:none;
	margin-bottom:3%;
	margin-left:5%;
}

.next img {
    max-width: 30px; 
    max-height: 10px;
}
}

@media only screen and (min-width: 340px) and (max-width: 380px)
{
		
		body {
	background-image: url('../img/background6.png');
	background-repeat: no-repeat;
	background-size:cover;
	overflow-y: scroll;
}

.logo_container img {
    max-width: 120px; 
    max-height: 120px;
}

.languages_container
{
	position: absolute;
	
}

ul#lang_buttons
       {
	width:300px;
	height:35px;
	opacity: 0.60;
	margin-top:-110px;
	margin-right:0;
	display: inline;
	float:right;
       }

ul#lang_buttons li
       {
	text-align:center;
       }	

ul#lang_buttons li a
       {
	color:#FFF;
	text-decoration:none;
	font-size:12px;
	font-family: 'Open Sans', sans-serif;
	display:inline-block;
	float:left;
	margin-right:10px;
		height: 100%;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding-left: 1px;
	padding-right: 1px;
       }

.hamburger_container
	{
		display: block;
		top:2%;
		right:2%;
	}
	
.hamburger_container
{
	cursor: pointer;
	padding: 10px;
	margin-left: 42px;
	margin-top:-60px;
	flex-basis: 50%;
	text-align: right;
}
.hamburger_text
{
	margin-right: 7px;
	font-weight: 400;
	font-family:Segoe, "Segoe UI", "DejaVu Sans", "Trebuchet MS", Verdana, sans-serif;
	font-size:18px;
	color: #ffffff;
}
.hamburger_icon
{
	position: relative;
	display: inline-block;
	width: 22px;
	height: 3px;
	background: #ffffff;
	margin-top: 0;
}


.fs_menu_container.active
	{
		padding-top: 200px;
	}
	.fs_menu_list li a
	{
		font-size: 24px;
	}
	.fs_menu_list li a > span::after
	{
		bottom: 0px;
		height: 2px;
	}
	.fs_menu_list li a span span
	{
		top: 0;
		left: -2px;
	}
	   
.main_nav
{
		display: none;
}

.hero_slider_container
{
	width: 84%;
	height: 280px;
	margin-top: 15%;
	margin-left:8%;
}

.row h1
{
	visibility: hidden;
	display: none;
}

.main_slider_dots
{
	visibility: hidden;
	display: none;
}

.main_slider_nav_left
{
	top:45%;
	left: 3px;
}
.main_slider_nav_right
{
	top:45%;
	right: 3px;
}


.container_expl h1
{
	font-size:10px;
	text-align:justify;
}

.next {
	text-decoration:none;
	margin-bottom:3%;
	margin-left:5%;
}

.next img {
    max-width: 30px; 
    max-height: 10px;
}
}

@media only screen and (min-width: 300px) and (max-width: 340px)
{
	body {
	background-image: url('../img/background6.png');
	background-repeat: no-repeat;
	background-size:cover;
	overflow-x: hidden;
	overflow-y: hidden;
}

.logo_container img {
    max-width: 100px; 
    max-height: 100px;
}


ul#lang_buttons
       {
	width:300px;
	height:35px;
	opacity: 0.60;
	margin-left:-20px;
	margin-top:-85px;
	display: inline;
	float:right;
       }

ul#lang_buttons li
       {
	text-align:center;
       }	

ul#lang_buttons li a
       {
	color:#FFF;
	text-decoration:none;
	font-size:12px;
	font-family: 'Open Sans', sans-serif;
	display:inline-block;
	float:left;
	margin-right:10px;
		height: 100%;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding-left: 1px;
	padding-right: 1px;
       }

.hamburger_container
	{
		display: block;
		top:2%;
		margin-left:20%;
	}
	
.hamburger_container
{
	cursor: pointer;
	padding: 5px;
	margin-right: 0;
	margin-top:-50px;
	flex-basis: 50%;
	text-align: right;
}
.hamburger_text
{
	margin-right: 7px;
	font-weight: 300;
	font-family:Segoe, "Segoe UI", "DejaVu Sans", "Trebuchet MS", Verdana, sans-serif;
	font-size:16px;
	color: #ffffff;
}
.hamburger_icon
{
	position: relative;
	display: inline-block;
	width: 22px;
	height: 3px;
	background: #ffffff;
	margin-top: 0;
}


.fs_menu_container.active
	{
		padding-top: 200px;
	}
	.fs_menu_list li a
	{
		font-size: 24px;
	}
	.fs_menu_list li a > span::after
	{
		bottom: 0px;
		height: 2px;
	}
	.fs_menu_list li a span span
	{
		top: 0;
		left: -2px;
	}
	   
.main_nav
{
		display: none;
}
	   
.hero_slider_container
{
	width: 84%;
	height: 180px;
	margin-top: 12%;
	margin-left:8%;
}

.main_slider_nav_left
{
	top:45%;
	left: 3px;
}
.main_slider_nav_right
{
	top:45%;
	right: 3px;
}

.container_expl h1
{
	font-size:11px;
	text-align:justify;
	margin-top:10%;
}

.next {
	text-decoration:none;
	margin-bottom:3%;
	margin-left:5%;
}

.next img {
    max-width: 40px; 
    max-height: 1px;
}
}


@media only screen and (min-width: 250px) and (max-width: 300px)
{
	
body {
	background-image: url('../img/background6.png');
	background-repeat: no-repeat;
	background-size:cover;
	overflow-x: hidden;
	overflow-y: hidden;
}

.logo_container img {
    max-width: 100px; 
    max-height: 100px;
}


ul#lang_buttons
       {
	width:300px;
	height:35px;
	opacity: 0.60;
	margin-left:-20px;
	margin-top:-85px;
	display: inline;
	float:right;
       }

ul#lang_buttons li
       {
	text-align:center;
       }	

ul#lang_buttons li a
       {
	color:#FFF;
	text-decoration:none;
	font-size:12px;
	font-family: 'Open Sans', sans-serif;
	display:inline-block;
	float:left;
	margin-right:10px;
		height: 100%;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding-left: 1px;
	padding-right: 1px;
       }

.hamburger_container
	{
		display: block;
		top:2%;
		margin-left:20%;
	}
	
.hamburger_container
{
	cursor: pointer;
	padding: 5px;
	margin-right: 0;
	margin-top:-50px;
	flex-basis: 50%;
	text-align: right;
}
.hamburger_text
{
	margin-right: 7px;
	font-weight: 300;
	font-family:Segoe, "Segoe UI", "DejaVu Sans", "Trebuchet MS", Verdana, sans-serif;
	font-size:16px;
	color: #ffffff;
}
.hamburger_icon
{
	position: relative;
	display: inline-block;
	width: 22px;
	height: 3px;
	background: #ffffff;
	margin-top: 0;
}


.fs_menu_container.active
	{
		padding-top: 200px;
	}
	.fs_menu_list li a
	{
		font-size: 24px;
	}
	.fs_menu_list li a > span::after
	{
		bottom: 0px;
		height: 2px;
	}
	.fs_menu_list li a span span
	{
		top: 0;
		left: -2px;
	}
	   
.main_nav
{
		display: none;
}
	   
.hero_slider_container
{
	width: 84%;
	height: 180px;
	margin-top: 12%;
	margin-left:8%;
}

.main_slider_nav_left
{
	top:45%;
	left: 3px;
}
.main_slider_nav_right
{
	top:45%;
	right: 3px;
}

.container_expl h1
{
	font-size:11px;
	text-align:justify;
	margin-top:10%;
}

.next {
	text-decoration:none;
	margin-bottom:3%;
	margin-left:5%;
}

.next img {
    max-width: 40px; 
    max-height: 1px;
}
}

@media only screen and (min-width: 190px) and (max-width: 250px)
{
	
body {
	background-image: url('../img/background6.png');
	background-repeat: no-repeat;
	background-size:cover;
	overflow-x: hidden;
	overflow-y: hidden;
}

.logo_container img {
    max-width: 85px; 
    max-height: 85px;
}


ul#lang_buttons
       {
	width:300px;
	height:35px;
	opacity: 0.60;
	margin-left:-40px;
	margin-top:-80px;
	display: inline;
	float:right;
       }

ul#lang_buttons li
       {
	text-align:center;
       }	

ul#lang_buttons li a
       {
	color:#FFF;
	text-decoration:none;
	font-size:12px;
	font-family: 'Open Sans', sans-serif;
	display:inline-block;
	float:left;
	margin-right:10px;
		height: 100%;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding-left: 1px;
	padding-right: 1px;
       }

.hamburger_container
	{
		display: block;
		top:1%;
		margin-left:20%;
	}
	
.hamburger_container
{
	cursor: pointer;
	padding: 5px;
	margin-right: 0;
	margin-top:-50px;
	flex-basis: 50%;
	text-align: right;
}
.hamburger_text
{
	margin-right: 7px;
	font-weight: 300;
	font-family:Segoe, "Segoe UI", "DejaVu Sans", "Trebuchet MS", Verdana, sans-serif;
	font-size:14px;
	color: #ffffff;
}
.hamburger_icon
{
	position: relative;
	display: inline-block;
	width: 20px;
	height: 3px;
	background: #ffffff;
	margin-top: 0;
}

.hamburger_icon::before,
.hamburger_icon::after
{
	display: block;
	position: absolute;
	left: 0;
	width: 20px;
	height: 3px;
	background: #ffffff;
	content: '';
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
}

.fs_menu_container.active
	{
		padding-top: 50px;
	}
	.fs_menu_list li a
	{
		font-size: 18px;
	}
	.fs_menu_list li a > span::after
	{
		bottom: 0px;
		height: 2px;
	}
	.fs_menu_list li a span span
	{
		top: 0;
		left: -2px;
	}
	   
.main_nav
{
		display: none;
}
	   
.hero_slider_container
{
	width: 84%;
	height: 85px;
	margin-top: 3%;
	margin-left:8%;
}


.main_slider_nav_left
{
	top:45%;
	left: 3px;
}
.main_slider_nav_right
{
	top:45%;
	right: 3px;
}

.container_expl h1
{
	font-size:11px;
	text-align:justify;
	margin-top:10%;
}

.next {
	text-decoration:none;
	margin-bottom:3%;
	margin-left:5%;
}

.next img {
    max-width: 40px; 
    max-height: 1px;
}
}

@media only screen and (max-width: 190px)
{
	
body {
	background-image: url('../img/background6.png');
	background-repeat: no-repeat;
	background-size:cover;
	overflow-x: hidden;
	overflow-y: hidden;
}

.logo_container img {
    max-width: 50px; 
    max-height: 50px;
}


ul#lang_buttons
       {
	width:300px;
	height:35px;
	opacity: 0.60;
	margin-left:-35px;
	margin-top:-38px;
	display: inline;
	float:right;
       }

ul#lang_buttons li
       {
	text-align:center;
       }	

ul#lang_buttons li a
       {
	color:#FFF;
	text-decoration:none;
	font-size:10px;
	font-family: 'Open Sans', sans-serif;
	display:inline-block;
	float:left;
	margin-right:10px;
		height: 100%;

	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding-left: 1px;
	padding-right: 1px;
       }

.hamburger_container
	{
		display: block;
		margin-top:-18px;
		margin-left:20%;
	}
	
.hamburger_container
{
	cursor: pointer;
	padding: 3px;
	margin-right: 0;
	flex-basis: 50%;
	text-align: right;
}
.hamburger_text
{
	margin-right: 7px;
	font-weight: 300;
	font-family:Segoe, "Segoe UI", "DejaVu Sans", "Trebuchet MS", Verdana, sans-serif;
	font-size:11px;
	color: #ffffff;
}
.hamburger_icon
{
	position: relative;
	display: inline-block;
	width: 15px;
	height: 2px;
	background: #ffffff;
	margin-top: 0;
}


.hamburger_icon::before,
.hamburger_icon::after
{
	display: block;
	position: absolute;
	left: 0;
	width: 15px;
	height: 2px;
	background: #ffffff;
	content: '';
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
}

.fs_menu_container.active
	{
		padding-top: 40px;
		margin-left:10%;
	}
	.fs_menu_list li a
	{
		font-size: 14px;
	}
	.fs_menu_list li a > span::after
	{
		bottom: 0px;
		height: 2px;
	}
	.fs_menu_list li a span span
	{
		top: 0;
		left: -2px;
	}
	   
.main_nav
{
		display: none;
}
	   
.hero_slider_container
{
	width: 84%;
	height: 78px;
	margin-top: -15%;
	margin-left:8%;
}


.main_slider_nav_left
{
	visibility: hidden;
	display: none;
}
.main_slider_nav_right
{
	visibility: hidden;
	display: none;
}

.container_expl h1
{
	font-size:11px;
	text-align:justify;
	margin-top:8%;
}

.next {
	text-decoration:none;
	margin-bottom:3%;
	margin-left:5%;
}

.next img {
    max-width: 40px; 
    max-height: 1px;
}
}

@media only screen and (max-width: 560px) and (max-height: 350px)
				   and (min-width: 500px)
{
		body {
	background-image: url('../img/background6.png');
	background-repeat: no-repeat;
	background-size:cover;
	overflow-x: hidden;
	overflow-y: hidden;
}

.logo_container img {
    max-width: 80px; 
    max-height: 80px;
}

.languages_container
{
	position: absolute;
	
}

ul#lang_buttons
       {
	width:300px;
	height:35px;
	opacity: 0.60;
	margin-top:-95px;
	margin-right:10px;
	display: inline;
	float:right;
       }

ul#lang_buttons li
       {
	text-align:center;
       }	

ul#lang_buttons li a
       {
	color:#FFF;
	text-decoration:none;
	font-size:12px;
	font-family: 'Open Sans', sans-serif;
	display:inline-block;
	float:left;
	margin-right:10px;
		height: 100%;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding-left: 1px;
	padding-right: 1px;
       }

	.hamburger_container
	{
		display: block;
		top:2%;
		right:2%;
	}
	
.hamburger_container
{
	cursor: pointer;
	padding: 10px;
	margin-left: 42px;
	margin-top:-60px;
	flex-basis: 50%;
	text-align: right;
}
.hamburger_text
{
	margin-right: 7px;
	font-weight: 300;
	font-family:Segoe, "Segoe UI", "DejaVu Sans", "Trebuchet MS", Verdana, sans-serif;
	font-size:14px;
	color: #ffffff;
}
.hamburger_icon
{
	position: relative;
	display: inline-block;
	width: 18px;
	height: 3px;
	background: #ffffff;
	margin-top: 0;
}

.fs_menu_container.active
	{
		padding-top: 100px;
	}
	.fs_menu_list li a
	{
		font-size: 24px;
	}
	.fs_menu_list li a > span::after
	{
		bottom: 0px;
		height: 2px;
	}
	.fs_menu_list li a span span
	{
		top: 0;
		left: -2px;
	}
	   
.main_nav
{
		display: none;
}
	   

.hero_slider_container
{
	width: 84%;
	height: 100px;
	margin-top: 1%;
	margin-left:8%;
}

.row h1
{
	visibility: hidden;
	display: none;
}

.main_slider_dots
{
	visibility: hidden;
	display: none;
}

.main_slider_nav_left
{
	top:55%;
	left: 3px;
}
.main_slider_nav_right
{
	top:55%;
	right: 3px;
}


.container_expl h1
{
	font-size:10px;
	text-align:justify;
}

.next {
	text-decoration:none;
	margin-bottom:3%;
	margin-left:5%;
}

.next img {
    max-width: 30px; 
    max-height: 10px;
}

}

@media only screen and (max-width: 800px) and (max-height: 450px)
				   and (min-width: 560px)

{
	
	body {
	background-image: url('../img/background6.png');
	background-repeat: no-repeat;
	background-size:cover;
	overflow-x: hidden;
	overflow-y: hidden;
}
	.logo_container
{
	flex-basis: 50%;
	margin-top: 1%;
	margin-left: -5%;
}

.logo
{
	margin-left: 0;
	margin-top:0;
}

.logo_container img {
    max-width: 95px; 
    max-height: 95px;
}

.logo span:first-of-type
{
	position: absolute;
	z-index: -1;
}

.languages
{
	margin-top:0;
	margin-left:55%;
}

.languages_container
{
	position: absolute;
	
}

ul#lang_buttons
       {
	width:300px;
	height:35px;
	opacity: 0.60;
	margin-top:-65px;
	margin-right:8%;
	display: inline;
	float:right;
       }

ul#lang_buttons li
       {
	text-align:center;
       }	

ul#lang_buttons li a
       {
	color:#FFF;
	text-decoration:none;
	font-size:12px;
	font-family: 'Open Sans', sans-serif;
	display:inline-block;
	float:left;
	margin-right:10px;
		height: 100%;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding-left: 1px;
	padding-right: 1px;
       }

ul#lang_buttons li a:hover 
       { 
    background-color:#7D7D7D;
	color:#FFF;
       }
	   
.main_nav
{
	margin-top:2%;
	margin-left:-28%;
	height: 100%;
	flex-basis: 200%;
	text-align: right;
}
	   
.nav_items li a
{
	font-family: 'Myriad Pro Regular', sans-serif;
	color:#fff;
	text-decoration:none;
	font-size:13px;
	font-weight: 400;
	text-transform: uppercase;
	letter-spacing: 2px;
	height: 100%;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding-left:0;
	padding-right: 0;
}

.hero_slider_container
{
	width: 40%;
	height: 220px;
	margin-top: 5%;
	margin-left:8%;
}

.row h1
{
	visibility:hidden;
	display:none;
}

.main_slider_dots
{
	visibility: hidden;
	display: none;
}

.main_slider_custom_dots li
{
	display: inline-block;
	font-size: 14px;
	font-weight: 300;
	line-height: 60px;
	color: #FFFFFF;
	padding-left: 25px;
	padding-right: 25px;
	cursor: pointer;
	margin-right: 10px;
	border-style: solid;
    border-width: 5px;
	border-color: #5EBAE6;
	border-radius:8px;
}

.main_slider_nav_left
{
	visibility: hidden;
	display: none;
}
.main_slider_nav_right
{
visibility: hidden;
	display: none;
}

.footer_contact {
	position:absolute;
left:60%;
margin-top:-150 px;
}

.footer h1
	{
	color:#FFF;
	text-align:left;
	text-decoration:none;
	max-width:500px;
	font-size:18px;
	font-family: 'Myriad Pro Regular', sans-serif;
	
	}

.footer p
	{
	color:#FFF;
	text-decoration:none;
	text-align:left;
	max-width:172px;
	font-size:18px;
	font-family: 'Myriad Pro Regular', sans-serif;
	}


.footer_social_container
{
	visibility: hidden;
	display: none;
}

.container_expl h1
{
	font-size:10px;
	text-align:justify;
}

.next {
	text-decoration:none;
	margin-bottom:3%;
	margin-left:5%;
}

.next img {
    max-width: 30px; 
    max-height: 10px;
}
}

@media only screen and (min-width: 400px) and (max-width: 500px)
				   and (min-height: 780px)
{
	
	body {
	background-image: url('../img/background6.png');
	background-repeat: no-repeat;
	background-size:cover;
	overflow-y: scroll;
}

.logo_container img {
    max-width: 120px; 
    max-height: 120px;
}

.languages_container
{
	position: absolute;
	
}

ul#lang_buttons
       {
	width:300px;
	height:35px;
	opacity: 0.60;
	margin-top:-110px;
	margin-right:0;
	display: inline;
	float:right;
       }

ul#lang_buttons li
       {
	text-align:center;
       }	

ul#lang_buttons li a
       {
	color:#FFF;
	text-decoration:none;
	font-size:12px;
	font-family: 'Open Sans', sans-serif;
	display:inline-block;
	float:left;
	margin-right:10px;
		height: 100%;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding-left: 1px;
	padding-right: 1px;
       }

	.hamburger_container
	{
		display: block;
		top:2%;
		right:2%;
	}
	
.hamburger_container
{
	cursor: pointer;
	padding: 10px;
	margin-left: 42px;
	margin-top:-60px;
	flex-basis: 50%;
	text-align: right;
}
.hamburger_text
{
	margin-right: 7px;
	font-weight: 400;
	font-family:Segoe, "Segoe UI", "DejaVu Sans", "Trebuchet MS", Verdana, sans-serif;
	font-size:18px;
	color: #ffffff;
}
.hamburger_icon
{
	position: relative;
	display: inline-block;
	width: 22px;
	height: 3px;
	background: #ffffff;
	margin-top: 0;
}


.fs_menu_container.active
	{
		padding-top: 200px;
	}
	.fs_menu_list li a
	{
		font-size: 24px;
	}
	.fs_menu_list li a > span::after
	{
		bottom: 0px;
		height: 2px;
	}
	.fs_menu_list li a span span
	{
		top: 0;
		left: -2px;
	}
	   
.main_nav
{
		display: none;
}

.hero_slider_container
{
	width: 84%;
	height: 300px;
	margin-top: 20%;
	margin-left:8%;
}


.main_slider_dots
{
	visibility: hidden;
	display: none;
}

.main_slider_nav_left
{
	top:45%;
	left: 3px;
}
.main_slider_nav_right
{
	top:45%;
	right: 3px;
}

.footer_contact 
{
	position:relative;
	left:23%;
	margin-bottom:27%;
}

.container_expl h1
{
font-size:14px;
	text-align:justify;
}

.next {
	text-decoration:none;
	margin-bottom:3%;
	margin-left:5%;
}

.next img {
    max-width: 35px; 
    max-height: 13px;
}


}

@charset "utf-8";
/* CSS Document */

/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}