.logo{
		border:none;
		-moz-border-radius-topleft: 10px;
		-moz-border-radius-topright:10px;
		-webkit-border-top-left-radius:10px;
		-webkit-border-top-right-radius:10px;
		border-top-left-radius:10px;
		border-top-right-radius:10px;
}

/* iframe */

.iframe {
  margin-bottom: 45px;
  border: 4px solid #131C28;
  overflow: hidden;
  background: #fff;
  border-radius: 10px;
}

.iframe iframe {
  width: 100%;
  height: 400px;
  border: 0;
  display: block;
}

.iframe-header {
  display: none;
}

.js .iframe-header {
  display: block;
}

.iframe-content {
  /* ipad iframe hack */
  height: 400px;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

.iframe-header a {
  font-size: 15px;
  color: white;
  background: #6b2309;
  display: block;
  padding: 15px;
  text-align: center;
  border-bottom: 3px solid #131C28;
}

.iframe-header a:hover,
.iframe-header a:focus {
  background: #c74110;
}

.iframe-full-screen .iframe-header {
  display: block;
  position: absolute;
  height: 50px;
  width: 100%;
}

.iframe-full-screen .iframe-content {
  position: absolute;
  top: 50px;
  bottom: 0;
  width: 100%;
  height: auto;
}

.iframe-full-screen .iframe-header a {
  padding: 0;
  height: 44px;
  line-height: 44px;
  text-align: center;
  border: 3px solid #131C28;
}

.iframe-full-screen body {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.iframe-full-screen .iframe.iframe-active{
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  z-index: 9999;
  border: none;
}

.iframe-full-screen .iframe iframe {
  position: absolute;
  height: 100%;
  width: 100%;
  border: none;
}

.wrapper {
  max-width: 75%;
  margin: auto;
  padding: 0;
}

@media all and (max-height: 300px){
  .iframe {
    height: 200px;
  }
}

@media only screen and (max-width: 30em) {
	.wrapper {
	max-width: 100%;
	}
}

/* corps */

.titre-commanderies h1 { font-family: Arial; font-size: 1.75em; text-align: center; background: rgba(250, 250, 250, 0.7);}
.titre-commanderies a { text-decoration: none; color: #0D0D0D; }
.titre-commanderies h1:hover { text-decoration: none; color: #0D0D0D; background: #F75014; border-radius: 10px; }

.bouton-commanderies{ text-align: center; margin-top: auto; margin-bottom: auto;}

.bouton-accueil {
	margin-top: 0%;
}

.grid-container-commanderies {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 5% 1%;
  grid-template-areas:
    ". . . ."
    ". . . .";
	margin-bottom: 5%;
}

@media only screen and (max-width: 64em) {
.grid-container-commanderies {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  gap: 1% 0px;
  grid-template-areas:
    "."
    "."
    "."
    "."
    "."
    "."
    "."
    ".";
	margin-bottom: 225px;
	}
}

.background-body {
background: url(Garonne.jpg) no-repeat center center fixed; 
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
background-size: cover;
}