
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    font-family: 'Quicksand', sans-serif;
}
html{
    scroll-behavior: smooth;
}

.resolucion {
    width: 99%;
}

/**Escritorio**/
@media (min-width: 1024px) {
    .tablet {
        display: none;
    }
    .movil {
        display: none;
    }

header {
    width: 100%;
    height: 90px;
    background-color: #feebd0;
}
.interior {
    max-width: 100%;
    padding: 0 10px;
    margin: auto;
}
.logo {
    float: left;
    padding: 0px 20px ;
}
.logo img {
    height: 90px;
}
.logo img:hover {
    transform: scale(1.1);
}
.navegacion {
    float: right;
    display: flex;
    align-items: center;
    min-height: 90px;
    z-index: 1000;
}
.navegacion ul {
    list-style: none;
    padding: 10px;
}
.navegacion ul li {
    display: inline-block;
    position: relative;
    transition: .3s linear;
    z-index: 1000;
}
.navegacion ul li:hover {
    transform: scale(1.1);
}
.navegacion ul li a {
    color: #000000;
    text-align: center;
    text-transform: uppercase;
    font-size: 25px;
    font-weight: bold;
    padding: 12px 20px;
    transition: .3s linear;
}
.navegacion ul li a:hover {
    color: #ffffff;
}

.under{
    width: 100%;
    display: flex;
    height: 72vh;
    align-items: end;
    box-sizing: border-box;
    background: url(../img/Portada\ de\ contacto.webp) no-repeat center; 
    background-size: 100% 100%;
    justify-content: center;
    padding-left: 5%;
    padding-right: 5%;
    background-size: cover;
}
.fondi{
    flex-basis: 30%;
    height: 250px;
    text-align: center;
    padding: 10px;
    margin: 40px;  
    font-size: 20px;
    justify-content: end;
    transition: box-shadow 0.3s ease;
}
.fondi:hover {
    
}
.dir{
    color: #ffffff;
    font-size: 30px;
    margin: 0;
    font-weight: bold;
    padding: 1px 0;
}
.fonts{
    height: 100px;
    padding: 17px 0;
    color: #000;
}
.fondi svg{
    color: #ffffff;
    transition: transform 0.3s ease;
}
.fondi:hover svg {
    transform: scale(1.1);
    color: #ffd080;
}
.ground{
    flex-basis: 30%;
    height: 100px;
    text-align: center;
    padding: 10px;
    background-color: #ffffff;   
    margin: 40px;  
    font-size: 20px;
    justify-content: end;
}
.gr-1{
    background-color: #ffd080;
}
.gr-2{
    background-color: #d1bcdd;
}
.gr-3{
    background-color: #ffd3de;
}
.ground p{
    font-size: 25px;
}
.titulo{
    font-size: 50px;
    margin-bottom: 20px;
}
.nombre-form{
    width: 100%;
    height: 100px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    font-size: 30px;
    padding-left: 15%;
    padding-right: 15%;
    background-color: #000;
    background-size: 100% 100%;
    animation: gradientBG 4s ease infinite;
}

.nombre-form h2{
    display: flex;
    width: 50%;
    font-size: 45px;
    justify-content: center;
    align-items: center;
    color: #ffffff;
}
.nombre-form h3{
    display: flex;
    width: 40%;
    font-size: 30px;
    justify-content: center;
    align-items: center;
    color: #ffffff;
}
.formu{
    width: 100%;
    height: 70vh;
    padding-left: 20%;
    padding-right: 20%;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
}
.lado-1{
    width: 49%;
    height: 100%;
    padding: 20px;
}
.lado-1 h2{
    text-align: center;
}
.lado-1 h3{
    text-align: center;
}
  .forms {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: 80%;
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    -webkit-box-shadow: 0 30px 30px -30px rgba(27, 26, 26, 0.315);
            box-shadow: 0 30px 30px -30px rgba(27, 26, 26, 0.315);
  }
  
  .forms .title {
    color: #000000;
    font-size: 30px;
    font-weight: 600;
    letter-spacing: -1px;
    line-height: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  
  .forms input {
    outline: 0;
    border: 1px solid rgb(219, 213, 213);
    padding: 2px 14px;
    border-radius: 8px;
    width: 100%;
    height: 50px;
  }
  
  .forms textarea {
    border-radius: 8px;
    height: 100px;
    width: 100%;
    resize: none;
    outline: 0;
    padding: 8px 14px;
    border: 1px solid rgb(219, 213, 213);
  }
  
  .forms button {
    /* -ms-flex-item-align: end; */
        /* align-self: flex-end; */
        width: 30%;
    padding: 8px;
    outline: 0;
    border: 0;
    border-radius: 100px;
    font-size: 16px;
    font-weight: 500;
    background-color: #efadc1;
    color: #fff;
    cursor: pointer;
    text-align: center;
  }
.redes{
    height: 20px;

}
.redes a{
    text-decoration: none;
    color: #000000;
}
.mapas-encabezado{
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    font-size: 30px;
    color: #ffd080;
}
.mapa{
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    width: 100%;
    height: 60vh;
    margin-bottom: 50px;
    margin-left: 10px;
}

footer {
    width: 100%;
    height: 250px;
    display: flex;
    justify-content: space-evenly;
    padding: 5px 0;
}
.section {
    width: 20%;
    box-sizing: border-box;
}
.section img{
    max-width: 100%;
    margin-bottom: 1px;
}
.section svg{
    margin: 0 30px;
    cursor: pointer;
}
.section h2{
    font-size: 20px;
    margin: 0 0 20px 0;
}
.section li{
    font-size: 15px;
    list-style: none;
    color: #000000;
    margin: 10px 0;
    text-decoration: none;
}
.section a{
    text-decoration: none;
    color: #000000;
}


/*Footer de bolas GC*/   
.pie{    
    background-color: #de7f3700;
    padding: 10px 0 0 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.footeer{
    margin: 20px;
    box-shadow: 0px 0px 20px 10px rgb(255, 255, 255);
    border-radius: 500px;    
    transition: transform 15s ease;
}
.foote1{
    margin: 20px;
    box-shadow: 0px 0px 20px 5px #fa965894;
    border-radius: 50px;
}
.foote2{
    margin: 20px;
    box-shadow: 0px 0px 20px 5px rgb(83, 83, 83);
    border-radius: 100px;
}
.foote3{
    margin: 20px;
    box-shadow: 0px 0px 20px 5px rgba(0, 64, 255, 0.607);
    border-radius: 100px;
}
.foote4{
    margin: 20px;
    box-shadow: 0px 0px 20px 5px rgba(255, 0, 0, 0.436);
    border-radius: 100px;
}
.foote5{
    margin: 20px;
    box-shadow: 0px 0px 20px 10px rgb(190, 108, 0);
    border-radius: 100px;
}.foote6{
    margin: 20px;
    box-shadow: 0px 0px 20px 5px rgba(251, 0, 255, 0.436);
    border-radius: 100px;
}
.foote7{
    margin: 20px;
    box-shadow: 0px 0px 20px 5px rgba(0, 255, 30, 0.372);
    border-radius: 100px;
}
.foote8{
    margin: 20px;
    box-shadow: 0px 0px 20px 5px rgba(9, 230, 255, 0.664);
    border-radius: 100px;
}
.grupo-2{
    /* background-color: #de7f377d; */
    padding: 0 10px 10px 10px;
    text-align: center;
    color: rgb(0, 0, 0);
    height: 100%;
    width: 100%;
}
.grupo-3 small{
    font-size: 20px;
    font-family: Arial, Helvetica, sans-serif;
}
.grupo-3{
    width: 100%;
    background-color: #de7f377d;
    padding: 15px 10px;
    text-align: center;
    color: rgb(0, 0, 0);
}

}


/* Inicio de Resolucion en Telefono */
@media (max-width: 767px) {
.desktop {
        display: none;
    }

    .tablet {
        display: none;
    }

    .navbar.desktop-list {
        display: none;
    }

    .mobile-list {
        display: block;
        color: whitesmoke;
        position: fixed;
        /* position:sticky; */
        bottom: 0;
        left: 0;
        display: flex;
        justify-content: space-evenly;
        align-items: center;
        width: 100%;
        height: 100px;
        background-color: #ffdbbd;
        z-index: 10;
    }

    .navbar {
        padding: 10px 20px;
        display: flex;
        width: 100%;
        justify-content: center;
        align-items: center;
        background-color: #ffff;
        z-index: 10;
        position: static;
    }

    .ctn {
        padding: 8px 20px;
        background-color: aquamarine;
    }

    .navbar ul li {
        display: inline-block;
        margin: 0 30px;
        color: #000;
    }

    a {
        text-decoration: none;
        font-size: 20px;
        color: #000;

    }

    .logo {
        width: 150px;
        color: aqua;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .under{
        width: 100%;
        display: flex;
        height: 32vh;
        align-items: end;
        box-sizing: border-box;
        background: url(../img/Portada\ de\ contacto.webp) no-repeat center; 
        background-size: 100% 100%;
        justify-content: center;
        padding-left: 5%;
        padding-right: 5%;
    }
    .fondi{
        flex-basis: 30%;
        height: 250px;
        text-align: center;
        padding: 10px;
        margin: 40px;  
        font-size: 20px;
        justify-content: end;
    }
    .dir{
        color: #ffffff;
        font-size: 30px;
        margin: 0;
        font-weight: bold;
        padding: 1px 0;
    }
    .fonts{
        height: 100px;
        padding: 15px 0;
    }
    .fondi svg{
        color: #000000;
    }
    .ground{
        flex-basis: 30%;
        height: 100px;
        text-align: center;
        padding: 10px;
        background-color: #ffffff;   
        margin: 40px;  
        font-size: 20px;
        justify-content: end;
    }
    .gr-1{
        background-color: #ffd080;
    }
    .gr-2{
        background-color: #d1bcdd;
    }
    .gr-3{
        background-color: #ffd3de;
    }
    .ground p{
        font-size: 25px;
    }
    .titulo{
        font-size: 50px;
        margin-bottom: 20px;
    }
    .nombre-form{
        width: 100%;
        height: 100px;
        display: flex;
        flex-direction: column;
        justify-content: space-evenly;
        align-items: center;
        font-size: 30px;
        padding-left: 15%;
        padding-right: 15%;
    }
    
    .nombre-form h2{
        display: flex;
        width: 100%;
        font-size: 25px;
        justify-content: center;
        align-items: center;
    }
    .nombre-form h3{
        display: flex;
        width: 100%;
        font-size: 20px;
        justify-content: center;
        align-items: center;
    }
    .formu{
        width: 100%;
        height: 70vh;
        padding-left: 20%;
        padding-right: 20%;
        display: flex;
        flex-direction: row;
        justify-content: space-evenly;
        align-items: center;
    }
    .lado-1{
        width: 49%;
        height: 100%;
        padding: 20px;
    }
    .lado-1 h2{
        text-align: center;
    }
    .lado-1 h3{
        text-align: center;
    }
      .forms {
        position: relative;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: start;
            -ms-flex-align: start;
                align-items: flex-start;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 10px;
        width: 80%;
        background-color: white;
        padding: 20px;
        border-radius: 10px;
        -webkit-box-shadow: 0 30px 30px -30px rgba(27, 26, 26, 0.315);
                box-shadow: 0 30px 30px -30px rgba(27, 26, 26, 0.315);
      }
      
      .forms .title {
        color: #000000;
        font-size: 30px;
        font-weight: 600;
        letter-spacing: -1px;
        line-height: 30px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
      }
      
      .forms input {
        outline: 0;
        border: 1px solid rgb(219, 213, 213);
        padding: 2px 14px;
        border-radius: 8px;
        width: 100%;
        height: 50px;
      }
      
      .forms textarea {
        border-radius: 8px;
        height: 100px;
        width: 100%;
        resize: none;
        outline: 0;
        padding: 8px 14px;
        border: 1px solid rgb(219, 213, 213);
      }
      
      .forms button {
        /* -ms-flex-item-align: end; */
            /* align-self: flex-end; */
            width: 30%;
        padding: 8px;
        outline: 0;
        border: 0;
        border-radius: 100px;
        font-size: 16px;
        font-weight: 500;
        background-color: #efadc1;
        color: #fff;
        cursor: pointer;
        text-align: center;
      }
    .redes{
        height: 20px;
    
    }
    .redes a{
        text-decoration: none;
        color: #000000;
    }
    .mapas-encabezado{
        display: flex;
        flex-direction: row;
        justify-content: space-evenly;
        font-size: 30px;
        color: #ffd080;
    }
    .mapa{
        display: flex;
        flex-direction: column;
        justify-content: space-evenly;
        width: 100%;
        height: 60vh;
        margin-bottom: 50px;
        /* margin-left: 10px; */
        padding: 30px;
    }
    
footer {
    width: 100%;
    height: 1200px;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    padding: 5px 0;
}
.section {
    width: 100%;
    box-sizing: border-box;
    text-align: center;
}
.section img{
    width: 100%;
    margin-bottom: 1px;
}
.section svg{
    margin: 0 60px;
    cursor: pointer;
}
.section h2{
    font-size: 20px;
    margin: 0 0 20px 0;
    width: 40%;
}
.section li{
    font-size: 15px;
    list-style: none;
    color: #000000;
    margin: 10px 0;
    text-decoration: none;
}
.section a{
    text-decoration: none;
    color: #000000;
}


/*Footer de bolas GC*/   
.pie{    
    background-color: #de7f3700;
    padding: 10px 0 0 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.footeer{
    margin: 20px;
    box-shadow: 0px 0px 20px 10px rgb(255, 255, 255);
    border-radius: 500px;    
    transition: transform 15s ease;
}
.foote1{
    margin: 20px;
    box-shadow: 0px 0px 20px 5px #fa965894;
    border-radius: 50px;
}
.foote2{
    margin: 20px;
    box-shadow: 0px 0px 20px 5px rgb(83, 83, 83);
    border-radius: 100px;
}
.foote3{
    margin: 20px;
    box-shadow: 0px 0px 20px 5px rgba(0, 64, 255, 0.607);
    border-radius: 100px;
}
.foote4{
    margin: 20px;
    box-shadow: 0px 0px 20px 5px rgba(255, 0, 0, 0.436);
    border-radius: 100px;
}
.foote5{
    margin: 20px;
    box-shadow: 0px 0px 20px 10px rgb(190, 108, 0);
    border-radius: 100px;
}.foote6{
    margin: 20px;
    box-shadow: 0px 0px 20px 5px rgba(251, 0, 255, 0.436);
    border-radius: 100px;
}
.foote7{
    margin: 20px;
    box-shadow: 0px 0px 20px 5px rgba(0, 255, 30, 0.372);
    border-radius: 100px;
}
.foote8{
    margin: 20px;
    box-shadow: 0px 0px 20px 5px rgba(9, 230, 255, 0.664);
    border-radius: 100px;
}
.grupo-2{
    /* background-color: #de7f377d; */
    padding: 0 10px 10px 10px;
    text-align: center;
    color: rgb(0, 0, 0);
    height: 100%;
    width: 100%;
}
.grupo-3 small{
    font-size: 20px;
    font-family: Arial, Helvetica, sans-serif;
}
.grupo-3{
    width: 100%;
    background-color: #de7f377d;
    padding: 15px 10px;
    text-align: center;
    color: rgb(0, 0, 0);
}
}