/*
# General
*/
body {
  font-family: "Open Sans", sans-serif;
  color: #444444;
}

a {
  color: #106eea;
  text-decoration: none;
}

a:hover {
  color: #3b8af2;
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Roboto", sans-serif;
}

::-webkit-scrollbar {
  width: 10px;
 }
 
 ::-webkit-scrollbar-track {
  background: rgb(238, 238, 238);
 }
 
 ::-webkit-scrollbar-thumb {
  background:#194d91;
 }
 
 ::-webkit-scrollbar-thumb:hover {
  background: #555;
 }
 
/*
# Sections General
*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-bg {
  background-color: #e5efff;
  border-radius: 20px;
  margin: 20px;
}
.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.section-title h1 {
  font-size: 36px;
  font-weight: 700;
}

.section-title h2 {
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 700;
  padding: 8px 20px;
  margin: 0;
  background: #d2e7ff;
  color: #106eea;
  display: inline-block;
  text-transform: uppercase;
  border-radius: 50px;
}
.section-title h3 {
  margin: 15px 0 0 0;
  font-size: 32px;
  font-weight: 700;
}
.section-title h3 span {
  color: #106eea;
}

.section-title h4 span {
  color: #106eea;
  text-align: left;
}

.section-title p {
  margin: 15px auto 0 auto;
  font-weight: 400;
}

h4 span {
  color: #106eea;
  text-align: left;
}

/*
# Preloader
*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #106eea;
  border-top-color: #e2eefd;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/*
# Back to top button
*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #106eea;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  transition: all 0.4s;
}
.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}
.back-to-top:hover {
  background: #3284f1;
  color: #fff;
}
.back-to-top.active {
  visibility: visible;
  opacity: 1;
}


/*
# Disable aos animation delay on mobile devices
*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}
/*
# Top Bar
*/
#topbar {
  background: #106eea;
  height: 40px;
  font-size: 14px;
  transition: all 0.5s;
  color: #fff;
  padding: 0;
}
#topbar .contact-info i {
  font-style: normal;
  color: #fff;
}
#topbar .contact-info i a, #topbar .contact-info i span {
  padding-left: 5px;
  color: #fff;
}
#topbar .contact-info i a {
  line-height: 0;
  transition: 0.3s;
  transition: 0.3s;
}
#topbar .contact-info i a:hover {
  color: #fff;
  text-decoration: underline;
}
#topbar .social-links a {
  color: rgba(255, 255, 255, 0.7);
  line-height: 0;
  transition: 0.3s;
  margin-left: 20px;
}
#topbar .social-links a:hover {
  color: white;
}

/*
# Header
*/
#header {
  background: #fff;
  transition: all 0.5s;
  z-index: 997;
  height: 86px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}
#header.fixed-top {
  height: 70px;
  
}
#header .logo {
  font-size: 30px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0.8px;
  font-family: "Roboto", sans-serif;
}
#header .logo a {
  color: #222222;
}
#header .logo a span {
  color: #106eea;
}
#header .logo img {
width:180px;
padding:10px 0;
}

.scrolled-offset {
  margin-top: 70px;
}

/*
 Desktop Navigation 
*/
.navbar {
  padding: 0;
}
.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
  border-radius:8px;
}
.navbar li {
  position: relative;
}
.navbar > ul > li {
  white-space: nowrap;
  padding: 10px 0 10px 28px;
}
.navbar a, .navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3px;
  font-size: 15px;
  font-weight: 600;
  color: #222222;
  white-space: nowrap;
  transition: 0.3s;
  position: relative;
}
.navbar a i, .navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}
.navbar > ul > li > a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -6px;
  left: 0;
  background-color: #106eea;
  visibility: hidden;
  width: 0px;
  transition: all 0.3s ease-in-out 0s;
}
.navbar a:hover:before, .navbar li:hover > a:before, .navbar .active:before {
  visibility: visible;
  width: 100%;
}
.navbar a:hover, .navbar .active, .navbar .active:focus, .navbar li:hover > a {
  color: #106eea;
}
.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 28px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}
.navbar .dropdown ul li {
  min-width: 200px;
}
.navbar .dropdown ul a {
  padding: 10px 20px;
  font-weight: 400;
}
.navbar .dropdown ul a i {
  font-size: 12px;
}
.navbar .dropdown ul a:hover, .navbar .dropdown ul .active:hover, .navbar .dropdown ul li:hover > a {
  color: #106eea;
}
.navbar .dropdown:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}
.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}
.navbar .dropdown .dropdown:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

