@import url('https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,700');

*,
*:before,
*:after {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	width: 100%;
	height: 100%;
	font-family: 'Source Sans Pro', 'sans-serif';
	font-weight: 300;
	margin: 0;
	padding: 0;
	background-color: #000000;
	overflow-x: hidden;
}

html {
	width: 100%;
	height: 100%;
}

/* =========== PRELOADER =========== */

#preloader {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #01a6e0;
	z-index: 999999;
}
#status {
	width: 200px;
	height: 200px;
	position: absolute;
	left: 50%;
	top: 50%;
	background-image: url(../img/loading-bubbles.svg);
	background-repeat: no-repeat;
	background-position: center center;
	text-align: center;
	margin: -77px 0 0 -100px;
}

/* =========== COOKIE INFO =========== */

#cookieinfo * {
	margin: 0px;
	padding: 0px;
}

#cookieinfo {
	position: fixed;
	width: 300px;
	height: 150px;
	outline: none;
	bottom: 30px;
	left: 64px;
	padding: 20px 50px 0 15px;
	z-index: 4000;
	background: #01a6e0;
	font-size: 13px;
}

#cookieinfo h6 {
	font-size: 14px;
	font-weight: 300;
	color: #000;
}

#cookieinfo-border {
	position: absolute;
	width: 300px;
	height: 150px;
	margin: -25px 0 0 -10px;
	z-index: -3;
	border: 2px solid black;
}

#cookieinfo a {
	position: absolute;
	right: 17px;
	top: calc(50% - 14px);
	width: 28px;
	height: 28px;
	cursor: pointer;
}

#cookieinfo a:before,
#cookieinfo a:after {
	position: absolute;
	left: 15px;
	content: ' ';
	height: 22px;
	width: 2px;
	background: black;
}

#cookieinfo a:before {
	transform: rotate(45deg);
}

#cookieinfo a:after {
	transform: rotate(-45deg);
}

/* ===========  SCROLL ANIMATORS =========== */

.fade-in {
	opacity: 1 !important;
	transform: translateY(0) !important;
}

.fade-in_left {
	opacity: 1 !important;
	transform: translateX(0) !important;
}

.green {
	background: #86cc17 !important;
}

.orange {
	background: #ff8335 !important;
}

.rotation {
	transform: skewY(3deg);
}

/* ===========  NAVBAR-HAMBURGER =========== */

.box-header {
	position: fixed;
	left: 0;
	height: 100%;
	width: 44px;
	z-index: 1001;
	background: #000000;
}

.box-header__nav_trigger {
	position: absolute;
	left: 6px;
	top: 20px;
	height: 30px;
	width: 44px;
	cursor: pointer;
	background-color: transparent;
}

.dropdown {
	top: calc(100% - 50px);
}

.box-header__language {
	-webkit-transform: scale(1);
	transform: scale(1);
	transition: all 0.7s ease;
}

.box-header__dropdown_button {
	width: 44px;
	height: 34px;
	cursor: pointer;
	padding-left: calc(50% - 12px);
	padding-top: calc(50% - 19px);
}

.box-header__dropdown_button:hover .box-header__language {
	transform: scale(1.25);
}

.dropdown-content {
	position: absolute;
	margin-top: -50px;
	opacity: 0;
	transition: all 0.7s ease-out;
}

.dropdown:hover .dropdown-content {
	opacity: 1 !important;
}

.box-header__dropdown_content_language {
	width: 44px;
	height: 34px;
	margin-top: -52px;
	padding-left: calc(50% - 12px);
	padding-top: calc(50% - 19px);
}

.box-header__dropdown_content_language:hover .box-header__language {
	transform: scale(1.25);
}

.box-header__dropdown_content_language_2:hover .box-header__language {
	transform: scale(1.25);
}

.box-header__dropdown_content_language_2 {
	width: 44px;
	height: 34px;
	padding-left: calc(50% - 12px);
	padding-top: calc(50% - 19px);
}

.box-header__nav_icon {
	display: inline-block;
	position: absolute;
	left: 0px;
	top: 0px;
	bottom: auto;
	width: 30px;
	height: 2px;
	background-color: #fff;
	-webkit-transition: background-color 0.3s;
	transition: background-color 0.3s;
	list-style: none;
}

.box-header__nav_icon::before,
.box-header__nav_icon:after {
	content: '';
	width: 30px;
	height: 100%;
	position: absolute;
	background-color: #fff;
	right: 0;
	-webkit-transition: -webkit-transform 0.3s, top 0.3s, background-color 0s;
	-webkit-transition: top 0.3s, background-color 0s, -webkit-transform 0.3s;
	transition: top 0.3s, background-color 0s, -webkit-transform 0.3s;
	transition: transform 0.3s, top 0.3s, background-color 0s;
	transition: transform 0.3s, top 0.3s, background-color 0s, -webkit-transform 0.3s;
}

.box-header__nav_icon::before {
	top: -7px;
}

.box-header__nav_icon::after {
	top: 7px;
}

.box-header__nav_icon.is-clicked {
	background-color: rgba(255, 255, 255, 0);
}

.box-header__nav_icon.is-clicked::before {
	top: 0;
	-webkit-transform: rotate(135deg);
	transform: rotate(135deg);
}

.box-header__nav_icon.is-clicked::after {
	top: 0;
	-webkit-transform: rotate(225deg);
	transform: rotate(225deg);
}

/* ===========  NAVBAR-MAIN =========== */

.box-header__nav {
	position: fixed;
	left: 0;
	top: 0;
	height: 100%;
	width: 170px;
	background: #000000;
	z-index: 1000;
	padding-top: 110px;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	overflow: auto;
	-webkit-overflow-scrolling: touch;
	-webkit-transform: translateX(-100%);
	transform: translateX(-100%);
	-webkit-transition-property: -webkit-transform;
	transition-property: -webkit-transform;
	transition-property: transform;
	transition-property: transform, -webkit-transform;
	-webkit-transition-duration: 0.4s;
	transition-duration: 0.4s;
	list-style: none;
}

.box-header__nav_box {
	width: 95px;
	height: 80px;
	text-align: center;
	font-size: 14px;
	padding-top: 0.9em;
	vertical-align: middle;
}

.box-header__nav li {
	font-weight: 300;
	margin: 0.2em;
	margin-left: calc(50% - 40px) !important;
}

.box-header__nav a {
	display: inline-block;
	color: #fff;
	text-decoration: none;
	letter-spacing: 2px;
}

.box-header__nav_box:hover .box-header__nav_menu_icon {
	transform: scale(1.15) !important;
}

.box-header__nav_menu_icon {
	-webkit-transform: scale(1);
	transform: scale(1);
	transition: all 0.7s ease;
}

.box-header__nav.is-visible {
	-webkit-transform: translateY(0);
	transform: translateY(0);
}

.box-header__nav law {
	display: inline-block;
	color: #fff;
	text-decoration: none;
	letter-spacing: 2px;
}

/* =========== FRONT-SECTION =========== */

#front-section {
	height: 95%;
	overflow: hidden;
	position: relative;
}

.front-section__layer {
	background-position: bottom center;
	background-size: auto;
	background-repeat: no-repeat;
	width: 100%;
	height: 100%;
	position: fixed;
	z-index: -1;
}

#front-section,
.front-section__layer {
	min-height: 95%;
}

