html {
	padding: 0;
	margin: 0;
	overflow-x: hidden;
}

body {
	max-width: 2400px;
	height: 100%;
	font-family: 'Lato', sans-serif;
	background-color: #333333;
	margin: 0 auto;
	padding: 0;
	overflow-x: hidden;

}



/*-------------------------------------------------------------------------------------------*/
/*-----------------------------------------------FONTS---------------------------------------*/
/*-------------------------------------------------------------------------------------------*/

h1 {
	font-size: 4em;
	font-weight: 900;
	text-transform: uppercase;
	text-align: left;
	margin: 0;
	padding: 10;
	color: whitesmoke;
}

h2 {
   	color: #ED8702;
	font-size: 3em;
	font-weight: 900;
	text-align: left;
	margin: 20px 0 0 40px;
	padding: 0;
}

h3 {
	font-size: 1.7em;
	font-weight: 900;
	text-transform: uppercase;
	text-align: left;
	margin: 0;
	padding: 10;
	color: whitesmoke;
	background-color: #333333;
}

h4 {
	font-size: 1.5em;
	font-weight: 800;
	text-transform: uppercase;
	margin: 0;
	padding: 10;
	color: #ED8702;
	background-color: #333333;
}

h5 {
	font-size: 2em;
	font-weight: 200;
	text-align: left;
	margin: 0 0 0 40px;
	padding: 0;
	color: whitesmoke;
}

p {
	font-weight: 300;
	color: whitesmoke;
	font-size: 1.1em;
}

/*-------------------------------------------------------------------------------------------*/
/*-----------------------------------------------NAVIGATION----------------------------------*/
/*-------------------------------------------------------------------------------------------*/

/*--------------------------LANGUAGE----------------------------*/

.container-language {
  	padding:0;
	margin-top: 30px;
	margin-left: 20px;
	height: 100px;
	width: 200px;
	background-color: transparent;
  }

  .container-flag {
	float: left;
  	height: 15px;
  	width: 26px;
}

.country-flag-bw {	
	position: absolute;
  	margin:0;
  	padding:0;
	height: 15px;
	opacity: 0.7;
}

.country-flag-overlay {
	position: absolute;
  	padding:0;
	height: 15px;
	width: 0px;
	opacity: 0;
	background-position: center;
	background-size: cover;
	 -webkit-transition: opacity 1s, width 1s;
    transition: opacity 1s, width 1s;
}

.flag-poland {
	background-image: url(../img/poland-icon.png);
}

.flag-germany {
	background-image: url(../img/german-icon.png);
}

.country-flag-bw:hover + div.country-flag-overlay, div.country-flag-overlay:hover {
	opacity: 1;
	width: 25px;
	margin-left: 0px;
	z-index: 100;
    -webkit-transition: opacity 1s, width 1s;
    transition: opacity 1s, width 1s;
}


/*----------------------------BUTTON----------------------------*/

.menu-button {

	position: fixed;
	top: 5%;
	right: 2%;
	height: 27px;
	width: 35px;
	cursor: pointer;
	z-index: 100;
	opacity:0.5;
	transition: opacity .25s ease;
	-webkit-transition: opacity .25s ease;
  }

.menu-button:hover {
	opacity: 1;
}

.menu-button.active .top {
 	-webkit-transform: translateY(11px) translateX(0) rotate(45deg);
 	-ms-transform: translateY(11px) translateX(0) rotate(45deg);
	transform: translateY(11px) translateX(0) rotate(45deg);
	background: lightgrey;
}

.menu-button.active .middle {
	opacity: 0;
	background: #FFF;
}
.menu-button.active .bottom {
	-webkit-transform: translateY(-11px) translateX(0) rotate(-45deg);
	-ms-transform: translateY(-11px) translateX(0) rotate(-45deg);
	transform: translateY(-11px) translateX(0) rotate(-45deg);
	background: lightgrey;
}

/*----------------------------SPAN----------------------------*/

