:root {
	--blue: #2591ed;
	--light-blue: #52a6ea;
	--black: #121212;
	--white: #fff;
	--light-gray: #f5f5f5;
	--gray: #fbfbfb;
	--md-gray: #919191;
	--sm-gray: #afafaf;
	--dark-gray: #706f6f;
	--border-gray: #eee;
	/* easing method for all transitions */
	--e: ease-out;
}

#e {
    color: var(--dark-gray);
}

html {
	scroll-behavior: smooth;
}
/** Base Styles **/
body {
	font-family: 'Roboto Light', helvetica, arial, sans-serif;
	font-weight: 300;
	font-size: 16px;
	color: var(--black);
	background-color: var(--white);
	line-height: 28px;
	letter-spacing: 0.025em;
	overflow-x: hidden;
}
body::before {
    content:'';
    position:fixed;
    top:0;
    right:0;
    bottom:0;
    left:0;
    z-index: -1;
    opacity:0;
    background-color: var(--black);
    transition: opacity 0.3s ease-out;
}
body.show-menu {
    overflow: hidden;
}
h1 {
	font-size: 40px;
	font-family: 'Archivo Bold', Helvetica, arial, sans-serif;
	font-weight: 700;
}

h1.hero-bold {
	font-size: 74px;
	letter-spacing: 0.025em;
	line-height: 50px;
    text-transform: uppercase;
    text-align: center;
}
h1.hero-bold small{font-size:125px;display:block;line-height:1;font-weight:700;}

h2 {
	font-family: 'Archivo Regular', Helvetica, arial, sans-serif;
	font-weight: 400;
	font-size: 36px;
	line-height: 39px;
}

h3 {
	font-size: 30px;
	line-height: 36px;
	font-family: 'Archivo', Helvetica, arial, sans-serif;
}

h4 {
	font-size: 21px;
	line-height: 28px;
}
h5 {
	font-size: 18px;
	font-family: 'Roboto', helvetica, arial, sans-serif;
}
h6 {
	font-size: 14px;
}
p {
	font-size: 1rem;
}

a {
	font-size: inherit;
	color: var(--blue);
	text-decoration: underline;
	transition: text-decoration-color 0.3s var(--e), color 0.3s var(--e);
}

a:hover,
a:focus {
	text-decoration-color: transparent;
}
/* :focus-within is separated due to browser support */
a:focus-within {
	text-decoration-color: transparent;
}
small {
	font-size: 11px;
	font-family: 'Roboto Medium', Helvetica, arial, sans-serif;
	font-weight: 500;
}

li {
	font-size: 12px;
	color: var(--dark-gray);
	line-height: 25px;
}

label {
	font-size: 10px;
}

figure {
	margin: 0;
}
img {
	max-width: 100%;
	height: auto;
}
select {
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
	position: relative;
}
hr {
	border-top-color: var(--border-gray);
}
form label {
	color: #fff;
	text-transform: uppercase;
	font-family: 'Roboto', helvetica, arial, sans-serif;
	font-size: 10px !important;
	letter-spacing: 0.025em;
	line-height: 28px;
	margin-bottom: 0;
}
select:focus {
	color: var(--md-gray) !important;
}
.contact-bkg select:focus {
	color: var(--sm-gray) !important;
}
.fas,
.fab {
	font-size: 16px;
}

