@charset "UTF-8";
@import 'animate.css';

:root {
  --background: #a4b8e6; 
  --foreground: #072b56;   
  --color-text: #051f3f;
  --color-text-dark: #356195;  
  --color-hover: #fb4203;
  --shadow-header: rgba(0, 0, 0, 0.25) 0px 14px 28px, rgba(0, 0, 0, 0.22) 0px 10px 10px;
  --shadow-text: 0 14px 28px rgba(0, 0, 0, 0.25);
  --menu-list: #1a73d8;
  --shadow-soft: 0 4px 12px rgba(0, 0, 0, 0.3);
  --aero: rgba(255, 255, 255, 0.15);
  --aero1:rgba(255, 255, 255, 0.05);
  --shadow-menu: 2px 0 10px rgba(0, 0, 0, 0.3);
  --modal: rgba(7, 43, 86, 0.85);
  --modal-shadow: 0 0 15px rgba(251, 66, 3, 0.6);
  --modal-button-hover: #0a3a7f;
  --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.1);  
  --shadow-effect: 0 0 5px #f1073a;  
  --white: #fff; 
  --magnet: rgb(249, 136, 102, 0.5); 
}

html, body {
  top: 0px !important;
  margin: 0;
  padding: 0;  
  height: 100%;
  z-index: 0;
}