.navbar a.btn-donar {
  font-family: "Roboto.", sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 28px;
  border-radius: 4px;
  transition: 0.5s;
  margin: 0 0 0 30px;
  color: #fff;
  background: #194d91;
}

.navbar a.btn-donar:hover {
  background: rgb(18, 86, 176);
  text-decoration: none;
  color: #FFF;
}


.navbar a.btn-voluntario {
  font-family: "Roboto.", sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 28px;
  border-radius: 4px;
  transition: 0.5s;
  margin: 0 0 0 20px;
  color: #fff;
  background: #106eea;
}

.navbar a.btn-voluntario:hover {
  background: rgb(18, 86, 176);
  text-decoration: none;
  color: #FFF;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }
  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}

/*
 Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #222222;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}
.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}
.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: #003f92be;
  transition: 0.3s;
  z-index: 999;
}
.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}
.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
  border-radius: 20px;
}
.navbar-mobile a, .navbar-mobile a:focus {
  padding: 18px 20px;
  font-size: 16px;
  color: #222222;
}
.navbar-mobile > ul > li {
  padding: 0;
}
.navbar-mobile a:hover:before, .navbar-mobile li:hover > a:before, .navbar-mobile .active:before {
  visibility: hidden;
}
.navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
  color: #106eea;
}
.navbar-mobile .getstarted, .navbar-mobile .getstarted:focus {
  margin: 15px;
}
.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}
.navbar-mobile .dropdown ul li {
  min-width: 200px;
}
.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}
.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}
.navbar-mobile .dropdown ul a:hover, .navbar-mobile .dropdown ul .active:hover, .navbar-mobile .dropdown ul li:hover > a {
  color: #106eea;
}
.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}

/*
# Hero Section
*/
#hero {
  background-size: cover;
  position: relative;
  padding: 0;
}
#hero:before {
  content: "";
 /* background: rgba(255, 255, 255, 0.6);*/
  background: none;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}
#hero .container-fluid {
  padding: 0;
}

.carousel-caption {
  bottom: 8rem;
}

.carousel-indicators {
  bottom: 65px;
}

.carousel-control-next-icon {
  background-image: url("../img/chevron-right.svg");;
}

.carousel-control-prev-icon {
  background-image: url("../img/chevron-left.svg");;
}


.carousel-control-next-icon, .carousel-control-prev-icon {
  background-size: 180%;
}

.carousel-dark .carousel-control-next-icon, .carousel-dark .carousel-control-prev-icon {
  filter: none;
}


.carousel-dark .carousel-indicators [data-bs-target] {
  background-color: #106eea;
}

#hero h1 {
  margin: 0;
  font-size: 45px;
  font-weight: 900;
  line-height: 56px;
  color: #444444;
  font-family: "Roboto", sans-serif;
  text-align:left
}

#hero h1 span {
  color: #106eea;
}
#hero h2 {
  margin: 0;
  font-size: 45px;
  font-weight: 900;
  line-height: 56px;
  color: #444444;
  font-family: "Roboto", sans-serif;
  text-align:left
}

#hero h2 span {
  color: #106eea;
}


#hero p {
  text-align: left;
  width: 50%;
}