.front-section__layer_bg {
	background: url(../img/header-bg.jpg) no-repeat center;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	top: 0;
	left: 0;
	min-width: 100%;
	min-height: 100%;
}

.front-section__layer_1 {
	width: 100%;
	height: 100%;
	position: relative;
}

.front-section__layer_overlay {
	width: 100%;
	height: 100%;
	position: absolute;
	background: rgba(0, 0, 0, 0.11);
}

.front-section__layer_1 img {
	width: 600px;
	margin-left: calc(50% - 300px);
	margin-top: 245px;
}

.front-section__arrow {
	width: 40px;
	height: 30px;
	position: absolute;
	bottom: 50px;
	left: calc(50% - 20px);
	z-index: 5 !important;
	text-align: center;
}

/* =========== CHOSE-SECTION =========== */

.chose-section {
	top: 0;
	left: 0;
	min-width: 100%;
	min-height: 1400px;
	cursor: default;
	background: white;
	padding-top: 10px;
	transform: skewY(-3deg);
}

.chose-section__box_coal {
	width: 300px;
	height: 450px;
	float: right;
	background: #fafafa;
	margin-top: 50px;
	margin-right: -15px;
	overflow: hidden;
	text-align: center;
	-webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
	-moz-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
	-o-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
	opacity: 0;
	transform: translateX(-50px);
	transition: all 1s ease;
}

