@charset "UTF-8";
@import url("https://fonts.googleapis.com/css?family=Roboto:400,700&display=swap");
/* Defaults
-------------------------------------------------------------- */
:root {
  --header-height: 80px;
}

html {
  font-size: 10px;
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  color: #1B1B1B;
  font-size: 2.2rem;
  direction: ltr;
  line-height: 1.5;
  font-weight: 400;
  font-family: "Open Sans", sans-serif;
}
body.has-overflow {
  overflow: hidden;
}
body.darken .page-wrap::after {
  content: "";
  background-color: #000;
  opacity: 0.5;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  z-index: 55555;
  pointer-events: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  position: relative;
  display: block;
  font-family: "Open Sans", sans-serif;
  line-height: 1.2;
}

h1 {
  font-size: 5rem;
}

h2 {
  font-size: 4rem;
}

h3 {
  font-size: 3rem;
  font-weight: inherit;
}

h4 {
  font-size: 2rem;
}

div,
p,
span,
a,
input,
input[type=submit],
select,
textarea {
  font-family: "Open Sans", sans-serif;
}

strong,
b {
  font-weight: 600;
}

i,
em {
  font-style: italic;
}

ul li,
ol li {
  text-align: left;
}

a,
input[type=submit],
button,
.transition {
  -webkit-transition: all 400ms ease;
  -moz-transition: all 400ms ease;
  -ms-transition: all 400ms ease;
  -o-transition: all 400ms ease;
  transition: all 400ms ease;
}

a {
  text-decoration: none;
}

a:hover,
a:focus {
  color: #139F4D;
}

img {
  max-width: 100%;
  height: auto;
}

img.grayscale {
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
  filter: gray;
  filter: url("data:image/svg+xml;utf8,<svg version='1.1' xmlns='http://www.w3.org/2000/svg' height='0'><filter id='greyscale'><feColorMatrix type='matrix' values='0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0' /></filter></svg>#greyscale");
}

img.grayscale:hover {
  filter: none;
  -webkit-filter: grayscale(0%);
}

.round {
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}

.content p {
  font-size: 1em;
  line-height: 1.45;
  margin-bottom: 1em;
  letter-spacing: -0.005em;
}
.content p:last-child {
  margin-bottom: 0;
}
.content p ~ ul, .content p ~ ol {
  margin-top: -0.8em;
}
.content a {
  color: inherit;
  text-decoration: underline;
}
.content ol,
.content ul {
  padding-inline-start: 1.5em;
  font-size: 1em;
  line-height: 1.45;
  margin-bottom: 1em;
}
.content ol ::marker,
.content ul ::marker {
  color: #139F4D;
  font-size: 1.25em;
}
.content ul ul {
  list-style: disc;
}
.content ul ul ::marker {
  font-size: 1em;
  color: #ACD25A;
}
.content ol {
  list-style: decimal;
}
.content.horizontal-ul ul {
  display: flex;
  flex-wrap: wrap;
  gap: 2px 20px;
  margin: 0;
  padding: 0;
}
.content.horizontal-ul ul li {
  padding-inline-start: 0px;
  margin-inline-start: 30px;
  margin-bottom: 0;
}
.content.horizontal-ul ul li::marker {
  color: #139F4D;
  font-size: 1.3em;
}
.content h2 {
  margin-bottom: 0.6em;
}
.content h2:not(:first-child) {
  margin-top: 2.3em;
}
.content.two-columns {
  columns: 2;
  gap: 30px;
}

.btn {
  font-size: 1em;
  display: inline-block;
  padding: 10px 30px;
  border-radius: 50px;
  color: #fff;
  background-color: #139F4D;
  background-image: linear-gradient(270deg, #ACD25A 0%, #139F4D 100%);
  border: 0;
  transition: 0.4s;
  position: relative;
}
.btn:hover {
  background-image: linear-gradient(270deg, rgb(150.5857142857, 195.6428571429, 53.3571428571) 0%, rgb(13.5561797753, 113.4438202247, 54.9382022472) 100%);
}
.btn.border-btn {
  background: none;
  background-color: transparent;
  border: 2px solid #139F4D;
  color: #1B1B1B;
}
.btn.border-btn:hover {
  background-image: none;
  background-color: rgba(19, 159, 77, 0.1);
}
.btn.white-border-btn {
  background: none;
  background-color: transparent;
  border: 2px solid #fff;
  color: #fff;
}
.btn.white-border-btn:hover {
  background-image: none;
  background-color: rgba(0, 0, 0, 0.1);
}
.btn.gradient-border-btn {
  background: transparent;
  color: #1B1B1B;
}
.btn.gradient-border-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 2px;
  border-radius: 50px;
  background: linear-gradient(270deg, #ACD25A 0%, #139F4D 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.btn.gradient-border-btn:hover {
  background: linear-gradient(270deg, #ACD25A 0%, #139F4D 100%);
  color: #fff;
}
.btn.gradient-border-btn:hover::before {
  display: none;
}
.btn.small-btn {
  padding: 3px 15px;
  font-size: 0.8em;
}

.floating-btn {
  position: fixed;
  top: 200px;
  right: 0;
  z-index: 99999;
  border-radius: 50px 0 0 50px;
  word-wrap: break-word;
  overflow-wrap: break-word;
  line-height: 1.3;
  hyphens: auto;
  font-size: 1.9rem;
  max-width: 10em;
  text-align: inherit;
}
.floating-btn:hover {
  color: #fff;
}

.popup {
  top: -200%;
  left: 0;
  z-index: 99999999;
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: rgba(27, 27, 27, 0.75);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.5s;
}
.popup.active-popup {
  top: 0;
  opacity: 1;
}
.popup.active-popup .popup-background {
  transform: translateY(0);
}
.popup .popup-background {
  transform: translateY(-150%);
  transition: 0.5s transform 0.2s;
  background-color: #fff;
  position: relative;
  margin: 0 auto;
  max-width: 95%;
  max-height: 90%;
  border-radius: 15px;
  box-shadow: 1px 1px 15px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.popup .popup-background.primary-bg {
  background-color: #139F4D;
}
.popup .popup-background.primary-bg .close-x::before {
  background-color: #fff;
}
.popup .popup-background.primary-bg .close-x::after {
  content: "";
  background-color: #fff;
}
.popup .popup-content {
  padding: 3em 8% 3em;
  overflow-y: auto;
  overflow-x: hidden;
}
.popup .popup-content h2 {
  font-size: 5rem;
}
.popup .popup-content .buttons {
  margin-top: 50px;
}
.popup .popup-content iframe {
  max-width: 100%;
}
.popup .top-image {
  margin-top: -90px;
}
.popup .top-image img {
  border-radius: 64% 36% 40% 60%/42% 53% 47% 58%;
}
.popup .back-button {
  cursor: pointer;
  text-decoration: underline;
  transition: 0.5s;
}
.popup .back-button:hover {
  opacity: 0.7;
}
.popup .close-x {
  position: absolute;
  left: 0;
  top: 0;
  margin: 15px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  cursor: pointer;
  transform: rotate(45deg);
}
.popup .close-x::before {
  content: "";
  background-color: #1B1B1B;
  position: absolute;
  width: 20px;
  height: 2px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.popup .close-x::after {
  content: "";
  background-color: #1B1B1B;
  position: absolute;
  width: 2px;
  height: 20px;
  left: 50%;
  transform: translate(-50%, 50%);
  bottom: 50%;
  transition: 0.3s;
}

/****************************************************************
    LAYOUT  LAYOUT  LAYOUT  LAYOUT  LAYOUT  LAYOUT  LAYOUT  LAYOUT
****************************************************************/
.off-canvas-wrapper {
  position: relative;
  overflow: visible;
}

.container {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  padding-right: 15px;
  padding-left: 15px;
  position: relative;
  display: block;
}
.container.full-container {
  max-width: calc(100% - 70px);
}

.row {
  margin-left: -15px;
  margin-right: -15px;
}
.row > * {
  padding-left: 15px;
  padding-right: 15px;
}

.flex_container {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

header {
  width: 100%;
  top: 0;
  position: fixed;
  z-index: 55555;
  padding-top: 35px;
}
header .container {
  padding: 0;
}
header .logo img {
  max-width: 340px;
  padding: 10px;
}
header .logo img.scroll-logo {
  display: none;
  max-width: 300px;
  padding: 0;
}
header .nav {
  transition: 0.1s;
  background-color: #fff;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
header .nav .curve {
  position: absolute;
  right: calc(100% - 2px);
  height: 100%;
  width: auto;
  top: 0;
}
header .nav::before {
  content: "";
  position: absolute;
  bottom: 100%;
  right: 0;
  height: 35px;
  width: 100vw;
  background-color: #fff;
}
header .top-menu {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-bottom: 10px;
}
header .top-menu .search-form {
  display: flex;
}
header .top-menu .search-form form {
  width: 0;
  transition: 0.3s;
  opacity: 0;
}
header .top-menu .search-form form input {
  width: 100%;
  padding: 0 10px;
  border: 0;
  border-bottom: 2px solid #1B1B1B;
}
header .top-menu .search-form form input:focus {
  outline: none;
  border-bottom: 2px solid #139F4D;
}
header .top-menu .search-form:hover form {
  width: 200px;
  opacity: 1;
}
header .top-menu .socials {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-inline-start: 10px;
}
header .top-menu .social-link {
  display: flex;
}
header .top-menu .social-link svg {
  height: 1em;
  width: 0.8em;
}
header .top-menu a {
  color: inherit;
}
header .top-menu .search-icon {
  cursor: pointer;
  padding-right: 5px;
}
header .top-menu .search-icon svg path {
  fill: #1B1B1B;
}
header .rounded-bottom-element {
  position: absolute;
  top: 100%;
  right: 0;
}
header.scrolled, header.product-catalog-header {
  padding-top: 10px;
  box-shadow: 0px 1px 30px rgba(0, 0, 0, 0.2);
  background-color: #fff;
}
header.scrolled .rounded-bottom-element, header.product-catalog-header .rounded-bottom-element {
  display: none;
}
header.scrolled .logo img.main-logo, header.product-catalog-header .logo img.main-logo {
  display: none;
}
header.scrolled .logo img.scroll-logo, header.product-catalog-header .logo img.scroll-logo {
  display: block;
}
header.product-catalog-header {
  background-color: #fff;
  box-shadow: none;
}
header.product-catalog-header.scrolled {
  box-shadow: 0px 1px 30px rgba(0, 0, 0, 0.2);
}

/** Main Menu */
ul#main-menu {
  position: relative;
  display: flex;
  flex-direction: row;
  list-style: none;
  padding: 0;
}

ul#main-menu > li {
  position: relative;
  margin-top: 10px;
}
ul#main-menu > li > a {
  position: relative;
  display: block;
  color: #1B1B1B;
  line-height: 1;
  font-size: 2rem;
  font-weight: 400;
  padding: 5px 20px;
  cursor: default;
}
ul#main-menu > li a:-webkit-any-link {
  cursor: pointer;
}
ul#main-menu > li:last-child > a {
  padding-inline-end: 0;
}

ul#main-menu > li.current-menu-item > a::after {
  content: "";
}

ul#main-menu > li > a:focus,
ul#main-menu > li > a:hover {
  text-decoration: none;
  color: #1B1B1B;
}

/** Sub Menu  ***/
ul#main-menu ul.sub-menu {
  position: absolute;
  z-index: 10;
  left: 0px;
  top: 100%;
  width: 250px;
  display: none;
}

