/********** Template CSS **********/
@import
url(https://fonts.googleapis.com/css?family=Montserrat:200);
@import url(https://code.ionicframework.com/ionicons/2.0.1/css/ionicons.min.css);



:root {
    --primary: rgb(23, 57, 97);
    --secondary: rgb(80, 14, 36);
    --tertiary: rgb(44,52,66);
    --quarternary: rgb(247,171,66);
    --light: #F8F9FA;
    --dark: #182333;
    --light_blue: #91BBF2;
    --dark_blue:#011526;
    --blue_valmia: #3A5BFF;
    --grey-valmia: #333333;
}

* {}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
    border-radius: 50%;
    background-color: var(--blue_valmia) !important
}

.btn-to-whatsapp {
  background-color: #25d366;
  /* background-color: #199346; */
  position: fixed;
  display: none;
  right: 30px;
  bottom: 90px;
  z-index: 101;
  border-radius: 50%;
  border: 1px solid white;
  color: white;
}

.btn-to-whatsapp:hover {
  background-color: #17b150;
  color: white;
  transition: 0.5s;
  transform: scale(1.05);
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
    border-radius: 50px;
}

.btn.btn-primary,
.btn.btn-outline-primary:hover {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

.bi-whatsapp{
  font-size: 22px;
}


/*** Navbar ***/
.navbar.sticky-top {
    top: -100px;
    transition: .5s;
}

.navbar-font{
  font-size: 15px;
  font-family: Arial, Helvetica, sans-serif;

}

.navbar .navbar-nav .nav-link {
    padding: 10px 0 10px;
    color: var(--grey-valmia);
    font-weight: 500;
    text-transform: uppercase;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--blue_valmia);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}
.navbarextras{
  color: var(--primary);
}
@media (max-width: 991.98px) {
  body{
    overflow-x: hidden;
  }
    .navbar .navbar-nav .nav-link  {
        margin-left: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        margin-top: 25px;
        border-top: 1px solid #EEEEEE;
    }

    .navbarextras{
      display: none;
      visibility: hidden;
      width: auto;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        border: none;
        margin-top: 0;
    }
}

/* OFERTA ACADEMICA CARDS CON BG TEXT */



/*** Header ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    text-align: start;
    background: rgba(0, 0, 0, .25);
    z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
    width: 15%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 4rem;
    height: 4rem;
    background-color: var(--dark);
    border: 15px solid var(--dark);
    border-radius: 50px;
}

.carousel-caption .breadcrumb-item+.breadcrumb-item::before {
    content: "\f111";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--primary);
}
#header-carousel{
  height: 70vh;
}

#header-carousel .carousel-inner {
  height: 100%; /* Make sure the carousel-inner takes 100% height of the container */
}

#header-carousel img {
  object-fit: cover; /* Ensure the image covers the entire carousel item without distortion */
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 450px;
    }
    
    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        width: 3rem;
        height: 3rem;
        border-width: 12px;
    }
}

.page-header {
    background: linear-gradient(rgba(0, 0, 0, .65), rgba(0, 0, 0, .65)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: #999999;
}




.ime{
  width: 20px;
  height: 10px;
  

    
}


/*** Facts ***/
.facts-overlay {
    position: absolute;
    padding: 30px;
    width: 100%;
    height: 100%;
    
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: rgba(0, 0, 0, .65);
}

.facts-overlay h1 {
    font-size: 120px;
    color: transparent;
    -webkit-text-stroke: 2px var(--primary);
}

.facts-overlay a:hover {
    color: var(--primary) !important;
}

.facts-overlay-white h1 {
    font-size: 120px;
    color: transparent;
    -webkit-text-stroke: 2px white;
}

.facts-overlay-white {
    position: absolute;
    padding: 30px;
    width: 100%;
    height: 100%;
    
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: rgba(0, 0, 0, .65);
}


/*** Service ***/
.service-text::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    background: var(--primary);
    opacity: 0;
    transition: .5s;
}

.service-item:hover .service-text::before {
    height: 100%;
    opacity: 1;
}

.service-text * {
    position: relative;
    transition: .5s;
    z-index: 1;
}

.service-item:hover .service-text * {
    color: #FFFFFF !important;
}


