:root {
    --colorText: #0a0a0a87;
}

.sectionNew {
    /* padding-top: 200px; */
    padding-top: 90px;
}

.description-title {
    position: relative;
    text-align: center;
    padding-bottom: 65px;
}

.description-title > p {
    /* padding-top: 110px;
    font-size: 2rem; */
    padding-top: 40px;
    font-size: 1.5rem;
    line-height: 1.5;
}

.background-maps {
    /* background-image: url('../../images/mapa.png'); */
    background-image: url('../img/map/mapa.png');
    background-repeat: no-repeat;
    background-size: contain;
}

*, ::before, ::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.bodyForm {
    display: flex;
    justify-content: center;
    align-items: center;
}

.contactForm {
    /* background: #fff;  no descomentar*/
    /* width: 80%; */
    width: 55%;
    padding: 10px 0;
    box-shadow: 0 0 10px 0 rgba(85, 85, 85, 0.8);
}

.contactForm > h2 {
    text-align: center;
    margin: 10px 0;
    padding: 0 30px;
}

.contactForm .groupForm {
    position: relative;
    margin: 45px;
}

input, textarea {
    background: none;
    color: #696969;
    font-size: 18px;
    padding: 10px 10px 10px 5px;
    display: block;
    width: 100%;
    border: none;
    border-bottom: 1px solid var(--colorText);
    resize: none;
}

input:focus, textarea:focus {
    outline: none;
    color: rgb(93, 93, 93)
}

input:focus~label, textarea:focus~label {
    position: absolute;
    top: -14px;
    font-size: 16px;
    color: #2196f3;
}

label {
    color: var(--colorText);
    font-size: 16px;
    position: absolute;
    left: 5px;
    top: 10px;
    transition: 0.5s ease all;
    pointer-events: none;
}

input:focus~.barEffect::before, textarea:focus~.barEffect::before {
    width: 100%;
}

.barEffect {
    position: relative;
    display: block;
    width: 100%;
}

.barEffect::before {
    content: '';
    height: 2px;
    width:0;
    bottom: 0;
    position: absolute;
    background: linear-gradient(to right, #0064d7, #21b4f1);
    transition: 0.3s ease all;
    left: 0%;
}

button {
    background: #0064d7; 
    background: -webkit-linear-gradient(to right, #0064d7, #21b4f1);
    background: linear-gradient(to right, #0064d7, #21b4f1);
    display: block;
    width: 100px;
    height: 40px;
    border: none;
    color: #fff;
    border-radius: 4px;
    font-size: 16px;
    margin: 16px;
    margin: 10px auto;
    cursor: pointer;
}

.padd-b-22 {
    padding-bottom: 22px;
}

.padd-b-70 {
    padding-bottom: 70px;
}
