  :root {
    --main-tph-color: #36B0C9;
    --tph-amarillo: #f6c876;
    --tph-azul: #36B0C9;
    --tph-negro: #1D1D1B;
    --tph-blanco: #ffffff;
    --tph-cuenta-atras: #e8871b;
    --tph-form-label: #000000;
    --tph-form-placeholder: #868686;
    --tph-form-input: #000;
    --tph-form-bg: #fff;
    --tph-font-body: 'montserratmedium';
    --tph-font-aberforthrough: 'aberforthrough';
    --tph-font-montserratmedium: 'montserratmedium';
    --tph-font-stempelgaramondprobolditalic: 'stempelgaramondprobolditalic';
    --tph-font-stempelgaramondprobold: 'stempelgaramondprobold';
    --tph-font-typold-regular: 'typold-regular';
    --font-textos: 'stempelgaramondprobold';

    /************* VARIABLES DE COLOR *************/
    /* Fondo del contenedor del carrusel */
    --tph-carousel-bg-color: #EEE;
    /* Fondo de las celdas (si no hay imagen) */
    --tph-carousel-cell-bg-color: #8C8;
    /* Color del texto descriptivo */
    --tph-carousel-text-color: #666;
    /* Color del título del servicio */
    --tph-carousel-title-color: #000;
    /* Color de la línea horizontal */
    --tph-carousel-hr-color: #CCC;

    /************* VARIABLES DE TAMAÑO *************/
    /* Ancho de las celdas del carrusel */
    --tph-carousel-cell-width: 600px;
    /* Altura de las celdas del carrusel */
    --tph-carousel-cell-height: 443px;
    /* Margen derecho de las celdas */
    --tph-carousel-cell-margin-right: 10px;
    /* Bordes redondeados de las celdas */
    --tph-carousel-border-radius: 5px;

    /************* VARIABLES DE TIPOGRAFÍA *************/
    /* Familia de fuente */
    --tph-carousel-font-family: sans-serif;
    /* Tamaño del título del servicio */
    --tph-carousel-title-font-size: 18px;
    /* Tamaño de la fuente de la descripción */
    --tph-carousel-description-font-size: 14px;
    /* Espacio arriba de la descripción */
    --tph-carousel-description-margin-top: 10px;
    /* Margen arriba y abajo de la línea horizontal */
    --tph-carousel-hr-margin: 5px 0;

  }

  /********************************************************************* fuentes *********************************************************/

  @font-face {
    font-family: 'aberforthrough';
    src: url('../../../fonts/aberforth-rough.woff2') format('woff2'),
      url('../../../fonts/aberforth-rough.woff') format('woff');
    font-weight: normal;
    font-style: normal;
  }

  @font-face {
    font-family: 'montserratmedium';
    src: url('../../../fonts/montserrat-medium.woff2') format('woff2'),
      url('../../../fonts/montserrat-medium.woff') format('woff');
    font-weight: normal;
    font-style: normal;
  }

  @font-face {
    font-family: 'stempelgaramondprobolditalic';
    src: url('../../../fonts/stempel-garamond-pro-bold-italic.woff2') format('woff2'),
      url('../../../fonts/stempel-garamond-pro-bold-italic.woff') format('woff');
    font-weight: normal;
    font-style: normal;
  }

  @font-face {
    font-family: 'stempelgaramondprobold';
    src: url('../../../fonts/stempel-garamond-pro-bold.woff2') format('woff2'),
      url('../../../fonts/stempel-garamond-pro-bold.woff') format('woff');
    font-weight: normal;
    font-style: normal;
  }

  @font-face {
    font-family: 'typold-regular';
    src:
      url('../../../fonts/typold-book500-webfont.woff2') format('woff2'),
      url('../../../fonts/typold-book500-webfont.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
  }

  .font-body {
    font-family: var(--tph-font-body);
  }

  .font-aberforthrough {
    font-family: var(--tph-font-aberforthrough);
  }

  .font-montserratmedium {
    font-family: var(--tph-font-montserratmedium);
  }

  .font-stempelgaramondprobolditalic {
    font-family: var(--tph-font-stempelgaramondprobolditalic);
  }

  .font-stempelgaramondprobold {
    font-family: var(--tph-font-stempelgaramondprobold);
  }

  .font-typold-regular {
    font-family: var(--tph-font-typold-regular);
  }

  .font-arial {
    font-family: Arial, Helvetica, sans-serif;
  }

  .font-georgia {
    font-family: 'georgia';
  }

  .font-georgia-i {
    font-family: 'georgiai';
  }

  .font-typold {
    font-family: 'typold-regular';
  }

  html,
  body {
    overflow-x: hidden;
  }

  body {
    font-family: var(--tph-font-body);
    color: rgb(0, 0, 0);
    background-color: var(--main-tph-color);
  }

  img,
  iframe {
    max-width: 100%;
  }

  .bg-promo {
    background-color: var(--tph-azul);
  }

  .bg-menu {
    background-color: var(--tph-rojo);
  }

  .bg-amarillo {
    background-color: var(--tph-amarillo);
  }

  .bg-azul {
    background-color: var(--tph-azul);
  }

  .bg-negro {
    background-color: var(--tph-negro);
  }

  .bg-blanco {
    background-color: var(--tph-blanco);
  }

  .color-amarillo {
    color: var(--tph-amarillo);
  }

  .color-azul {
    color: var(--tph-azul) !important;
  }

  .color-negro {
    color: var(--tph-negro);
  }

  .color-blanco {
    color: var(--tph-blanco);
  }

  .cursor-blocked {
    cursor: not-allowed;
  }

  .cursor-pointer {
    cursor: pointer;
  }

  .alert-error {
    margin-bottom: .5rem;
  }

  .cookies {
    z-index: 99999;
  }

  @keyframes spin {
    0% {
      transform: rotate(0deg);
    }

    100% {
      transform: rotate(360deg);
    }
  }

  /********************************************************************* Botones *********************************************************/

  .btn-formulario {
    background-color: var(--tph-negro);
    color: var(--tph-blanco);
    font-family: 'stempelgaramondprobolditalic';
    /* font-size: 2.5rem; */
    font-size: 2.6rem;
    padding: 0rem 0rem;
    border-radius: 5rem;
    width: 90%;
  }

  .btn-formulario:hover {
    background-color: var(--tph-dorado);
    color: black;
  }

  .btn-formulario:focus {
    background-color: var(--tph-amarillo);
    color: rgb(255, 255, 255);
  }

  .btn-promo {
    background-color: rgb(0, 0, 0);
    color: #fff;
  }

  .btn-promo:hover {
    background-color: rgb(255, 255, 255);
    color: rgb(0, 0, 0);
  }

  .btn-promo:focus {
    background-color: rgb(255, 255, 255);
    color: rgb(0, 0, 0);
  }

  .btn-round-negativo {
    border-radius: 1.3rem !important;
    background-color: rgb(255, 255, 255);
    color: rgb(0, 0, 0);
  }

  .gradiente-texto {
    background-clip: text;
    -webkit-background-clip: text;
    /* Para navegadores basados en WebKit, como Chrome y Safari */
    color: transparent;
    background-image: linear-gradient(to right, #00B09F, #004862);
  }

  #inicio .btn-custom {
    background-color: var(--tph-negro);
    border-radius: 50px;
    color: var(--tph-blanco);
    padding: 10px 20px;
    font-size: 1.5rem;
    transition: 0.3s color, 0.3s background-color;
  }

  #inicio .btn-custom:hover {
    color: var(--tph-negro);
    background-color: var(--tph-blanco);
  }

  /********************************************************************* scrollbar css *********************************************************/
  /* width */
  ::-webkit-scrollbar {
    width: 5px;
  }

  /* Track */
  ::-webkit-scrollbar-track {
    background: white;
  }

  /* Handle */
  ::-webkit-scrollbar-thumb {
    background: var(--tph-dorado);
  }

  /* Handle on hover */
  ::-webkit-scrollbar-thumb:hover {
    background: black;
  }

  .alert {
    font-family: 'typold-regular';
  }

  /********************************************************************************** MENU  *******************************************************************************/

  #logo {
    max-width: 100px;
  }

  #accesoMicuenta {
    z-index: 99999;
    font-family: 'typold-regular';
  }

  #mainMenu {
    font-family: 'typold-regular';
    text-transform: uppercase;
    font-weight: bold;
    padding-top: 0%;
    padding-bottom: 0%;
    position: relative;
  }

  #mainMenu .container-fluid {
    background-color: var(--tph-negro);
    min-height: 4rem;
    color: var(--tph-blanco);
    z-index: 1;
  }

  .navbar-dark .navbar-nav .nav-link {
    color: var(--tph-blanco);
  }

  .navbar-dark .navbar-brand {
    color: var(--tph-blanco);
  }

  .navbar-dark .navbar-nav .nav-link.active,
  .navbar-dark .navbar-nav .show>.nav-link {
    color: white;
  }

  .fixed-top {
    position: fixed !important;
  }

  /********************************************************************************** header  *******************************************************************************/



  /********************************************************************************** mecánica  *******************************************************************************/



  /********************************************************************************** countdown  *******************************************************************************/

  #countdown {
    font-family: var(--tph-font-special);
    font-size: 2rem;
  }

  #countdown .wrapper {
    text-align: center;
  }

  #countdown .time {
    color: var(--tph-amarillo);
    font-size: 3rem;
    padding: 0.25rem;
  }

  #countdown .label {
    font-size: 1.8rem;
    display: block;
    color: var(--tph-amarillo);
  }

  #countdown svg {
    font: bold 5rem;
    width: 100%;
    height: 120px;
  }

  #countdown text {
    fill: none;
    stroke: var(--tph-amarillo);
    stroke-width: 6px;
    stroke-linejoin: round;
    animation: 2s pulsate infinite;
  }

  @keyframes pulsate {
    50% {
      text-shadow: 4px 4px #fff;
    }
  }

  /********************************************************************************** participa  *******************************************************************************/

  form#formReg_l label {
    display: block;
    color: var(--tph-form-label);
  }

  form#formReg_l input {
    border-radius: 5rem;
    border-color: black;
  }

  form#formReg_l .form-control {
    color: var(--tph-form-input);
    background-color: var(--tph-form-bg);
    font-size: 1rem;
    font-family: var(--font-textos);
  }

  form#formReg_l .form-select {
    border-color: black;
    background-color: var(--tph-form-bg);
    font-family: var(--font-textos);
    border-radius: 5rem;

  }

  form#formReg_l label.custom-control-label {
    display: block !important;
    color: var(--tph-form-label);
    font-size: 1rem;
  }

  form#formReg_l .form-control::placeholder {
    /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: var(--tph-form-placeholder);
    opacity: 1;
    /* Firefox */
  }

  form#formReg_l .form-control:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: var(--tph-form-placeholder);
  }

  form#formReg_l .form-control::-ms-input-placeholder {
    /* Microsoft Edge */
    color: var(--tph-form-placeholder);
  }

  form#formReg_l .form-select::placeholder {
    /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: var(--tph-form-placeholder);
    opacity: 1;
    /* Firefox */
  }

  form#formReg_l .form-select:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: var(--tph-form-placeholder);
  }

  form#formReg_l .form-select::-ms-input-placeholder {
    /* Microsoft Edge */
    color: var(--tph-form-placeholder);
  }

  form#formReg_l a {
    color: var(--tph-form-label);
  }

  form option {
    color: #000000;
    font-size: 1rem;
  }

  form option:hover {
    background-color: #ffffff;
  }

  form .input-group-text {
    background: transparent;
    color: #fff;
    border: none;
  }

  form .form-check-input:checked {
    background-color: var(--tph-azul);
    border-color: var(--tph-azul);
  }

  /********************************************************************************** premios  *******************************************************************************/


  /********************************************************************************** contacto  *******************************************************************************/

  .separador {
    height: 50px;
    background-color: var(--tph-amarillo);
    margin-top: -100px;
  }

  #contacto {
    width: 100%;
    background-color: var(--tph-amarillo);
    padding: 1rem;
  }

  #contacto h1 {
    font-size: 4rem;
  }

  #contacto h2 {
    font-size: 2rem;
  }

  .tel_promo a {
    text-decoration: none;
    color: var(--tph-negro);
    font-size: 1.5rem;
    text-align: end;
  }

  .email_contacto a {
    text-decoration: none;
    color: var(--tph-negro);
    font-size: 1.5rem;
    text-align: start;
  }

  /********************************************************************************** footer  *******************************************************************************/

  footer {
    background-color: var(--tph-negro);
    position: sticky;
    font-family: 'typold-regular';
  }

  footer ul {
    list-style: none;
  }

  footer a {
    color: rgb(255, 255, 255);
    font-size: 1.1rem;
    text-decoration: none;
    transition: 0.3s color;
  }

  footer a:hover {
    color: black;
  }

  footer .small {
    color: rgb(255, 255, 255);
    font-size: 1.1rem;
  }

  footer img .small {
    max-width: 1.5rem;
  }

  .logoBonduellPie {
    max-width: 8rem;
  }

  .pull-right {
    float: right;
  }

  .xs-d-flex {
    flex-direction: column;
  }

  /********************************************************************************** Area personal  *******************************************************************************/
  .card-width {
    min-width: 10rem;
  }

  .flex-adapt {
    flex-direction: column !important;
  }

  /********************************************************************************** textos  *******************************************************************************/

  /********************************************************************************** media query  *******************************************************************************/
  @media (min-width: 636px) {}

  @media (min-width: 768px) {}

  @media (min-width: 992px) {}

  @media (min-width: 1024px) {}

  @media (min-width: 1200px) {}

  @media (min-width: 1400px) {
    #inicio p {
      font-size: 4rem !important;
    }

    #mecanica h1 {
      font-size: 8rem !important;
    }

    .tel_promo a {
      font-size: 4.5rem;
    }
  
    .email_contacto a {
      font-size: 3rem;
    }

    #contacto h2 {
      font-size: 3rem !important;
    }
  }

  @media (min-width: 1600px) {


    #mainMenu,
    section,
    header,
    footer {
      max-width: 1920px;
      margin: 0 auto;
    }

  }

  @media(min-width:1800px) {}