@charset "UTF-8";
/*--------------------------------------------------------------
TABLE OF CONTENTS:
----------------------------------------------------------------
# Generic
    - Normalize
    - Box sizing
    - Imports

# Base
    - Colors
    - Background Color
    - Typography
    - Logo
    - Buttons
    - Elements
    - Grid
    - Links

# Components 
    - Navigation
    - Footer
    - Posts and pages
    - Media
    - FAB
    - Scroll Indicator

# Utilities
    - Accessibility
    - Alignments

# Content
    - General Elements
    - Flexible Elements
    - Front Page
    - Bibliothek
    - FAQ
    - Impressum
    - Datenschutz
    - Projekt Single

--------------------------------------------------------------
*/
/*--------------------------------------------------------------
Generic:
----------------------------------------------------------------

/* START: Normalize */
* {
  padding: 0;
  margin: 0;
  max-width: 100%;
}

html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  overflow-x: hidden;
}

input,
button,
submit {
  border: none;
}

/* END: Normalize */
/* START: Box Sizing 
*,
*::before,
*::after {
  box-sizing: inherit;
}

html {
  box-sizing: border-box;
}

/* END: Box Sizing */
/*--------------------------------------------------------------
Imports:
----------------------------------------------------------------
/* START: Media Queries */
/*

// media aliases and breakpoints
$screen-sm-min: 600px;
$screen-md-min: 960px;
$screen-lg-min: 1280px;
$screen-xl-min: 1920px;

$screen-xs-max: 599px;
$screen-sm-max: 959px;
$screen-md-max: 1279px;
$screen-lg-max: 1919px;
$screen-xl-max: 5000px;

// media devices
*/
/* END: Media Queries */
/*--------------------------------------------------------------
Base:
----------------------------------------------------------------

/* START: Colors */
.darkblue--headline {
  color: #004461;
}

/* END: Colors */
/* START: Background Color */
body {
  background: linear-gradient(180deg, #004461 0, white 200vh);
}

/* END: Background Color */
/* START: Typography */
/* roboto-slab-regular - latin */
@font-face {
  font-family: "DIN Pro Bold";
  font-style: bold;
  font-weight: 700;
  src: local(""), url("../fonts/FFDINWebProBold/font.woff2") format("woff2"), url("../fonts/FFDINWebProBold/font.woff") format("woff");
}
@font-face {
  font-family: "DIN Pro Regular";
  font-style: normal;
  font-weight: 400;
  src: local(""), url("../fonts/FFDINWebProRegular/font.woff2") format("woff2"), url("../fonts/FFDINWebProRegular/font.woff") format("woff");
}
html,
body {
  font-family: "DIN Pro Regular", sans-serif;
  font-size: 16px;
}
@media (min-width: 600px) {
  html,
body {
    font-size: 18px;
  }
}

h1,
h2,
h3,
h4,
h5 {
  font-family: "DIN Pro Bold", sans-serif;
}

h1 {
  font-size: 2.4rem;
  margin-bottom: 0.5em;
}

h2 {
  color: #669fd5;
  font-weight: 400;
  margin-bottom: 30px;
  font-size: 2rem;
}

h3 {
  font-size: 1.3rem;
  color: #004461;
  margin-bottom: 10px;
}

h4 {
  color: #ffffff;
}

@media (min-width: 1200px) {
  p {
    font-size: 1.2rem !important;
  }
}

p,
span {
  font-family: "DIN Pro Regular", sans-serif;
  line-height: 1.5;
  color: #004461;
  font-size: 1rem;
  /*@include for-size(desktop-up) {
    font-size: 1.15rem;
  }*/
}

em {
  font-size: 0.85rem;
  line-height: 20px;
}

h4 a,
p a {
  color: #004360;
  font-family: "DIN Pro Bold", sans-serif;
  /*&:hover {
    text-decoration: underline;
    color: $lightblue;
  }*/
}

.text_darkblue {
  color: #003b54;
}

.white {
  color: #ffffff;
}

.white > p {
  color: #ffffff;
}

ul {
  line-height: 1.5;
  color: #004461;
}
ul li {
  margin-bottom: 0.5em;
}

/* END: Typography */
/* START: Buttons */
button {
  font-family: "DIN Pro Regular", sans-serif;
  color: #ffffff;
  font-size: 1rem;
  background: #76a9d9;
  padding: 0.8em 2.2em 0.8em 2.2em;
  border-radius: 5px;
  cursor: pointer;
  margin-top: 30px;
  transition: opacity 0.2s ease-in-out, transform 0.2s ease-in-out;
}
button:hover {
  background: #669fd5;
  opacity: 1;
  transform: translateY(-2px);
}

button.alt-button {
  background: #ffffff;
  color: #669fd5;
  padding: 0.7em 1.8em 0.7em 1.8em;
}

/* END: Buttons */
/*START: Variables */
/*END: Variables */
/* START: Elements */
/* END: Elements */
/* START: Grid */
.grid-width {
  max-width: 1366px;
  width: 90%;
  margin: 0 auto;
  height: 100%;
}
@media (min-width: 600px) {
  .grid-width {
    width: 80%;
  }
}
@media (min-width: 900px) {
  .grid-width {
    width: 70%;
  }
}
@media (min-width: 1800px) {
  .grid-width {
    width: 60%;
  }
}
@media screen and (max-width: 900px) {
  .grid-width {
    margin-top: 6%;
  }
}

.grid-width-wide {
  max-width: 1920px;
  width: 90%;
  margin: 0 auto;
}
@media (min-width: 900px) {
  .grid-width-wide {
    width: 80%;
  }
}

.grid-width-narrow {
  max-width: 1000px;
  width: 90%;
  margin: 0 auto;
}
@media (min-width: 900px) {
  .grid-width-narrow {
    width: 60%;
  }
}
@media (min-width: 1200px) {
  .grid-width-narrow {
    width: 50%;
  }
}

.row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
}
@media (min-width: 900px) {
  .row {
    flex-direction: row;
  }
}

.center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.default-margin {
  padding-top: 50px;
  padding-bottom: 50px;
}
@media (min-width: 900px) {
  .default-margin {
    padding-top: 60px;
    padding-bottom: 100px;
  }
}

/* END: Grid */
/* START: Links */
a {
  text-decoration: none;
  font-family: "DIN Pro Regular", sans-serif;
}

