@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&display=swap');

* {
  box-sizing: border-box;
}

body,
html {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  font-family: 'Arial', sans-serif !important;
}

.font-title {
  font-family: 'Montserrat', sans-serif !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Montserrat', sans-serif !important;
}

p {
  font-family: 'Arial', sans-serif !important;
}

.margin-bot {
  margin-bottom: 3rem;
}

.company-logo {
  position: fixed;
  top: 3%;
  left: 0;
  right: 0;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 52;
  width: 23vw;

}

.company-logo-side {
  position: fixed;
  top: 1%;
  left: 0;
  z-index: 102;
  width: 10vw;
  height: auto;
  z-index: 152;
}



.scroll-down-icon {
  width: 45px;
  height: 70px;
  border: #fff solid 2px;
  border-radius: 30px;
  display: flex;
  justify-content: center;
  cursor: pointer;
}

.scroll-down-icon span {
  background-color: #fff;
  width: 5px;
  height: 10px;
  border-radius: 30px;
  margin-top: 10px;
  position: relative;
}

.scroll-down-icon span::before {
  position: absolute;
  content: '';
  width: 15px;
  height: 15px;
  border: none;
  border-right: 2px solid #fff;
  border-top: 2px solid #fff;
  transform: translateY(-10px) rotate(135deg);
  left: -6px;
  margin-top: 10px;
  opacity: 0;
  animation: ani 1.8s infinite linear;
}

.scroll-down-icon span::after {
  position: absolute;
  content: '';
  width: 15px;
  height: 15px;
  border: none;
  border-right: 2px solid #fff;
  border-top: 2px solid #fff;
  transform: translateY(-10px) rotate(135deg);
  left: -6px;
  margin-top: 10px;
  opacity: 0;

  animation: ani 1.8s infinite linear;
  animation-delay: 0.8s;
}

@keyframes ani {
  0% {
    margin-top: 10px;
    opacity: 0;
  }

  50% {
    margin-top: 25px;
    opacity: 1;
  }

  100% {
    margin-top: 40px;
    opacity: 0;
  }
}



#home-nav {
  position: fixed;
  right: 30px;
  height: 100%;
  width: 250px;
  background-color: transparent;
  list-style: none;
  padding: 0;
  z-index: 99;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

#home-nav ul {
  list-style: none;
  padding: 0;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
}

#home-nav li {
  align-items: center;
  margin-bottom: 15px;
  font-size: 12px;
}

#home-nav li a {
  text-decoration: none;
  color: #ffffff;
}

#home-nav li a.active {
  font-weight: 800;
}



.menu-icon-container {
  position: fixed;
  left: 3vw;
  top: 50%;
  width: 50px;
  background-color: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  z-index: 130;
}

.menu-icon-container img {
  width: 25px;
  height: auto;
  cursor: pointer;
}

.menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 100;
  justify-content: center;
  align-items: center;
}

.menu-overlay p {
  position: absolute;
  top: 0;
  left: 0;
  margin: 20px;
}

.menu-overlay .menu {
  background: #f4bf96;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.menu-overlay .menu .menu-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
  width: 100%;
}

.menu-overlay .menu .menu-container .menu-column {
  padding: 10px;
}

.menu-overlay .menu a {
  display: block;
  text-decoration: none;
  color: #fff;
  font-size: 102px;
  font-weight: 700;
  margin: -5vh 0px;
  opacity: 0;
}

@media (max-width: 767px) {
  .menu-overlay .menu a {
    margin: 0px;
    font-size: 40px;
  }
}

.menu-overlay .menu .menu-column a:hover {
  color: #fff;
}

.menu-overlay .menu .menu-column:hover a:not(:hover) {
  color: #f3c8a7;
}




.loader {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(0, 0, 0);
  z-index: 9999;
  transition: opacity 0.3s;
  opacity: 0;
  visibility: hidden;
}

.loader.show {
  opacity: 1;
  visibility: visible;
}

.loader p {
  color: white;
  font-size: 24px;
  margin-top: 20px;
}

.loader-inner {
  display: flex;
  flex-direction: row;
}

.loader-line {
  width: 10px;
  height: 50px;
  margin: 5px;
  background: white;
  animation: loading 1s infinite;
}

@keyframes loading {

  0%,
  100% {
    transform: scaleY(1);
  }

  50% {
    transform: scaleY(1.5);
  }
}



.separator {
  margin-top: 50px;
}



.breadcrumbs {
  position: fixed;
  bottom: 1vh;
  left: 5.8vw;
  transform: rotate(-90deg);
  transform-origin: left bottom;
  padding: 5px 10px;
  /* background-color: grey; */
  z-index: 130;
}

.breadcrumbs.hide {
  display: none;
}

.breadcrumbs a {
  text-decoration: none;
  color: rgb(255, 255, 255);
  text-shadow: 0px 0px 5px black !important;
  font-size: 14px;
  font-weight: 700;
  margin: 0;
  cursor: pointer;
}

.breadcrumbs a:hover {
  color: red;
  text-shadow: 0px 0px 5px white !important;
}

.breadcrumbs p {
  color: rgb(255, 255, 255);
  font-size: 16px;
  font-weight: 700;
  margin: 0;
  text-shadow: 0px 0px 5px black !important;
}



#fv-title {
  position: absolute;
  left: -2px;
  bottom: 100px;
  width: 120px;
  z-index: 7;
}

#fv-title p {
  transform: rotate(-90deg);
  color: white;
  font-size: 14px;
  font-weight: 700;
}

#scroll-down-icon {
  cursor: pointer;
}

.fv-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  width: 100%;
  margin: 0 auto;
}

.fv-content .top {
  color: white;
  font-size: 12px;
  margin-top: 8vh;
}

.fv-content .title {
  color: white;
  font-size: 54px;
  margin-top: 3vh;
}

