/*Color:
Title-blue:#002e56; rgb(0,46,86);#002e56
accent red:#d6171d; 
text-grey:#666666;
dot-grey:#b3b3b3;
yellow:#fac312; rgb(250,195,18);
*/
/* GLOBAL */
body {
	font-family: 'Lato', 'Arial', 'Helvetica', sans-serif;
	color: #666666;
	background-color: white;
}

h1,
h2,
h3 {
	color: #002e56;
	text-transform: uppercase;
	font-weight: 700;
	line-height: 1.25;
}

h2.section-title {
	display: inline-block;
	margin-bottom: 30px;
	text-transform: uppercase;
	margin-top: 0;
	position: relative;
	left: 50%;
	transform: translateX(-50%);
}

h2.section-title::after {
	content: '';
	display: block;
	position: relative;
	left: 10%;
	width: 80%;
	margin-top: 15px;
	border-bottom: 4px solid #d6171d;
}

a {
	color: #002e56;
	text-decoration: none;
}

a:hover,
a:focus {
	color: #d6171d;
	text-decoration: none;
}

section {
	padding: 80px 0;
}

section.banner h2.section-title {
	color: white;
}

section.banner h2.section-title::after {
	border-color: #fac312;
}

section .container {
	padding-left: 40px;
	padding-right: 40px;
}

ul,
ol {
	padding-left: 20px;
}

header {
	height: 200px;
	position: absolute;
	left: 0;
	right: 0;
	z-index: 100;
}

header>.pre-nav {
	margin-top: 40px;
	color: white;
}

header>.pre-nav .container {
	padding: 0;
}

header>.pre-nav .pull-left i.fa {
	color: #d6171d;
	margin-right: 4px;
}

header>.pre-nav br {
	display: none;
}

header>.pre-nav .pull-left a {
	margin-right: 10px;
	text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.5);
}

.lang-switch {
	width: 55px;
	height: 35px;
	background-color: white;
	border-radius: 4px;
	padding: 7px 10px;
}

.lang-switch img {
	width: 60%;
	margin-right: 5px;
}

.lang-switch:hover>.dropdown-menu {
	display: block;
}

.lang-switch .dropdown-menu {
	min-width: 55px;
	border: none;
	box-shadow: 1px 2px 6px 0px rgba(0, 0, 0, 0.1);
}

.lang-switch .dropdown-menu>li>a {
	padding: 5px 15px;
	opacity: 0.5;
}

.lang-switch .dropdown-menu>li>a:focus,
.lang-switch .dropdown-menu>li>a:hover {
	background-color: #f2f2f2;
	opacity: 1;
}

.lang-switch .dropdown-menu>.active>a,
.lang-switch .dropdown-menu>.active>a:focus,
.dropdown-menu>.active>a:hover {
	background-color: initial;
	opacity: 1;
}

.lang-switch .dropdown-menu>li>a img {
	width: 100%;
	margin-right: 0;
}

header>.nav-div {
	position: absolute;
	left: 0;
	right: 0;
	top: 20px;
	z-index: 100;
}

header.home>.nav-div {
	top: 110px;
}

header.home-add {
	transition: top 500ms ease-in-out
}

header.home-add-active {}

header.home-remove {
	transition: top 500ms ease-in-out
}

header.home-remove-active {}

header.home-add>.nav-div {
	top: 20px;
	transition: top 500ms ease-in-out;
}

header.home-add-active>.nav-div {
	top: 110px;
}

header.home-remove>.nav-div {
	top: 110px;
	transition: top 500ms ease-in-out;
}

header.home-remove-active>.nav-div {
	top: 20px;
}

header>.nav-div.floating {
	position: fixed;
	top: 0;
}

header>.nav-div>.container {
	position: relative;
	height: 76px;
	z-index: 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

header>.nav-div>.container::before {
	content: '';
	display: block;
	position: absolute;
	background-color: rgba(255, 255, 255, 0.3);
	left: 0;
	top: -10px;
	right: 0;
	bottom: 0;
	border-radius: 4px;
	transition: opacity 500ms ease-in-out;
}

header>.nav-div.floating>.container::before {
	opacity: 0;
}

header>.nav-div>.container::after {
	content: '';
	z-index: -1;
	display: block;
	position: absolute;
	background-color: rgba(255, 255, 255, 0.8);
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	border-radius: 4px;
	transition: left 500ms ease-in-out, right 500ms ease-in-out;
}

header>.nav-div.floating>.container::after {
	left: calc(50% - 50vw);
	right: calc(50% - 50vw);
	background-color: rgba(255, 255, 255, 0.8);
}

header>.nav-div>.container>.logo {
	display: block;
	position: relative;
}

header>.nav-div>.container>.logo img {
	height: 60px;
	max-width: 100%;
}

header>.nav-div>.container>nav>ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
	position: absolute;
	right: 15px;
	top: 0;
	height: 100%;
}

