/* * * * * *, h1, h2, h3, h4, h5, h6, img {outline: 3px solid orangered;} */

@import url('https://fonts.googleapis.com/css2?family=Alegreya+Sans:ital,wght@0,300;0,400;0,700;0,800;0,900;&family=Lora:ital,wght@0,400..700;1,400..700&display=swap');
/* @import url('https://fonts.googleapis.com/css2?family=Alegreya+Sans:ital,wght@0,100;0,300;0,400;0,500;0,700;0,800;0,900;1,100;1,300;1,400;1,500;1,700;1,800;1,900&family=Lora:ital,wght@0,400..700;1,400..700&display=swap'); */

@supports (background-color: Canvas) and (color: CanvasText) {
  :root {
      --bg-color: Canvas;
      --txt-color: CanvasText;
      --text-color: rgb(18,13,46);
      --cta-color: #ffffff;
      --turquoise-color: #3BC0CF;
      --red-color: rgb(219,69,90);
      --jaune-color: #FAF1D2;
      --font-s-serif: "Alegreya Sans", sans-serif;
      --font-serif: "Lora", serif;
  }
}

body {
  font-family: var(--font-serif);
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  background-color: #fff;
  color: var(--text-color);
}

header {
  width: 100%;
  height: 8vh;
  top: 0;
  left: 0;
  position: relative;
  top: 0;
  z-index: 999;
}

nav {
  width: 100%;
  height: 10vh;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  font-family: var(--font-s-serif);
  font-weight: 800;
  padding: 0 2rem;
  background-color: white;
}

p {
  font-size: clamp(1.9rem, 1vw, 2.2rem); 
  line-height: 1.7em;
  color: var(--text-color);
}

h1, h2, h3 {
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  color: var(--text-color);
	-webkit-hyphens: none;
	    -ms-hyphens: none;
	        hyphens: none;
}

ul {margin-left: 20px;}

.resp {display:none;}
.noresp {display: block;}

.logo {
  max-width: 90px;
}

/* =========================================
----			        	MENU 		         	----
============================================ */

.toggle {
  display: none;
}

.menu {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  list-style: none;
  font-size: 1.9rem;
  /* line-height: 2.3em; */
  gap: 25px;
  max-width: 600px;
  /* margin: auto; */
}

.menu li {
  text-align: center;
}

.menu li a {
  color: var(--text-color);
  padding: 5px;
  text-decoration: none;
  -webkit-transition: color 0.5s;
  -o-transition: color 0.5s;
  transition: color 0.5s;
}

.menu li a:hover {
  color: var(--cta-color);
  background-color: rgb(255, 255, 255);
  -khtml-border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
  color: var(--red-color);
  box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.1);
}

#content {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	height:100dvh;
}

.sous-menu {display: none;}

.menu-nav__item--activ {
  background-color: rgb(255, 255, 255);
  -khtml-border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
  color: var(--red-color);
  font-weight: 900;
  box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.1);
}

.menu-nav__item--activ a, .menu-nav__item--activ a:visited {
  color: var(--red-color);
}

.menu-nav__item--activ a:hover {
  background-color: rgb(255, 255, 255);
  -khtml-border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
  color: var(--red-color);
  font-weight: 900;
  box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.1);
}

/* =========================================
----			        	TITRES 		        	----
============================================ */

h1 {
  margin: 2em 0.5em 1em 0.5em;
  font-family: var(--font-s-serif);
  font-size: clamp(40px, 7vw, 9.2rem);
	line-height: clamp(50px, 8vw, 10.2rem);
}

h2 {
  font-family: var(--font-s-serif);
	font-size: 3.4em;
  line-height: 1.1em;
}

h3 {
  font-family: var(--font-s-serif);
  font-size: clamp(2.3rem, 3.3vw, 3.7rem); 
	line-height: 1.5em;
}

h4 {
  font-family: var(--font-s-serif);
	font-size: 1.4em;
	line-height: 1.6em;
}

