main#servicios article {
    width: 100%;
    height: 49rem;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
}

main#servicios article .bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: none transparent no-repeat scroll bottom center;
    background-size: cover;
}

main#servicios article .container {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
}

main#servicios article.par .container {
    justify-content: flex-end;
}

main#servicios article.par .bg {
    filter: grayscale(100%) invert(1) sepia(0.5) hue-rotate(45deg) invert(1) saturate(2.5);
}

main#servicios article.par .bg:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: none var(--purple) no-repeat scroll bottom center;
    background-size: cover;
    opacity: 0.25;
}

main#servicios article .info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 50%;
    background: var(--white);
    padding: 5rem 3.5rem;
    min-height: 33rem;
}

main#servicios article .info h2 {
    color: var(--primary);
    font-size: 2.8rem;
}

main#servicios article .info a {
    width: 50%;
}

main article.landing {
    width: 100%;
    height: 31rem;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
}

main article.landing .bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: none transparent no-repeat scroll center center;
    background-size: cover;
}

main article.landing .bg:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: none transparent no-repeat scroll bottom center;
    background-size: cover;
    opacity: 0.25;
}

main article.landing .container {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
}

main article.landing .info {
    display: flex;
    flex-direction: column;
    width: 50%;
    color: var(--white);
    text-shadow: 0 0 0.5rem var(--black);
}

main article.landing.gray .bg {
    filter: grayscale(100%) invert(1) sepia(0) hue-rotate(45deg) invert(1) saturate(2.5);
}
main article.landing.color .bg {
    filter: grayscale(100%) invert(1) sepia(0.5) hue-rotate(45deg) invert(1) saturate(2.5);
}

main article.landing.color .bg:after {
    background: none var(--purple) no-repeat scroll bottom center;
    opacity: 0.25;
}
main article.landing.gray .bg:after {
    background: none var(--gray) no-repeat scroll bottom center;
    opacity: 0.5;
}

main label {
    display: flex;
    flex-direction: column;
}

main label input,
main label textarea
{
    font-family: "Overpass", sans-serif;
    height: 2.5rem;
    border: 1px solid var(--text);
    color: var(--text);
    text-indent: 1rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    transition-duration: 0.3s;
    font-size: 0.9rem;
}

main label textarea {
    min-height: 9rem;
    padding: 1rem;
    text-indent: 0;
}

main label input:focus,
main label textarea:focus
{
    border: 1px solid var(--secondary);
}

body.hablemos2 #main main {
    max-width: 1440px;
    min-height: 3824px;
    background: none var(--bg) no-repeat scroll top left;
    background-size: contain;
    padding: 5rem 0 0 0;
    margin-top: -5rem;
}

#mobile-menu .menu {
    min-height: 5rem;
    width: 100vw;
    position: fixed;
    left: 0;
    top: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    background-color: var(--secondary);
    box-shadow: 0 1rem 1rem rgba(0,0,0,0.2);
    z-index: 1;
    max-height: 0;
    overflow: hidden;
    transition-duration: 0.3s;
    visibility: hidden;
}

#mobile-menu .menu.active {
    min-height: 5rem;
    max-height: 100vh;
    height: 100vh;
    visibility: visible;
}

#mobile-menu .menu a.logo {
    margin: 0 2rem;
    height: 5rem;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: absolute;
}
#mobile-menu .menu a.logo > img {
    height: 2.25rem;
}
#mobile-menu .menu .menus {
    display: flex;
    flex-direction: column;
    top: calc(50vh - 5rem);
    transform: translateY(-50%);
    height: 100%;
    justify-content: center;
    align-items: center;
    position: absolute;
    width: 100%;
}
#mobile-menu .menu .menus > .menu-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 2rem;
    min-height: 5rem;
    width: 100%;
}

#mobile-menu .menu .menus > .menu-item > .submenu {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 2rem;
    min-height: 5rem;
    width: 100%;
    padding: 0 0 0 2rem;
}

#mobile-menu .menu .menus a {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    font-size: 2rem;
    min-height: 5rem;
    padding: 0 0 0 4rem;
    color: var(--white);
    transition-duration: 0.3s;
    font-weight: bold;
}

#mobile-menu .menu .menus  a.active,
#mobile-menu .menu .menus  a:hover
{
    color: var(--danger);
}

p {
    margin: 0
}

#hablemos .wpcf7
{
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: center;
    justify-content: center;
}
#hablemos .wpcf7 form
{
    flex-direction: row;
    width: 100%;
    align-items: flex-start;
    justify-content: flex-start;
    flex-wrap: wrap;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}
#hablemos .wpcf7 form p {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin: 0;
    margin-bottom: 1.75rem !important;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
}
#hablemos .wpcf7 form p:nth-child(2),
#hablemos .wpcf7 form p:nth-child(3)
{
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
}
#hablemos .wpcf7 form p label,
#hablemos .wpcf7 form p label span
{
    width: 100%;
    display: flex;
    flex-direction: column;
    font-weight: bold;
}
#hablemos .wpcf7 form p input {
    margin-top: 0.25rem !important;
}
#hablemos .wpcf7 form {
    margin-top: 1.75rem !important;
}
#hablemos .wpcf7 form input[type="submit"] {
    width: 50% !important;
    padding-bottom: 1rem !important;
    padding-top: 1rem !important;
}
#hablemos .wpcf7 form p:nth-last-child(2) {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    position: relative;
    margin-top: 1.75rem !important;
}

#hablemos .wpcf7 .wpcf7-response-output {
    border: none;
    margin: 1.5rem 0 0 0;
    padding: 0;
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: center;
    align-items: center;
    text-align: center;
}

#hablemos .wpcf7 .wpcf7-spinner {
    position: absolute;
    top: calc(50%);
    right: 0;
    transform: translateY(-50%);
}

#main article#awards hr,
#main article#awards hr:before {
    width: 100%;
    margin: 0.3rem 0;
}

.wpcf7-not-valid-tip {
    margin: 0.5rem 0 0 0;
}
.wpcf7-response-output {
    color: #dc3232;
}