header>.nav-div>.container>nav>ul>li {
	display: inline-block;
	margin: 0;
	padding: 0;
	height: 100%;
}

header>.nav-div>.container>nav>ul>li>a {
	display: inline-block;
	color: black;
	text-transform: uppercase;
	height: 100%;
	padding: 26px 15px 15px;
	position: relative;
}

header>.nav-div>.container>nav>ul>li>a::after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 5px;
	background-color: #002e56;
	transform: scaleX(0);
	transition: transform 500ms ease-in-out;
}

header>.nav-div>.container>nav>ul>li.active>a::after,
header>.nav-div>.container>nav>ul>li:hover>a::after {
	transform: scaleX(1);
}

header a.hamburger,
header nav .lang-switch {
	display: none;
}

/* BUTTON */
.button {
	width: 180px;
	height: 50px;
	display: block;
	border: none;
	background-color: #002e56;
	border-radius: 25px;
	color: white;
	vertical-align: middle;
	position: relative;
	z-index: 1;
	padding: 0px;
	overflow: hidden;
}

.button:focus {
	outline: none;
}

.button .button__icon {
	transition: transform 0.3s;
	transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
}

.button .button__icon {
	position: absolute;
	top: 100%;
	left: 50%;
	padding: 12px;
	font-size: 25px;
	transform: translate3d(-50%, 0, 0);
}

.button>span {
	vertical-align: middle;
	display: block;
	font-size: 20px;
	transition: transform 0.3s, opacity 0.3s;
	transition-delay: 0.3s;
}

.button:hover {
	background-color: #fac312;
	color: #002e56;
}

.button:hover .button__icon,
.button.spinning .button__icon {
	transition-delay: 0.1s;
	transform: translate3d(-50%, -100%, 0);
}

.button:hover>span,
.button.spinning>span {
	opacity: 0;
	transform: translate3d(0, -50%, 0);
	transition-delay: 0s;
}

/* HOME */
.home section.top {
	height: 100vh;
	background-image: url('../img/top-home.jpg');
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	position: relative
}

.home section.top::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.5) 70%, rgba(21, 47, 85, 0.8))
}

.home section.top .quote {
	position: relative;
	top: calc(50% + 38px);
	padding: 0 10px;
	transform: translateY(-50%);
	text-align: center;
	z-index: 1;
}

.home section.top .quote h1,
.home section.top .quote h2 {
	color: white;
	display: inline-block;
	position: relative;
	background-color: rgba(0, 46, 86, 0.4);
	text-shadow: 0 2px 14px rgba(0, 0, 0, 0.3);
	padding: 10px 12px;
}

.home section.top .quote h1 {
	font-size: 52px;
	font-weight: 900;
}

.home section.top .quote h2 {
	font-size: 38px;
	font-weight: 400;
}

.home section.top .quote h1 {
	color: white;
	text-align: center;
	text-shadow: 0 2px 14px rgba(0, 0, 0, 0.7);
	font-size: 54px;
	line-height: 1.5;
	font-weight: 900;
}

.home section.traceme h3 {
	margin: 20px 0;
}

.home section.traceme h4 {
	line-height: 1.5;
}

.home section.traceme a.button {
	text-align: center;
	line-height: 45px;
	background-color: #002e56;
	margin-top: 20px;
	width: 150px;
	height: 45px;
}

.home section.traceme a.button>span {
	font-size: 16px;
	font-weight: 700;
}

.home section.traceme a.button .button__icon {
	color: white;
	padding: 10px;
}

.home section.traceme img {
	width: 90%;
}

.home section.about {
	background-color: #fafafa;
}

.home section.about h4 {
	font-weight: 400;
	line-height: 1.5;
}

.home section.about .gallery {
	width: 470px;
	height: 320px;
	z-index: 0;
	position: relative;
	left: 45px;
	margin-top: 20px;
	margin-bottom: 50px;
}

.home section.about .gallery::after {
	content: '';
	width: 100%;
	height: 320px;
	position: absolute;
	top: 40px;
	left: -40px;
	border-radius: 10px;
	box-shadow: 0px 2px 13px 0px rgba(0, 0, 0, 0.1);
	background-color: white;
	z-index: -1;

}

.home section.about .gallery .slides {
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	border-radius: 10px;
	overflow: hidden;
}

.home section.about .gallery .slide {
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	background-size: cover;
	background-position: center center;
	z-index: 0;
}

.home section.about .gallery .dots {
	position: absolute;
	right: 40px;
	bottom: -48px;
	padding: 22px;
}

