
@keyframes latidos {
    from { transform: none; }
    50% { transform: scale(0.7); }
    to { transform: nones; }
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

#myModal
{
    background-color: #00000042!important;    
}

#myModal > div > button
{
    color: white;
    font-size: 50px;   
}



.modal-content
{
    position: initial!important;
    padding: 10px;
	background-image: url(../img/imagen_modal.jpeg);
    /*width: 850px!important;*/
    height: 680px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    right:10px!important;
}

.modal-header
{
	    border-bottom: none!important;
}


.btn-primary
{
	background-color: #000000!important;
    border-color: #ffffff!important;
	    font-weight: bold!important;
}

.btn-primary:hover
{
		background-color:grey!important;
		text-decoration: none!important;
		color:white!important;
}

html{
    scroll-behavior: smooth;
}

body{
    font-family: 'Raleway', sans-serif;
	 overflow: hidden;
}



.hero{
	/*background-image: linear-gradient(120deg, rgb(59 58 58 / 70%) 0%, rgb(90 89 89 / 11%) 100%), url(../img/header.jpg);*/
	background-image: url(../img/header.jpg);
    width: 100%;
    height: 1250px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
}

.textos-hero{
    height: 500px;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.textos-hero h1{
    font-size: 60px;
}

.textos-hero p{
    font-size: 25px;
    margin-bottom: 20px;
}

.textos-hero a{
	background-color: #4CAF50;
    border: none;
    color: white;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 20px;
    margin: 4px 60px;
    font-family: 'Raleway', sans-serif;
    cursor: pointer;
    font-weight: bold;
}

.svg-hero{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
}

/* Estilos generales */

.contenedor,
.wave-contenedor{
    width: 90%;
    max-width: 1000px;
    overflow: hidden;
    margin: auto;
    padding: 0 0 80px 0;
}
.contenedor{
    padding: 80px 0;
}

.titulo{
    font-weight: 300;
    font-size: 35px;
    text-align: center;
    margin-bottom: 30px;
}

.titulo.left{
    text-align: left;
}

.titulo.right{
    text-align: right;
}

/* Section */

.website{
    display: flex;
    justify-content: space-between;
}

.website img{
    width: 48%;
}

.website .contenedor-textos-main{
    width: 40%;
}

.parrafo{
    text-align: justify;
    margin-bottom: 20px;
}

.cta{
    display: inline-block;
    text-decoration: none;
    background-image: linear-gradient(45deg, #ff9a9e 0%, #fad0c4 99%, #fad0c4 100%);
    padding: 12px 15px;
    border-radius: 8px;
    color: #fff;
}

/* Info */

.info{
    background: #f5576c;
    color: #fff;
}


/* Cards */

.content-cards{
    display: flex;
    width: 100%;
    justify-content: space-evenly;
    flex-wrap: wrap;
}

.card{
    width: 30%;
    text-align: center;
    height: 300px;
    box-shadow: 0 0 3px 0 rgba(0, 0, 0, .5);
    transform: scale(1);
    transition: transform 0.6s;
}

.card:hover{
    box-shadow: 0 0 6px 0 rgba(0, 0, 0, .5);
    transform: scale(1.03);
    cursor: pointer;
}

.card i{
    margin: 30px 0 20px 0;
    color: #cc9199;
    font-size: 50px;
}

.card p{
    font-weight: 300;
    font-size: 25px;
    margin-bottom: 10px;
}

/* galeria */

.galeria{
    background: #f2f2f2;
}

.galeria-cont{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    overflow: hidden;
}

.galeria-cont>img{
    width: 30%;
    object-fit: cover;
    margin-bottom: 20px;
    display: block;
    box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, .5);
    cursor: pointer;
    overflow: hidden;
}

/* info2 */

.last-section{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-bottom: 40px;
}

.last-section img{
    width: 48%;
}

.last-section .contenedor-textos-main{
    width: 40%;
}


/* footer */

footer{
    background: #f5576c;
    color: #fff;
}

.form{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.input{
    background: transparent;
    border: 0;
    color: #fff;
    outline: none;
    border: 1px  solid #fff;
    padding: 20px 10px;
}

.input::placeholder{
    color: #fff;
    font-family: 'raleway', 'sans-serif';
}

input[type="text"], 
input[type="email"]{
    display: inline-block;
    width: 49%;
    margin-bottom: 30px;
}

.form textarea{
    width: 100%;
    margin-bottom: 15px;
}

input[type="submit"]{
    width: 120px;
    text-align: center;
    padding: 14px 0;
}

input[type="submit"]:hover{
    cursor: pointer;
    color: tomato;
    background: #fff;
}

@media screen and (max-width:800px){
    .textos-hero h1{
        text-align: center;
        font-size: 50px;
    }
    /* estilos generales */
    .titulo{
        font-size: 35px;
    }

    .titulo.left{
        text-align: center;
    }

    .info p{
        text-align: center;
    }

    /* section */
    .website{
        flex-direction: column-reverse;
        justify-content: center;
        align-items: center;
    }

    .website img{
        width: 100%;
    }

    .website .contenedor-textos-main{
        width: 100%;
    }

    /* Cards */

    .card{
        width: 90%;
        margin-bottom: 20px;
    }

    /* galeria */

    .galeria-cont>img{
        width: 48%;
    }

    /* last */

    .last-section img{
        width: 98%;
    }

    .last-section .contenedor-textos-main{
        width: 98%;
        margin-bottom: 20px;
    }


}

@media screen and (max-width:400px){
    .titulo,
    .textos-hero h1{
        font-size: 30px;
    }

    .textos-hero p{
        font-size: 20px;
        text-align: center;
    }

    .card{
        height: 380px;
    }

    .website .contenedor-textos-main{
        margin-bottom: 30px;
    }

    .galeria-cont>img{
        width: 97%;
    }
}


.button {
	background-color: #4CAF50;
    border: none;
    color: white;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 20px;
    margin: 4px 60px;
    font-family: 'Raleway', sans-serif;
    cursor: pointer;
    font-weight: bold;
}

.button2 {background-color: #008CBA;} /* Blue */
.button3 {background-color: #f44336;} /* Red */ 
.button4 {background-color: #e7e7e7; color: black;} /* Gray */ 
.button5 {background-color: #555555;} /* Black */

.flex-container {
  display: flex;
  margin-top:30px;

}

.flex-container > div {
  margin: 50px;
  padding: 50px!important;
  font-size: 30px;
  margin-top:-50px;
}

ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
      background-color: #3336;
}

li {
  float: left;
}

li a {
  display: block;
  color: white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

li a:hover:not(.active) {
  background-color: #111;
}

.active {
  background-color: black;
    border: none;
    color: white;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 14px;
    margin: 4px 60px;
    font-family: 'Raleway', sans-serif;
    cursor: pointer;
    font-weight: bold;
	border-radius:10px;
}

#martinez{
		background-color:black;
		color:white;
		border-radius:10px;
}

#belgrano{
		background-color:white;
		color:black;
		border-radius:10px;
}

#belgrano:hover{
		background-color:grey;
		text-decoration: none;
		color:white;
}

#martinez:hover{
		background-color:grey;
		text-decoration: none;
		color:white;
}

	#logo {
		animation: latidos 2s infinite;
		margin-top:60px!important;
	}
	
@media only screen and (max-width: 768px) {
    

.modal-content
{
    padding: 10px;
    background-image: url(../img/imagen_modal_celu.jpeg);
    /*width: 390px!important;*/
    height: 600px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    /*margin-left: 5px!important;*/
    margin-top: 80px!important;
    position: fixed;    
} 
	
	#logo {
		width: 300px;
		height: 200px;
		animation: latidos 2s infinite;
		margin-top:200px!important;
	 }
	 
.textos-hero a{
		margin: 4px 5px;
		font-size: 16px;
	}
	
	.active {
		background-color: black;
		border: none;
		color: white;
		padding: 15px 32px;
		text-align: center;
		text-decoration: none;
		display: inline-block;
		font-size: 10px;
		margin: 4px 60px;
		font-family: 'Raleway', sans-serif;
		cursor: pointer;
		font-weight: bold;
		margin-right: 140px!important;
		border-radius:10px;
		
	}

	.textos-hero h1	{
		text-align: center;
		font-size: 30px;
		margin-bottom: 40px;
		
	}
	
	.h2, h2 {
		font-size: 1.3rem!important;
	}	
}


@media only screen and (max-width: 590px) {
    
/*.modal-content
{
    padding: 10px;
    background-image: url(../img/imagen_modal_celu.jpeg);
    height: 700px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    margin-top: 50px!important;
    position: fixed;
}*/

#myModal > div > button {
    color: white;
    font-size: 50px;
    MARGIN-TOP: -60px!important;
}
    
}    