@media (min-width: 768px) and (max-width: 1023px) {
  .fv-content .title {
    font-size: 35px;
  }

  .fv-content .top {
    font-size: 16px;
  }
}

@media (max-width: 767px) {
  .fv-content .title {
    font-size: 26px;
  }

  .fv-content .bot {
    width: 100% !important;
    font-size: 12px !important;
    margin-top: 5vh !important;
  }

  .fv-content .top {
    font-size: 12px !important;
    margin-top: 5vh !important;
  }
}

.fv-content .bot {
  width: 70%;
  margin: 0px auto;
  color: white;
  text-transform: uppercase;
  font-size: 16px;
}

.fv-content #home-down {
  margin-top: 5vh;
}


.fv-content button {
  background-color: #f4f4f4;
  color: #333;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 18px;
  transition: background-color 0.3s, color 0.3s;
}

.fv-content button:hover {
  background-color: #333;
  color: #fff;
}

.fv-content h1 {
  font-weight: 600;
}


#home-bg-vids {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

#home {
  z-index: 5;
  position: relative;
}

#about {
  background-image: url("../images/about-bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 4;
  position: relative;
}

#product {
  background-image: url("../images/product-bg.png");
  background-size: cover;
  z-index: 3;
  position: relative;
}

#innovation {
  background-image: url("../images/innovation-bg.png");
  background-size: 100vw 100vh;
  z-index: 2;
  position: relative;
}

#contact {
  background-image: url("../images/contact-bg.png");
  background-size: 100vw 100vh;
  z-index: 1;
  position: relative;
}


.section {
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#about-navbar {
  display: none;
}

#about-navbar.active {
  display: block;
  position: fixed;
  top: 50%;
  right: 15px;
  transform: translate(-2%, -50%);
  width: 160px;
  background-color: transparent;
  list-style: none;
  padding: 0;
  /* z-index: 10; */
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.section-navigation li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}

.section-navigation li a {
  text-decoration: none;
}

.section-items {
  padding: 5px 8px 5px 8px;
  display: flex;
  align-items: center;
}

.section-items.active {
  background-color: rgba(0, 0, 0, 0.801);
  border-radius: 10px;
}

.section-items.active .label {
  display: block;
  color: white;
}

.section-items.active .dot {
  display: inline-block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #ffffff;
  margin-left: 5px;
}

.section-items .label {
  display: none;
  font-size: 14px;
  font-weight: 500;
  margin-right: 5px;
  color: black;
}

.section-items .dot {
  display: inline-block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #acacac;
  margin-left: 5px;
}


.section-items:not(.active):hover {
  background-color: rgb(217, 218, 218);
  border-radius: 10px;
}

.section-items:not(.active):hover .label {
  display: block;
  color: black;
}

.section-items:not(.active):hover .dot {
  background-color: #acacac;
}


.custom-container {
  width: 80%;
  margin: 0 auto;
}

#intro-section {
  background-image: url("../images/gedung.jpg");
  background-size: 100vw 100vh;
  position: relative;
}

#intro-section .title-container {
  position: absolute;
  top: 48%;
  left: 66%;
  width: 40vw;
  transform: translate(-50%, -50%);
  color: white;
  padding: 10px;
}

#intro-section .title-container .intro-title,
#intro-section .title-container .intro-title2 {
  text-align: center;
}

#intro-section .title-container .intro-title {
  margin-bottom: 20vh;
}

#intro-section #scrollDown {
  position: absolute;
  bottom: 5vh;
  left: 50%;
  transform: translateX(-50%);
}


.back-to-top-btn {
  display: none;
  position: fixed;
  bottom: 40px;
  right: 20px;
  background-color: #5d5d5e;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 24px;
  line-height: 50px;
  text-align: center;
  cursor: pointer;
  transition: background-color 0.3s;
}

.back-to-top-btn:hover {
  background-color: red;
}



.fusion-title {
  text-align: center;
}

.fusion-title .title-sep {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.fusion-title .title-sep h3 {
  font-size: 36px;
  font-weight: 600;
}

.fusion-title .title-sep-line {
  width: 12%;
  height: 4px;
  background: rgb(255, 32, 32);
  margin: 0 10px;
}




.alternate-content {
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.664);
}

.alternate-content .row {
  display: flex;
  flex-direction: row;
  margin: 0;
  padding: 0;
}

.alternate-content .row .image,
.alternate-content .row .text {
  margin: 0;
  padding: 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.alternate-content .row .text .text-container {
  width: 90%;
}

.alternate-content .row .text .text-container h3 {
  margin-bottom: 5vh;
  font-family: 'Montserrat', sans-serif !important;
}

@media (min-width: 1024px) and (max-width: 1100px) {
  .alternate-content .row .text .text-container h3 {
    margin-top: 1vh;
    margin-bottom: 1vh;
  }
}

@media (max-width: 1023px) {
  .alternate-content .row .text .text-container h3 {
    margin-top: 2vh;
    margin-bottom: 2vh;
  }
}

.alternate-content .row .image video {
  max-width: 100%;
  height: auto;
}

.alternate-content .row .image .content-image {
  width: 100%;
  height: 100%;
}

.alternate-content .row p {
  font-weight: 400 !important;
}

.alternate-content .row h3 {
  font-weight: 600 !important;
}

.alternate-content .row .image {
  flex: 1;
  order: 2;
  background-color: #f0e6de;
}

.alternate-content .row .text {
  flex: 1;
  order: 1;
  background-color: #f0e6de;
  display: flex;
  justify-content: center;
}

.alternate-content .row:nth-child(even) .image {
  order: 1;
}

.alternate-content .row:nth-child(even) .text {
  order: 2;
}

@media (max-width: 768px) {
  .alternate-content .row {
    flex-direction: column;
  }

  .alternate-content .row:nth-child(odd) .image {
    order: 1;
  }
}



.non-alternate-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 100%;
  margin-bottom: 50px;
  font-family: 'Montserrat', sans-serif !important;
}