/*** Appointment ***/
.appointment {
    background: linear-gradient(rgba(0, 0, 0, .65), rgba(0, 0, 0, .65)), url(../imagenes/img3.jpg) center center no-repeat;
    background-size: cover;
}

.appointment-2{
    background: linear-gradient(rgba(0, 0, 0, .65), rgba(0, 0, 0, .65)), url(../imagenes/img4.jpg) center center no-repeat;
    background-size: cover;
}

.appointment-3{
    background: linear-gradient(rgba(0, 0, 0, .65), rgba(0, 0, 0, .65)), url(../imagenes/img5.jpg) center center no-repeat;
    background-size: cover;
}

.appointment-4{
    background: linear-gradient(rgba(0, 0, 0, .65), rgba(0, 0, 0, .65)), url(../imagenes/img6.jpg) center center no-repeat;
    background-size: cover;
}

/*** Contact ***/
.contact {
    background: linear-gradient(rgba(0, 0, 0, .65), rgba(0, 0, 0, .65)), url(../imagenes/img4.jpg) center center no-repeat;
    background-size: cover;
}

/*** Team ***/
.team-text {
    position: absolute;
    width: 75%;
    bottom: 30px;
    left: 0;
    transition: .5s;
}

.team-item:hover .team-text {
    width: 100%;
}

.team-text * {
    transition: .5s;
}

.team-item:hover .team-text * {
    letter-spacing: 2px;
}


/*** Testimonial ***/
.testimonial-carousel .owl-item img {
    width: 100px;
    height: 100px;
}

.testimonial-carousel .owl-nav {
    margin-top: 30px;
    display: flex;
    justify-content: start;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    margin-right: 15px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    border: 2px solid var(--primary);
    border-radius: 50px;
    font-size: 18px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: #FFFFFF;
    background: var(--primary);
}


/*** Footer ***/
.footer {
    color: var(--grey-valmia);
    background-color: #ffffff;
    box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.2);
}

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

#navbarCollapse{
    padding: 0%;
    left:60%;
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: var(--grey-valmia);
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--grey-valmia);
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    /* color: var(--quarternary); */
    color: var(--blue_valmia);
    font-weight: bold;
    letter-spacing: 2px;
    box-shadow: none;
}

.footer .copyright {
    padding: 0px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--secondary);
}

.display-1{font-size:5rem}



.pulse:hover, 
.pulse:focus {
  animation: pulse 1s;
  box-shadow: 0 0 0 2em transparent;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 var(--hover); }
}


