/*
Template Name: DLD-Seeds

# Device Breakdowns (Like Bootstrap 5.X)
Extra Extra Large Screens     : >= 1400px // Not used
Extra Large Screens           : 1200px    // "Wide desktop" design
Large Screens                 : 992px     // "Desktop" design
Medium Tablets                : 768px     // Use "mobile" design ("tablets are like phones")
Small Mobile devices          : 576px     // Use "mobile" design
Extra Small mobile devices    : < 576px   // Not used

# Default Colors
dlf-green 				: #00a651 // Primary brand colour
dlf-blue 				: #1948cc
dlf-dark-green: 		: #145f2a // Unlikely to use
dlf-light-blue 			: #abe1fa
dlf-dark-grey			: #4d4d4d
dlf-mid-grey			: #808080
dlf-light-grey			: #efefef
dlf-white-grey			: #ffffff

# Old Default Colors
dld-blue 			: #00a7de
dld-green 			: #89b65a
dld-black 			: #0f1315
dld-grey			: #999999


#Default text sizes (normal text size: 17px)
text-xxl				: 55px (font-weight:  bold)
text-xxl-light		: 55px (font-weight:  normal)
text-xl				: 36px (font-weight:  bold)
text-xl-light		: 36px (font-weight:  normal)
text-l				: 26px (font-weight:  bold)
text-l-light		: 26px (font-weight:  normal)
text-m				: 21px (font-weight:  bold)
text-m-light		: 21px (font-weight:  normal)



1. Common
    - Defaults, colors, breakpoints
    - Text
    - Background
    - Cursor and Trigers
    - Buttons
    - Space

2. Header
	- blue bar
	- navigation bar
	- mobile navigation

3. Footer
	- footer navigation
	- contact info
	- footer logo
	- footer social media

4. Content
      - Backgrounds
      - Titles
      - Slider Project

5. Responsivess

*/

/* 1. Common ==================================== */

/* Banner */

