:root {
    --blanco: #FAFAFA;
    --rojo: #EB455F;
    --azul-claro: #BAD7E9;
    --azul: #2B3467;
    --gris: #2E3840;
}

*,
*::after,
*::before {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 62.5%;
    scroll-behavior: smooth;
}

p, h1, h2, h3, h4, h5, h6 {
    margin: 0;
}

a {
    color: black;
    text-decoration: none;
}

body {
    font-size: 1.6rem;
    font-family: 'Roboto', sans-serif;
    background-color: var(--blanco);
    position: relative;
    z-index: 0;
}

.container {
    margin: 0 auto;
    max-width: 1140px;
    min-width: 320px;
}

.show {
    display: flex !important;
}

.hide {
    display: none !important;
}

/* ##### Hero ##### */

header {
    height: 100vh;
    width: 100%;
    display: flex;
}

.topbar {
    padding: 1.5rem 3.5rem;
    position: absolute;
    z-index: 2;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.topbar i {
    display: none;
    font-size: 2.0rem;
}

.topbar__logo img {
    height: 50px;
}

.topbar__logo img:last-of-type {
    display: none;
}

.topbar__menu--item{
    margin-left: 1.5rem;
}

.topbar__menu--button {
    margin-left: 1.5rem;
    background-color: var(--azul);
    padding: 1.0rem 1.5rem;
    border-radius: 1.0rem;
    color: white;
    cursor: pointer;
    transition: .2s ease;
}

.topbar__menu--button:hover {
    background-color: #222952;
    transition: .3s ease;
}

@media screen and (max-width: 1023px) {
    .topbar {
        flex-direction: row-reverse;
        background-color: var(--blanco);
    }

    .topbar__logo img {
        display: none;
    }

    .topbar__logo img:last-of-type {
        display: flex;
    }

    .topbar i {
        display: flex;
    }

    .topbar i:last-of-type {
        display: none;
        position: relative;
        z-index: 10;
    }

    .topbar__menu {
        display: none;
        position: absolute;
        z-index: 10;
        /* From https://css.glass */
        background: rgba(255, 255, 255, 0.2);
        border-radius: 16px;
        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
        backdrop-filter: blur(5px);
        -webkit-backdrop-filter: blur(5px);
        border: 1px solid rgba(255, 255, 255, 0.3);
        padding: 1.0rem;
        align-items: center;
        
        margin: 0 auto;
        margin-bottom: -15.0rem;
    }

    .topbar__menu--item {
        margin-right: .5rem;
    }
}

.hero__img {
    overflow: hidden;
    height: 100vh;
    width: 50vw;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero__img img {
    height: 100%;
    object-fit: cover;
}

.hero__info {
    margin-top: 4.0rem;
    width: 50vh;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 40vw;
    overflow: hidden;
}

.hero__info--textos {
    width: 100%;
    text-align: justify;
  text-justify: inter-word;
}

.hero__info--textos > img {
    height: 7.0rem;
}

.texto1 {
    color: var(--azul);
    font-weight: 400;
    margin-bottom: .5rem;
    font-size: 2.0rem;
}

.texto2 {
    font-weight: 700;
    color: var(--rojo);
    font-size: 7.0rem;
    margin-bottom: .5rem;
}

.texto3 {
    font-weight: 300;
    margin-bottom: 1.5rem;
    font-size: 1.9rem;
}

.texto3 span {
    font-weight: 500;
}

.hero__button {
    cursor: pointer;
    padding: 1.0rem 1.5rem;
    background-color: var(--rojo);
    border: none;
    color: white;
    font-size: 1.9rem;
    border-radius: 1.0rem;
    transition: .3s ease;
}

.hero__button:hover {
    background-color: #d61a37;
    transition: .2s ease;
}

@media screen and (max-width: 1023px) {
    .hero__img {
        display: none;
    }

    .hero__info {
        width: 100%;
        height: auto;
        background-image: url('../img/hero_img.jpg');
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        color: white;
    }

    .texto3 {
        background: rgb(0,0,0);
        background: linear-gradient(90deg, rgba(0,0,0,1) 0%, rgba(255,255,255,0) 100%); 
        border-radius: 1.0rem;
        padding: .5rem;
    }

    .hero__button {
        margin-top: 1.0rem;
        display: block;
        text-align: center;
    }
}

/* ##### Descripción ##### */

.descripcion {
    padding: 80px 0;
    background-color: #F1F2F2;
}

.descripcion p {
    text-align: center;
    font-size: 3.0rem;
    font-weight: 300;
    padding: 0 3.0rem;
}

@media screen and (max-width: 1023px) {
    .descripcion {
        width: 100vw;
        overflow: auto;
    }

    .descripcion p {
        text-align: center;
        font-size: 2.5rem;
    }
}

/* ##### Web Services ##### */

.servicios {
    padding: 5.0rem 5.0rem;
    overflow: hidden;
}

@media screen and (max-width: 1023px) {
    .servicios {
        padding: 5.0rem 1.0rem;
    }
}

.servicios__titulo {
    grid-area: setitulo;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 5.0rem;
    font-weight: 700;
    margin-bottom: 6.0rem;
}

.servicios__1 {
    position: relative;
    height: 100vh;
    display: grid;
    gap: 3.0rem;
    grid-template-columns: 50% 50%;
    grid-template-areas: "s1img s1info";
    margin-bottom: 3.0rem;
}

@media screen and (max-width: 1023px) {
    .servicios__1 {
        height: auto;
        grid-template-columns: 100%;
        grid-template-rows: 1fr;
        grid-template-areas: "s1info";
    }
}

.servicios__2 {
    position: relative;
    height: 100vh;
    display: grid;
    gap: 3.0rem;
    grid-template-columns: 50% 50%;
    grid-template-areas: "s1info s1img";
}

@media screen and (max-width: 1023px) {
    .servicios__2 {
        height: auto;
        grid-template-columns: 100%;
        grid-template-rows: 1fr;
        grid-template-areas: "s1info";
    }
}

.servicios__img {
    grid-area: s1img;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media screen and (max-width: 1023px) {
    .servicios__img {
        display: none;
    }
}

.servicios__img--container {
    width: 70%;
    height: 90%;
    border-radius: 1.5rem;
    background-image: url('/resources/images/imgNewLanding/service3.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.servicios__img--container2 {
    width: 70%;
    height: 90%;
    border-radius: 1.5rem;
    background-image: url('resources/images/imgNewLanding/service5.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.servicios__info {
    display: flex;
    align-items: center;
    padding-right: 5.0rem;
}

.servicios__info--container:last-of-type {
    padding-left: 5.0rem;
}

.servicio{
    display: flex;
    margin-bottom: 5.0rem;
}

.servicio:nth-child(3) {
    margin-bottom: 0;
}
.servicio:nth-child(6) {
    margin-bottom: 0;
}

.servicio > i {
    margin-right: 2.5rem;
    font-size: 2.5rem;
}

.servicio__info {
    text-align: justify;
  text-justify: inter-word;
}

.servicio__info--title {
    font-size: 2.4rem;
    margin-bottom: 1.0rem;
    color: var(--azul);
}

.servicio__info--info {
    font-size: 1.8rem;
    font-weight: 400;
}

/* ##### Contacto ##### */

.contacto {
    background-image: url('/resources/images/imgNewLanding/contact.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 3.0rem 10.0rem;
    display: grid;
    gap: 20.0rem;
    grid-template-columns: repeat(2, 1fr);
    grid-template-areas: "cformulario clinks";
}

@media screen and (max-width: 1023px) {
    .contacto {
        padding: 3.0rem;
        gap: 3.0rem;
        grid-template-columns: 100%;
        grid-template-rows: repeat(2, auto);
        grid-template-areas: "cformulario"
                             "clinks";
    }
}

form {
    grid-area: cformulario;
    padding: 3.0rem;
    background: rgba( 0, 0, 0, 0.8 );
    box-shadow: 0 8px 32px 0 rgba( 31, 38, 135, 0.37 );
    backdrop-filter: blur( 3px );
    -webkit-backdrop-filter: blur( 3px );
    border-radius: 10px;
}

form h3 {
    text-align: center;
    margin-bottom: 3.0rem;
    color: var(--blanco);
}

.form__section {
    display: flex;
    flex-direction: column;
    margin-bottom: 1.5rem;
}

.form__section label {
    margin-bottom: .5rem;
    color: var(--blanco);
}

.form__section input {
    border-radius: .5rem;
    border: none;
    padding: .5rem 1.0rem;
}

textarea {
    border-radius: 0.5rem;
    border: none;
    padding: .5rem;
    resize: vertical;
}


input[type=submit] {
    padding: 1.0rem;
    background-color: #609966;
    color: white;
    border-radius: 1.0rem;
    border: none;
    width: 100%;
    cursor: pointer;
}

input[type=submit]:hover {
    background-color: #40513B;
}


#botonSig {
  padding: 10px;
  background-color: #609966;
  color: white;
  border-radius: 10px;
  border: none;
  width: 100%;
  cursor: pointer;
}

.form__links {
    grid-area: clinks;
    padding: 0 5.0rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

}

@media screen and (max-width: 1023px) {
    .form__links {
        padding: 0;
    }
}

.form__links--container {
    padding: 3.0rem;
    background: rgba( 0, 0, 0, 0.8 );
    box-shadow: 0 8px 32px 0 rgba( 31, 38, 135, 0.37 );
    backdrop-filter: blur( 3px );
    -webkit-backdrop-filter: blur( 3px );
    border-radius: 10px;
}

.form__links h3 {
    text-align: center;
    margin-bottom: 3.0rem;
    color: var(--blanco);
}

.form__section--alt {
    display: flex;
    flex-direction: column;
    margin-bottom: 1.0rem;
}

.form__section--alt label {
    margin-bottom: .5rem;
    color: white;
}

.form__section--alt input {
    border-top-right-radius: .5rem;
    border-top-left-radius: .5rem;
    border: none;
    padding: .5rem 1.0rem;
}

.form__section--alt button, .form__section--alt a {
    cursor: pointer;
    border-bottom-left-radius: .5rem;
    border-bottom-right-radius: .5rem;
    border: none;
    padding: .3rem 0;
    background-color: #609966;
    color: var(--blanco);
    text-align: center;
}

.form__section--alt button:hover, .form__section--alt a:hover {
    background-color: #40513B;
}

input[type="text"]:disabled, input[type="email"]:disabled {
    background: white;
    color: black;
}  

/* ##### Blitz ##### */

.blitz {
    display: grid;
    grid-template-columns: 50% 50%;
    grid-template-areas: "btextos bimagen";
    height: 45.0rem;
}

@media screen and (max-width: 1023px) {
    .blitz {
        grid-template-columns: 100%;
    }
}

.blitz__textos {
    grid-area: btextos;
    display: grid;
    flex-direction: column;
    align-items: center;
    padding: 3.0rem;
    background-image: url('resources/images/imgNewLanding/cool-background.png');
    background-position: center;
    background-repeat: no-repeat;
    text-align: justify;
  text-justify: inter-word;
}

.blitz__textos--titulo {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--azul);
}

.blitz__textos--descripcion {
    font-size: 7.0rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--rojo);
}

.blitz__textos--descripcion2 {
    margin-bottom: 1.5rem;
    font-weight: 400;
    font-size: 1.9rem;
}

.blitz__textos--descripcion2 span {
    font-weight: 700;
}

.blitz__textos--button {
    cursor: pointer;
    padding: 1.5rem 2.0rem;
    border-radius: 1.0rem;
    border: none;
    background-color: var(--azul);
    color: white;
    transition: .3s ease;
}

.blitz__textos--button:hover {
    background-color: #204a87;
    transition: .2s ease;
}

.blitz__img {
    grid-area: bimagen;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.blitz__img > img {
    object-fit: cover;
    height: 100%;
}

@media screen and (max-width: 1023px) {
    .blitz__img {
        display: none;
    }
}

.form__registro > #botonSig:hover {
	color: red !important;
} 

.btnGreen:hover {
	background__color: red !important;
}

/* ##### Footer ##### */

/* ##### Footer ##### */

.footer {
    background-color: var(--gris);
    padding: 70px 0 0 0;
}

.footer__container {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 1fr 70px;
    grid-template-areas: "fdescripcion fmenu fsociales"
                         "copy         copy  copy";
}

@media screen and (max-width: 1023px) {
    .footer__container {
        gap: 20px;
        grid-template-columns: 100%;
        grid-template-rows: repeat(4, auto);
        grid-template-areas: "fdescripcion"
                             "fmenu"
                             "fsociales"
                             "copy";
    }
}

.footer__desc {
    grid-area: fdescripcion;
    display: flex;
    flex-direction: column;
}

.footer__desc img {
    height: 130px;
    width: 130px;
    margin-bottom: 10PX;
}

.footer__desc p {
    color: white;
    font-weight: 100;
}

.footer__menu {
    grid-area: fmenu;
    display: flex;
    flex-direction: column;
    color: white;
}

.footer__menu p {
    text-align: center;
    font-size: 25px;
    margin-bottom: 30px;
    font-weight: bold;
}

.footer__menu--menu {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.footer__menu--menu a {
    font-size: 20px;
    margin-bottom: 20px;
    color: white;
    transition: .5s ease;
}

.footer__menu--menu a:hover {
    color: var(--rojo);
    transition: .5s ease;
}

.footer__sociales {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer__sociales p {
    color: white;
    font-weight: bold;
    font-size: 25px;
    margin-bottom: 30px;
}

.sociales a {
    color: white;
    font-size: 25px;
    margin-right: 15px;
    transition: 1s ease;
}   

.sociales a:last-of-type {
    margin-right: 0;
}

.sociales a:nth-child(1):hover {
    color: #1877F2;
    transition: .5s ease;
}

.sociales a:nth-child(2):hover {
    color: #0A66C2;
    transition: .5s ease;
}

.footer__copy {
    grid-area: copy;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer__copy p {
    text-align: center;
    color: white;
}

@media screen and (max-width: 1023px) {
    .footer__desc {
        padding: 15px;
        align-items: center;
        text-align: center;
    }

    .footer__copy {
        padding: 20px 0;
    }
}

/* Callback */

.callback {
    background: rgba(255, 255, 255, 0.33);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(6.1px);
    -webkit-backdrop-filter: blur(6.1px);
    border: 1px solid rgba(255, 255, 255, 0.2);

    position: fixed;
    z-index: 9;
    width: auto;
    right: 0;
    bottom: 0;
    display: flex;
    margin-bottom: 2.0rem;
    margin-right: 2.0rem;
    padding: 1.0rem;
    font-size: 1.8rem;
}

.callback i {
    color: green;
    margin-right: 1.0rem;
}