.chose-section__box_coal_content {
	padding-top: 50px;
	background: #fafafa;
	position: relative;
	display: block;
	z-index: 2;
	overflow: hidden;
	width: 300px;
	height: 450px;
}
.chose-section__box_coal_content:after {
	content: ' ';
	position: absolute;
	display: block;
	width: 100%;
	height: 300px;
	right: 0;
	top: 0;
	z-index: -1;
	margin-top: -49px;
	background: radial-gradient(#ff8335, #e15e0b);
	-ms-transform: skewY(18deg);
	-webkit-transform: skewY(18deg);
	transform: skewY(18deg);
}

.chose-section__box_coal h1 {
	color: white;
	font-size: 55px;
	font-weight: 700;
	margin-bottom: 55px;
}

.chose-section__box_coal_content button {
	outline: 0;
	border: 3px solid #ff8335;
	background: none;
	-moz-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
	-webkit-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
	color: #ff8335;
	width: 80%;
	height: 44px;
	font-size: 16px;
	font-weight: 700;
	border-radius: 22px;
	margin-top: 66px;
	cursor: pointer;
}

.chose-section__box_coal_content button:hover,
.chose-section__box_coal_content button:focus {
	background: #ff8335;
	color: white;
}

.chose-section__box_coal_big {
	width: 100%;
	height: 300px;
	background: url(../img/coal-bg.jpg) no-repeat center;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	margin-top: 50px;
	margin-left: -15px;
	overflow: hidden;
	opacity: 0;
	transform: translateX(50px);
	transition: all 1s ease;
}

.chose-section__box_coal_big_hover {
	width: 103%;
	height: 103%;
	background-color: #ff8335;
	opacity: 0.7;
}

.chose-section__box_coal_big_content {
	margin-top: 55px;
	margin-left: 15px;
	margin-right: 15px;
	opacity: 0;
	transform: translateY(50px);
	transition: all 2.5s ease-out;
	text-align: justify;
}

.chose-section__box_coal_big_content h2 {
	font-size: 33px;
	font-weight: 700;
	margin-bottom: 11px;
}

/* FERTILISERS */

.chose-section__box_fert_content {
	margin-top: 50px;
	margin-left: -15px;
	padding-top: 50px;
	background: #fafafa;
	position: relative;
	display: block;
	z-index: 2;
	overflow: hidden;
	text-align: center;
	width: 300px;
	height: 450px;
	-webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
	-moz-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
	-o-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
	opacity: 0;
	transform: translateX(50px);
	transition: all 1s ease;
}

.chose-section__box_fert_content:after {
	content: ' ';
	position: absolute;
	display: block;
	width: 100%;
	height: 300px;
	right: 0;
	top: 0;
	z-index: -1;
	margin-top: -49px;
	background: radial-gradient(#86cc17, #639a0b);
	-ms-transform: skewY(-18deg);
	-webkit-transform: skewY(-18deg);
	transform: skewY(-18deg);
}

.chose-section__box_fert h1 {
	color: white;
	font-size: 55px;
	font-weight: 700;
	margin-bottom: 77px;
}

.chose-section__box_fert_content button {
	outline: 0;
	border: 3px solid #86cc17;
	background: none;
	-moz-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
	-webkit-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
	color: #86cc17;
	width: 80%;
	height: 44px;
	font-size: 16px;
	font-weight: 700;
	border-radius: 22px;
	margin-top: 77px;
	cursor: pointer;
}

.chose-section__box_fert_content button:hover,
.chose-section__box_fert_content button:focus {
	background: #86cc17;
	color: white;
}

.chose-section__box_fert_big {
	width: 100%;
	height: 300px;
	background: url(../img/fertilisers-bg.jpg) no-repeat center;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	margin-top: 50px;
	margin-right: -15px;
	margin-bottom: 50px;
	float: right;
	overflow: hidden;
	opacity: 0;
	transform: translateX(-50px);
	transition: all 1s ease;
}

.chose-section__box_fert_big_hover {
	width: 103%;
	height: 103%;
	background-color: #86cc17;
	opacity: 0.7;
}

.chose-section__box_fert_big_content {
	margin-left: 30px;
	margin-right: 15px;
	opacity: 0;
	transform: translateY(50px);
	transition: all 2.5s ease-out;
	padding-bottom: 70px;
	text-align: justify;
}

.chose-section__box_fert_big_content h2 {
	font-size: 33px;
	font-weight: 700;
	margin-bottom: 11px;
}

/* =========== PARALLAX-BEETWEEN =========== */

.parallax-beetween__chose_company {
	width: 100%;
	height: 350px;
}

.parallax-beetween {
	width: 100%;
	height: 350px;
}

.front-section__layer_parallax {
	background: url(../img/parallax-company.jpg) no-repeat center;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	top: 1340px;
	left: 0;
	min-width: 100%;
	min-height: 100%;
}

/* =========== COMPANY-SECTION =========== */

.company-section {
	top: 0;
	left: 0;
	min-width: 100%;
	min-height: 700px;
	cursor: default;
	z-index: 600;
	position: relative;
	background-color: #fff;
	transform: skewY(-3deg);
}

.company-section__img {
	margin-top: 60px;
	margin-left: 50px;
}

.company-section__img_main {
	margin-left: 120px;
	margin-top: 130px;
	-webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
	-moz-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
	-o-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
	position: absolute;
	z-index: 4;
	opacity: 0;
	transform: translateX(30px);
	transition: all 1s ease;
}

.company-section__img_bg {
	-webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
	-moz-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
	-o-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
	background: url(../img/company-1.jpg) no-repeat center;
	width: 300px;
	height: 500px;
	overflow: hidden;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	z-index: -4;
	opacity: 0;
	transform: translateX(-30px);
	transition: all 1s ease;
}

.company-section__img_hover {
	width: 100%;
	height: 100%;
	background: #01a6e0;
	opacity: 0.7;
	z-index: 2 !important;
}

.company-section__box_text {
	width: 180px;
	height: 40px;
	border-right: 3px solid #01a6e0;
	border-left: 3px solid #01a6e0;
	margin-left: calc(50% - 90px);
}

.company-section__text {
	margin-top: 50px;
	opacity: 0;
	transform: translateY(50px);
	transition: all 1.5s ease-out;
	text-align: justify;
}

.company-section__text h2 {
	font-size: 33px;
	font-weight: 700;
	margin-bottom: 22px;
}

.company-section button {
	outline: 0;
	border: 3px solid #01a6e0;
	background: none;
	-moz-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
	-webkit-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
	color: #01a6e0;
	width: 180px;
	height: 44px;
	font-size: 16px;
	font-weight: 700;
	border-radius: 22px;
	margin-top: 22px;
	margin-bottom: 11px;
	cursor: pointer;
}

.company-section button:hover,
.company-section button:focus {
	background: #01a6e0;
	color: white;
}

/* =========== CONTACT-SECTION =========== */

.contact-section {
	top: 0;
	left: 0;
	min-width: 100%;
	min-height: 600px;
	position: relative;
	cursor: default;
	z-index: 600;
	background-color: white;
	padding-top: 100px;
	transform: skewY(-3deg);
	margin-top: -1px;
}

.contact-section__box {
	width: 400px;
	height: 500px;
	margin-left: calc(50% - 200px);
	margin-top: -30px;
	margin-bottom: 150px;
	overflow: hidden;
	-webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
	-moz-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3992);
	-o-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
	opacity: 0;
	transform: translateX(-50px);
	transition: all 1.5s ease-out;
}

.contact-section__box_main_photo_1 {
	width: 100%;
	height: 350px;
	background: url(../img/box_1.jpg) center no-repeat;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
}

.contact-section__box_main_photo_2 {
	width: 100%;
	height: 350px;
	background: url(../img/box_2.jpg) center no-repeat;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
}

.contact-section__box_main_text {
	width: 100%;
	height: 200px;
	background: white;
	transform: skewY(-5deg);
	margin-top: -25px;
	padding-top: 25px;
	text-align: center;
}

.contact-section__box_main_text h3 {
	transform: skewY(5deg);
	font-weight: 700;
	font-size: 33px;
}

.contact-section__box_main_text p {
	transform: skewY(5deg);
}

.contact-section__box_main_text_line {
	width: 50px;
	height: 3px;
	background: #01a6e0;
	transform: skewY(5deg);
	margin-left: calc(50% - 25px);
	margin-bottom: 7px;
}

.contact-section__map {
	width: 500px;
	height: 500px;
	opacity: 0;
	transform: translateY(50px);
	transition: all 1.5s ease-out;
}

.contact-section__map_button_1 {
	width: 30px;
	height: 40px;
	position: absolute;
	background: none;
	margin-left: 405px;
	margin-top: 70px;
	cursor: pointer;
	z-index: 2;
}

.contact-section__map_button_img_1 {
	width: 32px;
	height: 32px;
	position: absolute;
	margin-left: 404px;
	margin-top: 68px;
}

.contact-section__map_button_2 {
	width: 30px;
	height: 40px;
	position: absolute;
	background: none;
	margin-left: 424px;
	margin-top: 150px;
	cursor: pointer;
	z-index: 2;
}

.contact-section__map_button_img_2 {
	width: 32px;
	height: 32px;
	position: absolute;
	margin-left: 423px;
	margin-top: 144px;
	opacity: 0;
}

/* =========== FOOTER =========== */

.footer {
	top: 0;
	left: 0;
	min-width: 100%;
	min-height: 300px;
	position: relative;
	cursor: default;
	z-index: 600;
	color: white;
	background-color: #01a6e0;
	padding-top: 100px;
	margin-top: -100px;
	z-index: -1;
}

.footer__office {
	float: left;
	color: white;
	font-weight: 400;
	margin-bottom: 20px;
	margin-left: 50px;
	margin-top: 50px;
}

.footer__office span {
	font-size: 20px;
	font-weight: 700;
	color: white;
}

.footer__location {
	float: left;
	text-align: left;
	color: white;
	font-weight: 400;
	margin: 0 0 20px 50px;
}

.footer__location span {
	font-size: 20px;
	font-weight: 700;
	color: white;
}

.footer__trading {
	text-align: center;
	color: white;
	font-weight: 400;
	margin: 50px 0 20px 50px;
}

.footer__trading span {
	font-size: 20px;
	font-weight: 700;
	color: white;
}

.footer__management {
	text-align: right;
	color: white;
	font-weight: 400;
	margin: 50px 0 20px 50px;
}

.footer__management span {
	font-size: 20px;
	font-weight: 700;
	color: white;
	margin: 0 5px 0 0;
}

.footer__arrow {
	position: relative;
	height: 32px;
	right: 0;
	transition: all 0.5s ease;
	cursor: pointer;
}

.footer__arrow:hover img {
	transform: scale(1.04) rotate(-180deg);
}

.footer__arrow img {
	position: relative;
	width: 20px;
	height: 100%;
	margin: -5px 0 0 0;
	transform: rotate(90deg);
	transition: all 0.5s ease;
}

.footer__management_text {
	display: none;
}

.footer__terminal_text {
	display: none;
}

.footer__terminal {
	text-align: right;
	color: white;
	font-weight: 400;
	margin: 0 0 20px 50px;
}

.footer__terminal span {
	font-size: 20px;
	font-weight: 700;
	color: white;
	margin: 0 5px 0 0;
}

.footer__links a {
	text-decoration: none;
	color: white;
	font-weight: 700;
}

.footer__left {
	float: left;
	font-size: 10px;
	margin-left: 50px;
}

.footer__right {
	float: right;
	font-size: 10px;
	text-decoration: none;
	color: white;
	margin-right: 6px;
}

@media screen and (min-width: 240px) and (max-width: 1199px) {
	.front-section__layer_parallax {
		top: 1540px;
	}

	.contact-section__map {
		width: 450px;
		height: 450px;
	}

	.contact-section__map_button_1 {
		margin-left: 363px;
		margin-top: 63px;
	}

	.contact-section__map_button_img_1 {
		margin-left: 362px;
		margin-top: 58px;
	}

	.contact-section__map_button_2 {
		margin-left: 379px;
		margin-top: 132px;
	}

	.contact-section__map_button_img_2 {
		margin-left: 379px;
		margin-top: 125px;
	}
}

@media screen and (min-width: 240px) and (max-width: 1029px) {
	.box-header {
		width: 100%;
		height: 44px;
	}

	.box-header__nav_icon {
		margin-top: 2px;
	}

	.box-header__nav {
		height: 170px;
		width: 100%;
		-webkit-transform: translateY(-100%);
		transform: translateY(-100%);
		padding-top: 50px;
	}

	.box-header__nav li:nth-child(1) {
		margin-left: calc(50% - 253px) !important;
	}

	.box-header__nav li:nth-child(2) {
		margin-left: calc(50% - 169px) !important;
		margin-top: -83px;
	}

	.box-header__nav li:nth-child(3) {
		margin-left: calc(50% - 85px) !important;
		margin-top: -84px;
	}

	.box-header__nav li:nth-child(4) {
		margin-left: calc(50% - 1px) !important;
		margin-top: -83px;
	}

	.box-header__nav li:nth-child(5) {
		margin-left: calc(50% + 83px) !important;
		margin-top: -83px;
	}

	.box-header__nav li:nth-child(6) {
		margin-left: calc(50% + 167px) !important;
		margin-top: -83px;
	}

	.box-header__nav_trigger {
		left: calc(100% - 48px);
	}

	.dropdown {
		top: 0;
		z-index: -1;
	}

	.box-header__dropdown_button {
		width: 34px;
		height: 44px;
		padding-left: 5px;
		padding-top: 8px;
	}

	.box-header__dropdown_content_language {
		width: 34px;
		height: 44px;
		margin-top: 0;
		padding-left: 6px;
		padding-top: 8px;
	}

	.box-header__dropdown_content_language_2 {
		width: 34px;
		height: 44px;
		padding-left: 6px;
		padding-top: 8px;
		margin-left: 34px;
		margin-top: -44px;
	}

	.dropdown-content {
		margin-top: -44px;
		margin-left: 34px;
	}

	.footer__location {
		margin-right: 50px;
	}

	.footer__right {
		margin-right: 50px;
	}
}

@media screen and (min-width: 240px) and (max-width: 991px) {
	.company-section__img {
		margin-left: 0px;
		margin-top: 100px;
	}

	.company-section__img_main {
		margin-left: 80px;
	}

	.front-section__layer_parallax {
		top: 1740px;
	}

	.contact-section__box {
		width: 330px;
		height: 400px;
		margin-left: calc(50% - 165px);
	}

	.contact-section__map {
		width: 330px;
		height: 330px;
	}

	.contact-section__map_button_1 {
		margin-left: 262px;
		margin-top: 38px;
	}

	.contact-section__map_button_img_1 {
		margin-left: 261px;
		margin-top: 34px;
	}

	.contact-section__map_button_2 {
		margin-left: 274px;
		margin-top: 90px;
	}

	.contact-section__map_button_img_2 {
		margin-left: 274px;
		margin-top: 84px;
	}

	.contact-section__box_main_photo_1 {
		height: 250px;
	}

	.contact-section__box_main_photo_2 {
		height: 250px;
	}

	#cookieinfo {
		left: 30px;
	}
}

