@charset "utf-8";
/* CSS Document */
body{
	margin: 0;
	padding:20px 0 0 0;
	font-family:Arial, Helvetica, sans-serif;
	background: #efefef;
	display: flex;
	align-content: center;
	justify-content: space-around;
}
.Postcard-nav {
  padding: 10px 20px;
}
.Postcard-nav a {
  text-decoration: none;
}
.Postcard-nav a:hover {
  text-decoration: underline;
}
.Postcard-nav-title {
	font-family: 'Caveat', cursive;
  font-size: 1.7em;
  margin: 0;
  padding: 9px 0 30px 0;
  float: left;
}
.Postcard-nav-title a {
 color: #628694;
}
.Postcard-nav-menu {
  margin: 0;
  padding: 0;
}
.Postcard-nav-menu-item {
  font-family: 'Caveat', cursive;
  list-style-type: none;
  font-size: 1.4em;
}
.Postcard-nav-menu-item a {
  color:#628694;
}
.Postcard-nav-menu-item__selected a {
  text-decoration: underline;
}

.Postcard-aside {
	flex-grow: 1;
  flex-shrink: 1;
  overflow-y: hidden;
}
.Postcard-content {
	background: #fff;
  border-radius: 10px;
  padding: 0 20px 20px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.Postcard-content-title {
  font-family: 'Caveat', cursive;
  font-size: 2em;
  margin: 0;
  padding: 10px 20px 30px 17px;
  color: #628694;
}
.Postcard-aside-images {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0;
  margin: 0;
  overflow-y: hidden;
}
.Postcard-aside-image {
  list-style-type: none;
  border-radius: 10px;
  margin-bottom: 10px;
}
.Postcard-aside-image__lastvisible {
  margin-bottom: 0;
}
.Postcard-aside-image__hidden {
  display: none;
}
.Postcard-aside-image img {
  border-radius: 10px;
  width: 100%;
  display: block;
}

.Postcard-content-text {
	color: #666;
  font-size: 0.85em;
  line-height: 1.35em;
	margin: 0 0 20px 0;/*tous lzs paragraphes saufs spciaux sont espac s de 20px.*/
	padding: 0 20px;/*ils ont des padding de 20px a gauche et a droite.*/
}
.Postcard-content-text__home {
  padding-bottom: 20px;
  border-bottom:1px dashed #628694;
}
.Postcard-content-text-promo {
  color: #fff;
  background:#628694;
}
.Postcard-content-text a {
  color:#628694;
  text-decoration: underline;
}
.Postcard-content-text a:hover {
  text-decoration: none;
}

.Postcard-footer{
  padding: 0 20px 0 5px;
  margin-top: auto;
}
.Postcard-footer-partners {
  display: flex;
  margin: 0;
  padding: 0;
  justify-content: space-between;
  align-items: flex-end;
}
.Postcard-footer-partner {
  list-style-type: none;
  width: 15%;
  max-width: 150px;
}
.Postcard-footer-partner-logo {
  width: 100%;
}

@media (min-width: 768px) {
  .Postcard-nav-menu {
    float: right;
    display: flex;
    margin: 0 0 0 auto;
    padding: 13px 0 0 0;
  }
  .Postcard-nav-menu-item {
    margin-left: 15px;
  }
}
@media (min-width: 769px) { 
  .Postcard {
    display: flex;
    flex-direction: row;
    max-width: 1400px;
    justify-content: space-between;
  }
  .Postcard-content {
    margin-right: 10px;
    flex-basis: 60%;
    min-width: 750px;
    flex-shrink: 0;
  }
}
@media (max-width: 1399px) { 
  .Postcard {
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media (min-width: 1400px) { 
  .Postcard {
    width: 80%;
  }
}
@media (max-width: 769px) { 
  .Postcard-content {
    margin-bottom: 10px;
  }
}
.Slideshow {
  position: absolute;
  width: 100%;
  height: 100%;
  background:hsl(0,0%,100%, 0.8);
  padding: 0;
  margin: 0;
  display: flex;
}
.Slideshow-slide img{
  border-radius: 10px;
}