.footer {
	padding-top: 60px;
	padding-bottom: 60px;
	background-color: var(--gray);
}
.container-mid {
	width: 100%;
	max-width: 1500px;
	margin: 0 auto;
	padding-right: 15px;
	padding-left: 15px;
}
.max-w-570 {
	max-width: 570px;
}
[data-fit=""] {
    display: inline-block !important;
    white-space: nowrap;
}
/** Utilities **/
.two-list {
    column-count: 2;
}
.text-primary {
	color: var(--blue) !important;
}
.text-white h1,
.text-white h2,
.text-white h3,
.text-white h4,
.text-white h5,
.text-white h6,
.text-white p,
.text-white li {
	color: #fff !important;
}
.pt-medium,
.py-medium {
	padding-top: 150px;
}
.pb-medium,
.py-medium {
	padding-bottom: 150px;
}
.pt-large,
.py-large {
	padding-top: 200px;
}
.pb-large,
.py-large {
	padding-bottom: 200px;
}
.social-link {
	color: var(--black);
	margin-right: 0.5rem;
}
.social-link:hover {
	color: var(--blue);
}
/** WHC Styles **/
.contact-bkg .whc_branding {
    color: var(--light-gray);
}
.white-attr + .whc_branding {
    color: white;
}
.contact-bkg .whc_branding a {
    color: var(--white);
}
/** Menu Icon **/
.burger-container {
	padding: 1rem;
	background-color: var(--white);
	position: fixed;
	right: 0;
	z-index: 200;
	top:0;
}
.burger {
	position: relative;
	height: 3em;
	width: 3em;
	font-size: 10px;
	cursor: pointer;
	transition: 0.3s var(--e);
	-webkit-tap-highlight-color: transparent;
}
.burger .burger-lines:after {
	left: unset;
	top: -0.6em;
	right: 0;
}
.burger .burger-lines:before {
	left: unset;
	top: 0.6em;
	right: 0;
}
.burger:after {
	content: '';
	display: block;
	position: absolute;
	height: 150%;
	width: 150%;
	top: -25%;
	left: -25%;
}
.burger .burger-lines {
	top: 50%;
	margin-top: -0.125em;
}
.burger .burger-lines,
.burger .burger-lines:after,
.burger .burger-lines:before {
	pointer-events: none;
	display: block;
	content: '';
	width: 100%;
	border-radius: 0;
	background-color: var(--blue);
	height: 0.25em;
	position: absolute;
	transform: rotate(0);
}
.burger.burger-slip .burger-lines:after {
	width: 2.6em;
}
.burger.burger-slip .burger-lines:before {
	width: 2.1em;
}
.burger.burger-slip .burger-lines,
.burger.burger-slip .burger-lines:after,
.burger.burger-slip .burger-lines:before {
	transition: all 0.2s;
}

.burger.burger-slip.open .burger-lines {
	transform: translateX(-2em);
	background-color: transparent;
}

.burger.burger-slip.open .burger-lines:before,
.burger.burger-slip.open .burger-lines:after {
	left: 0.5em;
	top: 0;
	width: 2em;
}

.burger.burger-slip.open .burger-lines:before {
	transform: translateX(2em) rotate(135deg);
}

.burger.burger-slip.open .burger-lines:after {
	transform: translateX(2em) rotate(-135deg);
}

/** Glide Utilities **/
.glide__track {
    background-color: var(--black);
}
.brand-glide .glide__track {
    background-color: transparent;
}
.hero-slider .glide__img {
    opacity:0.6;
}
.hero-slider .glide__slides {
	transform: translate3d(0, 0, 0) !important;
	width: 100vw !important;
	height: calc(100vh - 62px);
	max-height:800px;
	margin-bottom: 0;
}
.hero-slider .glide__slide {
	opacity: 0;
	z-index: 0;
	position: absolute;
	top: 0;
	left: 0;
	transition: opacity 0.4s ease;
	height: 100%;
}

.hero-slider .glide__slide.glide__slide--active {
	opacity: 1;
	z-index: 1;
}
.hero-slider .glide__figure,
.hero-slider .glide__img {
	height: 100%;
	position: relative;
}
.hero-slider .glide__figure,
.hero-slider .glide__img,
.hero-slider .glide__picture {
	width: 100%;
}
.hero-slider .glide__img {
	object-fit: cover;
	object-position: bottom;
}
.hero-slider .glide__caption {
/*	position: absolute; */
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
}
.hero-slider .glide__caption .caption-center {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	text-align: center;
	display: flex;
	justify-content: center;
	align-content: center;
	align-items:center;
	flex-wrap: wrap;
	max-width: 992px;
	margin: 0 auto;
	padding-right: 15px;
	padding-left: 15px;
}
.hero-slider .glide__caption .caption-title,
.hero-slider .glide__caption .caption-subtitle {
	color: var(--white);
}
.hero-slider .glide__caption .caption-subtitle{font-size:18px;line-height:32px;letter-spacing:0.025em;margin-bottom:60px;}
.hero-slider .glide__caption .caption-bottom {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	margin-bottom: -10px;
	text-align: center;
	display:block;
	width: 100%;
}
.hero-slider .glide__caption .caption-bottom .hero-bold {
	display: contents;
	text-transform: uppercase;
	color: var(--white);
}
.hero-slider .glide-social {
	margin-left: auto;
	margin-right: 10vw;
}
.hero-slider .glide-social .social-link {
	margin-left: 2rem;
	margin-right: 0;
}
.hero-slider .glide-scroll,
.hero-slider .glide-scroll:hover {
    background-color: var(--black);
    color: var(--white);
}
.brand-glide .glide__slide img {
    filter: grayscale(1);
    transition: filter 0.3s ease-out;
}
.brand-glide .glide__slide img:hover {
    filter: grayscale(0);
}
/** Background Image Holder **/
.background-image-holder {
	position: relative;
	display: flex;
	align-items: center;
}

