/* TIPOGRAFIAS */

@font-face {
  font-family: 'Telecable-Regular';
  src: url('fonts/Telecable-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Telecable-RegularItalic';
  src: url('fonts/Telecable-RegularItalic.ttf') format('truetype');
  font-weight: normal;
  font-style: italic;
}

@font-face {
  font-family: 'Telecable-Bold';
  src: url('fonts/Telecable-Bold.ttf') format('truetype');
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: 'Telecable-BoldItalic';
  src: url('fonts/Telecable-BoldItalic.ttf') format('truetype');
  font-weight: bold;
  font-style: italic;
}

@font-face {
  font-family: 'Telecable-Thin';
  src: url('fonts/Telecable-Thin.ttf') format('truetype');
  font-weight: 100;
  font-style: normal;
}

@font-face {
  font-family: 'Telecable-ThinItalic';
  src: url('fonts/Telecable-ThinItalic.ttf') format('truetype');
  font-weight: 100;
  font-style: italic;
}

  
  
    /* COLORES PRINCIPALES ******************************************************************** */
    :root {
      --color-c1: #0d57bb;
      --color-c2: #ffffff;
      --color-c3: #0d57bb;
      --color-c4: #d4d4d4;
      --color-c5: #197ee5;
      --color-c6: #e5f1fe;
      --color-c7: #000000;
      --color-c8: #ee0c6b;
      --color-c9: #d4d6c8;
      --color-c10: #dbf0fa;
      --color-c11: #24a3e0;
      --color-c12: #e4f1fe;
      --color-c13: #0d57ba;
    }
    
    * {
      margin: 0px;
      padding: 0px;
      box-sizing: border-box;
    }
    body {
   /*   height: 100vh; */
      display: flex;
      flex-direction: column;
      font-family: 'Telecable-Regular';
  
   
    }
    
    /* NAVBAR *********************************************************************************** */
    #nav {
      background-color: var(--color-c2);
  
  
     
    }
    
    #logo {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    
    .menuLogo {
      width: 50px;
      display: none;
    }
    .cerrarMenu {
      width: 30px;
      display: none;
    }
    
    #menu_head {
      width: 100%;
      display: flex;
      flex-wrap: wrap;
      justify-content: start;
      align-items: center;
    }
    #menu_head .logotipo {
      width: 250px;
      padding-top: 15px;
      padding-bottom: 15px;
    
    }
    .multiOfertaLogo {
      margin-top: 10px;
      margin-left: 20px;
      width: 140px;
    
    }
    
    .linksOrange {
      width: 350px;
      display: flex;
      justify-content: space-around;
      font-size: 1rem;
    }
    .particulares {
      text-decoration: none;
      color: rgb(251, 123, 2);
    }
    
    .empresas {
      text-decoration: none;
      color: white;
    }
    .empresas:hover {
      text-decoration: none;
      color: rgb(251, 123, 2);
    }
    #divTelefono {
      display: flex;
      justify-content: end;
      align-items: center;
  background-color: var(--color-c8);
    }
    .telefono{
      width: 100%;
      display: flex;
      flex-direction: column;
      justify-content: end;
      align-items: end;
    }
    .telefono .llamagratis {
      text-decoration: none;
      font-size: 22px;
      color: var(--color-c2);   
      width: 100%;
      text-align: center;
  
   
    }
    
    .telefono .tel900 {
      text-decoration: none;
      color: var(--color-c2);   
      font-size: 2.5rem;
      display: flex;
      justify-content: center;
      align-items: center;
      width: 100%;
      font-family: 'Telecable-Bold';
      line-height: 1.2;
    
     
    }
    
    .telefono .tel900 p {
      margin-bottom: 0px;
  
    }
    #telPc {
      display: block;
    }
    #telMovil {
      display: none;
    }
    
    #containerNavbar {
      width: 100%;
      background-color: var(--color-c1);
  
    }
    #navbar {
      width: 100%;
      height: 50px;
      display: flex;
      justify-content: start;
      align-items: center;
    }
    .menudesplegable1,
    .menudesplegable2 ,
    .menudesplegable3  {
      position: relative;
    }
    
    .links {
      width: 100%;
      list-style-type: none;
      display: flex;
      justify-content: start;
      align-items: center;
    }
    .links li{
      margin-right: 30px;
    }
    
    .links a {
      text-decoration: none;
      font-size: 1.3rem;
      color: var(--color-c2) !important;
      font-family: 'Telecable-Bold';
     
    }
    .links a:hover {
      text-decoration: none;
      color: var(--color-c8);
    }
    
    .menudesplegable1 .triangulo::after ,
    .menudesplegable2 .triangulo::after,
    .menudesplegable3 .triangulo::after{
      content: "";
      position: relative;
      right: -10px;
      top: 20px;
      border-left: 5px solid transparent;
      border-right: 5px solid transparent;
      border-top: 7px solid var(--color-c2);
    }
    
    .links li a.activo {
   
      text-decoration: underline;
      text-decoration-color:  var(--color-c8);       
      text-decoration-thickness: 2px;  
      text-underline-offset: 10px;
    }
    
    .menudesplegable1:hover .oculto ,
    .menudesplegable2:hover .oculto,
    .menudesplegable3:hover .oculto{
      display: block;
      position: absolute;
      top: 30px;
      left: 0px;
      text-decoration: none;
      list-style-type: none;
      z-index: 2;
      background-color: var(--color-c2);
      box-shadow: 0px 5px 10px -5px  var(--color-c7);
    }
    .oculto {
      display: none;
      position: absolute;
      list-style-type: none;
    padding: 0px;
      background-color: var(--color-c2);
     
    }
    .oculto .dropdown-menu li {
      white-space: nowrap;
      margin: 10px;
      width: auto;
    }
    .dropdown-item.active, .dropdown-item:active {
      background-color: white !important;
    }
    .logoEmpresa {
      display: none;
    }
    .linksPrincipales {
      display: flex;
      flex-direction: column;
      display: none;
    }
    .fixed {
      position: fixed;
      top: 0;
      width: 100vw;
      left: 0;
      margin-left: 0;
      margin-right: 0;
      background-color: var(--color-c1);
      padding-top: 10px;
      z-index: 1;
    }
    
    
    
    /* Submenús laterales */
    .dropdown {
      position: relative;
    }
    
    .dropdown ul {
      display: none;
      position: absolute;
      top: 0;
      left: 100%;
      background-color: var(--color-c1);
      padding: 0;
      margin: 0;
      list-style: none;
      z-index: 3;
      min-width: 180px;
    }
    
    .dropdown:hover ul {
      display: block;
        box-shadow: 0px 5px 10px -5px grey;
    }
    .oculto .dropdown{
      margin: 0px;
      padding: 0px;
    }
    .dropdown:hover ul li{
      margin: 0px;
      padding: 0px;
    }
    .dropdown a {
      display: block;
      padding: 8px 12px;
      text-decoration: none;
      white-space: nowrap;
      background-color: var(--color-c2);
      color:black !important;
      
    }
    
    .dropdown a:hover {
      background-color:  var(--color-c8) !important;
      color:  var(--color-c2) !important;
    }
    
  
    
    
    
    
    
    
    /* BLOQUE2 ******************************************************************************************* */
    
    #bloque1 {
      width: 100%;
      height: auto;
      flex: 1;
    }
    
    /* BLOQUE2 ******************************************************************************************* */
    
    #bloque2 {
      width: 100%;
      height: auto;
    }
    
    /* BLOQUE3 ******************************************************************************************* */
    #bloque3 {
      width: 100%;
      height: auto;
    }
    /* BLOQUE4 ******************************************************************************************* */
    #bloque4 {
      width: 100%;
      height: auto;
    }
    
    /*  FORMULARIO ************************************************** */
    
    .containerForm {
      width: 100%;
      height: auto;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      background-color: var(--color-c1);
    }
    #oForm.sin900 input.inputname,
    #oForm.sin900 input.inputmail {
      display: block;
    }
    #oForm input.inputname,
    #oForm input.inputmail {
      display: none;
      background-color: var(--color-c4);
      border: none;;
    }
    
    #oForm.fdh input.inputname,
    #oForm.fdh input.inputmail {
      display: block;
    }
    
    .fdh #oForm input.inputname,
    .fdh #oForm input.inputmail {
      display: block;
    }
    
    .textForm {
      width: 100%;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      height: auto;
      background-color: white;
      text-align: center;
     padding: 10px;
    
    }
    .informate{
      font-size: 2.2rem;
      color:var(--color-c1);
      padding-top: 20px;
    
    }
    .DejaTuTel{
      font-size: 1rem;

    }
    .textCabecera {
      width: 100%;
      height: auto;
      background-color: var(--color-c3);
      text-align: center;
      font-size:1.5rem;
      color: white;
      padding-top: 20px;
    
    }
    
    .textCabecera a {
      font-size: 2.2rem;
      font-weight: 700;
      color: white;
      text-decoration: none;
    }
    .textCabeceraFdh {
      display: none;
    }
    
    .formulario {
      width: 100%;
      height: auto;
      background-color: white;
    }
    #oForm {
      width: 100%;
      display: flex;
      flex-direction: column;
      justify-content: start;
      align-items: center;
      padding: 10px;
      
    }
    .sin900#oForm {
      min-height: 371px;
    }
    #oForm .inputname,
    #oForm .inputnum,
    #oForm .inputmail {
      margin-bottom: 10px;
      width: 100%;
      height: 40px;
      padding-left: 20px;
      background-color: #ffffff;
      border-radius: 30px !important;
      background-color: var(--color-c4);
      border:none !important;
    }
    
    .sinForm {
      display: none;
    }
    
    .botonEnviar {
      color: #ffffff;
      margin: 10px auto;
      display: block;
      background-color: var(--color-c8);
      cursor: pointer;
      font-size: 20px;
      font-weight: 700;
      border: none;
      width: 100%;
      height: 50px;
      border-radius: 30px;
    }
    
    form .ssl {
      color: rgb(0, 0, 0) !important;
      width: 100%;
      text-align: center;
      font-size: 13px;
      margin: 10px 0;
      font-family: Arial;
    }
  
