@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');
@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');

body {
	transition: .3s;
	font-family: "Roboto", sans-serif;
}

.bg-dark {
	background-color: #122688 !important;
}

.bg-menu {
	background-color: #3CA3C1 !important;
}

.navbar-nav {
	font-family: "Outfit", sans-serif;
	text-transform: uppercase;
	font-size: 18px;
  	font-weight: 500;
}

.nav-link {
	color: white;
	transition: .3s;
}

.nav-link:focus, .nav-link:hover {
  color: #e1e1e1cc;
	transition: .3s;
}

.navbar-nav .nav-link.active, .navbar-nav .nav-link.show {
  color: #ffffff;
  background-color: #122688;
  border-radius: 30px;
}

.font_outfit {
	font-family: "Outfit", sans-serif;
}

.img_nota {
	object-fit: cover;
  	height: 190px;
  	border: 1px solid #c6c6c6;
  	border-radius: 10px;
  	margin-bottom: 20px;
	opacity: 1;
	transition: .3s;
}

.img_nota:hover {
	opacity: .9;
	transition: .3s;
}

.titulo_nota_portada {
	font-family: "Outfit", sans-serif;
	font-size: 22px;
  	line-height: 28px;
  	font-weight: 500;
	margin-bottom: 20px;
	color: #0c2051;
	transition: .3s;
}

.titulo_nota_portada a {
	color: #0c2051;
	transition: .3s;
	text-decoration: none;
}

.titulo_nota_portada a:hover {
	text-decoration: none;
	color: #162786;
	transition: .3s;
}

h3 {
	font-family: "Outfit", sans-serif;
	color: #0c2051;
}

.bajada_nota_portada {
	font-family: "Roboto", sans-serif;
	font-size: 17px;
	color: #0c2051;
}

.bajada_nota_portada a {
	color: #0c2051;
	text-decoration: none;
}

.bajada_nota_portada a:hover {
	color: #162786;
	text-decoration: none;
}

.detalle_nota {
	font-family: "Outfit", sans-serif;
	font-size: 13px;
	color: #0c2051;
}

.bg-contenidos {
	padding-top: 45px;
	padding-bottom: 45px;
}

.btn {
	border-radius: 20px !important;
	font-family: "Outfit", sans-serif;
	padding: 5px 20px;
}

.btn-danger {
	background-color: #ff834c !important;
	border-color: #ff834c !important;
}

.btn-danger:hover {
	background-color: #ed7d4c !important;
	border-color: #ed7d4c !important;
}

.bg_clear {
	background-color: #f4f4f4;
	background-image: url("imagenes/mano_sola.png");
	background-position: top right;
	background-repeat: no-repeat;
}

.bg_video {
	background-color: white;
	background-image: url("imagenes/manos.png");
	background-size: inherit;
  background-repeat: no-repeat;
  background-position: left bottom;
	
}

.color_azul {
	color: #0c2051;
}

.color_celeste {
	color: #3CA3C1;
}

.borde_video {
	border: 1px solid #c6c6c6;
  	border-radius: 10px;
}

.titulo_video {
	font-family: "Outfit", sans-serif;
	font-size: 67px;
	color: #3CA3C1;
	text-transform: uppercase;
	font-weight: 800;
	line-height: 68px;
	/* margin-left: 27px; */
}

.titulo_video2 {
	font-family: "Outfit", sans-serif;
  	font-size: 65px;
  	color: #00193e;
  	text-transform: uppercase;
  	font-weight: 800;
  	line-height: 49px;
}



.bg_radial {
	background-color: #6EB8CF;
}

.titulo_radial {
	font-family: "Outfit", sans-serif;
  font-size: 60px;
  color: #fff;
  text-transform: uppercase;
  font-weight: 800;
  line-height: 68px;
  /* margin-left: 27px; */
}

.titulo_radial2 {
	font-family: "Outfit", sans-serif;
  	font-size: 65px;
  	color: #fff;
  	text-transform: uppercase;
  	font-weight: 800;
  	line-height: 42px;
}

.player {
	width: 100%;
  height: auto;
  background-color: #303a47;
  padding: 13px;
  border-radius: 100px;
	
}
	
.audio_player {
	background-color: #8bbdff;
}
	
.h_audio {
	height: 40px; 
	border-radius: 5px;
}
	


footer {
	background-color: #001230;
	background-image: url("imagenes/manos_bw.png");
	background-position: bottom right;
}

h1 {
	font-family: "Outfit", sans-serif;
	text-align: center;
  	margin-bottom: 25px;
  	text-transform: uppercase;
  	font-weight: 700;
  	color: #0c2051;
}

h2.titulo_nota_int {
	font-family: "Outfit", sans-serif;
	color: #0c2051;
}

.textos {
	font-family: "Roboto", sans-serif;
	color: #040e28;
}

.textos a {
	color: #040e28;
}

.textos a:hover {
	color: #ff834c;
}




.animatable {
  /* initially hide animatable objects */
  visibility: hidden;

  /* initially pause animatable objects their animations */
  animation-play-state: paused;
}

/* show objects being animated */
.animated {
  visibility: visible;

  animation-fill-mode: both;
  animation-duration: 1s;
  animation-play-state: running;
}


@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.animated.fadeInDown {
  animation-name: fadeInDown;
}

.animated.fadeInUp {
  animation-name: fadeInUp;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.animated.moveUp {
  animation-name: moveUp;
}

@keyframes moveUp {
  0% {
    transform: translateY(40px);
  }
  100% {
    transform: translateY(0);
  }
}

.animated.fadeIn {
  animation-name: fadeIn;
}

@keyframes fadeIn {
  0%,
  60% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}






@media (min-width: 576px) { 
	
	.img_nota {
  	height: 313px;
	}

	.bg-contenidos {
	padding-top: 50px;
	padding-bottom: 50px;
	}
	
	.titulo_video {
  font-size: 70px;
  line-height: 68px;
  /* margin-left: 27px; */
}

.titulo_video2 {
  	font-size: 84px;
  	line-height: 68px;
}
	
	.titulo_radial {
  font-size: 70px;
  line-height: 68px;
  /* margin-left: 27px; */
}

.titulo_radial2 {
  	font-size: 84px;
  	line-height: 68px;
}
	
}

@media (min-width: 768px) {
	
	.img_nota {
  	height: 313px;
	}
	
	.bg-contenidos {
	padding-top: 60px;
	padding-bottom: 60px;
	}
	
}

@media (min-width: 992px) {
	
	.img_nota {
  	height: 270px;
	}
	
	.bg-contenidos {
	padding-top: 70px;
	padding-bottom: 70px;
	}
	
}

@media (min-width: 1200px) {
	
	.img_nota {
  	height: 310px;
	}

}

@media (min-width: 1400px) {

	.img_nota {
  	height: 370px;
	}
	
}