ul#main-menu > li.menu-item-has-children > a::after {
  content: "+";
  display: inline-block;
  width: 0.7em;
  color: #ACD25A;
  font-weight: 700;
  font-size: 1em;
  margin-left: 5px;
}
ul#main-menu > li.menu-item-has-children:hover > a::after {
  content: "-";
}
ul#main-menu > li.menu-item-has-children:hover > ul.sub-menu {
  display: block;
}
ul#main-menu > li.menu-item-has-children:hover > .mega-menu-wrapper {
  display: block;
}

ul#main-menu ul.sub-menu {
  background: #fff;
  border-radius: 0 0 15px 15px;
  padding: 15px 20px 30px;
  box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.15);
}
ul#main-menu ul.sub-menu li {
  position: relative;
  display: block;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #e8e8e8;
}
ul#main-menu ul.sub-menu li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}
ul#main-menu ul.sub-menu a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  font-size: 0.8em;
  line-height: 1.3;
  color: #1B1B1B;
}
ul#main-menu ul.sub-menu a:hover {
  font-weight: 700;
}

ul#main-menu ul.sub-menu li a:hover,
ul#main-menu ul.sub-menu li a:focus {
  text-decoration: none;
  color: #1B1B1B;
}

ul#main-menu ul.sub-menu li:hover > a {
  color: #1B1B1B;
}

ul#main-menu .mega-menu-wrapper {
  position: fixed;
  z-index: 10;
  left: 0;
  width: 100%;
  display: none;
  font-size: 1.8rem;
  padding-top: 20px;
}
ul#main-menu .mega-menu-wrapper .container {
  background-color: #fff;
  padding: 50px 40px;
  border-radius: 30px;
  box-shadow: 0px 0 10px rgba(0, 0, 0, 0.15);
}
ul#main-menu .mega-menu-wrapper .mega-terms {
  padding: 0;
  display: flex;
  flex-direction: column;
  list-style: none;
}
ul#main-menu .mega-menu-wrapper .mega-terms li {
  position: relative;
  border-bottom: 1px solid #e8e8e8;
  padding-bottom: 10px;
  padding-top: 10px;
}
ul#main-menu .mega-menu-wrapper .mega-terms li a {
  color: #1B1B1B;
  transition: 0.1s;
}
ul#main-menu .mega-menu-wrapper .mega-terms li:last-child {
  border-bottom: 0;
}
ul#main-menu .mega-menu-wrapper .mega-terms li.active a {
  font-weight: 700;
}
ul#main-menu .mega-menu-wrapper .mega-terms li.active a::after {
  content: "";
  display: inline-block;
  background-image: url("../../images/arrow-icon.svg");
  background-size: contain;
  background-repeat: no-repeat;
  width: 16px;
  height: 21px;
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
  margin-left: 10px;
}
ul#main-menu .mega-menu-wrapper .mega-subterms {
  display: none;
  flex-direction: column;
  gap: 10px;
  list-style: none;
}
ul#main-menu .mega-menu-wrapper .mega-subterms li a {
  color: #1B1B1B;
  font-size: 0.95em;
}
ul#main-menu .mega-menu-wrapper .mega-subterms li a:hover {
  font-weight: 700;
}
ul#main-menu .mega-menu-wrapper .mega-subterms.active {
  display: flex;
}
ul#main-menu .mega-menu-wrapper .mega-term-image {
  position: relative;
  border-radius: 5px 20px 20px;
  overflow: hidden;
  border: 2px solid #ddd;
  aspect-ratio: 6/4;
  margin-bottom: 20px;
  display: none;
}
ul#main-menu .mega-menu-wrapper .mega-term-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
ul#main-menu .mega-menu-wrapper .mega-term-image .color-element {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  margin: 0 auto;
  width: 50%;
  height: 13px;
  border-radius: 10px 10px 0 0;
}
ul#main-menu .mega-menu-wrapper .mega-term-image.active {
  display: block;
}

.page-template-quality-management-system .archive-downloads-section {
  padding-bottom: 0;
}
.page-template-quality-management-system .archive-downloads-section .container .row {
  max-width: 100%;
}
.page-template-quality-management-system #breadcrumbs {
  margin-bottom: 0;
}
.page-template-quality-management-system .top-title-section {
  min-height: 360px;
}
.page-template-quality-management-system .top-title-section .full-container .container {
  padding-top: 90px;
}
.page-template-quality-management-system .archive-downloads-section h3 {
  background-image: linear-gradient(270deg, #ACD25A 0%, #139F4D 100%);
  border-radius: 5px 15px 15px 15px;
  padding: 15px 25px;
  width: 100%;
  margin-left: 0;
  color: #fff;
}
.page-template-quality-management-system .archive-downloads-section .inner {
  padding-left: 25px;
}
.page-template-quality-management-system .image.bg-image {
  display: block;
  aspect-ratio: 4/5.3;
  width: 70%;
  background-color: #fff;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.12);
  border-radius: 5px 15px 15px 15px;
}
.page-template-quality-management-system .col-lg-4 {
  margin-bottom: 40px;
}
.page-template-quality-management-system .download {
  display: flex;
  color: #1B1B1B;
  margin: 20px 0;
  align-items: center;
}
.page-template-quality-management-system .download .title {
  color: #1B1B1B;
}
.page-template-quality-management-system .download svg {
  margin-left: 40px;
}

.post-type-archive-downloads .top-title-section {
  min-height: 360px;
}
.post-type-archive-downloads .top-title-section .full-container .container {
  padding-top: 90px;
}
.post-type-archive-downloads .archive-downloads-section h2 {
  background-image: linear-gradient(270deg, #ACD25A 0%, #139F4D 100%);
  border-radius: 5px 15px 15px 15px;
  color: #fff;
  padding: 10px 140px 10px 25px;
  margin-left: -25px;
  margin-bottom: 30px;
  font-size: 3.2rem;
  display: inline-block;
}

.archive-downloads-section .container {
  padding: 30px 15px;
}
.archive-downloads-section .container .row {
  max-width: 800px;
}
.archive-downloads-section .project-item-col {
  margin-bottom: 15px;
}
.archive-downloads-section .project-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 325px;
}
.archive-downloads-section .project-item .title {
  margin-right: 25px;
}

/****** General ******/
.bold {
  font-weight: 600;
}

.center {
  text-align: center;
}

.mobile {
  display: none;
}

.white {
  color: #fff;
}

.primary-color {
  color: #139F4D;
}

.lightgreen-color {
  color: #ACD25A;
}

.gradient-text {
  background: linear-gradient(270deg, #ACD25A 0%, #139F4D 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-bg {
  background-image: linear-gradient(270deg, #ACD25A 0%, #139F4D 100%);
}

.dark-bg {
  background-color: #1B1B1B;
  color: #fff;
}

.lightgray-bg {
  background-color: #E8E8E8;
}

.full-absolute {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}

.bg-image {
  background-position: center;
  background-size: cover;
}

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

.big-title {
  font-size: 6.5rem;
  font-weight: 600;
  line-height: 1.2;
}

.text-40 {
  font-size: 4rem;
}

.text-35 {
  font-size: 3.5rem;
}

.text-30 {
  font-size: 3rem;
  line-height: 1.3;
}

.text-25 {
  font-size: 2.5rem;
}

.text-22 {
  font-size: 2.2rem;
}

.text-18 {
  font-size: 1.8rem;
}

.text-16 {
  font-size: 1.6rem;
}

.bg-title {
  margin-top: 20px;
  margin-left: -1em;
  margin-bottom: 20px;
  padding: 0.2em 50px 0.2em 1em;
  border-radius: 5px 15px 15px 15px;
}

.page-template-accessibility {
  direction: rtl;
}
.page-template-accessibility a.accessibility {
  margin-top: 5px;
  display: block;
}
.page-template-accessibility .main-container {
  padding: 70px 15px;
}
.page-template-accessibility h1 {
  text-align: center;
}
.page-template-accessibility h2 {
  font-size: 2rem;
  margin-top: 50px;
  text-align: right;
}
.page-template-accessibility p {
  text-align: right !important;
  line-height: 1.4;
}
.page-template-accessibility .content ul {
  direction: rtl;
  list-style: disc;
}
.page-template-accessibility .content ul p {
  text-align: right;
}
.page-template-accessibility .content ul li {
  font-size: 0.9rem;
  text-align: right;
  margin-bottom: 10px;
}

/* fixes potential theme css conflict */
.acf-map img {
  max-width: inherit !important;
}

.section {
  padding: 90px 0;
  overflow: hidden;
}

.pll-custom-dropdown {
  position: relative;
  display: inline-block;
  font-size: 1.8rem;
}

.pll-dropdown-button {
  background: #fff;
  border: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
}

.pll-dropdown-list {
  display: none;
  /* Hidden by default */
  position: absolute;
  background: #fff;
  border: 1px solid #ccc;
  list-style: none;
  margin: 0;
  padding: 0;
  min-width: 100%;
  z-index: 100;
}

/* Show dropdown on hover */
.pll-custom-dropdown:hover .pll-dropdown-list {
  display: block;
}

.pll-dropdown-list li {
  width: 100%;
}
.pll-dropdown-list li a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  text-decoration: none;
  color: #333;
  min-width: 100%;
  width: max-content;
}

.pll-dropdown-list li a:hover {
  background-color: #f0f0f0;
}

.pll-dropdown-list img,
.pll-dropdown-button img {
  width: 15px;
  height: auto;
}

#breadcrumbs {
  font-size: 1.7rem;
  margin-bottom: 50px;
  margin-top: -20px;
}
#breadcrumbs > * {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  align-items: center;
}
#breadcrumbs .icon {
  display: flex;
}
#breadcrumbs a {
  color: inherit;
  text-decoration: underline;
}