#hero .btn-get-started {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 28px;
  border-radius: 4px;
  transition: 0.5s;
  color: #fff;
  background: #106eea;
}
#hero .btn-get-started:hover {
  background: rgb(18, 86, 176);
}
#hero .btn-watch-video {
  font-size: 16px;
  transition: 0.5s;
  margin-left: 25px;
  color: #222222;
  font-weight: 600;
  display: flex;
  align-items: center;
}
#hero .btn-watch-video i {
  color: #106eea;
  font-size: 32px;
  transition: 0.3s;
  line-height: 0;
  margin-right: 8px;
}
#hero .btn-watch-video:hover {
  color: #106eea;
}
#hero .btn-watch-video:hover i {
  color: #3b8af2;
}
@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}
@media (max-width: 768px) {
  
  #hero h1 {
    font-size: 32px;
    line-height: 36px;
  }
  #hero h2 {
    font-size: 18px;
    line-height: 24px;
  }
  #hero .btn-get-started, #hero .btn-watch-video {
    font-size: 13px;
  }
}
@media (max-height: 500px) {
  #hero {
    height: 120vh;
  }
}

@media (max-width:767px){
  .carousel-inner {
    position: relative;
    width: 100%;
    overflow: hidden;
    height: 75vh;
    }

    .carousel-indicators {
      bottom: 40px;
  }

    .carousel-caption {
      top: 80%;
    }

    .carousel-control-prev {
      margin-left: 0;
    }
    
    .carousel-control-next {
      margin-right: 0;
    }

    #hero h1 {
      font-size: 23px;
      line-height: 28px;
    }
    #hero h1 span {
      color: #106eea;
    }
    #hero h2 {
      font-size: 23px;
      line-height: 28px;
    }

    #hero p {
      width: 100%;
    }

}

@media (min-width: 768px) and (max-width: 1024px) {
  
 
.carousel-caption {
  position: relative;
}
  
}
/*
Video
*/

iframe.videoHome{
  width: 1080px;
  height: 607px;
  border-radius:12px;
}

#videoBosquecito .videoej {
    width: 50%;
}



@media (max-width:767px){
  iframe.videoHome{
    width: 350px;
    height: 240px;
    border-radius:8px !important;
  }
}

@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 1) {  iframe.videoHome{
    width: 700px;
    height: 393px;
    border-radius:8px !important;
  }
}


/*
Home
*/

#campusHome .section-title {
  text-align: left !important;
  padding-bottom: 30px;
}

#campusHome .btn-go  {
  font-family: "Roboto", sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 28px;
  border-radius: 4px;
  transition: 0.5s;
  color: #fff;
  background: #106eea;
}
#campusHome .btn-go:hover {
  background: rgb(18, 86, 176);
}

/* 
realidad 
*/

#proyectos {
  background: url("../img/fondo-2.png");
  background-size: cover;
}
#proyectos .section-title{
  text-align: left !important;
  padding-bottom: 30px;
}


#proyectos .btn-get-started {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 28px;
  border-radius: 4px;
  transition: 0.5s;
  color: #fff;
  background: #106eea;
}

#proyectos .btn-get-started:hover {
  background: rgb(18, 86, 176);
}


/*
Objetivos
*/

#objetivos{
  padding: 150px 0 150px 0;
}

.objetivos .icon-box {
  padding: 30px;
  position: relative;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 0 29px 0 rgba(68, 88, 144, 0.12);
  transition: all 0.3s ease-in-out;
  border-radius: 8px;
  z-index: 1;
}
.objetivos .icon-box::before {
  content: "";
  position: absolute;
  background: #cbe0fb;
  right: 0;
  left: 0;
  bottom: 0;
  top: 100%;
  transition: all 0.3s;
  z-index: -1;
}
.objetivos .icon-box:hover::before {
  background: #106eea;
  top: 0;
  border-radius: 0px;
}
.objetivos .icon {
  margin-bottom: 15px;
}
.objetivos .icon i {
  font-size: 48px;
  line-height: 1;
  color: #106eea;
  transition: all 0.3s ease-in-out;
}
.objetivos .title h2 {
  font-weight: 700;
  margin-bottom: 15px;
}

h2.objetivosTitle{
  color: #106eea;
}

.objetivos .title a {
  color: #444444;
  font-size: 21px;
}
.objetivos .description {
  font-size: 15px;
  line-height: 28px;
  margin-bottom: 0;
}
.objetivos .icon-box:hover .title a, .objetivos .icon-box:hover .description {
  color: #fff;
}
.objetivos .icon-box:hover .icon i {
  color: #fff;
}