/*  
  .ssl span {
    display: none;
  }
  

  .ssl::after {
    content: " Os teus datos están seguros";
    color: black;
    font-family: Arial, sans-serif;
    font-size: 14px;
    display: inline-block;
    margin-left: 8px; 
  } */
    
    /* CHECK BOX PRIVACIDAD***************************************************** */
    .containerPrivacidad {
      width: 100%;
    }
    .control {
      font-family: arial;
      display: block;
      position: relative;
      padding-left: 30px;
      margin-bottom: 3px;
      padding-top: 3px;
      cursor: pointer;
      font-size: 12px;
      line-height: 14px;
      min-height: 30px;
      margin-top: 20px;
      margin-bottom: 20px;
    }
    .control input {
      position: absolute;
      z-index: -1;
      opacity: 0;
    }
    .control_indicator {
      position: absolute;
      top: 5px;
      left: 0;
      height: 25px;
      width: 25px;
      background: #e6e6e6;
      border: 1px solid #000000;
      border-radius: 0px;
    }
    .control:hover input ~ .control_indicator,
    .control input:focus ~ .control_indicator {
      background: #cccccc;
    }
    .control input:checked ~ .control_indicator {
      background: #67cd65;
    }
    .control:hover input:not([disabled]):checked ~ .control_indicator,
    .control input:checked:focus ~ .control_indicator {
      background: #0e6647;
    }
    .control input:disabled ~ .control_indicator {
      background: #e6e6e6;
      opacity: 6;
      pointer-events: none;
    }
    .control_indicator:after {
      box-sizing: unset;
      content: "";
      position: absolute;
      display: none;
    }
    .control input:checked ~ .control_indicator:after {
      display: block;
    }
    .control-checkbox a {
      color: #000000;
    }
    .control-checkbox .control_indicator:after {
      left: 8px;
      top: 5px;
      width: 4px;
      height: 8px;
      border: solid #ffffff;
      border-width: 0 3px 3px 0;
      transform: rotate(45deg);
    }
    .control-checkbox input:disabled ~ .control_indicator:after {
      border-color: #7b7b7b;
    }
    .control-checkbox .control_indicator::before {
      content: "";
      display: block;
      position: absolute;
      left: 0;
      top: 0;
      width: 3.01rem;
      height: 3.01rem;
      margin-left: -0.781rem;
      margin-top: -0.743rem;
      background: #72ed6f;
      border-radius: 3rem;
      opacity: 0.6;
      z-index: 99999;
      transform: scale(0);
    }
    @keyframes s-ripple {
      0% {
        transform: scale(0);
      }
      20% {
        transform: scale(1);
      }
      100% {
        opacity: 0;
        transform: scale(1);
      }
    }
    @keyframes s-ripple-dup {
      0% {
        transform: scale(0);
      }
      30% {
        transform: scale(1);
      }
      60% {
        transform: scale(1);
      }
      100% {
        opacity: 0;
        transform: scale(1);
      }
    }
    .control-checkbox input + .control_indicator::before {
      animation: s-ripple 250ms ease-out;
    }
    .control-checkbox input:checked + .control_indicator::before {
      animation-name: s-ripple-dup;
    }
    
    #tapaForm {
      display: none;
      /*     display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center; */
        background-color: white;
        padding: 10px;
    }
    .loading {
      margin-top: 10px;
      width: 20%;
    }
  
    
    /* FOOTER   ******************************************************************** */
    
    #footerContainer {
      background-color: rgb(255, 255, 255);
    }
    #footer {
      padding: 20px 0;
    }
    
    #letras {
      width: 100%;
    }
    
    #letras a {
      text-decoration: none;
      margin: 3px;
      color: rgb(0, 0, 0);
      font-size: 0.7rem;
    }
    
    #footerLogo {
      padding-top: 15px;
      padding-bottom: 50px;
      display: flex;
      justify-content: end;
      align-items: center;
    }
    
    /* MEDIA QUERIES ************************************************************************************************************** */
    
    @media (min-width: 992px) and (max-width: 1400px) {
      .informate{
        font-size: 2rem;
      }
      #oForm .inputname,
      #oForm .inputnum,
      #oForm .inputmail {
        margin-bottom: 10px;
        padding: 5px;
        padding-left: 20px;
     
      }
    
  /*     .telefono {
        display: none;
      } */
    
      /* MEDIA QUERIES  MOBIL  ****************************************************************************************************** */
    }
    @media (max-width: 1200px) {
      .menudesplegable1:hover .oculto,
      .menudesplegable2:hover .oculto,
      .menudesplegable3:hover .oculto{
        top:20px;
      }
      .menudesplegable1 .triangulo::after,
       .menudesplegable2 .triangulo::after, 
       .menudesplegable3 .triangulo::after {
        top:15px;
       }
      .links{
        justify-content: start;
      }
      .links li{
        margin-right: 25px;
      }
      
      .links a {
        font-size: 1rem;
      }
      .helpDM {
        display: none !important;
      }
    
  /*     .telefono {
        display: none;
      } */
      .telefono .llamagratis {
        padding-right: 0px;
      }
    
    
      /*     FORMULARIO */
      .inboxForm {
        display: flex;
        justify-content: center;
        align-items: center;
      }
      .textForm {
        width: 80%;
        height: auto;
        padding: 20px;
        background-color: white;
      
      }
    
      .formulario {
        width: 80%;
        height: auto;
        background-color: white;
      }
      .containerForm{
         width: 80%;
         background: #ffa50000;
      }
    }
    @media (min-width: 767px) and (max-width: 990px) {
      /* NAV */
      .links{
        justify-content: start;
      }
      .links li{
        margin-right: 20px;
      }
      
      .links a {
        font-size: 0.8rem;
      }
      #menu_head .logotipo {
        width: 200px;
      
      }
    
    #menu_head .multiOfertaLogo{
      width: 120px;
      margin-left: 10px;
    }
      /* FORM */
      #oForm .inputname,
      #oForm .inputnum,
      #oForm .inputmail {
        width: 70%;
      }
      .containerPrivacidad {
        width: 70%;
      }
      .botonEnviar {
        width: 70%;
      }
      .formulario {
        width: 80%;
        height: auto;
        background-color: white;
      }
      .containerForm{
         width: 100%;
      }
      
      /* FOOTER *********************************************************** */
      #footerContainer{
        padding-bottom: 50px;
      }
    }
    
    @media (max-width: 765px) {
      /* NAV */
      #nav {
        padding-bottom: 0px;
      }
      .textCabecera {
        display: none;
      }
    
      .multiOfertaLogo {
        margin-top: 0px;
        margin-left: 0px;
      }
      #menu_head {
        display: flex;
        flex-wrap: wrap;
        justify-content: start;
        align-items: center;
      }
      #menu_head .logotipo {
        width: 150px;
      
      }
      #menu_head .multiOfertaLogo{
        width: 90px;
        margin-left: 10px;
        margin-top: 5px;
      
      }
    
    
    
    
      
      /* BLOQUE1 ******************************************************************************************* */
    
      .linksOrange {
        display: none;
      }
  
    
      #divTelefono {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        background-color: var(--color-c2);
      }
      .telefono {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
      }
      .fixed .telefono {
        border-top: none;
      }
      .telefono .llamagratis {
        display: none;
      }
    
      .telefono .tel900 {
        font-size: 2rem;
        line-height: 1.2;
        margin: 0px;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
      }
      #telPc {
        display: none;
      }
    
      #telMovil {
        border: none;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 100%;
        padding: 10px;
        background-color: var(--color-c8);
        margin-bottom: 10px;
       
      }
    
      .fixed #telMovil {
        width: 95%;
      }
    
      #telMovil a {
        text-decoration: none;
        font-size: 2rem;
        text-align: center;
        color: white;
        margin: 0px;
      }
      #telMovil p {
        font-size: 1.2rem;
        text-align: center;
        margin: 0px;
        padding: 0px;
        color: white;
        @media (max-width: 320px) {
          font-size: 1rem;
  
      }
      }
      #telMovil p span {
        font-size: 1.2rem;
        text-align: center;
        margin: 0px;
        padding: 0px;
        @media (max-width: 320px) {
          font-size: 1rem;
  
      }
      }
      .fixed #telMovil .llevarAformulario {
        padding: 5px 0px;
      }
      #telMovil .llevarAformulario {
        font-size: 1.3rem;
        text-align: center;
        margin: 0px;
        padding: 5px;
    
      }
    
      .menuLogo {
        width: 40px;
        display: block;
      }
      .cerrarMenu {
        width: 20px;
        display: block;
      }
    
      #navbar {
        background-color: var(--color-c1);
        width: 95%;
        height: 100vh;
        position: fixed;
        top: 0;
        left: 0;
        display: flex;
        flex-direction: column;
        justify-content: start;
        align-items: start;
        z-index: 1000;
        transform: translateX(-100%);
        transition: transform 0.3s ease-in-out;
        overflow-y: scroll;
        padding-bottom: 50px;
    
      }
    
    
      #navbar.active {
        transform: translateX(0); /* Muestra el menú al activarlo */
      }
      #navbar .no-scroll {
        transform: translateX(0); /* Muestra el menú al activarlo */
        overflow: hidden;
      }
    
      /* Desactivar scroll cuando el menú está activo */
      body.no-scroll {
        overflow: hidden;
      }
      .logoEmpresa {
        width: 100%;
        display: block;
        display: flex;
        justify-content: space-between;
        align-items: start;
        margin-top: 10px;
        padding: 10px;
        background-color: var(--color-c2);
       
      }
      .logoEmpresa .logoNav {
        width: 150px;
        object-fit: contain;
      }
    
      .linksPrincipales {
        display: flex;
        flex-direction: column;
        margin-top: 15px;
      }
    
      .links {
        width: 100%;
        height: 100vh;
        list-style-type: none;
        display: flex;
        flex-direction: column;
        justify-content: start;
        align-items: start;
        margin-top: 10px;
       
    
      }
    
    
      .links a {
        font-size: 1rem;
      }
    
      .links li {
        padding: 10px 0px;
       
      }
      .links li.menudesplegable1 {
        width: 100%;
        margin-bottom: 90px;
      }
      .links li.menudesplegable2 {
        width: 100%;
        margin-bottom: 180px;
      }
    
      .links li.menudesplegable3 {
        width: 100%;
        margin-bottom: 180px;
      }
    
    
      .menudesplegable1 .oculto,
      .menudesplegable2 .oculto,
      .menudesplegable3 .oculto {
     
        display: block;
        margin-top: 30px;
     
  
      }
      .menudesplegable1:hover .oculto,
      .menudesplegable2:hover .oculto,
      .menudesplegable3:hover .oculto{
          background-color: var(--color-c1);
          box-shadow: none;
  
      }
      .oculto li {
        margin: 0px;
        width: 100%;
      }
    
      /* SECCION2 */
      .botonEnviar {
        font-size: 1.8rem;
      }
    
      /*  FORMULARIO */
      .textForm {
        width: 100%;
        height: auto;
        background-color: white;
        padding: 10px;
      }
    
      .formulario {
        width: 100%;
        height: auto;
        background-color: white;
      }
      .containerForm{
        width: 100%;
     }
       /* FOOTER *********************************************************** */
       #footerContainer{
        padding-bottom: 50px;
      }
    }
    
    @media (max-width: 380px) {
      .botonEnviar {
        font-size: 1.2rem;
      }
    }
    @media (max-width: 320px) {
      .informate {
        font-size: 1.8rem;
      }
    }