/* COLOR */
:root {
  --blue-zentrum: #243E8C;
  --pink-zentrum: #BA1F31;
  --blue2-zentrum: #06488A;
  --blue3-zentrum: #ADD6FF;
  --white: #FFFFFF;
  --black: #000000;
}

@font-face {
  font-family: "MozillaText";
  font-weight: 700;
  src: url("/assets/fonts/MozillaText-Bold.ttf");
  font-display: swap;
}

@font-face {
  font-family: "MozillaText";
  font-weight: 600;
  src: url("/assets/fonts/MozillaText-SemiBold.ttf");
  font-display: swap;
}

@font-face {
  font-family: "MozillaText";
  font-weight: 400;
  src: url("/assets/fonts/MozillaText-Regular.ttf");
  font-display: swap;
}

body {
  color: var(--blue-zentrum);
  font-family: "MozillaText";
  font-weight: 400;
  font-size: calc(16 / 16 * 1rem);
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
.zentrum-button {
  font-family: "MozillaText";
  font-weight: 700;
}

h1,
.h1 {
  font-size: calc(80 / 16 * 1rem);
}

h2,
.h2 {
  font-size: calc(44 / 16 * 1rem);
}

h3,
.h3 {
  font-size: calc(26 / 16 * 1rem);
}

h4,
.h4 {
  font-size: calc(24 / 16 * 1rem);
}

h5,
.h5 {
  font-size: calc(20 / 16 * 1rem);
}

.zentrum-button,
.zentrum-footer,
.zentrum-header {
  font-size: calc(16 / 16 * 1rem);
  color: var(--white);
}

.zentrum-image {
  width: 100%;
  height: auto;
  display: block;
}

.zentrum-banner {
  aspect-ratio: 1440 / 522;
  height: auto;
  width: 100%;

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  color: var(--white);
  font-weight: 500;
  font-size: calc(24 / 16 * 1rem);

  align-items: center;
  display: flex;

  position: relative;
}



.banner-overlay {
  position: absolute;
  top: 0rem;
  left: 0rem;
  height: 100%;
  width: 100%;

  background: rgba(0, 0, 0, 0.5);
  mix-blend-mode: multiply;

  z-index: 1;
}

.ligum-banner .banner-overlay {
  background: rgba(0, 0, 0, 0.45);
}

.application-section-title,
.brand-subtitle {
  color: var(--blue2-zentrum);
}

.mobile-only {
  display: none !important;
}

@media (max-width: 576px) {
  .desktop-only {
    display: none !important;
  }

  .mobile-only {
    display: block !important;
  }

  h1,
  .h1 {
    font-size: calc(32 / 16 * 1rem);
  }

  h2,
  .h2 {
    font-size: calc(24 / 16 * 1rem);
  }

  h3,
  .h3 {
    font-size: calc(20 / 16 * 1rem);
  }

  h4,
  .h4 {
    font-size: calc(16 / 16 * 1rem);
  }

  h5,
  .h5 {
    font-size: calc(14 / 16 * 1rem);
  }
}

/* Navbar */
.zentrum-nav-anchor {
  position: relative;
  z-index: 10;
}

.zentrum-nav {
  background-color: var(--blue-zentrum);
}

@media (min-width: 992px) {
  .zentrum-nav-wrapper.home-nav {
    position: absolute;
    top: 0rem;
    left: 0rem;
    width: 100%;
  }

  .zentrum-nav.transparent {
    background-color: transparent;
    transition: all .2s ease-in-out;
  }
  
  .zentrum-nav.transparent:hover {
    background-color: var(--blue-zentrum);
  }

  #product-dropdown:hover ~ #brandMenu,
  #brandMenu:hover {
    display: block;
  }
}

.navbar-brand {
  margin: 0rem;
}

.zentrum-logo {
  height: calc(20 / 16 * 1rem);
  width: auto;
}

.brand-logo {
  height: auto;
  width: calc(88 / 16 * 1rem);
}

.header-logo-wrapper,
.language-picker-wrapper {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.language-picker-wrapper {
  height: 100%;
}

.header-logo-wrapper {
  gap: 1rem;
}

#product-dropdown {
  align-items: center;
  display: flex;
  gap: calc(4 / 16 * 1rem);
  justify-content: center;

  cursor: pointer;
  height: calc(104 / 16 * 1rem);
}

.zentrum-nav .nav-link {
  align-items: center;
  display: flex;
  height: 100%;
  justify-content: center;
}

.zentrum-nav .navbar-nav {
  gap: calc(30 / 16 * 1rem);
}