.background-image {
	position: absolute;
}

.background-image-holder.skyblue-gradient::after {
    content:'';
    position: absolute;
    top:0;
    right:0;
    bottom:0;
    left:0;
    background-image:linear-gradient(var(--blue), transparent 5%);
}
/** Buttons **/
.btn {
	color: var(--white);
	font-size: 14px;
	line-height: 0;
	background-color: var(--blue);
	padding: 25px;
	letter-spacing: 0.05em;
	border-radius: 0;
	text-decoration: none;
	text-transform: uppercase;
}
.btn:hover,
.btn:focus {
	color: var(--blue);
	background-color: var(--white);
	text-decoration: none;
}
/* :focus-within is separated due to browser support */
.btn:focus-within {
	color: var(--blue);
	background-color: var(--white);
}
.btn-white {
	color: var(--blue);
	background-color: var(--white);
}
.btn-white:hover,
.btn-white:focus {
	color: var(--white);
	background-color: var(--blue);
}
/* :focus-within is separated due to browser support */
.btn-white:focus-within {
	color: var(--white);
	background-color: var(--blue);
}
.btn-text {
	color: inherit;
	-webkit-appearance: none;
	appearance: none;
	padding: 0.5rem;
	background-color: unset;
}
.btn-scroll {
	background-color: var(--black);
	padding-top: calc(23px);
	padding-right: calc(5vw - 3.5px);
	padding-bottom: calc(23px);
	padding-left: calc(5vw - 3.5px);
}
.btn.captcha {
    display:block;
}
/** Navigation **/
.show-menu::before {
    opacity:0.5;
    z-index:200;
}
.menu-wrap a {
	color: var(--white);
	text-transform: uppercase;
	font-size: 16px;
	text-align: center;
	text-decoration-color: transparent;
	font-family: 'Roboto Regular', Helvetica, arial, sans-serif;
	font-weight: 400;
}

.menu-wrap a:hover,
.menu-wrap a:focus {
	text-decoration-color: var(--white);
}

/* Menu */
.menu-wrap {
	position: fixed;
	right: 0;
	top: 62px;
	z-index: 1001;
	/* width: 130px; */
	width: 260px;
	/* height: 100%; */
	max-height: calc(100vh - 62px);
	background-color: var(--blue);
	padding: 0;
	font-size: 1.15em;
	-webkit-transform: translate3d(320px, 0, 0);
	transform: translate3d(320px, 0, 0);
	-webkit-transition: -webkit-transform 0.3s;
	transition: transform 0.3s;
	-webkit-transition-timing-function: var(--e);
	transition-timing-function: var(--e);
}

.menu,
.icon-list {
	height: 100%;
}
.icon-list {
    display:flex;
    flex-flow: row wrap;
    align-items: center;
}
.icon-list a {
	display: block;
	padding: 1em;
	text-decoration: underline;
	text-decoration-color: transparent;
}
.icon-list a:first-child {
    margin-top:15px;
}
.menu-icon {
    flex-basis: 50%;
    height: 87px;
}
.menu-icon:nth-child(2n - 1) {
    border-right: 1px solid var(--light-blue);
}
.menu-item {
    display:flex;
    align-items: center;
    height: 100%;
}
.menu-item.menu-item-link {
    flex-basis: 100%;
    padding: 1rem 0 0;
}
.menu-item.menu-item-link:last-child {
    padding-bottom: 1rem;
}
/* Shown menu */
.show-menu .menu-wrap {
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
	-webkit-transition: -webkit-transform 0.3s;
	transition: transform 0.3s;
	-webkit-transition-timing-function: var(--e);
	transition-timing-function: var(--e);
}
.show-menu .icon-list,
.show-menu .icon-list a {
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
	-webkit-transition: -webkit-transform 0.3s, text-decoration-color 0.3s,
		background-color 0.3s;
	transition: transform 0.3s, text-decoration-color 0.3s,
		background-color 0.3s;
	-webkit-transition-timing-function: var(--e);
	transition-timing-function: var(--e);
}
.show-menu .icon-list a {
	-webkit-transition-duration: 0.3s;
	transition-duration: 0.3s;
}
.show-menu .content::before {
	opacity: 1;
	-webkit-transition: opacity 0.3s;
	transition: opacity 0.3s;
	-webkit-transition-timing-function: var(--e);
	transition-timing-function: var(--e);
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}
.menu-item .menu-item-img,
.menu-item .menu-item-caption {
	transition: opacity 0.3s var(--e);
}
.menu-item .menu-item-img {
	width: 100%;
	display: none;
}
.menu-item-img svg {
	height: 100%;
}
.menu-item-img path {
	fill: var(--white);
	transition: fill 0.3s var(--e);
}
.menu-item:hover .menu-item-img path {
	fill: var(--blue);
}
.menu-item .menu-item-caption {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	opacity: 1;
	display: block;
}