h5 {
  font-family: var(--font-s-serif);
	font-size: 1.3rem;
	line-height: 1.9rem;
}

h6 {
  font-family: var(--font-s-serif);
	font-size: 1.2rem;
	line-height: 1.9rem;
}

/* =========================================
----			     	BOUTONS		      	----
============================================ */


.btn {
  -khtml-border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
  font-family: var(--font-s-serif);
  font-weight: 600;
  padding: 15px;
}

/* bouton rouge */
.btn1 {
	color: #ffffff;
  font-size: 2.1rem;
	background-color: var(--red-color);
	border: 1px var(--red-color) solid;
  text-decoration: none;
    -webkit-transition: background-color 1s;
    -o-transition: background-color 1s;
    transition: background-color 1s;
}

.btn1:hover {
	color: var(--red-color);
	background-color: white;
	border: 1px var(--red-color) solid;
  text-decoration: none;
}

/* bouton bleu secondaire */
.btn2 {
	color: #fff;
	background-color: black;
	border: 1px solid white;
  font-size: 2.1rem;
  text-decoration: none;
    -webkit-transition: color 1s;
    -o-transition: color 1s;
    transition: color 1s;
  }
 
.btn2:hover {
	color:  var(--red-color);
	border: 1px solid var(--red-color);
  text-decoration: none;
  	background-color: rgb(255, 255, 255);

}

/* bouton bleu marine */
.btn3 {
  color: white;
	background-color: var(--text-color);
	border: 2px var(--text-color) solid;
  font-size: 2.1rem;
  -webkit-transition: background-color 1s;
  -o-transition: background-color 1s;
  transition: background-color 1s;
  font-family: "PT Sans Narrow", sans-serif;
}

.btn3 a {
  color: white;
  text-decoration: none;
}

.btn3:hover {
	color: var(--text-color);
	background-color: #fff;
	border: 2px var(--text-color) solid;
  transition: all 1s;
}

/* bouton rouge contact */
.btn4 {
	color: white;
	background-color: var(--red-color);
	border: 0;
  font-size: 2.1rem;
  -webkit-transition: background-color 1s;
  -o-transition: background-color 1s;
  transition: background-color 1s;
}

.btn4 a {
	color: white;
  text-decoration: none;
}

.btn4:hover {
	background-color: var(--text-color);
	border: 0;
  text-decoration: none;
  transition: all 1s;
}

.btn1:visited, .btn2:visited, .btn3:visited {text-decoration: none;}
.btn-centre-mob {text-align: inherit;}
.btn-creer-charte {margin-left: 2rem;}

/* ==============================
----	 	 	 	LINKS 	  			----
================================= */

/* a:link {
  color: #c1272d;
  text-decoration: none;
  }
  
  a:visited {
  color: #c1272d;
  text-decoration: none;
  }
  
  a:hover {
  color: #c1272d;
  text-decoration: none;
  }
  
  a:active {
  color: #000000;
  } */

/* ==============================
----	 	 	 	EFFETS 	  			----
================================= */

.arrondi {
  -khtml-border-radius: 50px;
	-webkit-border-radius: 50px;
	-moz-border-radius: 50px;
	border-radius: 50px;
}

/* || ACCUEIL */
/* les blocs accueil */

/* home definition */
.home-definition {
  position: relative;
  background: linear-gradient(355deg, rgb(40, 28, 90) 0%, rgb(32, 8, 43) 30%);
 }
 
.home-definition__block--layout {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  padding-block: 4em;
  /*margin-block: 4em; */
}

.home-definition h2 {
  text-align: left;
}

.home-definition p {
  font-size: clamp(1.8rem, 1.6vw, 2.6rem);
}

/* home hero */
.home-hero {
  min-height: 70vh;
  margin-top: 0.8em;
background-image: url(../img/fond-hero-page.webp);
background-repeat: no-repeat;
background-position: center;
background-size: cover;
background-attachment: fixed;
}

.home-hero__block {
display: flex;
}