.logo-split {
  height: calc(56 / 16 * 1rem);
  width: 0rem;

  border: 1px solid var(--white);
}

.zentrum-header {
  position: relative;
}

.zentrum-header .nav-link {
  color: var(--white) !important;
}

.zentrum-header .contact-button {
  border: 1px solid var(--white);
  border-radius: calc(30 / 16 * 1rem);
  padding: calc(14.5 / 16 * 1rem) calc(12 / 16 * 1rem);

  align-items: center;
  display: flex;
  gap: calc(10 / 16 * 1rem);
}

.zentrum-header .contact-button .header-icon {
  width: calc(24 / 16 * 1rem);
}

.brand-wrapper {
  margin-bottom: calc(40 / 16 * 1rem);

  align-items: center;
  display: flex;
  flex-direction: column;
}

.brand-logo-wrapper {
  height: calc(130 / 16 * 1rem);
  width: calc(150 / 16 * 1rem);

  align-items: center;
  display: flex;
  justify-content: start;
}

#brandMenu {
  background-color: var(--white);
  color: var(--black);

  top: 100%;
  left: 0%;
  width: 100%;
}

.brand-industries {
  display: flex;
  flex-direction: column;
  gap: calc(6 / 16 * 1rem);
  justify-content: start;
}

.brand-industries a {
  color: var(--black);
  text-decoration: none;
}

.brand-industries div:hover {
  cursor: default;
}

.zentrum-navbar-content {
  background-color: red;
  width: 100%;
  display: flex;
}

@media (min-width: 992px) {  
  .zentrum-header {
    position: relative;
    padding: 0rem;
  }
}

@media (max-width: 576px) {
  .zentrum-nav {
    height: unset;
  }
  
  .zentrum-nav .container {
    padding: 0rem;
  }

  .header-logo-wrapper {
    margin-left: .75rem;
  }

  .navbar-toggler {
    margin-right: .75rem;
  }
  
  .zentrum-nav .navbar-collapse {
    background-color: var(--blue-zentrum);
  }

  .header-logo-wrapper, .language-picker-wrapper {
    gap: calc(8 / 16 * 1rem);
    justify-content: center;
  }

  #product-dropdown {
    height: unset;
  }
}

/* Footer */
.zentrum-footer {
  background-color: var(--blue-zentrum);
  border-top: calc(8 / 16 * 1rem) solid var(--pink-zentrum);
  padding-top: calc(54 / 16 * 1rem);
  padding-bottom: calc(40 / 16 * 1rem);

  font-size: calc(14 / 16 * 1rem);
}

.footer-logo-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.zentrum-footer .zentrum-logo {
  height: calc(34 / 16 * 1rem);
  width: auto;
}

.footer-contact-item {
  display: flex;
  gap: calc(12 / 16 * 1rem);
}

.footer-icon {
  height: auto;
  width: calc(25 / 16 * 1rem);
}

.footer-route-wrapper {
  margin-top: calc(12 / 16 * 1rem);
  border: 1px solid var(--white);
  border-radius: calc(30 / 16 * 1rem);
  padding: calc(4 / 16 * 1rem) calc(12 / 16 * 1rem);
  display: inline-block;
}

.footer-link {
  color: var(--white);
  text-decoration: none;
}

.footer-item-wrapper {
  display: flex;
  flex-direction: column;
  gap: calc(16 / 16 * 1rem);
}

@media (max-width: 576px) {
  .footer-logo-wrapper {
    margin-bottom: calc(24 / 16 * 1rem);
  }
}