.btn-primary {
  font-family: "Roboto", sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 28px;
  border-radius: 4px;
  transition: 0.5s;
  color: #fff;
  background: #106eea;
}
.btn-primary :hover {
  background: rgb(18, 86, 176);
}

@media(max-width:767px){
  #objetivos{
    padding: 50px 0 50px 0;
  
}
}
/* 
La Fundación 
*/

#fundacion .section-title {
  text-align: left !important;
  padding-bottom: 30px;
}

.circle-border {
  border-radius: 20px;
  margin-bottom: 10px;
}

/* 
Estatuto 
*/

#estatuto
{
  background: url("../img/fondo-1.png");
  background-size: cover;
}

@media (max-width:767px){
  #estatuto
{
  background: url("../img/fondo-1.png");
  background-size: cover;
  background-position: bottom;
}
}

/* 
Administración 
*/

.administración .icon-box {
  padding: 30px;
  position: relative;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 0 29px 0 rgba(68, 88, 144, 0.12);
  transition: all 0.3s ease-in-out;
  border-radius: 8px;
  z-index: 1;
}
.administración  .icon-box::before {
  content: "";
  position: absolute;
  background: #cbe0fb;
  right: 0;
  left: 0;
  bottom: 0;
  top: 100%;
  transition: all 0.3s;
  z-index: -1;
}
.administración .icon-box:hover::before {
  background: #106eea;
  top: 0;
  border-radius: 0px;
}
.administración  .icon {
  margin-bottom: 15px;
}
.administración  .icon i {
  font-size: 48px;
  line-height: 1;
  color: #106eea;
  transition: all 0.3s ease-in-out;
}
.administración  .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}
.administración  .title a {
  color: #111;
}
.administración  .description {
  font-size: 15px;
  line-height: 28px;
  margin-bottom: 0;
}
.administración  .icon-box:hover .title a, .administración  .icon-box:hover .description {
  color: #fff;
}
.administración  .icon-box:hover .icon i {
  color: #fff;
}

.administración .section-title {
  text-align: left !important;
  padding-bottom: 30px;
}

.administración .title {
  font-weight: 700;
  margin-bottom: 0px;
  font-size: 18px;
}

.spacetxt{
  padding-right: 100px;
  font-weight: 400;
}

@media (max-width:767px){
.spacetxt{
  padding-right: 0;
}

}

/* 
Historia 
*/

#historia{
  background: url("../img/fondo-historia.png");
  background-size: cover;
}

#historia .section-title {
  text-align: left !important;
  padding-bottom: 30px;
}

/*Copy Clipboard*/

.info-cbu{
  text-align: center;
  background-color: #f2f5f7;
  padding: 20px 0;
  border-radius: 12px;
}

.info-cbu:hover{
  background-color: #e8ecf5;
  transition: 0.2s;
}

label {
  clear: both;
  display: block;
  font-family: 'Roboto', sans-serif;
  margin: 15px 0 0 0;
  font-size: 28px;
  font-weight: 700;
  color: #106eea;
  font-weight: bold;
  user-select: none;
}

input, button {
  font-size: 2em;
  padding: 3px 6px;
  margin: 0;
  outline: 0;
  box-shadow: none;
}

::-moz-focus-inner { 
  padding: 0;
  border: 0;
}

input {
  width: 15em;
  border:none;
  border-radius: 3px 0 0 3px;
  font-size: 28px;
  font-weight: 700;
  color: #444444;
  text-align: center;
  background-color: transparent;
}

button {
  position: relative;
  top:3px;
  color:#106eea;
  border-radius: 0 3px 3px 0;
  cursor: pointer;
  background-color: transparent;
  border:none;
}


