body{
    margin: 0px;
    padding: 0px;
}
.container {
    margin: auto;
    background-color: white;
    display: flex;
    flex-direction: column;
    width: 1200px;
    justify-content: center;
}

.header {
    background-image: url(./img/fondoHeader.png);
    background-repeat: no-repeat;
    height: 160px;
    width: 1200px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin: auto;
}

.logo h1{
    background-image: url(./img/logoCircular.svg);
    background-repeat: no-repeat;
    height: 100px;
    width: 100px;
    text-indent: -9999px;
    overflow: hidden;/* todo lo que salga de las dimensiones establecidas no se ve*/
    margin-left:  20px;
}

.nombre h2 {
    font-family: 'Sanchez', serif;
    font-size: 30px;
    color: #00577b;
    font-weight: 400;
    padding-left: 20px;
    padding-bottom: 0px;
    margin-bottom: 0px;
}

.nombre h3 {
    font-family: 'Rambla', serif;
    font-size: 26px;
    color: black;
    font-weight: 100;
    padding-left: 20px;
    padding-top: 0px;
    margin-top: 0px;
}

.main-slider {
    margin: auto;
    display: flex;
    position: relative;
    width: 1200px;
    overflow: hidden;
}
.texto-construccion {
    position: absolute;
    right: 50px;
    bottom: 300px;   
    text-align: right;
}

.texto-construccion p {
    font-family: 'Rambla';
    font-size: 30px;
    color:#00577b; 
}
.contact-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    font-family: 'Rambla';
    font-size: 20px;
}
.contact-container p {
    font-family: 'Rambla';
    font-size: 20px;
    margin-bottom: 0px;
    margin-top: 0px;
    
}
.contact-container i {
    font-size: 60px;
    color: white;
    position: absolute;
    top: 45px;
    left: 45px;
    
}
.contact-container fa-map-marked-alt {
    font-size: 60px;
    color: white;
    position: absolute;
    top: 45px;
    left: 40px;
    
}

.circulo {
    width: 150px;
    height: 150px;
    background-color: #00577b;
    border-radius: 50%;
    position: relative;
    margin-bottom: 20px;
}
.contact {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}
a {
    text-decoration: none;
    color: black;
}
a:hover {
    color: #00577b;
}