:root {
  --primary: #006874;
  --primary-dark: #004f58;
  --primary-light: #97f0ff;
  --on-primary-container: #001f24;
  --bg: #f5fafb;
  --surface: #ffffff;
  --text-main: #191c1d;
  --text-muted: #3f484a;
  --radius-xl: 32px;
  --radius-l: 24px;
  --radius-m: 16px;
  --font-body: "Outfit", sans-serif;
  --shadow-soft: 0 10px 40px -10px rgba(0, 104, 116, 0.08);
}

html {
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-body);
}

h1,
h2,
h3 {
  font-family: var(--font-head);
  line-height: 1.1;
}

input, textarea, fieldset {
    border-radius: 40px;
}

fieldset {
  padding: 20px;
}

.submit {
  text-transform: none;
}

.submit:hover, .submit:focus {
  text-decoration: underline;
}

/* --- NAVIGATION --- */
.header-main-navigation {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 1200px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(15px);
  padding: 14px 28px;
  border-radius: 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.4);
}
.headerLogo {
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-links a {
  color: var(--text-main);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
}
.nav-btn {
  background: var(--primary);
  color: white;
  padding: 10px 22px;
  border-radius: 100px;
  text-decoration: none;
  font-weight: 600;
}

.nav-links {
  display: flex;
  gap: 40px;
  align-items: center;
  flex-direction: row;
}

.active {
  color: var(--primary);
}

#close-overlay {
  display: flex;
  justify-content: flex-end;
  position: relative;
  margin-left: auto;
  top: 0;
  right: 0;
  width: fit-content;
  margin-bottom: 5vh;
  fill: var(--primary);
  padding-inline: 5px;
}

#close-overlay > img {
  width: 50px;
}

.header-navi-items {
  overflow: visible;
  display: none;
}

.header-navi-items ul {
    display: inline;
    margin: 0;
    padding: 0;
}

.header-navi-items > ul > li {
    position: relative;
    float: left;
}

.header-navi-items > ul > li:last-child {
    background: var(--primary);
    border-radius: 50px;
}

.header-navi-items > ul > li:last-child a, .header-navi-items > ul > li:last-child a:hover {
  color: #fff !important;
}


.header-navi-items > ul > li:after {
  content: "";
  transition: 0.6s;
}

.header-navi-items > ul > li > ul a, .header-navi-items > ul > li > ul li .active {
  padding: 7px 20px;
  white-space: nowrap;
  -webkit-transition: background-color 0.6s ease-in, color 0.6s ease-in;
  -moz-transition: background-color 0.6s ease-in, color 0.6s ease-in;
  -o-transition: background-color 0.6s ease-in, color 0.6s ease-in;
  transition: background-color 0.6s ease-in, color 0.6s ease-in;
}

.header-navi-items > ul > li > a, .header-navi-items > ul > li > strong, .header-navi-items > ul > li > span.active, .header-navi-items > ul > li > span.trail, .header-navi-items > ul > li > span.forward {
    z-index: 1;
    position: relative;
    float: left;
    padding: 0.61538em 1.57692em 0.53846em;
    line-height: 1.61615;
    -webkit-background-clip: padding;
    -moz-background-clip: padding;
    background-clip: padding-box;
    color: var(--text-main);
    transition: 0.6s;
}

/*.header-navi-items > ul > li > a:hover, .header-navi-items > ul > li > strong:hover, .header-navi-items > ul > li > span.active:hover, .header-navi-items > ul > li > span.trail:hover, .header-navi-items > ul > li > span.forward:hover {*/
/*  color: #fff !important;*/
/*}*/

.header-navi-items > ul > li > ul {
    position: absolute;
    top: 46px;
    left: -20%;
    display: block;
    overflow: hidden;
    max-height: 0;
    min-width: 100%;
    padding: 0;
    background: rgba(255, 255, 255, 0.86);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(7.3px);
    -webkit-backdrop-filter: blur(7.3px);
    opacity: 0;
    -webkit-transition: max-height 0s, padding 0s, opacity 0.3s;
    -webkit-transition-delay: 0.3s, 0.3s, 0s;
    -moz-transition: max-height 0s 0.3s, padding 0s 0.3s, opacity 0.3s;
    -o-transition: max-height 0s 0.3s, padding 0s 0.3s, opacity 0.3s;
    transition: max-height 0s 0.3s, padding 0s 0.3s, opacity 0.3s;
    pointer-events: none;
}