.top-title-section {
  padding-top: 35px !important;
  padding-bottom: 50px !important;
  display: flex;
  min-height: 580px;
}
.top-title-section.short {
  min-height: 350px;
}
.top-title-section .full-container {
  color: #fff;
  overflow: hidden;
  border-radius: 35px;
}
.top-title-section .full-container.bg-image::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.4));
  left: 0;
  top: 0;
}
.top-title-section .full-container .container {
  height: 100%;
  padding-top: 150px;
  padding-bottom: 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.top-title-section .full-container.light-bg {
  color: #1B1B1B;
  background-color: #585858;
  background-position: right center;
  background-size: 50% auto;
  background-repeat: no-repeat;
}
.top-title-section .full-container.light-bg::before {
  background-image: linear-gradient(90deg, #d9d9d9 50%, rgba(255, 255, 255, 0.2));
}
.top-title-section .bg-element {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
}
.top-title-section .bg-element .main-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.top-title-section .bg-element::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.4));
  left: 0;
  top: 0;
}
.top-title-section .bottom-gradient {
  margin-bottom: 5px;
}
.top-title-section .bottom-gradient::after {
  content: "";
  bottom: -35px;
  left: 0;
  position: absolute;
  width: 200px;
  height: 15px;
  border-radius: 15px 15px 0 0;
  background-image: linear-gradient(270deg, #ACD25A 0%, #139F4D 100%);
}

.hp-top-section {
  min-height: 100vh;
  padding-top: 35px;
  padding-bottom: 35px;
  display: flex;
}
.hp-top-section .full-container {
  color: #fff;
  border-radius: 35px;
}
.hp-top-section .full-container .container {
  height: 100%;
}
.hp-top-section .video-wrapper {
  background-color: #1B1B1B;
  overflow: hidden;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  border-radius: 35px;
}
.hp-top-section .video-wrapper video {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 0;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
}
.hp-top-section .video-wrapper::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  z-index: 1;
}
.hp-top-section .content-elements {
  position: relative;
  z-index: 2;
  height: 100%;
  padding-top: 200px;
  padding-bottom: 220px;
}
.hp-top-section .content-elements h1 {
  max-width: 13em;
  text-shadow: 0px 4px 15px rgba(0, 0, 0, 0.3);
  margin: 0 auto 20px;
}
.hp-top-section .applications {
  width: 100%;
  bottom: 0;
  position: absolute;
}
.hp-top-section .applications .application-item {
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px 15px;
  border-radius: 30px 30px 0 0;
}
.hp-top-section .applications .application-item::before {
  content: "";
  opacity: 0;
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  transition: 0.5s;
  transform: translateY(100px);
  border-radius: 30px 30px 0 0;
  background-image: linear-gradient(45deg, #acd25a, #139f4d);
}
.hp-top-section .applications .application-item .icon {
  margin: 15px auto;
}
.hp-top-section .applications .application-item .icon svg {
  height: 45px;
  width: auto;
}
.hp-top-section .applications .application-item .icon path {
  fill: #fff;
}
.hp-top-section .applications .application-item .btn {
  margin: 20px 0;
  font-size: 1.9rem;
  padding: 5px 15px;
}
.hp-top-section .applications .application-item .hover-elements {
  opacity: 0;
  pointer-events: none;
  overflow: hidden;
  height: auto;
  transition: 0.5s opacity, 0.5s transform;
  transform: translateY(100px);
}
.hp-top-section .applications .application-item:hover::before {
  opacity: 1;
  transform: translateY(0);
}
.hp-top-section .applications .application-item:hover .hover-elements {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.hp-about-section h2 {
  margin-bottom: 0.7em;
}

.yt-video-wrapper {
  position: relative;
  aspect-ratio: 16/9;
  padding-top: 25px;
  border-radius: 10px 40px 40px 40px;
  overflow: hidden;
}
.yt-video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.yt-video-wrapper .video-thumbnail {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.yt-video-wrapper .video-thumbnail::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
}
.yt-video-wrapper .video-thumbnail svg {
  position: relative;
  z-index: 2;
}

.product-cats-section .product-cat-item-col {
  margin-top: 30px;
  margin-bottom: 50px;
}
.product-cats-section .product-cat-item {
  color: #1B1B1B;
}
.product-cats-section .product-cat-item .image-wrapper {
  position: relative;
  border-radius: 5px 20px 20px;
  overflow: hidden;
  border: 2px solid #ddd;
  aspect-ratio: 6/4;
  margin-bottom: 20px;
}
.product-cats-section .product-cat-item .image-wrapper .btn {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: calc(100% - 15px);
  width: fit-content;
  color: #fff;
}
.product-cats-section .product-cat-item:hover {
  text-decoration: none;
}
.product-cats-section .product-cat-item:hover .btn {
  top: calc(100% - 80px);
}

.innovation-section .title-bg {
  background-image: linear-gradient(270deg, #ACD25A 0%, #139F4D 100%);
  border-radius: 5px 15px 15px 15px;
  padding: 15px 25px;
  z-index: 5;
  position: relative;
}
.innovation-section .dark-bg {
  position: relative;
  margin-top: -30px;
  padding: 80px 50px 50px 50px;
  border-radius: 0 40px 40px 40px;
}
.innovation-section .content-elements {
  width: 600px;
}
.innovation-section .content {
  margin-top: 1em;
}
.innovation-section .btns {
  margin-top: 30px;
  display: flex;
  gap: 15px;
}
.innovation-section img {
  position: absolute;
  left: 700px;
  width: 500px;
  top: -100px;
}

.steps-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  gap: 50px;
  margin-top: 50px;
  margin-bottom: 50px;
}
.steps-wrapper .line-element {
  position: absolute;
  height: 2px;
  width: 100%;
  background-color: #1B1B1B;
  top: 4.3em;
}
.steps-wrapper .line-element .start-shape {
  position: absolute;
  left: -10px;
  top: -12px;
  height: 24px;
  width: 24px;
  border-radius: 50%;
  background-color: #139F4D;
}
.steps-wrapper .line-element .end-shape {
  position: absolute;
  right: -10px;
  top: -21px;
  height: 42px;
  width: 30px;
}
.steps-wrapper .step-item {
  max-width: 220px;
  color: inherit;
  flex: 1;
}
.steps-wrapper .step-item .step-number {
  font-size: 12rem;
  font-weight: bold;
  -webkit-text-stroke: 2px #1B1B1B;
  color: transparent;
  font-weight: 900;
  text-align: center;
  line-height: 0.8;
  margin-bottom: 30px;
}
.steps-wrapper .step-item .image {
  margin-top: 20px;
}
.steps-wrapper .step-item .image img {
  border-radius: 15px 5px 15px 15px;
  object-fit: cover;
  aspect-ratio: 3.5/4;
}

.swiper-outer-wrapper {
  position: relative;
}
.swiper-outer-wrapper .custom-next {
  left: 100%;
  z-index: 10;
  padding: 0 15px;
  box-sizing: content-box;
}
.swiper-outer-wrapper .custom-next::after {
  content: none;
}
.swiper-outer-wrapper .custom-prev {
  right: 100%;
  left: auto;
  z-index: 10;
  padding: 0 15px;
  box-sizing: content-box;
}
.swiper-outer-wrapper .custom-prev::after {
  content: none;
}

.swiper-pagination-bullet {
  width: 15px;
  height: 10px;
  border-radius: 10px;
  background-color: #E8E8E8;
  opacity: 1;
  transition: 0.5s;
}
.swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #139F4D;
  width: 35px;
}

.top-projects-part {
  display: flex;
  margin-bottom: 50px;
}
.top-projects-part .left-elmnts {
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  padding-right: 30px;
  border-top: 2px solid #E8E8E8;
}
.top-projects-part .right-elmnts {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding-left: 30px;
  border-bottom: 2px solid #E8E8E8;
}
.top-projects-part .swiper-pagination {
  position: relative;
  margin-inline-start: 30px;
  width: auto;
  bottom: auto;
}

.project-item {
  display: block;
  color: #1B1B1B;
  padding-top: 20px;
}
.project-item .location-text {
  background-image: linear-gradient(270deg, #ACD25A 0%, #139F4D 100%);
  border-radius: 10px 10px 10px 0;
  padding: 5px 10px;
  width: 90%;
  position: absolute;
  top: 0;
  color: #fff;
}
.project-item .image-wrapper {
  border-radius: 5px 15px 15px 15px;
  margin-bottom: 20px;
  background-color: #E8E8E8;
  overflow: hidden;
  aspect-ratio: 5/3.5;
  width: 100%;
}
.project-item .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-item-col {
  margin-top: 30px;
  margin-bottom: 50px;
}

.article-item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  height: 100%;
  color: #1B1B1B;
}
.article-item .image-wrapper {
  border-radius: 5px 15px 15px 15px;
  margin-bottom: 20px;
  background-color: #E8E8E8;
  overflow: hidden;
  aspect-ratio: 6.8/3.6;
  width: 100%;
}
.article-item .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.article-item h3 {
  margin: 20px 0;
}
.article-item .btn {
  margin-top: 30px;
}
.article-item:hover {
  color: #1B1B1B;
}

.map-wrapper {
  border-radius: 25px 25px 5px 25px;
  overflow: hidden;
}
.map-wrapper .dialog {
  border-radius: 5px 25px 25px 25px;
}
.map-wrapper .popup-content {
  max-width: 430px;
}
.map-wrapper .popup-content .title {
  margin-top: 10px;
  margin-bottom: 10px;
}
.map-wrapper .popup-content .btn {
  margin-top: 15px;
  font-size: 2rem;
}

.contact-section {
  padding-bottom: 20px;
}
.contact-section .dark-bg {
  border-radius: 40px 40px 10px 40px;
  padding: 0 50px 30px 50px;
  position: relative;
}
.contact-section .title-row {
  display: flex;
  margin-bottom: 25px;
  width: calc(100% + 50px);
}
.contact-section .title-row h2, .contact-section .title-row h1 {
  margin: 0;
  margin-top: 20px;
}
.contact-section .title-row .shape {
  margin-inline-start: 20px;
  position: relative;
  flex: 1;
  display: flex;
  align-self: flex-start;
}
.contact-section .title-row .shape svg {
  height: 88px;
  width: auto;
}
.contact-section .title-row .shape::after {
  content: "";
  display: block;
  flex: 1;
  margin-left: -3px;
  margin-right: -50px;
  height: 88px;
  background-color: #fff;
}
.contact-section .title-row .shape .rounded-bottom-element {
  position: absolute;
  top: 100%;
  right: 0;
  width: 32px;
  height: auto;
}
.contact-section .details-col {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.contact-section .logo {
  margin-bottom: 50px;
}
.contact-section .logo img {
  width: 300px;
}
.contact-section h3 {
  margin-bottom: 20px;
}
.contact-section .details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-section .details .detail {
  display: flex;
  gap: 10px;
}
.contact-section .details .detail svg {
  width: 30px;
}
.contact-section .details a {
  color: #fff;
  text-decoration: underline;
}
.contact-section .details a:hover {
  opacity: 0.8;
}
.contact-section .socials {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.contact-section .socials a {
  display: inline-block;
}
.contact-section .socials a svg path {
  fill: #ACD25A;
}
.contact-section #footer-menu {
  margin-top: 50px;
}

.wpcf7 label {
  width: 100%;
  margin-bottom: 15px;
  font-size: 0.9em;
}
.wpcf7 input:not([type=submit]):not([type=checkbox]):not([type=radio]) {
  width: 100%;
  font-size: 2.2rem;
  padding: 1px 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
  width: 100%;
  box-sizing: border-box;
}
.wpcf7 a {
  color: inherit;
  text-decoration: underline;
}
.wpcf7 a:hover {
  opacity: 0.8;
}
.wpcf7 .wpcf7-list-item {
  font-size: 1.8rem;
  margin: 0;
}
.wpcf7 .wpcf7-list-item input[type=checkbox] {
  width: 15px;
  height: 15px;
  margin-right: 5px;
  accent-color: #139F4D;
}
.wpcf7 textarea {
  width: 100%;
  height: 3.5em;
  font-size: 2.2rem;
  padding: 3px 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
  width: 100%;
  box-sizing: border-box;
  margin-bottom: 20px;
}
.wpcf7 .wpcf7-submit {
  font-size: 2rem;
  padding: 10px 30px;
  border-radius: 50px;
  color: #fff;
  background-color: #139F4D;
  background-image: linear-gradient(270deg, #ACD25A 0%, #139F4D 100%);
  border: 0;
  transition: 0.4s;
  cursor: pointer;
  float: right;
}
.wpcf7 .wpcf7-submit:hover {
  background-image: linear-gradient(270deg, rgb(150.5857142857, 195.6428571429, 53.3571428571) 0%, rgb(13.5561797753, 113.4438202247, 54.9382022472) 100%);
}

/** Footer Menu */
ul#footer-menu {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: space-between;
  flex-direction: row;
  list-style: none;
  padding: 0;
}
ul#footer-menu > li {
  position: relative;
}
ul#footer-menu > li > a {
  position: relative;
  display: block;
  color: #fff;
  line-height: 1;
  font-size: 1.8rem;
  padding: 0;
}
ul#footer-menu > li > a:focus, ul#footer-menu > li > a:hover {
  opacity: 0.6;
  text-decoration: none;
}
ul#footer-menu ul.sub-menu {
  display: none;
}

footer {
  margin-bottom: 15px;
  color: #fff;
}
footer .gradient-bg {
  border-radius: 8px;
  padding: 8px 10px;
  display: flex;
  justify-content: space-between;
  gap: 15px;
}
footer .links {
  display: flex;
  gap: 15px;
}
footer a {
  color: #fff;
  text-decoration: underline;
}
footer a:hover {
  opacity: 0.8;
}