.copied::after {
  font-family: "Roboto", sans-serif;
  position: absolute;
  top: 6%;
  right: 110%;
  display: block;
  content: "copiado";
  font-size: 0.55em;
  padding: 8px 10px;
  color: #fff;
  background-color: #106eea;
  border-radius: 3px;
  opacity: 0;
  will-animate: opacity, transform;
  animation: showcopied 1.5s ease;
  }


@keyframes showcopied {
  0% {
    opacity: 0;
    transform: translateX(100%);
  }
  70% {
    opacity: 1;
    transform: translateX(0);
  }
  100% {
    opacity: 0;
  }
}


.redes-sociales{
margin: 0 auto;
}

.redes-sociales a{

  color: #106eea;
  font-size: 24px;
  padding: 30px;
}

@media (max-width:767px){
label{
  font-size: 20px;
}
input {
  text-align: left;
  font-size: 20px;
  padding: 0;
}
button{
  font-size: 21px;
}
.info-cbu{
  text-align: left;
  padding: 5px;
  background-color: #fff;
}

}

/*
.owl-theme .owl-nav {
  display: none;
}*/

.carousel-control-next, .carousel-control-prev {
  bottom: 100px;
}

.owl-carousel .owl-nav button.owl-prev {
  font-size: 45px;
  padding: 0 20px !important;
  }

.owl-carousel .owl-nav button.owl-next {
    font-size: 45px;
    padding: 0 20px !important;
  }

  .owl-theme .owl-nav [class*=owl-]:hover {
    color: #106eea;
    background: none;
}

.owl-theme .owl-dots {
  margin-top: 10px;
  display: none;
}

#carrousel .section-title {
  text-align: left !important;
  padding-bottom: 30px;
}

.owl-theme .owl-dots .owl-dot.active span{
  background: #4163ff;
}

.owl-theme .owl-dots .owl-dot span {
  background: rgb(177, 177, 232);
}

@media(max-width:767px){
  .carousel-control-next, .carousel-control-prev {
    bottom: 0;
  }
}

/* 
Construcción 
*/

#construccion .section-title{
  text-align: left !important;
  padding-bottom: 30px;
}

/* 
realidad 
*/

#realidad {
  background: url("../img/fondo-2.png");
  background-size: cover;
}
#realidad .section-title{
  text-align: left !important;
  padding-bottom: 30px;
}

/* 
comienzo 
*/

#comienzo .section-title{
  text-align: left !important;
  padding-bottom: 30px;
}

/* 
reiniciando 
*/

#social {
  background: url("../img/fondo-3.png");
  background-size: cover;
}
#social .section-title{
  text-align: left !important;
  padding-bottom: 30px;
}



#contact .section-title{
  text-align: left !important;
  padding-bottom: 30px;
}

.bg-social-footer{
  background: url("../img/img-contact.png");
  background-repeat: no-repeat;
  background-color: #106eea;
  height: 100%;
  border-radius: 12px;
  box-shadow: 0 0 30px rgb(214 215 216 / 40%)
}

.bg-social-footer a{

  color: #FFF;
  font-size: 50px;
  padding: 10px;
}

/*
Primera Etapa 
*/

#primeraEtapa{
  height: 70vh;
  padding-bottom: 50px;
  background: url("../img/hero-bg3.jpg") top left;
  background-size: cover;
  position: relative;
}

#primeraEtapa .section-title{
  text-align: left !important;
  padding-bottom: 30px;
}

/*  
Galeria Primera Etapa 
*/

#primeraEtapaCampus{
  padding-bottom: 50px;
  background: url("../img/primera-etapa-bg.jpg") top left;
  background-size: cover;
  position: relative;
}

/* 
Galeria inauguración  
*/
#galeríaInauguración {
  background: url("../img/fondo-2.png");
  background-size: cover;
}
#galeríaInauguración .section-title{
  text-align: left !important;
  padding-bottom: 30px;
}

#galeríaInauguración iframe{
  width: 100%;
  height: 729px;
}

@media(max-width:767px){
  #galeríaInauguración iframe{
    width: 100%;
    height: 429px;
  }
}


/* 
reiniciando 
*/

