@charset "UTF-8";

body {
	font-family: "Quicksand", sans-serif;
	text-align: left;
	font-size: 16px;
	color: #000000;
	background: #002552;
}
.global-wrapper {
	max-width: 1920px;
	width: 100%;
	margin: 0 auto;
	/* background: transparent url("../../img/bg-footer.svg") 95% bottom no-repeat; */
	background-size: 520px auto;
}
.main-wrapper {
	overflow: hidden;
}
header {
	z-index: 1;
	position: fixed;
	width: 360px;
	padding: 40px 80px;
}
section {
	width: calc(100% - 360px);
	margin-left: 360px;
}
footer {
	width: 100%;
}

.container {
	/* max-width: 1200px; */
	width: 100%;
	padding: 75px 2em 2em 75px;
	background: #ecf0f1;
	border-bottom: 1px solid #002552;
}

h1,
h2,
h3 {
	margin-bottom: 0.75em;
	font-family: "Lora", serif;
	font-weight: 700;
}
h1 {
	font-size: 40px;
	line-height: 40px;
}
h2 {
	font-size: 50px;
	line-height: 50px;
}
h3 {
	font-size: 30px;
	line-height: 30px;
}
h3 {
	text-align: center;
}
.subtitle {
	margin-bottom: 2em;
	font-size: 22px;
	font-weight: 700;
}
.about .subtitle {
	margin: 2.25em 0 0.5em;
	font-size: 40px;
	line-height: 40px;
	font-family: "Lora", sans-serif;
	font-weight: 700;
}
.highlight {
	display: block;
	margin-bottom: 1em;
	font-size: 20px;
	color: #002552;
	font-weight: 700;
}
.upper {
	text-transform: uppercase;
}

.bloc-text li {
	position: relative;
	margin-left: 35px;
	margin-bottom: 0.5em;
	list-style-type: disc;
	font-weight: 700;
}

.border-title {
	margin-bottom: 4em;
	text-align: center;
	border-bottom: 1px solid #002552;
	font-weight: bold;
}
.border-title h3 {
	position: relative;
	white-space: nowrap;
	bottom: -18px;
	display: inline-block;
	margin: 0;
	border: solid #ecf0f1;
	border-width: 0 20px;
	background: #ecf0f1;
}

a {
	text-decoration: none;
	color: #002552;
	font-weight: 700;
}
b {
	font-weight: 700;
}
p {
	text-align: justify;
	font-weight: 700;
}

/* Placeholder */
::-webkit-input-placeholder {
	color: #95958e;
	font-style: italic;
}
::-moz-placeholder {
	color: #95958e;
	font-style: italic;
}
:-ms-input-placeholder {
	color: #95958e;
	font-style: italic;
}
:-moz-placeholder {
	color: #95958e;
	font-style: italic;
}

/* CUSTOM checkbox */
.custom-checkbox {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	float: left;
	position: relative;
	top: 1px;
	height: 20px;
	width: 20px;
	margin: 0;
	padding: 0;
	border: 1px solid #999;
	color: #999;
	cursor: pointer;
	outline: none;
}
.custom-checkbox:checked::before {
	content: "";
	position: absolute;
	top: 2px;
	left: 2px;
	width: 14px;
	height: 14px;
	background: #002552;
}

/* Input */
.wrap-input {
	position: relative;
	width: 100%;
	margin-bottom: 1em;
}
.wrap-input span {
	position: absolute;
	top: 5px;
	left: 1em;
	color: #6e6d6d;
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
}
.wrap-input input,
.wrap-input textarea {
	width: 100%;
	padding: 2em 1em 0.5em;
	background: #fff;
	border: 1px solid #d7d7d7;
	border-radius: 10px;
	outline: none;
	font-size: 16px;
	font-family: "Quicksand", sans-serif;
}
.wrap-input textarea {
	min-height: 260px;
	resize: none;
}
.wrap-input input:focus,
.wrap-input textarea:focus {
	border-color: #1d252c;
}

/* BTN */
.button {
	overflow: hidden;
	position: relative;
	display: inline-block;
	margin: 15px 0;
	background: #002552;
	text-align: center;
	text-transform: uppercase;
	font-weight: 700;
	transition: background 5s cubic-bezier(0.19, 1, 0.22, 1),
		border 1s cubic-bezier(0.19, 1, 0.22, 1),
		color 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}
.button a {
	display: block;
	padding: 0.5em 1.25em;
	color: #fff;
	text-transform: uppercase;
	text-decoration: none;
}
.button button {
	width: 100%;
	padding: 0.5em 1.25em;
	background: none;
	border: none;
	cursor: pointer;
	color: #fff;
	font-family: "Quicksand", sans-serif;
	font-size: 16px;
	text-transform: uppercase;
	font-weight: 700;
	outline: none;
}