.snip1577 {
    font-family: 'Montserrat', Arial, sans-serif;
    position: relative;
    display: inline-block;
    overflow: hidden;
    margin: 10px;
    min-width: 230px;
    max-width: 315px;
    width: 100%;
    color: #fff;
    text-align: left;
    font-size: 16px;
    background: #000;
  }
  
  .snip1577 *,
  .snip1577:before,
  .snip1577:after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
  }
  
  .snip1577 img {
    max-width: 100%;
    backface-visibility: hidden;
    vertical-align: top;
  }
  
  .snip1577:before,
  .snip1577:after {
    position: absolute;
    top: 20px;
    right: 20px;
    content: '';
    background-color: #fff;
    z-index: 1;
    opacity: 0;
  }
  
  .snip1577:before {
    width: 0;
    height: 1px;
  }
  
  .snip1577:after {
    height: 0;
    width: 1px;
  }
  
  .snip1577 figcaption {
    position: absolute;
    left: 0;
    bottom: 0;
    padding: 15px 20px;
  }
  
  .snip1577 h3,
  .snip1577 h4 {
    margin: 0;
    font-size: 1.1em;
    font-weight: normal;
    opacity: 0;
  }
  
  .snip1577 h4 {
    font-size: .8em;
    text-transform: uppercase;
  }
  
  .snip1577 a {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
  }
  
  .snip1577:hover img,
  .snip1577.hover img {
    zoom: 1;
    filter: alpha(opacity=20);
    -webkit-opacity: 0.2;
    opacity: 0.2;
  }
  
  .snip1577:hover:before,
  .snip1577.hover:before,
  .snip1577:hover:after,
  .snip1577.hover:after {
    opacity: 1;
    -webkit-transition-delay: 0.25s;
    transition-delay: 0.25s;
  }
  
  .snip1577:hover:before,
  .snip1577.hover:before {
    width: 40px;
  }
  
  .snip1577:hover:after,
  .snip1577.hover:after {
    height: 40px;
  }
  
  .snip1577:hover p,
  .snip1577.hover h3,
  .snip1577:hover h6,
  .snip1577.hover h4 {
    opacity: .5;
  }
  
  .snip1577:hover h3,
  .snip1577.hover h3 {
    -webkit-transition-delay: 0.3s;
    transition-delay: 0.3s;
  }
  
  .snip1577:hover h4,
  .snip1577.hover h4 {
    -webkit-transition-delay: 0.35s;
    transition-delay: 0.35s;
  }
  


  .snip1581 * {
    -webkit-transition: all 0.35s;
    transition: all 0.35s;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
  .snip1581 img {
    max-width: 100%;
    vertical-align: top;
  }
  .snip1581 figcaption {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background-image: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }
  .snip1581 h3 {
    font-size: 44px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 3px 0;
  }
  .snip1581 .title1 {
    font-weight: 700;
  }
  .snip1581 .title2 {
    color: #a58e7c;
    font-weight: 300;
  }
  .snip1581 .title3 {
    font-weight: 700;
    font-size: 25px;
  }
  .snip1581 a {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
  }
  .snip1581:hover img,
  .snip1581.hover img {
    -webkit-transform: scale(1.3) rotate(5deg);
    transform: scale(1.3) rotate(5deg);
  }

  

 
figure.snip1300 {
  position: relative;
  overflow: hidden;
 
  width: 100%;
  background: #000000;
  text-align: center;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
}
  figure.snip1300 * {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
  }
  figure.snip1300 img {
    max-width: 100%;
    vertical-align: top;
  }
  figure.snip1300 i {
    position: absolute;
    top: 100%;
    left: 50%;
    border-radius: 50%;
    font-size: 34px;
    color: #000000;
    width: 60px;
    height: 60px;
    line-height: 60px;
    background: #ffffff;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
    opacity: 0;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    transition: all 300ms 0ms cubic-bezier(0.6, -0.28, 0.735, 0.045);
  }
  figure.snip1300 a {
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    position: absolute;
  }
  figure.snip1300.blue {
    background-color: #2472a4;
  }
  figure.snip1300.blue i {
    color: #20638f;
  }
  figure.snip1300.red {
    background-color: #ab3326;
  }
  figure.snip1300.red i {
    color: #962d22;
  }
  figure.snip1300.yellow {
    background-color: #e08e0b;
  }
  figure.snip1300.yellow i {
    color: #c87f0a;
  }
  figure.snip1300.green {
    background-color: #229955;
  }
  figure.snip1300.green i {
    color: #1e8449;
  }
  figure.snip1300.orange {
    background-color: #d67118;
  }
  figure.snip1300.orange i {
    color: #bf6516;
  }
  figure.snip1300.navy {
    background-color: #2b3c4e;
  }
  figure.snip1300.navy i {
    color: #222f3d;
  }
  figure.snip1300:hover img,
  figure.snip1300.hover img {
    opacity: 0.3;
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
  }
  figure.snip1300:hover i,
  figure.snip1300.hover i {
    top: 50%;
    transition: all 500ms 100ms cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity: 1;
  }
  
  .snip1520 {
    position: relative;
    overflow: hidden;
    width: 100%;
    background: #023059;
    background: -moz-linear-gradient(90deg, #023059 0%, #db9203 100%, #db9203 100%);
    background: -webkit-linear-gradient(90deg, #023059 0%, #db9203 100%, #db9203 100%);
    background: linear-gradient(90deg, #023059 0%, #db9203 100%, #db9203 100%);
  }
  
  .snip1520 img,
  .snip1520:before,
  .snip1520:after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
  }
  
  .snip1520 img {
    max-width: 100%;
    backface-visibility: hidden;
    vertical-align: top;
  }
  
  .snip1520:before,
  .snip1520:after {
    content: '';
    background-color: #fff;
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 50%;
    opacity: 0;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
  
  .snip1520:before {
    width: 60px;
    height: 1px;
    left: 0;
  }
  
  .snip1520:after {
    height: 60px;
    width: 1px;
    top: 100%;
  }
  
  .snip1520 a {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
  }
  
  .snip1520:hover img,
  .snip1520.hover img {
    zoom: 1;
    filter: alpha(opacity=50);
    -webkit-opacity: 0.5;
    opacity: 0.5;
  }
  
  .snip1520:hover:before,
  .snip1520.hover:before,
  .snip1520:hover:after,
  .snip1520.hover:after {
    opacity: 1;
    top: 50%;
    left: 50%;
  }
  

/* Home page */
  
h2.ofertastitle {
  color: var(--primary);
  position: relative;
  z-index: 1;
  
  &:before {
      border-top: 2px solid var(--primary);
      opacity: 0.3;
      content:"";
      margin: 0 auto; /* this centers the line to the full width specified */
      position: absolute; /* positioning must be absolute here, and relative positioning must be applied to the parent */
      top: 50%; left: 0; right: 0; bottom: 0;
      width: 95%;
      z-index: -1;
  }

  span { 
      /* to hide the lines from behind the text, you have to set the background color the same as the container */ 
      background: #fff; 
      padding: 0 15px; 
  }
}

/* Home */
.ofertastext{
  color: var(--tertiary);
  /* opacity: 0.8; */
}

.bg-text {
  overflow: hidden;
  text-shadow:
    1px 1px 0 #ffffff,
    -1px 1px 0 #ffffff,
    -1px -1px 0 #ffffff,
    1px -1px 0 #ffffff;
  padding: 35px 0px;
  color: var(--primary);
  position: relative;
  z-index: 1;
}

.bg-text::after {
  color: var(--tertiary);
  opacity: 0.2;
  content: attr(data-bg-text);
  display: block;
  font-size: 70px;
  line-height: 1.5;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}


.cardsubtitle {
  display: flex;
  justify-content: space-between;
  background: linear-gradient(135deg, var(--secondary) 50%, var(--primary) 50%);
  color: white;
  padding: 5px 10px;
}

.subtitle-left, .subtitle-right {
  flex: 1;
  text-align: center;
}

/* 


.card-img-top {
    width: 100%;
    height: 25vh;
    object-fit: cover;
}

.card{
  box-shadow: 0px 10px 30px 0px rgba(0,0,0,0.5);
} */


.card-badge {
  position: absolute;
  top: 0;
  left: 0;
  background-color: #007bff;
  color: white;
  padding: 0.5em 0.8em;
  border-radius: 0 0 1em 0;
  font-size: 0.9em;
}

.card-status {
  text-align: center;
  background-color: #28a745;
  color: white;
  padding: 0.2em;
  border-radius: 0;
}

.card-action .btn-highlight {
  background-color: #ffc107;
  color: black;
}

.card {
  box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
  transition: 0.3s;
  border-radius: 5px;
}

.card:hover {
  box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
}

.card-img-top {
  width: 100%;
  height: 20vh;
  object-fit: cover;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}

@media (min-width: 992px){
.card-link::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  pointer-events: auto;
  content: "";
  background-color: rgba(0,0,0,0);
}
}

/* Banner Home */

@media (min-width: 992px) {
  .verticaltext{
  writing-mode: vertical-lr; 
  transform: rotate(-180deg);
  white-space: nowrap;
}
}

@media (max-width: 991.98px) {
  .verticaltext{
    visibility: hidden;
}
}

.bannerbtn{
  position: absolute;
  right: 30%;
  bottom: 10%;
  font-size: 30px;
  border-radius: 10%;
  background-color: var(--primary);
  color: white;
}
.bannerbtn:hover{
  color: white;
  background-color: var(--tertiary);
}

.whatsappbutton{
  position: absolute;
  right: 5%;
  bottom: -1%;
}

.whatsappicon{
  max-width: 80px;
}

/**whatssap exclusivo de banners fichas tecnicas **/

.whatsappbuttonFT{
  position: absolute;
  right: 2%;
  bottom:220px;
}

.whatsappiconFT{
  max-width: 50px;
}


.messbuttonFT{
  position: absolute;
  right: 2%;
  bottom:120px;
}

.messiconFT{
  max-width: 50px;
}

@media (max-width: 768px) {
  .bannerbtn{
    display: none;
  }
  
  .whatsappbutton, .whatsappicon{
    visibility: hidden;
  }
  
}

/* Conjunto de carreras */
.banner-1{
  background: linear-gradient(rgba(0, 0, 0, .45), rgba(0, 0, 0, .45)), url(/img/university/banners/categorias/Banners\ USTI\ SIN\ TEXTO_Licenciatura.jpg) center center no-repeat;
  background-size: cover;
  justify-content: center;
  font-family: 'Times New Roman', Times, serif;
}

.banner-2{
  background: linear-gradient(rgba(0, 0, 0, .45), rgba(0, 0, 0, .45)), url(/img/university/banners/categorias/Banners\ USTI\ SIN\ TEXTO_Ingenieria.jpg) center center no-repeat;
  background-size: cover;
  justify-content: center;
  font-family: 'Times New Roman', Times, serif;
}

.banner-3{
  background: linear-gradient(rgba(0, 0, 0, .45), rgba(0, 0, 0, .45)), url(/img/valmia/new_valmia/designe/DSC_2753_compressed.webp) center center no-repeat;
  background-size: cover;
  justify-content: center;
}

.banner-4{
  background: linear-gradient(rgba(0, 0, 0, .45), rgba(0, 0, 0, .45)), url(/img/valmia/new_valmia/manufacturing/DSC_2556_compressed.webp) center center no-repeat;
  background-size: cover;
  justify-content: center;
}

.banner-5{
  background: linear-gradient(rgba(0, 0, 0, .45), rgba(0, 0, 0, .45)), url(/img/valmia/new_valmia/tool/DSC_2508_compressed.webp) center center no-repeat;
  background-size: cover;
  justify-content: center;
}

.banner-6{
  background: linear-gradient(rgba(0, 0, 0, .45), rgba(0, 0, 0, .15)), url(/img/valmia/new_valmia/support/DSC_2518_compressed.webp) center center no-repeat;
  background-size: cover;
  justify-content: center;
}

.banner-7{
  background: linear-gradient(rgba(0, 0, 0, .45), rgba(0, 0, 0, .45)), url(/img/university/banners/32.jpg) center center no-repeat;
  background-size: cover;
  justify-content: center;
  font-family: 'Times New Roman', Times, serif;
}

.gradientbg{
  background: var(--grey-valmia);
  font-family: Arial, Helvetica, sans-serif;
}

@media (max-width:1000px) {
  .gradientelement{
  width: 100%;
  }
}

.programascontent{
  word-wrap: break-word;
  border-bottom: solid rgba(0, 0, 0, .15);
  font-family: Arial, Helvetica, sans-serif;
  width: 75%;
}

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

.programasbox{
  width: 350px;
}

.flex-column .bi {
  color: var(--primary);
}


/* botón de conoce más */
.btn-knowmore{
  background-color: var(--primary);
  color: white;
  border-radius: 10px;
  transition: 0.2s;
}

.btn-knowmore:hover{
  background-color: var(--secondary);
  color: white;
}

.statusbanner{
  position: absolute; 
  right: 0%; 
  color: white; 
  background-color: rgb(108, 0, 0); 
  padding: 5px;
  clip-path: polygon(0 0, 30% 0, 100% 70%, 100% 100%);
  height: 100px;
  min-height: 100px;
  width: 100px;
  min-width: 100px;
}

.statusbannertext{
  position: absolute;
  transform: rotate(45deg);
  right: 1px;
  top: 33px;
  font-size: 13px;
}

figure {
  margin: 1rem 0 1rem 0 !important;
}

.btn-primary-no-hover:hover {
  background-color: var(--primary);
  border-color: white;
  cursor: default;
}


.line-title::before,
.line-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 4px;
  border-radius: 2px;
}

.line-title::before {
  width: 100%;
  background: #e73700;
}

.line-title::after {
  width: 60px;
  background: #3A5BFF;
}


.line-title {
   position: relative;
  width: 600px;
  padding-bottom: 10px; 
}

.banner-title {
    font-size: 70px;
    font-weight: 500;
    word-break: break-word;
    white-space: normal;
}