.home-hero__block--text {
  font-size: 2em;
}

.home-hero__block--galerie {
  text-align: center;
}

.home-hero__block--galerie img {
  margin: 5px;
  max-width: 10em;
}

.home-hero__block-pied {
  background-color: transparent;
  vertical-align: bottom;
}

/* anim défilement mot */
#typing-text{
  color: var(--red-color);
}
#typing-text::after {
  content: 'Dessin';
  animation: change-text 6s infinite;
}
/* @keyframes change-text {
  from   { content: 'dessin'; }
  25%  { content: 'peinture'; }
  50%  { content: 'pastel'; }
  75%  { content: 'modelage'; }
  to { content: 'dessin'; }
} */
@keyframes change-text {
  from   { content: 'Dessin'; }
  20%  { content: 'Peinture'; }
  40%  { content: 'Pastel'; }
  60%  { content: 'Modèle vivant'; }
  80%  { content: 'Modelage'; }
  to { content: 'Dessin'; }
}
/* fin anim défilement mot */

/* home-infos */
.home-infos {
  min-height: 100vh;
  margin-block: 6em;
}

.home-infos__block--text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* height: 100%;
  margin: 2em; */
}

.home-infos__block--text a {
  color: var(--cta-color);
  font-family: "PT Sans Narrow", sans-serif;
  padding: 10px;
}

.home-infos__block--text a:hover {
  color: white;
  background-color: var(--orange-color);
  transition: background-color 1s;
}

/* home logo */
.home-logo {
  background-color: rgb(255, 255, 255);
  margin-bottom: 0;
  padding-bottom: 0;
  bottom: 0;
}

.home-logo__titre {
  font-size: 3em;
}

.home-logo__galerie {
  gap: 3em;
}

.home-logo__galerie img {
  max-width: 240px;
}

.acc-qui {
  padding: 6em 2em;
  background-color: #fff;
  display: flex;
  align-items: center;
  background-image: url(../img/fond_vague-beige-blanc.png);
  background-position: bottom center;
  background-repeat: no-repeat;
  background-size: cover;
}


/* home FAQ */
.home-faq__block--point-fort {
  background: rgb(255,255,255);
  background: linear-gradient(170deg, rgb(255, 255, 255) 0%, rgb(226, 226, 226) 180%); 
  border-bottom: 3px solid black;
}

/* AAM */
.prof-folio img {max-height: 600px;}
.prof-folio--border {border: 1px solid rgb(235, 235, 235);}
.prof-folio div {padding: 10px;}

/* ACTUALITES */
article {
  border-bottom: 1px solid black;
}

