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

html, 
html * {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
	font-family: Gotham, Helvetica Neue, Helvetica, Arial," sans-serif";
}

header {
	padding: 32px;
}

img {
	width: 100%;
	max-width: 100%;
	height: auto;
	vertical-align: middle;
}

footer {
	padding: 20px 30px;
	background-color: #dbecf1;
	
}

body {
	margin-left: auto;
	margin-right: auto;
	background: #e6f4f8;
}

.style-logo {
	margin-left: auto;
	margin-right: auto;
	display: block;
	width: 192px;
}

.style-nav ul {
	list-style-type: none;
}

.style-nav ul li a {
	text-decoration: none;
	color: #2F322A;
	text-align: center;
	display: block;
	text-transform: uppercase;
	padding: 8px;
}

.hero {
    background-size: contain;
    padding-top: 20px;
    padding-right: 20px;
    padding-left: 20px;
    padding-bottom: 50px;
    color: #2d2d35;
    text-align: center;
    background-repeat: no-repeat;
    background-color: #dbecf1;
    background-image: url(images/jbcc-jbcc.png);
	margin-left: 8px;
	margin-right: 8px; 
	margin-bottom: 10px;
	 
    }


h1 {
    font-size: 200%;
    text-transform: uppercase;
    font-weight: 200;
	
}

h2 {
    font-size: 30px;
    text-transform: uppercase;
    font-weight: 200;
	line-height: 30px;
	margin-bottom: 10px;
}

h3 {
	font-size: 16px;
	text-transform: uppercase;
	font-weight: 200;
	margin-bottom: 120px;
}

h4 {
	font-size: 16px;
	font-weight: 200;
	margin-bottom: 35px;
}

p {
	font-size: 16px;
	font-weight: 400;
	margin-bottom: 35px;
}

li {
	display: block;
}

/*
.button {
	border: 2px #FFFFFF solid;
	padding: 8px 30px;
	border-radius: 30px;
	color: #FFFFFF;
	text-decoration: none;
}
*/
.button2 {
	border: 2px #2d2d35 solid;
	padding: 8px 30px;
	border-radius: 30px;
	color: #2d2d35;
	text-decoration: none;
}


.info-box-tan {
    background-color: #b4c5cd;
    color: #2d2d35;
    padding: 30px 20px 60px;
    text-align: center;
}
/*
.info-box-dark {
	background-color: #2D2D35;
	color: #FFFFFF;
	padding: 30px 20px 60px;
	text-align: center;
}
*/
/*
.info-box-yellow {
	background-color: #fff799;
	color: #2d2d35;
	padding: 30px 20px 60px;
	text-align: center;
}
*/


.footer-text {
    font-size: 17px;
    margin-bottom: 20px;
    text-shadow: 0px 0px;
    color: #2D2D35;
}

.col {
	width: 100%;
}

.row:before, .row:after {
	content: "";
	display: table;
}

.row:after {
	clear: both;
}
.poissons {
    width: 100px;
    height: 100px;
    vertical-align: middle;
}
/*
.BLEU {
    color: #2d2d35;
}
*/

/*Tablet View*/

@media (min-width: 768px){
	
	body {
		max-width: 778px;
	}
	
	.style-nav ul li {
		display: inline-block;
	}
	
	.style-nav ul {
		text-align: center;
	}
	
	h1 {
		font-size: 40px;
		margin-bottom: 10px;
	}
	
	h2 {
		margin-bottom: 16px;
	}
	
	.col-md-one-half {
		width: 50%;
	}
	
	.col {
		float: left;
		padding: 0px 7px 14px;
	}
}

/*Desktop View*/

@media (min-width: 1024px){
	
	body {
		max-width: 1200px;
	}
	
	.style-logo {
		float: left;
	}
	
	.style-nav {
		float: right;
	}
	
	.col-lg-one-fourth {
		width: 25%;
	}
	
	
}
/********************************
* Basics
*********************************/
* {
    box-sizing: border-box;
}


.card {
    border: 1px solid #bac6d3;
    border-radius: 8px;
    padding: 1rem;
}

/********************************
* Carousel styles
*********************************/
.carousel-items {
    display: flex;
    overflow-x: scroll;
    padding: 1rem 0;
    scroll-snap-type: x mandatory;
}

.carousel-item {
    flex: 1 0 250px;
    margin-left: 1rem;
    scroll-snap-align: start;
}

::-webkit-scrollbar-track {
    background-color: #F5F5F5;
}

::-webkit-scrollbar {
    height: 6px;
    background-color: #F5F5F5;
}

::-webkit-scrollbar-thumb {
    background-color: #3d4852;
    border-radius: 3px;
}


/********************************
* Breakpoints
*********************************/
@media screen and (min-width: 576px) {
    .carousel-item {
        flex-basis: 300px;
	 }
}

@media screen and (min-width: 992px) {

    .carousel-item {
        flex-basis: 325px;
    }
}

@media screen and (min-width: 1280px) {

    .carousel-item {
        flex-basis: 450px;
    }
}