.swiper-container {
	position: relative;
	overflow: hidden
}


.languages {
	border-radius: 5px 5px 0 0;
	position: absolute;
	right: -50px;
	z-index: 5;
	color: #FFF;
	top: 50%;
	transform: translateY(-50%);
	transition: background-color 0.5s;
	font-size: 14px;
}

.languages svg{
	width: 16px;
	margin-left: 3px;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 16px;
}

.languages path{
	fill: white !important;
}

.languages .head {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	cursor: pointer;
	padding: 5px 10px;
	border-radius: 5px;
	transition: background-color 0.3s;
	background: #05407a;
	color: #fff;
}

.l-header{
	position: relative;
}

.languages.is-open {
	background-color: #FFF;
}

.languages.is-open .head{
	border-radius: 5px 5px 0 0;
}

.languages.is-open .dropdown{
	display: block;
}

.languages .dropdown {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	background-color: #05407a;
	border-radius: 0 0 5px 5px;
	color: #fff;
}

.languages .dropdown a {
	display: block;
	padding: 5px 10px;
	color: inherit;
	font-size: 14px;
	line-height: 1;
	text-decoration: none;
}

.header .container {
    position: static;
    padding-right: 83px;
}

.header .languages {
	top: 50%;
    right: 15px;
}

@media (min-width: 1400px) {
    .header .container {
        position: relative;
        padding-right: 30px;
    }

    .header .languages {
        right: auto;
        left: calc(100% + 165px);
    }
}