#reiniciando {
  background: url("../img/fondo-3.png");
  background-size: cover;
}
#reiniciando .section-title{
  text-align: left !important;
  padding-bottom: 30px;
}

/* 
promo 
*/

#promo .section-title{
  text-align: left !important;
  padding-bottom: 30px;
  color: #FFF;
}

#promo.section-bg{
 margin: 0;
 background: url("../img/hero-bg-2.png");
 border-radius: 0;
 background-size: cover;
}

/* 
amigos 
*/

#amigos .section-title{
  text-align: left !important;
  padding-bottom: 30px;
  color: #FFF;
}

#amigos.section-bg{
 margin: 0;
 background: url("../img/hero-bg-2.png");
 border-radius: 0;
 background-size: cover;
}

.logo-grid img {
  max-height: 90px;
  margin: auto;
  padding:10px 0
}

.logo-grid-big img {
  max-height: 120px;
  margin: auto;
  padding:10px
}
/*
# collect
*/

#collect .btn {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 28px;
  border-radius: 4px;
  transition: 0.5s;
  color: #fff;
  background: #106eea;
  width: 100%;
}

#collect .btn:hover {
  background: rgb(18, 86, 176);
}

.collect .icon-box {
  padding: 30px;
  position: relative;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 0 29px 0 rgba(68, 88, 144, 0.12);
  transition: all 0.3s ease-in-out;
  border-radius: 8px;
  z-index: 1;
}
.collect .icon-box::before {
  content: "";
  position: absolute;
  background: #d6e8ff;
  right: 0;
  left: 0;
  bottom: 0;
  top: 100%;
  transition: all 0.3s;
  z-index: -1;
}
.collect .icon-box:hover::before {
  background: #e8f2ff;
  top: 0;
  border-radius: 0px;
}
.collect .icon {
  margin-bottom: 15px;
}
.collect .icon i {
  font-size: 48px;
  line-height: 1;
  color: #106eea;
  transition: all 0.3s ease-in-out;
}


/* 
premios 
*/

#premios{
  background: #f2f5f7;
  background-size: cover;
}

#premios .section-title {
  text-align: left !important;
  padding-bottom: 30px;
}

.new-winner {
  position: relative;
  display: inline-block;
}

.new-winner .badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: rgba(0, 128, 90, 0.7); /* Fondo verde con algo de transparencia */
  color: white;
  font-weight: 600;
  padding: 8px 12px;
  border-radius: 5px;
  font-size: 14px;
}


/*
# reporte
*/

#reporte .report-info{
  display: flex;
  margin: 0 auto;
}

.btn-primary.reporte{
  margin-right: 10px;
  background-color: #444444;
}

/*
programas-sociales
*/

#programas-sociales{
  height: 70vh;
  padding-bottom: 50px;
  background: url("../img/social-bg.jpg") top left;
  background-size: cover;
  position: relative;
}

#programas-sociales .section-title{
  text-align: left !important;
  padding-bottom: 30px;
}

#programas-sociales .section-title h1 {
  margin: 15px 0 0 0;
  font-size: 32px;
  font-weight: 700;
}

#programas-sociales .section-title h1 span {
  color: #106eea;
}


#convenio .section-title {
  text-align: left !important;
  padding-bottom: 30px;
}

.accordion-flush .accordion-item .accordion-button {
  background: aliceblue;
}

.accordion-item {
  background-color: #fff;
  border: none;
}

.accordion-bg{
  background-color: #e7f1ff;
}

.card-title {
  font-size: 24px;
  color:#106eea
}

.card-text:last-child {
  color:#194d91
}

.card {
  border-radius: 12px;
}

.card img {
  border-radius: 12px 12px 0 0;
}

.img-hover {
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}
.img-hover:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

@media(max-width:767px){
  .section-title h3 {
    font-size: 23px;
  }
}

#programas .section-title{
  text-align: left !important;
  padding-bottom: 30px;
}
/*
# Contact
*/