.non-alternate-content .text {
  width: 75%;
  color: #333;
}

.non-alternate-content .image {
  width: 25%;
  text-align: center;
}

.non-alternate-content .image img {
  width: 70%;
}

@media (max-width: 768px) {
  .non-alternate-content {
    flex-direction: column;
  }

  .non-alternate-content .image {
    order: 1;
  }
}



.alternate-content-n {
  display: flex;
  flex-direction: column;
  font-family: 'Montserrat', sans-serif !important;
}

.alternate-content-n .row {
  display: flex;
  flex-direction: row;
  margin: 0;
  padding: 0;
}

.alternate-content-n .row .image,
.alternate-content-n .row .text {
  margin: 0;
  padding: 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.alternate-content-n .row .text .text-container {
  width: 90%;
}

.alternate-content-n .row .image video {
  max-width: 100%;
  height: auto;
}

.alternate-content-n .row .image .content-image {
  height: 100%;
  width: 100%;
}

.alternate-content-n .row p {
  font-weight: 400 !important;
}

.alternate-content-n .row h3 {
  font-weight: 600 !important;
}

.alternate-content-n .row .image {
  flex: 43%;
  order: 2;
}

.alternate-content-n .row .text {
  flex: 57%;
  order: 1;
  display: flex;
  justify-content: center;
}

.alternate-content-n .row:nth-child(even) .image {
  order: 1;
}

.alternate-content-n .row:nth-child(even) .text {
  order: 2;
}

@media (max-width: 768px) {
  .alternate-content-n .row {
    flex-direction: column;
  }

  .alternate-content-n .row:nth-child(odd) .image {
    order: 1;
  }
}


.reverse-alternate-content {
  display: flex;
  flex-direction: column;
  font-family: 'Montserrat', sans-serif !important;
}

.reverse-alternate-content .row {
  display: flex;
  flex-direction: row;
  margin: 0;
  padding: 0;
}

.reverse-alternate-content .row .image,
.reverse-alternate-content .row .text {
  margin: 0;
  padding: 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.reverse-alternate-content .row .text .text-container {
  width: 90%;
}

.reverse-alternate-content .row .image video {
  max-width: 100%;
  height: auto;
}

.reverse-alternate-content .row .image .content-image {
  height: 100%;
  width: 100%;
}

.reverse-alternate-content .row p {
  font-weight: 400 !important;
}

.reverse-alternate-content .row h3 {
  font-weight: 600 !important;
}

.reverse-alternate-content .row .image {
  flex: 43%;
  order: 1;
}

.reverse-alternate-content .row .text {
  flex: 57%;
  order: 2;
  display: flex;
  justify-content: center;
}

.reverse-alternate-content .row:nth-child(even) .image {
  order: 2;
}

.reverse-alternate-content .row:nth-child(even) .text {
  order: 1;
}

@media (max-width: 768px) {
  .reverse-alternate-content .row {
    flex-direction: column;
  }

  .reverse-alternate-content .row:nth-child(even) .image {
    order: 1;
  }
}




.desc_title {
  font-size: 48px;
  font-weight: bold;
  color: #333;
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
  border-left: 5px solid red;
}

#popUp-row {
  background-image: url("../images/popup-bg.jpg");
  background-size: 80vw 60vh;
  height: 60vh;
  position: relative;
}


.popUp-video-container {
  z-index: 15;
}

.popUp-video-container .video-link {
  width: 100px;
  transition: all 0.5s;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.popUp-video-container .video-link span {
  color: white;
}

.popUp-video-container .play-button {
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  width: 50px;
  height: 50px;
}

.popUp-video-container .play-button img {
  width: 50px;
  height: 50px;
}

.popUp-video-container .vid-overlay {
  position: fixed;
  top: 0px;
  left: 0px;
  height: 100%;
  width: 100%;
  z-index: 100;
  background-color: rgba(0, 0, 0, 0.9);
  opacity: 0.9;
  display: none;
}

.popUp-video-container .close {
  position: fixed;
  top: 30px;
  right: 30px;
  width: 24px;
  height: 24px;
  z-index: 9999;
  display: none;
  cursor: pointer;
}

.popUp-video-container .main-vid-box {
  position: fixed;
  width: 100%;
  height: 100vh;
  display: none;
  top: 0px;
  left: 0px;
  z-index: 999;
}

.popUp-video-container .videoWrapper {
  position: relative;
  z-index: 999;
  background-color: #000;
  width: 100%;
  height: 100%;
  margin: 0 auto;
}

.popUp-video-container .videoWrapper video {
  position: relative;
  top: 0;
  left: 0;
  z-index: 999;
  width: 100% !important;
  height: 100% !important;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  border-width: 40px;
  border-style: solid;
  border-color: transparent;
}



.gallery-container {
  width: 80%;
  height: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

.marquee-wrapper {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  margin: 0;
}

.bg-marquee-left {
  flex-grow: 1;
  width: 100%;
  background-image: url("../images/marquee-left.png");
  background-repeat: repeat-x;
  background-size: 3840px 100vh;
  animation: marquee-left 15s infinite linear;
  margin-bottom: 15px;

}

.bg-marquee-right {
  flex-grow: 1;
  margin-top: 15px;
  width: 100%;
  background-image: url("../images/marquee-right.png");
  background-repeat: repeat-x;
  background-size: 3840px 100vh;
  animation: marquee-right 15s infinite linear;
}

@keyframes marquee-left {
  0% {
    background-position: 0;
  }

  100% {
    background-position: -3840px;
  }
}

@keyframes marquee-right {
  0% {
    background-position: 0;
  }

  100% {
    background-position: 3840px;
  }
}



#vision {
  background-size: 100vw 100vh;
  height: 100vh;
}

.vision-container {
  width: 80%;
  height: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

.vision-wrapper {
  background-image: url("../images/vm-bg.png");
  background-size: 100% 100%;
  flex-grow: 1;
}




.core-container {
  display: flex;
  margin: 0 auto;
  flex-grow: 1;
  width: 80% !important;
}

.core-container .svg-desc {
  box-sizing: border-box;
}

.core-container .svg-container {
  background-color: rgb(255, 255, 255);
  flex: 60%;
}

.core-container .svg-desc {
  /* background-image: url("../images/core-1.png"); */
  /* background-size: 100% 100%; */
  flex: 40%;
}

.core-container .svg-desc img {
  width: 90%;
  height: auto;
}

.core-container .core-svg {
  position: relative;
}


.core-link {
  transition: transform 0.8s ease;
  cursor: pointer !important;
}

.core-link-1.clicked {
  transform: translate(-20px, -60px);
}

.core-link-2.clicked {
  transform: translate(25px, -60px);
}

.core-link-3.clicked {
  transform: translate(60px, -20px);
}

.core-link-4.clicked {
  transform: translate(60px, 20px);
}

.core-link-5.clicked {
  transform: translate(25px, 60px);
}

.core-link-6.clicked {
  transform: translate(-20px, 60px);
}

.core-link-7.clicked {
  transform: translate(-60px, 20px);
}

.core-link-8.clicked {
  transform: translate(-60px, -20px);
}





.certif-container {
  flex-grow: 1;
  display: flex;
  margin: 0 auto;
  width: 80%;
}

.certif-container .desc {
  background: black;
  flex: 1;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}

.certif-container .desc p {
  width: 85%;
  color: white;
}

.certif-container .desc h3 {
  margin-bottom: 10%;
  color: white;
  font-size: 42px;
}

.certif-container .logo {
  background: #f8e6e6;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.certif-container .logo-img {
  flex: 90%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.certif-container .logo-nav {
  flex: 10%;
  background-color: #f8e6e6;
  display: flex;
  justify-content: center;
  align-items: center;
}

.certif-container .logo img {
  width: 50%;
  height: auto;
}

.certif-container .arrow {
  cursor: pointer;
  font-size: 36px;
  margin: 0px 30px;
}

.certif-container .dot-nav ul {
  list-style: none;
  padding: 0;
  display: flex;
  align-items: center;
}

.certif-container #dot-list {
  margin-top: 20px;
}

.certif-container .dot-nav li {
  width: 15px;
  height: 15px;
  background-color: #868686;
  border-radius: 50%;
  margin: 0 10px;
  cursor: pointer;
}

.certif-container .dot-nav li.active {
  background-color: #ff0000;
}




#customer {
  width: 80%;
  margin: 0 auto;
  height: 100vh;
  display: flex;
  flex-direction: column;
}

.customer-container {
  display: flex;
  flex-grow: 1;
  flex-direction: column;
}

.customer-container .question-container {
  background-color: white;
  color: black;
  border-radius: 20px;
  box-shadow: 0 5px 10px 0 rgb(0, 0, 0, 0.25);
  margin: 10px 0;
}

.customer-container .question {
  font-size: 1.2rem;
  font-weight: 600;
  padding: 20px 80px 20px 20px;
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer;
}

.customer-container .question::after {
  content: "\002B";
  font-size: 2.2rem;
  position: absolute;
  right: 20px;
  transition: 0.2s;
}

.customer-container .question.active::after {
  transform: rotate(45deg);
}

.customer-container .answercont {
  max-height: 0;
  overflow: hidden;
  transition: 0.3s;
}

.customer-container .answer {
  padding: 0 20px 20px;
  line-height: 1.5rem;
}



.product-slider-wrapper {
  width: 100vw;
  height: 100vh;
}

.product-slider-wrapper .product-slider {
  width: 100vw;
  height: 98.9%;
  background-color: #c2c2c2;
  position: relative;
  display: inline-block;
  overflow: hidden;
}


.product-slider-wrapper .product-slider .slides {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  text-align: right;
  white-space: nowrap;
  z-index: 1;
}

.product-slider-wrapper .product-slider .slides .slide {
  display: inline-block;
  height: 100%;
  will-change: width;
  background: transparent;
  -webkit-transition: width 0.5s ease-out;
  transition: width 0.5s ease-out;
}

.product-slider-wrapper .product-slider .slides .slide .tilt {
  position: relative;
  -webkit-transform: skew(-20deg);
  -moz-transform: skew(-20deg);
  -ms-transform: skew(-20deg);
  transform: skew(-20deg);
  transform-origin: bottom left;
  height: 100%;
  width: 102%;
  overflow: hidden;
}

.product-slider-wrapper .product-slider .slides .slide .tilt .tilt-fix {
  -webkit-transform: skew(20deg);
  -moz-transform: skew(20deg);
  -ms-transform: skew(20deg);
  transform: skew(20deg);
  height: 100%;
  width: 236%;
  transform-origin: bottom left;
  -webkit-background-position: center center;
  background-position: center center;
  -webkit-background-size: cover;
  background-size: cover;
  background-color: black;
  position: relative;
}

.product-slider-wrapper .product-slider .slides .slide .tilt .tilt-fix img {
  max-width: unset;
  width: auto;
  height: 100%;
  position: absolute;
  left: 25% !important;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

.product-slider-wrapper .product-slider .slides .slide .tilt:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.75);
  opacity: 1;
  -webkit-transition: opacity 0.5s ease-out;
  transition: opacity 0.5s ease-out;
}

.product-slider-wrapper .product-slider .slides .slide.active .tilt:after {
  opacity: 0;
}

.product-slider-wrapper .product-slider .slides .slide.hidden {
  width: 0px;
}

@media (min-width: 1025px) and (max-width: 1365.98px) {
  .product-slider-wrapper .product-slider .slides .slide {
    width: 26vw;
  }

  .product-slider-wrapper .product-slider .slides .slide.active {
    width: 64vw;
  }
}

@media (min-width: 1366px) and (max-width: 1920.98px) {
  .product-slider-wrapper .product-slider .slides .slide {
    width: 26vw;
  }

  .product-slider-wrapper .product-slider .slides .slide.active {
    width: 68vw;
  }
}



.product-slider-wrapper .product-slider .desc {
  background-color: transparent;
  position: absolute;
  height: 100%;
  width: 100%;
  color: #ffffff;
  top: 0;
  left: 0;
  z-index: 10;
}

.product-slider-wrapper .product-slider .desc .controls {
  -webkit-flex: 0 0 29%;
  -ms-flex: 0 0 29%;
  flex: 0 0 29%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  -webkit-align-items: flex-start;
  -webkit-box-align: flex-start;
  -ms-flex-align: flex-start;
  align-items: flex-start;
}

.product-slider-wrapper .product-slider .desc .controls .control-title {
  font-size: 1.7rem;
  font-weight: 700;
  font-style: normal;
  font-stretch: normal;
  line-height: 1.32;
  letter-spacing: 0.136rem;
}

.product-slider-wrapper .product-slider .desc .controls .ctrl-buttonset button svg {
  width: 4rem;
  height: 4rem;
}

.product-slider-wrapper .product-slider .desc .controls .product-control {
  font-size: 1rem;
  border: 0;
  background: none;
  box-shadow: none;
  color: #202020;
}

.product-slider-wrapper .product-slider .desc .controls .product-control svg .hexagon.on-dark {
  fill: transparent;
  stroke: #ffffff;
}

.product-slider-wrapper .product-slider .desc .controls .product-control svg .icon.on-dark {
  fill: transparent;
  stroke: #ffffff;
}

.product-slider-wrapper .product-slider .desc .controls .product-control svg .icon {
  -webkit-transition: stroke 0.3s ease-out, fill 0.3s ease-out;
  transition: stroke 0.3s ease-out, fill 0.3s ease-out;
}

.product-slider-wrapper .product-slider .desc .controls .product-control:hover svg .hexagon.on-dark {
  fill: #ffffff;
}

.product-slider-wrapper .product-slider .desc .controls .product-control:hover svg .icon.on-dark {
  stroke: #181818;
}

.product-slider-wrapper .product-slider .desc .info {
  -webkit-flex: 0 0 50%;
  -ms-flex: 0 0 50%;
  flex: 0 0 42%;
  text-align: left;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  -webkit-align-items: flex-start;
  -webkit-box-align: flex-start;
  -ms-flex-align: flex-start;
  align-items: flex-start;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.product-slider-wrapper .product-slider .desc .info .info-text h2 {
  text-transform: uppercase;
  font-size: 3.5rem;
  font-weight: bold;
  line-height: 0.9;
  letter-spacing: -3.5px;
}

.product-slider-wrapper .product-slider .desc .info .info-text h3 {
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0.64px;
  margin-top: 15px;
}

.product-slider-wrapper .product-slider .desc .info .info-controls {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 20px;
}

.product-slider-wrapper .product-slider .desc .info .info-controls .button-wrapper {
  text-align: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.product-slider-wrapper .product-slider .desc .info .info-controls .button-wrapper.explore-products {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.product-slider-wrapper .product-slider .desc .info .info-controls .button-wrapper svg {
  width: 3rem;
  height: 3rem;
  margin-right: 0.5rem;
}

.product-slider-wrapper .product-slider .desc .info .info-controls .button-wrapper span {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.44;
  letter-spacing: 0.32px;
  color: #ffffff;
}

.product-slider-wrapper .product-slider .desc .info .info-controls svg {
  overflow: hidden;
  vertical-align: middle;
}

.product-slider-wrapper .product-slider .desc .info .info-controls .icon-button {
  font-size: 1rem;
  border: 0;
  background: none;
  box-shadow: none;
  color: #202020;
}

.product-slider-wrapper .product-slider .desc .info .info-controls .icon-button svg .hexagon.on-dark {
  fill: transparent;
  stroke: #ffffff;
}

.product-slider-wrapper .product-slider .desc .info .info-controls .icon-button svg .hexagon {
  -webkit-transition: fill 0.3s ease-out;
  transition: fill 0.3s ease-out;
  position: relative;
  width: 100%;
  height: 100%;
}

.product-slider-wrapper .product-slider .desc .info .info-controls .icon-button svg .icon.on-dark {
  fill: transparent;
  stroke: #ffffff;
}

.product-slider-wrapper .product-slider .desc .info .info-controls .icon-button svg .icon {
  -webkit-transition: stroke 0.3s ease-out, fill 0.3s ease-out;
  transition: stroke 0.3s ease-out, fill 0.3s ease-out;
}

.product-slider-wrapper .product-slider .desc .info .info-controls .icon-button:hover svg .hexagon.on-dark {
  fill: #ffffff;
}

.product-slider-wrapper .product-slider .desc .info .info-controls .icon-button:hover svg .icon.on-dark {
  stroke: #181818;
}

.product-slider-wrapper .product-slider .desc .inner-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.product-slider-wrapper .product-slider .desc .offset-1 {
  margin-left: 8.33333333%;
}

.product-slider-wrapper .product-slider .desc .col-5 {
  flex: 0 0 41.66666667%;
  max-width: 41.66666667%;
}


.product-swiper {
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
}

.product-swiper .title {
  margin-left: 12%;
}

.product-swiper .swipe-container {
  flex-grow: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.product-swiper .swipe-container .swiper-slides {
  flex: 50%;
  background-image: linear-gradient(to top, #fff, #c5c5c5, #fff);
}

.product-swiper .swipe-container .swiper-slides .swiper-slide {
  overflow: hidden;
}

.product-swiper .swipe-container .swiper-title {
  margin-left: 12%;
  flex: 30%;
  display: flex;
  align-items: center;
}

.product-swiper .swipe-container .swiper-title .info {
  -webkit-flex: 0 0 50%;
  -ms-flex: 0 0 50%;
  flex: 1;
  text-align: left;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  -webkit-align-items: flex-start;
  -webkit-box-align: flex-start;
  -ms-flex-align: flex-start;
  align-items: flex-start;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.product-swiper .swipe-container .swiper-title .info .info-text h2 {
  text-transform: uppercase;
  font-size: 2.5rem;
  font-weight: bold;
  line-height: 0.9;
  letter-spacing: -3.5px;
}

.product-swiper .swipe-container .swiper-title .info .info-text h3 {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0.64px;
  margin-top: 15px;
}

.product-swiper .swipe-container .swiper-title .info .info-controls a {
  text-decoration: none;
}

.product-swiper .swipe-container .swiper-title .info .info-controls {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.product-swiper .swipe-container .swiper-title .info .info-controls .button-wrapper {
  text-align: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.product-swiper .swipe-container .swiper-title .info .info-controls .button-wrapper.explore-products {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.product-swiper .swipe-container .swiper-title .info .info-controls .button-wrapper svg {
  width: 3rem;
  height: 3rem;
  margin-right: 0.5rem;
}

.product-swiper .swipe-container .swiper-title .info .info-controls .button-wrapper span {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.44;
  letter-spacing: 0.32px;
  color: #000000;
}

.product-swiper .swipe-container .swiper-title .info .info-controls svg {
  overflow: hidden;
  vertical-align: middle;
}

.product-swiper .swipe-container .swiper-title .info .info-controls .icon-button {
  font-size: 1rem;
  border: 0;
  background: none;
  box-shadow: none;
  color: #202020;
}

.product-swiper .swipe-container .swiper-title .info .info-controls .icon-button svg .hexagon.on-dark {
  fill: transparent;
  stroke: #000000;
}

.product-swiper .swipe-container .swiper-title .info .info-controls .icon-button svg .hexagon {
  -webkit-transition: fill 0.3s ease-out;
  transition: fill 0.3s ease-out;
  position: relative;
  width: 100%;
  height: 100%;
}

.product-swiper .swipe-container .swiper-title .info .info-controls .icon-button svg .icon.on-dark {
  fill: transparent;
  stroke: #000000;
}

.product-swiper .swipe-container .swiper-title .info .info-controls .icon-button svg .icon {
  -webkit-transition: stroke 0.3s ease-out, fill 0.3s ease-out;
  transition: stroke 0.3s ease-out, fill 0.3s ease-out;
}

.product-swiper .swipe-container .swiper-title .info .info-controls .icon-button:hover svg .hexagon.on-dark {
  fill: #ffffff;
}

.product-swiper .swipe-container .swiper-title .info .info-controls .icon-button:hover svg .icon.on-dark {
  stroke: #181818;
}


.promptBox {
  height: 100px;
  width: 100px;
  transform: translate(-50%, -50%);
  position: absolute;
  top: 70%;
  left: 55%;
  opacity: 1;
  transition: 300ms;
  pointer-events: none;
  z-index: 21;
}

.tapperoo {
  height: 48px;
  width: 100px;
  position: absolute;
  top: -5px;
  left: 50px;
  border-radius: 100px;
  background-color: #f85959;
  z-index: -1;
  animation: tapperoo 3s infinite;
}

@keyframes tapperoo {
  0% {
    height: 25%;
    width: 25%;
  }

  50% {
    height: 5%;
    width: 35%;
    opacity: 0;
    transform: translate(-250%);
  }

  100% {
    opacity: 0;
  }
}

#tap-gesture {
  position: absolute;
  transform: rotate(30deg);
  animation: handMove 3s infinite;
}

@keyframes handMove {
  0% {
    transform: rotate(30deg);
  }

  50% {
    transform: translate(-60%, -10%) rotate(-30deg) scale(0.9);
  }

  100% {
    transform: rotate(30deg);
  }
}



.full-width-section {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 0;
  height: 100vh;
  max-height: 720px;
  background-color: white;
}

.full-width-section .product-image {
  width: 100%;
  height: 100%;
}

.full-width-section .desc h1 {
  font-weight: 600;
}

.full-width-section .desc {
  position: absolute;
  top: 50%;
  left: 10%;
  transform: translate(0, -50%);
  text-align: left;
  background-color: rgba(255, 255, 255, 0.7);
  padding: 20px;
}

.full-width-section .innov-image {
  transform: translateY(-15vh);
  width: 100%;
  height: 115vh;
  z-index: 15;
}

.full-width-section .desc2 {
  position: absolute;
  width: 80%;
  left: 10%;
  bottom: 3%;
  text-align: center;
  z-index: 17;
}

.full-width-section .desc2 p {
  font-size: 16px !important;
  font-weight: 700;
  color: white;
}


.full-width-section h1 {
  font-size: 60px;
  color: black;
  margin: 0;
}

.full-width-section p {
  font-size: 24px;
  color: black;
  margin: 0;
}


.product-card {
  position: relative;
  overflow: hidden;
  height: 24vw;
  min-height: 320px;
  margin-top: 50px;
  max-height: 375px !important;
}

.product-card .product-card-title {
  font-weight: 800;
  font-size: 30px;
  margin-bottom: 10px;
  text-align: center;
  color: black;
}

.product-card .card-text {
  color: #fff;
  opacity: 0;
  transition: opacity 0.2s;
  position: absolute;
  bottom: 25px;
  left: 3%;
}

.product-card .arrow-right {
  display: inline-block;
  width: 10px;
  height: 10px;
  background-color: transparent;
  border-right: 2px solid #000;
  border-top: 2px solid #000;
  transform: rotate(45deg);
  margin-left: 5px;
  transition: margin-left 0.8s ease;
}

.product-card .card-img-top {
  object-fit: contain;
  height: 250px;
  transition: transform 0.5s;
}

.product-card .description {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  color: #fff;
  padding: 10px;
  opacity: 0;
  transform: translateY(-100%);
  transition: opacity 0.2s, transform 0.2s;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.product-card .product-card-title,
.product-card .more-info {
  position: relative;
  z-index: 2;
  transition: color 0.2s;
}

.product-card .more-info {
  text-align: right;
  position: absolute;
  bottom: 10px;
  right: 10px;
  z-index: 1;
}

.product-card:hover {
  .description {
    opacity: 1;
    transform: translateY(0);
  }

  .card-text {
    opacity: 1;
  }

  .arrow-right {
    display: inline-block;
    width: 10px;
    height: 10px;
    background-color: transparent;
    border-right: 2px solid white;
    border-top: 2px solid white;
    transform: rotate(45deg);
    margin-left: 5px;
    transition: margin-left 0.8s ease;
  }

  .product-card-title,
  .more-info {
    color: #fff;
  }

  .card-img-top {
    transform: scale(1.1);
  }

  cursor: pointer;
  transition: all 800ms cubic-bezier(0.19, 1, 0.22, 1);
}


.product-card a {
  text-decoration: none;
  color: black;
}








.main-navigation {
  padding: 0;
  margin: 0;
  position: fixed;
  width: 90vw;
  margin-left: 10vw;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
}

.main-navigation a {
  text-decoration: none;
}


.innov-tab {
  padding: 60px 5px;
  min-width: 60px;
  width: 60px;
  position: relative;
  cursor: pointer;
  transition: width 1s;
}

.innov-tab.open {
  width: 100%;
  pointer-events: none;
  z-index: 1;
}

.innov-tab span {
  position: absolute;
  color: white;
  font-size: 20px;
  width: 50vh;
  text-align: center;
  top: 50%;
  left: 50%;
  transform-origin: center;
  transform: translateY(-50%) translateX(-50%) rotate(90deg);
}

.innov-tab span.hide {
  opacity: 0;
  transition: opacity 0.5s;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
  z-index: 2;
  /* background-color: #80fcc2; */
}

.innov-left {
  position: fixed;
  width: 10vw;
  height: 100vh;
  background-color: #0e0202;
}

#content-innov,
#content-rp,
#content-obp {
  position: absolute;
  width: calc(90vw - 120px);
  height: auto;
  min-height: 100vh;

}

#content-innov {
  background-image: url("../images/innov-bg.jpg");
  background-size: 100% 100vh;
  margin-left: 10vw;
}

#content-innov .content-innov-container {
  width: 80%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
}

#content-innov .content-innov-container h2 {
  font-size: 60px;
}


#content-rp {
  margin-left: calc(10vw + 60px);
}

#content-rp .content-rp-container {
  width: 100%;
  position: absolute;
}

#content-rp .content-rp-container .rp-1 {
  height: 100vh;
  max-height: 760px;
  width: 100%;
  background-image: url("../images/recyclable_packaging.png");
  background-size: 100% 100%;
}

#content-rp .content-rp-container .rp-1 .title {
  position: relative;
  width: 60vw;
  top: 42%;
  left: 3%;
  background-color: rgba(255, 255, 255, 0.7);
}

#content-rp .content-rp-container .rp-1 .title h2 {
  font-size: 60px;
  font-weight: 600;
}

#content-rp .content-rp-container .rp-1 .title p {
  font-size: 24px;
}

