body{
	overflow-x: hidden;
	width: 100vw;
}
body::-webkit-scrollbar {
  display: block;
  /*overflow-y: scroll  !important;*/
  background-color: rgba(0, 0, 0, .3);
  width: 1px !important;
}
body::-webkit-scrollbar-track {
  /*overflow-y: scroll  !important;*/
  background-color: rgba(0, 0, 0, .3);
}
body::-webkit-scrollbar-thumb {
  /*overflow-y: scroll  !important;*/
  background-color: #007632;
}
header{
	height: 100px;
	backdrop-filter: blur(5px);
	/*background-color: #005329;*/
	/*mix-blend-mode: multiply;*/
}
#header-web{
	display: flex;
}
#header-mobile{
	display: none !important;
}
.logo{
	width: 85px;
}
.navbar{
	margin: 0;
}
.navbar ul{
	margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
}
.navbar ul li a{
	font-size: 1.4vw;
	color: white;
	font-family: 'Avenir-Regular';
	padding: 0.5rem 2rem;
}
a{
	text-decoration: none;
}
a:hover{
	text-decoration: none;
	color: #007632;
}
.nav-link:focus,
.nav-link:hover{
	color: white;
}
li {
	list-style: none;
}
.active-lang{
	text-decoration: underline;
}
.active{
	font-family: 'Montserrat-SemiBold';
	text-shadow: 0 0 5px white;
}
.btn-flotante{
	/*font-size: 15px;   */
		border-radius: 50px;
    bottom: 0;
    right: 0;
    margin: 0 1.5% 1.5% 0;
    position: fixed;
    z-index: 100000;
    justify-content: center;
    display: flex;
    align-items: center;
    z-index: 150;
    padding: 1rem 3rem;
}
main{
	width: 100vw;
}
.youtube-player div{
	height: 100%;
}
.youtube-player div img{
	height: 100%;
}
.youtube-player {
	/*position: relative;*/
	/*width: 77vw;*/
	/*padding-bottom: 50vw;*/
	height: 0;
	/*overflow: hidden;*/
	/*max-width: 100%;*/
	background: #000;
	/*margin: 5px;*/
}

.youtube-player iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 100;
	background: transparent;
}

.youtube-player img {
	/*object-fit: cover;*/
	display: block;
	left: 0;
	bottom: 0;
	margin: auto;
	max-width: 100%;
	width: 100%;
	/*position: absolute;*/
	right: 0;
	top: 0;
	border: none;
	height: auto;
	cursor: pointer;
	-webkit-transition: 0.4s all;
	-moz-transition: 0.4s all;
	transition: 0.4s all;
}

.youtube-player img:hover {
	-webkit-filter: brightness(75%);
}

.youtube-player .play {
	height: 72px;
	width: 72px;
	left: 50%;
  top: 50%;
  transform: translate(-50%);
  margin-top: -83%;
  position: relative;
	z-index: 1000 !important;
	background: url('//i.imgur.com/TxzC70f.png') no-repeat;
	cursor: pointer;
}
.btnCard{
	display: inline-block;
    font-weight: 500;
    line-height: 1.5;
    color: white;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    user-select: none;
    background-color: #007632;
    border: 1px solid #007632;
    padding: 0.8rem 0;
    font-size: 1.3rem;
    border-radius: 10px;
}

footer{
	background-color: #008D3F;
	color: white;
}
.info-links div{
	width: 50px;
	height: 50px;
	border: 1px solid white;
	border-radius: 100%;
	text-align: center;
	vertical-align: middle;
}
.info-links div a i{
	font-size: 30px;
	color: white;
}
.info{
	width: 33%;
	margin: 1% 3%;
}
.info h3{
	font-size: 22px;
	color: white;
}
.info p{
	font-size: 13px;
	width: 100%;
}
.info-moreInfo input{
	font-size: 15px;
	width: 100%;
	border-radius: 7px;
	border: 1px solid transparent;
}
.info-moreInfo button{
	font-size: 12px;
	border-radius: 7px;
	border: 1px solid white;
	color: white;
	padding: .8rem 5rem;
}
@media only screen and (max-width: 992px){
	#header-web{
		display: none !important;
	}
	#header-mobile{
		display: block !important;
	}
}