*{
  box-sizing:border-box;
}

html,
body{
  margin:0;
  padding:0;
  overflow-x:hidden;
  font-family:Arial,Helvetica,sans-serif;
}

#nav{
  width:100%;
  position:relative;
  z-index:999999;
}

.rw-header{
  width:100%;
  background:#ffffff;
  min-height:108px;
  padding:18px 42px;
  border-bottom:1px solid #e5e7eb;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:28px;
  position:sticky;
  top:0;
  z-index:999999;
  box-shadow:0 8px 28px rgba(15,23,42,.08);
}

.rw-logo{
  display:flex!important;
  align-items:center!important;
  justify-content:flex-start!important;
  flex:0 0 auto!important;
  width:330px!important;
  min-width:330px!important;
  max-width:330px!important;
  text-decoration:none!important;
}

.rw-logo img{
  width:310px!important;
  max-width:310px!important;
  height:82px!important;
  max-height:82px!important;
  object-fit:contain!important;
  object-position:left center!important;
  display:block!important;
  cursor:pointer!important;
}

.rw-nav{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:22px;
  flex:1;
}

.rw-nav a,
.rw-dropbtn{
  color:#071322;
  text-decoration:none;
  background:none;
  border:0;
  font-size:17px;
  font-weight:900;
  cursor:pointer;
  font-family:Arial,Helvetica,sans-serif;
  white-space:nowrap;
  line-height:1.2;
  padding:10px 0;
}

.rw-nav a:hover,
.rw-dropbtn:hover{
  color:#078642;
}

.rw-cta{
  background:linear-gradient(135deg,#10b981,#0ea5e9)!important;
  color:#ffffff!important;
  padding:15px 24px!important;
  border-radius:999px;
  box-shadow:0 10px 24px rgba(14,165,233,.22);
}

.rw-dropdown{
  position:relative;
}

.rw-mega{
  display:none;
  position:absolute;
  top:100%;
  left:50%;
  transform:translateX(-50%);
  background:#ffffff;
  border:1px solid #dbe4ef;
  border-radius:26px;
  box-shadow:0 28px 80px rgba(15,23,42,.22);
  padding:28px;
  gap:26px;
  z-index:9999999;
}

.rw-dropdown:hover .rw-mega,
.rw-dropdown.open .rw-mega{
  display:grid;
}

.rw-mega-wide{
  width:980px;
  grid-template-columns:repeat(4,1fr);
}

.rw-mega-courses{
  width:760px;
  grid-template-columns:1fr 1fr 1.15fr;
}

.rw-mega-jobs{
  width:620px;
  grid-template-columns:1fr 1fr;
}

.rw-mega h4{
  margin:0 0 13px;
  color:#078642;
  font-size:17px;
  font-weight:900;
}

.rw-mega a{
  display:block;
  padding:8px 0;
  color:#334155;
  font-size:15px;
  font-weight:800;
  white-space:normal;
  line-height:1.35;
}

.rw-mega a:hover{
  color:#078642;
  padding-left:4px;
}

.rw-feature{
  background:linear-gradient(135deg,#071322,#078642);
  color:white;
  border-radius:22px;
  padding:22px;
}

.rw-feature span{
  display:inline-block;
  background:rgba(255,255,255,.14);
  color:#ffffff;
  padding:7px 12px;
  border-radius:999px;
  font-size:12px;
  font-weight:900;
  margin-bottom:12px;
}

.rw-feature h4{
  color:white;
  font-size:22px;
  margin:0 0 10px;
}

.rw-feature p{
  color:#e2e8f0;
  line-height:1.6;
  margin:0 0 16px;
  font-size:14px;
}

.rw-feature a{
  display:inline-block;
  background:#ffffff;
  color:#078642!important;
  padding:10px 16px;
  border-radius:999px;
  font-weight:900;
}

.rw-menu{
  display:none;
  background:#071322;
  color:white;
  border:0;
  border-radius:14px;
  padding:12px 16px;
  font-size:16px;
  font-weight:900;
  cursor:pointer;
}

@media(max-width:1380px){
  .rw-header{
    padding:16px 28px;
    gap:18px;
  }

  .rw-logo{
    width:280px!important;
    min-width:280px!important;
    max-width:280px!important;
  }

  .rw-logo img{
    width:265px!important;
    max-width:265px!important;
    height:74px!important;
  }

  .rw-nav{
    gap:16px;
  }

  .rw-nav a,
  .rw-dropbtn{
    font-size:15px;
  }
}

@media(max-width:1150px){
  .rw-header{
    flex-wrap:wrap;
    padding:14px 20px;
  }

  .rw-logo{
    width:260px!important;
    min-width:260px!important;
    max-width:260px!important;
  }

  .rw-logo img{
    width:245px!important;
    max-width:245px!important;
    height:66px!important;
  }

  .rw-menu{
    display:block;
  }

  .rw-nav{
    display:none;
    width:100%;
    flex-direction:column;
    align-items:flex-start;
    gap:14px;
    padding:18px 0 6px;
  }

  .rw-nav.open{
    display:flex;
  }

  .rw-dropdown{
    width:100%;
  }

  .rw-dropbtn{
    width:100%;
    text-align:left;
  }

  .rw-mega,
  .rw-mega-wide,
  .rw-mega-courses,
  .rw-mega-jobs{
    position:static;
    transform:none;
    width:100%;
    box-shadow:none;
    margin-top:10px;
    grid-template-columns:1fr;
    padding:18px;
    border-radius:18px;
  }

  .rw-dropdown:hover .rw-mega{
    display:none;
  }

  .rw-dropdown.open .rw-mega{
    display:grid;
  }

  .rw-feature{
    margin-top:6px;
  }
}

@media(max-width:600px){
  .rw-header{
    min-height:88px;
  }

  .rw-logo{
    width:220px!important;
    min-width:220px!important;
    max-width:220px!important;
  }

  .rw-logo img{
    width:210px!important;
    max-width:210px!important;
    height:58px!important;
  }

  .rw-nav a,
  .rw-dropbtn{
    font-size:16px;
  }
}

.rw-mega-wide{
  width:min(1100px,92vw)!important;
  grid-template-columns:repeat(4,1fr)!important;
}

.rw-mega-courses{
  width:min(780px,92vw)!important;
  grid-template-columns:1fr 1fr 260px!important;
}

.rw-mega-jobs{
  width:min(620px,92vw)!important;
  grid-template-columns:1fr 1fr!important;
}

.rw-feature{
  background:linear-gradient(135deg,#071322,#078642);
  color:#fff;
  border-radius:22px;
  padding:22px;
}

.rw-feature span{
  display:inline-block;
  background:rgba(255,255,255,.16);
  padding:7px 12px;
  border-radius:999px;
  font-size:12px;
  font-weight:900;
  margin-bottom:12px;
}

.rw-feature h4{
  color:#fff!important;
  font-size:22px!important;
  margin:0 0 10px!important;
}

.rw-feature p{
  color:#e2e8f0;
  line-height:1.6;
  margin:0 0 16px;
  font-size:14px;
}

.rw-feature a{
  display:inline-block!important;
  background:#fff!important;
  color:#078642!important;
  padding:10px 16px!important;
  border-radius:999px!important;
  font-weight:900!important;
}

@media(max-width:1050px){
  .rw-mega-wide,
  .rw-mega-courses,
  .rw-mega-jobs{
    width:100%!important;
    grid-template-columns:1fr!important;
  }
}