/* Home */
.home-banner {
  aspect-ratio: 1440 / 783;
  height: auto;
  width: 100%;

  background-image: url('../images/home/banner.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  position: relative;
}

.home-banner div {
  height: 100%;
  color: var(--white);
}

.banner-content {
  align-items: start;
  display: flex;
  flex-direction: column;
  gap: calc(20 / 16 * 1rem);
  height: 100%;
  justify-content: center;

  position: relative;
  z-index: 2;
}

.banner-text-wrapper {
  position: relative;
  z-index: 2;
}

.vulcan-banner .banner-text-wrapper,
.ligum-banner .banner-text-wrapper {
  padding-right: calc(600 / 16 * 1rem);
  text-align: left;
}

.dsc-banner .banner-text-wrapper {
  padding-left: calc(600 / 16 * 1rem);
  text-align: left;
}

.see-more-btn {
  border: 1px solid var(--white);
  border-radius: calc(30 / 16 * 1rem);
  padding: calc(15 / 16 * 1rem) calc(18 / 16 * 1rem);

  color: var(--white);
  text-decoration: none;
}

.see-more-btn:hover {
  color: var(--white);
  text-decoration: none;
}

.home-brands {
  margin: calc(40 / 16 * 1rem) 0rem;
}

.brand-section-title {
  margin-bottom: 2rem;
  text-align: center;
}

.home-brand-container {
  display: flex;
  gap: calc(24 / 16 * 1rem);
  justify-content: space-between;
}

.home-brand-wrapper {
  height: calc(400 / 16 * 1rem);
  width: calc(305 / 16 * 1rem);

  border-radius: calc(20 / 16 * 1rem);
  overflow: hidden;
  position: relative;

  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;

  transition: all .2s ease-in-out;
}

.home-brand-wrapper-overlay {
  position: absolute;
  left: 0rem;
  bottom: 0rem;
  width: 100%;
  height: calc(186 / 16 * 1rem);
  background: linear-gradient(rgb(from var(--blue-zentrum) r g b / 0) 0%, var(--blue-zentrum) 100%);
  mix-blend-mode: multiply;
}

.home-brand-logo-wrapper {
  position: absolute;
  display: flex;
  width: 100%;
  justify-content: center;
  bottom: 2rem;
}

.home-brand-logo-wrapper.ligum {
  bottom: 0rem;
}

.home-brand-logo-wrapper .brand-logo {
  width: calc(190 / 16 * 1rem);
  height: auto;
}

.home-brand-wrapper:hover {
  width: calc(510 / 16 * 1rem);
}

.home-brand-container:hover .home-brand-wrapper:not(:hover) {
  width: calc(240 / 16 * 1rem);
}

.home-brand-wrapper .content {
  background-color: var(--blue-zentrum);
  border-radius: calc(20 / 16 * 1rem);
  color: var(--white);
  padding: calc(32 / 16 * 1rem) calc(32 / 16 * 1rem);

  height: calc(400 / 16 * 1rem);
  width: calc(510 / 16 * 1rem);
  overflow: hidden;
  position: absolute;
  top: 0rem;
  left: 0rem;

  display: flex;
  flex-direction: column;
  justify-content: space-between;

  opacity: 0;
  transition: all 0.5s ease-in-out;
}

.home-brand-wrapper:hover .content {
  opacity: 1;
}

.home-brand-wrapper .content .brand-logo {
  height: auto;
  width: calc(180 / 16 * 1rem);
}

.home-brand-wrapper .content .brand-logo.ligum {
  height: auto;
  width: calc(120 / 16 * 1rem);
}

.home-brand-wrapper .content .title {
  font-size: calc(20 / 16 * 1rem);
}

.home-brand-wrapper .content .title .brand-name {
  font-weight: 700;
}

.home-brand-wrapper .content .see-more-button {
  border: 1px solid var(--white);
  border-radius: calc(30 / 16 * 1rem);
  color: var(--white);
  display: inline-block;
  font-size: calc(16 / 16 * 1rem);
  padding: calc(12 / 16 * 1rem) calc(16 / 16 * 1rem);
  text-decoration: none;
}

#home .popover-body {
  padding: 0;
}

#home .popover-body img {
  max-height: 150px;
  width: auto;
}
@media (max-width: 576px) {
  #home .popover-body img {
    max-height: 50px;
  }
}

.home-locations > .mobile-only {
  background-color: var(--blue2-zentrum);
}

.locations-section-title {
  text-align: center;
  color: var(--white);
}

@media (max-width: 576px) {
  .locations-section-title > h2 {
    padding: 1rem 0;
  }
}

.home-locations > .mobile-only img {
  width: 100%;
  margin-bottom: 1rem;
}

.home-video {
  margin: calc(80 / 16 * 1rem) 0rem;
}

.home-video .text-wrapper b {
  font-size: calc(24 / 16 * 1rem);
}

.home-video .text-wrapper {
  font-size: calc(20 / 16 * 1rem);
  padding: 0rem 2rem;
  line-height: 1.3;
}

@media (max-width: 576px) {
  .home-brands,
   .home-video {
    margin: calc(16 / 16 * 1rem) 0rem;
  }
  
  .brand-section-title {
    margin-bottom: 1rem;
  }

  .home-video .text-wrapper {
    font-size: calc(16 / 16 * 1rem);
  }

  .home-video .text-wrapper b {
    font-size: calc(18 / 16 * 1rem);
  }

  .zentrum-banner {
    font-size: calc(20 / 16 * 1rem);
  }

  .banner-text-wrapper {
    padding: calc(24 / 16 * 1rem);
  }
}

/* About */
.about-banner {
  background-image: url('../images/about/banner.jpg');
}