.bg-enrichment-device {
  background-image: -moz-linear-gradient(0deg, #1948cc 0%, #00a651 92%);
  background-image: -webkit-linear-gradient(0deg, #1948cc 0%, #00a651 92%);
  background-image: -ms-linear-gradient(0deg, #1948cc 0%, #00a651 92%);
}
:root {
  --black: #0f1315;
  --border-dark-grey: #11213d;
  --white: white;
  --blue: #1948cc;
  --green: #00a651;
  --grey: #4d4d4d;
  --mid-grey: gray;
  --light-grey: #efefef;
  --flex-mid-light-grey: #dddddd;
  --subscription-light-grey: #ececec;
  --slides-light-grey: #dddddd;
  --slides-very-light-grey: #f3f3f3;
  --nav-grey-1: whitesmoke;
  --nav-grey-2: darkgray;
  --input-border-color-green: #40bb6a;
}
*,
*:after,
*:before {
  box-sizing: border-box;
}
*:focus {
  outline: inherit;
}
a,
a:hover,
a:link,
a:visited {
  color: inherit;
  text-decoration: none;
}
.coverlink {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}
.overflow-hidden {
  overflow: hidden;
}
/* Animations run 3x faster */

:root {
  --animate-delay: 0.3s;
}
.animate__animated.animate__delay-6s {
  -webkit-animation-delay: 6s;
  animation-delay: 6s;
  -webkit-animation-delay: calc(var(--animate-delay)*6);
  animation-delay: calc(var(--animate-delay)*6);
}
.animate__animated.animate__delay-7s {
  -webkit-animation-delay: 7s;
  animation-delay: 7s;
  -webkit-animation-delay: calc(var(--animate-delay)*7);
  animation-delay: calc(var(--animate-delay)*7);
}
.animate__animated.animate__delay-8s {
  -webkit-animation-delay: 8s;
  animation-delay: 8s;
  -webkit-animation-delay: calc(var(--animate-delay)*8);
  animation-delay: calc(var(--animate-delay)*8);
}
.animate__animated.animate__delay-9s {
  -webkit-animation-delay: 9s;
  animation-delay: 9s;
  -webkit-animation-delay: calc(var(--animate-delay)*9);
  animation-delay: calc(var(--animate-delay)*9);
}
.animate__animated.animate__delay-10s {
  -webkit-animation-delay: 10s;
  animation-delay: 10s;
  -webkit-animation-delay: calc(var(--animate-delay)*10);
  animation-delay: calc(var(--animate-delay)*10);
}
.animate__animated {
  visibility: hidden;
}
.dld-blue-bg {
  background-color: var(--blue);
}
.dld-blue-txt {
  color: var(--blue);
}
a.dld-blue-txt {
  color: var(--blue);
}
.dld-blue-border {
  border: 1px solid var(--blue);
}
.dld-blue-border:hover,
.dld-blue-border:focus {
  border: 1px solid transparent;
}
.blueline {
  height: 2px;
  width: 100%;
  background: var(--blue);
}
.blue-theme .button:not(.dld-grey-bg) {
  color: var(--white);
  background-color: var(--blue);
}
.blue-theme .grid-element {
  background-color: var(--white);
}
.blue-theme .news_title,
.blue-theme .cta_title {
  color: var(--blue);
}
.blue-theme .news_intro,
.blue-theme .cta_intro {
  color: var(--black);
}
.blue-theme .button {
  color: var(--white);
}
.blue-theme .grid_element.theme-contrast .cta_title {
  color: var(--grey);
}
.blue-theme .grid_element.theme-contrast .button {
  background-color: var(--grey);
  color: var(--white);
}
.blue-theme .grid_element.theme-contrast .button:hover,
.blue-theme .grid_element.theme-contrast .button:focus {
  color: var(--white);
}
.dld-green-bg {
  background-color: var(--green);
}
.dld-green-txt {
  color: var(--green);
}
a.dld-green-txt {
  color: var(--green);
}
.dld-green-border {
  border: 1px solid var(--green);
}
.dld-green-border:hover,
.dld-green-border:focus {
  border: 1px solid transparent;
}
.greenline {
  height: 2px;
  width: 100%;
  background: var(--green);
}
.green-theme .button:not(.dld-grey-bg) {
  color: var(--white);
  background-color: var(--green);
}
.green-theme .grid-element {
  background-color: var(--white);
}
.green-theme .news_title,
.green-theme .cta_title {
  color: var(--green);
}
.green-theme .news_intro,
.green-theme .cta_intro {
  color: var(--black);
}
.green-theme .button {
  color: var(--white);
}
.green-theme .grid_element.theme-contrast .cta_title {
  color: var(--grey);
}
.green-theme .grid_element.theme-contrast .button {
  background-color: var(--grey);
  color: var(--white);
}
.green-theme .grid_element.theme-contrast .button:hover,
.green-theme .grid_element.theme-contrast .button:focus {
  color: var(--white);
}
.dld-grey-bg {
  background-color: var(--grey);
}
.dld-grey-txt {
  color: var(--grey);
}
a.dld-grey-txt {
  color: var(--grey);
}
.dld-grey-border {
  border: 1px solid var(--grey);
}
.dld-grey-border:hover,
.dld-grey-border:focus {
  border: 1px solid transparent;
}
.greyline {
  height: 2px;
  width: 100%;
  background: var(--grey);
}
.grey-theme .button:not(.dld-grey-bg) {
  color: var(--white);
  background-color: var(--grey);
}
.grey-theme .grid-element {
  background-color: var(--white);
}
.grey-theme .news_title,
.grey-theme .cta_title {
  color: var(--grey);
}
.grey-theme .news_intro,
.grey-theme .cta_intro {
  color: var(--black);
}
.grey-theme .button {
  color: var(--white);
}
.grey-theme .grid_element.theme-contrast .cta_title {
  color: var(--grey);
}
.grey-theme .grid_element.theme-contrast .button {
  background-color: var(--grey);
  color: var(--white);
}
.grey-theme .grid_element.theme-contrast .button:hover,
.grey-theme .grid_element.theme-contrast .button:focus {
  color: var(--white);
}
.dld-mid-grey-bg {
  background-color: var(--mid-grey);
}
.dld-mid-grey-txt {
  color: var(--mid-grey);
}
a.dld-mid-grey-txt {
  color: var(--mid-grey);
}
.dld-mid-grey-border {
  border: 1px solid var(--mid-grey);
}
.dld-mid-grey-border:hover,
.dld-mid-grey-border:focus {
  border: 1px solid transparent;
}
.mid-greyline {
  height: 2px;
  width: 100%;
  background: var(--mid-grey);
}
.mid-grey-theme .button:not(.dld-grey-bg) {
  color: var(--white);
  background-color: var(--mid-grey);
}
.mid-grey-theme .grid-element {
  background-color: var(--white);
}
.mid-grey-theme .news_title,
.mid-grey-theme .cta_title {
  color: var(--mid-grey);
}
.mid-grey-theme .news_intro,
.mid-grey-theme .cta_intro {
  color: var(--black);
}
.mid-grey-theme .button {
  color: var(--white);
}
.mid-grey-theme .grid_element.theme-contrast .cta_title {
  color: var(--grey);
}
.mid-grey-theme .grid_element.theme-contrast .button {
  background-color: var(--grey);
  color: var(--white);
}
.mid-grey-theme .grid_element.theme-contrast .button:hover,
.mid-grey-theme .grid_element.theme-contrast .button:focus {
  color: var(--white);
}
.dld-white-bg {
  background-color: var(--white);
}
.dld-white-txt {
  color: var(--white);
}
a.dld-white-txt {
  color: var(--white);
}
.dld-white-border {
  border: 1px solid var(--white);
}
.dld-white-border:hover,
.dld-white-border:focus {
  border: 1px solid transparent;
}
.whiteline {
  height: 2px;
  width: 100%;
  background: var(--white);
}
.white-theme .button:not(.dld-grey-bg) {
  color: var(--white);
  background-color: var(--white);
}
.white-theme .grid-element {
  background-color: var(--white);
}
.white-theme .news_title,
.white-theme .cta_title {
  color: var(--white);
}
.white-theme .news_intro,
.white-theme .cta_intro {
  color: var(--black);
}
.white-theme .button {
  color: var(--white);
}
.white-theme .grid_element.theme-contrast .cta_title {
  color: var(--grey);
}
.white-theme .grid_element.theme-contrast .button {
  background-color: var(--grey);
  color: var(--white);
}
.white-theme .grid_element.theme-contrast .button:hover,
.white-theme .grid_element.theme-contrast .button:focus {
  color: var(--white);
}
.dld-black-bg {
  background-color: var(--black);
}
.dld-black-txt {
  color: var(--black);
}
a.dld-black-txt {
  color: var(--black);
}
.dld-black-border {
  border: 1px solid var(--black);
}
.dld-black-border:hover,
.dld-black-border:focus {
  border: 1px solid transparent;
}
.blackline {
  height: 2px;
  width: 100%;
  background: var(--black);
}
.black-theme .button:not(.dld-grey-bg) {
  color: var(--white);
  background-color: var(--black);
}
.black-theme .grid-element {
  background-color: var(--white);
}
.black-theme .news_title,
.black-theme .cta_title {
  color: var(--black);
}
.black-theme .news_intro,
.black-theme .cta_intro {
  color: var(--black);
}
.black-theme .button {
  color: var(--white);
}
.black-theme .grid_element.theme-contrast .cta_title {
  color: var(--grey);
}
.black-theme .grid_element.theme-contrast .button {
  background-color: var(--grey);
  color: var(--white);
}
.black-theme .grid_element.theme-contrast .button:hover,
.black-theme .grid_element.theme-contrast .button:focus {
  color: var(--white);
}
.dld-transparent-bg {
  background-color: rgba(0, 0, 0, 0.4);
}
.txt-xxl {
  font-size: 55px;
  font-weight: bold;
  line-height: 1.1em;
}
.txt-xxl-light {
  font-size: 55px;
  font-weight: normal;
  line-height: 1.1em;
}
.txt-xl {
  font-size: 36px;
  font-weight: bold;
  line-height: 1.1em;
}
.txt-xl-light {
  font-size: 36px;
  font-weight: normal;
  line-height: 1.1em;
}
.txt-l {
  font-size: 26px;
  font-weight: bold;
  line-height: 1.1em;
}
.txt-l-light {
  font-size: 26px;
  font-weight: normal;
  line-height: 1.1em;
}
.txt-m {
  font-size: 21px;
  font-weight: bold;
  line-height: 1.1em;
}
.txt-m-light {
  font-size: 21px;
  font-weight: 400;
  line-height: 1.1em;
}
.txt-center {
  text-align: center;
}
/*Breakpoints*/

.dld-xl {
  max-width: 1400px;
}
.dld-l {
  max-width: 992px;
}
.dld-m {
  max-width: 768px;
}
.dld-s {
  max-width: 576px;
}
/* Text */

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
font,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
  background: transparent;
  border: 0;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  font-family: Arial, sans-serif;
  font-size: 17px;
  line-height: 1.5em;
  font-weight: normal;
  color: var(--border-dark-grey);
}
sup {
  vertical-align: super !important;
}
sub {
  vertical-align: sub !important;
}
.dld-light-grey-bg {
  background-color: var(--light-grey);
}
strong {
  font-weight: bold;
}
h1 {
  font-size: 36px;
  font-weight: bold;
}
h2 {
  font-size: 26px;
  font-weight: bold;
}
h3 {
  font-size: 21px;
  font-weight: bold;
}
img {
  max-width: 100%;
  image-rendering: -moz-crisp-edges;
  image-rendering: -o-crisp-edges;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  -ms-interpolation-mode: nearest-neighbor;
}
.img-responsive {
  border-radius: 15px;
}
.paragraph-text-wrapper {
  padding-bottom: 16px;
}
.paragraph-text-wrapper h1 {
  padding: 25px 0;
}
.boxed {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
}
.top-bottom-gap {
  padding: 30px 0;
}
.top-bottom-gap-xl {
  padding: 50px 0;
}
.animate-all {
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
}
div,
span,
svg,
a,
.flag:before,
li:after,
ul,
.button:after,
.button:before,
.mnbopen span:before,
.mnbopen span:after {
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
}
.button:after,
.button:before {
  transition: all 0.2s;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  -moz-transition: all 0.2s;
}
.fancybox,
.fancybox *,
.fancybox-container,
.fancybox-container * {
  transition: all 0s;
  -webkit-transition: all 0s;
  -o-transition: all 0s;
  -moz-transition: all 0s;
}
.buttons {
  text-align: center;
  padding: 20px 0;
}
.button {
  font-size: 21px;
  font-weight: 400;
  line-height: 1.1em;
  border-radius: 100px;
  padding: 12px 20px 12px 20px;
  position: relative;
  display: inline-block;
  margin: 10px;
  line-height: 1.4em;
}
.button.arrow-only {
  width: 40px;
  height: 40px;
  text-align: center;
}
.dld-blue-bg .button,
.dld-blue-bg.button {
  background-image: linear-gradient(180deg, #1948cc 0%, #1948cc 25%, transparent 75%, transparent 100%), linear-gradient(90deg, #1948cc 0%, #00a651 92%);
  transition: background-position 0.3s linear;
  background-size: 100% 400%;
  background-position: 0 0%;
}
.dld-blue-bg .button:hover,
.dld-blue-bg.button:hover,
.dld-blue-bg .button:focus,
.dld-blue-bg.button:focus {
  background-position: 0% 100%;
}
.dld-green-bg .button,
.dld-green-bg.button {
  background-image: linear-gradient(180deg, #00a651 0%, #00a651 25%, transparent 75%, transparent 100%), linear-gradient(90deg, #1948cc 0%, #00a651 92%);
  transition: background-position 0.3s linear;
  background-size: 100% 400%;
  background-position: 0 0%;
}
.dld-green-bg .button:hover,
.dld-green-bg.button:hover,
.dld-green-bg .button:focus,
.dld-green-bg.button:focus {
  background-position: 0% 100%;
}
.dld-grey-bg .button,
.dld-grey-bg.button {
  background-image: linear-gradient(180deg, #4d4d4d 0%, #4d4d4d 25%, transparent 75%, transparent 100%), linear-gradient(90deg, #1948cc 0%, #00a651 92%);
  transition: background-position 0.3s linear;
  background-size: 100% 400%;
  background-position: 0 0%;
}
.dld-grey-bg .button:hover,
.dld-grey-bg.button:hover,
.dld-grey-bg .button:focus,
.dld-grey-bg.button:focus {
  background-position: 0% 100%;
}
.button-arrow-wrapper {
  display: flex;
  justify-content: flex-end;
  padding: 10px 20px;
}
.button.dld-green-bg:after {
  background: var(--green);
}
.button:hover:after {
  right: 12px;
}
.button:hover:before {
  margin-right: -2px;
}
.button.button_open:after {
  transform: rotate(180deg) scale(0.7);
  margin-top: -6px;
}
.button_short {
  display: inline-block;
  border-radius: 100px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
}
.button_short i {
  color: var(--white);
}
.floating_button {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translate(415px, -50%);
  z-index: 9999991;
  background: var(--white);
  display: grid;
  grid-template-columns: 50px 1fr;
  width: 465px;
}
.floating_button_title {
  width: 100%;
  background: var(--green);
  display: block;
  position: relative;
}
.floating_button_title span {
  text-align: center;
  display: block;
  white-space: nowrap;
  margin: 0 auto;
  color: var(--white);
  top: 50%;
  left: 50%;
  position: absolute;
  transform: translateX(-50%) translateY(-50%) rotate(-90deg);
}
.fbc_grid {
  display: grid;
  grid-template-columns: 112px 1fr;
  grid-gap: 10px;
  margin: 20px 20px 0;
  border-bottom: 2px solid var(--green);
  padding-bottom: 10px;
}
.fbc_grid:last-of-type {
  border-bottom: 0;
}
.fbc_grid img {
  border-radius: 50%;
}
.fbc_contact {
  position: relative;
  font-size: 0.8rem;
}
.fbc_contact .txt-m {
  padding-bottom: 4px;
}
.fbc_links i {
  color: var(--green);
}
.fbc_links a {
  color: var(--green);
  display: inline-block;
  position: relative;
  padding: 12px 20px 0 0px;
  font-size: 1.2;
}
.floating_button:hover {
  transform: translate(0, -50%);
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.5);
}
/* 2. Header ==================================== */

/*BLUE BANNER =============================== */

.header-banner {
  padding: 6px 0;
  /* height:35px; */
  box-sizing: content-box;
  z-index: 0;
}
.header-banner * {
  color: var(--white);
  white-space: nowrap;
  line-height: 1em;
}
.social,
.header-contact {
  display: inline-block;
  width: 50%;
  height: 35px;
  position: relative;
}
.header-contact a {
  display: inline-block;
  padding-right: 60px;
  z-index: 99999;
}
.social a {
  display: inline-block;
  width: 27px;
  height: 27px;
  background: var(--white);
  margin: 0 50px 0 0;
  top: 4px;
  position: relative;
}
.header-banner .social a {
  margin-right: 25px;
}
a.facebook {
  -webkit-mask-image: url(../img/icons/facebook.svg);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: 100%;
  mask-image: url(../img/icons/facebook.svg);
  mask-repeat: no-repeat;
  mask-size: 100%;
  -webkit-mask-position: 50%;
  mask-position: 50%;
  border-radius: 100px;
}
a.linkedin {
  width: 26px;
  height: 26px;
  -webkit-mask-image: url(../img/icons/linkedin.svg);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: 90%;
  mask-image: url(../img/icons/linkedin.svg);
  mask-repeat: no-repeat;
  mask-size: 90%;
  -webkit-mask-position: 50%;
  mask-position: 50%;
}
a.twitter {
  width: 29px;
  height: 27px;
  -webkit-mask-image: url(../img/icons/twitter.svg);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: 90%;
  mask-image: url(../img/icons/twitter.svg);
  mask-repeat: no-repeat;
  mask-size: 90%;
  -webkit-mask-position: 50%;
  mask-position: 50%;
}
a.youtube {
  width: 29px;
  height: 27px;
  -webkit-mask-image: url(../img/icons/youtube.svg);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: 100%;
  mask-image: url(../img/icons/youtube.svg);
  mask-repeat: no-repeat;
  mask-size: 100%;
  -webkit-mask-position: 50%;
  mask-position: 50%;
}
.header-contact {
  text-align: right;
  white-space: nowrap;
  top: -4px;
  height: 27px;
}
.site_switcher {
  display: inline-block;
  position: relative;
  z-index: 1000;
  padding-bottom: 18px;
}
.site_switcher .current {
  padding: 0 23px 0 30px;
  position: relative;
  display: block;
  cursor: pointer;
}
.site_switcher .current:after {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  top: 50%;
  width: 16px;
  height: 16px;
  -webkit-mask-image: url(../img/icons/arrow.svg);
  mask-image: url(../img/icons/arrow.svg);
  -webkit-mask-size: 100%;
  mask-size: 100%;
  -webkit-mask-position: 50%;
  mask-position: 50%;
  border-radius: 50%;
  background: white;
  transform: translateY(-50%) rotate(180deg) scaleY(1.2);
}
.site_switcher .flag {
  position: relative;
  padding-left: 32px;
}
.site_switcher .flag:before {
  content: "";
  display: block;
  position: absolute;
  width: 21px;
  height: 21px;
  left: 0;
  top: 0;
  background: var(--white);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  background-size: cover !important;
  opacity: 0.55;
  background-position: 50%;
}
.flag:hover:before {
  opacity: 1;
}
#australia:before {
  background-image: url("../img/flags/au.svg");
}
#china:before {
  background-image: url("../img/flags/cn.svg");
}
#new_zealand:before {
  background-image: url("../img/flags/nz.svg");
}
#czech_republic:before {
  background-image: url("../img/flags/cz.svg");
}
#france:before {
  background-image: url("../img/flags/fr.svg");
}
#united_kingdom:before {
  background-image: url("../img/flags/gb.svg");
}
#netherland:before {
  background-image: url("../img/flags/nl.svg");
}
#sweden:before {
  background-image: url("../img/flags/se.svg");
}
#denmark:before {
  background-image: url("../img/flags/dk.svg");
}
.country_list {
  position: absolute;
  background: var(--blue);
  z-index: -1;
  right: 0;
  top: 38px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 20px;
  padding: 40px;
  transform: translateY(-1000%) translateZ(-10px);
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.5);
}
.site_switcher:hover .country_list,
.country_list:hover {
  transform: translateY(0);
}
.country_list a {
  font-size: 1rem;
}
/* NAVIGATION BAR =========================== */
.fixed-header-spacer {
  height: 246px;
  background-color: var(--white);
}
.mobile_nav_button {
  display: none;
}
.header-banner {
  z-index: 999999999;
  position: fixed;
  height: 36px;
  width: 100%;
}
.header-banner.header-shrink {
  height: 10px;
}
.navigationBar {
  z-index: 999999999;
  padding: 24px 0;
  position: fixed;
  margin-top: 48px;
  min-height: 140px;
  width: 100%;
  background-color: var(--white);
}
.navigationBar.header-shrink {
  margin-top: 10px;
  min-height: 100px;
  padding: 0;
}
.navigationBar.header-shrink .txt-m-light {
  font-size: 17px;
}
.navigationBar .boxed {
  display: grid;
  grid-template-columns: 208px 1fr;
}
.logo {
  color: white;
  background-image: url(../img/dlf-seeds.svg);
  width: 300px;
  height: 150px;
  display: inline-block;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: 50%;
}
.header-shrink .logo {
  position: relative;
  width: 150px;
  height: 100px;
  box-sizing: border-box;
}
.navigation {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  height: 36px;
  text-align: right;
}
.navigation ul {
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: right;
  display: inline-block;
  /* float: right; */

}
.navigation > ul {
  cursor: pointer;
}
.navigation ul li {
  display: inline-block;
  position: relative;
  margin: 0 20px;
  z-index: 10;
}
.navigation ul li:after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--green);
}
.navigation ul li.current:after {
  width: 100%;
}
.navigation li.is-dropdown {
  margin-left: 0;
  margin-right: 8px;
  border-left: 8px solid transparent;
  padding-right: 24px;
  line-height: 1.4em;
}
.navigation li.is-dropdown .navarrowspan:after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  width: 24px;
  height: 24px;
  -webkit-mask-image: url(../img/icons/arrow.svg);
  mask-image: url(../img/icons/arrow.svg);
  -webkit-mask-size: 100%;
  mask-size: 100%;
  -webkit-mask-position: 50%;
  mask-position: 50%;
  border-radius: 50%;
  background: black;
  transform: translateY(-50%) rotate(180deg) scale(0.6, 0.8);
}
.navigation ul ul {
  position: absolute;
  margin-top: 0px;
  background: transparent;
  left: -40px;
  opacity: 0;
  top: 20px;
  max-height: 0;
  padding: 0 20px;
  overflow: hidden;
  display: block;
}
.navigation ul ul:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: var(--green);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.navigation ul > li ul {
  border-top: 0 solid transparent;
  padding: 0;
  opacity: 0.5;
  max-height: 0;
}
.navigation ul > li ul > li {
  padding: 0;
  margin: 0;
}
.navigation ul > li ul > li > a {
  padding: 10px 20px;
  width: 100%;
  display: inline-block;
}
.navigation ul > li ul > li > a:hover,
.navigation ul > li ul > li > a:focus {
  background-color: #008d45;
}
.navigation ul > li.current ul,
.navigation ul > li.current-hovered ul {
  border-top: 24px solid transparent;
  opacity: 1;
  max-height: unset;
}
.navigation ul > li.hiding ul {
  transition: max-height 0s;
}
.navigation ul ul li {
  display: block;
  white-space: nowrap;
  padding: 4px 0;
  margin-bottom: 3px;
  text-align: left;
}
.navigation ul ul a {
  color: var(--white);
}
.navigation ul ul li:after {
  background: var(--white);
}
#searchbutton {
  display: inline-block;
  height: 36px;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  background-size: contain;
  background-repeat: no-repeat;
  margin-left: 10px;
}
#searchbutton > i {
  font-size: 24px;
}
#searchbutton:hover {
  cursor: pointer;
}
#searchbutton.hidesearchbutton {
  display: none;
}
.navigation ul li.nav_mobile_contact {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  /*Navigation cuts to iPad and smaller tablet earlier */

}
.navigation ul li.nav_mobile_contact .navsocial {
  width: 80%;
  margin: 8px auto;
  display: flex;
  justify-content: space-evenly;
}
.navigation ul li.nav_mobile_contact .navsocial a {
  background: var(--white);
  display: inline-block;
  padding: 8px;
  margin: 5px;
  width: 48px;
  height: 48px;
}
@media only screen and (max-width: 575px ) {
  .navigation ul li.nav_mobile_contact .navsocial a {
    width: 36px;
    height: 36px;
  }
}
@media only screen and (min-width: calc(829px)) {
  .navigation ul li.nav_mobile_contact {
    display: none;
    overflow: hidden;
  }
}
/*3. Footer ===================================== */