.e2e-projects-section .e2e-project-item-col {
  display: flex;
}
.e2e-projects-section .e2e-project-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  border-radius: 30px;
  padding: 0 30px 30px;
  position: relative;
  height: auto;
  margin-top: 50px;
  flex: 1;
}
.e2e-projects-section .e2e-project-item .title {
  background-image: linear-gradient(270deg, #ACD25A 0%, #139F4D 100%);
  border-radius: 5px 15px 15px 15px;
  padding: 15px 25px;
  width: 90%;
  margin-left: -45px;
  transform: translateY(-25px);
  top: 0;
  color: #fff;
}
.e2e-projects-section .e2e-project-item .content {
  flex: 1;
}
.e2e-projects-section .e2e-project-item .btn {
  margin-top: 20px;
}

.e2e-extended-section {
  overflow: visible;
}
.e2e-extended-section .extended-steps-wrapper .line-element {
  position: absolute;
  height: calc(100% + 100px);
  width: 2px;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: -1;
  background-color: #1B1B1B;
  top: 0;
}
.e2e-extended-section .extended-steps-wrapper .line-element .sticky-start-shape {
  margin-top: -50vh;
  padding-top: 50vh;
  position: sticky;
  top: 0;
}
.e2e-extended-section .extended-steps-wrapper .line-element .start-shape {
  position: relative;
  left: -18px;
  height: 38px;
  width: 38px;
  border-radius: 50%;
  background-color: #139F4D;
}
.e2e-extended-section .extended-steps-wrapper .line-element .end-shape {
  position: absolute;
  bottom: -10px;
  width: 50px;
  transform: rotate(90deg);
  transform-origin: left center;
}
.e2e-extended-section .extended-steps-wrapper .line-element .end-shape svg {
  width: 100%;
  height: auto;
}
.e2e-extended-section .extended-steps-wrapper .step-item {
  margin-bottom: 100px;
}
.e2e-extended-section .extended-steps-wrapper .step-item .step-number {
  font-size: 12rem;
  font-weight: bold;
  -webkit-text-stroke: 2px #1B1B1B;
  color: transparent;
  font-weight: 900;
  line-height: 0.8;
  margin-bottom: 30px;
}
.e2e-extended-section .extended-steps-wrapper .step-item .image {
  margin-top: 20px;
}
.e2e-extended-section .extended-steps-wrapper .step-item .image img {
  border-radius: 5px 15px 15px 15px;
  object-fit: cover;
  aspect-ratio: 4/3;
}

.e2e-experts-section {
  min-height: 600px;
}
.e2e-experts-section .content-element {
  border-radius: 5px 20px 20px;
  padding: 30px;
}
.e2e-experts-section .content-element.gradient-element {
  padding-left: 40px;
  position: relative;
}
.e2e-experts-section .content-element.gradient-element::before {
  content: "";
  position: absolute;
  width: 15px;
  left: 0;
  top: 30px;
  height: calc(100% - 60px);
  border-radius: 0 10px 10px 0;
  background-image: linear-gradient(180deg, #ACD25A 0%, #139F4D 100%);
}
.e2e-experts-section .image-col {
  position: absolute;
  top: 80px;
  height: 100%;
  z-index: -1;
}
.e2e-experts-section .image-col img {
  border-radius: 30px 10px 30px 30px;
  min-height: 400px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.e2e-experts-section.high-img {
  min-height: 0;
}
.e2e-experts-section.high-img .image-col {
  margin-top: -150px;
  position: relative;
  top: auto;
  height: auto;
}
.e2e-experts-section.high-img .image-col img {
  width: 100%;
  height: auto;
}

.e2e-custom-section .content-element {
  position: relative;
  padding: 50px 30px;
  border-radius: 20px;
  overflow: hidden;
}
.e2e-custom-section .content-element .content {
  margin: 30px 0;
}
.e2e-custom-section .bg .bg-image {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  left: 0;
  top: 0;
}
.e2e-custom-section .bg::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75));
  left: 0;
  top: 0;
}
.e2e-custom-section .half-out {
  position: relative;
  z-index: 2;
}
.e2e-custom-section .half-out img {
  margin-top: -100px;
}

.archive-projects-section .project-item-col {
  margin-bottom: 50px;
}
.archive-projects-section .project-item {
  position: relative;
}

.project-content-section {
  z-index: 2;
  overflow: visible;
}
.project-content-section .post-thumb {
  margin-top: -170px;
}
.project-content-section .post-thumb img {
  aspect-ratio: 5/3.5;
  object-fit: cover;
  border-radius: 10px 40px 40px 40px;
}
.project-content-section .post-logo {
  margin-top: 20px;
  display: flex;
  justify-content: flex-end;
}
.project-content-section .post-logo img {
  max-width: 200px;
}
.project-content-section .post-details {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  margin-bottom: 50px;
}
.project-content-section .post-details .post-detail {
  padding-left: 20px;
  border-left: 2px solid #139F4D;
}

.post-content p:first-child {
  padding-right: 40px;
}
.post-content h2 {
  background-image: linear-gradient(270deg, #ACD25A 0%, #139F4D 100%);
  margin-left: -30px;
  padding: 15px 30px;
  color: #fff;
  font-size: 3rem;
  border-radius: 5px 15px 15px 15px;
  margin-top: 80px !important;
  margin-bottom: 20px;
}
.post-content h2:first-child {
  margin-top: 0;
}
.post-content .swiper-outer-wrapper {
  width: 1370px;
  margin-top: 80px;
}
.post-content .swiper-outer-wrapper img {
  aspect-ratio: 3.2/2;
  object-fit: cover;
  border-radius: 5px 20px 20px 20px;
}

.article-post-content h2 {
  font-weight: 700;
  display: flex;
  transition: 0.5s;
  align-items: center;
  margin-top: 80px;
  margin-bottom: 20px;
  position: relative;
  padding-left: 30px;
  min-height: 2em;
}
.article-post-content h2:first-child {
  margin-top: 0;
}
.article-post-content h2::before {
  content: "";
  background-color: #acd25a;
  width: 15px;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 0 10px 10px 0;
}
.article-post-content h3 {
  color: #139F4D;
  font-weight: 700;
  margin-bottom: 30px;
  margin-top: 30px;
  font-size: 2.5rem;
}
.article-post-content .swiper-outer-wrapper {
  width: 1370px;
  margin-top: 80px;
}
.article-post-content .swiper-outer-wrapper img {
  aspect-ratio: 3.2/2;
  object-fit: cover;
  border-radius: 5px 20px 20px 20px;
}
.article-post-content .wp-block-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin: 30px 0;
}
.article-post-content .wp-block-buttons .wp-block-button a {
  font-size: 1em;
  display: inline-block;
  padding: 10px 30px;
  border-radius: 50px;
  color: #fff;
  background-image: linear-gradient(270deg, #ACD25A 0%, #139F4D 100%);
  border: 0;
  transition: 0.4s;
  position: relative;
  text-decoration: none;
}
.article-post-content .wp-block-buttons .wp-block-button a:hover {
  background-image: linear-gradient(270deg, rgb(150.5857142857, 195.6428571429, 53.3571428571) 0%, rgb(13.5561797753, 113.4438202247, 54.9382022472) 100%);
}
.article-post-content .wp-block-embed {
  margin: 50px 0;
}
.article-post-content .wp-block-embed .yt-video-wrapper {
  width: 800px;
  max-width: 100%;
}
.article-post-content .wp-block-embed iframe {
  width: 800px;
  height: auto;
  aspect-ratio: 16/9;
}

.seperator-line {
  width: 100%;
  height: 2px;
  background-color: #E8E8E8;
  margin: 50px 0;
}

.app-text-image-section h2 {
  margin-bottom: 1em;
}
.app-text-image-section .image img {
  border-radius: 10px 40px 40px 40px;
  aspect-ratio: 6.8/5;
  object-fit: cover;
}

.sub-app-section .title-wrapper {
  margin-top: 20px;
  margin-left: -70px;
  margin-bottom: 20px;
  padding: 5px 15px 5px 70px;
  border-radius: 5px 15px 15px 15px;
}
.sub-app-section .image img {
  border-radius: 10px 40px 40px 40px;
  aspect-ratio: 6.8/5;
  object-fit: cover;
}

.related-products-section {
  padding-top: 50px;
}
.related-products-section .top-products-part {
  display: flex;
  margin-bottom: 30px;
}
.related-products-section .top-products-part .left-elmnts {
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  padding-right: 30px;
}
.related-products-section .top-products-part svg {
  display: none;
}
.related-products-section .top-products-part .right-elmnts {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding-left: 30px;
}
.related-products-section .top-products-part .swiper-pagination {
  position: relative;
  margin-inline-start: 30px;
  width: auto;
  bottom: auto;
}
.related-products-section .swiper-outer-wrapper {
  position: relative;
}
.related-products-section .swiper-outer-wrapper .custom-prev, .related-products-section .swiper-outer-wrapper .custom-next {
  top: 125px;
}

.product-item-col {
  margin-bottom: 50px;
}

.product-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  color: #1B1B1B;
}
.product-item .image-wrapper {
  border-radius: 5px 15px 15px 15px;
  border: 2px solid #ACD25A;
  margin-bottom: 20px;
  background-color: #fff;
  border: 2px solid #E8E8E8;
  overflow: hidden;
  aspect-ratio: 3.2/2.5;
  width: 100%;
  position: relative;
}
.product-item .image-wrapper::before {
  content: "";
  transition: 0.5s;
  opacity: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 3;
}
.product-item .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 1;
}
.product-item .image-wrapper .btn {
  position: absolute;
  width: max-content;
  opacity: 0;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 4;
  transition: 0.5s;
  margin: 0;
}
.product-item:hover {
  color: inherit;
}
.product-item:hover .image-wrapper {
  border-color: #ACD25A;
}
.product-item:hover .image-wrapper::before {
  opacity: 1;
}
.product-item:hover .image-wrapper .btn {
  opacity: 1;
}

.other-apps-section .swiper-slide {
  height: auto;
}

.app-item {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  padding: 30px;
  overflow: hidden;
  border-radius: 20px 5px 20px 20px;
}
.app-item::before {
  content: "";
  transition: 0.5s;
  opacity: 0;
  position: absolute;
  width: 50px;
  height: 50px;
  left: 0;
  border-radius: 0 30px 30px 0;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 2;
  bottom: 30px;
}
.app-item img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.app-item h3 {
  display: flex;
  align-items: center;
}
.app-item h3 svg {
  width: 30px;
  height: 30px;
  margin-inline-end: 10px;
}
.app-item .content {
  position: relative;
  opacity: 0;
  z-index: 3;
  color: #fff;
}
.app-item .btn {
  opacity: 0;
  z-index: 3;
  margin: 20px 0;
}
.app-item h3 {
  order: 3;
  z-index: 3;
  margin-left: -30px;
  padding: 10px 30px;
  border-radius: 0 30px 30px 0;
  background-color: rgba(0, 0, 0, 0.9);
  transition: 0.5s;
  color: #fff;
  margin-top: 20px;
}
.app-item:hover .btn, .app-item:hover .content {
  opacity: 1;
}
.app-item:hover h3 {
  background-color: rgba(0, 0, 0, 0);
}
.app-item:hover::before {
  opacity: 1;
  border-radius: 0;
  width: 100%;
  height: 100%;
  bottom: 0;
}

.nav-btns {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 20px;
  height: 100%;
}
.nav-btns .btn {
  padding: 5px 15px;
}
.nav-btns .btn:hover {
  border-color: #acd25a;
}

.top-innovation-section .images-col {
  position: relative;
}
.top-innovation-section .images-col .screen-col {
  position: absolute;
  z-index: 2;
  bottom: -80px;
}
.top-innovation-section .images-col .image-col img {
  border-radius: 10px 40px 40px 40px;
  aspect-ratio: 6/5;
  object-fit: cover;
}

