@import url('https://fonts.googleapis.com/css2?family=Sora:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Aclonica&display=swap');
/* VARIABLES */
:root{
    --color1: #0e0e0e;
    --color2: #FFBF00;
    --color3: #F1EDEE;
    --color4: #0BC8CA;
    --color5: #00FDFD;

}

body{
    font-family: 'Sora', sans-serif;
    margin: 0px;
    padding: 0;
}
/* Container general y secciones de distribucion GRID LAYOUT */
.container_general{
    display: grid;
    grid-template-columns: 100%;
    grid-template-rows: 100vh 1.5fr 2fr 1fr 0.5fr;
    width: 100%;
    grid-template-areas: 
    "header"
    "nuestros_servicios"
    "quienes_somos"
    "nuestros_clientes"
    "footer";
}
header{
    grid-area: header;
}
.nuestros_servicios{
    grid-area: nuestros_servicios;

}
.quienes_somos{
    grid-area: quienes_somos;

}
.nuestros_clientes{
    grid-area: nuestros_clientes;

}
footer{
    grid-area: footer;

}

/* NAV logotipo */
.logo img{
    width: 150px;
}
nav{
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: space-around;
}
.menu{
    flex-basis: 50%;
}
.menu ul{
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}
.menu li{
    margin: 10px;
    list-style: none;
}
.menu a{
    text-decoration: none;
    list-style: none;
    color: var(--color1);
    font-size: 20px;
}
.menu a:hover{
    color: #0BC8CA;
    text-align: center;
    text-shadow: 0px 4px 4px rgba(51, 222, 222, 0.30);
    font-family: Sora;
    font-size: 25px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    transition: all 300ms;
}
.menu_mobile{
    display: none;
}
.bars__menu{
    display: none;
}

/* BANNER */
.banner{
    display: flex;
    align-items: flex-end;
    width: 100%;
}
.banner_1{
    flex-basis: 50%;
    /* height: 509px; */
    z-index: 2;
    position: relative;
}
.banner_1 img{
    width: 100%;
    margin-left: 30%;
    margin-bottom: 0%;
    z-index: 2;
}
/* TEXTO BANNER1  */
.texto_banner1{
    position: absolute;
    z-index: 5;
    top: 0%;
    left: 0%;
    width: 100%;
    height: 100%;
    font-family: 'Sora', sans-serif;
    font-weight: 500;
}
.p_banner1{
    position: absolute;
    width: 200px;
    top: 1%;
    left: 35%;
    font-size: 22px;
    color: #0BC8CA;
}
.p_banner2{
    position: absolute;
    width: 200px;
    top: 13%;
    left: 40%;
    font-size: 22px;
    color: black;
}
.p_banner3{
    position: absolute;
    width: 200px;
    top: 38%;
    left: 54%;
    font-size: 22px;
    color: black;
}
.p_banner4{
    position: absolute;
    width: 200px;
    top: 71%;
    left: 70%;
    font-size: 22px;
    color: black;
}
.banner_2{
    flex-basis: 65%;
    z-index: 1;
    position: relative;
}
.banner_2 img{
    width: 96%;
    /* height: 509px; */
    height: 100%;
    border-radius: 30px;
    z-index: 1;
}
.banner_p{
    display: none;
}
.banner_3{
    position: absolute;
    top: 80%;
    left: 40%;
}
.banner_3 button{
    text-align: center;
    margin-top: 15px;
    border-radius: 30px;
    background-color: #09c8ca;
    border: none;
    height: 40px;
    width: 166px;
    color: #e7e6e6;
}
.banner_3 button:hover{
    box-shadow: 0px 1px 0px rgba(51, 222, 222, 0.30), 0px 1px 2px 0px rgba(51, 222, 222, 0.30);
    cursor: pointer;
}

