.elementor-4340 .elementor-element.elementor-element-6dad230{--display:flex;}.elementor-4340 .elementor-element.elementor-element-6dad230:not(.elementor-motion-effects-element-type-background), .elementor-4340 .elementor-element.elementor-element-6dad230 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#000000;}/* Start custom CSS for html, class: .elementor-element-a7b5843 *//* FONT */
body {
  font-family: 'Montserrat', sans-serif;
}

/* TOP BAR */
.vtech-topbar {
  width: 100%;
  background: #ffffff;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  font-size: 13px;
}

.topbar-container {
  max-width: 1200px;
  margin: auto;
  padding: 8px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #555;
}

.top-left span {
  margin-right: 20px;
  font-weight: 500;
}

/* SOCIAL */
.social-icon {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(0,0,0,0.05);
  margin-left: 10px;
  transition: 0.3s;
}

.social-icon svg {
  width: 16px;
  height: 16px;
  fill: #555;
}

.social-icon:hover {
  background: #00aaff;
  transform: translateY(-3px);
}

.social-icon:hover svg {
  fill: #fff;
}

/* HEADER */
.vtech-header {
  width: 100%;
  position: sticky;
  top: 0;
  background: #ffffff;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  z-index: 999;
}

.nav-wrapper {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
}

/* LOGO */
.logo img {
  height: 80px;
}

/* NAV */
.nav {
  display: flex;
  gap: 30px;
}

.nav-link {
  position: relative;
  color: #111;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  transition: 0.3s;
}

.nav-link:hover {
  color: #00aaff;
}

/* DOT */
.nav-link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -8px;
  transform: translateX(-50%) scale(0);
  width: 6px;
  height: 6px;
  background: #00aaff;
  border-radius: 50%;
  transition: 0.3s;
}

.nav-link.active::after {
  transform: translateX(-50%) scale(1);
}

.nav-link:hover::after {
  transform: translateX(-50%) scale(1);
}

/* RESPONSIVE */
@media (max-width: 900px) {

  .topbar-container {
    flex-direction: column;
    text-align: center;
  }

  .nav.left,
  .nav.right {
    display: none;
  }

  .logo {
    margin: auto;
  }
}/* End custom CSS */