.main-container {
  position: relative;  
  animation: fadeInUp 1.5s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.nimec-main {
  overflow: hidden;
}

.nimec-main.loaded {
  overflow: auto;
}

body {
  color: var(--color-text);
  font-family: "Century Gothic", CenturyGothic, AppleGothic, sans-serif;
  font-weight: 300;
  font-size: 12px;
  background: var(--foreground);
  background-size: cover;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

body.loaded-background {
  background: var(--background);
  transition: background 1s ease;
}

/* Loader */
.ip-container {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  z-index: 99;
  pointer-events: none;
  background: var(--foreground);
  overflow: hidden;
}

.ip-container.loaded {
  animation: slideUpContainer 1s ease forwards;
  animation-delay: 4s;
}

.ip-header {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  animation: fadeOutUp 1s ease forwards;
  animation-delay: 4s; 
}

.ip-header h1 {
  font-family: "Century Gothic", sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: var(--color-text-dark);
  text-align: center;
  opacity: 0;
  transform: translateY(80px);
  animation: fadeInUp 1s ease forwards;
  animation-delay: 0.2s;
  text-shadow: var(--shadow-text);
}

.ip-header h2 {
  font-family: "Comic Sans MS", cursive;
  font-style: italic;
  font-size: 24px;
  color: var(--color-hover);
  text-align: center;
  opacity: 0;
  transform: translateY(80px);
  animation: fadeInUp 1s ease forwards;
  animation-delay: 0.7s;
  text-shadow: var(--shadow-text);
}

.ip-center {
  position: relative;
  width: 130px;
  height: 130px;
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ip-logo {
  position: absolute;
  width: 130px;
  height: 130px;
  opacity: 0;
  transform: translateY(80px);
  animation: fadeInUp 1s ease forwards;
  animation-delay: 1.7s;
}

.ip-logo img {
  width: 105px;
  height: auto;
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
}

.ip-loader {
  position: absolute;
  width: 130px;
  height: 130px;
  z-index: 1;
  opacity: 0;
  animation: fadeIn 0.5s ease forwards;
  animation-delay: 2.9s;
}

.ip-loader svg {
  width: 130px;
  height: 130px;
  fill: none;
}

.ip-loader-circlebg {
  stroke: var(--foreground);
  stroke-width: 2px;
}

.ip-loader-circle {
  stroke: var(--color-hover);
  stroke-width: 2px;
  stroke-dasharray: 200;
  stroke-dashoffset: 200;
  animation: dashFill 1s ease forwards;
  animation-delay: 3s;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(80px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

@keyframes dashFill {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes fadeOutUp {
  to {
    transform: translateY(-100%);
  }
}

@keyframes slideUpContainer {
  to {
    transform: translateY(-100%);
  }
}
/* End of Loader */

/* Header */
.nimec-header {
  visibility: hidden;
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 70px;
  background-color: var(--foreground);
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding-left: 40px;
  z-index: 1000;
  box-shadow: var(--shadow-header);  
}

.nimec-header.loaded {
  visibility: visible;
}

.nimec-header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 100px 0 10px;
}

.nimec-logo {
  height: 55px;
  width: auto;
}

.nav-menu-box {
  display: flex;
  opacity: 1;
}

.navigation-menu-list {
  display: flex;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: main-nav-counter;
  position: relative;
}

.navigation-menu-list > li {
  position: relative;
  counter-increment: main-nav-counter;
}

.navigation-menu-list > li::before {
  position: absolute;
  top: -10px;
  left: -20px;
  font-size: 12px;
  font-weight: bold;
  color: var(--menu-list);
  font-family: "Montserrat", sans-serif;
  transition: all 0.2s ease-in-out;
}

.navigation-menu-list > li:hover::before,
.navigation-menu-list > li.active::before {
  color: var(--color-hover);
  left: -24px;
}

.navigation-menu-list > li > a {
  color: var(--menu-list);
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 1.2px;
  padding: 10px 8px;
  position: relative;
}

.navigation-menu-list > li > a:hover,
.navigation-menu-list > li.active > a {
  color: var(--color-hover);
}

.navigation-menu-list > li > a span::before {
  content: "";
  position: absolute;
  width: 40px;
  height: 1px;
  top: 50%;
  right: 100%;
  background-color: var(--color-hover);
  transition: width 0.2s ease-in-out;
}

.navigation-menu-list > li > a:hover span::before,
.navigation-menu-list > li.active > a span::before {
  width: 0;
}

.menu-item-has-children {
  position: relative;
}

.menu-item-has-children:hover .sub-menu {
  display: block;
}

.sub-menu {
  display: none;
  position: absolute;
  top: 25px;
  left: 0;
  background-color: var(--foreground);
  border-top: 1px solid var(--color-hover);
  padding: 10px 0;
  min-width: 200px;
  z-index: 1500;
  box-shadow: var(--shadow-soft);
  list-style: none;
}

.sub-menu li a {
  display: block;
  color: var(--menu-list);
  font-size: 12px;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
  padding: 8px 16px;
  white-space: nowrap;
  text-decoration: none;
}

.sub-menu li a:hover, .sub-menu li.active a {
  color: var(--color-hover);
  background-color: var(--aero1);
}

.navigation-menu-list em {
  font-style: normal;
}

#mobile-menu-box {
  position: fixed;
  top: 80px; 
  left: -400px; 
  width: 300px;
  height: calc(100% - 180px);
  background: var(--foreground); 
  backdrop-filter: blur(12px); 
  -webkit-backdrop-filter: blur(12px);
  text-align: center;
  padding: 30px 20px;
  transition: left 0.4s ease-in-out;
  z-index: 900;
  box-shadow: var(--shadow-menu);
  overflow-y: auto;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;  
}
/* End of Header */

/* Modal */
.modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--modal);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.modal-content {
  background: var(--foreground);
  color: var(--color-hover);
  padding: 2rem 3rem;
  border-radius: 12px;
  max-width: 400px;
  text-align: center;
  font-family: "Montserrat", sans-serif;
  box-shadow: var(--modal-shadow);
}

.modal-content h2 {
  margin-bottom: 1rem;
  font-size: 1.8rem;
  font-weight: 700;
}

.modal-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.modal-content button {
  background: var(--foreground);
  border: none;
  color: var(--color-hover);
  font-weight: 700;
  padding: 0.6rem 1.6rem;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.3s ease;
}

.modal-content button:hover {
  background: var(--modal-button-hover);
}
/* End of Modal */

/* Footer */
.nimec-footer {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  height: 70px;
  background-color: var(--foreground);
  color: var(--menu-list);
  font-family: "Montserrat", sans-serif;  
  visibility: hidden;
  transform: translateY(70px);
  transition: all 1s ease-in-out;
  z-index: 1000;
  box-shadow: var(--shadow-header);
}

.nimec-footer2 {  
  height: 70px;
  margin-top: -50px;
  background-color: var(--foreground);
  color: var(--menu-list);
  font-family: "Montserrat", sans-serif;  
  visibility: hidden;  
  z-index: 1000;
  box-shadow: var(--shadow-header);
}

.nimec-footer2 a { 
  z-index: 1100;
}

.nimec-footer.loaded {
  visibility: visible;
  transform: translateY(0);
}

.nimec-footer2.loaded {
  visibility: visible;  
}

.footer-container {
  width: 100%;
  max-width: 1440px;
  height: 70px;
  margin: 0 auto;  
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.social-icons {
  display: flex;
  gap: 20px;
  margin-top: 12px;
}

.social-icons img {
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
}

.social-icons a:hover img {
  transform: scale(1.1);
}

.footer-copy {
  font-size: 11px;
  color: var(--menu-list);
  font-family: "Montserrat", sans-serif;
  margin-bottom: 8px;
}
/* End of Footer */

/* Contact Section */
.contact-section {
  max-width: 1200px;
  margin: 100px auto;
  padding: 0 40px;
  font-family: "Montserrat", sans-serif;
  color: var(--color-text);
  text-align: center;
  visibility: hidden;
  opacity: 0;
}

.contact-section.loaded {
  visibility: visible;
  opacity: 1;   
}

.contact-title-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
  height: 40px;
}

.contact-title-container {
  display: flex;
  align-items: center; 
}

.contact-title {
  font-size: 32px;
  font-weight: bold;
  font-family: "Montserrat", sans-serif;
  line-height: 1;
  color: var(--color-text);
  margin: 0;
  white-space: nowrap;
  text-align: center;
  text-shadow: var(--shadow-text);
}

.contact-title-wrapper .line {
  flex: 1;
  height: 2px;
  background-color: var(--color-hover);
  opacity: 0.4;
  max-width: 200px;
}

.contact-intro {
  font-size: 18px;
  color: var(--foreground);
  margin-top: 30px;
  margin-bottom: 30px;
}

.contact-info {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 60px;
  text-align: left;
}

.contact-column {
  min-width: 200px;
  max-width: 300px;
}

.contact-column h3 {
  font-size: 16px;
  color: var(--color-hover);
  margin-bottom: 10px;
}

.contact-column p {
  font-size: 14px;
  margin: 4px 0;
  color: var(--foreground);
}

.aero-cards {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.contact-card {
  background: var(--aero);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--aero1);
  border-radius: 12px;
  box-shadow: var(--shadow-card);
  padding: 20px 30px;
  width: 220px;
  color: var(--color-text);
  font-family: "Montserrat", sans-serif;
  transition: box-shadow 0.3s ease;
}

.contact-card:hover {
  box-shadow: var(--aero1);
}

.contact-card h3 {
  font-size: 18px;
  color: var(--color-hover);
  margin-bottom: 12px;
}

.contact-card p {
  font-size: 14px;
  margin: 6px 0;
  color: var(--color-text);
}
/* End of Contact Section */

/* Hero Section */
.hero {
  position: relative;
  height: 80vh;  
  display: flex;
  align-items: center;
  justify-content: center;  
}

.hero:before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at bottom, rgba(7, 43, 86, 0.75), transparent 70%);
}

.hero2 {
  position: relative;
  height: 80vh;  
  display: flex;
  align-items: center;
  justify-content: center;  
}

.hero2:before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(7, 43, 86, 0.75), transparent 70%);
}

