/* Custom Properties */
:root {
  --first-color: rgb(44, 58, 127);
  --second-color: rgb(20, 25, 45);
  --third-color: rgb(113, 181, 205);

  --first-alpha-color: rgba(217, 0, 98, 0.75);
  --second-alpha-color: rgba(20, 25, 45, 0.75);
  --third-alpha-color: rgba(80, 20, 100, 0.75);

  --link-color: rgb(80, 158, 227);

  --bg-color: rgb(245, 245, 245);
  --bg-alpha-color: rgba(245, 245, 245, 0.75);
}

body {
  font-family: "Raleway", sans-serif;
}

a {
  color: var(--link-color);
  transition: all 0.3s ease-out;
}

a:hover {
  color: var(--first-color);
}

/* El espacio en blanco en CSS se llama Selector Descendiente aplica los estilos a l segundo elemento que se encuentre dentro del primero */
.navbar-brand img {
  width: auto;
  height: 100px;
}

.bg-dark {
  background:linear-gradient(180deg,white,white);
  opacity:.9;
}

.nav-item:hover {
  background-color: var(--first-alpha-color);
  transition: all 0.3s ease-out;
}

.nav-item:hover .dropdown-toggle {
  color: var(--link-color) !important;
}

.navbar-toggler {
    padding: .25rem .75rem;
    font-size: 1.25rem;
    line-height: 1;
    background-color: #2d3b80;
    border: 1px solid transparent;
    border-radius: .25rem;
}


.nav-link {
  margin-left: 0.5rem;
  color:#2d3b80 !important;
  font-size: 1.15rem;
  font-weight: bold;
}

.nav-link:hover {
  color: var(--white) !important;
}

.dropdown-item {
  color: var(--third-color);
  font-weight: bold;
}

.dropdown-item:hover {
  color: var(--third-alpha-color);
}

.gradient-blue-green {
  background-color: rgba(83, 184, 152, 1);
  background-image: linear-gradient(
    135deg,
    rgba(28, 118, 173, 0.91),
    rgba(5, 38, 43, 0.97) 79%
  );


  background-image: linear-gradient(
    131deg,
    rgba(10, 170, 250, 0.975),
    rgb(225, 169, 57)
  );
}

.font-120 {
  font-size: 120%;
}

.carousel-control-prev-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23d90062' viewBox='0 0 8 8'%3e%3cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3e%3c/svg%3e");
}

.carousel-control-next-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23d90062' viewBox='0 0 8 8'%3e%3cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3e%3c/svg%3e");
}

/* // Extra small devices (portrait phones, less than 576px)
// No media query for `xs` since this is the default in Bootstrap */

/* // Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
}

/* // Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
}

/* // Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
  .nav-item:hover {
    background-color: transparent;
  }

  .nav-link {
    margin-left: 0;
  }
}

/* // Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
}
/* // Boton flotante Whatss app */
.float{
	position:fixed;
	width:60px;
	height:60px;
	bottom:40px;
	right:40px;
	background-color:#25d366;
	color:#FFF;
	border-radius:50px;
	text-align:center;
  font-size:30px;
	box-shadow: 2px 2px 3px #999;
  z-index:100;
}
.float:hover {
	text-decoration: none;
	color: #25d366;
  background-color:#fff;
}

.my-float{
	margin-top:16px;
  
}