.menu-button span {
	background: #DADADA;
	border: none;
	height: 5px;
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	-webkit-transition: all .35s ease;
	transition: all .35s ease;
	cursor: pointer;
}
.menu-button span:nth-of-type(2) {
	top: 11px;
}
.menu-button span:nth-of-type(3) {
	top: 22px;
}


/*----------------------------OVERLAY----------------------------*/

.overlay {
	z-index: 99;
 	position: fixed;
 	background: #ED8702;
	top: 0;
	left: 0;
	width: 100%;
	height: 0%;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: opacity .35s, visibility .35s, height .35s;
	transition: opacity .35s, visibility .35s, height .35s;
	overflow: hidden;
}


.overlay.open {
	opacity: .8;
	visibility: visible;
	height: 100%;
}

.overlay.open li {
	-webkit-animation: fadeInRight .5s ease forwards;
	animation: fadeInRight .5s ease forwards;
	-webkit-animation-delay: .35s;
	animation-delay: .35s;
}
.overlay.open li:nth-of-type(2) {
	-webkit-animation-delay: .4s;
	animation-delay: .4s;
}
.overlay.open li:nth-of-type(3) {
	-webkit-animation-delay: .45s;
	animation-delay: .45s;
}
.overlay.open li:nth-of-type(4) {
	-webkit-animation-delay: .50s;
	animation-delay: .50s;
}

/*----------------------------MENU----------------------------*/

.overlay nav {
	position: relative;
	height: 70%;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	font-size: 50px;
	font-family: 'Lato', sans-serif;
	font-weight: 900;
	text-align: center;
	color: #333333;
}
.overlay ul {
	list-style: none;
	padding: 0;
	margin: 0 auto;
	display: inline-block;
	position: relative;
	height: 100%;
}
.overlay ul li {
	display: block;
	height: 25%;
	height: calc(100% / 4);
	min-height: 50px;
	position: relative;
	opacity: 0;
}
.overlay ul li a {
	display: block;
	position: relative;
	color: #333333;
	text-decoration: none;
	overflow: hidden;
}
.overlay ul li a:hover:after, .overlay ul li a:focus:after, .overlay ul li a:active:after {
	width: 100%;
}
.overlay ul li a:after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	width: 0%;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
	height: 1px;
	background: #333333;
	-webkit-transition: .35s;
	transition: .35s;
}

@-webkit-keyframes fadeInRight {
	0% {
	opacity: 0;
	left: 20%;
	}
	100% {
	opacity: 1;
	left: 0;
	}
}

@keyframes fadeInRight {
	0% {
	opacity: 0;
	left: 20%;
	}
	100% {
	opacity: 1;
	left: 0;
	}
}

/*-------------------------------------------------------------------------------------------*/
/*-----------------------------------------------INTRO---------------------------------------*/
/*-------------------------------------------------------------------------------------------*/


.container-intro {
	min-height: 100vh;
	width: 100%;
	background-image: url(../img/berlin.jpg); 
    background-size: cover;
    background-position: center;
	background-attachment: fixed;
}

.container-intro h1 {
	position:absolute;
	bottom:30px;
	margin-left: 30px;
}

/*-------------------German version-------------------*/

.de-bg {
	background-image: url(../img/wawa.jpg); 
}


/*-------------------------------------------------------------------------------------------*/
/*----------------------------------------------ABOUT----------------------------------------*/
/*-------------------------------------------------------------------------------------------*/

.container-about {
	min-height: 500px;
	width: 100%;
	padding: 0;
	background-color: #DADADA;
	border-bottom: 1px solid #DADADA;
}

.row-about {
	padding: 0;
	margin: 0;
	
}

.container-traexo {
	min-height: 500px;
	padding: 0;
	margin: 0;
	text-align: center;
	background-color: #333333;
	border-top: 1px solid transparent;
}

.logo-strip {
	width: 100%;
	height: 100px;
	background-color: #ED8702; 
	text-align: center;
	margin-top: 60px;
}

.image-logo {
	height: 100px;
	min-width: 200px;
	margin-top: 0px;
}

.container-traexo h3 {
	text-align: center;
	margin-top: 40px;
	margin-bottom: 40px;
}