.hero-content {
  position: relative;
  max-width: 800px;
  text-align: center;
  color: var(--white);
  animation: fadeInUp 1.5s ease-out;
}

.hero-title {
  font-size: 3rem;
  margin-bottom: 0.5em;
  letter-spacing: 1px;
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 1.75em;
  line-height: 1.4;
}

.hero2-subtitle {
  font-size: 1.25rem;
  margin-bottom: 1.75em;
  line-height: 1.4;
  margin-top: 60px;
}

.btn-primary {
  background-color: var(--color-hover);
  padding: 16px 32px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  border-radius: 4px;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.btn-primary:hover {
  transform: scale(1.05);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* End of Hero Section */

/* How-Section */
.how-section {
  max-width: 1200px;
  margin: 20px auto;
  padding: 0 40px;
  font-family: "Montserrat", sans-serif;
  color: var(--color-text);
  visibility: hidden;
}

.how-section.loaded {
  visibility: visible;
}

.how-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 40px;
  margin-bottom: 20px;
}

.how-card {
  background-color: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 10px 10px;  
  width: 240px;
  height: 120px;
  color: var(--foreground);
  font-family: "Montserrat", sans-serif;
  flex: 1;
  text-align: left;
  transition: transform 0.3s ease;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  overflow-y: auto;
}

.how-card:hover {
  transform: translateY(-4px);
}

.options.how-card {
  width: 240px;
  height: 310px;  
  padding: 10px;
}

.card-wrapper { 
  height: 290px;  
  padding: 0px;
}

.how-card h3 {
  font-size: 16px;
  color: var(--color-hover);
  margin-bottom: 5px;
  margin-top: 5px;
}

.how-card p {
  font-size: 14px;
  color: var(--foreground);
  margin: 0;
  text-align: justify;
}

.how-image {
  flex-shrink: 0;
}

.how-image img {
  width: 220px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(7, 43, 86, 0.15);
}
/* End of How-Section */

/* How it Work */
.main-container {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease-in-out 6s forwards;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero3.magnetic-field-hero {
  position: relative;  
  height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: radial-gradient(circle at center, var(--foreground), var(--background) 80%);   
  color: var(--white);
  text-align: center;
  padding: 0 20px;
  font-family: "Montserrat", sans-serif;
}

.rotary .hero3.magnetic-field-hero {
  height: 300px;
}

.hero3.magnetic-field-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 60%, var(--magnet), transparent 70%),
    radial-gradient(circle at 70% 50%, var(--magnet), transparent 70%);    
  animation: magnetic-pulse 5s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

@keyframes magnetic-pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.6;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.9;
  }
}