.menu-item:hover .menu-item-img {
	opacity: 0.3;
}
.menu-item:hover .menu-item-caption {
	opacity: 1;
}
.nav {
    margin-right: 62px;
    align-items: center;
    justify-content: space-between;
}
.nav-tel {
    color: white;
    font-weight:bold;
    text-decoration: none;
}
.nav-tel:hover {
    color: white;
    text-decoration: underline;
}
.floating-nav {
	position: fixed;
	top:0;
	right: 0;
	left: 0;
	z-index: 100;
	background-color: var(--white);
	height:62px;
}
/*
.floating-nav .navbar-brand {
	max-height: 56px;
}
*/
.floating-nav .header-logo {
	height: 56px;
}
.menu-item {
	position: relative;
	padding: 0.5rem;
}
.menu .menu-icon {
	padding: 0;
	border-bottom: 1px solid var(--light-blue);
	transition: background-color 0.3s var(--e);
	/* margin-top:.5rem; */
	/* margin-bottom:.5rem; */
}
.menu .menu-icon:hover {
	background-color: var(--white);
	color: var(--blue);
}
.menu-item .menu-item-img {
	display: block;
}
.menu-item .menu-item-caption {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 0.5rem 0;
	opacity: 0;
}
.menu-item:hover .menu-item-caption {
	opacity: 1;
}
.icon-list a:first-child {
    margin-top: unset;
}

/** Footer **/
.footer-link {
	color: inherit;
	text-decoration-color: transparent;
	font-weight: 400;
}

.footer-link:hover {
	color: var(--blue);
}

.footer-legal {
	color: var(--md-gray);
}

.footer-about {
	color: var(--black);
}

.footer-about-text {
	font-size: 13px;
}

.footer-about-item {
	display: block;
	color: var(--black);
}

.footer-icons a {
	color: var(--black);
	background-color: var(--white);
	font-size: 12px;
	display: inline-block;
	padding: 0.5em 1.3em;
	border: 1px solid var(--border-gray);
	border-radius: 50px;
	margin-right: 0.5rem;
}
.footer-icons a:hover {
	color: var(--blue);
}
.footer-title {
	color: inherit;
	text-decoration-color: transparent;
}

.footer-title:hover {
	color: var(--blue);
}

.footer-links {
	padding: 0;
	margin-bottom: 0;
	list-style: none;
	column-count: 2;
	color: var(--dark-gray);
}

.footer-links-onecol {
	column-count: 1;
}

/** Home **/
.home-highlight {
    overflow-x: hidden;
    padding-bottom: 200px;
}
.home-highlight-1 {
    padding-bottom: 150px;
}
.home-highlight .home-highlight-row {
    justify-content: flex-start;
}
.home-highlight-1 .home-highlight-row {
    justify-content: flex-end;
}
.home-highlight .background-image-holder {
	overflow: unset;
}
.home-highlight .background-image {
	position: relative;
	padding-bottom: 50px;
}
.home-highlight .background-image img {
	max-width: 768px;
	max-height: 900px;
	width: unset;
}
.home-highlight.home-highlight-1 .background-image img {
	max-width: 1080px;
	max-height: 900px;
	width: auto;
	height:100%;
	object-fit:cover;
	object-position:left;
}
.home-highlight.home-highlight-2 .background-image {
	display: none;
	right: 0;
}
.home-highlight .btn {
	margin-top: 35px;
}
.home-highlight-row .home-highlight-icon {
	color: var(--black);
	display: flex;
	align-items: center;
	text-decoration: none;
	flex-basis: 50%;
	margin-bottom: 10px;
	padding-right: 0;
}
.home-highlight-row .home-highlight-icon:nth-child(2n + 1) {
    padding-left:0;
}

