/** Autor: Carlos Morales Ormeño **/
/** Fecha: 18 de octubre de 2023 **/
/** Archivo de Helpers **/

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
  /*--Fonts--*/
  --primary-font: 'Poppins', sans-serif;
  ;
  /*--Colors--*/
  --color-black: #000000;
  --color-white: #FFFFFF;
}

h1, h4, h5 {
  font-weight: 500;
}

a {
  color: var(--color-black);
  text-decoration: none;
}


h3 {
  font-size: 1.5rem;
}

.gradient-font {
  background: -webkit-linear-gradient(left, #fab334, #e52629, #4daaed);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-shadow {
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.8);
}



@keyframes FadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@-moz-keyframes FadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@-webkit-keyframes FadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@-o-keyframes FadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@-ms-keyframes FadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.fw-900 {
  font-weight: 900 !important;
}

.fw-800 {
  font-weight: 800 !important;
}

.fw-700 {
  font-weight: 700 !important;
}

.fw-600 {
  font-weight: 600 !important;
}

.fw-500 {
  font-weight: 500 !important;
}

.fw-400 {
  font-weight: 400 !important;
}

.fw-300 {
  font-weight: 300 !important;
}

.ft-36 {
  font-size: 36px !important;
}

.ft-34 {
  font-size: 34px !important;
}

.ft-32 {
  font-size: 32px !important;
}

.ft-28 {
  font-size: 28px !important;
}

.ft-24 {
  font-size: 24px !important;
}

.ft-20 {
  font-size: 20px !important;
}

.ft-18 {
  font-size: 18px !important;
}

.ft-16 {
  font-size: 16px !important;
}

.ft-15 {
  font-size: 15px !important;
}

.ft-14 {
  font-size: 14px !important;
}

.ft-13 {
  font-size: 13px !important;
}

.ft-12 {
  font-size: 12px !important;
}

.ft-11 {
  font-size: 11px !important;
}

.ft-10 {
  font-size: 10px !important;
}

.text-height-min {
  line-height: 1 !important;
}

.text-height-0 {
  line-height: 1.2 !important;
}

.text-height-1 {
  line-height: 1.5 !important;
}

.text-height-2 {
  line-height: 2 !important;
}

.text-height-3 {
  line-height: 2.5 !important;
}

.text-height-4 {
  line-height: 3 !important;
}

.text-height-5 {
  line-height: 3.5 !important;
}

.pr-6 {
  padding-right: 6rem;
}

.pr-7 {
  padding-right: 7rem;
}

.pr-8 {
  padding-right: 8rem;
}

.pl-6 {
  padding-left: 6rem;
}

.pl-7 {
  padding-left: 7rem;
}

.pl-8 {
  padding-left: 8rem;
}

.text-justify {
  text-align: justify !important;
}

.text-muted {
  color: #979797 !important;
}

.text-orange {
  color: #FF3131 !important;
}

.text-while {
  color: #fff !important;
}

.text-black {
  color: #000000 !important;
}

.text-gray {
  color: #4d4d4d !important;
}

.text-primary {
  color: #00507D !important;
}

.text-lowercase {
  text-transform: lowercase;
}

.text-uppercase {
  text-transform: uppercase;
}

.cristal {
  -webkit-backdrop-filter: saturate(180%) blur(20px) !important;
  backdrop-filter: saturate(180%) blur(7px) !important;
  background: var(--localnav-background-stuck, rgba(255, 255, 255, 0.9)) !important;
  background-color: rgb(255 255 255 / 45%) !important;
}

.flex {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}

.header-buttons {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}