/* NUESTROS SERVICIOS */
.nuestros_servicios{
    /* background: linear-gradient(169deg, #FFF 15.64%, #FCEDE2 62.64%, #FFEEE1 99.41%);     */
    background: linear-gradient(176deg, #FFF 12%, #FCEDE2 30.64%, #fad8bd 80.41%);

}
.nuestros_servicios h2{
    font-size: 46px;
    margin-left: 6%;
    margin-bottom: 80px;
}
.section_layout{
    display: flex;
    justify-content: space-around;
}
.circle_layout{
    display: grid;
    grid-template-columns: repeat(2,350px);
}
.circle{
    width: 300px;
    height: 300px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    margin-left: 20%;
}
.c_tributario{
    background-image: linear-gradient(rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.1)), url("../img/nuestros_servicios/servicios_tributarios.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50%;
    margin-bottom: 80px;
    box-shadow: 0px 4px 4px 0px rgba(11, 200, 202, 0.10);
}
.c_auditoria{
    background-image: linear-gradient(rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.1)), url("../img/nuestros_servicios/servicios_auditoria.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50%;
    box-shadow: 0px 4px 4px 0px rgba(255, 191, 0, 0.20);
}
.c_contable{
    background-image: linear-gradient(rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.2)), url("../img/nuestros_servicios/servicios_contables.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50%;
    box-shadow: 0px 4px 4px 0px rgba(11, 200, 202, 0.10);
    margin-top: 25px;
}
.c_rh{
    background-image: linear-gradient(rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.2)), url("../img/nuestros_servicios/servicios_rh.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50%;
    box-shadow: 0px 4px 4px 0px rgba(255, 191, 0, 0.20);
    margin-top: -40px;
}
.c_auditoria p{
    display: inline-block;
    width: 260px;
    height: 35px;
    text-align: center;
    background-color: #0BC8CA;
    line-height: 35px;
    transform: rotate(-2.207deg);
    font-weight: 400;
    font-size: 23px;
}
.c_tributario p{
    display: inline-block;
    width: 260px;
    height: 35px;
    text-align: center;
    background-color: #FFBF00;
    line-height: 35px;
    transform: rotate(-2.207deg);
    font-weight: 400;
    font-size: 23px;
}
.c_contable p{
    display: inline-block;
    width: 260px;
    height: 45px;
    text-align: center;
    background-color: #0BC8CA;
    line-height: 20px;
    transform: rotate(-2.207deg);
    font-weight: 400;
    font-size: 23px;
}
.c_rh p{
    display: inline-block;
    width: 260px;
    height: 45px;
    text-align: center;
    background-color: #FFBF00;
    line-height: 22px;
    transform: rotate(-2.207deg);
    font-weight: 400;
    font-size: 23px;
}
.c_auditoria button{
    margin-bottom: 35px;
    width: 120px;
    height: 32px;
    font-size: 16px;
    border-radius: 30px;
    background-color: #FFBF00;
    border: none;
    cursor: pointer;
}
.c_contable button{
    margin-bottom: 25px;
    width: 120px;
    height: 32px;
    font-size: 16px;
    border-radius: 30px;
    background-color: #FFBF00;
    border: none;
    cursor: pointer;
}
.c_tributario button{
    margin-bottom: 35px;
    width: 120px;
    height: 32px;
    font-size: 16px;
    border-radius: 30px;
    background-color: #0BC8CA;
    border: none;
    cursor: pointer;
}
.c_rh button{
    margin-bottom: 25px;
    width: 120px;
    height: 32px;
    font-size: 16px;
    border-radius: 30px;
    background-color: #0BC8CA;
    border: none;
    cursor: pointer;
}
.circle button:hover{
    box-shadow: 0px 4px 4px 0px rgba(51, 222, 222, 0.25);
}
.parrafos_layout{
    width: 40%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    justify-items: center;
}
.parrafos_container{
    width: 500px;
}
.parrafos_container2{
    width: 500px;
}
.parrafos_container p{
    font-size: 32px;
    font-weight: 600;

}
.parrafos_container2 p{
    font-size: 24px;
}
.parrafos_container span{
    color: #0BC8CA;
}
.parrafos_container2 span{
    color: #0BC8CA;
}

/* QUIENES SOMOS CARDS */
.quienes_somos h2{
    font-size: 46px;
    margin-left: 6%;
    margin-bottom: 80px;
}
.card-0{
    width: 99%;
}
.card-0 span{
    color: #0BC8CA;
}
.qm_layout{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    grid-template-rows: repeat(2,1fr);
    width: 100%;
    grid-gap: 100px;
    align-items: center;
    justify-items: center;
  }
  .space1{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-right: -14%;
  }
  .space1 > div:first-child{
    font-family: 'Sora';
    font-size: 28px;
    font-weight: 700;
    width: 100%;
    margin-left: 15%;
  }
  .space1 > div:last-child{
    font-family: 'Sora';
    font-size: 14px;
    text-align: center;
  }
  .plus {
    position: relative;
    z-index: 1;
    width: 70px;
    height: 70px;
    color: #1a1a1a;
    background: #0BC8CA;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    transition: box-shadow 400ms cubic-bezier(0.2, 0, 0.7, 1), transform 200ms cubic-bezier(0.2, 0, 0.7, 1);
  }
  .plus:after {
    content: "+";
    font-size: 2.3em;
    line-height: 1em;
  }
  .plus:hover {
    transform: rotate(45deg);
    background: var(--Ambar, #FFBF00);
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.30);
    /* box-shadow: 0 0 1px 15px rgba(196, 25, 88, 0.4), 0 0 1px 30px rgba(138, 59, 88, 0.1), 0 0 1px 45px rgba(216, 17, 90, 0.1); */
  }
  .contenedor_plus2{
    display: none;
  }
  .card {
      /* perspective: 150rem; */
      position: relative;
      /* height: 40rem; */
      width: 320px;
      height: 480px;
      /* margin: 2rem; */
      box-shadow: none;
      background: none;
      border-radius: 30px;
    }
    
    .card-side {
      height: 480px;
      border-radius: 30px;
      transition: all 0.8s ease;
      backface-visibility: hidden;
      position: absolute;
  
      width: 100%;
      color: white;
      box-sizing: border-box;
    }
    .card-side p{
      font-family: 'Sora', sans-serif;
      font-size: 16px;
      width: 95%;
      margin-left: 3%;
      margin-top: 10%;
      color: black;
    }
    .card-side.back {
      transform: rotateY(-180deg);
      background-color: #4158D0;
      /* background-image: linear-gradient(43deg, #4158D0 0%,#C850C0 46%, #FFCC70 100%); */
      background-image: linear-gradient(160deg, #0093E9 0%, #80D0C7 100%);
    }
  
    .card-side.front{
      display: flex;
      flex-direction: column;
      align-items: end;
      justify-content: end;
    }
    .front div:first-child{
      height: 30px;
    }
    .front div:last-child{
      height: 60px;
    }
    /* Katherine */
    .front .front_1{
      display: inline-block;
      width: 190px;
      height: 30px;
      background-color: #0BC8CA;
      line-height: 30px;
      margin-right:10px;
      transform: rotate(-1.927deg);
      font-family: 'Sora';
      font-size: 20px;
      color: #007505;
      font-weight: 700;
      text-align: center;
    }
    .front .front_2{
      display: inline-block;
      width: 110px;
      height: 25px;
      margin-top: 18px;
      background-color: white;
      line-height: 25px;
      margin-right:7px;
      margin-bottom: 4%;
      font-weight: 600;
      transform: rotate(-1.927deg);
      color: black;
      font-family: 'Sora';
      font-size: 14px;  
    }
    /* leslie */
    /* .front .front_1_lg{
      display: inline-block;
      width: 190px;
      height: 30px;
      background-color: #0BC8CA;
      line-height: 30px;
      margin-right:10px;
      transform: rotate(-1.927deg);
      font-family: 'Sora';
      font-size: 20px;
      color: #007505;
      text-align: center;
      font-weight: 700;
    } */
    .front .front_2_lg{
      display: inline-block;
      width: 140px;
      height: 25px;
      margin-top: 18px;
      background-color: white;
      line-height: 25px;
      margin-right: 7px;
      font-weight: 600;
      transform: rotate(-1.927deg);
      color: black;
      font-family: 'Sora';
      font-size: 14px;
      text-align: center;
    }
    .card-side.ka{
      background-image: url(../img/cards/Katherine_Alarcon.jpg);
      background-size: cover;
      background-repeat: no-repeat;
      background-position: 50%;
    }
    .card-side.lg{
      background-image: url(../img/cards/Leslie_Garces.jpg);
      background-size: cover;
      background-repeat: no-repeat;
      background-position: 50%;
    }
    .card-side.k_as{
      background-image: url(../img/cards/Karina_Astudillo.jpg);
      background-size: cover;
      background-repeat: no-repeat;
      background-position: 50%;
    }
    .card-side.lf{
      background-image: url(../img/cards/Lorena_Faundez.jpg);
      background-size: cover;
      background-repeat: no-repeat;
    }
    .card-side.nv{
      background-image: url(../img/cards/Nicole_Vargas.jpg);
      background-size: cover;
      background-repeat: no-repeat;
      background-position: 50%;
    }
    .card:hover .card-side.front {
      transform: rotateY(180deg);
    }
    
    .card:hover .card-side.back {
      transform: rotateY(0deg);
    }


/* SERVICIOS */
.servicios_circle{
    width: 300px;
    height: 300px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    margin-left: 8%;
}
.servicios_contable{
    background-image: linear-gradient(rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.2)), url("../img/nuestros_servicios/servicios_contables.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50%;
    box-shadow: 0px 4px 4px 0px rgba(11, 200, 202, 0.10);
    flex-basis: 16%;
    margin-top: 10%;
}
.servicios_contable p{
    line-height: 23px;
    width: 260px;
    height: 45px;
    background-color: #0BC8CA;
    margin-bottom: 80px;
    font-weight: 400;
    font-size: 23px;
    text-align: center;
    
}
.layout_contable{
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-evenly;
    background: linear-gradient(358deg, rgba(255, 238, 225, 0.80) 1.21%, rgba(217, 217, 217, 0.00) 91.53%);
}
.servicio_texto{
    flex-basis: 60%;
    font-size: 20px;
}

.layout_tributario{
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-evenly;
}
.servicios_tributario{
    background-image: linear-gradient(rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.1)), url("../img/nuestros_servicios/servicios_tributarios.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50%;
    box-shadow: 0px 4px 4px 0px rgba(11, 200, 202, 0.10);
    flex-basis: 16%;
    margin-top: 10%;
}
.servicios_tributario p{
    line-height: 45px;
    width: 260px;
    height: 45px;
    background-color: #FFBF00;
    margin-bottom: 80px;
    font-weight: 400;
    font-size: 23px;

}

.layout_rh{
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-evenly;
    background: linear-gradient(180deg, rgba(255, 238, 225, 0.80) 0%, rgba(217, 217, 217, 0.00) 100%);
}
.servicios_rh{
    background-image: linear-gradient(rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.2)), url("../img/nuestros_servicios/servicios_rh.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50%;
    box-shadow: 0px 4px 4px 0px rgba(11, 200, 202, 0.10);
    flex-basis: 16%;
    margin-top: 10%;
}
.servicios_rh p{
    line-height: 23px;
    width: 260px;
    height: 45px;
    background-color: #FFBF00;
    margin-bottom: 80px;
    font-weight: 400;
    font-size: 23px;
    text-align: center;
}
.layout_auditoria{
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-evenly;
    margin-bottom: 80px;
}
.servicios_auditoria{
    background-image: linear-gradient(rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.1)), url("../img/nuestros_servicios/servicios_auditoria.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50%;
    box-shadow: 0px 4px 4px 0px rgba(11, 200, 202, 0.10);
    flex-basis: 16%;
    margin-top: 10%;
}
.servicios_auditoria p{
    line-height: 45px;
    width: 260px;
    height: 45px;
    background-color: #0BC8CA;
    margin-bottom: 80px;
    font-weight: 400;
    font-size: 23px;
    text-align: center;
}

/* MAS DE NOSOTROS */
.layout_servicios{
    margin-top: 6%;
}
.imagen_equipo{
    text-align: center;
}
.imagen_equipo img{
    width: 1000px;
}
.layout_nosotras{
    background: radial-gradient(49.96% 49.96% at 50% 50.04%, #FFE9DF 0%, rgba(255, 245, 235, 0.00) 100%);
}
.contenido_nosotras{
    background-image: url(../img/quienes_somos/Soft_Flower.png);
    background-repeat: no-repeat;
    background-position: top right;
    margin-left: 9%;
}
.layout_nosotras h2{
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    margin-bottom: 50px;
    margin-top: 50px;
}
.nosotras_p1{
    width: 64%;
    font-size: 20px;
    font-weight: 400;
}
.nosotras_p2{
    width: 75%;
    font-size: 20px;
}
.nosotras_p3{
    width: 90%;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
}
.p3_span_black{
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
}
.p3_span_blue{
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    color: var(--color4);
}
/* FOOTER MAS DE NOSOTRAS */
.contenedor_footer{
    width: 100%;
    height: 400px;
    position: relative;
}
.contenedor_footer svg{
    position: absolute;
    bottom: 0px;
}
/* ICONOS FOOTER */
.instagram{
    width: 37px;
    position: absolute;
    bottom: 24.6%;
    right: 6%;
}
.linkedin{
    width: 35px;
    position: absolute;
    bottom: 25%;
    right: 12%;
    border-radius: 12px;
}
.whatsapp{
    width: 35px;
    position: absolute;
    bottom: 25%;
    right: 9%;
    border-radius: 12px;
}
.instagram:hover{
    transform: translateY(-4px);
    transition:0.3s;
    cursor: pointer;
}
.linkedin:hover{
    transform: translateY(-4px);
    transition:0.3s;
    cursor: pointer;
}
.whatsapp:hover{
    transform: translateY(-4px);
    transition:0.3s;
    cursor: pointer;
}
.vituneta_logo{
    width: 35px;
    position: absolute;
    bottom: 12px;
    left: 79%;
}
.vituneta_p{
    position: absolute;
    bottom: 10px;
    left: 82%;
    font-family: 'Aclonica', sans-serif;
    font-size: 12px;
}

/* NUESTROS CLIENTES */
.nuestros_clientes{
    /* background: linear-gradient(169deg, #FFF 15.64%, #FCEDE2 62.64%, #FFD2AF 99.41%); */
    background: linear-gradient(180deg, #FFF 12%, #FCEDE2 30.64%, #fad8bd 80.41%);
}
.nuestros_clientes h2{
    font-size: 46px;
    margin-left: 6%;
    margin-bottom: 80px;
}
.nuestros_clientes p{
    font-size: 24px;
    margin-left: 8%;
}

.nc_layout{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    width: 100%;
    text-align: center;
    align-items: center;
    justify-items: center;
}
.nc_caja{
    width: 400px;
    height: 150px;
    background-color: white;
    border-radius: 30px;
    margin: 20px;
    box-sizing: border-box;
    transition: all 300ms;
}
.nc_caja:hover{
    box-shadow: 0px 3px 4px rgba(0, 0, 0,0.25);
}
.nc2 img{
    height: 150px;
}
.nc6 img{
    height: 150px;
}

/* FOOTER GENERAL */
.footer_general{
    width: 100%;
    height: 648px;
    /* background-image: url(../img/footer/footer_fondo.jpg); */
    background-image: linear-gradient(rgba(212, 212, 212, 0.83), rgba(212, 212, 212, 0.83)), url("../img/footer/footer_fondo.jpg");
    background-repeat: no-repeat;
    background-position: 140% 82%;
    background-size: cover;
}
.container_sub_footer{
    display: grid;
    grid-template-columns: 35% 45% 35%;
}
.container_ayuda_footer{
    position: relative;
    display: flex;
    width: 550px;
    height: 400px;
    margin-left: 6%;
}
.container_ilustra_footer{
    position: relative;
    display: block;    
    width: 600px;
    height: 635px;
    bottom: 0px;
}
.ayuda_footer{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 10%;
}
.ayuda_footer h2{
    width: 570px;
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    margin-bottom: 6%;
}
.ayuda_footer p{
    width: 80%;
    font-size: 24px;
}
.ayuda_footer button{
    margin-top: 5%;
}


/* ICONOS */
.instagram_general{
    width: 37px;
    position: absolute;
    bottom: 7.7%;
    left: 60%;
}
.linkedin_general{
    width: 35px;
    position: absolute;
    bottom: 8%;
    left: 38%;
    border-radius: 12px;
}
.whatsapp_general{
    width: 35px;
    position: absolute;
    bottom: 8%;
    left: 49%;
    border-radius: 12px;
}
.logo_footer{
    width: 120px;
    height: 131.704px;
    position: absolute;
    top: 5%;
    left: 6%;
}
.instagram_general:hover{
    transform: translateY(-4px);
    transition:0.3s;
    cursor: pointer;
}
.linkedin_general:hover{
    transform: translateY(-4px);
    transition:0.3s;
    cursor: pointer;
}
.whatsapp_general:hover{
    transform: translateY(-4px);
    transition:0.3s;
    cursor: pointer;
}
.ilustra_footer{
    width: 500px;
    height: 250px;
    position: absolute;
    bottom: 0px;
    left: 6%;
}
.container_ilustra_footer p{
    display: block;
    position: absolute;
    bottom: 40%;
    left: 10%;
}
.btn_footer{
    text-align: center;
    border-radius: 30px;
    background-color: #09c8ca;
    border: none;
    height: 40px;
    width: 166px;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
}
.btn_footer:hover{
    box-shadow: 0px 1px 0px rgba(51, 222, 222, 0.30), 0px 1px 2px 0px rgba(51, 222, 222, 0.30);
    cursor: pointer;
}
.btn_footer a{
    list-style: none;
    text-decoration: none;
    color: black;
}

/* FORMULARIO DE CONTACTO */
/* CONTACTANOS */
.footer_contacto{
    position: relative;
    z-index: 3;
}
#contactanos{
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 15;
    /* margin-bottom: 200px; */
  }
  .contactanos{
    text-align: center;
    margin-top: 80px;
    margin-bottom: 40px;
    font-size: 30px;
    z-index: 15;
  }
  .sub_contactanos{
    text-align: center;
    margin-top: -1%;
    font-size: 16px;
    font-weight: 300;
    margin-bottom: 3%;
    z-index: 15;
  }
  .contenedor_general_otras{
    display: grid;
    width: 100%;
    height: 100vh;
    grid-template-rows: 1fr 4fr 1fr 2fr
  
  }

/* FORMULARIO */
.container_contacto{
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: center;
    margin-bottom: -8%;
    margin-top: -4%;
    z-index: 15;
  }
  .formulario{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 432px;
    height: 480px;
    z-index: 15;
  }
  .formulario input{
    margin: 8px 0px;
    border: none;
    border-bottom: 1px solid #B4B7B5;
  }
  .formulario textarea{
    width: 430px;
    height: 198px;
    border-radius: 10px;
    border: 1px solid #B4B7B5;
  }
  .formulario label{
    margin-bottom: 10px;
  }
  .btn_form{
    width: 432px;
    height: 50px;
    display: inline-block;
    text-align: end;
    margin-top: 20px;
  }
  .btn_form button{
    margin-left: 10px;
    width: 100px;
    height: 40px;
    background-color: #0BC8CA;
    border-radius: 10px;
    border: none;
    color: #FFFFFF;
  }
  .btn_form button:hover{
    cursor: pointer;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  }
  #loading_oculto{
    position: absolute;
    top: 50%;
    left:50%;
    z-index: 15;
    visibility: hidden;

  }
  #loading_oculto img{
    width: 80px;
  }
  
  /* PAGINA GRACIAS */
  .container_gracias{
    width: 100%;
    height: 100vh;
    display: grid;
    grid-template-columns: 10% 90%;
    grid-template-rows: 200px 90%;
}
  .nav_gracias{
    display: inline-flex;
    justify-content: flex-start;
    margin-left: 20%;
    margin-top: 40%;
  }
  .logo_gracias img{
    width: 200px;
  }
  .contenedor_footer_gracias{
    width: 100%;
    height: auto;
  } 
  .contenedor_footer_gracias svg{
    position: absolute;
    bottom: 0%;
  }
  #gracias h1{
    margin: 20px;
    /* padding: 50px; */
    color: black;
    font-size: 28px;
    text-align: center;
    margin-left: -15%;
  }
  #gracias{
    width: 100%;
    text-align: center;
  }
  .container_main_gracias h2{
    position: absolute;
    color: white;
    font-size: 21px;
    margin-top: 12%;
    text-align: center;
    
  }
  #gracias h3{
    color: white;
    font-size: 18px;
    position: absolute;
    margin-top: 17%;
    margin-left: -12%;
    text-align: center;
  }
  .container_main_gracias{
    width: 85%;
    height: 80vh;
    background-image: url(../img/cargando/gracias.jpeg);
    background-repeat: no-repeat;
    background-position: 50%;
    text-align: center;
    display: flex;
    justify-content: center;
    position: relative;
  }
  .instagram_gracias{
    width: 37px;
    position: absolute;
    bottom: 0%;
    right: 6%;
    margin-bottom: 4%;
}
.linkedin_gracias{
    width: 35px;
    position: absolute;
    bottom: 0.1%;
    right: 12%;
    margin-bottom: 4%;
    border-radius: 12px;
}
.whatsapp_gracias{
    width: 35px;
    position: absolute;
    bottom: 0.1%;
    right: 9%;
    margin-bottom: 4%;
    border-radius: 12px;
}
.instagram_gracias:hover{
    transform: translateY(-4px);
    transition:0.3s;
    cursor: pointer;
}
.linkedin_gracias:hover{
    transform: translateY(-4px);
    transition:0.3s;
    cursor: pointer;
}
.whatsapp_gracias:hover{
    transform: translateY(-4px);
    transition:0.3s;
    cursor: pointer;
}
  /* BOTON FLOTANTE DE WHATAPPS */
  .float{
      position:fixed;
      width:60px;
      height:60px;
      bottom:40px;
      right:40px;
      background-color:#25d366;
      color:#FFF;
      border-radius:50px;
      text-align:center;
      font-size:30px;
      box-shadow: 2px 2px 3px #999;
    z-index:100;
  }
  .float:hover {
      text-decoration: none;
      color: #FFF;
    background-color:#1ab152;
      
      animation: shake 1s;
  
   
    animation-iteration-count: infinite;
  }
  
  .my-float{
      margin-top:16px;
  }
  #catalogo{
    margin-left: 5%;
    display: flex;
    flex-direction: row;
    align-items: center;
  }
  #catalogo a{
    display: inline-block;
    text-decoration: none;
    list-style: none;
    color: var(--color1);
    font-size: var(--tamaño-letra4);
  }
  