@media screen and (min-width: 240px) and (max-width: 767px) {
	.chose-section__box_coal {
		position: absolute;
		margin-left: -15px;
		margin-top: 51px;
		z-index: 2;
		transform: translateX(50px);
	}

	.chose-section__box_coal_big_content {
		padding-top: 140px;
		padding-left: 15px;
		padding-right: 15px;
	}

	.chose-section__box_coal_big {
		margin-left: 15px;
		transform: translateX(-50px);
	}

	.chose-section__box_fert {
		position: absolute;
		margin-top: -950px;
	}

	.chose-section__box_fert_big_content {
		margin-left: 15px;
		margin-right: 15px;
	}

	.chose-section__box_fert_big {
		margin-right: -15px;
		margin-bottom: 200px;
	}

	.chose-section {
		min-height: 1800px;
	}

	.company-section__img {
		margin-left: calc(50% - 180px);
	}

	.company-section__text {
		padding-left: 15px;
		padding-right: 15px;
		margin-top: 77px;
	}

	.company-section__text h2 {
		text-align: center;
	}

	.company-section__text button {
		margin-left: calc(50% - 90px);
	}

	.chose-section__box_fert_content:after {
		-ms-transform: skewY(18deg);
		-webkit-transform: skewY(18deg);
		transform: skewY(18deg);
	}

	.contact-section__map {
		margin-left: calc(50% - 165px);
		margin-top: 50px;
		margin-bottom: 50px;
	}

	.footer__office {
		float: none;
		text-align: center;
		margin: 50px 0 0 0;
	}

	.footer__location {
		float: none;
		text-align: center;
		margin: 30px 0 0 0;
	}

	.footer__trading {
		text-align: center;
		margin: 20px 0 0 0;
	}

	.footer__management {
		text-align: center;
		margin: 20px 0 0 0;
	}

	.footer__terminal {
		text-align: center;
		margin: 20px 0 30px 0;
	}
}

@media screen and (min-width: 240px) and (max-width: 575px) {
	.chose-section__box_coal {
		margin-left: 0px;
	}

	.chose-section__box_coal_big {
		margin-left: 0px;
	}

	.chose-section__box_fert_big {
		margin-right: 0px;
	}

	.chose-section__box_fert {
		margin-left: 15px;
		margin-top: -926px;
	}

	.front-section__layer_1 img {
		margin-left: calc(50% - 225px);
		width: 450px;
	}
}

@media screen and (min-width: 240px) and (max-width: 544px) {
	.chose-section__box_fert {
		margin-top: -950px;
	}
}

@media screen and (min-width: 240px) and (max-width: 529px) {
	.box-header__nav {
		height: 300px;
		width: 100%;
		-webkit-transform: translateY(-100%);
		transform: translateY(-100%);
		padding-top: 50px;
	}

	.box-header__nav li:nth-child(1) {
		margin-left: calc(50% - 124px) !important;
	}

	.box-header__nav li:nth-child(2) {
		margin-left: calc(50% - 40px) !important;
		margin-top: -83px;
	}

	.box-header__nav li:nth-child(3) {
		margin-left: calc(50% + 44px) !important;
		margin-top: -84px;
	}

	.box-header__nav li:nth-child(4) {
		margin-left: calc(50% - 124px) !important;
		margin-top: 3px;
	}

	.box-header__nav li:nth-child(5) {
		margin-left: calc(50% - 40px) !important;
		margin-top: -83px;
	}

	.box-header__nav li:nth-child(6) {
		margin-left: calc(50% + 44px) !important;
		margin-top: -83px;
	}
}

@media screen and (min-width: 240px) and (max-width: 516px) {
	.chose-section__box_fert {
		margin-top: -974px;
	}
}

@media screen and (max-width: 480px) {
	#cookieinfo {
		left: calc(50% - 150px);
		bottom: 15px;
	}
}

@media screen and (max-width: 340px) {
	#cookieinfo {
		width: 280px;
		left: calc(50% - 140px);
	}

	#cookieinfo-border {
		width: 280px;
	}
}

@media screen and (min-width: 240px) and (max-width: 472px) {
	.chose-section__box_fert {
		margin-top: -998px;
	}

	.front-section__layer_1 img {
		margin-left: calc(50% - 200px);
		width: 400px;
	}
}

@media screen and (min-width: 240px) and (max-width: 441px) {
	.chose-section__box_fert {
		margin-top: -1022px;
	}
}

@media screen and (min-width: 240px) and (max-width: 422px) {
	.chose-section__box_fert {
		margin-top: -1046px;
	}

	.company-section__img_bg {
		transform: translateX(50px);
	}

	.company-section__img_main {
		transform: translateX(-50px);
	}

	.front-section__layer_parallax {
		top: 1840px;
	}

	.front-section__layer_1 img {
		margin-left: calc(50% - 175px);
		width: 350px;
	}
}

@media screen and (min-width: 240px) and (max-width: 392px) {
	.chose-section__box_fert {
		margin-top: -1070px;
	}

	.company-section__img {
		margin-left: calc(50% - 160px);
		transform: translateX(-30px);
	}

	.company-section__img_bg {
		transform: translateX(30px);
		margin-left: 20px;
	}
}