.home section.about .gallery .dots span {
	display: inline-block;
	position: relative;
	width: 12px;
	height: 12px;
	margin-right: 5px;
	border-radius: 50%;
	border: 1px solid #c4c4c4;
	transition: border-color 500ms ease-in-out;
	cursor: pointer;
}

.home section.about .gallery .dots span::before {
	content: '';
	width: 8px;
	height: 8px;
	position: absolute;
	top: 1px;
	left: 1px;
	border-radius: 50%;
	background-color: #c4c4c4;
	transition: background-color 500ms ease-in-out;
}

.home section.about .gallery .dots span.active {
	border-color: #002e56;
}

.home section.about .gallery .dots span.active::before {
	background-color: #002e56;
}

.home section.about .thumbs {
	margin-top: 20px;
	z-index: 0;
	position: relative;
	width: 100%;
	height: 100px;
	overflow: hidden;
}

.home section.about .thumbs a {
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	padding: 0 5px;
}

.home section.about .thumbs a span {
	display: block;
	width: 100%;
	height: 100%;
	border-radius: 8px;
	overflow: hidden;
	position: relative;
}

.home section.about .thumbs a span img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.home section.about .thumbs a span::after {
	content: '';
	display: block;
	background-color: rgba(0, 46, 86, 0.6);
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	opacity: 1;
	border-radius: 8px;
	transition: opacity 500ms ease-in-out;
}

.home section.about .thumbs a.active span::after {
	opacity: 0;
}

.home section.about .facility-info h4 {
	font-size: 17px;
}

.home section.about .facility-info a {
	font-weight: 600;
	text-decoration: underline;
	transition: color 0.25s ease-in-out;
}

.home section.about .facility-info a:focus,
.home section.about .facility-info a:hover {
	color: #d6171d;
}

.video {
	width: 100%;
	margin: 20px 0;
	background-image: url('../img/video.jpg');
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

.home section.banner {
	background-image: url('../img/banner-bg.jpg');
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	padding: 150px 0px 80px;
	position: relative;
	z-index: 0;
	display: flex;
	align-items: end;
}

.home section.banner::before {
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	background: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(21, 47, 85, 0.8));
	backdrop-filter: grayscale(1);
}

.home section.banner h3 {
	font-size: 24px;
	font-weight: normal;
	color: white;
	text-align: center;
	text-shadow: 0 2px 14px rgba(0, 0, 0, 0.7);
	max-width: 686px;
	display: inline-block;
	text-transform: none;
	line-height: 1.25;
}

.home section.product img {
	width: 100%;
	object-fit: cover;
	max-height: 350px;
}

.home section.product .title {
	color: #002e56;
	text-transform: uppercase;
	font-weight: 700;
	margin: 30px 0 20px 0;
}

.home section.product .title::after {
	content: '';
	display: block;
	position: relative;
	width: 100%;
	margin-top: 15px;
	border-bottom: 1px solid #d6171d;
}

.home section.product .content {
	line-height: 1.5;
}

.home section.product .pack-img {
	max-width: 350px;
}

.product-row+.product-row {
	margin-top: 30px;
}

/* FOOTER */
.contact-section {
	background-image: url('../img/map.jpg');
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	display: flex;
	padding: 40px 50px;
	justify-content: center;
	color: #fff;
	text-align: center;
}

.contact-branch+.contact-branch {
	margin-left: 20%;
}

.contact-section .contact-logo img {
	max-width: 300px;
	height: 82px;
	object-fit: contain;
	margin-bottom: 10px;
	transition: opacity 0.25s ease-in-out;
}

.contact-section .contact-logo:hover,
.contact-section .contact-logo:focus {
	opacity: 0.7;
}

.contact-section .contact-info h4 {
	text-transform: uppercase;
	font-weight: 700;
}

.contact-section .contact-info p {
	line-height: 1.5;
	margin-bottom: 5px;
}

.contact-section .contact-info p a {
	color: inherit;
}

.contact-section .contact-info p a:hover,
.contact-section .contact-info p a:focus {
	text-decoration: underline;
}

.contact-section .contact-info i.fa {
	color: #d6171d;
	vertical-align: top;
	margin-top: 3px;
	margin-right: 4px;
}

.contact-section .contact-info span {
	display: inline-block;
}

.copyright {
	background-color: #002e56;
	padding: 5px 50px;
	color: white;
}

.copyright p {
	font-weight: 300;
	display: inline-block;
	vertical-align: middle;
	margin-bottom: 0;
	line-height: 30px;
}

.copyright .social-media {
	float: right;
	display: inline-block;
	vertical-align: middle;
}

.copyright .social-media a {
	color: white;
	font-size: 22px;
	margin: 0 10px;
}

.copyright .social-media a:hover,
.copyright .social-media a:active {
	color: #fac312;
}

