/*Colores*/
:root{
    --yellow_interlat:#FF7B00;
    --black_interlat:#000;
    --darkgray:#4D5151;
    --lightgray:#E1E1E1;
    --blackgray:#ACACAC;
    --white:#fff;
    --black:#000;
    /*
    --font_akrobat_n:'Akrobat', sans-serif;
    --font_akrobat_l:'Akrobat Light', sans-serif;
    --font_akrobat_b:'Akrobat Bold', sans-serif;
    --font_segoe: Segoe UI,Frutiger,Frutiger Linotype,Dejavu Sans,Helvetica Neue,Arial,sans-serif;
    --shadow_10:rgba(0,0,0,.1);
    --shadow_20:rgba(0,0,0,.2);
    --shadow_30:rgba(0,0,0,.3);
    */
  }
body{
  font-family: 'Century_Gothic', sans-serif; 
  font-weight: 200;
}
*{font-family: 'Century_Gothic', sans-serif;font-weight: 200;}
img {pointer-events: none;}
.text-justify{
  text-align: justify !important;
}
.font_1-3{
  font-size: clamp(1rem, 5vw, 1.3rem);
  line-height: 1.5rem;
}
.font_1-4{
  font-size: clamp(1rem, 5vw, 1.4rem);
}
.font_1-5{
  font-size: clamp(1rem, 5vw, 1.5rem);
}
.font_2{
  font-size: clamp(1rem, 5vw, 2rem);
}
.font_2-5{
  font-size: clamp(1rem, 5vw, 2.5rem);
}
.font_3{
  font-size: clamp(1.5rem, 5vw, 3rem);
}
.font_3-5{
  font-size: clamp(1.5rem, 5vw, 3.5rem);
}
.font_4{
  font-size: clamp(2rem, 5vw, 4rem);
}
.font_4-5{
  font-size: clamp(2rem, 5vw, 4.5rem);
}
.font_5{
  font-size: clamp(2rem, 5vw, 5rem);
}
.font_5-5{
  font-size: clamp(2rem, 5vw, 5.5rem);
}
.font_6{
  font-size: clamp(2rem, 5vw, 6rem);
}
/*font weight*/
.font_centuryg_b{
  font-family: 'Century_Gothic', sans-serif;
  font-weight: 700;
}
.font_centuryg_n{
  font-family: 'Century_Gothic', sans-serif; 
  font-weight: 200;
}
/*font colors*/
.font_interlat_y{
  color: var(--yellow_interlat);
}
.font_interlat_w{
  color: var(--white);
}
.font_interlat_b{
  color: var(--black);
}
/*font convination*/
.font_centuryg_by{
  font-family: 'Century_Gothic', sans-serif;
  font-weight: 700;
  color: var(--yellow_interlat);
}
.font_centuryg_bw{
  font-family: 'Century_Gothic', sans-serif;
  font-weight: 700;
  color: var(--white);
}
/*background colors*/
.bk_yellow{
  background: var(--yellow_interlat);
}
.bk_gray{
  background: var(--blackgray);
}
.bk_lightgray{
  background: var(--lightgray);
}
.bk_black{
  background: var(--black);
}
.bk_white{
  background: var(--white);
}
/*Desactivar estilos predeterminados enlaces*/
    a{text-decoration: none; color: var(--black);}
    a:hover{text-decoration: none;}
.bk_image_r{
  background-size: cover;
  background-repeat: no-repeat;
  background-position: right;
}
.bk_image_c{
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.bk_image_l{
  background-size: cover;
  background-repeat: no-repeat;
  background-position: left;
}