/* END: Links */
/*--------------------------------------------------------------
Components:
----------------------------------------------------------------

/* START: Navigation */
header.site-header {
  z-index: 99999;
  position: fixed;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  height: 90px;
  display: flex;
  align-items: center;
  transition: background 0.2s ease-in-out, height 0.2s ease-in-out;
}
@media (min-width: 600px) {
  header.site-header {
    height: 120px;
  }
}
header.site-header .grid-width-wide {
  transition: all 0.2s ease-in-out;
  box-shadow: 0 0 1rem 0 rgba(0, 0, 0, 0.2);
  padding: 10px;
  border-radius: 10px;
  background-color: #ffffff;
  position: relative;
  background-color: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(16px) brightness(115%);
}
header.site-header #nav-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header.site-header .logo {
  max-width: 200px;
  width: auto;
  padding: 12px;
  transition: opacity 0.2s ease-in-out, width 0.2s ease-in-out;
}
@media screen and (max-width: 599px){
	header.site-header .logo{
		transform: translateY(6px);
	}
}
header.site-header .logo:hover {
  opacity: 0.6;
}
@media (min-width: 1200px) {
  header.site-header .logo {
    max-width: 250px;
  }
}
@media (min-width: 1800px) {
  header.site-header .logo {
    max-width: 300px;
  }
}
header.site-header nav a {
  font-size: 0.8rem;
  font-family: "DIN Pro Bold", sans-serif;
  color: #004461;
  transition: color 0.2 ease-in-out;
}
@media (min-width: 1200px) {
  header.site-header nav a {
    font-size: 1rem;
  }
}
header.site-header nav a:hover {
  color: #669fd5;
  opacity: 1;
}
header.site-header .current_page_item a {
  color: #669fd5;
}
header.site-header ul {
  display: flex;
  justify-content: space-between;
}
header.site-header ul li {
  list-style: none;
  padding-right: 40px;
}
header.site-header ul li:last-child {
  padding-right: 0;
}
header.site-header .menu-item-has-children::after {
  content: "▼";
  color: #004461;
  font-size: 0.7rem;
}
header.site-header .menu-item-has-children:hover .sub-menu {
  display: block;
}
@media (max-width: 1249px) {
  header.site-header header.site-header .sub-menu {
    width: 70vw;
    display: block;
    position: relative;
    padding: 0em;
    /*box-shadow: 2px 1px 5px #76a9d9;*/
  }
  header.site-header header.site-header ul li > a {
    margin-bottom: 0.1em;
    font-size: 1.3rem;
  }
  header.site-header header.site-header .menu-item-has-children::after {
    content: "";
  }
  header.site-header header.site-header .sub-menu li {
    padding-left: 6vw;
  }
  header.site-header header.site-header .sub-menu li::before {
    content: "▸";
    color: #004461;
    padding: 0 2%;
  }
}
@media (max-width: 599px) {
  header.site-header header.site-header .sub-menu li {
    padding-left: 10vw;
  }
}
header.site-header .sub-menu {
  position: absolute;
  border-radius: 10px;
  background-color: white;
  /*backdrop-filter: blur(16px) brightness(115%);*/
  padding: 1em;
  transform: translateX(-1em);
  display: none;
}
header.site-header .sub-menu:hover {
  display: block;
}
header.site-header .sub-menu li {
  list-style: none;
  padding-right: 0;
}
header.site-header .sub-menu li:last-child {
  padding-right: 0;
}
header.site-header .nav-menu {
  width: 30%;
  display: none;
}
@media screen and (min-width: 1250px) {
  header.site-header .nav-menu {
    display: block;
    margin: 0 auto;
    width: auto;
  }
}
header.site-header .nav-menu li {
  margin-bottom: 0;
}
header.site-header .menu-header-menu-1-container,
header.site-header .menu-header-menu-2-container {
  width: 100%;
}

header.scrolled {
  height: 80px;
}
@media (min-width: 900px) {
  header.scrolled {
    height: 100px;
  }
}
@media (min-width: 1800px) {
  header.scrolled {
    height: 130px;
  }
}

/*
body.single-post header {
  background: $white;
  height: 130px;
}
*/
svg.burger-btn {
  padding: 12px;
  z-index: 9999;
}
@media screen and (max-width: 599px) {
  svg.burger-btn {
    padding: 10px;
    transform: translateY(8px);
  }
}
@media screen and (min-width: 1250px) {
  svg.burger-btn {
    display: none;
  }
}

.burger-btn {
  overflow: visible;
  cursor: pointer;
  fill: #004360;
}
.burger-btn--1, .burger-btn--2, .burger-btn--3 {
  transition: 0.2s;
  transform-origin: center center;
}
.burger-btn.active .burger-btn--1 {
  transform: translate(-7px, 7px) rotate(45deg);
}
.burger-btn.active .burger-btn--2 {
  transform: translateX(20px);
  opacity: 0;
}
.burger-btn.active .burger-btn--3 {
  transform: translate(-7px, -7px) rotate(-45deg);
}

.nav-mobile {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 98vh;
  background-color: #ffffff;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 1250px) {
  .nav-mobile {
    display: none;
  }
}
.nav-mobile ul {
  flex-direction: column;
}
.nav-mobile ul li a {
  font-size: 2rem;
}
@media (max-width: 599px) {
  .nav-mobile ul li a {
    font-size: 1.5rem;
  }
}
.nav-mobile .nav-mobile-content {
  width: 80%;
}

.nav-mobile.open {
  opacity: 1;
  visibility: visible;
}

/* END: Navigation */
/* START: Footer */
footer.site-footer {
  background: #004461;
  margin-top: 100px;
  color: #ffffff;
  display: flex;
  align-items: center;
}
footer.site-footer .grid-width-wide {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding-top: 100px;
  padding-bottom: 100px;
}
footer.site-footer span,
footer.site-footer a {
  color: #ffffff;
}
footer.site-footer a {
  opacity: 0.8;
  transition: opacity 0.2s ease-in-out;
  font-weight: 100;
}
footer.site-footer a:hover {
  opacity: 1;
}
footer.site-footer .menu {
  margin-top: 20px;
}
footer.site-footer li {
  list-style: none;
  margin-bottom: 6px;
  font-size: 0.9rem;
}
footer.site-footer li:last-child {
  margin-bottom: 0;
}
footer.site-footer .col-1 {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 30px;
}
@media (min-width: 900px) {
  footer.site-footer .col-1 {
    width: auto;
    margin-bottom: 0;
  }
}
footer.site-footer .col-1 a {
  opacity: 1;
  margin-bottom: 30px;
}
footer.site-footer .col-1 span {
  font-size: 0.9rem;
}