.ifu-filters-section {
  padding: 20px 0 !important;
}
.ifu-filters-section .ifu-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
}
.ifu-filters-section .ifu-filters label {
  padding: 5px 15px;
  border: 2px solid;
  border-radius: 2px 6px 6px 6px;
  display: flex;
  align-items: flex-start;
}
.ifu-filters-section .ifu-filters label:hover {
  cursor: pointer;
}
.ifu-filters-section .ifu-filters input {
  accent-color: #515151;
  width: 1em;
  height: 1em;
  margin-right: 10px;
  margin-top: 5px;
}

.single-row.active h2 {
  color: #fff;
}
.single-row.active h2 .category-color-line {
  width: 110%;
  z-index: -1;
}
.single-row.active .arrow svg {
  transition: 0.5s;
  transform: translateY(50%) rotate(90deg);
}

.top-accordion-part {
  display: flex;
  margin-bottom: 50px;
  cursor: pointer;
}
.top-accordion-part:hover h2 {
  color: #fff;
}
.top-accordion-part:hover h2 .category-color-line {
  width: 110%;
  z-index: -1;
}
.top-accordion-part .left-elmnts {
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  padding-right: 30px;
  border-top: 2px solid #E8E8E8;
  min-width: 50%;
}
.top-accordion-part .right-line {
  height: 65px;
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding-left: 30px;
  border-bottom: 2px solid #E8E8E8;
}
.top-accordion-part .arrow {
  display: flex;
  align-items: flex-end;
  height: 65px;
  padding-inline-start: 15px;
}
.top-accordion-part .arrow svg {
  transform: translateY(50%);
}

.bottom-accordion-part {
  display: none;
}

.ifu-child-category {
  margin-bottom: 70px;
}
.ifu-child-category h2 {
  display: flex;
  transition: 0.5s;
  align-items: center;
  margin: 20px 0;
  position: relative;
  padding-left: 30px;
  min-height: 2em;
}
.ifu-child-category h2 .category-color-line {
  transition: 0.5s;
  width: 15px;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 0 10px 10px 0;
}

.ifu-downloads {
  padding: 40px 0;
}
.ifu-downloads .single-download-col {
  margin-top: 30px;
}
.ifu-downloads .single-download {
  display: flex;
  color: #1B1B1B;
  padding: 5px 15px;
  margin-left: -15px;
  gap: 15px;
}
.ifu-downloads .single-download .name {
  flex: 1;
}
.ifu-downloads .single-download svg {
  margin-top: 5px;
}
.ifu-downloads .single-download:hover {
  background-color: rgba(232, 232, 232, 0.5);
  border-radius: 5px 10px 10px 10px;
}

.ifu-login {
  text-align: center;
}

#loginform {
  text-align: left;
  background-color: rgba(232, 232, 232, 0.5);
  display: inline-block;
  padding: 30px;
  border-radius: 5px 15px 15px;
}
#loginform label {
  display: block;
  font-size: 2rem;
}
#loginform input[type=submit] {
  font-size: 2rem;
  padding: 10px 30px;
  border-radius: 50px;
  color: #fff;
  background-color: #139F4D;
  background-image: linear-gradient(270deg, #ACD25A 0%, #139F4D 100%);
  border: 0;
  transition: 0.4s;
  cursor: pointer;
  float: right;
}
#loginform input[type=submit]:hover {
  background-image: linear-gradient(270deg, rgb(150.5857142857, 195.6428571429, 53.3571428571) 0%, rgb(13.5561797753, 113.4438202247, 54.9382022472) 100%);
}

.gallery-slider img {
  width: 100%;
  aspect-ratio: 6.8/4.2;
  object-fit: cover;
  border-radius: 5px 20px 20px;
}

.about-main-section .row {
  gap: 30px 0;
}
.about-main-section img {
  border-radius: 8px 20px 20px;
}

.about-vision-section h2 {
  margin-bottom: -0.8em;
  margin-left: 20px;
}
.about-vision-section .bullets {
  border-radius: 10px 20px 20px;
  padding: 80px 40px 40px;
  border: 2px solid #e8e8e8;
}
.about-vision-section .bullets .bullet-col {
  position: relative;
  padding-right: 40px;
}
.about-vision-section .bullets .bullet-col:not(:last-child)::after {
  content: "";
  top: 0;
  position: absolute;
  height: 100%;
  background-color: #acd25a;
  width: 2px;
  right: 15px;
}
.about-vision-section .bullets .bullet {
  width: 15em;
  max-width: 100%;
}

