  /********************************************************************************************************/

  /*** Single Page Hero Header End ***/
  .bg-breadcrumb {
      background: linear-gradient(rgba(19, 53, 123, 0.5), rgba(19, 53, 123, 0.5)), url(../img/Logo&Fondo/fondo-bg.png);
      background-position: center center;
      background-repeat: no-repeat;
      background-size: cover;
      background-attachment: fixed;
      padding: 150px 0 50px 0;
  }

  .bg-breadcrumb .breadcrumb-item a {
      color: var(--bs-white) !important;
  }

  /*** Single Page Hero Header End ***/


  /* ------------------------------------
    24. About Us Page
---------------------------------------*/
  .abt-title h2 {
      font-size: 30px;
      line-height: normal;
      margin-bottom: 20px;
      padding-bottom: 16px;
      text-transform: uppercase;
      position: relative;
  }

  .abt-title h2:after {
      content: "";
      position: absolute;
      left: 0;
      bottom: 0;
      height: 5px;
      width: 100px;
      background-color: #13357b;
  }

  .abt-title.text-center h2:after {
      left: 50%;
      transform: translateX(-50%);
  }

  .rs-vision .vision-img {
      position: relative;
  }

  .rs-vision .vision-img:after {
      content: "";
      position: absolute;
      left: 0;
      bottom: 0;
      height: 100%;
      width: 100%;
      background-color: rgba(33, 33, 33, 0.5);
      opacity: 0;
      -webkit-transition: all 0.3s ease 0s;
      transition: all 0.3s ease 0s;
  }

  .rs-vision .vision-img:hover:after {
      opacity: 1;
  }

  .rs-vision .vision-img .popup-youtube {
      position: absolute;
      top: 50%;
      left: 50%;
      z-index: 10;
      -webkit-transform: translateX(-50%) translateY(-50%);
      transform: translateX(-50%) translateY(-50%);
  }

  .rs-vision .vision-img .popup-youtube:after {
      position: absolute;
      font-family: FontAwesome;
      content: "\f04b";
      font-size: 36px;
      left: 50%;
      -webkit-transform: translateX(-50%) translateY(-50%);
      transform: translateX(-50%) translateY(-50%);
      transition: all 0.3s ease 0s;
      display: inline-block;
      height: 80px;
      line-height: 80px;
      width: 80px;
      text-align: center;
      border: 3px solid #fff;
      border-radius: 50%;
      padding-left: 8px;
      color: #fff;
  }

  .rs-branches .branches-item {
      text-align: center;
      position: relative;
      margin-bottom: 30px;
  }

  .rs-branches .branches-item img {
      margin-bottom: 15px;
  }

  .rs-branches .branches-item h3 {
      font-size: 20px;
      margin-bottom: 7px;
  }

  .rs-branches .branches-item h3 span {
      display: block;
  }

  .rs-branches .branches-item p {
      margin-bottom: 0;
  }

  .rs-branches [class*="col-"]+[class*="col-"] .branches-item:after {
      position: absolute;
      content: '';
      width: 64%;
      height: 2px;
      background-color: #13357b;
      left: -38%;
      top: 70px;
  }


  .texto,
  .mision,
  .vision,
  .objetivo,
  .valores {
      margin-bottom: 20px;
      padding: 15px;
      border: 1px solid #13357b;
      border-radius: 10px;
      box-shadow: 0 4px 8px rgb(19, 53, 123);
      transition: background-color 0.5s, transform 0.5s, box-shadow 0.5s;
  }

  .texto:hover,
  .mision:hover,
  .vision:hover,
  .objetivo:hover,
  .valores:hover {
      background-color: #f9f9f9;
      transform: translateY(-10px);
      box-shadow: 0 8px 16px rgb(19, 53, 123);
  }

