/* Global reset: no gaps around layout */
* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: auto;
}

/* Base body font: always Poppins from web font */
body {
  font-family: 'Poppins', sans-serif;
  background: #ffffff;
}

.drop img {
    width: 100%;
    height: 50px;
    opacity: .3;
}

/* Force header + its children to always use Poppins,
   even if Bootstrap or browser defaults try to override */
.subtop-bar,
.subtop-bar * {
  font-family: 'Poppins', sans-serif !important;
}

/* Full-width header, flush with viewport edges */
.subtop-bar {
  width: 100%;                  /* span 100% of viewport width */
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0px 0px;             /* inner breathing room only (you set this) */
  background: #ffffff;
  margin: 0;                    /* ensure no extra gap */
}

.subtop-bar-title {
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: #111111;
  white-space: nowrap;
}

.subtop-bar-nav {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 14px;
  color: #555555;
  white-space: nowrap;
}

.subtop-bar-nav a {
  text-decoration: none;
  color: inherit;
  font-weight: 400; /* normal by default */
}

/* Hover: dark purple, bold, no underline */
.subtop-bar-nav a:hover {
  color: #612765;       /* dark purple */
  font-weight: 700;     /* bold */
  text-decoration: none;
}

.subnav-divider {
  width: 1px;
  height: 16px;
  background: #e0e0e0;
}

/* Content below header – no extra margins */
.subpage-content {
  width: 100%;
  margin: 0;
  padding: 0;
}

/* iframe sizing */
#submyiframe {
  min-width: 100%;
}


@media (max-width: 1300px) {
.drop {
    width: 90%;
    height: auto;
}
}


/* Simple responsive tweak so things don’t overflow on very small screens */
@media (max-width: 800px) {
  .subtop-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    margin-top: -35px!important;
    
  }

  .fix {
    margin-top: -75px;
  }
}