@media(max-width:1024px) {
	.home section.about .gallery {
		width: 420px;
		left: 20px;
	}

	.home section.about .thumbs a {
		height: 85px;
	}
}

@media(max-width: 991px) {
	header>.pre-nav .container {
		padding: 0 10px;
	}

	footer .contact-section {
		background-position: center;
	}

	footer .copyright {
		padding: 5px 10px;
	}

	.home section.top .quote {
		padding: 0 80px;
	}

	.home section.top .quote h1 {
		font-size: 40px;
	}

	.home section.traceme img {
		margin-top: 30px;
	}

	.home section.about .gallery {
		width: 80%;
		left: 75px;
	}

	.home section.about .facility-info {
		padding: 10px 50px;
	}
}

@media(max-width: 667px) {
	.home section.top .quote {
		padding: 0 10px;
	}

	.home section.top .quote h2 {
		font-size: 30px;
	}
}

@media(max-width: 450px) {
	section.top .container {
		padding-right: 15px;
		padding-left: 15px;
	}

	header>.nav-div>.container::after {
		border-radius: 0px;
	}

	header>.nav-div>.container>nav {
		display: block;
		opacity: 0;
		position: fixed;
		width: 100%;
		height: 100%;
		left: 0;
		top: 0;
		background-color: rgba(0, 46, 86, 0.95);
		z-index: 150;
		pointer-events: none;
		transition: opacity 0.3s ease-in-out;
	}

	header>.nav-div>.container>nav.open {
		opacity: 1;
		pointer-events: all;
		margin: 0;
	}

	header>.nav-div>.container>nav>ul {
		display: block;
		position: absolute;
		left: 0;
		width: 100%;
		top: 55%;
		transform: translateY(-50%);
		padding: 0;
	}

	header>.nav-div>.container>nav>ul>li {
		display: block;
		text-align: center;
		margin: 40px;
		height: initial;
	}

	header>.nav-div>.container>nav>ul>li>a {
		display: inline-block;
		color: white;
		font-size: 25px;
		height: initial;
	}

	header>.nav-div>.container>nav>ul>li>a::after {
		background-color: #fac312;
	}

	header a.hamburger {
		display: block;
		position: relative;
		width: 23px;
		height: 20px;
		z-index: 200;
		cursor: pointer;
	}

	header a.hamburger span,
	header a.hamburger span::before,
	header a.hamburger span::after {
		display: block;
		position: absolute;
		top: calc(50% - 1px);
		left: 0;
		width: 100%;
		height: 2px;
		border-radius: 1px;
		background: #222222;
		transition-property: background, top, transform, height;
		transition-duration: 0.5s, 0.3s, 0.3s;
		transition-timing-function: ease, ease-in-out, ease-in-out;
		transition-delay: 0.5s, 0.3s, 0s, 0.2s;
	}

	header a.hamburger span::before,
	header a.hamburger span::after {
		content: '';
	}

	header a.hamburger span::before {
		top: -6px;
	}

	header a.hamburger span::after {
		top: 6px;
	}

	header a.hamburger span.open {
		background: white;
		height: 0;
	}

	header a.hamburger span.open::before,
	header a.hamburger span.open::after {
		transition-delay: 0.5s, 0s, 0.3s;
	}

	header a.hamburger span.open::before {
		transform: rotate(45deg);
		top: 0;
		background: white;
	}

	header a.hamburger span.open::after {
		transform: rotate(-45deg);
		top: 0;
		background: white;
	}

	header.home>.nav-div nav .lang-switch {
		display: none;
	}

	header nav .lang-switch,
	header.home>.nav-div.floating nav .lang-switch {
		display: block;
		position: absolute;
		top: 30px;
		left: 30px;
		transform: scale(1.2);
	}

	header>.pre-nav br {
		display: block;
	}

	.contact-section {
		flex-direction: column;
		text-align: center;
	}

	.contact-branch+.contact-branch {
		margin-left: 0;
		margin-top: 40px;
	}

	.copyright {
		text-align: center;
	}

	.copyright .social-media {
		float: none;
	}

	section.top {
		padding: 50px 10px;
	}

	.home section.top .quote {
		top: calc(50% + 70px);
	}

	.home section.traceme a.button {
		margin: 0 auto;
	}

	.home section.about .gallery {
		left: 50%;
		width: 100%;
		transform: translateX(-50%);
	}

	.home section.about .gallery::after {
		left: -20px;
	}

	.home section.about .facility-info {
		padding: 10px;
	}

	.home section.about .thumbs a {
		height: 70px;
	}

	.contact-section .contact-logo img {
		max-width: 100%;
	}

}

/**
* Desktop only
*/
@media(min-width:1025px) {

	.home section.top,
	.home section.banner {
		background-attachment: fixed;
	}
}