.button .mask {
	position: absolute;
	width: 200px;
	height: 60px;
	background-color: #f9adbe;
	transform: translate3d(-120%, -50px, 0) rotate3d(0, 0, 1, 45deg);
	transition: all 1.1s cubic-bezier(0.19, 1, 0.22, 1);
}
.button:hover {
	transition: background 0s;
}
.button:hover .mask {
	background-color: #fff;
	transform: translate3d(120%, -100px, 0) rotate3d(0, 0, 1, 90deg);
}

/* Header */
.header-logo {
	position: relative;
	z-index: 2;
	margin-bottom: 3em;
}
.header-logo a {
	display: block;
}
.header-logo img {
	max-width: 195px;
}
.header-logo img:last-child {
	margin-top: 0.5em;
}

.header-menu li {
	display: block;
	margin-bottom: 0.25em;
}
.header-menu > li:nth-of-type(2) > a {
	display: block;
	margin-bottom: 0.5em;
}
.header-menu > li:nth-of-type(2) > a:hover {
	color: #fff;
}
.header-menu li a {
	color: #fff;
	text-transform: uppercase;
}
.header-menu li .aaaaa:hover,
.header-menu li .aaaaa.selected {
	border-bottom: 1px solid #fff;
}
.header-menu li .sub-menu {
	margin-bottom: 0.75em;
	padding-left: 1em;
}

.nav-icon {
	display: none;
	z-index: 2;
	position: relative;
	width: 40px;
	height: 24px;
	margin: auto;
	-webkit-transition: 0.5s ease-in-out;
	transition: 0.5s ease-in-out;
	cursor: pointer;
}
.nav-icon span {
	display: block;
	position: absolute;
	height: 4px;
	width: 100%;
	background: #fff;
	border-radius: 12px;
	opacity: 1;
	-webkit-transition: 0.2s ease-in-out;
	transition: 0.2s ease-in-out;
}
.nav-icon span:nth-child(1) {
	top: 0px;
	left: 0;
	width: 40px;
}
.nav-icon span:nth-child(2) {
	top: 10px;
	left: 0;
	width: 40px;
}
.nav-icon span:nth-child(3) {
	top: 20px;
	left: 0;
	width: 40px;
}
.nav-icon.open span:nth-child(1) {
	top: 8px;
	left: -3px;
	width: 40px;
	-webkit-transform: translateY(50%) rotate(135deg);
	transform: translateY(50%) rotate(135deg);
}
.nav-icon.open span:nth-child(2) {
	opacity: 0;
}
.nav-icon.open span:nth-child(3) {
	top: 8px;
	left: -3px;
	width: 40px;
	-webkit-transform: translateY(50%) rotate(-135deg);
	transform: translateY(50%) rotate(-135deg);
}

/* Banners */
.banner {
	position: relative;
	width: 100%;
	height: 733px;
	background-repeat: no-repeat;
	background-position: top center;
	background-size: cover;
}
.medium-banner {
	height: 593px;
}
.small-banner {
	height: 320px;
}
.banner-txt {
	position: absolute;
	left: 100px;
	top: 50%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	padding: 0 343px 0 0;
}
.home .banner-txt h2 {
	margin-bottom: 0.5em;
}
.banner-txt h2,
.banner-txt p {
	color: #fff;
	font-weight: 700;
	text-shadow: 0 0 10px #000;
}
.banner-txt h2 {
	margin: 0;
	line-height: 60px;
	font-size: 60px;
}
@media only screen and (max-width: 1760px) {
	.banner-txt {
		left: 3em;
	}
}

/* Home */
.home-service {
	margin: 2.5em 0 4em;
}

/* List */
.product-list {
	overflow: hidden;
	margin-bottom: 3em;
}
.product-list li {
	float: left;
	width: calc(84% / 3);
	margin: 0 8% 3% 0;
	border: 1px solid #dbdbdb;
	background: #fff;
}
.product-list li:nth-of-type(3n) {
	margin-right: 0;
}
.product-list li a img {
	display: block;
	margin: auto;
}
.product-list li span {
	position: relative;
	display: block;
	padding: 1em 2.25em 1em 0.75em;
	background: #e7e9e9;
	font-family: "Lora", serif;
	color: #000;
	font-weight: 700;
	font-size: 23px;
}
.product-list li span:after {
	content: "";
	position: absolute;
	right: 0.75em;
	top: 50%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	width: 30px;
	height: 10px;
	background: url("../../img/icons/arrow.png") top center no-repeat;
	background-size: 100%;
}