.about-values-section h2 {
  margin-bottom: 50px;
}
.about-values-section .bullet {
  position: relative;
  padding: 40px 20px 30px;
  border-radius: 20px;
  overflow: hidden;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  color: #fff;
}
.about-values-section .bullet::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0.5;
  transition: 0.4s;
  background-image: linear-gradient(0, rgb(0, 0, 0), rgba(0, 0, 0, 0.5) 40%);
}
.about-values-section .bullet::after {
  content: "";
  position: absolute;
  left: 0;
  background-image: linear-gradient(270deg, #ACD25A 0%, #139F4D 100%);
  width: 50%;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  height: 10px;
  transition: 0.5s;
  border-radius: 10px 10px 0 0;
}
.about-values-section .bullet .texts {
  z-index: 3;
}
.about-values-section .bullet .contnet-wrapper {
  position: relative;
}
.about-values-section .bullet .hidden-content {
  visibility: hidden;
}
.about-values-section .bullet .visible-content {
  display: none;
}
.about-values-section .bullet:hover::before {
  opacity: 1;
}
.about-values-section .bullet:hover::after {
  width: 100%;
  height: 100%;
  opacity: 0.85;
}
.about-values-section .mobile-bullets {
  gap: 30px 0;
}
.about-values-section .mobile-bullets .image-wrapper {
  width: 100%;
  aspect-ratio: 1/1;
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 15px;
}
.about-values-section .mobile-bullets .image-wrapper::after {
  content: "";
  position: absolute;
  left: 0;
  background-image: linear-gradient(270deg, #ACD25A 0%, #139F4D 100%);
  width: 50%;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  height: 10px;
  transition: 0.5s;
  border-radius: 10px 10px 0 0;
}
.about-values-section .mobile-bullets .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.catalog-top-title-section {
  padding-top: var(--header-height) !important;
  overflow: visible;
}
.catalog-top-title-section .full-container {
  border: 2px solid #ddd;
  border-radius: 30px;
  color: #1B1B1B;
  overflow: visible;
}
.catalog-top-title-section .full-container .container {
  min-height: 200px;
  padding-top: 50px !important;
}
.catalog-top-title-section .flex-end {
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
}
.catalog-top-title-section .image-wrapper {
  background-color: #fff;
  position: relative;
  border-radius: 5px 20px 20px;
  overflow: hidden;
  border: 2px solid #ddd;
  aspect-ratio: 6/4;
  margin-bottom: -100px;
}

.product-cat-main-section .btns {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 15px;
  margin-bottom: 30px;
}
.product-cat-main-section .image-wrapper {
  background-color: #fff;
  position: relative;
  border-radius: 5px 20px 20px;
  overflow: hidden;
  border: 2px solid #ddd;
  aspect-ratio: 6/4;
  width: 500px;
  max-width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.sub-category-section {
  padding-top: 50px;
}
.sub-category-section .top-products-part {
  display: flex;
  margin-bottom: 40px;
}
.sub-category-section .top-products-part .left-elmnts {
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  padding-right: 30px;
  border-top: 2px solid #E8E8E8;
  min-width: 40%;
}
.sub-category-section .top-products-part .left-elmnts .title {
  position: relative;
  padding-left: 30px;
  min-height: 5rem;
  display: flex;
  align-items: center;
}
.sub-category-section .top-products-part .left-elmnts .title::before {
  content: "";
  width: 15px;
  height: 100%;
  min-height: 60px;
  background-color: #139f4d;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 0 10px 10px 0;
}
.sub-category-section .top-products-part svg {
  height: 77px;
  width: auto;
}
.sub-category-section .top-products-part .right-elmnts {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding-left: 30px;
  border-bottom: 2px solid #E8E8E8;
}
.sub-category-section .top-products-part .right-elmnts .btn {
  padding: 4px 20px;
}
.sub-category-section .top-products-part .swiper-pagination {
  position: relative;
  margin-inline-start: 30px;
  width: auto;
  bottom: auto;
}
.sub-category-section .swiper-outer-wrapper {
  position: relative;
}
.sub-category-section .swiper-outer-wrapper .custom-prev,
.sub-category-section .swiper-outer-wrapper .custom-next {
  top: 125px;
}

.product-catalog-page .section {
  padding: 60px 0;
}

.product-cats-section.other-section .container {
  border-top: 2px solid #ddd;
  padding-top: 60px;
}
.product-cats-section.other-section .product-cat-item-col {
  max-width: 280px;
}
.product-cats-section.other-section .product-cat-item-col .image-wrapper {
  margin-bottom: 15px;
  border-radius: 5px 10px 10px 10px;
}
.product-cats-section.other-section .product-cat-item-col .btn {
  transform: scale(0.8);
}

.product-main-section .gallery-slider img {
  width: 100%;
  aspect-ratio: 3.2/2.5;
  object-fit: contain;
  background-color: #fff;
  position: relative;
  border-radius: 5px 20px 20px;
  overflow: hidden;
  border: 2px solid #ddd;
}
.product-main-section .download-items {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 40px;
}
.product-main-section .swiper-outer-wrapper {
  padding-bottom: 50px;
}
.product-main-section .swiper-pagination {
  display: flex;
  justify-content: flex-end;
}

.download-items {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 40px;
}

.download-item {
  display: flex;
  gap: 20px;
  align-items: center;
  display: flex;
  color: #1B1B1B;
  padding: 2px 15px;
  margin-left: -15px;
  gap: 15px;
}
.download-item .name {
  flex: 1;
}
.download-item svg {
  margin-top: 5px;
}
.download-item:hover {
  color: #1B1B1B;
  background-color: rgba(232, 232, 232, 0.5);
  border-radius: 5px 10px 10px 10px;
}

.text-card-section .top-part {
  display: flex;
  align-content: center;
}
.text-card-section .top-part .left-elmnts {
  border-radius: 30px 0 0 0;
  background-color: #e8e8e8;
  width: 50%;
  padding-left: 50px;
  display: flex;
  align-items: flex-end;
}
.text-card-section .content {
  position: relative;
  padding: 30px 50px 50px;
  border-radius: 0 30px 30px 30px;
}
.text-card-section .content::before {
  content: "";
  width: 15px;
  height: 100%;
  background-color: #139f4d;
  position: absolute;
  left: 0;
  bottom: 50px;
  border-radius: 0 10px 10px 0;
}

.product-img-wrapper img {
  width: 100%;
  aspect-ratio: 3.2/2.5;
  object-fit: contain;
  background-color: #fff;
  position: relative;
  border-radius: 5px 20px 20px;
  overflow: hidden;
  border: 2px solid #ddd;
}

.accordion-section .top-accordion-part {
  display: flex;
  background-color: #e8e8e8;
  border-radius: 5px 10px 10px 10px;
  margin-bottom: 20px;
  padding: 15px 30px;
  align-items: center;
}
.accordion-section .top-accordion-part .content {
  flex: 1;
}
.accordion-section .top-accordion-part .arrow {
  height: 30px;
  width: 30px;
  margin-inline-start: 30px;
  padding: 0;
}
.accordion-section .top-accordion-part .arrow svg {
  transition: 0.5s;
  transform: translateY(0);
}
.accordion-section .bottom-accordion-part {
  padding-bottom: 50px;
}
.accordion-section .single-row.active .arrow svg {
  transform: rotate(90deg);
}
.accordion-section .single-row.active .arrow svg path {
  fill: #1B1B1B;
}

.page-wrap.contact #breadcrumbs {
  padding-top: var(--header-height) !important;
  margin-top: 0;
  padding-bottom: 0;
  margin-bottom: 0;
}

.hose-configurator {
  overflow: visible;
  /* Fields */
}
.hose-configurator .hc-field {
  margin-bottom: 30px;
}
.hose-configurator .hc-field label {
  display: block;
  font-weight: 700;
  margin-bottom: 6px;
}
.hose-configurator {
  /* Select */
}
.hose-configurator .hc-select-wrap {
  position: relative;
}
.hose-configurator .hc-select-wrap::after {
  content: "▾";
  position: absolute;
  right: 11px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2em;
  color: #1b1b1b;
  pointer-events: none;
}
.hose-configurator .hc-select-wrap .hc-select-wrap select,
.hose-configurator #hc-panel select {
  width: 100%;
  padding: 9px 32px 9px 11px;
  border: 1.5px solid #e8e8e8;
  border-radius: 8px;
  background: #fff;
  appearance: none;
  cursor: pointer;
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.hose-configurator .hc-select-wrap select:focus,
.hose-configurator #hc-panel select:focus {
  border-color: #139f4d;
  box-shadow: 0 0 0 3px rgba(19, 159, 77, 0.12);
}
.hose-configurator .hc-select-wrap select:disabled {
  background: #f4f5f7;
  color: #aaa;
  cursor: not-allowed;
}
.hose-configurator {
  /* Text / number inputs */
}
.hose-configurator #hc-panel input[type=number],
.hose-configurator #hc-panel input[type=text] {
  width: 100%;
  padding: 9px 11px;
  border: 1.5px solid #E8E8E8;
  border-radius: 8px;
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.hose-configurator #hc-panel input[type=number]:focus,
.hose-configurator #hc-panel input[type=text]:focus {
  border-color: #139f4d;
  box-shadow: 0 0 0 3px rgba(19, 159, 77, 0.12);
}
.hose-configurator #hc-length-custom {
  margin-top: 7px;
}
.hose-configurator #hc-qty {
  width: 100%;
}
.hose-configurator {
  /* Color display (NFPA/ISO) */
}
.hose-configurator .hc-color-display {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 9px 11px;
  border: 1.5px solid #E8E8E8;
  border-radius: 8px;
  background: #f9fafb;
  color: #555;
  transition: border-color 0.2s;
}
.hose-configurator .hc-color-display .hc-swatch {
  width: 14px;
  height: 14px;
  border-radius: 3px;
  border: 1.5px solid rgba(0, 0, 0, 0.15);
  flex-shrink: 0;
  transition: background 0.25s;
}
.hose-configurator {
  /* ── Fitting field hide animation ── */
}
.hose-configurator .hc-fitting-field {
  overflow: hidden;
  transition: opacity 0.2s ease, max-height 0.25s ease;
}
.hose-configurator .hc-fitting-field[style*="display: none"],
.hose-configurator .hc-fitting-field[style*="display:none"] {
  max-height: 0;
  opacity: 0;
}
.hose-configurator {
  /* Toggle */
}
.hose-configurator .hc-toggle-row {
  display: flex;
  align-items: center;
  gap: 9px;
}
.hose-configurator .toggle-label {
  font-weight: 400;
  transition: color 0.15s;
  cursor: pointer;
  user-select: none;
}
.hose-configurator .toggle-label.active {
  font-weight: 700;
}
.hose-configurator .hc-toggle {
  position: relative;
  width: 40px;
  height: 22px;
  border-radius: 11px;
  background: #e8e8e8;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
  outline: none;
  transition: background 0.15s;
}
.hose-configurator .hc-toggle-thumb {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #1B1B1B;
  transition: left 0.18s ease;
}
.hose-configurator .hc-toggle[data-state=Female] .hc-toggle-thumb {
  left: 21px;
}
.hose-configurator {
  /* Divider */
}
.hose-configurator .hc-divider {
  border: none;
  border-top: 1px solid #f0f0f0;
  margin: 8px 0 16px;
}
.hose-configurator {
  /* Note */
}
.hose-configurator .hc-note {
  margin: 4px 0 0;
  font-size: 1.5rem;
  color: #bbb;
  font-style: italic;
}
.hose-configurator {
  /* Buttons */
}
.hose-configurator .hc-btn-row {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}
.hose-configurator .hc-btn-clear {
  border-width: 1px;
  border-color: #1b1b1b;
}
.hose-configurator {
  /* CF7 override – hide CF7's default submit, we replace it */
}
.hose-configurator #hc-panel .wpcf7-form p {
  margin: 0;
}
.hose-configurator #hc-panel .wpcf7-submit {
  padding: 11px 26px;
  background: var(--green);
  color: #fff;
  border: none;
  border-radius: 22px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  box-shadow: 0 2px 12px rgba(45, 138, 54, 0.38);
  margin-top: 10px;
}
.hose-configurator #hc-panel .wpcf7-response-output {
  margin: 10px 0 0;
  font-size: 12px;
  border-radius: 6px;
  padding: 8px 12px;
}
.hose-configurator #hc-preview {
  flex: 1;
  padding: 30px 36px;
  margin-top: -200PX;
}
.hose-configurator #hc-preview.hc-preview-blank {
  display: none;
}
.hose-configurator #hc-preview .sticky-right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  position: sticky;
  top: var(--header-height);
}
.hose-configurator #hc-preview {
  /* Image Card */
}
.hose-configurator #hc-preview .hc-image-card {
  background-color: #fff;
  border-radius: 10px;
  border: 2px solid #e8e8e8;
  padding: 22px 24px 14px;
}
.hose-configurator #hc-preview {
  /*
    3-layer composite layout:
    [rear connector] [hose body] [front connector]
    all aligned on the same horizontal baseline.
  */
}
.hose-configurator #hc-preview #hc-image-wrap {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  min-height: 160px;
}
.hose-configurator #hc-preview {
  /* Hose body — stretches to fill available space */
}
.hose-configurator #hc-preview .hc-hose-wrap {
  flex: 1;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  position: relative;
  min-height: 120px;
  width: 43%;
}
.hose-configurator #hc-preview #hc-hose-img {
  width: 100%;
  max-height: 160px;
  object-fit: contain;
  display: block;
  transition: opacity 0.25s ease;
  margin-top: 8%;
}
.hose-configurator #hc-preview {
  /* Connector columns — fixed width, centered */
}
.hose-configurator #hc-preview .hc-conn-wrap {
  flex-shrink: 0;
  width: 28.5%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  position: relative;
}
.hose-configurator #hc-preview .hc-conn-wrap img {
  width: 100%;
  object-fit: contain;
  display: block;
  transition: opacity 0.25s ease;
}
.hose-configurator #hc-preview {
  /* Rear connector sits on the left, flush against hose */
}
.hose-configurator #hc-preview .hc-conn-rear {
  order: 3;
  transform: translate(-25%, -0.7%);
}
.hose-configurator #hc-preview .hc-hose-wrap {
  order: 2;
}
.hose-configurator #hc-preview .hc-conn-front {
  order: 1;
  transform: translateX(8%);
}
.hose-configurator #hc-preview {
  /* Small label under each connector */
}
.hose-configurator #hc-preview .hc-conn-label {
  margin: 0;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: var(--text-soft);
  text-align: center;
}
.hose-configurator #hc-preview {
  /* Fallback placeholder when image file is missing */
}
.hose-configurator #hc-preview .hc-conn-missing {
  display: none !important;
}
.hose-configurator #hc-preview .hc-filename {
  margin: 10px 0 0;
  font-size: 0.5em;
  color: var(--text-soft);
  text-align: center;
  letter-spacing: 0.3px;
  line-height: 1.6;
}
.hose-configurator #hc-preview {
  /* Formula Card */
}
.hose-configurator #hc-preview .hc-formula-card {
  padding: 16px 20px;
}
.hose-configurator #hc-preview .hc-formula-boxes {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 4px;
  justify-content: flex-start;
}
.hose-configurator #hc-preview .hc-seg-box {
  border: 1px solid #e8e8e8;
  border-radius: 6px;
  padding: 6px 10px;
  min-width: 32px;
  text-align: center;
  background: #fff;
}
.hose-configurator #hc-preview .hc-seg-box .seg-val {
  font-size: 1em;
  font-weight: 700;
}
.hose-configurator #hc-preview .hc-seg-box .seg-lbl {
  font-size: 0.5em;
  color: var(--text-soft);
  margin-top: 2px;
  text-transform: uppercase;
}
.hose-configurator #hc-preview .hc-seg-sep {
  color: #ccc;
  align-self: flex-start;
  padding: 6px 2px 0;
}
.hose-configurator #hc-preview {
  /* Part Number Card */
}
.hose-configurator #hc-preview .hc-part-card {
  padding: 14px 24px;
}
.hose-configurator #hc-preview {
  /* Description Card */
}
.hose-configurator #hc-preview .hc-desc-card {
  padding: 16px 22px;
}
.hose-configurator #hc-preview .hc-desc-main {
  margin: 0 0 4px;
  font-weight: 600;
  color: var(--text-dark);
}
.hose-configurator #hc-preview .hc-desc-sub {
  margin: 2px 0;
}
.hose-configurator #hc-preview {
  /* Warning */
}
.hose-configurator #hc-preview .hc-warning {
  width: 100%;
  max-width: 520px;
  background: #fff8f0;
  border: 1.5px solid #f0c090;
  border-radius: var(--radius);
  padding: 12px 18px;
  font-size: 13px;
  color: #a05010;
}

/* Edit Above Only*/
.mobile_menu_button {
  position: relative;
  display: none;
}

.triggerMobileMenu {
  position: relative;
  width: 30px;
  height: 20px;
  padding: 0;
  border: 0;
  margin: 10px auto;
  transform: rotate(0deg);
  transition: 0.5s ease-in-out;
  cursor: pointer;
  background: none;
  text-indent: -99999px;
}
.triggerMobileMenu span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: rgba(27, 27, 27, 0.5);
  border-radius: 9px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}
.triggerMobileMenu span:nth-child(1) {
  top: 0px;
}
.triggerMobileMenu span:nth-child(2) {
  top: 9px;
}
.triggerMobileMenu span:nth-child(3) {
  top: 18px;
}
.triggerMobileMenu.open span:nth-child(1) {
  top: 11px;
  transform: rotate(135deg);
}
.triggerMobileMenu.open span:nth-child(2) {
  opacity: 0;
  left: -60px;
}
.triggerMobileMenu.open span:nth-child(3) {
  top: 11px;
  transform: rotate(-135deg);
}

.button.triggerMobileMenu:focus,
.button.triggerMobileMenu:hover {
  background: none;
  outline: none;
}

/** off-cnavas (mobile menu wrapper) ****************/
.off-canvas {
  position: fixed;
  z-index: 1;
  transition: transform 0.5s ease;
  backface-visibility: hidden;
  background: #fff;
  box-shadow: 1px 1px 15px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  color: #fff;
  top: 70px;
  width: calc(100% - 20px);
  height: calc(100% - 150px);
  overflow-y: auto;
  left: 0;
  transform: translateY(150%);
  padding: 20px;
}
.off-canvas.is-open {
  z-index: 99999;
  transform: translate(0);
  left: 10px;
  bottom: 10px;
}
.off-canvas .top-menu {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  gap: 10px;
  color: #1B1B1B;
}
.off-canvas .top-menu > * {
  border-bottom: 1px solid #E8E8E8;
  padding: 10px 15px;
}
.off-canvas .top-menu a {
  color: #1B1B1B;
}
.off-canvas .top-menu .login {
  color: #139F4D;
}
.off-canvas .top-menu .search-form {
  display: flex;
}
.off-canvas .top-menu .search-form form {
  width: 200px;
  opacity: 1;
}
.off-canvas .top-menu .search-form form input {
  width: 100%;
  padding: 0 10px;
  border: 0;
  border: 1px solid rgba(27, 27, 27, 0.5);
  border-radius: 30px;
}
.off-canvas .top-menu .search-form form input:focus {
  outline: none;
  border: 1px solid #139F4D;
}
.off-canvas .top-menu .lang-item {
  font-size: 2.2rem;
  list-style: none;
}
.off-canvas .top-menu .socials {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
}
.off-canvas .top-menu .social-link {
  display: flex;
}
.off-canvas .top-menu .search-icon {
  cursor: pointer;
  padding-right: 5px;
}
.off-canvas .top-menu .search-icon svg path {
  fill: #1B1B1B;
}

