
/* @import url('https://fonts.googleapis.com/css2?family=Libre+Franklin:ital,wght@0,100..900;1,100..900&display=swap');
.libre-franklin{
  font-family: "Libre Franklin", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
} */
/* 
@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap');

.font-nunito-sans{
  font-family: "Nunito Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 200;  
  font-style: normal;
  font-variation-settings:
    "wdth" 100,
    "YTLC" 500;
}

.font-nunito {
  font-family: "Nunito", sans-serif;
  font-optical-sizing: auto;
  font-weight: 200;
  font-style: normal;
} */
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

.roboto-thin {
  font-family: "Roboto", serif;
  font-weight: 100;
  font-style: normal;
}

.roboto-light {
  font-family: "Roboto", serif;
  font-weight: 300;
  font-style: normal;
}
.roboto-regular {
  font-family: "Roboto", serif;
  font-weight: 400;
  font-style: normal;
}

.roboto-bold {
  font-family: "Roboto", serif;
  font-weight: 700;
  font-style: normal;
}

.roboto-black {
  font-family: "Roboto", serif;
  font-weight: 900;
  font-style: normal;
}

:root {
  --color_primary: #4CCABF;
  --color_secondary: #2E3E46;
  --color_red: #D92B04;
  --color_blue: #0070F2;
  --color_blue_light: #5386E4; 
  --color_info: #00AFF0; 
  --color_purple: #5B51D8;
  --color_orange:#E76500;
  --color_green: #36A41D;
  --color_yellow: #FFC800;  
  --color_grey: #7e7e7e;
  --color_greydark: #4B4B4B;
  --color_light: #F6F6F6;
  --color_cyan:#00ffff;
  --color_cyan_blue:#3F89A6;
  --font_primary: "Roboto", serif, sans-serif;  
}
::-moz-selection {
  background: #ffcf21b9;
}

::selection {  
  background: #ffcf21b9;
}


html, body {
    font-family: var(--font_primary);
    font-weight: 400;    
    font-style: normal;
    /* font-size: 1.1rem; */
    /* line-height: 1.3rem; */
    
}
/* body{
  margin-top: 80px !important;
} */

html {
  scroll-behavior: auto !important;
}

#preloader{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 100;
  background: white;
  display: flex;
  justify-content: center;
  align-items: center;

}

.loader {
  border: 16px solid #f3f3f3; /* Light grey */
  border-top: 16px solid var(--color_primary); /* Blue */
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: spin 2s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
#content {
  display: none; /* Hide content initially */
}

.fw-bolder{
    font-weight: 500 !important;
}
.fs-bold{
    font-weight: 700 !important;
 }

 .fs-extraBold{
    font-weight: 800 !important;
 }

.bg_primary {
  background: var(--color_primary) !important;
}
.bg_secondary {
  background: var(--color_secondary) !important;
}
.bg_black {
  background: black;
}
.bg_red,.bg_danger  {
  background: var(--color_red) !important;
}
.bg_blue {
  background: var(--color_blue) !important;
}
.bg_cyan {
  background: var(--color_cyan) !important;
}

.bg_cyan-azulado {
  background: var(--color_cyan_blue) !important;
}

.bg_info {
  background: var(--color_blue_light) !important;
}

.bg_blue_light {
    background: var(--color_blue_light) !important;
  }
.bg_yellow, .bg_warning {
  background: var(--color_yellow) !important;
}

.bg_success {
  background: var(--color_green) !important;
}

.bg_purple {
  background: var(--color_purple) !important;
}
.bg_green {
  background: var(--color_green) !important;
}
.bg_orange {
  background: var(--color_orange);
}
.bg_grey {
  background: var(--color_grey);
}
.bg_light {
  background: var(--color_light);
}

.bg_cyan_blue {
  background: var(--color_cyan_blue);
}

.bg_creme {
  background: #F1ECE9;
}
.bg-white-transparent {
  background-color: rgba(255, 255, 255, 0.95);
}
.border-primary {
  border-color: var(--color_primary) !important;
}
.border-cyan {
  border-color: var(--color_cyan) !important;
}
.border-blue {
  border-color: var(--color_blue) !important;
}
.border-purple {
  border-color: var(--color_purple) !important;
}

.border-orange {
  border-color: var(--color_orange) !important;
}

.border-cyan-blue {
  border-color: var(--color_cyan_blue) !important;
}

.border-start.border-primary  {
  border-color: var(--color_primary) !important;
}