#content-rp .content-rp-container .rp-2 {
  display: flex;
  margin: 0 10px;
}

#content-rp .content-rp-container .rp-2 .left {
  flex: 40%;
  display: flex;
  flex-direction: column;
  text-align: center;
  justify-content: center;
  padding: 0 10px;
}

#content-rp .content-rp-container .rp-2 .right {
  flex: 60%;
}

#content-rp .content-rp-container .rp-2 .right p,
#content-rp .content-rp-container .rp-2 .left p {
  color: white;
}

#content-rp .content-rp-container .rp-2 .left p {
  font-weight: 800;
  font-size: 24px;
}

#content-rp .content-rp-container .comp {
  width: 100%;
  position: relative;
}

#content-rp .content-rp-container .comp img {
  width: 80%;
  margin-left: 10%;
}

#content-rp .content-rp-container .vid {
  width: 100%;
}

#content-rp .content-rp-container .vid video {
  width: 100%;
}


#content-obp {
  margin-left: calc(10vw + 120px);
}

#content-obp .content-obp-container {
  width: 100%;
  position: absolute;
}

#content-obp .content-obp-container .rp-1 {
  height: 100vh;
  max-height: 760px;
  width: 100%;
  background-image: url("../images/optimal_barrier_packaging.png");
  background-size: 100% 100%;
}

