*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    background-color: white;
    background-repeat: no-repeat;
}
li {
    list-style-type:none;
}
h1 {
    color: green;
    font-size: 14px; /* px quiere decir 'píxeles': el tamaño de la fuente base  */
    font-family: Poppins SemiBold; /*   fonts */
    
}
h2{
    text-align: center;
    font-size: 40px;
    font-family: arial;
    margin-top: 80px;
    color: aqua;
    text-shadow: 0px 0px 6px black;
}
textarea {
    resize: none;
}
.background-img-1{
    background-image: url(../images/fondo1B.png);
    background-position: left;
}
.background-img-2{
    background-image: url(../images/fondo2.png);
    background-size:cover;
}
.background-img-4{
    background-image: url(../images/fondo4.png);
    background-size: cover;
}
.background-img-6{
    background-image: url(../images/fondo6.png);
    background-size: contain;
    background-position: right;
}
@keyframes rotar{
    from{
        transform: rotateY(0deg);
    }to{
        transform: rotateY(360deg);
    }
}
/*Header*/
header{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-around;
}
.main-img{
    max-width:350px; 
    max-height:250px;
}
.main-img:hover{
    transition: all 3s ease-in-out;
    /*width:420px;
    height:270px;*/
}
.button-container{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    flex-direction: row;
    border:0%; 
    padding:3%;
    align-self:center;
    padding: 40px 2px;
}
.button {
    background-color: #AD0000;  
    border-style:solid;
    border-width: 2px;
    border-color: black;
    color: white;
    padding: 10px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 14px;
    margin: 4px 4px;
    cursor: pointer;
    font-family: Poppins SemiBold;
}
.button1 {border-radius: 5px;}
.button2 {border-radius: 4px;}
.button3 {border-radius: 8px;}
.button4 {border-radius: 12px;}
.button5 {border-radius: 50%;}

/*Main*/
main{
    margin: 10px !important;
}
.title{
    display: flex;
    margin: auto;
    justify-content: space-around;
    align-content: space-around;
}
.show-room-container{
    margin: 20px auto;
    display: flex;
    justify-content: center;
}
.show-room-iframe{
    height:800px;
    width:90%;
}
.text-frame-1 {
    align-self: center;
	color: black;
	max-width: 960px;
	margin: auto auto;
	background-color: rgba(5, 5, 5, 0.5);
	background-image: linear-gradient(rgba(255,255,255,0.6),rgba(255,255,255,0.5));
	border-radius: 12px;
	padding: 4px 12px;
	font-weight: bold;
	font-size:24px;
	font-family: Poppins SemiBold;
}
.text-frame-2 {
    color: black;
	max-width: 960px;
    width: 100%;
	margin: 10px auto;
	background-color: rgba(255,255,255,0.5);
	background-image: linear-gradient(rgba(255,255,255,0.6),rgba(255,255,255,0.5));
	border-radius: 12px;
	padding: 4px 12px;
	font-weight: bold;
	font-size:24px;
	font-family: Poppins SemiBold;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.text-frame-3{
    color: black;
	max-width: 960px;
    width: 100%;
	margin: 10px auto;
	background-color: rgba(255,255,255,0.5);
	background-image: linear-gradient(rgba(255,255,255,0.6),rgba(255,255,255,0.5));
	border-radius: 12px;
	padding: 4px 12px;
	font-weight: bold;
	font-size:24px;
	font-family: Poppins SemiBold;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.text-frame-4 {
    align-self: center;
    color: black;
    max-width: 960px;
    margin: 10px auto;
    background-color: rgba(255,255,255,0.5);
    background-image: linear-gradient(rgba(255,255,255,0.6),rgba(255,255,255,0.5));
    border-radius: 12px;
    padding: 4px 12px;
    font-weight: bold;
    font-size:24px;
    font-family: Poppins SemiBold;
}
.form-contacto{
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-evenly;
}
.form-contacto input {
    margin: 10px auto;
}
.text-frame-1 li {
    padding-left: 20px;
}
.text-frame-1 p{
    margin: 5px 3px;
    padding: 3px;
}
.text-frame-2 p{
    margin: 5px 3px;
    padding: 3px;
}
.text-frame-2 ul{
    margin-left: 5%;
}

.font-18 {
	font-size: 18px;
}
.text-frame-2 a {
	text-decoration: none;
	font-weight: bold;
	color: black;
	text-shadow: 0px 1px 3px rgba(255,255,255,0.6)
}
.text-center{
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}
p.p1 {
    color: black;
    font-size: 14px;      
    font-family: Poppins SemiBold;
}
p.p2 {
    color:  #508d97;
    font-size: 18px;      
    font-family: Poppins SemiBold;
}
.sombra {
  box-shadow: 3px 3px 5px 3px #999;
}
.map-container{
    height: fit-content;
    max-width: 80%;
}
.map{
    border: 0;
    width: 70%;
    height: 400px;
}
  