/* END: Footer */
/* START: Posts and pages */
/* START: Single Page */
section.news-single {
  padding-top: 200px;
}

/* END: Single Page */
/* END: Posts and pages */
/* START: Media */
/* END: Media */
/* START: Scroll Indicator */
.scroll-wrapper {
  position: absolute;
  bottom: 30px;
  left: 10%;
}

.scroll-indicator {
  display: none;
  align-items: center;
  user-select: none;
  transition: opacity 0.2s ease-in-out;
  display: none;
}
@media (min-width: 900px) {
  .scroll-indicator {
    display: flex;
  }
}
@media (min-width: 1800px) {
  .scroll-indicator {
    display: none;
  }
}
.scroll-indicator .arrow {
  background: #004360;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 10px;
}
.scroll-indicator span {
  color: #ffffff;
}

.scroll-indicator.scrolled {
  opacity: 0;
}

/* END: Scroll Indicator */
/* START: Floating Action Button */
.contact-fab {
  width: 60px;
  height: 60px;
  position: fixed;
  background-color: #c1db7d;
  transition: all 0.25s ease-in;
  border-radius: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 90;
  right: 30px;
  bottom: 30px;
  cursor: pointer;
  overflow: hidden;
  /* @include for-size(tablet-landscape-up) {
    right: 40px;
    bottom: 40px;
    width: 180px;
  }*/
}
.contact-fab:hover {
  width: 180px;
}
.contact-fab:hover span.icon-text {
  opacity: 1;
  position: relative;
  transition: all 250ms ease 200ms;
}
.contact-fab span.icon-text {
  color: #ffffff;
  font-family: "DIN Pro Bold", sans-serif;
  margin-right: 10px;
  opacity: 0;
  position: absolute;
  transition: all 100ms ease;
  /*@include for-size(tablet-landscape-up) {
    display: block;
  }*/
}

.contact-form {
  display: none;
  width: 100%;
}
.contact-form input,
.contact-form textarea {
  margin: 5px 0;
  padding: 8px 8px;
  box-sizing: border-box;
  width: 100%;
  border: 0;
  outline: 0;
  resize: none;
  border-radius: 10px;
  font-family: "DIN Pro Regular", sans-serif;
}

.close-form {
  height: 30px;
  width: 30px;
  background-color: #c1db7d;
  position: fixed;
  bottom: 25px;
  right: 25px;
  border-radius: 50%;
  z-index: 10;
  animation: pop 0.3s forwards;
  z-index: 100;
  cursor: pointer;
}
.close-form:before {
  content: "";
  height: 2px;
  width: 16px;
  background-color: white;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotateZ(45deg);
}
.close-form:after {
  content: "";
  height: 2px;
  width: 16px;
  background-color: white;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotateZ(-45deg);
}

.contact-fab.active {
  width: 84%;
  /*height: 60%;*/
  max-width: 340px;
  height: 520px;
  border-bottom-left-radius: 15px;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}

@media (max-width: 599px) {
  .contact-fab.active {
    height: 580px;
    position: fixed;
    z-index: 999999;
  }

  .close-form {
    z-index: 999999999;
  }
}
@media screen and (orientation: landscape) and (min-device-width: 319px) and (max-device-width: 640px) {
  .contact-fab {
    display: none;
  }
}
.visible {
  position: absolute;
  display: block;
  padding: 20px;
  margin-top: 25px;
  animation: enter 0.5s forwards 0.1s;
  transform: translateY(30px);
  opacity: 0;
}

.hidden {
  display: none;
}

