/* STYLE BIOSITE */
@import url('https://fonts.googleapis.com/css?family=Iceberg|Kodchasan:200,200i,300,300i,400,400i,500,500i,600,600i,700,700i&display=swap');
/*
	font-family: 'Kodchasan', sans-serif;
	font-family: 'Iceberg', cursive;
*/
* {
	transition: all 0.5s ease;
}

html {
  scroll-behavior: smooth;
}

body {
	color: #3d3d3d;
	background: #2084c6; /* Old browsers */
	background: -moz-linear-gradient(top,  #2084c6 0%, #006f9c 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(top,  #2084c6 0%,#006f9c 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to bottom,  #2084c6 0%,#006f9c 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#2084c6', endColorstr='#006f9c',GradientType=0 ); /* IE6-9 */
}

.container {
  max-width: 960px;
}

h1,h2,h3,h4,h5,h6 {
	font-family: 'Iceberg', cursive;
}

a {
	color: #2084c6;
}
	a:hover {
		color: #006f9c; /* #006f9c #2084c6 */
	}

/*
 * HEADER
 */

.logoNav {
	position: relative;
}
.logoNav img {
	position: relative;
	margin: 0; padding: 0;
	width: 25px;
	height: auto;
}
.logoNav span {
	display: none;
}

.site-header {
  background-color: rgba(0, 0, 0, .85);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  backdrop-filter: saturate(180%) blur(20px);
}
.site-header a {
  color: #999;
  transition: ease-in-out color .15s;
}
.site-header a:hover {
  color: #fff;
  text-decoration: none;
}

.bg_header {
	background-color: #c8d7dc;
	background-image: url(../img/bg_header.png);
	background-repeat: no-repeat;
	background-position: 25rem 10%;
	background-size: 100%;
	background-attachment: fixed;
}

.bg_secondary.bg_secondary {
	background-color: #fdfdfd;
	border: 2px solid #2084c6;
}

.linked {
	display: block;
	text-decoration: none;
	transform: scale(1);
}
	.linked:hover {
		text-decoration: none;
		transform: scale(1.1);
	}

.linkOut.linkOut {
	color: #000;
	font-family: 'Iceberg', cursive;
	text-decoration: none;
}
	.linkOut.white {
		color: #fff;
	}


.logo {
	position: relative;
	text-align: center;
}
.logo img {
	position: relative;
	margin: 0; padding: 0;
	max-width: 300px;
	height: auto;
}
.logo span {
	display: block;
	margin: 1rem auto;
	width: 100%;
	color: #006f9c;
	font-size: 4.5rem;
	letter-spacing: 2rem;
}

footer {
	color: #fff;
}

/*
 * Extra utilities
 */

 .btn-custom {
	color:#006f9c;
	background-color:transparent;
	background-image:none;
	border-color:#006f9c;
	transition: all 0.5s ease;
 }
 .btn-custom:hover {
	color:#fff;
	background-color:#006f9c;
	border-color:#006f9c;
	transition: all 0.5s ease;
 }
 .btn-custom.focus,
 .btn-custom:focus {
	box-shadow:0 0 0 .2rem rgba(108,117,125,.5);
 }
 .btn-custom.disabled,
 .btn-custom:disabled {
	color:#006f9c;
	background-color:transparent;
 }
 .btn-custom:not(:disabled):not(.disabled).active,
 .btn-custom:not(:disabled):not(.disabled):active,
 .show>.btn-custom.dropdown-toggle {
	color:#fff;
	background-color:#006f9c;
	border-color:#006f9c;
 }
 .btn-custom:not(:disabled):not(.disabled).active:focus,
 .btn-custom:not(:disabled):not(.disabled):active:focus,
 .show>.btn-custom.dropdown-toggle:focus {
	box-shadow:0 0 0 .2rem rgba(108,117,125,.5);
 }

.flex-equal > * {
  -ms-flex: 1;
  flex: 1;
}
@media (min-width: 768px) {
  .flex-md-equal > * {
    -ms-flex: 1;
    flex: 1;
  }
}

@media (max-width: 768px) {
	.flex-md-equal > * {
	  -ms-flex: 1;
	  flex: 1;
	}
	  .logo span {
		  margin: 0.5rem auto;
		  width: 100%;
		  color: #006f9c;
		  font-size: 3rem;
		  letter-spacing: 1rem;
	  }
  
	  .logo img{
		  max-width: 200px;
	  }
  }

.overflow-hidden { overflow: hidden; }