
html{
	overflow-x: hidden;
}
body{
	margin: 0;
	padding: 0;
	font-family: 'Roboto', sans-serif;
}

.header{
	box-sizing: border-box;
	position: relative;
	width: 100%;
	height: 100vh;
	padding: 50px;
}

.header__navigation{
	display: flex;
	width: 100%;
	height: 80px;
	justify-content: space-between;
}

.filter{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: -1;
	background-color: rgba(0, 0, 0, 0.548);
}

.header--video{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: -2;
}

.header--videoResponsive{
	display: none;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: -2;
}

.header__navigation--logo{
	width: 200px;
	height: unset;
}

.header__navigation ul{
	display: flex;
	list-style: none;
}
.header__navigation ul li{
	margin: 0 20px;
	color: white;
}

.header__navigation ul li a{
	text-decoration: none;
	color: white;
	font-weight: 500;
}

.switch {
	position: relative;
	display: inline-block;
	width: 60px;
	height: 34px;
}

.switch input { 
	opacity: 0;
	width: 0;
	height: 0;
}

.slider {
	position: absolute;
	cursor: pointer;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color:  #2196F3;
	-webkit-transition: .4s;
	transition: .4s;
}

.slider:before {
	position: absolute;
	content: "";
	height: 26px;
	width: 26px;
	left: 4px;
	bottom: 4px;
	-webkit-transition: .4s;
	background-color: white;
	transition: .4s;
}

input:checked + .slider {

	
	background-color: #ccc;
}

input:focus + .slider {
	box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
	-webkit-transform: translateX(26px);
	-ms-transform: translateX(26px);
	transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
	border-radius: 34px;
}

.slider.round:before {
	border-radius: 50%;
}

.label {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	font-size: 10px;
	font-weight: bold;
	color: white;
}

#labelES {
	left: 10px;
}

#labelEN {
	right: 10px;
}

input:checked + .slider #labelEN {
	color: #2196F3;
}

input:checked + .slider #labelES {
	color: white;
}

input:not(:checked) + .slider #labelEN {
	color: white;
}

input:not(:checked) + .slider #labelES {
	color: #2196F3;
}

.menu-languages{
	display: flex;
	align-items: end;
	flex-direction: column;

}
.switch-container{
	margin-right: 20px;
}

.language{
	background-color: transparent;
	border: none;
	color: #349AAF;	font-size: 1.2rem;
	cursor: pointer;
}
.hero{
	height: calc(100vh - 150px);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 700px;
	margin: auto;
	text-align: center;
}
.hero h2{
	font-size:2rem;
	color: white;
	margin-bottom: 20px;
}

.button{
	padding: 10px 20px;
	border: 1px solid white;
	border-radius: 30px;
	background-color: transparent;
	color: white;
	font-size: 1.2rem;
	cursor: pointer;
	transition: all 0.3s ease-in-out;
}

.button:hover{
	background-color: white;
	color: black;
}

.button-black{
	border:1px solid #898B8B;
	color: #898B8B;
	width: max-content;
}

.button-black:hover{
	background-color: #898B8B;
	color: white;
}

.hero button:hover{
	background-color: white;
	color: black;
}
a{
	text-decoration: none;
	color: black;
}


.footer{
	padding: 50px;
	background-color: #23262D;
	color: white;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.footer .contact{
	display: flex;
	flex-direction: column;
	color: white;
	text-align: center;
}

.footer .contact a{
	color: white;
	margin:5px 0;
}

.footer .social i{
	color: white;
	margin: 0 10px;
}
.footer .social{
	margin: 10px 0;
}

.footer p{
	margin-top:10px;
	margin: 0;
}

#hamburger{
	display: none;
}

@media (max-width:1024px) {
	.header--videoResponsive{
		display: block;
	}
	.header__navigation--logo{
		width: 200px;
		height: unset;
	}
	
	
	.header--video{
		display: none;
	}
	.header__navigation{
		justify-content: center;

		z-index: 4;
	}

	.header__navigation ul{
		position: fixed;
		display: flex;
		flex-direction:column;
		height: 100vh;
		width: 100vw;
		top: 0;
		left:-100vw;
		background-color: rgba(37, 61, 93, 0.925);
		z-index: 3;
		margin-top: 0;
		justify-content: space-evenly;
		align-items: center;
		padding: 0;
		font-size: 1.2rem;
		text-transform: uppercase;
		transition: all 0.8s ease-in-out;
	}
	#hamburger{
		position: fixed;
		top: 20px;
		right: 20px;
		z-index: 5;
		color: #c2c4c4;
		cursor: pointer;
		display: block;
	}
	.hamburger--active{
		left: 0!important;
	}
	.hero{
		width: 80%;
		
	}
	.hero h2{
		font-size: 1.5rem;
	}
	.header__navigation ul li{
		margin: 0 20px;
		color: white;
	}
	
	.header__navigation ul li a{
		text-decoration: none;
		color: white;
		font-weight: 500;
	}
	.main{
		flex-wrap: wrap;
	}

	.main__left{
		width: 100%;
	}	
	.main__right img{
		width: 250px;
	}
	.steps .card {
    height: 250px;
		justify-content: end;
}

	.steps .cards__container {
    justify-content: center;
    flex-wrap: wrap;	
	}
	.steps h2 {
    text-align: center;
    color: white;
    font-size: 2rem;
    margin: 0;
	}
	.comentaries{
		padding: 0;
	}
	.comentaries__card {
		margin: 0 auto;
	}
	.brands-strip{
		padding: 0;
	}
}
@media (max-width:800px) {
	.services__center  {
    display: none;
}

.services__container {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	margin-top: 30px;
	text-align: center;
}

.header__navigation--logo{
	width: 200px;
	height: unset;
}

.menu-languages {
	display: flex;
	align-items: end;
	flex-direction: column;
	justify-content: center;
	margin-left: 20px;
}
	
}