/* GALERIE */
figcaption {font-size: 0.8em; line-height: 1.4em; color: #9b9b9b; padding-top: 4px;}

/* ACCORDION */

 /* Style the buttons that are used to open and close the accordion panel */

 .accordion {
  background-color: transparent;
  font-size: clamp(1.9rem, 1vw, 2.9rem);
  line-height: clamp(2.5rem, 4vw, 3rem);
  font-family: var(--font-s-serif);
  color: var(--text-color);
  cursor: pointer;
  padding: 40px;
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  transition: 0.4s;
  white-space: normal;
  overflow-wrap: break-word;
}

/* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
.active, .accordion:hover {
  color: white;
  background-color: var(--red-color);
}

/* Style the accordion panel. Note: hidden by default */
.panel {
  padding: 0 18px;
  background-color: white;
  display: none;
  overflow: hidden;
  padding: 40px;
} 

/* Add a symbol to each button */
/*.accordion:after {
  content: '\02795'; *//* Unicode character for "plus" sign (+) *//*
  font-size: 13px;
  color: var(--text-color);
  float: right;
  margin-left: 5px;
}*//*

.active:after {
  content: "\2796"; *//* Unicode character for "minus" sign (-) *//*
}*/

/* ACCUEIL écran anim */
.logo-bloc {width: 100%;}
.logo-bloc-contact {width: 60%;}

/* cta */
.cta {min-height: 55vh;}

.cta__block--accueil {
  display: flex;
  flex-direction: column;
  max-width: 960px;
  min-height: 18em;
  border: 2px solid var(--text-color);
  background: rgb(256,256,256);
  /* background: linear-gradient(355deg, rgb(48, 33, 106) 0%, rgb(37, 11, 57) 30%); */
  border: 1px solid var(--text-color);
  box-shadow: 1px 1px 30px rgba(0, 0, 0, 0.1);
}

.cta__block {
  display: flex;
  flex-direction: column;
  /* background-color: var(--jaune-color); */
  max-width: 960px;
  min-height: 18em;
  border: 2px solid var(--text-color);
  box-shadow: 1px 1px 30px rgba(0, 0, 0, 0.1);
}

/* gradient txt */
 .illus_titre-gradient {
  font-size: clamp(16rem, 4vw, 8rem);
  line-height: 0.8em;
  background: linear-gradient(230deg, rgb(37, 11, 57)60%,rgb(196, 77, 91)100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0;
}

.illus_titre-gradient span {
  font-size: 2em; line-height: 0.2em;
}

/* || ATELIERS */
.les-ateliers-visuel {
  width: 100%;
}

/* || ACTU */
.actu-visuel-size {
  width: 50%;
}

.lettrine::first-letter{
  font-size: 3em;
  color: var(--red-color);
  float: left;
  margin-right: 5px;
}

/* =============== A PROPOS =============== */


.app-eho {
  padding: 6em 2em;
  background-color: #fff;
  display: flex;
  align-items: center;
  background-image: url(../img/fond_vague-beige-blanc.png);
  background-position: bottom center;
  background-repeat: no-repeat;
  background-size: cover;
}

.a-propos_stat--card {
  background-color: var(--jaune-color);
}

/**
 * ----------------------------------------
 * animation rotate-center
 * ----------------------------------------
 */
 @-webkit-keyframes rotate-center {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  50% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes rotate-center {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  50% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

/* =============== contact =============== */

.form {max-width: 720px;}
.form-champ {text-align: left;}
.form-input {width: 100%; border-top: 0px; border-right: 0px; border-bottom: 1px solid var(--text-color); border-left: 0px;}
.form-input:last-child {border-bottom: 0px;}
.contact_visuel {max-width: 560px; padding: 1px;}
.contact_text-coordo {text-align: center; font-size: 2rem; line-height: 2em; text-underline-offset: 0.4em; height: 100%;}
.contact_text-coordo a:hover {color: var(--cta-color);}
.contact_telephone--bloc {min-height: 40vh;}
.contact_inscription {
  min-height: 50vh;
  background-image: -o-linear-gradient(355deg, rgb(46, 35, 90) 0%, rgb(255, 255, 255) 65%);
  background-image: linear-gradient(355deg, rgb(46, 35, 90) 0%, rgb(255, 255, 255) 65%);
  /* background-image: -o-linear-gradient(180deg,var(--cta-color) 17%,var(--text-color) 100%);
  background-image: linear-gradient(175deg,var(--cta-color) 17%,var(--text-color) 100%); */
}

.contact_situation {
  background-color: #e19764;
}

/* =========================================
----		           FOOTER 	            ----
============================================ */

footer {
  font-family: var(--font-s-serif);
  font-weight: 700;
  background: rgb(29, 20, 64);
  background: linear-gradient(350deg, rgb(37, 11, 67) 10%, rgb(18,13,46) 50%);}

footer a {color: #ffffff; text-decoration: none; font-size: 1.2em;}
footer a:hover {
  color: #ffffff;
  text-decoration: none;
}

footer br {
  content: "";
  display: block;
  height: 10px;
}

.footer__block--raccourcis {min-height: 400px; width: 100%;}
.footer__block--legals {color: #ffffff; font-size: 1.1em; font-weight: 300;}

footer, .footer__block--legals a, .footer__block--legals a:hover, .footer__block--legals a:visited {color: #ffffff; font-size: 0.9em;}


/* =========================================
----		           COMMONS	            ----
============================================ */
.mw640p {max-width: 640px;}
.mw1900p {max-width: 1900px;}
.bg-beige {background-color: #f9eade;}
.bg-beige-degrade {background-image: -o-linear-gradient(180deg,#f9eade 27%,#ffffff 100%);
  background-image: linear-gradient(180deg,#f9eade 27%,#ffffff 100%);}
.bg-bleu-degrade {background-image: -o-linear-gradient(180deg,#094d5c 27%,#088ca8 100%);
  background-image: linear-gradient(180deg,#094d5c 27%,#088ca8 100%);}
.font-blanc {color: #ffffff;}
.lien-blanc a, .lien-blanc:hover, .lien-blanc:visited {color: #fff;}
.marge-4-mob2 {margin: 4rem;}
.marge-2-mob0 {margin: 2rem;}
.padding-4-mob-2 {padding: 4rem;}
.retina {max-width: 300px;}
.sep {border-bottom: 2px solid #D4AF37;}
.penche {transform: skew(-8deg);}

/* backtotop */
#backtotop {
	cursor : pointer;
	display : none;
	position : fixed;
	bottom : 10px;
	right: 5px;
	padding	: 5px;
	width : 100px;
	text-align : center;
	background-color : transparent;
	/* border-radius : 8px;
	-webkit-border-radius : 8px;
	-moz-border-radius : 8px;
	filter : alpha(opacity=75);
	-khtml-opacity : 0.6;
	-moz-opacity : 0.6;
	opacity	: 0.6; */
	color : #FFF;
	z-index	: 1000;
}
#backtotop:hover
{
	filter : alpha(opacity=90);
	-khtml-opacity : 0.8;
	-moz-opacity : 0.8;
	opacity	: 0.8;
  margin-bottom: 5px;
}
#backtotop img {
  width: 130px;
}


/* || Effets */

/* survol lien footer */
.two-lines {
  position: relative;
}

.two-lines::before,
.two-lines::after {
  content: "";
  position: absolute;
  background: #ffffff;
  height: 1px;
  opacity: 0;
  left: 50%;
  transform: translate(-50%, 8px);
  transition: all 0.2s ease-in-out;
}

.two-lines::before {
  width: 90%;
  bottom: 0;
}

.two-lines::after {
  width: 60%;
  bottom: -5px;
}

.two-lines:hover::before,
.two-lines:hover::after {
  opacity: 1;
  transform: translate(-50%, 0px);
}

.two-lines::before,
.two-lines:hover::after {
transition-delay: 0.1s;
}

.two-lines:hover::before {
  transition-delay: 0s;
}
/* fin survol lien footer */

/* clignote */
.clignote {
  animation: blinkopacitysmooth linear 1s infinite alternate;
}
@keyframes blinkopacitysmooth {   
  0% { opacity: 1; } 
  100% { opacity: 0; }  
}
/* fin clignote */

/* ------------------------------------------------------------- */
/* ------------      MOBILE max width 991px     --------------- */
/* ------------------------------------------------------------- */


/* @media all and (max-width:991px) { */
@media all and (max-width:810px) {

	.resp{display:block;}
	.noresp{display:none;}

  .btn-centre-mob {text-align: center;}
  .btn-creer-charte {margin-left: inherit;}

  body, p {
    -webkit-hyphens: none;
     -ms-hyphens: none;
     hyphens: none;
   }
   .grid-4{
     display:inline-block;
   }
   .grid-3{
     display:inline-block;
   }
 
  .toggle {
    display: block;
    cursor: pointer;
    position: absolute;
    z-index: 20;
    width: 70px;
    right: 10px;
  }

  .logo {
    position: relative;
    z-index: 20;
    top: 5px;
    max-width: 70px;
  }

  .ouvrir {
    display: block;
  }

  .fermer {
    display: none;
  }

  .open .ouvrir {
    display: none;
  }

  .open .fermer {
    display: block;
  }

  nav {
  display: flex;
  height: 14vh;
  justify-content: space-between;
  }

  .menu {
    position: absolute;
    top: 0;
    left: -20px;
    width: 100%;
    height: 100vh;
    background: rgb(255, 255, 255);
    /* background: linear-gradient(355deg, rgb(40, 28, 90) 0%, rgb(32, 8, 43) 30%); */
    flex-direction: column;
    justify-content: space-around;
    transform: translateX(-100%);
    transition: transform 1s;
    font-size: 3.2rem;
    z-index: 10;
    padding-top: 1em;
    gap: 0;
  }

  .open .menu {
    transform: translateX(0);
  }

  .sous-menu {
    display: block;
    font-size: 1.2rem;
    line-height: 3rem;
  }

/* --------------- ACCUEIL --------------- */

.home-definition h2 {text-align: center;}

/* .logo-bloc {width: 60%; margin: auto; padding-top: 8em; padding-bottom: 8em; z-index: 1;} */
.acc-titre-eho { padding: 2rem;}
.acc-box-point-fort {max-width: 300px;}
.acc-icon-point-fort {width: 100%; padding-top: 40px; font-size: 4rem;}
.acc-texte-point-fort {font-size: 1.1rem; text-align: center;}

/* || ACTU */
.actu-visuel-size {
  width: 100%;
}

/* --------------- ILLUSTRATION --------------- */
/* gradient txt */
.illus_titre-gradient {
  /* font-size: 3em; */
  font-size: clamp(5.5rem, 1.8vw, 6.1rem);
  margin-left: 10px;
}


/* --------------- CONTACT --------------- */



/* =========================================
----			        	TITRES 		        	----
============================================ */


h2 {
	font-size: 4.1rem;
	line-height: 4.8rem;
}

/* h3 {
	font-size: 1.7rem;
	line-height: 1.9rem;
} */

h4 {
	font-size: 2rem;
	line-height: 2.4rem;
}

footer h4 {
	font-size: 2.3rem;
	line-height: 3.2em;
}

h5 {
	font-size: 1.5rem;
	line-height: 1.7rem;
}

h6 {
	font-size: 1.2rem;
	line-height: 2.1rem;
}
.titre-centre-mob {text-align: center;}

/* --------------- FOOTER --------------- */
.artisan {padding: 2rem 0 0 0;}
.artisan-slogan {max-width: 350px;}
.legals {font-size: 0.7rem;}


/* =========================================
----		           COMMONS	            ----
============================================ */
/* .ordre {flex-direction:column-reverse;} */

.marge-4-mob2 {margin: 2rem;}
.marge-2-mob0 {margin: 0rem;}
.padding-4-mob-2 {padding: 2rem;}
.sep-vertical-rouge {border-bottom: 2px solid #c1272d; border-right: 0px}
.sep-vertical-blanc {border-bottom: 2px solid #fff;}

#backtotop {
  bottom : 7px;
  right: 0px;
  padding	: 0px;
  width : 100px;
}

/* --------------- PORTFOLIO --------------- */
.container {margin-bottom:2em;}
.portfolio_bloc-tri {font-size: 0.8rem;}

}
/* ------------ FIN AFFICHAGE NAVIGATION MOBILE --------------- */


/* fading */

	.fading:hover {
		-webkit-transition: 0.3s ease;
		-o-transition: 0.3s ease;
		transition: 0.3s ease;
		opacity:0.5;
	}

	.fading {
		-webkit-transition: 0.3s ease;
		-o-transition: 0.3s ease;
		transition: 0.3s ease;
		opacity:1;
		
	}

/* GOOGLE MAPS */
.google-maps {
position: relative;
padding-bottom: 50%; /* This is the aspect ratio */
height: 0;
overflow: hidden;
}

.google-maps iframe {
position: absolute;
top: 0;
left: 0;
width: 100% !important;
height: 100% !important;
}