a.home-highlight-icon:hover {
	text-decoration: none;
	color: var(--blue);
}
.home-highlight-icon .icon-highlight {
	font-size: 1rem;
	background-color: var(--light-gray);
	border-radius: 50px;
	display: flex;
	margin-right: 0.5rem;
	padding: 1.5rem;
	position: relative;
	align-items: center;
	justify-content: center;
}
.home-highlight-icon .icon-highlight svg {
	position: absolute;
}


/** Product Box **/
.children-container {
	padding-right: 0;
	padding-left: 0;
}
.child-box {
	text-align: center;
	text-decoration: none;
	color: var(--black);
	display: block;
	min-height: 400px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	will-change: transform, max-height, opacity;
	transition-property: color, background-color;
	transition-duration: 0.3s;
	transition-timing-function: var(--e);
	padding: 1.25rem;
}

.child-col:nth-child(-n + 6) .child-box {
	border-bottom: 1px solid var(--border-gray);
}
.child-box .child-title,
.child-box .child-intro {
	height: auto;
	max-height: 1000px;
	transition: max-height 0.2s var(--e), opacity 0.25s var(--e);
}
.child-box .child-btn {
	--e: ease;
	color: var(--blue);
	transform: translateY(1.5rem);
	transition: transform 0.3s var(--e);
}
.child-box .child-icon {
	--e: ease;
	transform: translateY(-1.5rem);
	transition: transform 0.3s var(--e);
}
.child-box:hover .child-intro,
.child-box:hover .child-title,
.child-box:focus .child-intro,
.child-box:focus .child-title {
	opacity: 0;
	max-height: 0;
}
.child-box:focus-within .child-intro,
.child-box:focus-within .child-title {
	opacity: 0;
	max-height: 0;
}
.child-box:hover,
.child-box:focus {
	text-decoration: none;
	background-color: var(--blue);
	color: var(--white);
}
.child-box:focus-within {
	text-decoration: none;
	background-color: var(--blue);
	color: var(--white);
}
.child-box:hover .child-btn,
.child-box:focus .child-btn {
	color: currentColor;
	transform: translateY(0);
}
.child-box:focus-within .child-btn {
	color: currentColor;
	transform: translateY(0);
}
.child-box:hover path,
.child-box:focus path {
	fill: currentColor;
}
.child-box:focus-within path {
	fill: currentColor;
}
.child-box:hover .child-icon,
.child-box:focus .child-icon {
	transform: translateY(0);
}
.child-box:focus-within .child-icon {
	transform: translateY(0);
}
.logistics-children .child-icon {
    height: 80px;
}
/*.logistics-children .child-col:nth-child(n) .child-box {
    border-bottom: unset;
}*/
.logistics-children .child-icon svg {
    height: 100%;
    width:100%;
    max-height:80px;
    max-width:80px;
}
/* HERO */
.hero-image {
    width: 100%;
}
.hero-figure {
    position:relative;
}
.hero-figure .hero-caption {
    position:absolute;
    right:0;
    bottom: 0;
    left:0;
}
.hero-figure .hero-caption h1 {
    line-height:1em;
    color: var(--blue);
}
.hero-content .hero-bold {
	color: var(--blue);
	line-height:1;
}
.hero-details h2 {
	line-height: 50px;
}
.hero-details h5 {
	line-height: 32px;
	font-weight: 400;
}