.hero3-content {
  position: absolute;
  top: 60px;
  z-index: 1;
  max-width: 700px;
}

.hero3-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 0.5em;
  text-shadow: 0 0 8px rgba(251, 66, 3, 0.7);
}

.hero3-subtitle {
  font-size: 1.25rem;
  line-height: 1.5;
  color: var(--white);
  text-shadow: 0 0 4px rgba(7, 43, 86, 0.8);
}

.how-section .contact-title-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
  height: 40px;
}

.how-section .contact-title-container {
  display: flex;
  align-items: center; 
}

.tech-title {
  color: var(--color-text-dark);
  font-family: 'Roboto Slab', serif;
  font-weight: 600;
  font-size: 1.6rem;
  position: relative;
  margin: 2.5rem auto;
  display: inline-block;
  padding-bottom: 0.5rem;
  text-align: center;
}

.tech-title::after {
  content: '';
  display: block;
  margin: 0.4rem auto 0;
  width: 60%;
  height: 2px;
  background: var(--color-hover);
  border-radius: 1px;
  opacity: 0.8;
  transition: width 0.3s ease;
}

.tech-title:hover::after {
  width: 80%;
}

.tech-card, .text-wrapper, .tech-paragraph {
  box-sizing: border-box;
}

.tech-card {  
  background-color: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  border-radius: 10px;     
  width: 360px;
  height: 320px;
  color: var(--foreground);
  font-family: "Montserrat", sans-serif;  
  text-align: left;
  transition: transform 0.3s ease;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);    
}

.rotary .tech-card {
  width: 460px;
}

.rotary .mobility .tech-card {
  width: 760px;
}

.tech-card:hover {
  transform: translateY(-4px);
}

.text-wrapper {
  padding: 20px;
  height: 300px;  
  flex-grow: 1; 
  overflow-y: auto;   
}

.tech-subtitle {
  font-size: 18px;
  font-weight: 600;
  font-family: 'Roboto Slab', serif;
  color: var(--color-hover);
  margin-top: 8px;
  margin-bottom: 6px;
  text-align: left;
  text-shadow: var(--shadow-text);
}

.tech-paragraph {
  font-size: 12px;
  font-family: 'Roboto Slab', serif;
  line-height: 1.6;
  color: var(--color-text);  
  text-align: justify;
  text-shadow: var(--shadow-text);  
}
/* End */

/* Translate */
#gtranslate_wrapper {
  display: none !important;
}
/* End */




