body.admin-bar .off-canvas {
  top: 32px;
}

/** Mobile Menu Style **************/
.mobile_menu_holder {
  position: relative;
}

ul#mobile-menu {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  justify-content: center;
  text-align: center;
}
ul#mobile-menu > li {
  position: relative;
  display: block;
  border-bottom: 1px solid #E8E8E8;
}
ul#mobile-menu > li > a {
  position: relative;
  display: block;
  font-size: 2.5rem;
  text-decoration: none;
  padding: 10px 15px;
  color: #1B1B1B;
}
ul#mobile-menu > li.button {
  margin-top: 20px;
  display: inline-block;
}
ul#mobile-menu > li.button a {
  padding: 0;
}
ul#mobile-menu li.menu-item-has-children > a {
  display: inline-block;
  padding-right: 5px;
}
ul#mobile-menu li.menu-item-has-children > a::after {
  content: "+";
  display: inline-block;
  position: absolute;
  left: 100%;
  width: 0.7em;
  color: #ACD25A;
  font-weight: 700;
  font-size: 1em;
  margin-left: 10px;
}
ul#mobile-menu li.menu-item-has-children.opened > a::after {
  content: "-";
}
ul#mobile-menu li.menu-item-has-children .container {
  padding: 0;
}
ul#mobile-menu ul.sub-menu,
ul#mobile-menu .mega-menu-wrapper,
ul#mobile-menu .mega-subterms {
  position: relative;
  display: none;
  padding: 0;
  padding-bottom: 20px;
}
ul#mobile-menu ul.sub-menu li a,
ul#mobile-menu ul.sub-menu .mega-term-item a,
ul#mobile-menu .mega-menu-wrapper li a,
ul#mobile-menu .mega-menu-wrapper .mega-term-item a,
ul#mobile-menu .mega-subterms li a,
ul#mobile-menu .mega-subterms .mega-term-item a {
  position: relative;
  padding: 0px 0 10px 15px;
  font-size: 0.9em;
  color: #1B1B1B;
}
ul#mobile-menu .mega-term-image {
  display: none;
}
ul#mobile-menu ul {
  padding: 0;
}

ul#mobile-menu > li > a:focus,
ul#mobile-menu > li.current-menu-item > a,
ul#mobile-menu ul.sub-menu li.current-menu-item a,
ul.mobile_menu > li a:hover {
  color: #139F4D;
}