/* MOBILE CSS  */
@media (max-width: 576px){
    /* CONTENEDOR GENERAL SITE  */
    .container_general{
        display: grid;
        width: 100%;
        grid-template-columns: 1fr;
        grid-template-rows: 100vh 0.8fr 1.5fr 0.7fr 500px;
    }
    /* header{
        width: 100%;
        height: 93vh;
    } */
    /* NAV logotipo */
    .logo img{
        width: 85px;
        margin-left: 10%;
    }
    .menu{
        display: none;
        visibility: hidden;
    }
    nav{
        display: flex;
        width: 100%;
        height: auto;
        /* align-items: center; */
        justify-content: space-between;
        position: fixed;
        background-color: white;
        margin-top: -100px;
        z-index: 20;
    }
    .nav_pages{
        display: inline-flex;
        width: 100%;
        height: auto;
        align-items: center;
        justify-content: space-between;
        position: fixed;
        background-color: white;
        margin: 0px;
        padding: 0px;
        margin-top: -100px;
    }
    .nav_contacto{
        display: inline-flex;
        width: 100%;
        height: auto;
        align-items: center;
        justify-content: space-between;
        position: fixed;
        background-color: white;
        margin: 0px;
        padding: 0px;
        margin-top: 4%;
    }
    .bars__menu{
        width: 30px;
        height: 30px;
        /* position: absolute; */
        /* right: 0px; */
        cursor: pointer;
        margin-right: 10%;
    }
    .bars__menu{
        display: block;
        visibility: visible;
    }
    .bars__menu span {
        display: block;
        width: 100%;
        height: 2px;
        background: #0BC8CA;
        margin-top: 6px;
        transform-origin: 0px 100%;
        transition: all 300ms;
    }
    
    .activeline1__bars-menu{
        transform: rotate(45deg) translate(-2px, 1px); 
    }
    
    .activeline2__bars-menu{
        opacity: 0;
        margin-left: -30px; 
    }
    
    .activeline3__bars-menu{
        transform: rotate(-45deg) translate(-4px, 2px);
    }


    /* Banner  */
    .banner{
        display: flex;
        align-items: flex-end;
        margin-top: 100px;
    }
    .banner_1{
        display: none;
    }
    .banner_2{
        width: 100%;
        flex-basis: 100%;
        height: 82vh;
        z-index: 1;
        /* background-image: url(../img/banner/banner.jpg); */
        /* background-image: linear-gradient(rgba(212, 212, 212, 0.2), rgba(212, 212, 212, 0.2)), url("../img/banner/banner.jpg"); */
        background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url("../img/banner/banner.jpg");
        background-repeat: no-repeat;
        background-size: cover;
        background-position: 80%;
        position: relative;
    }
    .banner_2 img{
        display: none;
    }
    .banner_p{
        display: flex;
        width: 100%;
        justify-content: center;
        align-items: flex-start;
        text-align: center;
    }
    .banner_p p{
        width: 100%;
        height: 191px;
        margin: 110px 0px;
        position: absolute;
        color: white;
        z-index: 8;
        font-weight: 700;
        font-size: 32px;
    }
    .banner_3{
        position: absolute;
        top: 78%;
        left: 30%;
        z-index: 3;
    }
    .banner_3 button{
        text-align: center;
        margin-top: none;
        border-radius: 30px;
        background-color: #09c8ca;
        border: none;
        height: 40px;
        width: 166px;
        color: #e7e6e6;
        z-index: 3;
    }
    /* NUESTROS SERVICIOS  */
    .nuestros_servicios h2{
        font-size: 24px;
        margin-left: 6%;
        margin-top: 15%;
        margin-bottom: 40px;
    }
    .parrafos_layout{
        width: 95%;
        display: flex;
        flex-direction: column;
        margin: 0px auto;
    }
    .parrafos_container{
        width: 100%;
        text-align: center;
    }
    .parrafos_container2{
        width: 100%;
        text-align: center;
    }
    .parrafos_container p{
        font-size: 21px;
        font-weight: 600;
    
    }
    .parrafos_container2 p{
        font-size: 21px;
    }
    .section_layout{
        display: flex;
        flex-direction: column-reverse;
        justify-content: center;

    }
    .circle_layout{
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: repeat(4, 1fr);
    }
    .circle{
        width: 300px;
        height: 300px;
        border-radius: 50%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-end;
        margin-left: 0px;
        margin: 20px auto;
    }

    /* QUIENES SOMOS  */
    .quienes_somos h2{
        font-size: 24px;
        margin-top: 15%;
        margin-bottom: 0px;
    }
    .qm_layout{
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: repeat(6,1fr);
        grid-gap: 20px;
        align-items: center;
        justify-items: center;
      }
      .space1{
        display: flex;
        width: 90%;
        flex-direction: column;
        flex-wrap: nowrap;
        align-items: center;
        margin: 0px auto;
        /* display: none; */
      }
      .space1 > div:first-child{
        font-family: 'Sora';
        font-size: 21px;
        font-weight: 700;
        width: 100%;
        margin-left: 6%;
      }
      .contenedor_plus1{
        /* display: none; */
        margin-top: 30px;
      }
      .contenedor_plus2{
        text-align: center;
        margin-top: 30px;
      }
      .card-0 p{
        width: 99%;
    }

      /* NUESTROS CLIENTES  */
      .nuestros_clientes h2{
        font-size: 24px;
        margin-left: 6%;
        margin-top: 15%;
        margin-bottom: 80px;
    }
    .nuestros_clientes p{
        font-size: 24px;
        margin-left: 5%;
    }
    .nc_layout{
        display: grid;
        grid-template-columns: 100%;
        grid-template-rows: repeat(6,1fr);
        text-align: center;
        align-items: center;
    }
    .nc_caja{
        width: 100%;
        height: auto;
        background-color: white;
        border-radius: 30px;
        margin: 20px auto;
        box-sizing: border-box;
        transition: all 300ms;
    }
    .nc1 img{
        height: 130px;
    }
    .nc2 img{
        height: 130px;
    }
    .nc3 img{
        height: 130px;
    }
    .nc4 img{
        height: 130px;
    }
    .nc5 img{
        height: 130px;
    }
    .nc6 img{
        height: 130px;
    }
    /* FOOTER GENERAL */
    .footer_general {
        width: 100%;
        height: 648px;
        /* background-image: url(../img/footer/footer_fondo.jpg); */
        background-image: linear-gradient(rgba(212, 212, 212, 0.83), rgba(212, 212, 212, 0.83)), url(../img/footer/footer_fondo.jpg);
        background-repeat: no-repeat;
        background-position: 50%;
        background-size: cover;
    }
    .container_sub_footer {
        display: flex;
        flex-direction: column-reverse;
        justify-content: center;
        align-items: center;
    }
    .container_ilustra_footer {
        position: relative;
        display: block;
        width: 300px;
        height: 300px;
        bottom: 0px;
        /* background-color: #0093E9; */
    }
    .container_ayuda_footer {
        position: relative;
        display: block;
        width: 300px;
        height: 250px;
        /* background-color: #007505; */
    }
    .container_ilustra_footer p {
        display: inline-block;
        position: absolute;
        width: 100%;
        bottom: 60%;
        left: 10%;
        font-size: 16px;
    }
    .vfooter {
        display: none;
    }
    .ilustra_footer {
        width: 350px;
        height: 200px;
        position: absolute;
        bottom: 0px;
        left: -7%;
    }
    .ayuda_footer {
        display: flex;
        flex-direction: column;
        margin-top: 20%;
    }
    .ayuda_footer p {
        width: 90%;
        font-size: 16px;
        text-align: center;
    }
    .ayuda_footer h2 {
        width: 360px;
        font-size: 20px;
        font-style: normal;
        font-weight: 700;
        margin: 0px;
        margin-bottom: 20px;
    }
    .vituneta_p {
        position: absolute;
        bottom: 0px;
        left: 60%;
        font-family: 'Aclonica', sans-serif;
        font-size: 8px;
    }
    .ayuda_footer button {
        margin: 30px auto;
    }
    .vituneta_logo {
        width: 35px;
        position: absolute;
        bottom: 15px;
        left: 90%;
    }
    .instagram_general {
        width: 37px;
        position: absolute;
        bottom: 14.7%;
        left: 80%;
    }
    .whatsapp_general {
        width: 35px;
        position: absolute;
        bottom: 15%;
        left: 60%;
        border-radius: 12px;
    }
    .linkedin_general {
        width: 35px;
        position: absolute;
        bottom: 15%;
        left: 40%;
        border-radius: 12px;
    }
    .logo_footer{
        display: none;
    }
      /* CONTACTO */
      .flotar{
        clear: both;
    }
      #contactanos{
        display: block;
        width: 100%;
        height: 400px;
      }
      .contactanos{
        text-align: center;
        margin-top: 140px;
        margin-bottom: 60px;
        font-size: 28px;
      }
      .sub_contactanos{
        margin-bottom: 40px;
      }
  .formulario{
    width: 400px;
    /* height: auto; */
    /* margin-left: 10%; */
  }
  .formulario textarea{
    width: 330px;
    height: auto;
    border-radius: 10px;
    border: 1px solid #B4B7B5;
    margin-left: 20px;
  }
  .formulario input{
    margin-left: 20px;
    border: none;
    border-bottom: 1px solid #B4B7B5;
  }
  .formulario label{
    margin-left: 20px;
  }
  .btn_form{
    width: 350px;
    height: 50px;
    display: inline-block;
    text-align: end;
    margin-top: 20px;
  }

    /* PAGINA SERVICIOS  */
    .layout_servicios {
        margin-top: 100px;
    }
    .float{
        content: ""; display: table; clear: both;
    }
    .float{
        position:fixed;
        width:55px;
        height:55px;
        bottom:60px;
        right:10px;
        background-color:#25d366;
        color:#FFF;
        border-radius:40px;
        text-align:center;
        font-size:25px;
        box-shadow: 2px 2px 3px #999;
        z-index:100;
    }
    .layout_contable {
        display: flex;
        flex-direction: column;
        width: 100%;
        align-items: center;
        justify-content: space-evenly;
    }
    .layout_tributario {
        display: flex;
        flex-direction: column;
        width: 100%;
        align-items: center;
        justify-content: space-evenly;
    }
    .layout_rh {
        display: flex;
        flex-direction: column-reverse;
        width: 100%;
        align-items: center;
        justify-content: space-evenly;   
    }
    .layout_auditoria {
        display: flex;
        flex-direction: column-reverse;
        width: 100%;
        align-items: center;
        justify-content: space-evenly;
        margin-bottom: -280px;
    }
    .servicio_texto p{
        width: 95%;
        margin: 0px auto;
        text-align: center;
        font-size: 20px;
        margin-bottom: 60px;
    }
    .servicios_circle{
        display: none;

    }
    .servicios_contable{
        display: flex;
        width: 250px;
        height: 180px;
        background-size: none;
        background-position: 0px;
        box-shadow: none;
        flex-basis: none;
        margin-top: 0%;
        background-image: none;
        transform: rotate(-3.179deg);
    }
    .servicios_contable p{
        line-height: 30px;
        width: 300px;
        height: 60px;
        background-color: #0BC8CA;
        margin-bottom: 80px;
        font-weight: 400;
        font-size: 24px;
        text-align: center;    
    }
    .servicios_tributario{
        display: flex;
        width: 250px;
        height: 180px;
        background-image: none;
        background-size: none;
        background-position: 50%;
        box-shadow: none;
        flex-basis: 0%;
        margin-top: 0%;
        transform: rotate(-3.179deg);
    }
    .servicios_tributario p{
        line-height: 60px;
        width: 300px;
        height: 60px;
        background-color: #FFBF00;
        margin-bottom: 80px;
        font-weight: 400;
        font-size: 24px;
        text-align: center;
    }
    .servicios_rh{
        display: flex;
        width: 250px;
        height: 180px;
        background-image: none;
        background-size: none;
        background-position: 50%;
        box-shadow: none;
        flex-basis: 0%;
        margin-top: 0%;
        transform: rotate(-3.179deg);
    }
    .servicios_rh p{
        line-height: 40px;
        width: 300px;
        height: 80px;
        background-color: #FFBF00;
        margin-bottom: 50px;
        font-weight: 400;
        font-size: 24px;
        text-align: center;
    }
    .servicios_auditoria{
        display: flex;
        width: 250px;
        height: 180px;
        background-image: none;
        background-size: none;
        background-position: 50%;
        box-shadow: none;
        flex-basis: 0%;
        margin-top: 0%;
        transform: rotate(-3.179deg);
    }
    .servicios_auditoria p{
        line-height: 60px;
        width: 300px;
        height: 60px;
        background-color: #0BC8CA;
        margin-bottom: 80px;
        font-weight: 400;
        font-size: 24px;
        text-align: center;
    }

    /* QUIENES SOMOS PAGES  */
    .imagen_equipo{
        width: 100%;
        height: auto;
        margin: 0px auto;
        margin-bottom: -240px;
        display: flex;
        justify-content: flex-start;

    }
    .imagen_equipo img{
        width: 95%;
    }
    .layout_nosotras{
        margin-top: 140px;
    }
    .nav_quienes{
        display: inline-flex;
        width: 100%;
        height: auto;
        align-items: center;
        justify-content: space-between;
        position: fixed;
        z-index: 30;
        background-color: white;
        margin: 0px;
        padding: 0px;
        margin-top: -140px;
    }
    .contenido_nosotras{
        /* background-image: url(../img/quienes_somos/Soft_Flower.png); */
        /* background-repeat: no-repeat; */
        /* background-position: top right; */
        background-image: none;
        margin-left: 7%;
        background-size: 30%;
        background-position: 100% 3%;
    }
    .contenido_nosotras h2{
        margin-bottom: 50px;
    }
    .layout_nosotras h2{
        font-size: 28px;
        font-style: normal;
        font-weight: 700;
        margin-bottom: 50px;
        margin-top: 50px;
    }
    .nosotras_p1 {
        width: 95%;
        font-size: 20px;
        font-weight: 400;
    }
    .nosotras_p2 {
        width: 95%;
        font-size: 20px;
    }
    .p3_span_black {
        font-size: 22px;
        font-style: normal;
        font-weight: 700;
    }
    .nosotras_p3 {
        width: 90%;
        font-size: 20px;
        font-style: normal;
        font-weight: 400;
    }
    .p3_span_blue {
        font-size: 22px;
        font-style: normal;
        font-weight: 700;
        color: var(--color4);
    }


    /* MENU HAMBURGUESA  */
    .menu_mobile{
        width: 240px;
        height: 100vh;
        position: absolute;
        top: 97px;
        right: 0px;
        background-color: white;
        font-size: 20px;
    }
    .menu_mobile_back{
        width: 240px;
        height: 100vh;
        position: absolute;
        top: 0px;
        right: 0px;
        /* background: radial-gradient(49.96% 49.96% at 100% 50.04%, #FFE9DF 50%, rgba(255, 245, 235, 0.00) 100%); */
        background: radial-gradient(130.96% 36.96% at 39% 42.04%, #FFE9DF 0%, rgba(255, 245, 235, 0.00) 120%);
    }
    .menu_active{
        display: block;
    }
    #menu_active{
        display: block;
    }
    .menu_mobile li:first-child{
        margin-top: 20px;
    }
    .menu_mobile li{
        text-decoration: none;
        list-style: none;
        margin-bottom: 30px;
        margin-left: -20px;
        font-family: 'Sora', sans-serif;
        transition: all .2s ease;
    }
    .menu_mobile a{
        text-decoration: none;
        color: black;
    }
    .menu_mobile a:hover{
        color: #0BC8CA;
        cursor: pointer;
    }
    .menu_mobile li:hover  {
        color: #0BC8CA;
        cursor: pointer;
        letter-spacing: 1px;
        opacity: .6;
    }
    .instagram{
        display: none;
    }
    .linkedin{
        display: none;
    }
    .whatsapp{
        display: none;
    }
    /* PAGINA GRACIAS */
  .container_gracias{
    width: 100%;
    height: 60vh;
    display: flex;
    flex-direction: column;
    z-index: 15;
    }
    #gracias{
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .nav_gracias{
    display: none;
  }
  .logo_gracias img{
    display: none;
  }
  .contenedor_footer_gracias{
    width: 100%;
    height: 40vh;
    position: relative;
    z-index: 3;
  } 
  .contenedor_footer_gracias svg{
    position: absolute;
    bottom: 0%;
  }
  #gracias h1{
    width: 100%;
    margin: 0;
    color: black;
    font-size: 20px;
    text-align: center;
    margin-top: 5%;
  }

  .container_main_gracias h2{
    position: absolute;
    color: white;
    font-size: 12px;
    margin-top: 38%;
    text-align: center;
    
  }
  #gracias h3{
    color: white;
    font-size: 10px;
    position: absolute;
    margin: 0px;
    text-align: center;
    margin-top: 46%;
    margin-left: -23%;
  }
  .container_main_gracias{
    width: 90%;
    height: 60vh;
    background-image: url(../img/cargando/gracias.jpeg);
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: 100%;
    text-align: center;
    display: flex;
    justify-content: center;
    position: relative;
  }
  .instagram_gracias{
    display: none;
}
.linkedin_gracias{
    display: none;
}
.whatsapp_gracias{
    display: none;
}

}