/* Mobile */
@media (max-width: 1023px) {  
  .burger-menu {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 30px;
    height: 22px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    z-index: 2001;
    cursor: pointer;
  }
  .burger-menu span {
    height: 3px;
    background: var(--menu-list);
    border-radius: 2px;
    transition: all 0.3s ease;
  }
  .burger-menu.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
    background: var(--color-hover);
  }
  .burger-menu.open span:nth-child(2) {
    opacity: 0;
  }
  .burger-menu.open span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
    background: var(--color-hover);
  }
  .burger-icon {
    display: flex;
  }
  .nav-menu-box {
    opacity: 0;
  }  
  .nimec-header-inner {
    padding-left: 0px;
  }  
  #mobile-menu-box.active {
    left: 50%; 
    transform: translateX(-50%);
  }    
  #mobile-menu-box ul.mobile-menu-list {
    padding: 10px 0;
    margin: 0;
    border-left: 1px solid var(--color-hover);
    border-right: 1px solid var(--color-hover);
  }
  #mobile-menu-box ul.mobile-menu-list > li {
    display: block;
    margin-left: -10px;
    margin-right: -10px;
    border-bottom: 1px solid var(--color-hover);
    position: relative;
  }
  #mobile-menu-box ul.mobile-menu-list > li:first-child {
    border-top: 1px solid var(--color-hover);
  }
  #mobile-menu-box ul.mobile-menu-list > li::before {
    position: absolute;
    top: 10px;
    left: 30px;
    font-weight: bold;
    font-size: 14px;
    margin-right: 0.5rem;
    line-height: 1;
    font-family: "Montserrat", sans-serif;
    color: var(--menu-list);
    transition: all 0.2s ease-in-out;
  }
  #mobile-menu-box ul.mobile-menu-list > li:after {
    content: "";
    position: absolute;
    width: 20px;
    height: 1px;
    top: 20px;
    left: 10px;
    background-color: var(--color-hover);
    transition: all 0.2s ease-in-out;
  }
  #mobile-menu-box ul.mobile-menu-list > li.active::after,
  #mobile-menu-box ul.mobile-menu-list > li:hover::after {
    width: 32px;
  }
  #mobile-menu-box ul.mobile-menu-list > li > a {
    display: block !important;
    padding: 10px 25px 4px;
    color: var(--menu-list);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    position: relative;
    font-family: "Montserrat", sans-serif;
    text-decoration: none;
  }
  #mobile-menu-box ul.mobile-menu-list > li.active > a,
  #mobile-menu-box ul.mobile-menu-list > li > a:hover {  
    color: var(--color-hover);
  }
  #mobile-menu-box li.mobile-menu-item-has-children > a:after {
    content: "🔻";
    position: absolute;
    font-family: "Font Awesome 5 Free";
    font-weight: 800;
    color: var(--color-hover);
    text-align: center;
    line-height: 10px;
    padding-left: 1px;
    font-size: 14px;
    top: 20px;
    right: 10px;
    background-color: var(--foreground);
    transition: all 0.2s ease-in-out;
  }
  #mobile-menu-box li.mobile-menu-item-has-children > a.active:after {
    content: "🔺";    
  }
  #mobile-menu-box ul.mobile-menu-list > li > a span {
    display: inline-block;
    position: relative;
  }
  #mobile-menu-box ul.mobile-menu-list > li > a span em {
    position: relative;
    font-style: normal;
  }
  #mobile-menu-box ul.mobile-menu-list > li > a span:before {
    content: "";
    position: absolute;
    width: 40px;
    height: 1px;
    top: 50%;
    right: 100%;  
    transition: all 0.2s ease-in-out;
  }
  #mobile-menu-box ul.mobile-menu-list > li > a:hover span:before,
  #mobile-menu-box ul.mobile-menu-list > li.active > a span:before {
    width: 0;
  }
  ul.mobile-sub-menu {
    padding: 10px 20px;
    margin: 0;
    border-top: 1px solid var(--color-hover);
    display: none;
  }
  li.mobile-menu-item-has-children.active > ul.mobile-sub-menu {
    display: block;
  }
  ul.mobile-sub-menu li {
    display: block;
    background-color: var(--foreground);
  }
  ul.mobile-sub-menu li a {
    padding: 4px 10px;
    display: block;
    color: var(--menu-list);
    font-size: 12px;
    font-weight: 700;
    font-family: "Montserrat", sans-serif;
    text-decoration: none;
  }
  ul.mobile-sub-menu li a:hover,
  ul.mobile-sub-menu li.active a {
    color: var(--color-hover);
  }
  .hero, .hero2, .hero3 {
    height: auto;
    padding: 80px 20px 60px;
    background-position: center top;    
  }
    .hero-title {
    font-size: 2rem;
    margin-bottom: 0.5em;
  }
  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 1.5em;
  }
  .hero2-subtitle {
    font-size: 1rem;
    margin-bottom: 1.5em;
    margin-top: 40px;
  }
  .btn-primary {
    font-size: 0.95rem;
    padding: 12px 24px;
  }
  .how-it-works-row {
    flex-direction: column;
  }
  .how-image img {
    width: 100%;
    max-width: 300px;
  }
  .contact-title {
    font-size: 22px;
    margin-left: 10px;
    margin-right: 10px;  
  }
  .hero3.magnetic-field-hero {   
    height: 320px;
  }
  .rotary .hero3.magnetic-field-hero {
    height: 360px;
  }
  



}