#content-obp .content-obp-container .rp-1 .title {
  position: relative;
  width: 100%;
  top: 42%;
  left: 3%;
  background-color: rgba(255, 255, 255, 0.7);
}

#content-obp .content-obp-container .rp-1 .title h2 {
  font-weight: 600;
  font-size: 60px;
}

#content-obp .content-obp-container .rp-1 .title p {
  font-size: 24px;
}

#content-obp .content-obp-container .rp-2 {
  display: flex;
  margin: 0 10px;
}

#content-obp .content-obp-container .rp-2 .left {
  flex: 40%;
  display: flex;
  flex-direction: column;
  text-align: center;
  justify-content: center;
  padding: 0 10px;
}

#content-obp .content-obp-container .rp-2 .right {
  flex: 60%;
}

#content-obp .content-obp-container .rp-2 .right p,
#content-obp .content-obp-container .rp-2 .left p {
  color: white;
}

#content-obp .content-obp-container .rp-2 .left p {
  font-weight: 800;
  font-size: 24px;
}

#content-obp .content-obp-container .comp2 {
  width: 100%;
  position: relative;
}

#content-obp .content-obp-container .comp2 img {
  width: 80%;
  margin-left: 10%;
}

#content-obp .content-obp-container .vid {
  width: 100%;
}