/*Newsletter*/

.subscription_wrapper {
  max-width: 88%;
  margin: 0 auto;
  position: relative;
  display: block;
  overflow: hidden;
}
.subscription_grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  grid-gap: 20px;
}
.newsletter_text {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px 30px 30px 30px;
  line-height: 1.4em;
  z-index: 1;
  position: relative;
  border-radius: 25px;
}
.newsletter_text .newsletter_image {
  height: 120px;
  width: 120px;
}
.subscription_wrapper .button {
  background-image: linear-gradient(180deg, #00a651 0%, #00a651 25%, transparent 75%, transparent 100%), linear-gradient(90deg, #1948cc 0%, #00a651 92%);
  transition: background-position 0.3s linear;
  background-size: 100% 400%;
  background-position: 0 0%;
}
.subscription_wrapper .button:hover,
.subscription_wrapper .button:focus {
  background-position: 0% 100%;
}
.newsletter_text h1 {
  margin: 10px 0;
  font-size: 4rem;
  line-height: 1em;
  max-width: 30rem;
}
.newsletter_form {
  padding: 30px 40px 20px 50px;
  position: relative;
  z-index: 11;
  border-radius: 25px;
  background: var(--subscription-light-grey);
}
.newsletter_form p {
  font-size: 21px;
  font-weight: 400;
  line-height: 1.1em;
  margin-bottom: 1em;
}
.newsletter_form p strong {
  font-size: 21px;
  font-weight: 400;
  line-height: 1.1em;
  font-weight: bold;
}
::placeholder {
  color: var(--black);
}
.newsletter_form label {
  display: none;
}
.newsletter_form input[type="text"],
.newsletter_form input[type="email"] {
  display: block;
  width: 100%;
  border-radius: 10px;
  border: 2px solid var(--input-border-color-green);
  padding: 12px 10px;
  font-size: 1.3rem;
  color: var(--black);
  margin-bottom: 15px;
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.4) inset;
}
.newsletter_form input[type="submit"] {
  font-size: 21px;
  font-weight: 400;
  line-height: 1.1em;
  border-radius: 100px;
  padding: 12px 20px 12px 20px;
  position: relative;
  display: inline-block;
  margin: 10px;
  line-height: 1.4em;
  font-size: 26px;
  font-weight: normal;
  background-color: var(--green);
  color: var(--white);
  border: 0;
}
.newsletter_form input[type="submit"].arrow-only {
  width: 40px;
  height: 40px;
  text-align: center;
}
.form_field.right-aligned {
  text-align: right;
}
input[type="submit"]:hover {
  cursor: pointer;
}
.checkbox_wrapper {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  position: relative;
}
.checkbox_wrapper input[type="checkbox"] {
  margin-left: 0;
  margin-right: 16px;
  padding: 5px;
  box-shadow: none;
  border: none;
  appearance: none;
  border: 2px solid var(--green);
  box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.4) inset;
  background-color: white;
  border-radius: 100%;
  width: 45px;
  height: 45px;
  display: inline-block;
  accent-color: var(--green);
}
@media only screen and (max-width: 576px) {
  .checkbox_wrapper input[type="checkbox"] {
    width: 35px;
    height: 35px;
  }
}
.checkbox_wrapper input[type="checkbox"]:hover {
  cursor: pointer;
}
.checkbox_wrapper input[type="checkbox"] ~ .fa-check {
  pointer-events: none;
  position: absolute;
  z-index: 1;
  color: transparent;
  left: 4px;
  top: 8px;
  font-size: 38px;
}
@media only screen and (max-width: 576px) {
  .checkbox_wrapper input[type="checkbox"] ~ .fa-check {
    font-size: 26px;
  }
}
.checkbox_wrapper input[type="checkbox"]:checked {
  box-shadow: none;
  background-color: var(--green);
}
.checkbox_wrapper input[type="checkbox"]:checked ~ .fa-check {
  color: white;
}
.checkbox_wrapper label {
  width: 55%;
  flex: 1 1 auto;
  text-align: left;
}
.checkbox_wrapper .justify-right {
  align-self: flex-end;
}
.subscription_terms a {
  font-size: 21px;
  font-weight: 400;
  line-height: 1.1em;
  color: var(--green);
  text-decoration: underline;
}
.subscription_terms label {
  font-size: 21px;
  font-weight: 400;
  line-height: 1.1em;
  display: inline-block;
  color: var(--black);
  line-height: 1.4em;
  position: relative;
  top: 3px;
}
.contact-form .callback_required {
  display: flex;
  align-items: center;
}
.contact-form .callback_required label {
  margin: 0;
}
/*Imagebanner*/

.footer_image_banner {
  width: 100%;
  height: 500px;
  position: relative;
}
.footer_image_banner_bg {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}
.footer_image_banner_bg img {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: bottom;
  height: 100%;
}
.footer_image_banner_content {
  position: absolute;
  bottom: 20px;
  right: 100px;
}
.footer_image_banner_title {
  position: absolute;
  color: var(--white);
  bottom: 20px;
  left: -510px;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.7);
  transform: scale(1.4);
}
.additional_image {
  position: relative;
  bottom: -90px;
}
.additional_image img {
  max-width: 50%;
  float: right;
}
/*Footerbluebanner*/

.footer_banner {
  padding-bottom: 70px;
}
.footer_banner *,
.footer_banner a {
  color: var(--white);
}
.footer_grid {
  display: grid;
  grid-template-columns: 1fr 3fr;
  grid-gap: 50px;
}
.footer_logos .logo {
  width: 300px;
  height: 120px;
}
.footer_logos .logo:nth-child(1) {
  background-image: url(../img/dlf-seeds-white.svg);
}
.footer_logos .logo:nth-child(2) {
  background-image: url(../img/dlf-seeds-and-science.svg);
}
.footer_grid ul {
  list-style: none;
}
.footer_logos {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  color: white;
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
}
.footer_contact a,
.office {
  display: block;
  line-height: 1.6em;
}
.footer_contact .txt-l {
  line-height: 2em;
  display: block;
}
.footer_navigation_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 70px;
}
.footer_navigation_grid > div {
  padding: 0 5px;
}
@media only screen and (max-width: 575px ) {
  .footer_navigation_grid p {
    padding: 12px 0;
  }
}
@media only screen and (min-width: 576px ) {
  .footer_navigation_grid p {
    padding-bottom: 12px;
  }
}
.footer_navigation_grid ul {
  position: relative;
  top: -19px;
}
.footer_navigation_grid * {
  line-height: 2em;
}
.footer_social_media.social {
  width: 100%;
}
.footer_social_media.social a {
  width: 67.5px;
  height: 67.5px;
  margin: 0 35px;
}
@media only screen and (max-width: 767px ) {
  .footer_social_media.social {
    max-width: 80%;
    margin: 0 auto 50px auto;
    display: flex;
    justify-content: space-between;
  }
  .footer_social_media.social a {
    width: 50px;
    height: 50px;
    margin: 0;
  }
}
@media only screen and (max-width: 575px ) {
  .footer_social_media.social {
    max-width: 90%;
    margin: 0 auto;
  }
}
/*4. Content ===================================== */

/*Slider*/