.container-traexo p {
	padding-left: 80px;
	padding-right: 80px;
	text-align: center;
	margin-top: 20px;
	margin-bottom: 20px;
}



.container-maersk {
	min-height: 500px;
	margin: 0;
	padding: 0;
	background-color: #DADADA;
	background-image: url(../img/orange-elipse.png);
	background-position: 50% 98%;
	background-repeat: no-repeat;
	background-size: 400px;
}

.container-maersk h3 {
	text-align: left;
	display:inline-block;
	margin-top: 80px;
	margin-left: 10%;
	margin-right: 10%;
	margin-bottom: 40px;
	padding: 5px 10px 5px 15px;
}

.image-maersk {
	margin-top: 20px;
	max-height: 300px;
	max-width: 100%;
	display: block;
    margin-left: auto;
    margin-right: auto;
}

/*-------------------Button-------------------*/

.btn-more {
	width: 130px;
	height: 38px;
	border-radius: 0px;
	border: 3px solid #DADADA;
	color: #ED8702;
	background: none !important;
	text-transform: uppercase;
	letter-spacing: 2px;
	font-weight: 800;
	box-shadow: none;
	text-shadow:none;
	text-align:center;
	margin-bottom: 40px;

}

.btn-more:hover, .btn-more:focus {
	border: 3px solid black;
	color: #333333;
	background-color: #ED8702 !important;
	border: 3px solid #ED8702;
	box-shadow: none;

}


/*-------------------------------------------------------------------------------------------*/
/*----------------------------------------------COUNTRY--------------------------------------*/
/*-------------------------------------------------------------------------------------------*/
.container-trade {
	min-height: 500px;
	width: 100%;
	margin: 0;
	padding: 0;
	border-bottom: 1px solid #DADADA;
}


.container-country {
	min-height: 500px;
	width: 30%;
	margin: 0;
	padding: 0;
	float: left;
	background-color: #DADADA;
}

.image-country {
	max-height: 450px;
	display: block;
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
}


.container-info {
	min-height: 500px;
	width: 70%;
}

.container-info li {

  	background: url(../img/pointer.png) no-repeat center left;
  	padding: 0;
  /* reset styles (optional): */
  	list-style: none;
  	margin-left: -200px;
	margin-top: 50px;

}

.container-info p {
	margin-left: 210px;
	padding-top: 4px;
}

/*-------------------German version-------------------*/


.polonez {
	margin-top: 90px;
	max-width: 380px;
}

.de ul {
	padding-top: 40px;
}

.de li {
	margin-top: 30px;
}

/*-------------------------------------------------------------------------------------------*/
/*----------------------------------------------SERVICES--------------------------------------*/
/*-------------------------------------------------------------------------------------------*/
.container-services {
	min-height: 500px;
	width: 100%;
	border-bottom: 1px solid #DADADA;

}


.row-services {
	margin: 50px 0 50px 0;
	width: 100%;
	text-align: center;

}

.col-services {
	min-width: 350px;
	display:inline-block;
    float:none;
    /* reset the text-align */
    text-align:left;
    /* inline-block space fix */
    margin-right:-4px;

}

.offer-holder {
	width:280px;
	height:350px;
	border: 1px solid #DADADA;
	text-align: center;
}

.offer-holder h4 {
	padding: 15px 0 15px 0;
	text-align: center;
	border-bottom: 1px solid #DADADA;
}

.services-text {

	width:278px;
	height:154px;
	position: absolute;
	bottom: 0px;
	background-color: rgba(218, 218, 218, 0.9);
	margin: 19px 1px 0px 0px;
	padding: 20px 5px 0px 10px;
	text-align: center;
	opacity: 0;
	z-index: -1;
   -webkit-transition: opacity 1s, height 1s, margin 1s, z-index 2s;
    transition: opacity 1s, height 1s, margin 1s, z-index 2s;
}

.services-text p{
	color: rgba(51,51,51,1);
	font-weight: 900;
	padding-top: 3px;
	font-size: 1em;
	text-transform: uppercase;
	text-align: left;
	margin-left: 20px;
}