/* CTA */
.home-cta {
	overflow: hidden;
	margin-bottom: 4%;
}
.home-cta li {
	float: left;
	width: calc(96% / 2);
	margin-right: 4%;
	border: 1px solid #9ba2a6;
	background-position: top right;
	background-repeat: no-repeat;
	text-align: center;
}
.home-cta li.warehousing-cta {
	/* background-color: #212a31; */
	/* background-image: url("../../img/bg-warehousing.jpg"); */
	position: relative;
}
.home-cta li.warehousing-cta::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #212a31;
	/* z-index: 1; */
	filter: brightness(30%);
	background-image: url("../../img/bg-warehousing.jpg");
}
.home-cta li.custom-cta {
	/* background-color: #1d252c; */
	/* background-image: url("../../img/bg-custom-design.jpg"); */
	position: relative;
}
.home-cta li.custom-cta::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #212a31;
	/* z-index: 1; */
	filter: brightness(30%);
	background-position: top;
	background-image: url("../../img/bg-custom-design.jpg");
}
.home-cta li:last-child {
	margin-right: 0;
}
.home-cta li a {
	display: block;
	padding: 6em 2em;
	position: relative;
}
.home-cta li a:hover {
	opacity: 0.8;
}
.home-cta li span {
	display: block;
	margin-bottom: 1em;
	font-family: "Lora", serif;
	color: #fff;
	font-size: 40px;
	font-weight: 700;
}
.home-cta li p {
	font-weight: 700;
	text-align: center;
	color: #fff;
}

.home-catalog {
	display: block;
	padding: 2.5em 1em;
	text-align: center;
	background: #9a171e url("../../img/bg-catalog.jpg") top center no-repeat;
	/* filter: brightness(60%); */
}
.home-catalog:hover {
	opacity: 0.9;
}
.home-catalog span {
	display: inline-block;
	vertical-align: middle;
	margin-right: 1em;
	font-family: "Lora", serif;
	color: #fff;
	font-size: 40px;
}
.home-catalog .catalog-btn {
	margin: 0;
	padding: 0.75em 2em;
	background: #fff;
	color: #002552;
	text-transform: uppercase;
	font-size: inherit;
	font-family: inherit;
	font-weight: 700;
}

/* Products */
.wrap-products {
	overflow: hidden;
}
.wrap-filters {
	float: left;
	width: 24%;
	margin-right: 2%;
}
.wrap-product-list {
	float: left;
	width: 74%;
}
.wrap-product-list .filters-mobile {
	display: none;
}
.filter-title {
	display: block;
	margin-bottom: 1.5em;
	padding: 0.5em 0;
	border-top: 1px solid #000;
	border-bottom: 3px solid #000;
	font-size: 20px;
	font-weight: 700;
}
.filter-title span {
	position: relative;
	padding-left: 35px;
	cursor: pointer;
}
.filter-title span:before {
	content: "";
	position: absolute;
	top: calc(50% + 2px);
	left: 0;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	display: block;
	width: 25px;
	height: 25px;
	margin-right: 10px;
	background: url("../../img/icons/icon-filter.svg") top left no-repeat;
	background-size: 100%;
}
.filter-title a {
	float: right;
	font-size: 15px;
	color: #555;
	font-weight: 400;
	text-decoration: underline;
}
.filter-title .close-filter {
	display: none;
}
.filter-list .icon {
	display: block;
	margin-bottom: 0.5em;
	text-transform: uppercase;
	font-weight: 700;
	cursor: pointer;
}
.filter-list .icon:before {
	content: "";
	display: inline-block;
	vertical-align: middle;
	margin-right: 10px;
	width: 15px;
	height: 8px;
	background: url("../../img/icons/arrow-black.svg") no-repeat center center;
	background-size: 100%;
}
.filter-list .icon.active:before {
	-webkit-transform: rotate(180deg);
	transform: rotate(180deg);
}
.filter-list ul {
	display: none;
	padding-bottom: 1.5em;
	padding-left: 25px;
}
.filter-list ul.show {
	display: block;
}
.filter-list ul li {
	margin-bottom: 10px;
}
.filter-list ul li label {
	display: block;
	line-height: 20px;
	padding-left: 32px;
	color: #555;
	cursor: pointer;
}

