/*
General Template styles
*/

/************************ LOADER ************************/

.box-loader {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0px;
	left: 0px;
	background: #fff;
	z-index: 100;
}

.box-loader .content {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%); 
	display: none;
}

.spinner {
	width: 40px;
	height: 40px;
	position: relative;
	margin: 100px auto;
}

.double-bounce1, .double-bounce2 {
	width: 100%;
	height: 100%;
	border-radius: 50%;
	background-color: #d8007f;
	opacity: 0.6;
	position: absolute;
	top: 0;
	left: 0;

	-webkit-animation: sk-bounce 2.0s infinite ease-in-out;
	animation: sk-bounce 2.0s infinite ease-in-out;
}

.double-bounce2 {
	-webkit-animation-delay: -1.0s;
	animation-delay: -1.0s;
}

@-webkit-keyframes sk-bounce {
	0%, 100% { -webkit-transform: scale(0.0) }
	50% { -webkit-transform: scale(1.0) }
}

@keyframes sk-bounce {
	0%, 100% { 
		transform: scale(0.0);
		-webkit-transform: scale(0.0);
	} 50% { 
		transform: scale(1.0);
		-webkit-transform: scale(1.0);
	}
}


/************************ TAGS ************************/

body,
a{
	font-family: 'Lato', sans-serif;
	font-weight: 400;
	font-size: 14px;
	color: #333;
}

h1,h2,h3,h4,h5,h6{
	font-family: 'Lato', sans-serif;
	color: #333;
}

ul{
	padding-left: 0;
	list-style: none;
}

.box-content{
	padding: 30px 0;
}

/************************ CAROUSEL BOOTSTRAP ************************/

.carousel-item,
.box-slider{
	height: 75vh;
	width: 100%;
/*	overflow: hidden;*/
}

/************************ CAROUSEL SLICK ************************/

.slick-prev:before, .slick-next:before{
	color: #000;
}

/************************ LANGUAGES ************************/

.top-nav .language_list{
	margin-bottom: 25px;
}

.top-nav .language_list ul{
	list-style: none;
	margin: 0;
	padding: 0;
}

.top-nav .language_list ul li img{
	margin-right: 5px;
}

.top-nav .language_list ul li{
	padding: 15px;
	font-size: 12px;
	color: #000;
	text-transform: uppercase;
}

.top-nav .language_list ul li a, 
.top-nav .language_list ul li a:visited{
	color: #000;
	font-size: 12px;
}

.top-nav .language_list ul li a:hover, 
.top-nav .language_list ul li a:active{
	color: #000;
	text-decoration:underline;
}

.language_selector img{
	margin: 1px;
	border: 1px solid #333;
}

/************************ HEADER ************************/

.top-nav{
	height: 35px;
	font-size: 12px;
}

.top-nav .dropdown-menu{
	z-index: 1050;
}

.top-nav.bg-dark, .top-nav.bg-dark a{
	color: #ddd;
}

.top-nav .box-contact a{
	margin-left: 15px;
}

.top-nav.navbar-expand-lg .navbar-nav .nav-item {
	padding-right: .5rem;
	padding-left: .5rem;
}

/************************ MENU ************************/

.logo-twolines{
	padding: 15px 0;
}

/************************ CONTENT ************************/

.main-title{
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 15px;
}

/************************ FOOTER ************************/

.footer{
	padding: 1em 0 0 0;
}

.bottomfooter{
	background-color: #343a40;
	color: #fff;
	padding: 1em 0 0 0;
	text-align: center;
}

.bottomfooter a{
	color: #fff;
}