.image-services:hover + div.services-text, div.services-text:hover {
	height:294px;
	opacity: 1;
	margin: 19px 1px 1px 0px;
	z-index: 1;
    -webkit-transition: opacity 1.5s, height 1s, margin 1s;
    transition: opacity 0.5s, height 1s, margin 1s;
}



.image-services {
	height: 200px;
	margin-top: 40px;
}

.container-info {
	height: 400px;
	width: 70%;
	float: left;
}  




/*-------------------------------------------------------------------------------------------*/
/*----------------------------------------------CONTACT--------------------------------------*/
/*-------------------------------------------------------------------------------------------*/

.container-contact {
	min-height: 400px;
	width: 100%;

}

.container-contact p {
	margin: 20px 0 0 40px;
}


.form-holder {
	max-width:520px;
	height:100%;
	text-align: center;
	margin: 0px 5px 5px 40px;
	padding: 5px 5px 5px 5px;
	float: left;

}

.form-group {
	min-width: 500px;
	padding:0;
	margin:0;
	min-height: 60px;
}

#textarea {
	height: 155px;
	padding:0;
	margin:0;
	resize: none;
}

.form-control, textarea {
	background-color: #DADADA;
	width: 100%;
}


.text-danger {
	height: 20px;
	padding:0;
	margin:0;
	color:#ED8702;
	text-align: left;
	width: 250px;
}

.btn-send {
	margin-top: 20px;
	margin-bottom: 0px;
}



.my-alert {
	color:#333333;
	display: inline-block;
	position:fixed;
	bottom:0px;
	background: #ED8702;
	opacity: .8;
	float: none;
	border: none;
	margin-left: 40px;
}


footer {
	
	height: 140px;
	width:100%;
	padding:0;
	border-bottom: 1px solid #DADADA;

}

.footer-logo-holder {
	position: relative;
	float:right;
	height: 60px;
	width: 230px;
	margin-top: 50px;
	margin-right: 20px;
}

.image-contact {
	height: 50px;
	position: absolute;
    bottom: 0;
    right: 0;
}

 .footer h3 {
 	position: absolute;
    bottom: 0;
    left: 0;
 	font-size: 1em;
 	color: #DADADA;
 }


/*-------------------------------------------------------------------------------------------*/
/*--------------------------------------------IMPRESSUM--------------------------------------*/
/*-------------------------------------------------------------------------------------------*/


.container-impressum h2 {

	padding: 30px 0 40px 20px;
	margin: 50px 0 0 0;

}

.impress-holder {

	width: 200px;
	height: 30px;
	text-align: center;
	margin: auto;
}

.impr {
	float: left;
	text-align: center;
	padding: 20px 10px 0 10px;
}



/*-------------------------------------------------------------------------------------------*/
/*----------------------------------------------MOBILE---------------------------------------*/
/*-------------------------------------------------------------------------------------------*/

@media only screen and (max-width: 768px) {

.menu-button {

	right: 5%;
}

.container-country, .container-intro {
	display:none; 
}

h2, h5, .container-contact p {
	margin-left: 5px;
}

.container-info {
	background: url(../img/niemcy.png) no-repeat center center;
	background-size: 300px;
	height: 500px;
	width: 100%;
}

.container-info li {

  	background: url(../img/pointer-small.png) no-repeat center left;
  	background-size: 10px;
  	padding: 0;
  /* reset styles (optional): */
  	list-style: none;
  	list-style-position: outside;
  	margin-left: -29px;
	margin-top: 20px;

}

.container-info p {
	margin-left: 20px;
	padding-top: 0px;
}


.row-contact {

	padding-left: 35px;

}

.row-services {
	top: 30px;

}

.col-services {
	margin-top: 10px;
}

.form-holder {
	margin-left: 5px;
}

.form-group {
	min-width: 300px;
}

/*-------------------MOBILE - German-------------------*/


.de {
	background: url(../img/polska.png) no-repeat center center;

}

/*-------------------MOBILE - ABOUT-------------------*/


}