@keyframes enter {
  0% {
    transform: translateY(30px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes pop {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  70% {
    transform: scale(1.3);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
/* END: Floating Action Button */
/*--------------------------------------------------------------
Utilities:
----------------------------------------------------------------

/* START: Accessibility */
/* END: Accessibility */
/* START: Alignments */
/* END: Alignments */
/*--------------------------------------------------------------
Content:
----------------------------------------------------------------

/* START: General Elements */
section.hero-section {
  min-height: 100vh;
  width: 100%;
  max-height: 950px;
  position: relative;
  /*z-index: -5;*/
}
section.hero-section .swiper-slide {
  display: flex;
  justify-content: center;
}
section.hero-section .swiper-slide .text-wrapper {
  position: absolute;
  align-self: flex-end;
  max-width: 1366px;
  width: 90%;
  margin: 2.5em auto;
  padding-bottom: 30px;
  padding-top: 5em;
}
@media (min-width: 600px) {
  section.hero-section .swiper-slide .text-wrapper {
    width: 80%;
    align-self: center;
    padding-bottom: 0;
    padding-top: 10em;
  }
}
@media (min-width: 900px) {
  section.hero-section .swiper-slide .text-wrapper {
    width: 70%;
  }
}
@media (min-width: 1800px) {
  section.hero-section .swiper-slide .text-wrapper {
    width: 60%;
    padding-top: 0;
  }
}
section.hero-section .swiper-slide .text-wrapper .text-section {
  max-width: 450px;
  color: #ffffff;
}
section.hero-section .swiper-slide .image-wrapper {
  width: 100%;
  z-index: -1;
  margin-left: auto;
}
@media (min-width: 600px) {
  section.hero-section .swiper-slide .image-wrapper {
    width: 70%;
  }
}
@media (min-width: 1200px) {
  section.hero-section .swiper-slide .image-wrapper {
    width: 60%;
  }
}
section.hero-section .swiper-slide .image-wrapper .image-section {
  clip-path: ellipse(70% 55% at 78% 6%);
  background: white;
  height: 100vh;
  width: 100%;
  display: flex;
  justify-content: flex-end;
  overflow: hidden;
}
@media (min-width: 900px) {
  section.hero-section .swiper-slide .image-wrapper .image-section {
    clip-path: ellipse(70% 80% at 78% 6%);
  }
}
section.hero-section .swiper-slide .image-wrapper .image-section img,
section.hero-section .swiper-slide .image-wrapper .image-section video {
  /*height: 95%;
  object-fit: cover;
  object-position: 85% -90px;*/
  width: 100%;
  height: 100%;
  object-fit: cover;
  /*@include for-size(tablet-portrait-up) {
    object-position: 85% -40px;
  }
  @include for-size(desktop-up) {
    object-position: 95% -60px;
  }*/
}
section.hero-section .hero-orbs, .page-orbs {
  position: absolute;
  width: 1100px;
  right: -45%;
  z-index: -1;
}
@media screen and (max-width: 1200px) {
  section.hero-section .hero-orbs, .page-orbs {
    right: -70%;
  }
}
@media screen and (max-width: 750px) {
  section.hero-section .hero-orbs, .page-orbs {
    right: -80%;
  }
}
@media screen and (max-width: 599px) {
  section.hero-section .hero-orbs, .page-orbs {
    right: -100%;
  }
}

section.page-hero-section {
  min-height: 100vh;
  position: relative;
  z-index: -5;
}
@media screen and (min-width: 1440px) {
  section.page-hero-section {
    min-height: 82vh;
  }
}
section.page-hero-section .grid-width {
  z-index: 90;
  position: relative;
}
section.page-hero-section .image-wrapper {
  width: 100%;
  z-index: -1;
  margin-left: auto;
}
section.page-hero-section .image-wrapper .image-section {
  clip-path: ellipse(100% 95% at 70% 1%);
  background: white;
  height: 60vh;
  width: 100%;
  display: flex;
  justify-content: flex-end;
  overflow: hidden;
}
@media screen and (min-width: 1200px) {
  section.page-hero-section .image-wrapper .image-section {
    clip-path: ellipse(70% 95% at 70% 1%);
  }
}
section.page-hero-section .image-wrapper .image-section img {
  width: 100%;
  object-fit: cover;
}
section.page-hero-section .text-section {
  align-items: flex-start;
  justify-content: space-between;
  flex-direction: column;
  margin-top: 0;
  z-index: 90;
  padding: 4% 0;
}
@media (min-width: 900px) {
  section.page-hero-section .text-section {
    flex-direction: row;
    margin-top: 30px;
  }
}
@media (min-width: 900px) {
  section.page-hero-section .text-section p {
    width: 100%;
    padding: 2.5% 0;
    font-size: 1.1rem;
    font-weight: 500;
  }
}
section.page-hero-section .page-orbs {
  position: absolute;
  width: 1000px;
  right: -50%;
  top: -12%;
  z-index: 1;
}
@media screen and (max-width: 1200px) {
  section.page-hero-section .page-orbs {
    right: -70%;
  }
}
@media screen and (max-width: 750px) {
  section.page-hero-section .page-orbs {
    right: -80%;
  }
}
@media screen and (max-width: 599px) {
  section.page-hero-section .page-orbs {
    right: -100%;
  }
}

section.image-full-section .image-wrapper {
  padding-top: 50px;
  padding-bottom: 50px;
}
section.image-full-section .image-wrapper img {
  width: 100%;
}
section.image-full-section a {
  display: flex;
  justify-content: center;
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}
.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.icon-part {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 180px;
  height: 260px;
  text-align: center;
}
.icon-part .icon {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: #c1db7d;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
}
.icon-part .number {
  color: #004461;
  font-size: 2rem;
  font-family: "DIN Pro Bold", sans-serif;
  margin-bottom: 20px;
}
.icon-part .description h3 {
  color: #004461;
}

section.jobs-adverts article .post-card-content h3 {
  flex: 1;
  width: auto;
}

section.news-teaser {
  position: relative;
}
section.news-teaser article {
  background: #eef9ff;
  border-radius: 10px;
  padding: 1em;
  margin-bottom: 20px;
}
section.news-teaser article .post-card-content {
  display: flex;
}
@media (max-width: 599px) {
  section.news-teaser article .post-card-content {
    flex-flow: column wrap;
  }
}
section.news-teaser article .post-card-content h3 {
  width: 200px;
  flex: 0.5;
}
section.news-teaser article .post-card-content span {
  flex: 1;
}
section.news-teaser .news-orbs {
  width: 700px;
  position: absolute;
  top: -180%;
  right: -25%;
  z-index: -1;
}

section .form {
  max-width: 500px;
  margin: 0 auto;
  background: #aecae5;
  border-radius: 10px;
  padding: 1.5em;
}
section .form input {
  width: 100%;
  border-radius: 5px;
  padding: 10px;
  font-size: 1rem;
}
section .form input::placeholder {
  font-family: "DIN Pro Regular", sans-serif;
  color: #004461;
}
section .form textarea {
  width: 100%;
  border-radius: 5px;
  border: none;
  padding: 10px;
  font-size: 1rem;
}
section .form textarea::placeholder {
  font-family: "DIN Pro Regular", sans-serif;
  color: #004461;
}
section .form input.wpcf7-submit {
  width: 150px;
  background: #ffffff;
  cursor: pointer;
}
section .form p {
  margin-bottom: 15px;
}

/* END: General Elements */
/* START: Flexible Elements */
section.text-image-element .image-section,
section.text-image-element .text-section {
  margin-bottom: 20px;
}
@media (min-width: 900px) {
  section.text-image-element .text-section {
    width: 45%;
    margin-bottom: 0;
  }
  section.text-image-element .image-section {
    width: 48%;
    margin-bottom: 0;
  }
  section.text-image-element .image-section img {
    width: 100%;
    object-fit: cover;
  }
}

section.quote-element span {
  font-size: 2rem;
}

section.full-screen-video-element .video-section {
  width: 100%;
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  margin-bottom: 30px;
}
section.full-screen-video-element .video-section iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

section.teaser-box-element .grid-width {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
section.teaser-box-element .teaser-box-single {
  background: #669fd5;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5em;
  border-radius: 10px;
  min-width: 400px;
  min-height: 250px;
  width: 100%;
  margin-bottom: 30px;
}
@media (min-width: 900px) {
  section.teaser-box-element .teaser-box-single {
    width: 48%;
  }
}
section.teaser-box-element .teaser-box-single .content {
  width: 50%;
}
section.teaser-box-element .teaser-box-single .image {
  overflow: hidden;
  width: 45%;
}
section.teaser-box-element .teaser-box-single .image img {
  height: 160px;
  width: 100%;
  object-fit: cover;
}

.slider-box-flexible {
  padding: 2em;
  background: #aecae5;
  border-radius: 10px;
}

section.slider-1-element h2 {
  color: #004461;
  text-transform: none;
  margin-bottom: 10px;
}
section.slider-1-element span.subheadline {
  color: #ffffff;
  font-weight: 700;
}
section.slider-1-element .icons {
  margin-top: 50px;
}
section.slider-1-element .icon-part .number {
  color: #ffffff;
}
section.slider-1-element .icon-part .icon {
  background: #669fd5;
}

section.slider-2-element .slider-box-flexible {
  overflow: hidden;
  position: relative;
}
section.slider-2-element .headline {
  width: 80%;
  margin: 0 auto;
  text-align: center;
}
section.slider-2-element .headline h3 {
  font-weight: 700;
  color: #ffffff;
  font-size: 2.5rem;
  margin-bottom: 15px;
}
section.slider-2-element .headline span {
  color: #004461;
  font-weight: 700;
  font-size: 1.2rem;
}
section.slider-2-element p {
  width: 80%;
  margin: 0 auto;
  text-align: center;
}
section.slider-2-element .icons {
  max-width: 400px;
  margin: 1em auto;
}
section.slider-2-element .row {
  width: 80%;
  flex-direction: row;
  gap: 1em;
}

.form-section {
  max-width: 500px;
}
.form-section p:first-child {
  margin-bottom: 2em;
}

section.image-grid-element .image-grid-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 2em;
}
@media only screen and (max-width: 1024px) {
  section.image-grid-element .image-grid-container {
    justify-content: center;
  }
}
section.image-grid-element .image-grid-container .image-grid-single {
  width: 100%;
}
@media (min-width: 600px) {
  section.image-grid-element .image-grid-container .image-grid-single {
    width: 30%;
  }
}
section.image-grid-element .image-grid-container .image-grid-single img {
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 10px;
}
section.image-grid-element .image-grid-container .image-grid-single h4 {
  color: #004461;
  text-align: center;
  margin: 0.5em 0 2em 0;
}
section.image-grid-element .text-and-button {
  text-align: center;
  margin-top: 1.5em;
}

.page-id-1025 section.image-grid-element .image-grid-single {
  width: 100%;
}
@media (min-width: 600px) {
  .page-id-1025 section.image-grid-element .image-grid-single {
    width: 30%;
  }
}
.page-id-1025 section.image-grid-element .image-grid-single img {
  aspect-ratio: 1/1;
  border-radius: 0px;
}

section.text-grid-square-element {
  max-width: 1200px;
  margin: 0 auto;
}
section.text-grid-square-element .text-grid-square-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2.8em;
}
section.text-grid-square-element .text-grid-square-container .text-grid-square-single {
  width: 200px;
  aspect-ratio: 1/1;
  border-radius: 10px;
  padding: 1em;
  box-shadow: 0 0 15px 5px rgba(0, 0, 0, 0.15);
}
section.text-grid-square-element .text-grid-square-container .text-grid-square-single p {
  color: #ffffff;
  padding: 0.5em;
}

.content-grid-headline {
  margin-bottom: 4em;
}

div.box-content-grid-width {
  max-width: 1366px;
  width: 90%;
  margin: 0 auto;
  height: 100%;
  padding: 0;
}

.box-content-grid .box-content:nth-child(6n+1) {
  background: #71bc61;
}

.box-content-grid .box-content:nth-child(6n+2) {
  background: #a74c67;
}

.box-content-grid .box-content:nth-child(6n+3) {
  background: #4f9ba5;
}

.box-content-grid .box-content:nth-child(6n+4) {
  background: #a79ecc;
}

.box-content-grid .box-content:nth-child(6n+5) {
  background: #e7c450;
}

.box-content-grid .box-content:nth-child(6n+6) {
  background: #f68f4d;
}

@media (min-width: 2000px) {
  .page-id-382 section.box-content-grid,
.page-id-370 section.box-content-grid,
.page-id-225 section.box-content-grid,
.page-id-298 section.box-content-grid {
    justify-content: flex-start !important;
  }
}
.page-id-382 section.box-content-grid,
.page-id-370 section.box-content-grid,
.page-id-225 section.box-content-grid,
.page-id-298 section.box-content-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2em;
}
@media only screen and (max-width: 900px) {
  .page-id-382 section.box-content-grid,
.page-id-370 section.box-content-grid,
.page-id-225 section.box-content-grid,
.page-id-298 section.box-content-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
.page-id-382 section.box-content-grid .box-content,
.page-id-370 section.box-content-grid .box-content,
.page-id-225 section.box-content-grid .box-content,
.page-id-298 section.box-content-grid .box-content {
  width: 250px;
  height: 250px;
  aspect-ratio: 1/1;
  border-radius: 10px;
  padding: 1.5em;
  box-shadow: 0 0 15px 5px rgba(0, 0, 0, 0.15);
}
.page-id-382 section.box-content-grid .box-content p,
.page-id-370 section.box-content-grid .box-content p,
.page-id-225 section.box-content-grid .box-content p,
.page-id-298 section.box-content-grid .box-content p {
  color: #ffffff;
}
.page-id-382 section.box-content-grid .box-content p > strong,
.page-id-370 section.box-content-grid .box-content p > strong,
.page-id-225 section.box-content-grid .box-content p > strong,
.page-id-298 section.box-content-grid .box-content p > strong {
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  margin-bottom: 8px;
  font-size: 1.1rem;
  font-family: "DIN Pro Bold", sans-serif;
  line-height: 1;
}
.page-id-382 section.box-content-grid .box-content img,
.page-id-370 section.box-content-grid .box-content img,
.page-id-225 section.box-content-grid .box-content img,
.page-id-298 section.box-content-grid .box-content img {
  object-fit: cover;
  align-self: center;
}
.page-id-382 section.box-content-grid .box-content:nth-child(3) > p,
.page-id-370 section.box-content-grid .box-content:nth-child(3) > p,
.page-id-225 section.box-content-grid .box-content:nth-child(3) > p,
.page-id-298 section.box-content-grid .box-content:nth-child(3) > p {
  width: 100%;
  height: 100%;
}
.page-id-382 section.box-content-grid .box-content:nth-child(3),
.page-id-370 section.box-content-grid .box-content:nth-child(3),
.page-id-225 section.box-content-grid .box-content:nth-child(3),
.page-id-298 section.box-content-grid .box-content:nth-child(3) {
  max-height: 300px;
  overflow: hidden;
}
@media only screen and (max-width: 900px) {
  .page-id-382 section.box-content-grid .box-content:nth-child(3),
.page-id-370 section.box-content-grid .box-content:nth-child(3),
.page-id-225 section.box-content-grid .box-content:nth-child(3),
.page-id-298 section.box-content-grid .box-content:nth-child(3) {
    max-height: none;
  }
}
@media only screen and (min-width: 1200px) {
  .page-id-382 section.box-content-grid .box-content:nth-child(3),
.page-id-370 section.box-content-grid .box-content:nth-child(3),
.page-id-225 section.box-content-grid .box-content:nth-child(3),
.page-id-298 section.box-content-grid .box-content:nth-child(3) {
    max-height: none;
  }
}
.page-id-382 section.box-content-grid .box-content:nth-child(3) img,
.page-id-370 section.box-content-grid .box-content:nth-child(3) img,
.page-id-225 section.box-content-grid .box-content:nth-child(3) img,
.page-id-298 section.box-content-grid .box-content:nth-child(3) img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.outro-text {
  text-align: center;
}
.outro-text p {
  padding: 1em 0;
}

.image-grid-element {
  margin-top: 50px;
}
@media only screen and (min-width: 1200px) {
  .image-grid-element {
    margin-top: 100px;
  }
}

.square-nav-container {
  max-width: 800px;
  /*display: flex;
  flex-wrap: wrap;*/
  gap: 40px;
  align-items: center;
  justify-content: center;
  margin-bottom: 2em;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}
@media screen and (min-width: 1024px) {
  .square-nav-container {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
}
.square-nav-container a {
  margin: 0 auto;
}
.square-nav-container .square-nav-box {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 200px;
  aspect-ratio: 1/1;
  background: #669fd5;
  border-radius: 10px;
  text-align: center;
  transition: all 0.2s ease-in-out;
  box-shadow: 0px 0px 15px 5px rgba(0, 0, 0, 0.15);
  padding: 20px;
}
@media screen and (max-width: 1024px) {
  .square-nav-container .square-nav-box {
    padding: 0;
  }
}
@media (max-width: 599px) {
  .square-nav-container .square-nav-box {
    width: 250px;
  }
}
.square-nav-container .square-nav-box:hover {
  transform: translateY(-10px);
  box-shadow: 0px 2px 15px 2px rgba(0, 0, 0, 0.2);
}
.square-nav-container .square-nav-box p {
  color: #ffffff;
  font-family: "DIN Pro Bold", sans-serif;
  font-size: 1.25rem;
}

/*Click to enlarge images*/
img.clickable{
	transition: transform 300ms;
	cursor: pointer;
}
img.clickable:hover{
	transform: scale(0.95);
}
  .modal {
      display: none;
      position: fixed;
      z-index: 999999;
      top: 50%;
	  left: 50%;
	  transform: translate(-50%, -50%);
      width: 100%;
      height: 100%;
      overflow: auto;
      background-color: rgb(0,0,0);
      background-color: rgba(0,0,0,0.75);
    }
.modal.open{
	display:flex !important;
	align-items: center;
}
    .modal-content {
        margin: auto;
        display: block;
        width: 85%;
        max-width: 900px;
    }
    .close {
        position: absolute;
        top: 15px;
        right: 35px;
        color: #f1f1f1;
        font-size: 40px;
        font-weight: bold;
        transition: 0.3s;
    }
    .close:hover,
    .close:focus {
        text-decoration: none;
        cursor: pointer;
    }

/* END: Flexible Elements */
/* START: Front Page */
@media only screen and (max-width: 900px) {
  .front-page section.hero-section .swiper-slide .text-wrapper {
    margin: -5em auto;
  }
}
section.about-section .text-section {
  margin-bottom: 30px;
  color: #ffffff;
}
@media (min-width: 900px) {
  section.about-section .text-section {
    width: 48%;
    margin-bottom: 0;
  }
}
section.about-section .video-section {
  width: 100%;
}
@media (min-width: 900px) {
  section.about-section .video-section {
    width: 50%;
  }
}

section.image-text-section {
  margin-top: 20px;
}
@media (min-width: 900px) {
  section.image-text-section {
    margin-top: 0;
  }
}
section.image-text-section .text-section {
  width: 100%;
  margin-bottom: 30px;
}
@media (min-width: 900px) {
  section.image-text-section .text-section {
    width: 50%;
    margin-bottom: 0;
  }
}
@media (min-width: 900px) {
  section.image-text-section .text-section p {
    width: 90%;
  }
}
@media (min-width: 900px) {
  section.image-text-section .image-section {
    width: 48%;
  }
}
section.image-text-section img {
  width: 100%;
  object-fit: cover;
}

section.video-bullet-section .grid-width {
  position: relative;
}
section.video-bullet-section .grid-width::before {
  content: "";
  position: absolute;
  top: -100px;
  width: 100%;
  height: 2px;
  background: #669fd5;
  opacity: 0.5;
}
section.video-bullet-section .grid-width::after {
  content: "";
  position: absolute;
  bottom: -100px;
  width: 100%;
  height: 2px;
  background: #669fd5;
  opacity: 0.5;
}
section.video-bullet-section .video-section {
  width: 100%;
  margin-bottom: 30px;
}
@media (min-width: 900px) {
  section.video-bullet-section .video-section {
    width: 42%;
    margin-bottom: 0;
  }
}
section.video-bullet-section .bullet-section {
  width: 75%;
}
section.video-bullet-section .bullet-section .bullet-headline {
  display: flex;
  align-items: center;
  position: relative;
  margin-bottom: 20px;
}
section.video-bullet-section .bullet-section .icon {
  width: 40px;
  height: 40px;
  background: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0px 0px 10px 0px #669fd562;
  position: absolute;
  left: -50px;
}
section.video-bullet-section .bullet-section p {
  margin-bottom: 40px;
}
@media (min-width: 900px) {
  section.video-bullet-section .bullet-section {
    max-width: 48%;
  }
}

section.testimonial-section p {
  max-width: 800px;
  width: 70%;
  font-weight: 700;
  margin-top: 50px;
  margin-bottom: 50px;
}
@media (min-width: 900px) {
  section.testimonial-section p {
    width: 80%;
  }
}
section.testimonial-section .image {
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 10px;
  width: 128px;
}
section.testimonial-section .image::before {
  content: "";
  background: #669fd5;
  opacity: 0.5;
  height: 2px;
  width: 100%;
  position: absolute;
  left: 0;
  transform: translateY(64px);
  z-index: -1;
}
section.testimonial-section span {
  color: #669fd5;
}

/* END: Front Page */
/* START: About Page */
.swiper-button-next,
.swiper-button-prev {
  color: #004461;
}

.page-id-6 .slider-box-flexible .swiper-button-next {
  right: 1.5rem;
}

.page-id-6 .slider-box-flexible .swiper-button-prev {
  left: 1.5rem;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 2rem;
}

.page-id-6 .page-hero-section img {
  object-position: top;
}
@media (min-width: 1200px) {
  .page-id-6 .page-hero-section img {
    object-position: 50% 25%;
  }
}

/* END: About Page */
/* START: Career Page */
.page-id-558 .page-hero-section img {
  object-position: bottom;
}

/* END: Career Page */
/* START: Sustainibility Page */
.dropdown--text {
  display: none;
}

.page-id-154 .text-image-element .row {
  align-items: flex-start;
}

.images_row {
  margin-bottom: 2.5%;
  margin-top: 5%;
}
.images_row .rows {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.images_row .rows .image {
  max-width: 90px;
}
.images_row .rows .image img {
  object-fit: contain;
}
@media (max-width: 768px) {
  .images_row .rows .image {
    max-width: 100px;
  }
}

.grid_dropdown_row .content_grid_wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 20px;
}
@media only screen and (max-width: 1200px) {
  .grid_dropdown_row .content_grid_wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 599px) {
  .grid_dropdown_row .content_grid_wrapper {
    grid-template-columns: repeat(1, 1fr);
  }
}
.grid_dropdown_row .content_grid_wrapper .content_grid {
  display: flex;
  flex-flow: column wrap;
  justify-content: flex-start;
}
.grid_dropdown_row .content_grid_wrapper .content_grid div {
  position: relative;
  /*width: 250px;*/
  width: 100%;
  height: 250px;
  display: grid;
  place-items: center;
}
@media only screen and (max-width: 1024px) {
  .grid_dropdown_row .content_grid_wrapper .content_grid div {
    width: 100%;
    height: 280px;
  }
}
.grid_dropdown_row .content_grid_wrapper .content_grid div img {
  max-width: 250px;
  position: relative;
  object-fit: contain;
  transform: scale(0.5);
  display: block;
  margin: 0 auto;
}
.grid_dropdown_row .content_grid_wrapper .content_grid .mmb_readmore-btn {
  /*position: absolute;
  background: $lightblue;
  color: $white;
  bottom: 15px;
  border-radius: 5px;
  padding: 0em 0.5em 0.3em 0.5em;
  transform: scale(1.15);
  cursor: pointer;*/
  display: block;
  margin: 3% auto;
  text-align: center;
  cursor: pointer;
  font-size: 1.5rem;
  background: #76a9d9;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  line-height: 22px;
  color: white;
}
.grid_dropdown_row .content_grid_wrapper .content_grid h3 {
  font-size: 0.9rem;
  max-width: 85%;
  margin: 0 auto;
  text-align: center;
  min-height: 60px;
}
@media only screen and (max-width: 768px) {
  .grid_dropdown_row .content_grid_wrapper .content_grid h3 {
    min-height: 0px;
  }
}
.grid_dropdown_row .content_grid_wrapper .content_grid .mmb_content_text {
  display: none;
  font-size: 0.9rem;
  height: auto;
}

.download-container .download-wrapper {
  box-shadow: 2px 2px 15px #9c9c9c;
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  gap: 25px;
  margin: 4% 0;
  padding: 1% 2.5%;
}
.download-container .download-wrapper img {
  width: 90px;
  height: 90px;
  object-fit: contain;
}
@media (max-width: 599px) {
  .download-container .download-wrapper img {
    flex: 1;
  }
}
.download-container .download-wrapper p {
  flex: 1;
}
.download-container .download-wrapper p:last-of-type {
  margin-left: auto;
  background-color: #004461;
  padding: 6px;
  max-width: 16%;
  text-align: center;
}
@media (max-width: 599px) {
  .download-container .download-wrapper p:last-of-type {
    max-width: 100%;
  }
}
.download-container .download-wrapper p:last-of-type a {
  color: #ffffff;
}

/* END: Sustainibility Page */
/*START AMBASSADORS PAGE*/
.page-id-802 .box-content:nth-child(6n+1) .img-wrapper {
  background: #dce2d5;
}

.page-id-802 .box-content:nth-child(6n+2) .img-wrapper {
  background: #cdcbdb;
}

.page-id-802 .box-content:nth-child(6n+3) .img-wrapper {
  background: #fbe6da;
}

.page-id-802 .box-content:nth-child(6n+4) .img-wrapper {
  background: #eddbd8;
}

.page-id-802 .box-content:nth-child(6n+5) .img-wrapper {
  background: #fae5ee;
}

.page-id-802 .box-content:nth-child(6n+6) .img-wrapper {
  background: #f8eede;
}

.page-id-802 section.box-content-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: flex-start;
}
.page-id-802 section.box-content-grid .box-content {
  border-radius: 10px;
  padding: 1.5em;
}
.page-id-802 section.box-content-grid .box-content .img-wrapper {
  padding: 2%;
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
  gap: 25px;
  box-shadow: 0px 0px 15px 5px rgba(0, 0, 0, 0.15);
}
.page-id-802 section.box-content-grid .box-content .img-wrapper img {
  width: 120px;
  height: 120px;
  border-radius: 0px;
  object-fit: cover;
  border-radius: 50%;
}
.page-id-802 section.box-content-grid .box-content .img-wrapper img:nth-of-type(2) {
  border-radius: 0%;
}
.page-id-802 section.box-content-grid .box-content p {
  line-height: 1em;
}

@media (max-width: 768px) {
  .page-id-802 section.box-content-grid {
    grid-template-columns: 1fr;
  }
}
/*END AMBASSADORS PAGE*/
/* START: Product Page */
.page-id-10 .swiper-button-next,
.page-id-10 .swiper-button-prev {
  color: #004461 !important;
}
.page-id-10 .swiper-button-next::after,
.page-id-10 .swiper-button-prev::after {
  font-size: 2rem;
}

.page-id-10 .swiper-slide {
  padding: 0 2%;
  max-width: 150px;
  height: 125px;
  align-self: center;
}
.page-id-10 .swiper-slide img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}

section.product-grid {
  display: grid;
  grid-template-columns: 200px 200px 200px;
  gap: 50px 50px;
  align-items: center;
  justify-content: center;
  margin-bottom: 2em;
  margin-top: 3.5em;
}
section.product-grid article {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 200px;
  height: 200px;
  background: #669fd5;
  border-radius: 10px;
  text-align: center;
  transition: all 0.2s ease-in-out;
}
section.product-grid article img {
  margin-bottom: 15px;
  width: 100px;
  height: 100px;
}
section.product-grid article:hover {
  transform: translateY(-10px);
  box-shadow: 0px 2px 15px 2px rgba(0, 0, 0, 0.2);
}

.products-introtext p {
  color: #004461;
}

/* END: Product Page */
/* START: Product Single */
.single-products .hero-single-product {
  margin: 5% auto;
  margin-top: 15%;
}
@media (max-width: 900px) {
  .single-products .hero-single-product {
    margin-top: 22%;
  }
}
@media (max-width: 599px) {
  .single-products .hero-single-product {
    margin-top: 28%;
  }
}
@media (min-width: 1800px) {
  .single-products .hero-single-product {
    margin-top: 10%;
  }
}
.single-products .hero-single-product .img-icon {
  max-width: 80px;
  padding: 10px 0 15px 0;
  display: block;
}
@media (max-width: 599px) {
  .single-products .hero-single-product .img-icon {
    margin: 0 auto;
  }
}

.single-products .slider-2-element {
  margin: 12% auto;
  margin-top: 10%;
}
@media (max-width: 599px) {
  .single-products .slider-2-element {
    margin-top: 15%;
  }
}
@media (min-width: 1800px) {
  .single-products .slider-2-element {
    margin: 5% auto;
    margin-top: 5%;
  }
}
.single-products .slider-2-element .sliderlogos {
  background: white;
  box-shadow: 0px 0px 15px 5px rgba(0, 0, 0, 0.15);
  margin: 2% 0;
  padding: 1em;
}

.single-products .swiperlogos-01 .swiper-wrapper {
  align-items: center;
}
.single-products .swiperlogos-01 .swiper-wrapper img {
  max-width: 160px;
  transition: all 200ms ease-in-out;
}
.single-products .swiperlogos-01 .swiper-wrapper img:hover {
  opacity: 0.9;
  transform: translateY(-4px);
}

.swiper-pagination {
  transform: scale(1.25);
}
.swiper-pagination .swiper-pagination-bullet-active {
  background: #004360;
}

.single-product .tags {
  opacity: 0.8;
  margin-bottom: 15px;
  font-size: 1rem;
  line-height: 1.5;
}
.single-product section.hero-section .swiper-slide .image-wrapper {
  z-index: 99;
}

.single-products .swiper-button-prev {
  left: 55%;
}

.single-products .swiper-button-prev,
.single-products .swiper-button-next {
  color: #ffffff;
}

.img-gallery-wrap{
	gap: 2rem;
	margin: 1rem 0;
}
@media screen and (min-width: 900px){
	.img-gallery-wrap{
		display: flex;
		justify-content: flex-start;
		flex-flow: row nowrap;
	}
}
.img-gallery-wrap > img{
	margin: 2% auto;
	display: block;
}
@media screen and (min-width: 900px){
	.img-gallery-wrap > img{
		margin: 2% 0;
	}
}
.img-gallery-wrap > .img{
	max-width: 180px;
}

/* END: Product Single */
/* START: Locator Page */
#chartdiv {
  width: 100%;
  height: 70vh;
}
#chartdiv svg {
  border: 2px solid #004461;
}

section.country-info #info .content {
  margin-top: 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 599px) {
  section.country-info #info .content {
    flex-direction: column;
  }
}
section.country-info #info .content img {
  height: auto;
  width: 35%;
}
@media (max-width: 599px) {
  section.country-info #info .content img {
    width: 70%;
    margin-bottom: 3em;
  }
}
section.country-info #info .content .company-content {
  width: 50%;
}
@media (max-width: 599px) {
  section.country-info #info .content .company-content {
    width: 100%;
  }
}
section.country-info #info .content .company-content h3 {
  margin-bottom: 20px;
}