#content-obp .content-obp-container .vid video {
  width: 100%;
}




.innov-m {
  width: 100vw;
  height: auto;
  min-height: 100vh;
}

.innov-m .content-innov-wrapper {
  width: 90%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
}

.innov-m .content-innov-wrapper h2 {
  font-weight: 600;
}

.innov-m .content-innov-container {
  background-image: url("../images/innov-bg.jpg");
  background-size: 100vw 100vh;
  width: 100%;
  height: 100%;
}

.innov-m .content-rp-container {
  width: 100%;
  height: auto;
  background-color: #00b050;
}

.innov-m .content-rp-container .rp-1 {
  height: 100vh;
  max-height: 760px;
  width: 100%;
  background-image: url("../images/recyclable_packaging.png");
  background-size: 100% 100%;
}

.innov-m .content-rp-container .rp-1 .title {
  position: relative;
  width: 55vw;
  top: 42%;
  left: 3%;
  background-color: rgba(255, 255, 255, 0.7);
}

.innov-m .content-rp-container .rp-1 .title h2 {
  font-size: 60px;
}

.innov-m .content-rp-container .rp-1 .title p {
  font-size: 24px;
}

.innov-m .content-rp-container .rp-2 {
  display: flex;
  margin: 0 10px;
}

.innov-m .content-rp-container .rp-2 .left {
  flex: 40%;
  display: flex;
  flex-direction: column;
  text-align: center;
  justify-content: center;
  padding: 0 10px;
}

