*{
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
}
body{
    width: 100%;
    height: 100vh;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    display: grid;
    background-attachment: fixed;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    align-items: center;

}
.wrapper{
    width: 90%;
    margin: auto;
    max-width: 1000px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap:100px;
    align-items: center;
}
.logo{
    width: 90%;
    height: 150px;
    margin: auto;
    margin-bottom: 30px;
}
.logo img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    border:none;
}
.datos h1{
    text-align: center;
    font-size: 20px;
    margin: 30px auto;
    font-weight: normal;
    color: #fff;
    text-shadow: 1px 1px #bdbdbd;
}
.datos p{
    font-size: 14px;
    color: #fff;
    width: 80%;
    margin: auto;
    text-align: center;
}
.datos p{
    text-align: left;
}
.datos p i{
    margin-right: 20px;
    color:#FFFF33;
}
.contactodatos{
    margin-top: 30px;
}
.contactodatos p{
    font-size: 14px;
    color: #fff;
    line-height: 24px;
    text-align: center;
}
.contactodatos p i{
    font-size: 12px;
    margin-right: 7px;
}
.ladoder form{
    width: 75%;
    padding: 40px 12.5%;
    background: #fff;
    border-radius: 5%;
}
form h2{
    font-size: 20px;
    margin-bottom: 20px;
}
form p{
    font-size: 14px;
}
form input, form textarea{
    margin: 7.5px 0px;
    width: 90%;
    padding: 5px 5%;
    border:none;
    border: 1px solid rgba(0,0,0,0.35);
    line-height: 20px;
    outline: 0px;
}
input:focus,textarea:focus{
    border: 2px solid rgba(18, 202, 233,0.5);
}
form textarea{
    height: 70px;
}
.centralo{
    width: 100%;
    display: flex;
}
.g-recaptcha,#enviarform{
    display: block;
}
#enviarform{
    color:#fff;
    border-radius: none;
    border: none;
    margin: auto;
    width: 70%;
    margin-top: 7.5px;
    cursor: pointer;
}
.g-recaptcha{
    margin: 7.5px auto;
}
.redes{
    position: relative;
    top: 100%;
    left: 0;
    margin-top: -75px;
    margin-left: 30px;
    height: 50px;
    width: 50px;
    background: #25D366;
    display: flex;
    border-radius: 50%;
}
.redes a{
    display: block;
    margin: auto;
    text-decoration: none;
    color:#fff;
}
.redes a i{
    font-size: 32px;
    color:#fff;
}
.heartbeat {
	-webkit-animation: heartbeat 1.5s ease-in-out infinite both;
	        animation: heartbeat 1.5s ease-in-out infinite both;
}
@-webkit-keyframes heartbeat {
  from {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-transform-origin: center center;
            transform-origin: center center;
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
  10% {
    -webkit-transform: scale(0.91);
            transform: scale(0.91);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  17% {
    -webkit-transform: scale(0.98);
            transform: scale(0.98);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
  33% {
    -webkit-transform: scale(0.87);
            transform: scale(0.87);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  45% {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
}
@keyframes heartbeat {
  from {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-transform-origin: center center;
            transform-origin: center center;
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
  10% {
    -webkit-transform: scale(0.91);
            transform: scale(0.91);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  17% {
    -webkit-transform: scale(0.98);
            transform: scale(0.98);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
  33% {
    -webkit-transform: scale(0.87);
            transform: scale(0.87);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  45% {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
}
#errores{
    text-align: center;
    color:red;
    font-weight: bold;
}
@media (max-width:1000px) {
    .logo{
        width: 70%;
        height: 150px;
        margin: auto;
    }
    .logo img{
        width: 100%;
        height: 90%;
        margin: auto;
        object-fit: contain;
        object-position: center;
        border:none;
    }
    .wrapper{
        grid-template-columns:1fr;
        grid-gap: 0px;
    }
    .fantasma{
        display: none;
    }
    form{
        width: 75%;
        padding: 20px 12.5%;
        background: #fff;
        border-radius: 5%;
    }
    form h2{
        font-size: 16px;
        margin-bottom: 20px;
    }
    form p{
        font-size: 12px;
    }
    form input, form textarea{
        margin: 5px 0px;
        width: 90%;
        padding: 5px 5%;
        border:none;
        border: 1px solid rgba(0,0,0,0.35);
        line-height: 16px;
        outline: 0px;
    }
    form textarea{
        height:40px;
    }
    .redes{
        margin-top: -100px;
    }
}

@media (max-width:540px) {

    .g-recaptcha{
        margin: 0px;
        transform: scale(.9);
        margin-left: -5%;
    }
}
@media (max-width:1000px) and (orientation:landscape) {
    .redes{
        display: none;
    }
    .wrapper{
        padding: 30px 0px;
    }
    .ladoder form{
        width: 50%;
        margin: auto;
    }
}