.border-start.border-secondary  {
  border-color: var(--color_secondary) !important;
}

.border-start.border-primary  {
  border-color: var(--color_primary) !important;
}

.border-start.border-blue  {
  border-color: var(--color_blue) !important;
}

.border-start.border-blue-light {
  border-color: var(--color_blue_light) !important;
}

.border-start.border-info {
  border-color: var(--color_info) !important;
}

.border-start.border-purple {
  border-color: var(--color_purple) !important;
}

.border-start.border-orange {
  border-color: var(--color_orange) !important;
}

.border-start.border-grey {
  border-color: var(--color_grey) !important;
}

.border-start.border-cyan  {
  border-color: var(--color_cyan) !important;
}

.border-start.border-cyan-blue  {
  border-color: var(--color_cyan_blue) !important;
}

.border-start.border-info  {
  border-color: var(--color_blue_light) !important;
  /* border-left: var(--color_cyan); */
}

.line-title{
  height: 5px;
  margin-top: 15px;
  margin-bottom: 15px;
  display: block;
}

.bg_gradient_blue {
  background: rgb(118,146,224);
  background: linear-gradient(180deg, rgba(118,146,224,1) 0%, rgba(4,32,104,1) 100%);
}
/* .bg_gradient_blue_green {
    background: rgb(118,146,224);
    background: linear-gradient(180deg, rgba(118,146,224,1) 0%, rgba(4,32,104,1) 100%);
  } */

.bg_gradient_blue_dark{
  background: rgb(40,48,93);
  background: linear-gradient(94deg, rgba(40,48,93,1) 0%, rgba(69,86,219,1) 100%);
}
.bg_gradient_blue_green{
  background: rgb(38,51,126);
  background: linear-gradient(94deg, rgba(38,51,126,1) 0%, rgba(34,190,122,1) 100%);
}

.border-success {
  border-color: var(--color_green) !important;
}
.border-blue-light {
  border-color: var(--color_blue_light) !important;
}

.rounded-small {
  border-radius: 8px;
 }

.rounded-regular {
 border-radius: 15px;
 overflow: hidden;
}

.block_100 {
  height: 100px;
}
.block_200 {
  height: 200px;
}

.block_350 {
  height: 350px;
}

.block_400 {
  height: 400px;
}