.innov-m .content-rp-container .rp-2 .right {
  flex: 60%;
}

.innov-m .content-rp-container .rp-2 .right p,
.innov-m .content-rp-container .rp-2 .left p {
  color: white;
}

.innov-m .content-rp-container .rp-2 .left p {
  font-weight: 800;
  font-size: 24px;
}

.innov-m .content-rp-container .comp {
  width: 100%;
}

.innov-m .content-rp-container .comp img {
  width: 100%;
}

.innov-m .content-rp-container .vid {
  width: 100%;
}

.innov-m .content-rp-container .vid video {
  width: 100%;
}

.innov-m .content-obp-container {
  background-color: #0070c0;
  width: 100%;
  height: 100%;
}

.innov-m .content-obp-container .rp-1 {
  height: 100vh;
  max-height: 760px;
  width: 100%;
  background-image: url("../images/recyclable_packaging.png");
  background-size: 100% 100%;
}

.innov-m .content-obp-container .rp-1 .title {
  position: relative;
  width: 65vw;
  top: 42%;
  left: 3%;
  background-color: rgba(255, 255, 255, 0.7);
}

.innov-m .content-obp-container .rp-1 .title h2 {
  font-size: 60px;
}

.innov-m .content-obp-container .rp-1 .title p {
  font-size: 24px;
}