.breadcrumb-section {
  margin-top: calc(48 / 16 * 1rem);
  margin-bottom: calc(24 / 16 * 1rem);
}

.breadcrumb-item+.breadcrumb-item::before {
  float: left;
  padding-right: .5rem;
  color: var(--blue2-zentrum);
  content: var(--bs-breadcrumb-divider, "→");
}

.breadcrumb-item.active {
  color: var(--blue2-zentrum);
}

.breadcrumb-item a {
  color: var(--blue2-zentrum);
  text-decoration: none;
}

.about-description {
  position: relative;

  height: auto;
  width: 100%;
}

.fluid-image-wrapper {
  position: relative;
  height: auto;
  width: 100%;
  overflow: hidden;
}

.about-description .fluid-image,
.about-description .fluid-image .zentrum-image,
.about-description .fluid-image .video-wrapper {
  aspect-ratio: 708 / 400;
  height: auto;
  width: calc(708 / 1440 * 100vw);
}

.about-description .fluid-image .video-wrapper {
  position: absolute;
  top: 0rem;
  left: 0rem;
}

.about-description .fluid-image .zentrum-image {
  position: absolute;
  top: 0rem;
  left: 0rem;
}

.about-description .text-wrapper {
  padding: 1rem;
  padding-left: 2rem;

  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-vision-mission {
  margin-bottom: calc(80 / 16 * 1rem);
  margin-top: calc(40 / 16 * 1rem);
}

.vision-mission-wrapper {
  align-items: center;
  display: flex;
  justify-content: space-between;

  padding: 1rem;

  border-bottom: 5px solid var(--pink-zentrum);
}

.vision-mission-title {
  font-size: calc(56 / 16 * 1rem);
  font-weight: 700;
}

.vision-mission-text {
  font-size: calc(20 / 16 * 1rem);
  font-weight: 500;
  line-height: 130%;
  width: 56%;
}

ol.vision-mission-text,
.vision-mission-text ul {
  padding: 1rem;
}

.about-milestones {
  margin-bottom: calc(40 / 16 * 1rem);
}

.milestones-container {
  display: flex;
  justify-content: space-between;

  align-items: start;
  gap: calc(10 / 16 * 1rem);

  margin-bottom: calc(48 / 16 * 1rem);
}

.milestones-title {
  font-size: calc(44 / 16 * 1rem);
  margin-bottom: calc(56 / 16 * 1rem);

  align-items: start;
  display: flex;
  justify-content: center;
}

.milestone-item {
  display: flex;
  flex-direction: column;
  text-align: center;

  width: calc(192 / 16 * 1rem);
}

.milestone-item.active {
  border: 2px solid var(--blue-zentrum);
  border-radius: calc(20 / 16 * 1rem);
}

.milestone-img {
  height: auto;
  width: auto;

  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.milestone-img {
  cursor: pointer;
  transition: all .2s ease-in-out;
}

.milestone-img-wrapper {
  align-items: center;
  display: flex;
  justify-content: center;
  height: calc(70 / 16 * 1rem);
}

.milestone-zentrum {
  width: calc(140 / 16 * 1rem);
}

.milestone-westland {
  width: calc(110 / 16 * 1rem);
}

.milestone-dsc {
  width: calc(110 / 16 * 1rem);
}

.milestone-vulcan {
  width: calc(125 / 16 * 1rem);
}

.milestone-ligum {
  width: calc(96 / 16 * 1rem);
}

.milestone-separator {
  margin-top: calc(32 / 16 * 1rem);
}

.milestone-year {
  font-size: calc(24 /16 * 1rem);
}

.milestone-desc {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: start;
  gap: calc(22 / 16 * 1rem);

  color: var(--blue-zentrum);
  text-align: center;

  height: 0rem;
  max-height: 0px;
  overflow: hidden;

  transition: all .4s ease-in-out;
}

.milestone-desc.active {
  height: calc(200 / 16 * 1rem);
  max-height: 100vw;
}

.milestone-desc .logo {
  width: calc(200 / 16 * 1rem);
  margin-bottom: 1rem;
}

.milestone-desc .year {
  border: 4px solid var(--blue-zentrum);
  border-radius: calc(20 / 16 * 1rem);
  font-size: calc(32 / 16 * 1rem);
  width: calc(244 / 16 * 1rem);

  padding: calc(8 / 16 * 1rem) 0rem;
}

.milestone-desc .text {
  width: calc(482 / 1440 * 100vw);
}

@media (max-width: 576px) {
  .about-description .fluid-image {
    width: 100%;
  }

  .about-description .fluid-image .video-wrapper {
    position: relative;
    height: auto;
    width: 100%;
  }

  .about-description .fluid-image .zentrum-image {
    position: relative;
    width: 100%;
  }

  .vision-mission-wrapper {
    flex-direction: column;
  }

  .milestones-container {
    flex-direction: column;
    gap: calc(24 / 16 * 1rem);
  }

  .milestone-separator {
    margin: 0rem;
    transform: rotate(90deg);
  }
  
  .milestone-desc.active {
    height: calc(300 / 16  * 1rem);
  }

  .vision-mission-text {
    width: 100%;
  }
}

/* Contact Us */

.contact-us-subtitle {
  font-size: calc(26 / 16 * 1rem);
  font-weight: 700;
  line-height: 100%;
  margin-bottom: calc(40 / 16 * 1rem);
}

.info-wrapper {
  background-color: var(--blue-zentrum);
  color: var(--white);
  padding: calc(40 / 16 * 1rem) calc(24 / 16 * 1rem);
}

.form-wrapper label {
  font-size: calc(20 / 16 * 1rem);
  font-weight: 700;
}

.form-wrapper input,
.form-wrapper textarea {
  border: 1px solid var(--blue2-zentrum);
}

.submit-btn {
  background-color: rgba(0, 0, 0, 0);
  border: 1px solid var(--blue2-zentrum);
  border-radius: calc(30 / 16 * 1rem);
  color: var(--blue2-zentrum);
  padding: calc(15 / 16 * 1rem) calc(18 / 16 * 1rem);
  font-size: calc(16 / 16 * 1rem);

  margin-bottom: calc(64 / 16 * 1rem);
}

.info-item a {
  color: var(--white);
  text-decoration: none;
}

.contact-us-map {
  margin-bottom: calc(96 / 16 * 1rem);
}

.map-wrapper {
  position: relative;
}

.map-text {
  position: absolute;
  top: calc(52 / 16 * 1rem);
  left: calc(72 / 16 * 1rem);
  font-size: calc(48 / 16 * 1rem);
  font-weight: 700;
  color: #F5F5F5;
}

.map-overlay {
  position: absolute;
  top: 0rem;
  right: 0rem;
  height: 100%;
  width: 0rem;

  background: linear-gradient(to left, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%); 

  transition: all .3s ease-in-out;

  overflow: hidden;
}

.map-wrapper:hover .map-overlay {
  width: calc(1000 / 1440 * 100vw);
}

.map-overlay-wrapper {
  position: relative;
  height: 100%;
  width: 100%;

  align-items: center;
  display: flex;
}

.map-overlay-text {
  position: absolute;
  right: calc(170 / 16 * 1rem);
  color: var(--white);
  font-size: calc(36 / 16 * 1rem);
  font-weight: 700;

  min-width: calc(300 / 16 * 1rem);
}

@media (max-width: 576px) {
  .form-wrapper {
    margin: calc(24 / 16 * 1rem) 0rem;
  }
}

/* Brands */
.brand-page-title-wrapper {
  align-items: center;
  display: flex;
  gap: calc(12 / 16 * 1rem);
  margin-bottom: calc(40 / 16 * 1rem);
}

.brand-page-description {
  font-size: calc(20 / 16 * 1rem);
  line-height: 130%;
}

.brand-subtitle {
  font-size: calc(24 / 16 * 1rem);
  font-weight: 500;
}

.brand-page-logo {
  height: calc(25 / 16 * 1rem);
  width: auto;
}

.certifications-section {
  background-color: var(--blue-zentrum);
  color: var(--white);
  padding: calc(48 / 16 * 1rem);

  text-align: center;
}

.certification-section-title {
  margin-bottom: calc(40 / 16 * 1rem);
}

.certification-item {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: calc(20 / 16 * 1rem);
}

.certification-title {
  border: 1px solid var(--white);
  border-radius: 1rem;
  font-size: calc(20 / 16 * 1rem);
  font-weight: 700;

  height: calc(50 / 16 * 1rem);
  width: calc(220 / 16 * 1rem);

  display: flex;
}

.certification-title div {
  margin: auto;
}

.applications-section {
  margin-bottom: 1rem;
}

.application-section-title {
  margin: calc(40 / 16 * 1rem) 0rem;
  text-align: center;
}

.application-item {
  height: calc(235 / 16 * 1rem);
  width: 100%;

  margin-bottom: calc(21 / 16 * 1rem);
  padding-bottom: calc(20 / 16 * 1rem);

  align-items: center;
  border-radius: calc(20 / 16 * 1rem);
  display: flex;
  flex-direction: column;
  justify-content: end;
  position: relative;
  overflow: hidden;

  color: var(--white);
  font-size: calc(30 / 16 * 1rem);
  font-weight: 700;
}

.application-overlay {
  position: absolute;
  bottom: 0rem;
  left: 0rem;
  height: calc(160 / 16 * 1rem);
  width: 100%;

  background: linear-gradient(0deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
  overflow: hidden;
  transition: all .2s ease-in-out;
  
  z-index: 1;
  mix-blend-mode: multiply;
}

.application-item:hover .application-overlay {
  height: 100%;
  background: rgb(0 0 0 / 83%);
  border-radius: calc(20 / 16 * 1rem);
}

.application-item .application-title,
.application-item .text {
  text-align: center;
  z-index: 2;
}

.application-item .text {
  height: 0rem;
  max-height: 0rem;
  overflow: hidden;
  transition: all .5s ease-in-out;
  font-size: calc(14 / 16 * 1rem);
  font-weight: 500;

  padding: 0rem 2rem;
}

.application-item:hover .text {
  height: fit-content;
  max-height: calc(100 / 16 * 1rem);
}

/* Vulcan */
.vulcan-banner {
  background-image: url('../images/vulcan/banner.jpg');
}

/* DSC */
.dsc-banner {
  background-image: url('../images/dsc/banner.jpg');
}

/* Ligum */
.ligum-banner {
  background-image: url('../images/ligum/banner.jpg');
}

.ligum .brand-page-logo {
  height: calc(120 / 16 * 1rem);
}

.ligum .brand-page-title-wrapper {
  margin: 0rem;
}

.ligum .application-section-title {
  margin-bottom: 1rem;
}

.ligum .sleeves-feature-title {
  font-size: calc(24 / 16 * 1rem);
  font-weight: 700;
  margin-bottom: 2rem;
  text-align: center;
}

.ligum .sleeves-features {
  align-items: center;
  display: flex;
  flex-direction: column;

  font-size: calc(22 / 16 * 1rem);
  margin-bottom: calc(80 / 16 * 1rem);
}

.sleeve-types-container {
  padding: 0 25%;
}

.sleeve-types-title,
.sleeve-application-title {
  font-size: calc(32 / 16 * 1rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: calc(24 / 16 * 1rem);
}

.sleeve-type-item {
  display: flex;
  flex-direction: column;
  text-align: center;
}

.sleeve-type-item .title {
  font-size: calc(24 / 16 * 1rem);
  font-weight: 700;
  margin: calc(12 / 16 * 1rem) 0rem;
}

.sleeve-type-item .subtitle {
  font-size: calc(16 / 16 * 1rem);
  font-weight: 500;
}

.sleeve-type-items-container {
  display: flex;
  justify-content: space-between;
  margin-bottom: calc(56 / 16 * 1rem);
}

.sleeve-application-items-container {
  display: flex;
  justify-content: space-around;
}

.sleeve-type-item {
  text-align: center;
}

.sleeve-type-item li {
  text-align: left;
}

.sleeve-type-item .image-wrapper {
  height: calc(181 / 16 * 1rem);
  width: auto;
  margin: 0 auto;
}

.sleeve-type-item .image-wrapper .zentrum-image {
  height: 100%;
  width: auto;
}

@media (max-width: 576px) {
  .sleeve-type-items-container, 
   .sleeve-application-items-container {
    flex-direction: column;
  }
}

/* Westland */
.westland-banner {
  background-image: url('../images/westland/banner.jpg');
}

.industry-item {
  aspect-ratio: 308 / 385;
  padding: calc(24 / 16 * 1rem);

  align-items: start;
  display: flex;
  flex-direction: column;
  gap: calc(20 / 16 * 1rem);
  justify-content: end;

  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.industry-title {
  color: var(--white);
  font-size: calc(26 / 16 * 1rem);
  font-weight: 700;
}

.industry-overlay {
  color: var(--white);
  font-size: calc(16 / 16 * 1rem);
  max-height: 0rem;
  height: 0rem;
  overflow: hidden;
  transition: all .5s ease-in-out;
}

.industry-item:hover .industry-overlay {
  max-height: calc(210 / 16 * 1rem);
  height: fit-content;
}

.industry-overlay .see-more-button {
  border: 1px solid var(--white);
  border-radius: calc(30 / 16 * 1rem);
  color: var(--white);
  display: inline-block;  
  font-size: calc(16 / 16 * 1rem);
  text-decoration: none;
  padding: calc(12 / 16 * 1rem) calc(16 / 16 * 1rem);
  margin-top: calc(12 / 16 * 1rem);
}

.westland .brand-page-logo {
  height: calc(64 / 16 * 1rem);
}

.service-item {
  background-color: var(--blue-zentrum);
  border-radius: calc(20 / 16 * 1rem);
  color: rgb(from var(--white) r g b / 0.7);

  padding: calc(20 / 16 * 1rem);

  height: calc(240 / 16 * 1rem);
  display: flex;
  flex-direction: column;
  justify-content: space-between;

  margin-bottom: calc(24 / 16 * 1rem);
}

.service-title {
  align-items: center;
  display: flex;
  font-size: calc(26 / 16 * 1rem);
  font-weight: 700;
  justify-content: space-between;
}

.service-logo {
  height: calc(50 / 16 * 1rem);
  width: auto;
  padding-left: calc(5 / 16 * 1rem);
}

.service-description {
  font-size: calc(18 / 16 * 1rem);
  font-weight: 600;
  line-height: 100%;
  padding-right: calc(55 / 16 * 1rem);
}

.blue-section {
  background-color: var(--blue-zentrum);
  color: var(--white);
}

.lightblue-section {
  background-color: #EEF2FF;
  color: var(--blue-zentrum);
}

.industry-description {
  font-size: calc(24 / 16 * 1rem);
  font-weight: 500;
  line-height: 130%;
  text-align: center;

  padding: 3rem;
}

@media (max-width: 576px) {
  .industry-item {
    margin-bottom: 1rem;
  }

  .industry-description {
    font-size: calc(20 / 16 * 1rem);
  }
}

/* Offset */
.offset-banner {
  background-image: url('../images/westland/industries/offset/banner.jpg');
}

.industries-westland-logo-container {
  height: auto;
  width: calc(376 / 16 * 1rem);

  margin: auto;
}

.industries-logos-container {
  align-items: center;
  display: flex;
  gap: calc(54 / 16 * 1rem);
  justify-content: space-around;
  margin-bottom: calc(48 / 16 * 1rem);
}

.partner-section {
  margin-bottom: calc(40 / 16 * 1rem);
}

.partner-description {
  font-weight: 700;
  line-height: 130%;
  margin-bottom: 1.5rem;
}

.partner-list {
  display: flex;
  line-height: 130%;
  text-align: left;
}

.certifications-container {
  align-items: center;
  display: flex;
  gap: calc(26 / 16 * 1rem);
  justify-content: center;
}

.offset-certification-section .certification-item {
  border: 1px solid var(--white);
  border-radius: 1rem;
  padding: calc(12 / 16 * 1rem);
}

.lototec-description {
  font-size: calc(24 / 16 * 1rem);
  font-weight: 500;
  margin: 5rem 0rem;
}

.lototec-description .text {
  line-height: 1.1;
  padding: 0rem 2rem;
}

.lototec-description .video-wrapper {
  aspect-ratio: 16 / 9;
}

.point-section {
  padding-bottom: calc(44 / 16 * 1rem);
  padding-top: calc(32 / 16 * 1rem);
}

.point-section.roller {
  height: calc(1100 / 16 * 1rem);
}

.roller .point-container {
  height: calc(1000 / 16 * 1rem);
}

.point-container {
  position: relative;
}

.point-item-image {
  position: absolute;
  top: 0rem;
  left: 0rem;
  height: 100%;
}

.point-item-image .zentrum-image {
  height: 100%;
  width: auto;
}

.text-pointer {
  position: absolute;
}

.roller .text-pointer {
  left: calc(100 / 16 * 1rem);
}

.text-pointer ul {
  font-size: calc(20 / 16 * 1rem);
  padding-left: 0rem;
}

.text-pointer .point-title {
  font-size: calc(26 / 16 * 1rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.roller .text-pointer.pointer-1 {
  top: calc(145 / 16 * 1rem);
}

.roller .text-pointer.pointer-2 {
  top: calc(435 / 16 * 1rem);
}

.roller .text-pointer.pointer-3 {
  top: calc(705 / 16 * 1rem);
}

@media (max-width: 576px) {
  .offset-certification-section .certifications-container {
    flex-direction: column;
  }

  .point-section.roller,
  .point-section, .point-container {
    height: auto;
  }

  .point-container.mobile-only {
    position: relative;
    height: auto;
  }

  .point-container.mobile-only .point-item-image {
    position: relative;
    height: auto;
    width: 100%;
    margin-bottom: calc(24 / 16 * 1rem);
  }

  .point-container.mobile-only .point-item-image .zentrum-image {
    position: relative;
    height: auto;
    width: 100%;
  }

  .point-container.mobile-only .point-item-image.point-number {
    position: absolute;
  }

  .roller .text-pointer {
    left: unset;
  }
  
  .text-pointer {
    position: relative !important;
    margin-bottom: 2rem;
  }

  .text-pointer .point-title {  
    font-size: calc(18 / 16 * 1rem);
  }

  .text-pointer .point-item {
    font-size: calc(16 / 16 * 1rem);
    line-height: 1.15;
  }
}

/* Flexible Packaging*/
.flexible-banner {
  background-image: url('../images/westland/industries/flexible/banner.jpg');
}

.flexible-bg {
  background-image: url('../images/westland/industries/flexible/flexible-bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.flexible-bg .light-blue {
  background-color: #EEF2FF;
  mix-blend-mode: multiply;
}

.point-section.rotogravure {
  height: calc(550 / 16 * 1rem);
}

.rotogravure .point-container {
  height: calc(400 / 16 * 1rem);
}

.rotogravure .text-pointer {
  left: 0rem;
}

.rotogravure .text-pointer.pointer-1 {
  top: calc(145 / 16 * 1rem);
}

.rotogravure .text-pointer.pointer-2 {
  top: calc(270 / 16 * 1rem);
}

.point-section.drylamination {
  height: calc(650 / 16 * 1rem);
}

.drylamination .point-container {
  height: calc(500 / 16 * 1rem);
  display: flex;
  justify-content: center;
}

.drylamination .point-container .point-item-image {
  left: auto;
}

.drylamination .text-pointer.pointer-1 {
  top: calc(0 / 16 * 1rem);
  left: calc(1000 / 16 * 1rem);
}

.drylamination .text-pointer.pointer-2 {
  top: calc(110 / 16 * 1rem);
  left: calc(500 / 16 * 1rem);
}

.drylamination .text-pointer.pointer-3 {
  top: calc(195 / 16 * 1rem);
  left: calc(50 / 16 * 1rem);
}

.drylamination .text-pointer.pointer-4 {
  top: calc(295 / 16 * 1rem);
  left: calc(-50 / 16 * 1rem);
  width: calc(300 / 16 * 1rem);
}

.point-section.flexographic {
  height: calc(650 / 16 * 1rem);
}

.flexographic .point-container {
  height: calc(500 / 16 * 1rem);
}

.flexographic .text-pointer {
  left: 0rem;
}

.flexographic .text-pointer.pointer-1 {
  top: calc(385 / 16 * 1rem);
}

@media (max-width: 576px) {
  .point-section.rotogravure,
  .rotogravure .point-container,
  .point-section.drylamination,
  .drylamination .point-container,
  .point-section.flexographic,
  .flexographic .point-container {
    height: auto;
  }
}

/* Metal Coating */
.metal-banner {
  background-image: url('../images/westland/industries/metal/banner.jpg');
}

.key-features-container {
  align-items: center;
  display: flex;
  gap: calc(48 / 16 * 1rem);
  justify-content: center;
}

.key-feature-item {
  border: 1px solid var(--blue-zentrum);
  border-radius: 1rem;
  font-size: calc(20 / 16 * 1rem);
  font-weight: 700;
  line-height: 130%;
  padding: calc(12 / 16 * 1rem) calc(24 / 16 * 1rem);
}

.point-section.metalcoating {
  height: calc(600 / 16 * 1rem);
}

.metalcoating .point-container {
  height: calc(450 / 16 * 1rem);
}

.metalcoating .point-container .point-item-image {
  display: flex;
  justify-content: center;
  
  height: auto;
  width: 100%;
}

.metalcoating .text-pointer {
  left: 0rem;
}

.metalcoating .text-pointer.pointer-1 {
  top: calc(145 / 16 * 1rem);
  left: calc(985 / 16 * 1rem);
}

@media (max-width: 576px) {
  .key-features-container {
    flex-direction: column;
  }
}

/* Plastic Can */
.plastic-banner {
  background-image: url('../images/westland/industries/plastic/banner.jpg');
}

.products-container {
  margin: calc(64 / 16 * 1rem);
}

.products-container .title {
  font-size: calc(36 / 16 * 1rem);
  font-weight: 700;
  line-height: 100%;
  text-align: center;

  margin-bottom: 2rem;
}

.products-container .subtitle {
  font-size: calc(26 / 16 * 1rem);
}

.product-description {
  align-items: center;
  display: flex;
  justify-content: space-between;
  padding: calc(20 / 16 * 1rem) calc(32 / 16 * 1rem);
}

.product-description .name {
  font-size: calc(24 / 16 * 1rem);
  font-weight: 700;
}