.captionbg {
  width: 100%;
  height: 140px;
  position: absolute;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  display: block;
  z-index: 1;
  left: 0;
  display: none;
}
.flex-container a:active,
.flexslider a:active {
  outline: 0;
}
.flex-control-nav,
.flex-direction-nav,
.slides {
  margin: 0;
  padding: 0;
  list-style: none;
}
.flexslider {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--white);
  border: 0;
  position: relative;
  zoom: 1;
}
.flexslider .slides > li {
  box-sizing: border-box;
  position: relative;
  width: 100%;
  min-height: 555px;
  background: var(--slides-light-grey);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.flexslider .slides img,
.image_banner img.abs {
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.flex-pauseplay span {
  text-transform: capitalize;
  display: block;
  box-sizing: border-box;
}
.slides:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}
html[xmlns] .slides {
  display: block;
}
* html .slides {
  height: 1%;
}
.no-js .slides > li:first-child {
  display: block;
}
.flexslider .slides {
  zoom: 1;
  width: 100%;
  height: 100%;
}
.flex-container {
  zoom: 1;
  position: relative;
}
.flex-caption {
  background: 0 0;
  zoom: 1;
  width: 860px;
  position: relative;
  right: 20%;
  top: 30px;
  color: var(--white);
  font-size: 18px;
  line-height: 18px;
  box-sizing: border-box;
  font-weight: 600;
}
.flex-bigcaption {
  width: 860px;
  position: relative;
  left: 50%;
  margin-left: -430px;
  color: var(--white);
  font-size: 34px;
  line-height: 34px;
  box-sizing: border-box;
  font-weight: 200;
  display: table;
  height: 140px;
}
.flex-bigcaption span.htext {
  color: var(--white);
  font-size: inherit;
  line-height: inherit;
  display: table-cell;
  vertical-align: middle;
  height: 140px;
  cursor: pointer;
  padding-right: 40px;
}
.flex-bigcaption span.hbutton {
  cursor: pointer;
  color: inherit;
  font-size: 18px;
  text-align: center;
  position: absolute;
  right: -40;
  bottom: 50px;
  margin-top: 25px;
  line-height: 20px;
  width: 100px;
  padding: 5px 20px;
}
.flex-direction-nav li a {
  width: 52px;
  height: 52px;
  margin: -13px 0 0;
  display: block;
  position: absolute;
  top: 50%;
  cursor: pointer;
  text-indent: -9999px;
}
.flex-direction-nav li .next {
  background-position: -52px 0;
  right: 20px;
}
.flex-direction-nav li .prev {
  left: 0;
}
.flex-direction-nav li .disabled {
  opacity: 0.3;
  cursor: default;
}
.flex-control-nav {
  width: 100%;
  position: absolute;
  bottom: -7px;
  text-align: center;
}
.flexslider-carousel .flex-control-nav {
  bottom: 25px;
}
.flex-control-nav li {
  margin: 0 0 0 10px;
  display: inline-block;
  zoom: 1;
}
.flex-control-nav li:first-child {
  margin: 0;
}
.flex-control-nav li a {
  width: 13px;
  height: 13px;
  display: block;
  background: url(theme/bg_control_nav.png) no-repeat;
  cursor: pointer;
  text-indent: -9999px;
}
.flex-control-nav li a:hover {
  background-position: 0 -13px;
}
.flex-control-nav li a.active {
  background-position: 0 -26px;
  cursor: default;
}
.flex-control-paging li a {
  width: 16px;
  height: 16px;
  display: block;
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
  text-indent: -9999px;
  z-index: 999;
  border-radius: 50%;
  position: relative;
  box-shadow: 0 0 0px 0px rgb(0 0 0 / 20%);
  border: 2px solid var(--white);
}
.flex-control-paging li a:hover {
  background: rgba(0, 0, 0, 0.7);
}
.flex-control-paging li a.flex-active {
  background: rgba(255, 255, 255, 0.7);
  cursor: default;
  border-radius: 50%;
}
.flex-direction-nav a {
  text-decoration: none;
  display: block;
  width: 40px;
  height: 40px;
  margin: -20px 0 0;
  position: absolute;
  top: 50%;
  z-index: 10;
  overflow: hidden;
  opacity: 0;
  cursor: pointer;
  color: rgba(0, 0, 0, 0.8);
  text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.3);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.flex-direction-nav a:before {
  font-family: flexslider-icon;
  font-size: 40px;
  display: inline-block;
  content: "";
  color: rgba(0, 0, 0, 0.8);
  text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.3);
}
.flex-direction-nav a.flex-next:before {
  content: "";
}
.flex-direction-nav .flex-prev {
  left: -50px;
}
.flex-direction-nav .flex-next {
  right: -50px;
  text-align: right;
  background-position: -56px 0;
  content: "";
}
.flexslider:hover .flex-direction-nav .flex-prev {
  opacity: 0.7;
  left: 10px;
}
.flexslider:hover .flex-direction-nav .flex-prev:hover {
  opacity: 1;
}
.flexslider:hover .flex-direction-nav .flex-next {
  opacity: 0.7;
  right: 10px;
}
.flexslider:hover .flex-direction-nav .flex-next:hover {
  opacity: 1;
}
.flex-direction-nav .flex-disabled {
  opacity: 0 !important;
  cursor: default;
}
.flex-pauseplay a {
  display: block;
  width: 20px;
  height: 20px;
  position: absolute;
  bottom: 5px;
  left: 10px;
  opacity: 0.8;
  z-index: 10;
  overflow: hidden;
  cursor: pointer;
  color: var(--black);
}
.flex-pauseplay a:before {
  font-family: flexslider-icon;
  font-size: 20px;
  display: inline-block;
  content: "";
}
.flex-pauseplay a:hover {
  opacity: 1;
}
.flex-pauseplay a.flex-play:before {
  content: "";
}
@media only screen and (max-width: 992px) {
  .flex-caption {
    width: 70%;
    position: relative;
    right: 10%;
    top: 30px;
    color: var(--white);
    font-size: 18px;
    line-height: 18px;
    box-sizing: border-box;
    font-weight: 600;
  }
  .flex-bigcaption {
    width: 70%;
    position: relative;
    left: 50%;
    margin-left: -40%;
    color: var(--white);
    font-size: 24px;
    line-height: 24px;
    box-sizing: border-box;
    font-weight: 200;
    display: table;
    height: 140px;
  }
  .flex-bigcaption span.htext {
    color: var(--white);
    font-size: inherit;
    line-height: inherit;
    display: table-cell;
    vertical-align: middle;
    height: 140px;
    cursor: pointer;
    padding-right: 40px;
  }
  .flex-bigcaption span.hbutton {
    cursor: pointer;
    color: inherit;
    font-size: 18px;
    text-align: center;
    position: absolute;
    right: -40;
    bottom: 50px;
    margin-top: 25px;
    line-height: 20px;
    width: 100px;
    padding: 5px 20px;
  }
}
@media only screen and (max-width: 768px) {
  .flexslider {
    border-top: 0 solid var(--black);
    height: 450px;
  }
  .flexslider .slides > li {
    position: relative;
    width: 100%;
    min-height: 450px;
    height: 450px;
    background: var(--slides-light-grey);
  }
}
@media only screen and (max-width: 576px) {
  .flexslider {
    border-top: 0 solid var(--black);
  }
  .flexslider .slides > li {
    justify-content: flex-end;
  }
  .header_slider.header_slider-mobile_height_250 {
    min-height: 250px;
  }
  .header_slider.header_slider-mobile_height_250 .flexslider {
    height: 250px;
  }
  .header_slider.header_slider-mobile_height_250 .flexslider .slides > li {
    min-height: 250px;
    height: 250px;
  }
}
.header_slider {
  min-height: 450px;
  overflow: hidden;
}
.flexslider {
  height: 100%;
}
.flexslider .slides > li {
  position: relative;
  width: 100%;
  height: 100%;
  background: var(--slides-very-light-grey);
}
.flexslider .slide_content {
  position: relative;
  z-index: 999999;
  max-width: 48%;
}
.slider_enrichment_border {
  /* Stratos */
  height: 30px;
}
.slider_title,
.slider_subtitle {
  width: 100%;
  padding: 20px;
}
/*Product Category grid*/

.grid_wrapper {
  display: grid;
  grid-gap: 20px;
}
.grid-of-six {
  grid-template-columns: repeat(6, 1fr);
}
.grid-of-five {
  grid-template-columns: repeat(5, 1fr);
}
.grid-of-four {
  grid-template-columns: repeat(4, 1fr);
}
.grid-of-four .grid_element img {
  height: 200px;
}
.grid-of-three {
  grid-template-columns: repeat(3, 1fr);
}
.grid-of-three .grid_element img {
  height: 250px;
}
.grid-of-two {
  grid-template-columns: repeat(2, 1fr);
}
.grid-of-two .grid_element img {
  height: 300px;
}
.grid_element {
  background: var(--white);
  position: relative;
  overflow-x: hidden;
  border-radius: 15px;
  table-layout: fixed;
}
.grid_element img {
  height: 150px;
  width: 100%;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  object-fit: cover;
}
.grid_element > a {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.grid_element > a > a {
  justify-self: flex-end;
}
.grid_title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex: 1 1 auto;
  width: 100%;
  box-sizing: border-box;
  padding: 10px 20px;
  position: relative;
  margin: 0;
}
.grid_title .grid_title_anti_flap {
  display: flex;
}
/*Product Categories*/