.innov-m .content-obp-container .rp-2 {
  display: flex;
  margin: 0 10px;
}

.innov-m .content-obp-container .rp-2 .left {
  flex: 40%;
  display: flex;
  flex-direction: column;
  text-align: center;
  justify-content: center;
  padding: 0 10px;
}

.innov-m .content-obp-container .rp-2 .right {
  flex: 60%;
}

.innov-m .content-obp-container .rp-2 .right p,
.innov-m .content-obp-container .rp-2 .left p {
  color: white;
}

.innov-m .content-obp-container .rp-2 .left p {
  font-weight: 800;
  font-size: 24px;
}

.innov-m .content-obp-container .comp2 {
  width: 100%;
}

.innov-m .content-obp-container .comp2 img {
  width: 100%;
}

.innov-m .content-obp-container .vid {
  width: 100%;
}

.innov-m .content-obp-container .vid video {
  width: 100%;
}




.contact-container {
  display: flex;
  justify-content: center;
  align-items: stretch;
  margin: 0 auto;
}

.enquiry-form {
  flex: 55%;
  background-color: rgb(219, 219, 219);
  margin-right: 20px;
  border-radius: 20px;
  padding: 15px;
}

.contact-info {
  flex: 42%;
  border-radius: 20px;
  background-color: rgb(219, 219, 219);
}

#map {
  height: 250px;
  width: 100%;
  margin-bottom: 20px;
}

.map-container {
  z-index: 1 !important;
}

.buttonSubmit {
  background-color: #FF8000;
  color: #fff;
  border: none;
  margin-top: 20px;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.buttonSubmit:hover {
  background-color: #FF6A00;
}

.address-container {
  font-size: 14px;
  color: #333;
  margin-top: 10px;
  height: 150px;
}


#contact-page {
  width: 100vw;
  min-height: 100vh;
  height: auto;
  background-image: url("../images/bg-contact.png");
  background-repeat: no-repeat;
  background-size: cover;
}

#contact-page .contact-flex {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  flex-direction: column;
}

#contact-page .contact-content {
  width: 80vw;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

#contact-page .contact-content .contact-wrapper {
  flex: 1;
}

#contact-page .contact-content .contact-wrapper2 {
  flex: 1;
}




#contact-page p {
  color: white;
}

#contact-page h2 {
  color: white;
}