html{font-size:150%;}
@media only screen and (min-device-width:65em){html{font-size: 100%}}
*{
	margin: 0;
	padding: 0;
	list-style: none;
	text-decoration: none;
	font-family: 'Open Sans', 'FontAwesome';
}
p{
	color: rgba(255,255,255,0.65);
	line-height: 1.5em;
	margin-bottom: 1em;
}
b{
	color: #58b9e2;
}
h1{
	color: #fff;
	font-weight: 400;
	line-height: 3em;
}
h2{
	text-transform: uppercase;
	font-size: 2em;
	line-height: 4em;
	letter-spacing: .3em;
	font-weight: 300;
}
h3{
	color: #16527a;
	font-weight: 300;
	line-height: 4em;
	letter-spacing: .2em;
	text-transform: uppercase;
}
h5{
	color: #16527a;
	font-weight: 400;
	letter-spacing: 0.2em;
	text-align: center;
	text-transform: uppercase;
}
hr{
	color: #fff;
	background-color: #fff;
	height: 1px;
	border: none;
}




/* OVERALL */
main{
	background-color: #f5fafd;
}
main #blog{
	background-color: #0f0f0f;
}
section{
	padding: 0 8%;
}
section > div{
	margin: 2em 0;
}


.border_shadow{
	box-shadow: 0 4px 5px 0 rgba(0,0,0,.14), 0 1px 10px 0 rgba(0,0,0,.12), 0 2px 4px 0 rgba(0,0,0,.2);
}
.sticky {
  position: fixed;
  background-color: #fff;
  top: 0;
  width: 100%;
  z-index: 5;
  border-bottom: 1px solid;
}

/* FRONT PAGE */
/* MENU */
.card{
	position: relative;
	background-color: #fff;
}
.card img{
	display: block;
	height: 100%;
	width: 100%;
	transition: all 0.5s ease;
}
.card img:hover{
	-webkit-filter: brightness(70%);
	-webkit-transition: all 1s ease;
	-moz-transition: all 1s ease;
	-o-transition: all 1s ease;
	-ms-transition: all 1s ease;
}
#menu h3{
	padding: .7em;
}

[class*="btn_"]{
	display: inline-block;
	color: #666;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	transition-duration: 0.5s;
	cursor: pointer;
}
.btn_1{
	width: 100%;
	padding: .7em;
	font-size: .9em;
	border-bottom: 1px solid;
}
.btn_1:hover{
	color: #fff;
	background-color: #666;
}
/* BUTTON ABOUT */
.btn_2{
	color: #fff;
	background-color: #777;
	font-size: .9em;
	padding: 0.9em 1.7em;
	margin-bottom: 1em;
}
.btn_2:hover{
	background-color: #58b9e2;
}
.btn_2 span {
	display: inline-block;
	position: relative;
	cursor: pointer;
	transition: 0.5s;
}
.btn_2:hover span {
	padding-left: 2em;
}
.btn_2 i{
  	position: absolute;
	top: 4px;
	left: -20px;
	opacity: 0;
	transition: 0.5s;
}
.btn_2:hover i{
	opacity: 1;
	left: 0;
}
.btn_3{
	color: #fff;
	padding: .7em;
	border-bottom: 1px solid;
}
.btn_3:hover{
	color: #fff;
	background-color: #666;
}
.btn_4{
	color: #fff;
	padding: 1em;
	border-bottom: 1px solid;
	font-size: .8em;
}
.btn_4:hover{
	color: #fff;
	background-color:#666;
}
.btn_5{
	padding: 1em;
	color: #fff;
	width: 50%;
	border: 0;
	background-color: transparent;
	border-bottom: 1px solid;
}
.btn_5:hover{
	color: #fff;
	background-color:#666;	
}
.totop_button{
	position: fixed;
	font-weight: 400;
	font-size: 2em;
	width: 1.5em;
	height: 1.5em;
	bottom: 20px;
	right: 20px;
	color: #fff;
	background-color: #000;
	opacity: .5;
	border-radius: 10%;
	text-decoration: none;
}
.totop_button:hover {
opacity: .75}