.contact .info-box {
  color: #444444;
  text-align: center;
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.3);
  padding: 20px 0 30px 0;
}
.contact .info-box i {
  font-size: 32px;
  color: #106eea;
  border-radius: 50%;
  padding: 8px;
  border: 2px dotted #b3d1fa;
}
.contact .info-box h3 {
  font-size: 20px;
  color: #777777;
  font-weight: 700;
  margin: 10px 0;
}
.contact .info-box p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}
.contact .php-email-form {
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.4);
  padding: 30px;
}
.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}
.contact .php-email-form .error-message br + br {
  margin-top: 25px;
}
.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}
.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}
.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}
.contact .php-email-form .form-group {
  margin-bottom: 20px;
}
.contact .php-email-form input, .contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
}

.form-control {
  border: none;
  border-bottom: 1px solid #444444;
}
.contact .php-email-form input:focus, .contact .php-email-form textarea:focus {
  border-color: #106eea;
  border-bottom: 2px solid #106eea;
}
.contact .php-email-form input {
  padding: 10px 15px;
  font-weight: 600;
  color: #106eea;
  text-align: left;
}
.contact .php-email-form textarea {
  padding: 12px 15px;
  font-weight: 600;
  color: #106eea;
}
.contact .php-email-form button[type=submit] {
  background: #106eea;
  border: 0;
  padding: 10px 30px;
  color: #fff;
  transition: 0.4s;
  border-radius: 4px;
  font-size: 16px;
}
.contact .php-email-form button[type=submit]:hover {
  background: #3b8af2;
}

.contact .php-email-form button:disabled {
  opacity: 0.7;
  background: #ccc;
  color:#555;
  cursor: default;
}

.contact .php-email-form button:disabled:hover {
  opacity: 0.7;
  background: #ccc;
  color:#555;
  cursor: default;
}

@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*
# Footer
*/

#footer {
  background: #fff;
  padding: 0 0 30px 0;
  color: #444444;
  font-size: 14px;
  background: #f1f6fe;
  font-family: "Roboto", sans-serif;
}
#footer .footer-newsletter {
  padding: 50px 0;
  background: #f1f6fe;
  text-align: center;
  font-size: 15px;
}
#footer .footer-newsletter h4 {
  font-size: 24px;
  margin: 0 0 20px 0;
  padding: 0;
  line-height: 1;
  font-weight: 600;
  font-family: "Roboto", sans-serif;
}
#footer .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 4px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.06);
  text-align: left;
}
#footer .footer-newsletter form input[type=email] {
  border: 0;
  padding: 4px 8px;
  width: calc(100% - 100px);
}
#footer .footer-newsletter form input[type=submit] {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: #106eea;
  color: #fff;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}
#footer .footer-newsletter form input[type=submit]:hover {
  background: #0d58ba;
}
#footer .footer-top {
  padding: 60px 0 30px 0;
  background: #fff;
}
#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}
#footer .footer-top .footer-contact h3 {
  font-size: 24px;
  margin: 0 0 15px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 600;
  font-family: "Roboto", sans-serif;
}
#footer .footer-top .footer-contact h3 span {
  color: #106eea;
  font-family: "Roboto", sans-serif;
}
#footer .footer-top .footer-contact p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Roboto", sans-serif;
  color: #777777;
}
#footer .footer-top h4 {
  font-size: 16px;
  color: #444444;
  position: relative;
  padding-bottom: 12px;
  font-family: "Roboto", sans-serif;
}
#footer .footer-top .footer-links {
  margin-bottom: 30px;
}
#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #106eea;
  font-size: 18px;
  line-height: 1;
}
#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}
#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}
#footer .footer-top .footer-links ul a {
  color: #777777;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}
#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: #106eea;
}
#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #106eea;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 100%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}
#footer .footer-top .social-links a:hover {
  background: #3b8af2;
  color: #fff;
  text-decoration: none;
}
#footer .copyright {
  text-align: center;
  float: left;
}
#footer .credits {
  float: right;
  text-align: center;
  font-size: 13px;
  color: #444444;
}
@media (max-width: 768px) {
  #footer .copyright, #footer .credits {
    float: none;
    text-align: center;
    padding: 2px 0;
  }
}