.bg_cover {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.bg_contain {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center top;
}
.bg_cover_center {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.bg_cover_bottom {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center bottom;
}
.navbar-collapse {
  /* height: 85px !important; */
}
.navbar-nav {
  height: 100%; 
}

.navbar-nav .nav-item  {
  padding: 1px 15px;
  display: flex;
  align-items: center;
}
.navbar-nav a {
  text-transform: uppercase;
  display: block;
  font-size: 1.2rem;

}
.navbar-nav a:hover, .navbar-nav li:hover a, .navbar-nav li.active a {
  color: white;
}
.navbar-nav li:hover, .navbar-nav li.active{
 background-color: var(--color_secondary);

}

.panel {
  height: 680px; 
}

.panel_mobile {
  height: 550px; 
}

.panel_pages {
  height: 500px;
}
.panel_regular {
  height: 750px;
}
.panel_detail {
  height: 300px;
}

.panel_programas {
  position: relative;
  min-height: 600px;
  
}
.panel_portada {
  position: relative;
  min-height: 600px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.panel_portada::before{
  content: " ";
  width: 100%;
  height: 10px;
  position: absolute;
  bottom: 0;
  background: red url("../images/line-color.png") center no-repeat;
  background-size: 100% 10px;
}


h1,h2,h3,h4,h5,h6 {
    /* line-height: 1.2em; */   
    font-family: var(--font_primary);
    letter-spacing: -0.05rem;
    font-weight: 700;
    
}

rojo {
  color: var(--color_primary) !important ;
}
verde {
  color: var(--color_green) !important ;
}
amarillo {
  color: var(--color_yellow) !important ;
}
azul {
  color: var(--color_blue) !important ;
}
purpura {
  color: var(--color_purple) !important ;
}
gris {
  color: #8E8E8E !important ;
}
blanco {
  color: #ffffff !important ;
}


.text-primary {
  color: var(--color_primary) !important ;
}
.text-secondary {
  color: var(--color_secondary) !important ;
}
.text-danger {
  color: var(--color_red) !important ;
}
.text-success {
  color: var(--color_green) !important ;
}



.text-warning {
  color: var(--color_yellow) !important;
}
.text-purple {
  color: var(--color_purple) !important;
}
.text-blue {
  color: var(--color_blue) !important;
}
.text-blue-light {
  color: var(--color_blue_light) !important;
}
.text-cyan {
  color: var(--color_cyan) !important ;
}

.text-cyan-azulado {
  color: var(--color_cyan_blue) !important ;
}
.text-info {
  color: var(--color_info) !important ;
}

.text-orange {
  color: var(--color_orange) !important ;
}

.text-grey{
  color: var(--color_grey) !important;
}
.text-gray {
  color: #8E8E8E;
}

.text-light {
  color: var(--color_light) !important;
}

.fw-normal {
  font-weight: 700 !important;
}
/* .fw-bold {
  font-weight: 800 !important;
} */
.font-bolder {
  font-weight: 700 !important;
}

.fs-7{
  font-size: .8rem;
}



a {
  color: inherit;
  text-decoration: none;
}


a.text-success:hover {
    color: #116c57 !important;
}

a.link-border-success:link {
    padding-bottom: 5px;
    border-bottom: 1px dotted var(--color_green);
}
a.link-border-success:hover {
    border-color: #116c57;
}

.carousel-control-prev {
  left: -70px;
}
.carousel-control-next {
  right: -70px;
}
.carousel-bn img {
  -webkit-filter: grayscale(100%) opacity(0.5); /* Safari 6.0 - 9.0 */
  filter: grayscale(100%) opacity(0.5);
  transition: filter 0.3s ease, -webkit-filter 0.3s ease;
}

.carousel-bn img:hover {
  -webkit-filter:none;
  filter: none;
}

.zone-title h2, .zone-title h3, .zone-title h3, .zone-title h5  {
  font-weight: 800 !important;
  line-height: 1;
}

.bg_blue_gradient {
  background: rgb(118,146,224);
  background: linear-gradient(180deg, rgba(118,146,224,1) 0%, rgba(4,32,104,1) 100%);
}

.bg_panel {
    background: #000 url('../imgs/bg-banner.jpg') no-repeat center;
    background-size: cover;
}
.bg_white {
    background-color: rgba(255, 255, 255, 0.7);
}
.border_white {
    border: 7px solid #fff;
}

.bg_page {
  background-position: center;
  background-size: cover;
}


.carousel-control-prev {
  left: -70px;
}
.carousel-control-next {
  right: -70px;
}

.margin_top_160{
  /* transform: translateY(-200px); */
  margin-top: -120px;
}

.margin_top_200{
  margin-top: -200px;
}

.margin_top_300{
  margin-top: -300px;
}

.margin_top_n50{
    transform: translateY(-200px);
    margin-bottom: -200px;
}

.bg-white-transparent {
  background-color: rgba(255, 255, 255, 0.384);
}
.form-floating {
  background-color: rgba(255, 255, 255, 1);
}

.panel_portada {
  min-height: 600px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

label.is-invalid {
    color: #00ff5c; 
    font-size: 0.8rem;
    padding-left: 5px;
}

.btn-orange{
  background-color: var(--color_orange);
  border-width: 0;
  border-radius: 0px;
  /* display: flex; */
  align-items: center;
  color: white;
}

.btn-orange:hover{
  background-color: #ff7c18;
  color: white;
  
}

.btn-send{
  background-color: var(--color_green);
  border-radius: 20px;
  display: flex;
  align-items: center;
}

.text-green {
  color: var(--color_green);
}
.btn-send img, .btn-confirm img {
    --display: none;
}
.btn-send[disabled], .btn-confirm[disabled] {
    opacity:0.8;	
}
.btn-send[disabled] img, .btn-confirm[disabled] img{
    display: inline;
}
.btn-red {
  background-color: var(--color_red);
}
.btn-red:hover {
  background-color: rgb(224, 28, 14);
}

.btn-primary{
  background-color: var(--color_primary);
}
.btn-primary:hover{
  background-color: var(--color_cyan);
}

.btn-success{
  background-color: var(--color_green);
}

.btn-warning{
  background-color: var(--color_yellow);
}

.btn-info{
  background-color: var(--color_info);
}

.btn-danger{
  background-color: var(--color_red);
}

.btn-secondary{
  background-color: var(--color_secondary);
}

.btn-purple{
  background-color: var(--color_purple);
}

.z-index-100 {
  z-index: 1000;
}
.btn-port{
  z-index: 5;
  left: 0;
  bottom: 20px;
}

.btn-port img{
  width: 150px;
}

.btn-lang img {
  transition: all .1s ease-in-out;
}
.btn-lang:hover img, .btn-lang.show img {
  /* transition: filter 0.3s ease;  */
  filter: brightness(0) invert(1);
}

.icon-box {
    width: 50px;
    height: 20px;
    /* transform: scale(1.5); */
}
.icon-loading {
    width: 30px;
    height: 20px;
    transform: scale(1.5);
}

.dropdown:hover .dropdown-menu {
  display: block;
  margin-bottom: 0;
  position: absolute;
  top: 100%;
  left: 0;
  border: 0;
  border-radius: 0;
  margin-top: 0;
  background: #2E3E46FA;
}
.dropdown-menu{
  padding: 0;
}
.dropdown-menu li a {
  padding-top: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid #cccccc4f;  
}
.dropdown-menu li a:hover {
  color: var(--color_secondary) !important;
}


.swal2-popup {
    border-radius: 0 !important;
}
.font_bold {
    font-weight: 700;
}
.form-floating > .form-control {
    padding: .5rem .0rem;
    border:0px;
    border-bottom: 2px solid rgb(219, 219, 219);
  }
  .form-floating > .form-select{
    border:0px;
    border-bottom: 2px solid rgb(219, 219, 219);
    padding-left: 0;
    box-shadow: none;
  }
  .form-floating > label {    
    padding: 1rem .5rem;
}
.form-floating > .form-control, .form-floating > .form-select {
    /* height: calc(3.2rem + 2px); */
    border-radius: 0;
    color:#0070f3;
    font-weight: 700;
    background-color: transparent;
  }
.form-floating > .form-control:focus ~ label, .form-floating > .form-control:not(:placeholder-shown) ~ label, .form-floating > .form-select ~ label {
    opacity: .55;
    transform: scale(.8) translateY(-.8rem) translateX(.0rem);
  }

.form-control:focus {    
    box-shadow: none;
    border-bottom: 2px solid #E76500!important;
}
  

  .form-control.is-invalid:focus, .was-validated .form-control:invalid:focus {
    /* border-color: #dc3545;*/
      border-bottom-color: rgb(220, 53, 69); 
      box-shadow:none; /* 0 0 0 0 rgba(220,53,69,.25);*/
  }

  .form-select.is-invalid:focus, .was-validated .form-select:invalid:focus {
    border-color: #dc354600;
    /* box-shadow: 0 0 0 .25rem rgba(220,53,69,.25); */
    box-shadow: none;
}

.form-label {
  margin-bottom: .4rem ;
  font-size: .7rem;
  color: red;
}
  .gj-textbox-md {
    border: none;
    border-bottom: 2px solid rgb(219 219 219);
    display: block;
    /* font-family: Helvetica,Arial,sans-serif; */
    font-size: 16px;
    /* line-height: 16px; */
    padding: 21px 0;
    /* margin: 0; */
    width: 100%;
    background: 0 0;
    text-align: left;
    /* color: rgba(0,0,0,.87); */
    border-radius: 0;
}

.gj-datepicker-md [role=right-icon] {    
  top: 16px;   
}

.ui-datepicker{
  border-radius: 0 !important;
}
.ui-datepicker .ui-datepicker-title select {
  font-size: 0.8em !important;
  padding: 3px;
}

.ui-datepicker table {  
  font-size: .8em !important;  
}

.scrolling-link{
  animation: scrollRightLeft 0.5s linear infinite alternate;
  display: none;
}

.content-html h2, 
.content-html h3,
.content-html h4,
.content-html h5 {
  margin-bottom: 1rem;
  font-weight:  normal;
}

.content-html h2 {
  font-size: 2.5rem !important;
  font-weight: 300;
  
}
.content-html p,
.content-html a {
font-size: 1.25rem !important;
}

.content-html a {
color: var(--color_green);
border-bottom: 1px dotted;
}
  
.content-html a:hover {
  color: var(--color_blue_light);
border-bottom: 1px dotted;
  }
.details-html { 

  font-size: 1.4rem;
  font-weight: 300;
  line-height: 1.6;

}
.details-html  h1, 
.details-html  h2, 
.details-html  h3,
.details-html  h4,
.details-html  h5 {
  margin-bottom: 1.5rem;
  font-weight:  300;
}

.details-html  h1 {
  font-size: 3.3rem;
}
.details-html  h2 {
  font-size: 2.7rem;
}

.details-html  h3 {
  font-size: 2.2rem;
}
.details-html  h4 {
  font-size: 1.8rem;
}
.details-html  h5 {
  font-size: 1.5rem;
}

.details-html img {
  width: 100% !important;
  height: auto !important;
}

blockquote, .details-html blockquote {
  font-style: italic;
  margin: revert;
  padding: 2px 0;
  border-width: 0;
  border-left: 5px solid #ccc;
  padding-left: 20px;
  padding-right: 8px; 

}

blockquote p:last-child {
  margin-bottom: 0;
}

.cke_contents_ltr blockquote {
  padding-left: 20px;
  padding-right: 8px;
  border-left-width: 5px;
}


.box-img-program {
  min-height: 380px; 
}

.box-img-details {
  min-height: 550px; 
}
.box-block {
  height: 300px;
}
.mt-n25{
  margin-top: -25px;
}

@keyframes scrollRightLeft {
    0% {
      right: 40px; /* Empieza en la posición original */
    }
    100% {
      right: 60px; 
       /* calc(100% - 100px); Termina en la posición derecha (menos el ancho del enlace) */
    }
}
  
  .table-features{
  
  }
  
  .table-features tr {
    border-bottom: 1px solid rgb(211, 211, 211);
  }
  .table-features tr td:first-child {
   text-align: left;
  }
  
  .table-features td {
    padding: 10px;
    text-align: center;
    line-height: 1;
    font-size: 0.95rem;
  }
  
  .size-company {
    position: relative;
    margin-top: -30px;
    margin-bottom: -15px;
  }
  
  .list-group-item a {
    color: var(--color_grey);
  }

  .list-group-item a:hover {
    color: black;
  }

  .list-group-item.active.bg_green {
    background-color: var(--color_green);
    border-color: var(--color_green);

  }

  .list-group-item.active.bg_blue_light{
    background-color: var(--color_blue_light);
    border-color: var(--color_blue_light);

  }

  .list-group-item.active a {
    color: white !important;
  }

  .btn-float-close {
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgb(186, 186, 186);
    color: white;
    /* border-radius: 50%; */
    width: 30px;
    height: 20px;
    right: 0;
    top: -1px;
    font-size: 1rem !important;
    position: absolute;
  }
  .btn-float-close:hover {
    color: white;
  }

  .whatsApp-position {
    bottom: 25px;
    right: 10px;
    z-index: 99;
  }
  .whatsApp-float {
    background: #2cb741;
    height: 70px;
    width: 70px;
    
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .whatsApp-icon {
    color: #fff;
    font-size: 3rem;
    width: 50px;
    height: 50px;
  }

  /*=======  Preloader  =======*/
.preloader {
  background-color: #ffffff;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
}

.preloader .cssload-container {
  display: block;
  width: 97px;
}

.preloader .cssload-loading i {
  width: 19px;
  height: 19px;
  display: inline-block;
  border-radius: 50%;
  background: var(--color_primary);
}

.preloader .cssload-loading i:first-child {
  opacity: 0;
  -webkit-animation: cssload-loading-ani2 0.58s linear infinite;
  animation: cssload-loading-ani2 0.58s linear infinite;
  -webkit-transform: translate(-19px);
  transform: translate(-19px);
}

.preloader .cssload-loading i:nth-child(2),
.preloader .cssload-loading i:nth-child(3) {
  -webkit-animation: cssload-loading-ani3 0.58s linear infinite;
  animation: cssload-loading-ani3 0.58s linear infinite;
}

.preloader .cssload-loading i:last-child {
  -webkit-animation: cssload-loading-ani1 0.58s linear infinite;
  animation: cssload-loading-ani1 0.58s linear infinite;
}
.owl-carousel .owl-stage {
  display: flex;
  /* height: 100%;
  
  align-items: stretch;
  position: absolute; */
}

.owl-item {  
  /* position: absolute; */
}
.news-item {
  height: 100%;
  background-color:#ffffff12;
}

.hvr-grow:hover, .hvr-grow:focus, .hvr-grow:active {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}


@-webkit-keyframes cssload-loading-ani1 {
  100% {
      -webkit-transform: translate(39px);
      transform: translate(39px);
      opacity: 0;
  }
}

@keyframes cssload-loading-ani1 {
  100% {
      -webkit-transform: translate(39px);
      transform: translate(39px);
      opacity: 0;
  }
}

@-webkit-keyframes cssload-loading-ani2 {
  100% {
      -webkit-transform: translate(19px);
      transform: translate(19px);
      opacity: 1;
  }
}

@keyframes cssload-loading-ani2 {
  100% {
      -webkit-transform: translate(19px);
      transform: translate(19px);
      opacity: 1;
  }
}

@-webkit-keyframes cssload-loading-ani3 {
  100% {
      -webkit-transform: translate(19px);
      transform: translate(19px);
  }
}

@keyframes cssload-loading-ani3 {
  100% {
      -webkit-transform: translate(19px);
      transform: translate(19px);
  }
}

.owl-nav {
  display: none !important;
}
.owl-dots {
margin-top: 15px;
}
#zone-solutions button.owl-dot span {
  width: 19px !important;
  height: 19px !important;
}

.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
  background: var(--color_secondary);
}
@media (min-width: 1925px) {
  .panel {
    height: 790px; 
  }
}

@media (max-width: 1400px) {
  .display-1 {

  }
  .display-2 {
    font-size: 3.8rem !important;
  }
  .display-3 {
    font-size: 3.4rem;
  }
  .display-4 {

  }
  .display-5 {
    font-size: 2.6rem !important;
  }
   .display-6 {
    font-size: 2.1rem !important;
  }


  .fs-1 {
    
  }
  .fs-2 {
    
  }
  .fs-3 {
    
  }
  .fs-4 {
    font-size: 1.3rem !important;
  }
  .fs-5 {
    font-size: 1.1rem !important;
  }
  .fs-6 {
    
  }

  .owl-theme .fs-2 {
    font-size: 2.3rem !important;
  }
  

}
@media (max-width: 1280px) {
  .panel {
    height: 500px;
  }
  .box-block {
    height: 260px;
  }

  .display-2 {
    font-size: 3.0rem !important;
  }
  .display-3 {
    font-size: 2.4rem;
  }
  .display-4 {

  }
  .display-5 {
    font-size: 2.0rem !important;
  }
   .display-6 {
    font-size: 1.8rem !important;
  }

}

  @media (max-width: 991.98px) { 
    .panel {
      height: 550px; 
    }
    .panel_regular {
      height: 450px;
    }
    .display-2 {
      font-size: calc(2rem + 1.5vw) !important;
    }
    .display-5 {
      font-size: 1.6rem !important;
    }
     .display-6 {
      font-size: 1.3rem !important;
    }
   
    .home-title {
      width: 260px;
    }
    .play-video {
      width: 100px;
    }
   
    .content-html h2 {
      font-size: calc(1.375rem + 1.5vw) !important;
      
    }
   .content-html p,
   .content-html a {
    font-size: 1rem !important;
    }

    .box-img-program {
      min-height: 360px; 
     }

     .box-img-details {
      min-height: 400px; 
     }

     .box-block {
      height: 180px;
    }
     .navbar-nav {
      height: auto;
      padding: 40px 0;
     }
     .navbar-nav .nav-item {
        padding: 10px 0 10px 10px;
        font-size: 1.2rem;
        font-weight: 200;
        border-bottom: 1px solid #eeeeee;
     }
     .navbar-nav .nav-item:last-child {
      border: none;
     }
     
     .margin_top_200{
      margin-top: -100px;
    }

    .margin_top_300{
      margin-top: -200px;
    }
    .owl-theme .fs-2 {
      font-size: 2rem !important;
    }

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

      .logo {
          width: 150px;
      }
      .home-title {
        width: 180px;
      }
  
      .panel_portada  {
        background-size: 170% !important;
      }
      .panel_regular {
        height: 350px;
      }
  
      .panel_portada h2 {
        font-size: 1.5rem;
      }
      .scrolling-link{
        display: block;
      }
      .box-img-program {
        min-height: 300px; 
       }
       .box-img-details {
        min-height: 300px; 
       }

       .margin_top_200{
        margin-top: 0;
      }

      .margin_top_300{
        margin-top: 0;
      }

      .display-1 {
        font-size: 2.8rem;
      }
      .display-2 {
        font-size: 2.5rem;
      }

      .display-3 {
        font-size: 2.5rem;
      }

      .details-html {
        margin-bottom: 1.2rem;
      }
      .details-html  h1 {
        font-size: 2.5rem;
      }
      .details-html  h2 {
        font-size: 2.2rem;
      }
      
      .details-html  h3 {
        font-size: 1.8rem;
      }
      .details-html  h4 {
        font-size: 1.5rem;
      }
      .details-html  h5 {
        font-size: 1.3rem;
      }
      

}