/* Product info */
.wrap-product-detail {
	overflow: hidden;
	position: relative;
	margin-bottom: 5em;
}
.product-img,
.product-info {
	float: left;
}
.product-img {
	width: 32%;
	margin-right: 8%;
	margin-top: 75px;
	background: #fff;
	border: 1px solid #dbdbdb;
	text-align: center;
}
.product-img img {
	display: block;
}
.product-info {
	width: 60%;
	padding-right: 165px;
}
.product-info .button {
	float: right;
	margin-bottom: 4em;
	margin-top: 0;
}
.product-info h2 {
	clear: both;
	margin-bottom: 0.25em;
	text-transform: uppercase;
}
.product-info .product-number {
	margin-bottom: 2em;
}
.product-info .product-number li {
	display: inline-block;
	line-height: 16px;
	margin-right: 1em;
	padding-right: 1em;
	border-right: 1px solid #000;
}
.product-info .product-number li:last-child {
	border: none;
}
.product-info table {
	width: 100%;
	margin-bottom: 7em;
}
.product-info table tr {
	border-bottom: 1px solid #000;
}
.product-info table tr td {
	padding: 5px 0;
}
.product-info table tr td b {
	text-transform: uppercase;
}
.product-info .next-prev li {
	display: inline-block;
	margin-right: 1.25em;
}
.product-info .next-prev li:last-child {
	margin-right: 0;
}
.product-info .next-prev li .button {
	margin: 0;
	text-transform: inherit;
}
.product-info .next-prev li .button a {
	padding: 0.25em 1.25em;
	text-transform: inherit;
}
.product-info .next-prev li.innactive .button {
	background: transparent;
}
.product-info .next-prev li.innactive .button a {
	padding: 0.25em 0;
	color: #8b8b8b;
	cursor: default;
	pointer-events: none;
}
.product-info .next-prev li.innactive .button .mask {
	display: none;
}

/* Custom design */
.custom-container {
	margin-bottom: 3em;
}
.custom-design-list {
	overflow: hidden;
	margin: 2.5em 0 1em;
}
.custom-design-list li {
	float: left;
	width: calc(88% / 4);
	margin: 0 4% 4% 0;
}
.custom-design-list li:nth-of-type(4n) {
	margin-right: 0;
}
.custom-design-list li a {
	display: block;
	background: #fff;
	border: 1px solid #dcdcdd;
	-webkit-transition: all 0.5s ease;
	transition: all 0.5s ease;
}
.custom-design-list li a img {
	display: block;
	margin: 0 auto;
}

/* Warehousing */
.warehousing-container {
	padding-bottom: 3em;
}

/* Catalogue */
.coming-soon {
	margin-bottom: 12em;
}

/* About */
.about-container {
	margin-bottom: 3em;
}
.logo-ampak {
	display: block;
	margin: 2em 0;
}
.logo-ampak img {
	max-width: 200px;
}
.about-list {
	overflow: hidden;
	display: inline-block;
}
.about-list .bloc-text {
	float: left;
	margin-right: 6em;
}
.about-list .bloc-text li {
	margin-left: 20px;
}
.about-img img {
	max-width: 500px;
}
.wrap-logo-ampak {
	overflow: hidden;
	margin-top: 3em;
}
.wrap-logo-ampak a,
.wrap-logo-ampak .logo-ampak-txt {
	float: left;
}
.wrap-logo-ampak .logo-ampak-txt {
	padding: 3em 2em;
}
.wrap-logo-ampak .logo-ampak-txt p {
	margin: 0 0 0.25em;
	text-transform: uppercase;
	font-size: 28px;
	font-family: "Lora", sans-serif;
}
.company-logos {
	margin: 3em 0;
}
.company-logos li {
	display: inline-block;
	margin-right: 1em;
}
.company-logos li a {
	display: block;
}
.company-logos li a img {
	max-width: 160px;
}
.company-logos li a .special {
	max-width: 240px;
}

/* Contact */
.wrap-contact {
	overflow: hidden;
	margin-bottom: 2em;
	padding-top: 2em;
}
.wrap-contact .title {
	display: block;
	margin-bottom: 0.25em;
	font-family: "Lora", serif;
	color: #002552;
	font-size: 20px;
	font-weight: 700;
}
.wrap-contact .wrap-form {
	width: 50%;
	margin-right: 10%;
}
.wrap-contact .wrap-contact-info {
	width: 40%;
}
.wrap-contact .wrap-form,
.wrap-contact .wrap-contact-info {
	float: left;
}
.wrap-contact .wrap-form .title {
	margin-bottom: 1em;
}
.wrap-contact .wrap-form .contact-form {
	padding-top: 1em;
}
.wrap-contact .wrap-form .button button {
	padding: 0.75em 2.5em;
}
.wrap-contact .wrap-contact-info .wrap-info {
	margin-bottom: 1.5em;
}
.wrap-contact .wrap-contact-info .wrap-info p {
	margin: 0;
}
.wrap-contact .wrap-contact-info .wrap-info a {
	color: inherit;
}