.header-navi-items > ul > li > ul > li {
    margin-top: 10px;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.header-navi-items > ul > li.submenu:hover > a:after, .header-navi-items > ul > li.submenu:hover > strong:after, .header-navi-items > ul > li.submenu:hover > span.active:after, .header-navi-items > ul > li.submenu:hover > span.trail:after, .header-navi-items > ul > li.submenu:hover > span.forward:after, .header-navi-items > ul > li:hover:after {
    content: "";
    position: absolute;
    top: -0.23077em;
    right: 0;
    bottom: -0.42308em;
    left: -11%;
    width: auto;
    height: auto;
    margin-left: 0;
    border: 0;
    background: none;
    z-index: -1;
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
    transform: none;
    transition: 0.4s;
}

/*.header-navi-items > ul > li.submenu:hover > a {*/
/*  color: #fff !important;*/
/*  font-weight: bold !important;*/
/*}*/

.header-navi-items > ul > li:hover > ul {
    z-index: 1;
    max-height: 9999px;
    opacity: 1;
    -webkit-transition: opacity 0.2s;
    -moz-transition: opacity 0.2s;
    -o-transition: opacity 0.2s;
    transition: 0.5s;
    pointer-events: auto;
}

/*.header-navi-items > ul > li:hover:after {*/
/*    content: "";*/
/*    position: absolute;*/
/*    top: 50%;*/
/*    right: 0;*/
/*    bottom: 0;*/
/*    left: 0;*/
/*    z-index: 1;*/
/*    margin-top: 0.66667em;*/
/*}*/

.mobile-nav-start ul {
  display: grid;
  gap: 12px;
}

.mobile-nav-start span.active {
  box-shadow: none;
}

.mobile-nav-start a, .mobile-nav-start span.active {
	box-shadow: none;
	border: none;
	font-size: 1.4rem;
	padding: 2px 30px;
	border-radius: 20px;
}

.mobile-nav-start span.active {
  text-decoration: underline;
}

.mobile-nav-start a {
  text-decoration: none !important;
}

.mobile-nav-start a:hover {
  transition: transform 0.2s ease-in;
  transform: scale(1.05);
  background: none;
}

.mobile-nav-start ul {
  padding: 0 2.5%;
  text-align: center;
}
.mobile-nav-start ul ul,
.mobile-nav-start span.active:hover {
  background: var(--primary);
}

.mobile-nav-start li li {
  color: #fff;
}

.mod_navigation {
  position: fixed;
  bottom: 80px;
  left: 50%;
  width: 90%;
  max-width: 1100px;
  overflow-y: auto;
  background: rgba(255, 255, 255, 0.66);
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(7.3px);
  -webkit-backdrop-filter: blur(7.3px);
  border: 1px solid rgba(255, 255, 255, 0.67);
  color: var(--text-main);
  z-index: 1000;
  padding: 1em;
  border-radius: 20px;
  transition: transform 0.3s ease-out;
  transform: translateX(100%);
  top: 110px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.mod_navigation.menu-slide-open {
  transform: translateX(-50%);
}

.mod_navigation .level_1 li {
  position: relative;
}

.mod_navigation .level_1 > li:last-child a{
  background-color: var(--primary);
  color: #fff;
}

.submenu-toggle {
  position: absolute;
  right: 0;
  top: 0;
  height: auto;
  width: 50px;
  background: transparent;
  border: none;
  color: inherit;
  cursor: pointer;
  transform: rotate(0deg);
  transition: transform 0.3s ease;
}
.submenu-toggle.expand {
  padding: 0 !important;  
}

.submenu-toggle.is-active img {
  transform: rotate(180deg);
  transition: transform 0.3s ease;
}

.mod_navigation .level_2 {
  max-height: 0;
  overflow: hidden;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  background: rgba(171, 255, 248, 0.36);
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(7.3px);
  -webkit-backdrop-filter: blur(7.3px);
  transition: 0.3s;
}

.mod_navigation .level_2.is-open {
    max-height: fit-content;
    background: rgba(171, 255, 248, 0.1);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(7.3px);
    -webkit-backdrop-filter: blur(7.3px);
    border: 1px solid rgba(171, 255, 248, 0.2);
    margin-top: 10px !important;
    margin-bottom: 10px !important;
    padding-top: 10px;
    padding-bottom: 10px;
    border-radius: 20px;
}

.mobile-nav-start {
  display: block;
  border-top: none;
  padding: 0;
}

.mobile-nav-toggle {
    z-index: 10;
    border-radius: 27px;
    margin-top: 0;
    fill: #fff;
    padding: 8px 12px 5px 13px;
    font-size: 1.4em;
}

@media screen and (min-width: 900px) {
  .mobile-nav-start {
    display: none;
  }
  .mod_navigation {
    position: static;
    width: auto;
    height: auto;
    transform: none;
    display: block !important;
  }
  .mobile-nav-toggle,
  .mobile-news-toggle {
    display: none;
  }
  .submenu-toggle {
    display: none;
  }
  .header-navi-items {
    display: block;
  }
}

/* --- HERO --- */
.hero {
  padding: 145px 0 20px;
  text-align: start;
  background: #f0f4f5;
}
.digital-bg {
  background: url("../../../files/UVI_dateien/messdienst/3d-render-abstract-background-with-flowing-particles.jpg");
  background-size: cover;
}
.tag {
  background: var(--primary-light);
  color: var(--on-primary-container);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: inline-block;
}
.hero h1 {
  font-size: clamp(2.5rem, 6vw, 3.75rem);
  margin-top: 0;
  margin-bottom: 1.5rem;
  letter-spacing: -1px;
  background: linear-gradient(135deg, var(--text-main) 30%, var(--primary) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero p {
  font-size: 1.25rem;
  color: var(--text-muted);
  max-width: 750px;
  margin: 0 auto 2.5rem;
}
 .hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: start;
}

.btn-big {
  padding: 16px 32px;
  border-radius: 100px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-filled {
  background: var(--text-main);
  color: white;
}

.btn-filled:hover {
  background: var(--primary);
  box-shadow: 0 10px 20px rgba(0, 104, 116, 0.3);
  color: #fff !important;
}
.btn-ghost {
  background: white;
  color: var(--text-main);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.btn-ghost {
  background: white;
  color: var(--text-main);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* --- 1-2-3 PROCESS --- */
.process-strip {
  background: var(--surface);
  padding: 20px;
  border-radius: var(--radius-xl);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 80px;
  margin-top: 40px;
  text-align: center;
  box-shadow: var(--shadow-soft);
}
.step {
  position: relative;
}
.step-num {
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary-light);
  line-height: 1;
  margin-bottom: 10px;
  display: block;
}
.step h3 {
  margin-bottom: 8px;
  font-size: 1.4rem;
}
.step p {
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* --- BENTO GRID --- */
.solutions {
  background: #f0f4f5;
}
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 80px;
}
.bento-card {
  background: var(--surface);
  padding: 40px;
  border-radius: var(--radius-l);
  box-shadow: var(--shadow-soft);
  transition: 0.3s;
}
.bento-card.selected {
  background: var(--primary);
  color: #fff;
}
.bento-card.selected:hover {
  color: #fff !important;
}
.bento-card:hover {
  transform: translateY(-5px);
}
.span-2 {
  grid-column: span 2;
}

.span-3 {
 grid-column: span 3;  
}

.span-4 {
 grid-column: span 4;
}

.card-accent {
  background: var(--primary);
  color: white;
}
.card-accent h2,
.card-accent p {
  color: white;
}

.icon-circle {
  width: 50px;
  height: 50px;
  background: var(--bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.5rem;
}

/* --- ECOSYSTEM SPLIT --- */
.ecosystem {
  padding: 40px 0;
}
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin: 120px 0;
  align-items: center;
}
.split:first-child {
  margin: 20px 0;
}
.split:last-child {
  margin-bottom: 20px;
}
.split:nth-child(even) {
  direction: rtl;
}
.split:nth-child(even) .text-container {
  direction: ltr;
}
.text-content h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
}
.feature-list {
  list-style: none;
  margin-top: 20px;
  padding-left: 0 !important;
}
.feature-list li {
  padding: 10px 0;
  border-bottom: 1px solid #eee;
  display: flex;
  align-items: center;
  gap: 10px;
}
.feature-list li::before {
  content: "→";
  color: var(--primary);
  font-weight: bold;
}
.img-placeholder {
  background: #e0e7e9;
  border-radius: var(--radius-l);
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: var(--primary);
}

/* --- COMPARISON SECTION --- */
.comparison {
  background: white;
  padding: 40px 0;
}
.comparison-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.comp-side {
  padding: 60px;
}
.comp-old {
  background: #f0f0f0;
  color: #666;
}
.comp-new {
  background: var(--primary-light);
  color: var(--on-primary-container);
}
.comp-list {
  list-style: none !important;
  padding-left: 0 !important;
}
.comp-list li {
  margin-bottom: 16px;
  padding-left: 30px;
  position: relative;
  font-weight: 500;
}
.comp-old li::before {
  content: "✕";
  position: absolute;
  left: 0;
  color: #999;
}
.comp-new li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 800;
}

/* --- PRICING --- */
.pricing {
  padding: 50px 0;
  background: #f0f4f5;
}
.price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 50px;
}
.price-card {
  background: white;
  padding: 40px 30px;
  border-radius: var(--radius-m);
  border: 1px solid #eee;
  display: flex;
  transition: transform 0.3s;
  flex-direction: column;
}
.price-card.unlimited {
  background: var(--on-primary-container); 
  color: white;
}
.price-card:hover, .price-card:focus-within {
  border: 2px solid var(--primary);
  transform: scale(1.05);
  z-index: 2;
}
.price-card.unlimited:hover, .price-card:focus-within {
  border-color: var(--primary-light);
}
.price-card h4 {
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-bottom: 10px;
}
.price-val {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 20px;
}
.price-card ul {
  list-style: none;
  flex-grow: 1;
  margin-bottom: 30px;
}
.price-card li {
  margin-bottom: 12px;
  font-size: 0.9rem;
}
.price-features {
  padding-left: 0 !important;
}

.price-features li {
  font-size: 0.9rem;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #555;
}
.price-features.white-color li {
  color: #fff;
}

.price-features.white-color li .p-check {
  color: var(--primary-light);
}
.p-check {
  color: var(--primary);
  font-weight: bold;
}
.price-btn {
  padding: 14px;
  border-radius: 8px;
  text-align: center;
  text-decoration: none;
  font-weight: 600;
  border: 2px solid var(--primary);
  color: var(--primary);
  transition: 0.3s;
}
.price-btn:hover, .price-btn:focus {
  background: var(--primary);
  box-shadow: 0 10px 20px rgba(0, 104, 116, 0.3);
  color: #fff !important;
}
.price-btn.dark {
  border-color: white; 
  color: white;
}
.price-btn.dark:hover, .price-btn.dark:focus {
  color: #000 !important;
  background: var(--primary-light);
  box-shadow: 0 10px 20px rgba(151, 240, 255, 0.3);
  border-color: var(--primary-light);
}

/* --- CONTACT FORM --- */
.contact-form-container {
  padding: 80px 0;
}

/* --- FOOTER --- */
footer {
  background: var(--text-main);
  color: white;
  padding: 80px 0 40px;
  text-align: center;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 60px;
  text-align: left;
}

.footer-link {
  color: #fff !important;
}

.footer-link:hover,
.footer-link:focus {
  color: var(--primary-light) !important;
}

@media (max-width: 900px) {
  .process-strip,
  .bento-grid,
  .split,
  .tab-navigation.-image-tabs ul,
  .comparison-wrapper,
  .footer-grid {
    grid-template-columns: 1fr !important;
  }
  .header-main-navigation {
    justify-content: center;
  }
  .span-2, .span-3, .span-4 {
    grid-column: span 1;
  }
  .hero {
    padding-top: 120px;
    padding-bottom: 0;
  }
  .comparison {
    padding: 80px 0 0 0;
  }
  .ecosystem {
    padding-bottom: 0;
  }
  .hero h1 {
    font-size: 2.5rem;
  }
  .nav-links {
    display: none;
  }
}

/*----------------------- OLD TEMPLETE ------------------*/

.main-content label .mandatory,
a {
  color: var(--primary);
}

p {
  font-weight: 333;
}

.mobile-nav-start {
  background: #fff;
}

a:hover {
  color: var(--primary) !important;
}

button {
  background: var(--primary);
}

.grn {
  background: var(--primary) !important;
}

.red-button > .button {
  background: var(--primary) !important;
}

.red-button > .button:hover {
  color: #fff !important;
}

button:focus {
  background: var(--primary);
  color: #fff;
}

.heading {
  font-size: 2.75em !important;
}

.subheading {
  font-size: 2em !important;
}

.line-weight-250 {
  font-weight: 250 !important;
}

.white-text {
  color: #fff !important;
}

.show-mobile {
  display: none;
}

.hide-mobile {
  display: block;
}

.no-point {
  pointer-events: none;
}

.display-none {
  display: none;
}

.header_area {
  color: transparent;
}

.logo {
  left: calc(0.6666em + var(--safe-area-left));
}

.email input,
.message-field {
  width: 100% !important;
}

.border-radius-s {
  border-radius: 10px;
}

.border-radius-xl {
  border-radius: 50px;
}

.padding-20 {
  padding: 20px;
}

.tab-navigation.-image-tabs a.is-active::after {
  border-top-color: var(--primary);
}

.tab-navigation.-image-tabs a.is-active {
  color: var(--primary);
}

.tab-navigation.-image-tabs a:hover,
.tab-navigation.-image-tabs a:focus {
  color: var(--primary);
}

.tab-navigation.-image-tabs a {
  transition-duration: 0.5s;
  transition-property: transform;
}

.tab-navigation.-image-tabs a:hover,
.tab-navigation.-image-tabs a:focus {
  transform: scale(1.05);
}

.flex {
  display: flex;
}

.wrap {
  flex-wrap: wrap;
}

.row {
  flex-direction: row;
}

.column {
  flex-direction: column;
}

.wrap-rev {
  flex-wrap: wrap-reverse;
}

.al-items-center {
  align-items: center;
}

.al-items-start {
  align-items: flex-start;
}

.j-content-start {
  justify-content: flex-start;
}

.j-content-center {
  justify-content: center;
}

.j-content-even {
  justify-content: space-evenly;
}

.column_design_iot {
  color: #212529;
  background-color: #fff;
  box-shadow: 0 27px 50px 5px rgba(0, 0, 0, 0.15), 0 0 30px 0 rgba(0, 0, 0, 0.05);
  border-radius: 10px;
  padding: 40px;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.anchor-bottom {
  position: absolute !important;
  bottom: 20px;
  left: 20px;
}

.fixed_column_size {
  display: flex;
}

.icon-column .teaser-boxes-item {
  height: 500px;
  color: #212529;
  background-color: #fff;
  box-shadow: 0 27px 50px 5px rgba(0, 0, 0, 0.15), 0 0 30px 0 rgba(0, 0, 0, 0.05);
  border-radius: 10px;
  padding: 40px;
  text-align: left;
}

.fixed_column_size .teaser-boxes-content {
  height: 100%;
}

.largerField .textarea {
  height: 270px !important;
}

.column_design_iot img {
  text-align: center !important;
}

.fixed_img_size img {
  height: 25vh !important;
}

.boxed-background {
  background: #fff !important;
}

.info-list dt {
  color: black;
}

.feature-box-text p {
  margin: 0px;
  color: black;
}

.feature-box-text p:before {
  visibility: collapse;
}

.desktopVisible {
  display: initial;
}

.mobileVisible {
  visibility: hidden;
}

.uvi-cookie p,
.uvi-cookie a {
  color: black;
}

.cc-detail-btn,
.cc-detail-btn-details {
  color: black;
}
´ .cc-detail-btn:hover {
  color: var(--primary);
}

/* #################### contact fields ###################### */
.main-content label {
  color: black;
}

/* #################### Footer ############################## */

.footer-copyright {
  color: black;
}

.tab-container {
  display: flex;
  flex-direction: column;
  gap: 1em;
}

.selection-button {
  cursor: pointer;
}

.selection-content {
    display: flex;
  flex: 1;
  opacity: 1;
  transform: scale(1);
  transition: opacity .7s ease, transform .7s ease;
}

.hidden {
  opacity: 0;
  transform: scale(0.98);
  transition: opacity 0.7s ease, transform 0.7s ease;
  display: none;
}

@media screen and (max-width: 900px) {
  .logo img {
    display: inline;
    height: 1em;
  }

  .fixed_column_size {
    display: contents;
  }

  .flex-container {
    flex-direction: column;
  }

  .column_design_iot {
    padding-bottom: 100px;
  }

  .fixed_img_size img {
    height: auto !important;
  }
}

@media screen and (max-width: 599px) {
  .show-mobile {
    display: block;
  }

  .hide-mobile {
    display: none;
  }

  .-vertical-centered > .feature-box-text {
    padding: 0;
  }

  .-vertical-centered > .feature-box-text h3 {
    margin: 20px 0 0 0;
  }

  .mobileVisible {
    visibility: visible;
  }

  .desktopVisible {
    display: none;
  }
}