.product_categories {
  background-color: var(--light-grey);
  z-index: 1;
  text-align: center;
}
.product_categories a {
  display: inline-block;
  padding: 12px 20px;
  position: relative;
  margin: 0 5px;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  border-radius: 100px;
}
.product_categories a i {
  color: var(--black);
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
}
.product_categories a:hover,
.product_categories a:focus {
  background-image: -moz-linear-gradient(0deg, #1948cc 0%, #00a651 92%);
  background-image: -webkit-linear-gradient(0deg, #1948cc 0%, #00a651 92%);
  background-image: -ms-linear-gradient(0deg, #1948cc 0%, #00a651 92%);
  color: var(--white);
  padding-right: 15px;
}
.product_categories a:hover i,
.product_categories a:focus i {
  padding-left: 5px;
  color: var(--white);
}
/*Introtext*/

.intro-text h1 {
  margin-bottom: 40px;
}
.intro-text strong {
  display: block;
  max-width: 70%;
  margin: 0 auto;
  margin-bottom: 30px;
}
.partner_logos {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 50px;
}
.partner_logos img {
  display: inline-block;
  margin: 0 20px;
  max-width: 300px;
}
/*Imagebanner*/

.image_banner {
  min-height: 60vh;
  position: relative;
  padding: 20px 5%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.image_banner .image_height {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.image_banner .slide_content {
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
}
.image_banner .banner_sutitle {
  padding: 10px 20px;
  font-size: 26px;
  font-weight: normal;
  line-height: 1.1em;
}
.image_banner.right-aligned {
  align-items: flex-end;
}
@media only screen and (max-width: 991px ) {
  .image_banner .banner_sutitle {
    font-size: 20px;
  }
}
@media only screen and (max-width: 575px ) {
  .image_banner .banner_sutitle {
    font-size: 16px;
  }
}
.image_banner.left-aligned .slide_content,
.image_banner.right-aligned .slide_content {
  max-width: 48%;
}
@media only screen and (max-width: 1399px ) {
  .image_banner.left-aligned .slide_content,
  .image_banner.right-aligned .slide_content {
    min-width: 50%;
    max-width: 70%;
  }
}
@media only screen and (max-width: 767px ) {
  .image_banner.left-aligned .slide_content,
  .image_banner.right-aligned .slide_content {
    min-width: 70%;
    max-width: 90%;
  }
}
.image_banner img {
  width: 100%;
  height: 100%;
  position: relative;
  object-fit: cover;
}
.image_banner .slide_content {
  position: relative;
  z-index: 999999;
}
.image_banner .slider_subtitle {
  font-size: 0.83em;
  box-sizing: border-box;
  line-height: 1.5em;
}
/*Newsgrid*/

.blue-theme .button-arrow-wrapper .button_short {
  background-color: var(--blue);
}
.green-theme .button-arrow-wrapper .button_short {
  background-color: var(--green);
}
/*Targeting white tiles on non-full width grey panel on white background*/

.side_nav_main-container .news_grid .grid_wrapper,
.side_nav_main-container .cta_grid .grid_wrapper {
  padding-left: 15px;
  padding-right: 15px;
}
.news_grid .grid_element,
.cta_grid .grid_element {
  border-radius: 15px;
}
.news_grid .grid_element:hover .button_short,
.cta_grid .grid_element:hover .button_short {
  background-image: -moz-linear-gradient(0deg, #1948cc 0%, #00a651 92%);
  background-image: -webkit-linear-gradient(0deg, #1948cc 0%, #00a651 92%);
  background-image: -ms-linear-gradient(0deg, #1948cc 0%, #00a651 92%);
}
.news_grid .news_title,
.cta_grid .cta_title {
  padding: 10px;
  text-align: left;
  display: block;
}
.news_grid .news_intro,
.cta_grid .cta_intro {
  padding: 10px;
  text-align: left;
  display: flex;
  font-size: 0.83em;
  box-sizing: border-box;
  line-height: 1.5em;
  flex: 1 1 auto;
}
.news_button,
.cta_button {
  text-align: center;
  padding: 10px 0;
  margin: 10px;
  display: flex;
  align-self: center;
  justify-content: center;
}
.news_button .button,
.cta_button .button {
  margin: 10px;
}
.blue-theme .news_button .button {
  background-image: linear-gradient(180deg, #1948cc 0%, #1948cc 25%, transparent 75%, transparent 100%), linear-gradient(90deg, #1948cc 0%, #00a651 92%);
  transition: background-position 0.3s linear;
  background-size: 100% 400%;
  background-position: 0 0%;
}
.blue-theme .news_button .button:hover,
.blue-theme .news_button .button:focus {
  background-position: 0% 100%;
}
.green-theme .news_button .button {
  background-image: linear-gradient(180deg, #00a651 0%, #00a651 25%, transparent 75%, transparent 100%), linear-gradient(90deg, #1948cc 0%, #00a651 92%);
  transition: background-position 0.3s linear;
  background-size: 100% 400%;
  background-position: 0 0%;
}
.green-theme .news_button .button:hover,
.green-theme .news_button .button:focus {
  background-position: 0% 100%;
}
.grey-theme .news_button .button {
  background-image: linear-gradient(180deg, #4d4d4d 0%, #4d4d4d 25%, transparent 75%, transparent 100%), linear-gradient(90deg, #1948cc 0%, #00a651 92%);
  transition: background-position 0.3s linear;
  background-size: 100% 400%;
  background-position: 0 0%;
}
.grey-theme .news_button .button:hover,
.grey-theme .news_button .button:focus {
  background-position: 0% 100%;
}
.blue-theme .cta_button .button {
  background-image: linear-gradient(180deg, #1948cc 0%, #1948cc 25%, transparent 75%, transparent 100%), linear-gradient(90deg, #1948cc 0%, #00a651 92%);
  transition: background-position 0.3s linear;
  background-size: 100% 400%;
  background-position: 0 0%;
}
.blue-theme .cta_button .button:hover,
.blue-theme .cta_button .button:focus {
  background-position: 0% 100%;
}
.green-theme .cta_button .button {
  background-image: linear-gradient(180deg, #00a651 0%, #00a651 25%, transparent 75%, transparent 100%), linear-gradient(90deg, #1948cc 0%, #00a651 92%);
  transition: background-position 0.3s linear;
  background-size: 100% 400%;
  background-position: 0 0%;
}
.green-theme .cta_button .button:hover,
.green-theme .cta_button .button:focus {
  background-position: 0% 100%;
}
.grey-theme .cta_button .button {
  background-image: linear-gradient(180deg, #4d4d4d 0%, #4d4d4d 25%, transparent 75%, transparent 100%), linear-gradient(90deg, #1948cc 0%, #00a651 92%);
  transition: background-position 0.3s linear;
  background-size: 100% 400%;
  background-position: 0 0%;
}
.grey-theme .cta_button .button:hover,
.grey-theme .cta_button .button:focus {
  background-position: 0% 100%;
}
/*Videobanner*/

.video_banner {
  display: grid;
  grid-template-columns: 1.7fr 1fr;
  grid-gap: 50px;
  align-items: center;
}
.boxed.video_banner {
  grid-template-columns: 1fr 1fr;
}
.video_banner video {
  width: 100%;
  height: auto;
}
.video_banner .video_content {
  max-width: 500px;
  line-height: 1.4em;
}
.video_content .video_title {
  margin: 30px 0;
  padding: 10px 0;
}
.video_content_wrapper .video_content {
  padding-left: 50px;
}
.video_content_wrapper.right-aligned .video_content {
  padding-left: 0;
  padding-right: 50px;
}
.video_content_wrapper .video_content {
  padding-left: 50px;
}
.video_content_wrapper.right-aligned .video_content {
  padding-left: 0;
  padding-right: 50px;
}
.video_content_wrapper .video_content {
  padding-left: 50px;
}
.video_content_wrapper.right-aligned .video_content {
  padding-left: 0;
  padding-right: 50px;
}
/* Common product list page and product page image banners */

.products_banner {
  position: relative;
}
.products_banner > img {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}
.products_banner .banner_content {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}
.products_banner .banner_content_wrapper {
  display: block;
  position: relative;
  border-left: 20px solid;
  border-radius: 0 15px 15px 0;
  border-image: linear-gradient(#1948cc, #00a651) 0 92%;
}
/* Product list page image banner */

.products_banner.productlist_banner .banner_content {
  min-height: 700px;
}
.products_banner.productlist_banner .banner_content .productlist_banner_small {
  min-height: 15vh;
}
.products_banner.productlist_banner .banner_content .banner_grid {
  z-index: 3;
}
.products_banner.productlist_banner .banner_content .banner_grid .grid_wrapper {
  margin: 0;
}
.products_banner.productlist_banner .banner_content .banner_grid .grid_element {
  display: flex;
  flex-direction: column;
  padding: 30px 20px 20px;
}
.products_banner.productlist_banner .banner_content .banner_grid .grid_element .grid_text {
  flex-grow: 3;
}
.products_banner.productlist_banner .banner_content .banner_grid .grid_element .grid_button {
  text-align: right;
}
.products_banner.productlist_banner .banner_content_wrapper {
  padding: 20px 20px 40px 20px;
  margin: 0 0 0 auto;
  max-width: 50%;
}
@media only screen and (max-width: 1399px ) {
  .products_banner.productlist_banner .banner_content_wrapper {
    padding-right: 60px;
  }
}
@media only screen and (max-width: 767px ) {
  .products_banner.productlist_banner .banner_content_wrapper {
    max-width: none;
  }
}
@media only screen and (max-width: 575px ) {
  .products_banner.productlist_banner .banner_content_wrapper {
    padding-right: 20px;
  }
}
.products_banner.productlist_banner .banner_content_wrapper .category_title {
  display: inline-block;
  min-width: 60%;
  padding: 10px 0;
  margin: 20px 0 40px;
}
.products_banner.productlist_banner .banner_content_wrapper .category_subtitle,
.products_banner.productlist_banner .banner_content_wrapper .category_introduction {
  line-height: 1.4em;
  font-size: 1.2rem;
}
.products_banner.productlist_banner .banner_content_wrapper .category_subtitle a {
  font-size: inherit;
  color: inherit;
}
.products_banner.productlist_banner .banner_content_wrapper .category_subtitle a:hover {
  text-decoration: underline;
}
.products_banner.productlist_banner .grid_element:hover {
  background-image: -moz-linear-gradient(0deg, #1948cc 0%, #00a651 92%);
  background-image: -webkit-linear-gradient(0deg, #1948cc 0%, #00a651 92%);
  background-image: -ms-linear-gradient(0deg, #1948cc 0%, #00a651 92%);
}
.products_banner.productlist_banner .grid_element:hover .grid_text {
  color: var(--white);
}
.products_banner.productlist_banner .grid_element:hover .button_short {
  background: var(--white);
}
.products_banner.productlist_banner .grid_element:hover .button_short i {
  color: var(--green);
}
/* Product page image banner */

.products_banner.product_banner .banner_content {
  height: 520px;
}
@media only screen and (max-width: 1399px ) {
  .products_banner.product_banner .banner_content {
    padding: 0 20px;
  }
}
.products_banner.product_banner .banner_content_wrapper {
  padding: 20px;
  margin: 0 auto 0 0;
}
.products_banner.product_banner .banner_content_wrapper img {
  max-height: 90px;
  width: auto;
}
.products_banner.product_banner .banner_content_wrapper .pib_title {
  padding: 20px 0 10px 0;
}
/*Filter*/

.filterbar {
  padding: 30px;
  margin-top: 30px;
  display: grid;
  grid-template-columns: 1.2fr 2fr 3fr 4fr 4fr 3fr;
  grid-gap: 15px;
  position: relative;
  background: rgb(153 153 153 / 15%);
}
.filter_block {
  display: inline;
  position: relative;
}
.filterbar label {
  display: block;
  font-weight: bold;
  font-size: 0.8rem;
}
.filterbar select {
  background: transparent;
  border: 1px solid var(--blue);
  color: var(--blue);
  font-weight: bold;
  width: 100%;
  display: block;
  line-height: 40px;
  height: 40px;
  position: relative;
  padding-right: 20px;
  z-index: 10;
}
.filter_block:after {
  width: 30px;
  height: 40px;
  content: "";
  display: block;
  background: var(--blue);
  position: absolute;
  right: 0;
  bottom: 0px;
  z-index: 0;
}
.filter_block:before {
  content: "";
  display: block;
  position: absolute;
  right: 10px;
  bottom: 10px;
  width: 12px;
  height: 12px;
  -webkit-mask-image: url(../img/icons/arrow.svg);
  mask-image: url(../img/icons/arrow.svg);
  -webkit-mask-size: 100%;
  mask-size: 100%;
  -webkit-mask-position: 50%;
  mask-position: 50%;
  border-radius: 50%;
  background: white;
  transform: translateY(-50%) rotate(90deg) scaleY(1);
  z-index: 11;
}
.filter_block_bg {
  background: var(--white);
  position: absolute;
  width: 100%;
  height: 40px;
  bottom: 0px;
  z-index: 0;
}
.filterbar option {
  color: var(--blue);
}
/*Products-list*/

.product_group_grid {
  display: grid;
  grid-template-columns: 1fr 6fr 4fr;
  margin: 40px 0;
  grid-gap: 20px;
}
.product_groups img.product_image {
  height: 130px;
  width: 130px;
  position: relative;
  object-fit: cover;
  display: block;
  border-radius: 50%;
}
.product_group_content .txt-xl {
  margin: 10px 0 20px 0;
}
.product_group_buttons {
  text-align: right;
}
.product_group_buttons a {
  letter-spacing: -0.4px;
  display: inline-block;
  cursor: pointer;
  min-width: 165px;
}
.product_group_buttons a.button_open i {
  transform: rotate(180deg);
}
.product_grid_accordion {
  border-bottom: 2px solid var(--green);
  overflow: hidden;
  height: 0;
}
.product_grid_accordion.accordion_open {
  height: auto;
}
.product_grid_accordion.accordion_open .product_grid_wrapper {
  transform: scaleY(1);
  height: auto;
}
.product_grid_wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 20px 10px;
  margin-top: 0;
  padding: 0 30px 30px;
  transform: scaleY(0);
  transform-origin: top;
}
.product {
  background: rgb(153 153 153 / 15%);
  border-left: 20px solid transparent;
  border-image: linear-gradient(#4d4d4d, #4d4d4d) 0 92%;
  border-radius: 0 15px 15px 0;
  padding: 10px 20px 0px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.product:hover,
.product:focus {
  transition: border-image 0.3s linear;
  border-image: linear-gradient(#1948cc, #00a651) 0 92%;
}
.product .button_short.dld-blue-bg {
  background-image: linear-gradient(180deg, #1948cc 0%, #1948cc 25%, transparent 75%, transparent 100%), linear-gradient(90deg, #1948cc 0%, #00a651 92%);
  transition: background-position 0.3s linear;
  background-size: 100% 400%;
  background-position: 0 0%;
}
.product:hover .button_short.dld-blue-bg,
.product:focus .button_short.dld-blue-bg {
  background-position: 0% 100%;
}
@media only screen and (max-width: 576px) {
  .product:hover .button_short.dld-blue-bg,
  .product:focus .button_short.dld-blue-bg {
    background-image: -moz-linear-gradient(0deg, #1948cc 0%, #00a651 92%);
    background-image: -webkit-linear-gradient(0deg, #1948cc 0%, #00a651 92%);
    background-image: -ms-linear-gradient(0deg, #1948cc 0%, #00a651 92%);
  }
}
.product .button_short.dld-green-bg {
  background-image: linear-gradient(180deg, #00a651 0%, #00a651 25%, transparent 75%, transparent 100%), linear-gradient(90deg, #1948cc 0%, #00a651 92%);
  transition: background-position 0.3s linear;
  background-size: 100% 400%;
  background-position: 0 0%;
}
.product:hover .button_short.dld-green-bg,
.product:focus .button_short.dld-green-bg {
  background-position: 0% 100%;
}
@media only screen and (max-width: 576px) {
  .product:hover .button_short.dld-green-bg,
  .product:focus .button_short.dld-green-bg {
    background-image: -moz-linear-gradient(0deg, #1948cc 0%, #00a651 92%);
    background-image: -webkit-linear-gradient(0deg, #1948cc 0%, #00a651 92%);
    background-image: -ms-linear-gradient(0deg, #1948cc 0%, #00a651 92%);
  }
}
.product .button_short.dld-grey-bg {
  background-image: linear-gradient(180deg, #4d4d4d 0%, #4d4d4d 25%, transparent 75%, transparent 100%), linear-gradient(90deg, #1948cc 0%, #00a651 92%);
  transition: background-position 0.3s linear;
  background-size: 100% 400%;
  background-position: 0 0%;
}
.product:hover .button_short.dld-grey-bg,
.product:focus .button_short.dld-grey-bg {
  background-position: 0% 100%;
}
@media only screen and (max-width: 576px) {
  .product:hover .button_short.dld-grey-bg,
  .product:focus .button_short.dld-grey-bg {
    background-image: -moz-linear-gradient(0deg, #1948cc 0%, #00a651 92%);
    background-image: -webkit-linear-gradient(0deg, #1948cc 0%, #00a651 92%);
    background-image: -ms-linear-gradient(0deg, #1948cc 0%, #00a651 92%);
  }
}
.product_title {
  margin: 20px 0;
}
.product_intro {
  height: 100%;
}
.product_button {
  text-align: right;
  margin-bottom: 10px;
}
.qld_recommended .product_title {
  max-width: 50%;
}
.qld_recommended:before {
  content: "";
  display: block;
  width: 50%;
  height: 50px;
  background: url(../img/icons/recommended.png) no-repeat;
  background-size: contain;
  position: absolute;
  right: 20px;
  top: 20px;
  background-position: top right;
}
.product_facts {
  margin-top: 30px;
}
.pr_product_facts {
  margin: 40px 0 50px;
  background: var(--light-grey);
  padding: 50px 10px;
}
.pr_product_details h1:first-of-type {
  color: var(--blue);
}
.pr_product_details h2,
.pr_product_details h3,
.pr_product_details h4 {
  color: var(--green);
}
.pr_product_details img {
  border-radius: 10px !important;
}
.product_icon {
  display: inline-block;
  padding: 0px 13px 0px 20px;
  position: relative;
  font-size: 0.9rem;
  font-weight: bold;
  letter-spacing: -0.5px;
  margin-bottom: 10px;
}
.product_icon:before {
  content: "";
  display: inline-block;
  position: absolute;
  width: 20px;
  height: 20px;
  background: var(--grey);
  left: -2px;
  top: -2px;
  background-size: contain !important;
  background-repeat: no-repeat !important;
}
.icon_time:before {
  background: url("../img/icons/time.svg");
}
.icon_tick:before {
  background: url("../img/icons/tick.svg");
}
.icon_genetics:before {
  background: url("../img/icons/genetics.svg");
}
.icon_harvesting:before {
  background: url("../img/icons/harvesting.svg");
}
.icon_water:before {
  background: url("../img/icons/water.svg");
}
/*Products*/

.breadcrumbs {
  padding: 15px 0;
}
.breadcrumbs ul {
  list-style: none;
  display: inline-block;
}
.breadcrumbs ul li {
  display: inline-block;
  padding-right: 15px;
  position: relative;
  font-size: 0.8rem;
}
.breadcrumbs ul li:after {
  width: 1px;
  height: 100%;
  background: var(--grey);
  display: block;
  content: "";
  position: absolute;
  top: 0;
  right: 5px;
  opacity: 0.75;
}
.breadcrumbs ul li:last-of-type:after {
  display: none;
}
.breadcrumbs ul li:last-of-type {
  color: var(--green);
}
.savedproducts {
  float: right;
  color: var(--blue);
  font-size: 0.8rem;
  padding-right: 20px;
  font-style: italic;
}
.savedproducts .counter {
  background: var(--blue);
  font-size: 0.8rem;
  color: var(--white);
  width: 25px;
  height: 25px;
  display: inline-block;
  border-radius: 50%;
  line-height: 25px;
  text-align: center;
  margin-right: 5px;
}
.savedproducts:after {
  content: "";
  display: block;
  position: absolute;
  right: 7px;
  margin-top: 2px;
  top: 50%;
  width: 9px;
  height: 9px;
  -webkit-mask-image: url(../img/icons/arrow.svg);
  mask-image: url(../img/icons/arrow.svg);
  -webkit-mask-size: 100%;
  mask-size: 100%;
  -webkit-mask-position: 50%;
  mask-position: 50%;
  border-radius: 50%;
  background: var(--blue);
  transform: translateY(-50%) rotate(90deg) scaleY(1);
}
/*Productinfo*/

.product_information_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 30px;
  margin-top: 50px;
}
.product_information_grid img {
  max-width: 100%;
  height: auto;
}
.product_information_grid ul {
  margin-left: 30px;
  list-style: none;
}
.product_information_grid ul li {
  padding: 5px;
  font-size: 1.1rem;
  line-height: 1.4em;
}
.product_information_grid ul li::before {
  content: "\25A0";
  color: var(--green);
  font-size: 0.8rem;
  top: -3px;
  left: -15px;
  position: relative;
  display: inline-block;
  width: 1em;
}
.product_information_grid h1 {
  margin-bottom: 0;
}
.product_information_grid h3 {
  margin-bottom: 20px;
}
.remove_product {
  float: right;
  display: inline-block;
  color: var(--blue);
  padding: 20px 50px 30px 0;
  font-style: italic;
  font-weight: bold;
  position: relative;
}
.remove_product:after {
  content: "\2716";
  margin-left: 10px;
  border: 1px solid var(--blue);
  border-radius: 50%;
  width: 44px;
  display: inline-block;
  height: 44px;
  position: absolute;
  text-align: center;
  top: 4px;
  right: 0;
  line-height: 44px;
  font-style: normal;
  font-weight: bold;
  font-size: 1.3em;
}
.add_product {
  float: right;
  display: inline-block;
  color: var(--blue);
  padding: 20px 50px 30px 0;
  font-style: italic;
  font-weight: bold;
  position: relative;
}
.add_product:after {
  content: "\2714";
  margin-left: 10px;
  border: 1px solid var(--blue);
  border-radius: 50%;
  width: 44px;
  display: inline-block;
  height: 44px;
  position: absolute;
  text-align: center;
  top: 4px;
  right: 0;
  line-height: 44px;
  font-style: normal;
  font-weight: bold;
  font-size: 1.3em;
  transform: rotate(45deg);
}
.product_facts_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 15px;
}
.enterprise_type-container {
  display: inline-block;
  margin-bottom: 10px;
}
.enterprise_type-container .enterprise_type-container--aligner {
  display: flex;
  align-items: center;
}
.enterprise_type-container .product_endophyte-icon {
  display: inline-block;
  width: 100px;
  height: 55px;
  background-repeat: no-repeat;
  background-position: center;
}
.enterprise_type-container .product_endophyte-icon.default {
  max-height: 40px;
  max-width: 53px;
}
.suitable_for {
  max-width: 60px;
  display: inline-block;
  font-weight: bold;
  text-align: right;
  line-height: 1.2em;
  margin-left: 8px;
  font-size: 14px;
}
.animal_icons {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-left: 20px;
}
.animal_icons span {
  display: inline-block;
  background-color: var(--green);
  width: 100px;
  height: 55px;
  margin: 5px;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-position: center;
}
.animal_icons span.sheep {
  -webkit-mask-image: url(../img/icons/sheep.svg);
  mask-image: url(../img/icons/sheep.svg);
  max-height: 36px;
  max-width: 53px;
}
.animal_icons span.beef {
  -webkit-mask-image: url(../img/icons/beef.svg);
  mask-image: url(../img/icons/beef.svg);
  max-height: 44px;
  max-width: 65px;
}
.animal_icons span.dairy {
  -webkit-mask-image: url(../img/icons/dairy.svg);
  mask-image: url(../img/icons/dairy.svg);
  max-height: 44px;
  max-width: 65px;
}
.animal_icons span.hay {
  -webkit-mask-image: url(../img/icons/hay.svg);
  mask-image: url(../img/icons/hay.svg);
  max-height: 40px;
  max-width: 43px;
}
.animal_icons span.silage {
  -webkit-mask-image: url(../img/icons/silage.svg);
  mask-image: url(../img/icons/silage.svg);
  max-height: 40px;
  max-width: 53px;
}
.product_endophyte-icon.standard-endophyte {
  background-image: url(../img/icons/Standard-Endophyte.svg);
  max-height: 40px;
  max-width: 53px;
}
.product_endophyte-icon.ar37 {
  background-image: url(../img/icons/AR37.svg);
  max-height: 40px;
  max-width: 53px;
}
.product_endophyte-icon.ar1 {
  background-image: url(../img/icons/AR1.svg);
  max-height: 40px;
  max-width: 53px;
}
.product_endophyte-icon.max-p {
  background-image: url(../img/icons/Max-P.svg);
  max-height: 40px;
  max-width: 53px;
}
.product_endophyte-icon.endo-5 {
  background-image: url(../img/icons/Endo-5.svg);
  max-height: 40px;
  max-width: 53px;
}
.pig_logo {
  text-align: right;
}
.pig_logo img {
  max-height: 50px;
}
a.popup-link {
  position: relative;
  display: block;
}
.glyphicon-play:before {
  box-sizing: border-box;
  border-style: solid;
  border-width: 10px 0px 10px 16px;
  content: "";
  border-color: transparent transparent transparent var(--white);
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
a.popup-link .glyphicon.glyphicon-play {
  height: 60px;
  width: 60px;
  text-align: center;
  font-size: 25px;
  line-height: 49px;
  margin-bottom: -30px;
  margin-left: -30px;
  left: 50%;
  bottom: 50%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  padding: 5px;
  display: inline-block;
  position: absolute;
  background: rgba(0, 0, 0, 0.3);
  color: var(--white) !important;
  transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -ms-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
}
.columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 30px;
}
.columns * {
  line-height: 1.4em;
}
.columns h1 {
  margin-bottom: 20px;
}
.columns h2 {
  margin: 20px 0 10px;
}
.columns img {
  margin-bottom: 10px;
}
.columns a {
  color: var(--blue);
}
/*Generic content (as opposed to CTA) panel over a full width image*/

/*TODO: Consider changing product list and product pages to use this instead of products_banner*/

.content_over_image {
  position: relative;
}
.content_over_image > img {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}
@media only screen and (max-width: 1399px ) {
  .content_over_image .content {
    padding: 0 20px;
  }
}
.content_over_image .content_inner {
  border-left: 20px solid;
  border-radius: 0 15px 15px 0;
  border-image: linear-gradient(#1948cc, #00a651) 0 92%;
  padding: 20px;
}
/*Testimonials content over image*/

.testimonials li.content_over_image {
  flex-direction: row;
  align-items: center;
}
@media only screen and (max-width: 767px ) {
  .testimonials li.content_over_image {
    flex-direction: column;
  }
}
.testimonials li.content_over_image img {
  position: relative;
  width: 460px;
}
.testimonials li.content_over_image .content {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}
@media only screen and (min-width: 768px ) {
  .testimonials li.content_over_image .content {
    width: 50%;
  }
}
.testimonials li.content_over_image .content .writer {
  color: var(--green);
  text-transform: uppercase;
  padding-top: 20px;
  font-size: 0.8em;
  padding-left: 40px;
}
@media only screen and (max-width: 767px ) {
  .testimonials li.content_over_image .content .writer {
    padding-left: 20px;
  }
}
.testimonials li.content_over_image .content_inner {
  flex: 1 1 auto;
  border-left: 0;
}
.testimonials li.content_over_image .content-quote-flow {
  display: flex;
  padding: 40px;
}
@media only screen and (max-width: 767px ) {
  .testimonials li.content_over_image .content-quote-flow {
    padding: 20px 0 20px 20px;
  }
}
.testimonials li.content_over_image .quote-start,
.testimonials li.content_over_image .quote-end {
  font-style: italic;
  color: var(--green);
  font-size: 10em;
  z-index: 3;
  height: 50px;
}
.testimonials li.content_over_image .quote-start {
  margin-top: -75px;
  margin-left: -75px;
  margin-right: 15px;
}
.testimonials li.content_over_image .quote-end {
  align-self: end;
  margin-bottom: 75px;
  margin-left: -15px;
}
.testimonials {
  margin: 50px 0;
  border-top: 2px solid var(--blue);
  padding-top: 30px;
}
.testimonials_title {
  text-align: center;
  margin-bottom: 30px;
}
.testimonials .flexslider {
  padding-bottom: 40px;
}
.testimonials .flexslider .slides > li {
  background: transparent;
}
.testimonials .flex-control-paging li a {
  border: 2px solid var(--green);
}
.testimonials .flex-control-paging li a.flex-active {
  background-color: var(--green);
}
/*Guides*/

.guides {
  padding-top: 50px;
  padding-bottom: 30px;
}
.guides img {
  display: block;
  height: 100%;
  width: 100%;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  object-fit: cover;
}
.full_width_guide {
  display: grid;
  grid-template-columns: 460px 1fr;
  max-width: 80%;
  margin: 0 auto;
  grid-gap: 30px;
  background-color: var(--white);
  border-radius: 15px;
}
.guide {
  margin-bottom: 20px;
  overflow: hidden;
}
.guide_content {
  padding: 20px 20px 70px 20px;
  position: relative;
}
.guide_title {
  margin-bottom: 20px;
}
.guide_button {
  text-align: right;
  margin-top: 30px;
  position: absolute;
  bottom: 10px;
  right: 10px;
}
.columnized_guide {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 50px;
  border: 0;
  max-width: 80%;
  margin: 0 auto;
}
.columnized_guide .col {
  background: var(--white);
  display: grid;
  margin-bottom: 20px;
  grid-template-columns: 200px 1fr;
  grid-template-rows: 1fr;
  border-radius: 15px;
  overflow: hidden;
}
/*5. Responsiveness============================== */

/*Smaller desktop screen*/

@media only screen and (max-width: 1400px) {
  html,
  body {
    overflow-x: hidden;
  }
  .boxed {
    max-width: 1300px;
  }
  .header-banner .social {
    width: 30%;
    padding: 0 20px;
  }
  .header-banner .header-contact {
    width: 70%;
    padding-right: 20px;
  }
  .logo {
    left: 20px;
    position: relative;
    width: 150px;
    height: 100px;
    box-sizing: border-box;
  }
  .navigationBar {
    padding: 0;
    min-height: 100px;
  }
  .navigationBar .txt-m-light {
    font-size: 17px;
  }
  .fixed-header-spacer {
    height: 148px;
  }
  .navigationBar .boxed {
    grid-template-columns: 150px 1fr;
  }
  .navigation {
    padding: 0 20px;
  }
  .navigation .txt-l-light {
    font-size: 21px;
    font-weight: 400;
    line-height: 1.1em;
  }
  .navigation #searchbutton > i {
    font-size: 20px;
  }
  /*Footer*/
  
  .footer_image_banner_bg img {
    /* object-fit:cover; */
    height: 100%;
    width: 100%;
    transform: unset;
    top: 0;
  }
  .additional_image img {
    max-width: 430px;
  }
  .footer_grid {
    grid-template-columns: 280px 1fr;
    grid-gap: 50px;
  }
  .footer_contact {
    padding: 0 0 0 20px;
  }
  .footer_logos {
    padding: 0 100px;
  }
  .footer_logos .logo {
    left: 0;
    max-width: 250px;
  }
  .footer_navigation_grid {
    padding-right: 50px;
  }
  .footer_navigation_grid ul {
    top: 0;
  }
  .newsletter_text h1 {
    font-size: 3rem;
    margin: 10px 0;
  }
  /*Breadcrumbs*/
  
  .breadcrumbs {
    padding: 15px 20px;
  }
  /*Productinfo*/
  
  .product_information_grid {
    padding: 0 20px;
  }
  /*Productfacts*/
  
  .pr_product_facts {
    padding: 50px 50px 50px 20px;
  }
  .guides {
    padding-left: 20px;
    padding-right: 40px;
  }
  /*Columnizedcontent*/
  
  .columns {
    padding: 0 50px 0 20px;
  }
  /*Product list*/
  
  .product_group_grid {
    padding: 0 20px;
    grid-template-columns: 150px 6fr 4fr;
  }
  /*Imageslider*/
  
  .flexslider .slide_content {
    max-width: 68%;
  }
  /*Product Range*/
  
  .grid_wrapper {
    margin: 0 20px;
    grid-gap: 10px;
    max-width: 100%;
    overflow-x: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  .grid_wrapper::-webkit-scrollbar {
    display: none;
  }
  .grid-of-six {
    grid-template-columns: repeat(6, calc(25% - 40px));
    grid-template-rows: minmax(150px, 1fr);
    padding-right: 50px;
  }
  .grid-of-five {
    grid-template-columns: repeat(6, calc(25% - 40px));
    grid-template-rows: minmax(150px, 1fr);
    padding-right: 50px;
  }
  .grid-of-four {
    grid-template-columns: repeat(5, calc(25% - 40px));
    grid-template-rows: minmax(150px, 1fr);
    padding-right: 50px;
  }
  .grid-of-three {
    padding-right: 50px;
  }
  .grid-of-two {
    padding-right: 50px;
  }
  /*Introtext*/
  
  .intro-text {
    padding: 50px 0 50px 20px;
  }
  .intro-text p {
    padding-right: 50px;
  }
  .intro-text h1 {
    padding-right: 50px;
  }
  .partner_logos {
    max-width: 100%;
    overflow: hidden;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 20px;
  }
  .partner_logos img {
    max-width: 100%;
    max-height: 40px;
    margin: 0 auto;
  }
  /*Videobanner*/
  
  .video_banner {
    grid-template-columns: 1fr 1fr;
  }
  .video_banner .video_content {
    max-width: unset;
    padding-left: 5px;
    padding-right: 5px;
  }
}
/*Large Tablet size*/

@media only screen and (max-width: 992px) {
  .boxed {
    max-width: 100%;
  }
  .paragraph-text-wrapper h1 {
    padding: 5px 0;
  }
  .paragraph-text-wrapper h1 {
    padding: 5px 0;
  }
  .paragraph-text-wrapper h1 {
    padding: 5px 0;
  }
  h1 {
    font-size: 26px;
    font-weight: bold;
  }
  h2 {
    font-size: 20px;
    font-weight: bold;
  }
  h3 {
    font-size: 18px;
    font-weight: bold;
  }
  .txt-xxl {
    font-size: 45px;
    font-weight: bold;
    line-height: 1.1em;
  }
  .txt-xxl-light {
    font-size: 45px;
    font-weight: normal;
    line-height: 1.1em;
  }
  .txt-xl {
    font-size: 26px;
    font-weight: bold;
    line-height: 1.1em;
  }
  .txt-xl-light {
    font-size: 26px;
    font-weight: normal;
    line-height: 1.1em;
  }
  .txt-l {
    font-size: 20px;
    font-weight: bold;
    line-height: 1.1em;
  }
  .txt-l-light {
    font-size: 20px;
    font-weight: normal;
    line-height: 1.1em;
  }
  .txt-m {
    font-size: 18px;
    font-weight: bold;
    line-height: 1.1em;
  }
  .txt-m-light {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.1em;
  }
  .navigation ul li {
    margin: 0 10px;
  }
  .navigation ul li .txt-l-light {
    font-size: 17px;
  }
  .navigation li.is-dropdown {
    margin-right: 6px;
  }
  /*Footer*/
  
  .footer_image_banner_title {
    position: relative;
    text-align: center;
    width: 100%;
    left: -200px;
    bottom: unset;
    top: 60px;
  }
  .footer_grid {
    grid-template-columns: 200px 1fr;
    grid-gap: 50px;
  }
  /*Product Range*/
  
  .grid_wrapper {
    margin: 0 20px;
    grid-gap: 10px;
    max-width: 100%;
    overflow-x: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  .grid_wrapper::-webkit-scrollbar {
    display: none;
  }
  .grid-of-six {
    grid-template-columns: repeat(6, calc(33% - 40px));
    grid-template-rows: minmax(150px, 1fr);
  }
  .grid-of-five {
    grid-template-columns: repeat(5, calc(33% - 40px));
    grid-template-rows: minmax(150px, 1fr);
  }
  .grid-of-four {
    grid-template-columns: repeat(4, calc(33% - 40px));
    grid-template-rows: minmax(150px, 1fr);
  }
  /*Guides*/
  
  .columnized_guide {
    max-width: 100%;
  }
  /*Filter*/
  
  .filterbar label {
    font-size: 0.6rem;
  }
  /*Slider*/
  
  .header_slider {
    min-height: 450px;
  }
  .flexslider .slides img {
    object-fit: cover;
    height: 100%;
  }
  .flex-control-nav {
    bottom: 7px;
  }
}
/*Navigation cuts to iPad and smaller tablet earlier */

@media only screen and (max-width: calc(828px)) {
  /*Navigation*/
  
  .navigationBar {
    padding: 0px 0;
  }
  .navigationBar .txt-m-light {
    font-size: 17px;
  }
  .mobile_nav_button {
    display: block;
    width: 35px;
    height: 40px;
    right: 20px;
    position: absolute;
    z-index: 999;
  }
  .mobile_nav_button span {
    display: block;
    width: 100%;
    height: 5px;
    background: black;
    position: absolute;
    top: 0;
    left: 0;
  }
  .mobile_nav_button span:before {
    content: "";
    display: block;
    width: 100%;
    height: 5px;
    background: black;
    top: 12px;
    position: absolute;
  }
  .mobile_nav_button span:after {
    content: "";
    display: block;
    width: 100%;
    height: 5px;
    background: black;
    top: 25px;
    position: absolute;
  }
  .mnbopen span {
    height: 0;
    transition: all 0s;
    -webkit-transition: all 0s;
    -o-transition: all 0s;
    -moz-transition: all 0s;
  }
  .mnbopen span:before {
    transform: rotate(45deg);
  }
  .mnbopen span:after {
    transform: rotate(-45deg);
    top: 12px;
  }
  .navigation #searchbutton {
    right: 90px;
    width: 32px;
    height: 32px;
    position: absolute;
  }
  .navigation #searchbutton > i {
    font-size: 24px;
  }
  .navigation > ul {
    border-top: 2px solid transparent;
    border-left: 2px solid transparent;
    position: fixed;
    top: 56px;
    width: 100vw;
    left: 0;
    display: block;
    right: 0;
    float: unset;
    padding: 0;
    transform: translateX(100vw);
  }
  .navigation a {
    color: var(--black);
  }
  .navigation ul li {
    display: block;
    width: 100%;
    line-height: 40px;
    position: relative;
    padding-right: 50px;
    left: 30px;
  }
  .navigation li.is-dropdown {
    line-height: 40px;
    height: auto;
  }
  .navigation li.is-dropdown .navarrowspan:after {
    top: 20px;
    margin-left: 8px;
    transform: translateY(-50%) scale(0.6, 0.8) rotate(90deg);
  }
  .navigation li.is-dropdown.mnbsubopen .navarrowspan:after {
    transform: translateY(-50%) scale(0.8, 0.8) rotate(180deg);
  }
  .navigation > ul.opennav {
    top: 56px;
    background: var(--white);
    margin: 0;
    border-left: 2px solid var(--green);
    border-top: 2px solid var(--green);
    transform: translateX(-150px);
    overflow-y: auto;
    width: 400px;
    left: calc(100vw - 400px);
    text-align: left;
    overflow-x: hidden;
  }
  .navigation ul.opennav li {
    line-height: 40px;
    background: var(--white);
    border-left: 0;
    padding-right: 0;
    position: relative;
    left: 0;
  }
  .navigation ul.opennav li > a {
    padding-left: 24px;
  }
  .navigation ul.opennav ul li a {
    color: var(--black);
    background-color: var(--grey);
    background-color: var(--nav-grey-1);
  }
  .navigation ul.opennav ul li a:hover,
  .navigation ul.opennav ul li a:focus {
    background-color: var(--nav-grey-2);
  }
  .navigation ul.opennav ul {
    position: relative;
    width: 100%;
    height: 0%;
    transform: unset;
    left: 0;
  }
  .navigation ul.opennav ul > li > a {
    padding-left: 36px;
  }
  .navigation ul li:hover ul {
    border-top: 0;
    opacity: 0;
    top: 0;
    padding: 0;
    max-height: 0;
  }
  .navigation ul li.mnbsubopen ul {
    height: 100%;
    max-height: unset;
    opacity: 1;
    top: 0;
    padding: 0;
    background-color: var(--grey);
  }
  .navigation ul li:after {
    display: none;
  }
  .navigation ul li.nav_mobile_contact {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: var(--white);
    background-color: var(--green);
    padding: 0;
    margin-left: 0;
    height: 180px;
    text-align: center;
  }
  .navigation ul li.nav_mobile_contact > a {
    color: var(--white);
    line-height: 1.6em;
    display: block;
    padding: 4px;
    margin: 4px;
  }
  .nav li.menu_item {
    margin-left: 0;
  }
}
/*iPad and smaller tablet */

@media only screen and (max-width: 768px) {
  .buttons .button {
    margin: 5px;
    padding: 12px 30px;
  }
  .header-contact a {
    padding-right: 10px;
    padding-left: 10px;
  }
  /*Product Range*/
  
  .grid-of-three {
    grid-template-columns: repeat(3, calc(50% - 40px));
    grid-template-rows: minmax(150px, 1fr);
    margin-right: -60px !important;
    padding-right: 60px !important;
  }
  .intro-text strong {
    max-width: unset;
  }
  /*Filter*/
  
  .filterbar {
    grid-template-columns: repeat(3, 1fr);
  }
  .filterbar label {
    font-size: 0.8rem;
  }
  /*Product list*/
  
  .product_group_buttons a {
    font-size: 0.9rem;
    margin-bottom: 10px;
  }
  .product_grid_wrapper {
    grid-template-columns: repeat(2, 1fr);
    padding: 0 40px 0 10px;
  }
  /*Intro text*/
  
  .intro-text h1 {
    margin-bottom: 0;
  }
  /*Guides*/
  
  .full_width_guide,
  .columnized_guide {
    grid-template-columns: 1fr 1fr;
    max-width: 100%;
    grid-gap: 10px;
  }
  .columnized_guide .col {
    grid-template-columns: 1fr;
  }
  .guide_content {
    padding: 20px 20px 70px 20px;
  }
  /*Footer*/
  
  .subscription_grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .subscription_wrapper {
    padding-top: 50px;
  }
  .newsletter_text h1 {
    font-size: 2rem;
    margin: 10px 0;
  }
  .newsletter_image {
    align-self: center;
  }
  .footer_image_banner_content {
    width: 100%;
    height: 100%;
    bottom: unset;
    top: 0;
    right: unset;
    left: 50%;
    transform: translateX(-50%);
  }
  .footer_image_banner_title {
    position: relative;
    text-align: center;
    width: 100%;
    left: unset;
    bottom: unset;
    top: 60px;
  }
  .additional_image {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -90px;
  }
  .footer_grid {
    grid-template-columns: 1fr;
  }
  .footer_logos {
    align-items: center;
    margin-bottom: 0;
    padding: 0 65px;
  }
  .footer_logos .logo {
    max-width: 200px;
    background-position: center;
  }
  .footer_navigation_grid {
    padding-right: 30px;
  }
  .footer_contact {
    text-align: center;
    padding: 0;
  }
  .footer_contact .top-bottom-gap:first-of-type {
    padding: 0;
  }
  .footer_navbar {
    padding: 0 20px;
  }
  .footer_banner {
    padding-bottom: 20px;
  }
}
/*mobile*/

@media only screen and (max-width: 576px) {
  html,
  body,
  div,
  span,
  applet,
  object,
  iframe,
  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  p,
  blockquote,
  pre,
  a,
  abbr,
  acronym,
  address,
  big,
  cite,
  code,
  del,
  dfn,
  em,
  font,
  img,
  ins,
  kbd,
  q,
  s,
  samp,
  small,
  strike,
  strong,
  sub,
  sup,
  tt,
  var,
  b,
  u,
  i,
  center,
  dl,
  dt,
  dd,
  ol,
  ul,
  li,
  fieldset,
  form,
  label,
  legend,
  table,
  caption,
  tbody,
  tfoot,
  thead,
  tr,
  th,
  td {
    font-size: 15px;
  }
  h1 {
    font-size: 26px;
    font-weight: bold;
  }
  h2 {
    font-size: 18px;
    font-weight: bold;
  }
  h3 {
    font-size: 16px;
    font-weight: bold;
  }
  .txt-xxl {
    font-size: 35px;
    font-weight: bold;
    line-height: 1.1em;
  }
  .txt-xxl-light {
    font-size: 35px;
    font-weight: normal;
    line-height: 1.1em;
  }
  .txt-xl {
    font-size: 20px;
    font-weight: bold;
    line-height: 1.1em;
  }
  .txt-xl-light {
    font-size: 20px;
    font-weight: normal;
    line-height: 1.1em;
  }
  .txt-l {
    font-size: 18px;
    font-weight: bold;
    line-height: 1.1em;
  }
  .txt-l-light {
    font-size: 18px;
    font-weight: normal;
    line-height: 1.1em;
  }
  .txt-m {
    font-size: 16px;
    font-weight: bold;
    line-height: 1.1em;
  }
  .txt-m-light {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.1em;
  }
  .buttons .button {
    margin: 5px;
    padding: 12px 20px;
    font-size: 12px;
  }
  .image_banner .buttons .button {
    margin: 5px;
    padding: 12px 20px;
    font-size: 16px;
  }
  .news_button .button,
  .cta_button .button {
    font-size: 12px;
  }
  .floating_button_title span {
    font-size: 1rem;
  }
  .floating_button_title {
    height: 200px;
    width: 30px;
    left: -30px;
  }
  .floating_button {
    transform: translate(100%, -50%);
    width: 80%;
    grid-template-columns: 0px 1fr;
  }
  .paragraph-padding.paragraph-padding {
    padding: 20px 40px;
  }
  .grid-of-two .paragraph-content {
    padding-right: 30px;
  }
  .intro-text {
    padding-right: 0;
  }
  .intro-text p {
    padding-right: 40px;
  }
  .intro-text h1 {
    padding-right: 40px;
  }
  /*Header*/
  
  .navigation:before {
    font-size: 40px;
  }
  .fixed-header-spacer {
    height: 103px;
  }
  .header-banner {
    height: 10px;
  }
  .navigationBar {
    margin-top: 10px;
  }
  .slider_title {
    font-size: 22px;
  }
  .slider_subtitle {
    font-size: 0.8em;
  }
  .flexslider .slide_content {
    max-width: 90%;
  }
  .buttons {
    text-align: center;
  }
  .button {
    margin-left: 0;
    margin-right: 0;
  }
  .product_group_buttons a {
    min-width: unset;
  }
  /* Navigation */
  
  .navigation ul.opennav {
    transition: left none;
    width: 100vw;
    left: 0;
  }
  /*Product Range*/
  
  .product_categories {
    display: none;
  }
  .grid_wrapper {
    margin: 0 10px;
  }
  .grid-of-six {
    grid-template-columns: repeat(6, calc(90% - 40px));
    grid-template-rows: minmax(150px, 1fr);
  }
  .grid-of-five {
    grid-template-columns: repeat(5, calc(90% - 40px));
    grid-template-rows: minmax(150px, 1fr);
  }
  .grid-of-four {
    grid-template-columns: repeat(4, calc(90% - 40px));
    grid-template-rows: minmax(150px, 1fr);
  }
  .grid-of-three {
    grid-template-columns: repeat(3, calc(100% - 60px));
    grid-template-rows: minmax(150px, 1fr);
  }
  .grid_wrapper.cta_grid_of_two {
    grid-template-columns: repeat(2, calc(100% - 60px));
  }
  .partner_logos {
    grid-template-columns: repeat(2, 1fr);
  }
  /*Filter*/
  
  .filterbar {
    padding: 20px 10px;
    grid-template-columns: 1fr 1fr;
  }
  /*Product list*/
  
  .product_group_grid {
    padding: 0 10px;
    display: grid;
    grid-template-columns: 1fr 4fr;
    margin: 40px 0;
    grid-gap: 20px;
    grid-template-areas: "img sm2" "buttons buttons";
    grid-template-columns: 110px 1.3fr;
  }
  .product_group_grid img {
    grid-area: img;
  }
  .product_groups img.product_image {
    height: 110px;
  }
  .product_group_content {
    grid-area: sm2;
    padding-right: 30px;
  }
  .product_group_buttons {
    grid-area: buttons;
  }
  .product_grid_wrapper {
    grid-template-columns: 1fr;
    padding: 0 10px;
  }
  .product_facts {
    margin: 20px 0;
    padding: 20px 10px 30px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 10px;
  }
  .qld_recommended:before {
    height: 40px;
  }
  .pr_product_facts {
    padding: 20px 40px 20px 10px;
  }
  .product_facts_grid {
    grid-template-columns: 1fr;
  }
  .fact {
    grid-template-columns: 1fr 1fr;
    display: grid;
  }
  /*Image banner*/
  
  .image_banner {
    padding: 20px 2%;
    align-items: center;
    width: 100%;
  }
  .image_banner > .image_height {
    height: 45vh;
  }
  .image_banner img {
    width: 100%;
    object-fit: cover;
  }
  .image_banner .slide_content {
    z-index: 999999;
    margin-top: 30vh;
    margin-bottom: 5vh;
    margin-left: auto;
    margin-right: auto;
  }
  .image_banner.page_banner .slide_content {
    margin-top: 0;
    margin-bottom: 5vh;
  }
  .product_logo {
    max-width: 60%;
    margin: 0 auto 0 20px;
  }
  .category_title {
    margin-bottom: 20px;
    font-size: 2rem;
  }
  /*Breadcrumbs*/
  
  .breadcrumbs {
    padding: 20px 10px;
  }
  .savedproducts,
  .add_product {
    display: inline-block;
    float: none;
    margin-top: 5px;
    position: relative;
    clear: both;
  }
  /*Productinfo*/
  
  .product_information_grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 30px;
    margin-top: 20px;
    padding: 20px 0 20px 10px;
  }
  .remove_product {
    position: absolute;
    top: -20px;
    right: 10px;
  }
  .suitable_for {
    max-width: unset;
  }
  .animal_icons {
    display: flex;
    align-items: center;
    margin-left: 0;
  }
  .animal_icons span {
    max-width: 40px;
    max-height: 50px;
    mask-position: center;
    -webkit-mask-position: center;
  }
  .animal_icons span.sheep {
    margin-top: 14px;
  }
  .animal_icons span.hay {
    max-height: 45px;
  }
  .animal_icons span.beef,
  .animal_icons span.dairy {
    max-height: 60px;
    max-width: 60px;
  }
  .pig_logo {
    max-width: 50%;
    margin: 0 auto;
  }
  .pig_left {
    padding-right: 30px;
  }
  .pig_right {
    padding-right: 30px;
  }
  /*Columnizedcontent*/
  
  .columns {
    grid-template-columns: 1fr;
    padding: 20px 40px 20px 10px;
  }
  /*Guides*/
  
  .guides {
    padding: 20px 10px;
  }
  .full_width_guide,
  .columnized_guide {
    grid-template-columns: 1fr;
    max-width: 100%;
    grid-gap: 10px;
    margin: 0px 0 10px;
  }
  .guide_content {
    padding: 10px 20px 70px 20px;
  }
  .columnized_guide .col {
    grid-template-columns: 1fr;
    grid-gap: 10px;
  }
  /*Intro text*/
  
  .intro-text .intro-text {
    padding: 0;
  }
  /*News/CTA*/
  
  .news_grid .grid_wrapper,
  .cta_grid .grid_wrapper {
    margin: 0;
  }
  /*Videobanner*/
  
  .video_banner,
  .boxed.video_banner {
    grid-template-columns: 1fr;
    grid-gap: 0;
  }
  .video_content_wrapper {
    padding: 0 20px 20px;
  }
  .video_content_wrapper .video_content {
    padding: 0;
  }
  .video_content_wrapper .video_content h2 {
    margin: 0;
  }
  .video_content_wrapper.right-aligned .video_content {
    padding: 0;
  }
  /*Footer*/
  
  .dld-light-grey-bg-sm {
    background-color: var(--light-grey);
  }
  .footer_image_banner {
    height: 400px;
  }
  .footer_image_banner_title {
    font-size: 24px;
    transform: none;
    padding: 20px;
    font-size: 36px;
  }
  .footer_image_banner_bg img {
    transform: scale(4);
    object-position: bottom;
    top: -550px;
  }
  .newsletter_form {
    flex-wrap: nowrap;
    padding: 30px 20px 20px 20px;
  }
  .newsletter_form p,
  .newsletter_form p > strong {
    font-size: 17px;
    text-align: left;
  }
  .newsletter_form input[type="text"],
  .newsletter_form input[type="email"] {
    padding: 10px 10px;
    font-size: 1em;
  }
  .newsletter_form input[type="submit"] {
    padding: 10px 20px;
    font-size: 1rem;
    margin-top: 0;
    margin-right: 0;
  }
  .form_field.right-aligned {
    text-align: center;
  }
  .subscription_terms label,
  .subscription_terms label a {
    font-size: 12px;
    margin-bottom: 20px;
  }
  .footer_navigation_grid {
    padding-right: 0;
    grid-template-columns: 1fr 1fr;
  }
  .footer_navigation_grid ul:nth-of-type(3) {
    display: none;
  }
  .footer_logos {
    padding: 20px;
    flex-wrap: wrap;
  }
  .footer_logos .logo {
    max-width: 200px;
    margin: 0 auto;
  }
  .footer_logos .logo:nth-child(2) {
    height: 50px;
  }
  .mobile_footer_contact {
    text-align: center;
  }
  .mobile_footer_contact a {
    font-size: 14px;
    font-weight: normal;
  }
  .mobile_footer_contact p {
    padding-bottom: 12px;
  }
  .mobile_footer_contact ul {
    list-style: none;
  }
  .mobile_footer_contact ul li a {
    font-weight: normal;
  }
}
/* Support for Get In Touch banner on devices smaller than 380px */

@media only screen and (max-width: calc(379px)) {
  .floating_button {
    width: 85%;
  }
}
/**:focus {
    box-shadow: 0 0 20px red !important;
}*/