/****************************************************************************************************************/
@media only screen and (max-width: 1540px) {
  html {
    font-size: 8px;
  }
  h2 {
    font-size: 3.5rem;
    line-height: 1.1;
  }
  .section {
    padding: 70px 0;
  }
  .seperator-line {
    margin: 30px 0;
  }
  .page-template-quality-management-system #breadcrumbs {
    margin-bottom: 25px;
  }
  .page-template-quality-management-system .archive-downloads-section h3 {
    padding: 10px 15px;
  }
  .page-template-quality-management-system .archive-downloads-section .inner {
    padding-left: 15px;
  }
  .page-template-quality-management-system .download {
    margin: 10px 0;
  }
  .page-template-quality-management-system .download svg {
    margin-left: 20px;
    width: 32px;
  }
  .archive-downloads-section {
    padding-bottom: 0 !important;
  }
  .archive-downloads-section h2 {
    margin-bottom: 5px;
    margin-left: 0;
  }
  .archive-downloads-section .container {
    padding: 0px 15px;
  }
  .archive-downloads-section .project-item-col {
    margin-bottom: 5px;
  }
  .big-title {
    font-size: 5rem;
    line-height: 1.1;
  }
  .text-40 {
    font-size: 3.5rem;
  }
  .text-35 {
    font-size: 3.2rem;
  }
  .text-30 {
    font-size: 2.8rem;
  }
  header .logo img {
    max-width: 250px;
  }
  ul#main-menu > li > a {
    padding: 5px 10px;
  }
  ul#main-menu > li:last-child > a {
    padding-inline-end: 0;
  }
  .container {
    max-width: 1200px;
  }
  .hp-top-section {
    padding-top: 35px;
    padding-bottom: 35px;
  }
  .hp-top-section .content-elements {
    padding-top: 150px;
    padding-bottom: 200px;
  }
  .hp-top-section .applications .application-item .icon img {
    max-width: 50px;
  }
  .innovation-section .content-elements {
    max-width: 480px;
  }
  .innovation-section img {
    left: 630px;
    width: 400px;
    top: -80px;
    height: auto;
  }
  .steps-wrapper .step-item {
    max-width: 180px;
  }
  #projects-map {
    max-height: 80vh;
  }
  #projects-map .popup-content {
    max-width: 350px;
  }
  .post-content .swiper-outer-wrapper {
    width: 1170px;
  }
  .top-title-section {
    min-height: 500px;
  }
  .top-title-section.short {
    min-height: 250px;
  }
  .product-catalog-page .section {
    padding: 50px 0;
  }
  .product-cats-section.other-section .product-cat-item-col {
    max-width: 240px;
  }
}
/* end of (max-width: 1540px) */
/****************************************************************************************************************/
@media only screen and (max-width: 1200px) {
  .mobile_menu_button {
    display: block;
  }
  .wrap_main_menu {
    display: none;
  }
  body.admin-bar .off-canvas {
    top: 46px;
  }
  .swiper-outer-wrapper {
    padding-left: 30px;
    padding-right: 30px;
  }
  .swiper-outer-wrapper .custom-prev {
    left: -2px;
    right: auto;
    padding: 0;
  }
  .swiper-outer-wrapper .custom-prev svg {
    width: 20px;
  }
  .swiper-outer-wrapper .custom-next {
    right: -2px;
    left: auto;
    padding: 0;
  }
  .swiper-outer-wrapper .custom-next svg {
    width: 20px;
  }
}
/* end of (max-width: 1200px) */
/****************************************************************************************************************/
@media only screen and (max-width: 990px) {
  .page-template-quality-management-system .top-title-section {
    min-height: 320px;
  }
  .page-template-quality-management-system .image.bg-image {
    width: 85%;
  }
  .post-type-archive-downloads .top-title-section {
    min-height: 300px;
  }
  .post-type-archive-downloads .top-title-section .full-container .container {
    padding-top: 50px;
  }
  .post-type-archive-downloads .archive-downloads-section h2 {
    padding: 10px 45px 10px 15px;
  }
  .post-type-archive-downloads .project-item svg {
    width: 35px;
    height: auto;
  }
  .steps-wrapper {
    flex-direction: column;
    width: 300px;
    max-width: 100%;
    margin: 50px auto;
  }
  .steps-wrapper .line-element {
    position: absolute;
    height: 100%;
    width: 2px;
    top: 0;
    left: 0;
  }
  .steps-wrapper .line-element .start-shape {
    left: -10px;
    top: -12px;
    height: 24px;
    width: 24px;
  }
  .steps-wrapper .line-element .end-shape {
    right: -23px;
    top: auto;
    bottom: -13px;
    height: 30px;
    width: 24px;
    transform: rotate(90deg);
    transform-origin: left center;
  }
  .steps-wrapper .line-element .end-shape svg {
    width: 100%;
    height: 100%;
  }
  .steps-wrapper .step-item {
    max-width: 100%;
    display: flex;
    flex-wrap: wrap;
    padding-left: 25px;
    text-align: left;
    gap: 15px;
  }
  .steps-wrapper .step-item .step-title {
    align-self: flex-end;
    margin: 0;
    word-break: break-all;
  }
  .steps-wrapper .step-item .step-number {
    font-size: 8rem;
    margin: 0;
  }
  .steps-wrapper .step-item .image {
    margin-top: 0;
    flex: 100%;
  }
  .steps-wrapper .step-item .image img {
    border-radius: 15px 5px 15px 15px;
    object-fit: cover;
    aspect-ratio: 3.5/4;
    width: 220px;
  }
}
/* end of (max-width: 990px) */
/****************************************************************************************************************/
@media only screen and (max-width: 768px) {
  .mobile {
    display: block;
  }
  .desk {
    display: none;
  }
  h1 {
    font-size: 4rem;
  }
  h2 {
    font-size: 3.2rem;
    line-height: 1.1;
  }
  .big-title {
    font-size: 4.2rem;
    line-height: 1.1;
  }
  .text-40 {
    font-size: 3.5rem;
  }
  .text-30 {
    font-size: 2.8rem;
  }
  .btn {
    padding: 5px 20px;
  }
  .floating-btn {
    max-width: 9em;
    top: 70px;
    font-size: 1.8rem;
  }
  .content.two-columns {
    columns: 1;
  }
  header {
    padding-top: 15px;
  }
  header .container {
    padding-left: 15px;
    padding-right: 15px;
  }
  header .nav {
    padding-right: 15px;
  }
  header .top-menu {
    display: none;
  }
  header .logo img {
    width: 170px;
  }
  header .logo img.main-logo {
    padding-left: 15px;
  }
  header.scrolled .nav {
    padding-right: 0;
  }
  .container.full-container {
    max-width: 100%;
  }
  .section {
    padding: 50px 0;
  }
  .hp-top-section {
    padding-top: 15px;
    padding-bottom: 30px;
    min-height: auto;
  }
  .hp-top-section .video-wrapper {
    left: 15px;
    width: calc(100% - 30px);
  }
  .hp-top-section .content-elements {
    padding-top: 120px;
    padding-bottom: 50px;
  }
  .hp-top-section .applications {
    display: none;
  }
  .top-title-section {
    min-height: 300px;
    padding-top: 15px !important;
    padding-bottom: 30px !important;
  }
  .top-title-section .full-container {
    width: calc(100% - 30px);
    border-radius: 25px;
  }
  .top-title-section .full-container.light-bg {
    background-size: auto 100%;
  }
  .top-title-section .full-container.light-bg::before {
    background-image: linear-gradient(90deg, #d9d9d9 30%, rgba(255, 255, 255, 0.5));
  }
  .top-title-section .full-container .container {
    padding-top: 130px;
    padding-bottom: 30px;
    padding-left: 0;
    padding-right: 0;
  }
  .top-title-section .full-container h1 svg {
    height: 1em;
    width: auto;
  }
  .applications-section-mobile {
    padding-top: 0;
  }
  .applications-section-mobile .applications {
    display: flex;
    flex-wrap: wrap;
  }
  .applications-section-mobile .applications .application-item-wrapper {
    flex: 1;
    text-align: center;
  }
  .applications-section-mobile .applications .application-item-wrapper .icon {
    margin-bottom: 20px;
  }
  .applications-section-mobile .applications .application-item-wrapper .plus {
    font-size: 3rem;
    line-height: 1;
  }
  .hp-about-section .yt-side {
    margin-bottom: 20px;
  }
  .product-cats-section .product-cat-item-col {
    margin-top: 30px;
    margin-bottom: 0;
  }
  .product-cats-section .product-cat-item .image-wrapper {
    margin-bottom: 10px;
  }
  .product-cats-section .product-cat-item .image-wrapper .btn {
    top: calc(100% - 7px);
    width: 50%;
    border-radius: 5px;
  }
  .product-cats-section .product-cat-item h3 {
    font-size: 2.2rem;
  }
  .product-cats-section .product-cat-item h3::after {
    content: "+";
    display: block;
  }
  .product-cats-section .product-cat-item:hover .btn {
    top: calc(100% - 7px);
  }
  .innovation-section {
    padding-bottom: 100px;
  }
  .innovation-section .title-bg {
    margin-left: auto;
    margin-right: auto;
    width: 80%;
  }
  .innovation-section .dark-bg {
    padding: 50px 30px 30px 30px;
  }
  .innovation-section .content-elements {
    max-width: 100%;
  }
  .innovation-section img {
    position: relative;
    left: 0;
    top: 0;
    margin-top: 20px;
    margin-bottom: -80px;
  }
  .innovation-section .btns {
    flex-wrap: wrap;
  }
  .projects-section .top-projects-part {
    margin-bottom: 20px;
  }
  .projects-section .top-projects-part .left-elmnts {
    padding-top: 10px;
    flex: 1;
  }
  .projects-section .top-projects-part .right-elmnts {
    display: none;
  }
  .projects-section .top-projects-part svg {
    height: 70px;
    width: 140px;
    min-width: 140px;
  }
  .projects-section .top-projects-part svg path {
    vector-effect: non-scaling-stroke;
  }
  .projects-section .swiper-outer-wrapper {
    position: relative;
    padding-bottom: 50px;
    margin-bottom: 20px;
  }
  .projects-section .swiper-outer-wrapper .custom-prev {
    margin-top: -4em;
  }
  .projects-section .swiper-outer-wrapper .custom-next {
    margin-top: -4em;
  }
  .contact-section {
    padding-bottom: 10px;
  }
  .contact-section .dark-bg {
    border-radius: 30px 30px 10px 30px;
    padding: 0 30px 30px 30px;
    position: relative;
  }
  .contact-section .title-row {
    position: relative;
    align-items: flex-start;
    margin-bottom: 20px;
    margin-top: -2px;
  }
  .contact-section .title-row h2, .contact-section .title-row h1 {
    margin-top: 20px;
  }
  .contact-section .title-row .shape {
    display: none;
  }
  .contact-section .logo {
    margin-bottom: 30px;
    margin-top: 30px;
  }
  .contact-section .logo img {
    width: 180px;
  }
  .contact-section .socials {
    margin-top: 20px;
    flex-direction: row;
  }
  .e2e-extended-section .extended-steps-wrapper .line-element {
    left: 20px;
    right: auto;
    height: calc(100% + 50px);
  }
  .e2e-extended-section .extended-steps-wrapper .line-element .start-shape {
    left: -10px;
    top: -12px;
    height: 24px;
    width: 24px;
  }
  .e2e-extended-section .extended-steps-wrapper .line-element .end-shape {
    height: 42px;
    width: 30px;
  }
  .e2e-extended-section .extended-steps-wrapper .step-item {
    margin-left: 30px;
    margin-bottom: 50px;
  }
  .e2e-extended-section .extended-steps-wrapper .step-item img {
    margin-bottom: 30px;
  }
  .e2e-projects-section {
    padding-top: 0;
  }
  .e2e-projects-section .e2e-project-item h3 {
    margin-left: -35px;
  }
  .e2e-experts-section .image-col {
    position: relative;
    top: 0;
    margin-top: -15px;
    margin-left: 15px;
    width: 90%;
    min-height: 0;
    z-index: 2;
    float: right;
  }
  .e2e-experts-section .image-col img {
    min-height: 150px;
  }
  .e2e-experts-section.high-img .image-col {
    margin-top: -15px;
    position: relative;
    top: auto;
    height: auto;
  }
  .e2e-experts-section.high-img .image-col img {
    width: 100%;
    height: auto;
  }
  .post-content p:first-child {
    padding-right: 0;
  }
  .post-content .swiper-outer-wrapper {
    width: 100%;
  }
  .project-content-section .row {
    flex-direction: column-reverse;
  }
  .project-content-section .post-thumb {
    margin-top: 0;
  }
  .project-content-section .post-logo {
    justify-content: flex-start;
    margin-bottom: 30px;
  }
  .nav-btns {
    padding-top: 20px;
    justify-content: flex-start;
    gap: 10px;
    height: 100%;
  }
  .nav-btns .btns {
    font-size: 1.8rem;
  }
  .app-item, .app-item:hover {
    aspect-ratio: 5/3;
    justify-content: flex-end;
    padding-bottom: 20px;
  }
  .app-item::before, .app-item:hover::before {
    opacity: 0;
    border-radius: 0;
    width: 100%;
    height: 100%;
    bottom: 0;
  }
  .app-item h3, .app-item:hover h3 {
    background-color: rgba(0, 0, 0, 0.9);
    order: 0;
  }
  .app-item .content, .app-item:hover .content {
    display: none;
  }
  .app-item .btn, .app-item:hover .btn {
    display: none;
  }
  .app-text-image-section .image {
    margin-top: 30px;
  }
  .sub-app-section .image {
    margin-top: 30px;
    margin-bottom: 30px;
  }
  .related-products-section .top-products-part {
    margin-bottom: 20px;
  }
  .related-products-section .top-products-part .left-elmnts {
    padding-top: 10px;
    flex: 1;
  }
  .related-products-section .top-products-part .right-elmnts {
    display: none;
  }
  .related-products-section .top-products-part svg {
    height: 70px;
    width: 140px;
    min-width: 140px;
  }
  .related-products-section .top-products-part svg path {
    vector-effect: non-scaling-stroke;
  }
  .related-products-section .swiper-outer-wrapper {
    position: relative;
    padding-bottom: 50px;
    margin-bottom: 20px;
  }
  .related-products-section .swiper-outer-wrapper .custom-prev, .related-products-section .swiper-outer-wrapper .custom-next {
    top: calc((100vw - 160px) / 2);
  }
  .related-products-section .top-products-part, .ifu-related-products .top-products-part {
    margin-bottom: 20px;
  }
  .related-products-section .top-products-part .left-elmnts, .ifu-related-products .top-products-part .left-elmnts {
    padding-top: 10px;
    flex: 1;
  }
  .related-products-section .top-products-part .right-elmnts, .ifu-related-products .top-products-part .right-elmnts {
    display: none;
  }
  .related-products-section .top-products-part svg, .ifu-related-products .top-products-part svg {
    height: 70px;
    width: 140px;
    min-width: 140px;
  }
  .related-products-section .top-products-part svg path, .ifu-related-products .top-products-part svg path {
    vector-effect: non-scaling-stroke;
  }
  .related-products-section .top-projects-part, .ifu-related-products .top-projects-part {
    margin-bottom: 20px;
  }
  .related-products-section .top-projects-part .left-elmnts, .ifu-related-products .top-projects-part .left-elmnts {
    padding-top: 10px;
    flex: 1;
  }
  .related-products-section .top-projects-part .right-elmnts, .ifu-related-products .top-projects-part .right-elmnts {
    display: none;
  }
  .related-products-section .top-projects-part svg, .ifu-related-products .top-projects-part svg {
    height: 70px;
    width: 140px;
    min-width: 140px;
  }
  .related-products-section .top-projects-part svg path, .ifu-related-products .top-projects-part svg path {
    vector-effect: non-scaling-stroke;
  }
  .related-products-section .swiper-outer-wrapper, .ifu-related-products .swiper-outer-wrapper {
    position: relative;
    padding-bottom: 50px;
    margin-bottom: 20px;
  }
  .related-products-section .swiper-outer-wrapper .custom-prev,
  .related-products-section .swiper-outer-wrapper .custom-next, .ifu-related-products .swiper-outer-wrapper .custom-prev,
  .ifu-related-products .swiper-outer-wrapper .custom-next {
    top: calc((100vw - 160px) / 2);
  }
  .other-apps-section .top-projects-part {
    margin-bottom: 20px;
  }
  .other-apps-section .top-projects-part .left-elmnts {
    padding-top: 10px;
    flex: 1;
  }
  .other-apps-section .top-projects-part .right-elmnts {
    display: none;
  }
  .other-apps-section .top-projects-part svg {
    height: 70px;
    width: 140px;
    min-width: 140px;
  }
  .other-apps-section .top-projects-part svg path {
    vector-effect: non-scaling-stroke;
  }
  .top-innovation-section {
    overflow: visible;
  }
  .top-innovation-section .images-col {
    margin-top: 20px;
  }
  .top-innovation-section .images-col .screen-col {
    left: 50px;
  }
  .top-innovation-section .images-col .image-col img {
    border-radius: 10px 40px 40px 40px;
    aspect-ratio: 6/5;
    object-fit: cover;
  }
  .top-accordion-part {
    align-items: flex-start;
  }
  .top-accordion-part .left-elmnts {
    flex: 1;
    min-width: none;
  }
  .top-accordion-part .right-line {
    padding: 0;
    display: none;
  }
  .top-accordion-part svg {
    height: 30px;
    width: auto;
  }
  .top-accordion-part svg path {
    vector-effect: non-scaling-stroke;
  }
  .top-accordion-part .arrow {
    height: 30px;
  }
  .top-accordion-part .arrow svg {
    height: auto;
  }
  .ifu-filters-section {
    padding-top: 0 !important;
  }
  .ifu-filters-section .ifu-filters {
    gap: 15px;
  }
  .ifu-filters-section .ifu-filters label {
    padding: 2px 15px;
    font-size: 1.9rem;
  }
  .ifu-child-category h2 {
    margin-top: 15px;
    margin-bottom: 0;
  }
  .ifu-downloads {
    padding-top: 0;
  }
  .e2e-custom-section .half-out img {
    margin-top: -10vw;
  }
  .hospital_overview-section .row {
    gap: 30px 0;
  }
  .about-vision-section .bullets {
    padding: 40px 20px 20px;
    max-width: calc(100% - 30px);
    margin: 0 auto;
  }
  .about-vision-section .bullets .bullet-col:not(:last-child) {
    margin-bottom: 20px;
    padding-bottom: 20px;
  }
  .about-vision-section .bullets .bullet-col:not(:last-child)::after {
    width: 50%;
    height: 2px;
    top: auto;
    bottom: 0;
    left: 20px;
  }
  .catalog-top-title-section {
    padding-top: var(--header-height) !important;
  }
  .product-main-section .row {
    flex-direction: column-reverse;
    gap: 30px 0;
  }
  .product-main-section .swiper-pagination {
    justify-content: center;
  }
  .sub-category-section .top-products-part .left-elmnts {
    flex: 1;
    padding: 15px 0 0 0;
  }
  .sub-category-section .top-products-part .right-elmnts {
    display: none;
  }
  .catalog-top-title-section .full-container .container {
    padding-top: 80px !important;
  }
  .product-cats-section.other-section .product-cat-item-col .btn {
    transform: scale(1);
  }
}
/* end of (max-width: 768px) */
/****************************************************************************************************************/
/* end of (max-width: 576px) */
/****************************************************************************************************************/
@media only screen and (max-width: 480px) {
  .steps-wrapper {
    width: 250px;
  }
  .steps-wrapper .step-item {
    gap: 10px;
  }
  .steps-wrapper .step-item .step-number {
    font-size: 6.5rem;
  }
  .steps-wrapper .step-item .step-title {
    font-size: 1.2em;
  }
  .steps-wrapper .step-item .image img {
    border-radius: 10px 5px 10px 10px;
    object-fit: cover;
    aspect-ratio: 3.5/4;
    width: 150px;
  }
}
/* end of (max-width: 480px) */
/****************************************************************************************************************//*# sourceMappingURL=style.css.map */