:root{
	--naranjo: #ff7300;
}

body{
	background-position: top right;
	background-size: cover;
	min-height: 100vh;
	font-family: 'Roboto', sans-serif;
	display: flex;
  	flex-direction: column;
  	background-color: #bcbcbc;
  	background-blend-mode: multiply;
}
h1,h2,h3,h4,h5,h6{
	font-weight: 700;
}
.content{
	flex-grow: 1;
}
.text-color{
	color: var(--naranjo);
}
.cont-img img.aves{
	-webkit-transition:all .9s ease; /* Safari y Chrome */
	-moz-transition:all .9s ease; /* Firefox */
	-o-transition:all .9s ease; /* IE 9 */
	-ms-transition:all .9s ease; /* Opera */
}
.cont-img:hover img.aves{
	-webkit-transform:scale(1.25);
	-moz-transform:scale(1.25);
	-ms-transform:scale(1.25);
	-o-transform:scale(1.25);
	transform:scale(1.25);
}
.navbar .nav-item .nav-link{
	padding: 8px 18px;
	font-size: 18px;
	text-shadow: 0 0 5px rgba(0, 0, 0, .6);
}
.navbar-toggler{
	background-color: #ff7400;
    border-radius: 50%;
    height: 55px;
    width: 55px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: none;
}
.navbar-toggler:focus{
	box-shadow: none;
}
.bg-opacidad{
	background-color: rgb(0 0 0 / 50%);
}