@media screen and (min-width: 240px) and (max-width: 376px) {
	.chose-section__box_fert {
		margin-top: -1094px;
		margin-left: calc(50% - 150px);
	}

	.chose-section__box_fert_content {
		transform: translateX(-50px);
	}

	.chose-section__box_coal_big {
		display: none;
	}

	.chose-section__box_fert_big {
		display: none;
	}

	.chose-section__box_coal_big_content {
		margin-top: 400px;
	}

	.chose-section__box_coal {
		margin-left: calc(50% - 165px);
		transform: translateX(-50px);
	}

	.chose-section__box_fert_big_content {
		margin-top: 550px;
		margin-left: 30px;
		margin-right: 30px;
	}

	.front-section__layer_parallax {
		top: 1840px;
	}

	.front-section__layer_1 img {
		margin-left: calc(50% - 150px);
		width: 300px;
	}
}

@media screen and (min-width: 240px) and (max-width: 375px) {
	.chose-section__box_fert {
		margin-top: -1118px;
	}
}

@media screen and (min-width: 240px) and (max-width: 357px) {
	.chose-section__box_fert {
		margin-top: -1142px;
	}

	.company-section__img_bg {
		transform: translateX(25px);
		margin-left: 25px;
	}

	.company-section__img {
		transform: translateX(-25px);
	}

	.contact-section__map {
		width: 290px;
		height: 290px;
		margin-left: calc(50% - 145px);
	}

	.contact-section__map_button_1 {
		margin-left: 229px;
		margin-top: 29px;
	}

	.contact-section__map_button_img_1 {
		margin-left: 228px;
		margin-top: 25px;
	}

	.contact-section__map_button_2 {
		margin-left: 239px;
		margin-top: 74px;
	}

	.contact-section__map_button_img_2 {
		margin-left: 238px;
		margin-top: 69px;
	}

	.contact-section__box {
		width: 290px;
		margin-left: calc(50% - 145px);
	}
}

@media screen and (min-width: 240px) and (max-width: 350px) {
	.company-section__img {
		margin-left: calc(50% - 150px);
	}

	.company-section__img_bg {
		width: 270px;
		height: 450px;
	}

	.company-section__img_main {
		width: 219px;
		height: 350px;
	}

	.chose-section__box_fert {
		margin-top: -1166px;
	}

	.front-section__layer_parallax {
		top: 1900px;
	}
}

@media screen and (min-width: 240px) and (max-width: 337px) {
	.chose-section__box_fert {
		margin-top: -1190px;
	}
}

@media screen and (min-width: 240px) and (max-width: 325px) {
	.contact-section__img_main {
		margin-left: 0px;
	}
}

@media screen and (min-width: 240px) and (max-width: 323px) {
	.chose-section__box_fert {
		margin-top: -1214px;
	}
}

@media screen and (min-width: 240px) and (max-width: 320px) {
	.chose-section__box_fert {
		margin-top: -1238px;
	}
}

@media screen and (min-width: 240px) and (max-width: 315px) {
	.contact-section__img_bg {
		margin-right: 10px;
	}
}

@media screen and (min-width: 240px) and (max-width: 310px) {
	.front-section__layer_parallax {
		top: 2000px;
	}

	.contact-section__img_bg {
		margin-right: 0px;
	}
}

@media screen and (min-width: 240px) and (max-width: 309px) {
	.chose-section__box_fert {
		margin-top: -1262px;
	}
}

@media screen and (min-width: 240px) and (max-width: 301px) {
	.chose-section__box_fert {
		margin-top: -1286px;
	}
}

/* =========================================== */
/*              ABOUT - PODSTRONA            */
/* =========================================== */

#front-section_about {
	height: 500px;
	overflow: hidden;
	position: relative;
}

.front-section__layer_about {
	background: url(../img/about-subpage-bg.jpg) no-repeat center;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	top: 0;
	left: 0;
	min-width: 100%;
	min-height: 100%;
}

.front-section__layer_about_parallax {
	background: url(../img/about-photo.jpg) no-repeat center;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	top: 550px;
	left: 0;
	min-width: 100%;
	min-height: 100%;
}

.about {
	top: 0;
	left: 0;
	min-width: 100%;
	min-height: 500px;
	cursor: default;
	background: #fff;
	transform: skewY(-3deg);
}

.about h1 {
	text-align: center;
	font-weight: 700;
	font-size: 66px;
	margin-top: 55px;
	margin-bottom: 44px;
	color: #01a6e0;
}

.about h2 {
	margin-left: calc(50% - 250px);
	font-size: 40px;
	margin-bottom: 44px;
	margin-top: 33px;
	max-width: 500px;
	text-align: center;
	opacity: 0;
	transform: translateY(50px);
	transition: all 2s ease-out;
}

.about h3 {
	font-size: 27px;
	margin-bottom: 22px;
	font-weight: 700;
	margin-left: 44px;
	color: #01a6e0;
}

.about__line {
	width: 50px;
	height: 3px;
	background-color: #dedede;
	margin-left: calc(50% - 25px);
	margin-bottom: 22px;
	opacity: 0;
	transform: translateX(-50px);
	transition: all 1s ease;
}

.about__line_2 {
	width: 50px;
	height: 3px;
	background-color: #dedede;
	margin-left: calc(50% - 25px);
	margin-bottom: 22px;
	opacity: 0;
	transform: translateX(50px);
	transition: all 1s ease;
}

.about__text {
	margin-top: 50px;
	margin-right: 15px;
	margin-left: 15px;
	margin-bottom: 70px;
	opacity: 0;
	transform: translateY(50px);
	transition: all 1s ease-out;
	text-align: justify;
}

.about__text_1 {
	margin-top: 50px;
	margin-right: 15px;
	margin-left: 15px;
	margin-bottom: 70px;
	opacity: 0;
	transform: translateY(50px);
	transition: all 1s ease-out;
	text-align: justify;
}

.about h4 {
	font-weight: 700;
	font-size: 27px;
	text-align: center;
	color: #01a6e0;
	margin-top: 100px;
	margin-bottom: 22px;
	opacity: 0;
	transform: translateY(-25px);
	transition: all 1s ease-out;
}

.about__certifications {
	width: 800px;
	margin-left: calc(50% - 400px);
	padding-bottom: 100px;
}

.about__certifications button {
	color: #01a6e0;
	border: none;
	outline: none;
	cursor: pointer;
	transition: all 0.7s ease;
	background: none;
}

.about__certifications button:hover {
	color: #dedede;
}

.about__certifications ul {
	list-style-type: none;
	border-top: 2px solid #01a6e0;
	border-bottom: 2px solid #01a6e0;
	opacity: 0;
	transform: translateY(25px);
	transition: all 1s ease-out;
}

.about__certifications li {
	border-bottom: 1px solid #dedede;
	font-size: 15px;
	padding-top: 10px;
	padding-bottom: 10px;
}
.about__certifications li:last-child {
	border-bottom: none;
}

.about__certifications_year {
	font-weight: 700;
	margin-left: 15px;
}

.about__certifications_text {
	max-width: 650px;
	margin-left: 125px;
	margin-top: -23px;
}

/* ====== CERTIFICATIONS ====== */

.certifications {
	position: fixed;
	z-index: 1200;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.8);
	display: none;
}

