@import url('https://fonts.googleapis.com/css?family=Oswald:200,300,400,500,600,700');
@import url('https://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700,800');
@import url('https://fonts.googleapis.com/css?family=Lato:300,400,600,700,800');


*{
	
}
body{
	font-family: 'Open Sans', sans-serif;
	font-size: 12px;
	min-width: 320px;
	overflow-x: hidden;
	background: url('../images/Background.webp') center center no-repeat;
	background-size: cover
}

#logo{	
	padding: 50px 15px;
	text-align: center;
}
#logo img{
	margin: 0 auto;
}


/*Footer*/
#footer{
	
}
#footer .contentFooter{
  	display: flex;
  	align-items: center;
  	min-height: 89px;
  	color: white;
  	font-family: "Arial";
  	font-size: 11px;
}
#footer .container{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
#footer .tfooter {
  	line-height: 16px;
  	text-align: center;
  	min-height: 22px;
  	display: block;
    width: 100%;
    flex-basis: 100%;
}
#footer .tfooter a{
	color: inherit;
}
#footer #powered {  	
  	line-height: 16px;
  	margin: 0 auto 0;
  	width: auto;
  	text-align: center;
  	display: flex;
  	align-items: center;
}
#footer #powered a {
  	color: inherit;
  	display: flex;
  	padding: 0 0 0 28px;
  	min-height: 22px;
  	align-items: center;
  	margin-left: 5px;
  	background: url(/assets/images/icoTW.svg) no-repeat center left;
}
#footer #powered a:hover{
	text-decoration: none;
}



#slider{
	/*max-width: 1340px;*/
	overflow: hidden;
	margin: 0 auto;
	padding: 1% 0;
}
.swiper {
  width: 100%;
  margin: 0 auto;
  overflow: visible;
}

.swiper-wrapper {
  
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0px;
  background: white;
  transition: all .3s ease;
  
  &.swiper-slide-active {
    color:#fff;
    background: linear-gradient(45deg, rgb(246, 146, 89), rgb(241, 105, 117));
    transform: scale(1.4);
    z-index: 2
  }
}

.swiper-slide:not(.swiper-slide-active){
	opacity: 0.85;
}

/* ARROWS */
.swiper-button-prev,
.swiper-button-next {
 	width: 50px;

}
.swiper-button-prev:before,
.swiper-button-next:before,
.swiper-button-prev:after,
.swiper-button-next:after {
	display: none

}
.swiper-button-prev img,
.swiper-button-next img{
	display: block;
	max-width: 100%;
	height: auto;
}
.swiper-button-prev{
	left: 50%;
	margin-left: -330px;
}
.swiper-button-next{
	right: 50%;
	margin-right: -330px;
}


/* PAGINATION */
.swiper-pagination-bullet {
  width: 20px;
  height: 20px;
  text-align: center;
  line-height: 20px;
  font-size: 12px;
  color:#000;
  opacity: 1;
  background: rgba(0,0,0,0.2);
  
  &.swiper-pagination-bullet-active {
    color:#fff;
    background: linear-gradient(45deg, rgb(246, 146, 89), rgb(241, 105, 117));
  }
}

.swiper-slide-active{
	box-shadow: 0 5px 9px rgba(0,0,0,0.5);
}