/* Footer */
.footer {
	overflow: hidden;
	width: 100%;
	max-width: 1920px;
	margin: 0 auto;
	padding: 3em 343px 6em 360px;
}
.footer-info {
	float: left;
	width: 75%;
}
.footer-info .title {
	display: block;
	margin-bottom: 0.25em;
	line-height: 20px;
	text-transform: uppercase;
	color: #002552;
	font-weight: 700;
}
.footer-info p {
	margin-bottom: 0;
}
.footer-info p,
.footer-info a {
	color: #fff;
}
.footer-info .footer-logo {
	max-width: 125px;
	margin-right: 4em;
}
.footer-info .footer-logo a {
	display: block;
}
.footer-info .footer-logo img {
	max-width: 125px;
}
.footer-info .footer-logo img:last-child {
	margin-top: 0.25em;
}
.footer-info .footer-info {
	overflow: hidden;
	width: 75%;
}
.footer-info .footer-logo,
.footer-info .footer-info-left,
.footer-info .footer-info-right {
	float: left;
}
.footer-info .footer-info-left {
	margin-right: 4em;
}
.footer-info .footer-info-right,
.footer-info .footer-info-left {
	padding-top: 2em;
}

.footer-quote {
	float: left;
	width: 25%;
	text-align: right;
}
.footer-quote .title {
	display: block;
	margin-bottom: 1em;
	font-family: "Lora", serif;
	font-weight: 700;
	color: #fff;
	font-size: 30px;
}
.footer-quote p {
	margin-bottom: 0;
	color: #fff;
}
.footer-quote .button {
	margin-bottom: 0;
}

.copyright {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	background-color: #002552;
	border-top: 1px solid #002552;
}
.copyright .wrap-copyright {
	overflow: hidden;
	width: 100%;
	max-width: 1920px;
	margin: 0 auto;
	padding: 0.75em 343px 0.75em 360px;
}
.copyright .wrap-copyright p {
	float: left;
	margin: 0;
}
.copyright .wrap-copyright p:last-child {
	float: right;
}
.copyright .wrap-copyright p,
.copyright .wrap-copyright a {
	color: #fff;
}

/* Betwwen destop and tablet */
@media only screen and (max-width: 1760px) {
	.container {
		padding: 75px 3em 2em;
	}
	.copyright .wrap-copyright {
		padding: 0.75em 3em 0.75em 360px;
	}
}
@media only screen and (min-width: 1025px) and (max-width: 1400px) {
	.home-banner {
		height: 380px;
	}
	.product-list li {
		width: calc(92% / 2);
		margin: 0 8% 5% 0;
	}
	.product-list li:nth-of-type(2n) {
		margin-right: 0;
	}
	.product-list li:last-child {
		margin-right: 0 !important;
	}
	.product-list li:nth-of-type(3n) {
		margin-right: 8%;
	}
	.product-list li span {
		font-size: 20px;
	}
	.product-list.product li {
		width: calc(92% / 2);
		margin: 0 8% 5% 0;
	}
	.product-list li:nth-of-type(2n) {
		margin-right: 0;
	}

	/* Products */
	.wrap-filters,
	.wrap-product-list {
		float: left;
		width: 100%;
		margin-right: 0;
	}
	.wrap-filters {
		position: relative;
	}
	.wrap-filter-product {
		display: none;
		z-index: 1;
		position: absolute;
		top: 49px;
		left: 0;
		width: 100%;
		padding: 1em;
		background: #e7e9e9;
		box-shadow: 0px 3px 8px #888;
	}
	.wrap-filter-product.show {
		display: block;
	}
	.filter-title.active .main-filter {
		display: none;
	}
	.filter-title.active .close-filter {
		display: inline-block;
	}
	.filter-title.active .close-filter:before {
		top: 50%;
		width: 18px;
		height: 18px;
		background-image: url("../../img/icons/icon-close.svg");
	}
}
@media only screen and (min-width: 1025px) and (max-width: 1400px) {
	.product-info {
		width: 50%;
		padding: 0;
	}
}

@media only screen and (min-width: 1025px) and (max-width: 1830px) {
	.footer-info {
		margin-right: 0;
	}
}
@media only screen and (min-width: 1025px) and (max-width: 1761px) {
	.footer {
		padding: 2.5em 3em 6em 360px;
	}
}