[title="JavaScript charts"] {
  display: none !important;
}

/* END: Locator Page */


/*Breaking News*/
.breaking-news{
  width: 60px;
  height: 60px;
  position: fixed;
  background-color: orange;
  transition: all 0.25s ease-in;
  border-radius: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 88;
  right: 30px;
  bottom: 120px;
  cursor: pointer;
  overflow: hidden;
}
.breaking-news:hover{
	transform: scale(1.05);
}
.breaking-news-content{
	position: fixed;
	width: 300px;
	height: max-content;
	background: orange;
	z-index: 99;
  	right: 30px;
  	bottom: 30px;
	padding: 15px;
	border-radius: 15px;
	opacity: 1;
	transform: translateY(200%);
	animation: showBreakingNews 1200ms ease-out forwards;
}
.close-bnews{
	right: 0;
	top: 0;
}
.breaking-news-content > h2,p{
	color: white;
	font-size: 1rem !important;
	margin: 0;
}
.breaking-news-content > p{
	margin-top: 15px;
}
.breaking-news-content > img{
	margin-top: 1rem;
}

@keyframes showBreakingNews{
	0%{
		transform: translateY(200%);
	}
	80%{
	transform: translateY(-5%);
	}
	100%{
		transform: translateY(0%);
	}
}
/*# sourceMappingURL=styles.min.css.map */