.cross-button {
	position: absolute;
	right: 16px;
	top: 16px;
	width: 32px;
	height: 32px;
	opacity: 0.6;
	cursor: pointer;
}
.cross-button:hover {
	opacity: 1;
}
.cross-button:before,
.cross-button:after {
	position: absolute;
	left: 15px;
	content: ' ';
	height: 33px;
	width: 2px;
	background-color: #b3b3b3;
}
.cross-button:before {
	transform: rotate(45deg);
}
.cross-button:after {
	transform: rotate(-45deg);
}

.certifications_1 {
	width: 100%;
	height: 100%;
	background: url(../img/cert-mocznik.jpg) no-repeat center;
	-webkit-background-size: contain;
	-moz-background-size: contain;
	-o-background-size: contain;
	background-size: contain;
	display: none;
}

.certifications_2 {
	width: 100%;
	height: 100%;
	background: url(../img/cert-npk-1.jpg) no-repeat center;
	-webkit-background-size: contain;
	-moz-background-size: contain;
	-o-background-size: contain;
	background-size: contain;
	display: none;
}

.certifications_3 {
	width: 100%;
	height: 100%;
	background: url(../img/cert-npk-2.jpg) no-repeat center;
	-webkit-background-size: contain;
	-moz-background-size: contain;
	-o-background-size: contain;
	background-size: contain;
	display: none;
}

@media screen and (min-width: 240px) and (max-width: 829px) {
	.about__certifications {
		width: 700px;
		margin-left: calc(50% - 350px);
	}

	.about h3 {
		font-size: 25px;
	}
}

@media screen and (min-width: 240px) and (max-width: 767px) {
	.about h3 {
		font-size: 27px;
	}

	.front-section__layer_about_parallax {
		top: 700px;
	}

	.about__certifications {
		width: 600px;
		margin-left: calc(50% - 300px);
	}
}

@media screen and (min-width: 240px) and (max-width: 629px) {
	.about__certifications {
		width: 500px;
		margin-left: calc(50% - 250px);
	}
}

@media screen and (min-width: 240px) and (max-width: 529px) {
	.about__certifications {
		width: 400px;
		margin-left: calc(50% - 200px);
	}

	.about h2 {
		margin-left: calc(50% - 200px);
		max-width: 400px;
	}
}

@media screen and (min-width: 240px) and (max-width: 527px) {
	.front-section__layer_about_parallax {
		top: 800px;
	}
}

@media screen and (min-width: 240px) and (max-width: 429px) {
	.about__certifications {
		width: 300px;
		margin-left: calc(50% - 150px);
	}

	.about h2 {
		margin-left: calc(50% - 150px);
		max-width: 300px;
	}
}

@media screen and (min-width: 240px) and (max-width: 422px) {
	.front-section__layer_about_parallax {
		top: 900px;
	}
}

@media screen and (min-width: 240px) and (max-width: 337px) {
	.front-section__layer_about_parallax {
		top: 1000px;
	}
}

@media screen and (min-width: 240px) and (max-width: 329px) {
	.about__certifications {
		width: 250px;
		margin-left: calc(50% - 125px);
	}

	.about h2 {
		margin-left: calc(50% - 125px);
		max-width: 250px;
	}
}

/* =========================================== */
/*              KONTAKT - PODSTRONA            */
/* =========================================== */

.front-section__layer_kontakt {
	background: url(../img/kontakt-bg.jpg) no-repeat center;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	top: 0;
	left: 0;
	min-width: 100%;
	min-height: 100%;
}

.front-section__layer_kontakt_parallax {
	background: url(../img/main-bg.jpg) no-repeat center;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	top: 550px;
	left: 0;
	min-width: 100%;
	min-height: 100%;
}

.kontakt {
	top: 0;
	left: 0;
	min-width: 100%;
	min-height: 500px;
	cursor: default;
	background: #fff;
	transform: skewY(-3deg);
}

.kontakt h1 {
	text-align: center;
	font-weight: 700;
	font-size: 66px;
	margin-top: 55px;
	margin-bottom: 44px;
	color: #01a6e0;
}

.kontakt h2 {
	text-align: center;
	padding-top: 100px;
	font-weight: 700;
	font-size: 33px;
	margin-bottom: 33px;
	opacity: 0;
	transform: translateY(50px);
	transition: all 1s ease-out;
}

.kontakt p {
	text-align: center;
}

.kontakt__line {
	width: 50px;
	height: 3px;
	background-color: #dedede;
	margin-left: calc(50% - 25px);
	margin-bottom: 100px;
	opacity: 0;
	transform: translateX(-50px);
	transition: all 1s ease;
}

.kontakt__text {
	margin-top: 100px;
	opacity: 0;
	transform: translateX(-50px);
	transition: all 1s ease;
}

.kontakt__text span {
	font-size: 22px;
}

.kontakt__text_2 {
	margin-top: 30px;
	padding-bottom: 80px;
	opacity: 0;
	transform: translateX(-50px);
	transition: all 1s ease;
}

.kontakt__text_3 {
	margin-top: 30px;
	opacity: 0;
	transform: translateX(-50px);
	transition: all 1s ease;
}

.kontakt__text_2 span {
	font-size: 22px;
}

.kontakt__text_3 span {
	font-size: 22px;
}

.kontakt__text img {
	width: 160px;
	height: 160px;
	margin-left: calc(50% - 80px);
	position: absolute;
	margin-top: 9px;
}

.kontakt span {
	font-weight: 700;
	color: #01a6e0;
}

.kontakt__border_line {
	width: 100%;
	height: 2px;
	background-color: #dedede;
	margin-bottom: 11px;
	margin-top: 11px;
	opacity: 0;
	transform: translateX(50px);
	transition: all 2s ease;
}

@media screen and (min-width: 992px) and (max-width: 1170px) {
	.kontakt__form {
		max-width: 450px;
		margin-left: calc(50% - 225px);
	}
}

@media screen and (min-width: 768px) and (max-width: 991px) {
	.kontakt__form {
		max-width: 330px;
		margin-left: calc(50% - 165px);
	}
}

@media screen and (min-width: 240px) and (max-width: 767px) {
	.kontakt__form {
		max-width: 450px;
		margin-left: calc(50% - 225px);
		padding-bottom: 0px;
	}

	.front-section__layer_kontakt_parallax {
		top: 800px;
	}
}

@media screen and (min-width: 240px) and (max-width: 499px) {
	.kontakt__form {
		max-width: 400px;
		margin-left: calc(50% - 200px);
	}
}

@media screen and (min-width: 240px) and (max-width: 419px) {
	.kontakt__form {
		max-width: 300px;
		margin-left: calc(50% - 150px);
	}
}

@media screen and (min-width: 240px) and (max-width: 319px) {
	.kontakt__form {
		max-width: 250px;
		margin-left: calc(50% - 125px);
	}
}

/* =========================================== */
/*              COAL - PODSTRONA            */
/* =========================================== */

.front-section__layer_coal {
	background: url(../img/coal-subpage-bg.jpg) no-repeat center;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	top: 0;
	left: 0;
	min-width: 100%;
	min-height: 100%;
}

.coal {
	top: 0;
	left: 0;
	min-width: 100%;
	min-height: 500px;
	cursor: default;
	background: #fff;
	transform: skewY(-3deg);
	padding-bottom: 150px;
}

.coal h1 {
	text-align: center;
	font-weight: 700;
	font-size: 66px;
	margin-top: 55px;
	margin-bottom: 44px;
	color: #ff8335;
}