/* ABOUT */
#about{
	background-image:url(../gallery/fp/about_desktop.jpg);
	min-height: 250px;
	text-align: justify;
	background-position:50% 50%;
}
#about h2{
	color: #fff;
}

/* PARALLAX */
.parallax_about{	
	background-color: #011627;
	opacity: 0.80;
}








/* GRID */
.gridContainer{
	width: 90%;
	max-width: 1232px;
	margin: 0 auto;
	padding-right: 1em;
	padding-left: 1em;
}
.row{
	display: table;
	box-sizing: border-box;
	width: 100%;
	border-spacing: 1em;
}
.row>*{
	padding-left: 1em;
	padding-right: 1em;
}
.row::after{
	content: "";
	clear: both;
}
.full_page{
	height: 100vh;
}
.center{
	width: 100%;
	border: 3px;
	margin: auto;
	text-align: center;
	vertical-align: middle;
	align-items: center;
}

/* SPACING */
.full_screen_section{
	display: flex;
	box-sizing: border-box;
	min-height: 92vh;
}
.page_content > div{
	padding-top: 6em;
	padding-bottom: 6em;
}

.space_left_right > div{
	padding-left: 2em;
	padding-right: 2em;
}
.content_spacing > div{
	padding: 4em 0em;
}
.space > div{
	padding: 1em;
}



/* COLUMNS */

/* MOBILE VERSION */
[class*="col_"]{
	width: 100%;
	display: table-cell;
	box-sizing: border-box;
	margin: auto;
	float: left;
}

[class*="col_t_"]:not(.no_padding){
	padding: 1em;
}

/* TABLET VERSION */
@media only screen and (min-width: 600) {
.col_t_1{
	width: 8.33%;
	flex-basis: 8.33%;
}
.col_t_2{
	width: 16.66%;
	flex-basis: 16.66%;
}
.col_t_3{
	width: 25%;
	flex-basis: 50%;
}
.col_t_4{
	width: 33.33%;
	flex-basis: 33.33%;
}
.col_t_5{
	width: 41.66%;
	flex-basis: 41.66%;
}
.col_t_6{
	width: 50%;
	flex-basis: 50%;
}
.col_t_7{
	width: 58.3%;
	flex-basis: 58.3%;
}
.col_t_8{
	width: 66.66%;
	flex-basis: 66.66%;
}
.col_t_9{
	width: 75%;
	flex-basis: 75%;
}
.col_t_10{
	width: 83.33%;
	flex-basis: 83.33%;
}
.col_t_11{
	width: 91.66%;
	flex-basis: 91.66%;
}
.col_t_12{
	width: 100%;
	flex-basis: 100%;	
}
}

/* DESKTOP VERSION */
@media only screen and (min-width: 1023px) {
.col_1{
	width: 8.33%;
	flex-basis: 8.33%;
}
.col_2{
	width: 16.66%;
	flex-basis: 16.66%;
}
.col_3{
	width: 25%;
	flex-basis: 50%;
}
.col_4{
	width: 33.33%;
	flex-basis: 33.33%;
}
.col_5{
	width: 41.66%;
	flex-basis: 41.66%;
}
.col_6{
	width: 50%;
	flex-basis: 50%;
}
.col_7{
	width: 58.3%;
	flex-basis: 58.3%;
}
.col_8{
	width: 66.66%;
	flex-basis: 66.66%;
}
.col_9{
	width: 75%;
	flex-basis: 75%;
}
.col_10{
	width: 83.33%;
	flex-basis: 83.33%;
}
.col_11{
	width: 91.66%;
	flex-basis: 91.66%;
}
.col_12{
	width: 100%;
	flex-basis: 100%;	
}
}

/* ANIMATION FOR JS - SMOOTH SCROLL */
.slideDown {
  animation-name: slideDown;
  -webkit-animation-name: slideDown;
  animation-duration: 1s;
  -webkit-animation-duration: 1s;
  visibility: visible;
}

@keyframes slideDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(70%);
  } 
  100% {
    opacity: 1;
    -webkit-transform: translateY(0%);
  }
}

@-webkit-keyframes slideDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(70%);
  } 
  100% {
    opacity: 1;
    -webkit-transform: translateY(0%);
  }
}