/* INDIVIDUAL PRODUCT PAGE */
.product-content li {
	font-size: 16px;
	line-height: 28px;
}
.product-hero .hero-content {
	position: Relative;
	z-index: 3;
}
.dark-bkg {
    position:relative;
	background-color: #221d1e;
}
.dark-bkg .background-image-holder {
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	overflow: hidden;
	z-index: 0;
	position:absolute;
}
.dark-bkg .background-image {
    width: 100%;
}
.dark-bkg h1 {
	line-height: 68px;
	margin-bottom: 0;
}
.dark-bkg .container {
	z-index: 3;
	padding: 120px 15px;
}
.dark-bkg .background-image-holder img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 50% 50%;
}
.dark-section .dark-section-title,
.dark-section .dark-section-intro,
.dark-section .dark-section-content {
    color: var(--white);
}
.select-arrow {
	z-index: 1;
	position: absolute;
	top: 18px;
	right: 15px;
	pointer-events: none;
	color: #fff;
	font-size: 10px !important;
}
.form-control {
	height: auto;
	padding: 8px 15px;
	border-radius: 0;
	border: none;
	margin-bottom: 10px;
	background-clip: unset;
	color: #fff;
	background-color: rgba(255, 255, 255, 0.102);
	text-transform: uppercase;
	font-family: 'Roboto', helvetica, arial, sans-serif;
	font-size: 10px;
	letter-spacing: 0.025em;
	line-height: 28px;
}
.form-control::-webkit-input-placeholder {
	color: #fff;
}
.form-control::-moz-placeholder {
	color: #fff;
}
.form-control:-ms-input-placeholder {
	color: #fff;
}
.form-control:-moz-placeholder {
	color: #fff;
}
.form-control:focus {
	background-color: rgba(255, 255, 255, 0.102);
	color: #fff;
	box-shadow: none;
	outline: 2px solid var(--blue);
}
.select2-search__field::-webkit-input-placeholder {
	color: #fff;
}
.select2-search__field::-moz-placeholder {
	color: #fff;
}
.select2-search__field:-ms-input-placeholder {
	color: #fff;
}
.select2-search__field:-moz-placeholder {
	color: #fff;
}

.select2-container {
	max-width: 100%;
	width: 100% !important;
}
.select2-container--default .select2-selection--multiple {
	padding: 0 11px;
	height: auto;
	border-radius: 0;
	border: none;
	margin-bottom: 10px;
	background-clip: unset;
	color: #fff;
	background-color: rgba(255, 255, 255, 0.102);
	text-transform: uppercase;
	font-family: 'Roboto', helvetica, arial, sans-serif;
	font-size: 10px;
	letter-spacing: 0.025em;
	line-height: 28px;
}
.select2-search__field {
	color: #fff;
	text-transform: uppercase;
	font-family: 'Roboto', helvetica, arial, sans-serif;
	font-size: 10px !important;
	letter-spacing: 0.025em;
	line-height: 28px;
}
.select2-container--default.select2-container--focus
	.select2-selection--multiple {
	border: none;
	outline: 2px solid var(--blue);
}
.select2-container--default
	.select2-selection--multiple
	.select2-selection__rendered {
	padding-top: 5px;
}
.select2-container--default
	.select2-selection--multiple
	.select2-selection__choice {
	text-transform: uppercase;
	font-family: 'Roboto', helvetica, arial, sans-serif;
	font-size: 10px !important;
	letter-spacing: 0.025em;
	line-height: 28px;
	border: none;
	border-radius: 0;
	background-color: transparent;
	color: #fff;
}
.select2-container--default
	.select2-selection--multiple
	.select2-selection__choice__remove {
	color: #fff;
}
.select2-container--default
	.select2-selection--multiple
	.select2-selection__choice__remove:hover {
	color: var(--md-gray) !important;
}
.select2-container--default .select2-results__group {
	font-weight: 500;
	font-family: 'Roboto', helvetica, arial, sans-serif;
}
.select2-container--open .select2-dropdown--below {
	top: -10px;
}
.select-container .select-arrow {
	right: 23px;
}