.coal__line {
	width: 50px;
	height: 3px;
	background: #dedede;
	margin-top: 50px;
	margin-bottom: 50px;
	margin-left: calc(50% - 25px);
	opacity: 0;
	transform: translateX(50px);
	transition: all 1s ease;
}

.coal__line_2 {
	width: 50px;
	height: 3px;
	background: #dedede;
	margin-top: 50px;
	margin-bottom: 50px;
	margin-left: calc(50% - 25px);
	opacity: 0;
	transform: translateX(-50px);
	transition: all 1s ease;
}

.coal__text {
	margin-right: 15px;
	margin-left: 15px;
	margin-bottom: 30px;
	opacity: 0;
	transform: translateY(50px);
	transition: all 1.5s ease-out;
	text-align: justify;
}

.coal__text_2 {
	text-align: center;
	margin-top: -11px;
	margin-bottom: 50px;
	font-weight: 400;
	opacity: 0;
	transform: translateY(-25px);
	transition: all 1s ease-out;
}

.coal__img {
	width: 500px;
	height: 300px;
	margin-left: calc(50% - 250px);
	background: url(../img/coal-photo.jpg) no-repeat center;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	opacity: 0;
	transform: translateX(-50px);
	transition: all 1.5s ease-out;
	-webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
	-moz-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
	-o-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.coal__img_coal_main {
	width: 500px;
	height: 300px;
	margin-left: calc(50% - 250px);
	margin-bottom: 50px;
	opacity: 0;
	transform: translateX(-50px);
	transition: all 1s ease-out;
}

.coal__img_coal_1 {
	background: url(../img/coal-1.jpg) no-repeat center;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
}

.coal__img_coal_2 {
	background: url(../img/coal-2.jpg) no-repeat center;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
}

.coal__img_coal_3 {
	background: url(../img/coal-3.jpg) no-repeat center;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
}

.coal__img_coal_4 {
	background: url(../img/coal-4.jpg) no-repeat center;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
}

.coal__img_coal_5 {
	background: url(../img/coal-5.jpg) no-repeat center;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
}

.coal__text_coal {
	margin-bottom: 50px;
	opacity: 0;
	transform: translateY(50px);
	transition: all 2s ease-out;
	margin-top: 60px;
}

.coal__text_coal span {
	font-weight: 700;
	font-size: 44px;
	color: #ff8335;
}

.coal__text_coal_granulation {
	font-weight: 700;
	font-size: 33px !important;
	color: #ff8335;
}

.coal__text button {
	outline: 0;
	border: 3px solid #ff8335;
	background: none;
	-moz-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
	-webkit-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
	color: #ff8335;
	width: 180px;
	height: 44px;
	font-size: 16px;
	font-weight: 700;
	border-radius: 22px;
	margin-top: 33px;
	cursor: pointer;
}

.coal__text button:hover,
.coal__text button:focus {
	background: #ff8335;
	color: white;
}

#coal__text_coal_6 {
	text-align: center;
}

.coal__text_coal button {
	outline: 0;
	border: 3px solid #dedede;
	background: none;
	-moz-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
	-webkit-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
	color: #dedede;
	width: 180px;
	height: 44px;
	font-size: 16px;
	font-weight: 700;
	border-radius: 22px;
	cursor: not-allowed;
}

@media screen and (min-width: 992px) and (max-width: 1199px) {
	.coal__img {
		width: 450px;
		height: 300px;
		margin-left: calc(50% - 225px);
	}

	.coal__img_coal_main {
		width: 400px;
		height: 300px;
		margin-left: calc(50% - 200px);
	}
}

@media screen and (min-width: 768px) and (max-width: 991px) {
	.coal__img {
		width: 330px;
		height: 400px;
		margin-left: calc(50% - 165px);
	}

	.coal__img_coal_main {
		width: 330px;
		height: 400px;
		margin-left: calc(50% - 165px);
	}
}

@media screen and (min-width: 240px) and (max-width: 767px) {
	.coal {
		text-align: center;
	}

	.coal__text_coal {
		margin-bottom: 100px;
		margin-left: 20px;
		margin-right: 20px;
		margin-top: 0px;
	}

	.coal__text {
		margin-left: 20px;
		margin-right: 20px;
	}

	.coal__text button {
		margin-bottom: 30px;
	}

	.coal__img_coal_main {
		margin-bottom: 11px;
	}
}

@media screen and (min-width: 240px) and (max-width: 539px) {
	.coal__img {
		width: 400px;
		height: 250px;
		margin-left: calc(50% - 200px);
	}

	.coal__img_coal_main {
		width: 400px;
		height: 250px;
		margin-left: calc(50% - 200px);
	}
}

@media screen and (min-width: 240px) and (max-width: 439px) {
	.coal__img {
		width: 300px;
		height: 250px;
		margin-left: calc(50% - 150px);
	}

	.coal__img_coal_main {
		width: 300px;
		height: 250px;
		margin-left: calc(50% - 150px);
	}
}

@media screen and (min-width: 240px) and (max-width: 339px) {
	.coal__img {
		width: 250px;
		height: 200px;
		margin-left: calc(50% - 125px);
	}

	.coal__img_coal_main {
		width: 250px;
		height: 200px;
		margin-left: calc(50% - 125px);
	}

	.coal__text_coal span {
		font-size: 40px;
	}

	.coal__text_coal_granulation {
		font-size: 29px;
	}
}

@media screen and (min-width: 240px) and (max-width: 315px) {
	.coal__text_coal span {
		font-size: 36px;
	}

	.coal__text_coal_granulation {
		font-size: 25px;
	}
}

/* =========================================== */
/*              FERT - PODSTRONA            */
/* =========================================== */

.front-section__layer_fert {
	background: url(../img/fert-bg.jpg) no-repeat center;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	top: 0;
	left: 0;
	min-width: 100%;
	min-height: 100%;
}

.fert {
	top: 0;
	left: 0;
	min-width: 100%;
	min-height: 500px;
	cursor: default;
	background: #fff;
	transform: skewY(-3deg);
	padding-bottom: 150px;
}

.fert h1 {
	text-align: center;
	font-weight: 700;
	font-size: 66px;
	margin-top: 55px;
	margin-bottom: 44px;
	color: #86cc17;
}

.fert__line {
	width: 50px;
	height: 3px;
	background: #dedede;
	margin-top: 50px;
	margin-bottom: 50px;
	margin-left: calc(50% - 25px);
	opacity: 0;
	transform: translateX(50px);
	transition: all 1s ease;
}

.fert__line_2 {
	width: 50px;
	height: 3px;
	background: #dedede;
	margin-top: 50px;
	margin-bottom: 50px;
	margin-left: calc(50% - 25px);
	opacity: 0;
	transform: translateX(-50px);
	transition: all 1s ease;
}

.fert__text {
	opacity: 0;
	transform: translateY(50px);
	transition: all 1.5s ease-out;
	text-align: justify;
}

.fert__text_2 {
	text-align: center;
	margin-top: -11px;
	margin-bottom: 50px;
	font-weight: 400;
	opacity: 0;
	transform: translateY(-25px);
	transition: all 1s ease-out;
}

.coal__text_fert {
	margin-bottom: 50px;
	opacity: 0;
	transform: translateY(50px);
	transition: all 2s ease-out;
	text-align: justify;
}

