@import url('https://fonts.googleapis.com/css2?family=Elms+Sans:ital,wght@0,100..900;1,100..900&family=Italianno&display=swap');



  * { box-sizing: border-box; margin: 0; padding: 0; }

  .nw {
    width: 100%;
    background: #ffffff;
    font-family: Elms Sans, Geneva, sans-serif;
    border-radius: 10px;
    border: 1px solid #e8e8e8;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    overflow: visible;
    position: relative;
    z-index: -1;
  }

  .nw-top {
    background: #CC0000;
    text-align: center;
    padding: 4px 0;
    font-size: 10px;
    letter-spacing: 2.5px;
    color: #ffffff;
    font-weight: 600;
    border-radius: 0 0 9px 9px;
    font-family: Caveat, Geneva, sans-serif;
  }

  .nw-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2rem;
    height: 50px;
    position: relative;
  }

  .nw-logo {
    display: flex;
    align-items: center;
    gap: 11px;
    text-decoration: none;
    flex-shrink: 0;
  }

  .nw-logo-icon {
    width: 42px;
    height: 42px;
    position: relative;
    flex-shrink: 0;
  }

  .nw-logo-icon .big-dot {
    width: 26px;
    height: 26px;
    background: #CC0000;
    border-radius: 50%;
    position: absolute;
    top: 8px;
    left: 0;
  }

  .nw-logo-icon .small-dot {
    width: 10px;
    height: 10px;
    background: #CC0000;
    border-radius: 50%;
    position: absolute;
    bottom: 4px;
    right: 0;
    opacity: 0.3;
  }

  .nw-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
  }

  .nw-logo-text .brand {
    font-family: Elms Sans, Geneva, sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #111111;
    letter-spacing: 4px;
    line-height: 1;
    margin-top: 36px;
  }

  .nw-logo-text .brand span {
    color: #CC0000;
  }

  .nw-logo-text .tagline {
    font-family: Elms Sans, Geneva, sans-serif;
    font-size: 8px;
    letter-spacing: 3px;
    color: #999;
    text-transform: uppercase;
    font-weight: 400;
    margin-top: 5px;
  }

  .nw-links {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 0;
  }

  .nw-item {
    position: relative;
  }

  .nw-link {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 0 1rem;
    height: 50px;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #444;
    text-decoration: none;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    transition: color 0.2s, border-color 0.2s;
    font-family: Elms Sans, Geneva, sans-serif;
  }

  .nw-link:hover {
    color: #CC0000;
    border-bottom-color: #CC0000;
  }

  .nw-chevron {
    font-size: 9px;
    transition: transform 0.25s ease;
    color: #aaa;
  }

  .nw-item:hover .nw-chevron {
    transform: rotate(180deg);
    color: #CC0000;
  }

  .nw-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(6px);
    background: #fff;
    border: 1px solid #e8e8e8;
    border-top: 3px solid #CC0000;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
    z-index: 999;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  }

  .nw-item:hover .nw-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
  }

  .nw-ditem {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 13px 18px;
    font-size: 11px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: #555;
    text-decoration: none;
    cursor: pointer;
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.15s, color 0.15s, padding-left 0.15s;
    font-family: Elms Sans, Geneva, sans-serif;
    font-weight: 400;
  }

  .nw-ditem:last-child { border-bottom: none; }

  .nw-ditem:hover {
    background: #fff5f5;
    color: #CC0000;
    padding-left: 24px;
  }

  .nw-ditem-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #CC0000;
    opacity: 0;
    transition: opacity 0.15s;
    flex-shrink: 0;
  }

  .nw-ditem:hover .nw-ditem-dot { opacity: 1; }

  .nw-divider {
    width: 1px;
    height: 20px;
    background: #e0e0e0;
    margin: 0 0.4rem;
  }

  .nw-bottom-line {
    height: 1px;
    background: linear-gradient(to right, transparent, #CC0000 30%, #CC0000 70%, transparent);
    margin: 0 2rem;
    opacity: 0.2;
  }


  /* Header part above */

  .navigator{
    margin: 20px 40px;
  }
  .navigator a {
    text-decoration: none;
    color: rgb(0, 0, 0);
    font-family: Elms Sans;
    font-size: 12px;
  }
  .navigator a:hover{
    cursor: pointer;
    color: red;
  }

  .navigator h1{
    font-family: Elms Sans;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 20px;
  }

  .contact{
    margin: 30px 60px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-direction: row;
    font-family: Elms Sans;
  }
  .contact .sales{
    /* background: #ffd3d3; */
    border-color: #CC0000;
    border-width: 1px;
    border-style: solid;
    height: 500px;
    width: 400px;
    border-radius: 5px 5px 5px 5px;
  }
  .contact .salesinfo{
    margin: 20px 30px;
  }
  .salesinfo a{
    text-decoration: none;
    color: rgb(21, 21, 21);
  }
  .salesinfo a:hover{
    cursor: pointer;
    color: red;
  }

  .contact .office{
    /* background: #ffd3d3; */
    border-color: #CC0000;
    border-width: 1px;
    border-style: solid;
    height: 500px;
    width: 400px;
    border-radius: 5px 5px 5px 5px;
  }
  .contact .officeinfo{
    margin: 20px 30px;
  }
  .officeinfo a{
    text-decoration: none;
    color: rgb(21, 21, 21);
  }
  .officeinfo a:hover{
    cursor: pointer;
    color: red;
  }
  .contact h3{
    margin-top: 20px;
}
.officeinfo .add{
    margin-top: 10px;
}


.addressline{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-top: 50px;
    font-family: Elms Sans;
}

.addressline a{
    text-decoration: none;
    color: rgb(21, 21, 21);
}
.addressline p1{
    margin-top: 10px;
}