/* COMPANY PAGE */
.company-hero {
	background-color: var(--blue);
	padding-top: 200px;
}
.company-hero h1.hero-bold {
	line-height: 124px;
}
.cows-bkg {
	padding-top: 100px;
}
.cows-bkg .background-image-holder::after {
    content:'';
    position: absolute;
    top:0;
    right:0;
    bottom:0;
    left:0;
    background-image:linear-gradient(#ffffff, transparent 5%);
}
.cows-bkg .background-image-holder img{width:100%;}
.logistics {
	padding: 100px 15px;
}
.log-box {
	width: 100%;
	height: 100%;
	border: 2px solid var(--blue);
	padding: 30px 13px;
}
.log-box .icon-wrapper {
	color: #fff;
	background-color: var(--blue);
	font-size: 24px;
	padding: 10px 5px;
	text-align: center;
	border-radius: 50px;
	width: auto;
	height: 48px;
	width: 48px;
	margin-bottom: 20px;
}
.sea-bkg{
    --bg: #016682;
    padding-bottom:27vw;
    padding-top:100px;
    /* background-color:#006776; */
    background-color: #016682;
    background-color: var(--bg);
}
.sea-bkg .background-image-holder::after {
    content:'';
    position: absolute;
    top:0;
    right:0;
    bottom:0;
    left:0;
    /*background-image:linear-gradient(#006776, transparent 5%);*/
    background-image:linear-gradient(#016682, transparent 25%);
    background-image: linear-gradient(var(--bg), transparent 25%);
}
.sea-bkg .form {
    position:relative;
    z-index:1;
}
.sea-bkg .background-image-holder{
    right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	overflow: hidden;
	z-index: 0;
	position:absolute;
} 
.sea-bkg .background-image-holder img{
    height:auto;
    object-fit:contain;
    width:100%;
} 


/* FOOTER IMAGE */
.footer-image .background-image-holder {
	top: unset;
}
.footer-image .background-image-holder img {
	height: auto;
	object-fit: contain;
}
.footer-image .container {
	z-index: 3;
}
.footer-image h1 {
    line-height: 68px;
}

/* CONTACT PAGE */
.contact-info svg {
	font-size: 24px;
	vertical-align: top;
	margin-top: 10px;
}
.contact-bkg{
    padding-top:200px;
    background-color:var(--blue);
    padding-bottom:37vw;
} 
#contact_form .form-control:focus {
	outline: 2px solid #fff;
}
#contact_form .select2-container--default.select2-container--focus
	.select2-selection--multiple {
	outline: 2px solid #fff;
}
.contact-bkg .background-image-holder{
    right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	overflow: hidden;
	z-index: 0;
	position:absolute;
} 
.contact-bkg .background-image-holder img{height:auto;object-fit:contain;width:100vw;} 
.contact-bkg .container{z-index:3;}
.grecaptcha-badge{z-index:20;}


/* CONFIRMATION PAGE */
.contact-bkg h1.hero-bold {
	line-height: 158px;
}
.contact-bkg h2 {
	line-height: 50px;
}
.world-map .btn-white {
	z-index: 2;
	position: absolute;
	top: 55%;
	left: calc(50% - 72px);
}

/* LEGAL PAGE */
.legal-hero {
	padding-top: 150px;
}
.legal-hero h1.hero-bold {
	line-height: 160px;
}

/* PRODUCTS CONTAINER PAGE */
.product-map {
	padding-top: 100px;
}
.product-map h1 {
	line-height: 68px;
}
.product-map .map-details{z-index:2;position:relative;margin-bottom:-50px;}
.brand-glide .glide__slide{height:100px;}
.brand-glide .glide__slide img{vertical-align:middle;}


/* LOGISTICS CHILD PAGE */
.logistic-hero{position:relative;margin-top:-120px;z-index:2;}
.logistic-hero .hero-content h1.hero-bold{margin-top:4rem;line-height:160px;}
.main-content{position:relative;z-index:2;margin-bottom:100px;}
.under-Hero{z-index:1;position:relative;margin-top:-100px;margin-bottom:100px;}
.under-Content{z-index:1;position:relative;margin-top:100px;margin-bottom:-45px;}
.under-Hero .background-image-holder::after {
    content:'';
    position: absolute;
    top:0;
    right:0;
    bottom:0;
    left:0;
    background-image:linear-gradient(#ffffff, transparent 15%);
}
.main-content .icon-wrapper {
	color: #fff;
	background-color: var(--blue);
	font-size: 24px;
	padding: 10px 5px;
	text-align: center;
	border-radius: 50px;
	width: auto;
	height: 48px;
	width: 48px;
	margin-bottom: 20px;
}
.main-content h1{line-height:68px;}
.log-highlight-row .home-highlight-icon {
	color: var(--black);
	display: flex;
	align-items: center;
	text-decoration: none;
	margin-bottom: 10px;
	padding-right: 0;
}
.main-content .home-highlight-icon{flex-basis:100%;}
.main-content .special-list ul{list-style:none;padding-inline-start:20px;}
.main-content .special-list ul li{font-weight:bold;color:#2c2c2c;margin-bottom:11px;line-height:21px;font-size:13px;letter-spacing:0.025em;}
.log-bkg .background-image-holder {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
}
  
.log-bkg .background-image-holder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
}
  
.log-bkg .background-image-holder::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0,0,0,0.4);
}
.log-bkg .container{z-index:2;padding:120px 15px;}
.log-intro h5{line-height:32px;}