.coal__text_fert_header {
	margin-bottom: 60px;
	opacity: 0;
	transform: translateY(50px);
	transition: all 2s ease-out;
	text-align: justify;
	border: 3px solid #f2f2f2;
	padding: 11px;
}

.coal__text_fert_header span {
	font-weight: 700;
	font-size: 44px;
	color: #86cc17;
}

.coal__text_fert span {
	font-weight: 700;
	font-size: 44px;
	color: #86cc17;
}

.fert__img {
	width: 500px;
	height: 300px;
	margin-left: calc(50% - 250px);
	background: url(../img/fert-photo.jpg) no-repeat center;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	opacity: 0;
	transform: translateX(-50px);
	transition: all 1.5s ease-out;
}

.fert__img_fert_main {
	width: 500px;
	height: 300px;
	margin-left: calc(50% - 250px);
	margin-bottom: 50px;
	margin-top: 19px;
	opacity: 0;
	transform: translateX(-50px);
	transition: all 1s ease-out;
}

.fert__img_fert_1 {
	background: url(../img/fert-1.jpg) no-repeat center;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
}

.fert__img_fert_2 {
	background: url(../img/fert-2.jpg) no-repeat center;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
}

.fert__img_fert_3 {
	background: url(../img/fert-3.jpg) no-repeat center;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
}

.fert__text button {
	outline: 0;
	border: 3px solid #86cc17;
	background: none;
	-moz-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
	-webkit-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
	color: #86cc17;
	width: 180px;
	height: 44px;
	font-size: 16px;
	font-weight: 700;
	border-radius: 22px;
	margin-top: 33px;
	cursor: pointer;
}

.fert__text button:hover,
.fert__text button:focus {
	background: #86cc17;
	color: white;
}

.fert__text_add {
	margin-top: 50px;
	text-align: center;
	width: 350px;
	margin-left: calc(50% - 175px);
}

.fert__text_add p {
	text-align: justify !important;
	margin-left: 80px;
}

.fert__text_add span {
	font-weight: 700;
	font-size: 44px;
	color: #86cc17;
}

.fert__text_fert_add {
	font-weight: 700;
	font-size: 33px !important;
	color: #ff8335;
}

.fert__color {
	color: #86cc17 !important;
}

.cert-fert__button {
	outline: 0;
	border: 3px solid #86cc17;
	background: none;
	-moz-transition: all 0.3s ease-in;
	-o-transition: all 0.3s ease-in;
	-webkit-transition: all 0.3s ease-in;
	transition: all 0.3s ease-in;
	color: #86cc17;
	width: 180px;
	height: 44px;
	font-size: 16px;
	font-weight: 700;
	border-radius: 22px;
	cursor: pointer;
}

.cert-fert__button:hover {
	background: #86cc17;
	color: white;
}

#cert-fert-button-2 {
	margin-top: 11px;
	margin-bottom: 11px;
}

@media screen and (min-width: 992px) and (max-width: 1199px) {
	.fert__img {
		width: 450px;
		height: 300px;
		margin-left: calc(50% - 225px);
	}

	.fert__img_fert_main {
		width: 400px;
		height: 300px;
		margin-left: calc(50% - 200px);
	}
}

@media screen and (min-width: 768px) and (max-width: 991px) {
	.fert__img {
		width: 330px;
		height: 400px;
		margin-left: calc(50% - 165px);
	}

	.fert__img_fert_main {
		width: 330px;
		height: 400px;
		margin-left: calc(50% - 165px);
	}
}

@media screen and (min-width: 240px) and (max-width: 767px) {
	.fert {
		text-align: center;
	}

	.coal__text_fert {
		margin-bottom: 100px;
		margin-left: 20px;
		margin-right: 20px;
	}

	.fert__text {
		margin-left: 20px;
		margin-right: 20px;
	}

	.fert__text button {
		margin-bottom: 30px;
	}

	.fert__img_fert_main {
		margin-bottom: 11px;
	}
}

@media screen and (min-width: 240px) and (max-width: 539px) {
	.fert__img {
		width: 400px;
		height: 250px;
		margin-left: calc(50% - 200px);
	}

	.fert__img_fert_main {
		width: 400px;
		height: 250px;
		margin-left: calc(50% - 200px);
	}
}

@media screen and (min-width: 240px) and (max-width: 439px) {
	.fert__img {
		width: 300px;
		height: 250px;
		margin-left: calc(50% - 150px);
	}

	.fert__img_fert_main {
		width: 300px;
		height: 250px;
		margin-left: calc(50% - 150px);
	}
}

@media screen and (min-width: 240px) and (max-width: 412px) {
	.coal__text_fert_header span {
		font-size: 36px;
	}
}

@media screen and (min-width: 240px) and (max-width: 350px) {
	.coal__text_fert_header span {
		font-size: 32px;
	}

	.fert__text_add span {
		font-size: 40px;
	}

	.fert__text_add {
		margin-top: 50px;
		text-align: center;
		width: 320px;
		margin-left: calc(50% - 160px);
	}

	.fert__text_add p {
		margin-left: 65px;
	}
}

@media screen and (min-width: 240px) and (max-width: 350px) {
	.coal__text_fert_header span {
		font-size: 32px;
	}

	.coal__text_add span {
		font-size: 40px;
	}

	.fert__text_add {
		margin-top: 50px;
		text-align: center;
		width: 320px;
		margin-left: calc(50% - 160px);
	}

	.fert__text_add p {
		margin-left: 65px;
	}

	.fert__text_fert_add {
		font-size: 28px !important;
	}
}

@media screen and (min-width: 240px) and (max-width: 339px) {
	.fert__img {
		width: 250px;
		height: 200px;
		margin-left: calc(50% - 125px);
	}

	.coal__text_fert span {
		font-size: 40px;
	}

	.fert__img_fert_main {
		width: 250px;
		height: 200px;
		margin-left: calc(50% - 125px);
	}
}

@media screen and (min-width: 240px) and (max-width: 330px) {
	.coal__text_fert_header span {
		font-size: 32px;
	}

	.coal__text_add span {
		font-size: 36px;
	}

	.fert__text_add {
		margin-top: 50px;
		text-align: center;
		width: 300px;
		margin-left: calc(50% - 150px);
	}

	.fert__text_add p {
		margin-left: 55px;
	}

	.fert__text_fert_add {
		font-size: 25px !important;
	}
}

@media screen and (min-width: 240px) and (max-width: 315px) {
	.coal__text_fert span {
		font-size: 36px;
	}
}

/* =========================================== */
/*              ABOUT - PODSTRONA            */
/* =========================================== */

.nota-prawna {
	top: 0;
	left: 0;
	min-width: 100%;
	min-height: 500px;
	cursor: default;
	background: #fff;
}

.nota-prawna span {
	font-weight: 700;
	font-size: 22px;
}

.nota-prawna p {
	margin-bottom: 100px;
	margin-top: 100px;
}

#front-section_shareholders {
	height: 500px;
	overflow: hidden;
	position: relative;
}

.front-section__layer_shareholders {
	background: url(../img/shareholders.jpg) no-repeat center;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	top: 0;
	left: 0;
	min-width: 100%;
	min-height: 100%;
}

@media only screen and (max-width: 900px) {
	.about .shareHolders {
		font-size: 45px;
	}
}
