/* =========================
   RESET / GLOBAL CSS
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial;
  background: #eef1f5;
}


/* =========================
   HEADER CSS
========================= */
.top-header {
  background: #d40000;
  text-align: center;
  padding: 25px 10px;
  color: #fff;
}

.top-header h1 {
  font-size: 42px;
}

.top-header p {
  font-size: 16px;
}


/* =========================
   NAVBAR / MENU CSS
========================= */
.navbar {
  background: #0B1A6E;
  position: relative;
}

.navbar ul {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.navbar li {
  position: relative;
}

.navbar li a,
.dropbtn {
  display: block;
  color: #fff;
  padding: 14px 12px;
  text-decoration: none;
  font-size: 16px;
  cursor: pointer;
}

.navbar li a:hover,
.dropdown:hover .dropbtn {
  background: #081457;
}

/* DROPDOWN */
.dropdown {
  position: relative;
}

.dropdown-content {
  display: none;
  position: absolute;
  background: #0B1A6E;
  min-width: 180px;
  top: 100%;
  left: 0;
  z-index: 1000;
}

.dropdown-content a {
  display: block;
  padding: 10px 14px;
  color: #fff;
  text-decoration: none;
}

.dropdown-content a:hover {
  background: #081457;
}

.dropdown:hover .dropdown-content {
  display: block;
}

/* MOBILE MENU BUTTON */
.menu-toggle {
  display: none;
  background: #0B1A6E;
  color: #fff;
  font-size: 28px;
  padding: 12px 16px;
  cursor: pointer;
}


/* =========================
   PAGE BODY / CONTENT CSS
========================= */
/*.container {
  max-width: 900px;
  margin: auto;
  padding: 20px;
}

.main-box {
  background: #fff;
  border: 1px solid #ccc;
  padding: 20px;
}*/

/* CONTENT TEXT */
.mp-container {
/*  width: 100%;
  max-width: 1000px;
  margin: auto;
  background: #fff;
  padding: 15px;
  font-family: Arial;
}

.mp-heading {
  background: #d40000;
  color: #fff;
  padding: 10px;
  font-size: 18px;
  margin-top: 20px;
}

.mp-text {
  font-size: 14px;
  line-height: 1.6;
  color: #222;
  margin: 10px 0;
}*/


/* TABLE */
/*.mp-table-box {
  width: 100%;
  overflow-x: auto;
  margin-top: 10px;
}

.mp-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.mp-table th,
.mp-table td {
  border: 1px solid #000;
  padding: 8px;
  text-align: left;
}

.mp-table th {
  background: #f2f2f2;
}*/

/* NOTE */
/*.mp-note {
  font-size: 13px;
  margin-top: 10px;
  color: #333;
}
*/

/* =========================
   LINKS / SECTION CSS
========================= */
/*.section {
  margin-top: 15px;
  border: 1px solid #ccc;
}

.section-title {
  background: #f2f2f2;
  padding: 8px;
  font-weight: bold;
}

.section-content {
  padding: 10px;
  font-size: 14px;
}

.links a {
  display: block;
  padding: 8px;
  text-decoration: none;
  color: #0033cc;
  border-bottom: 1px solid #eee;
}
*/

/* =========================
   TAG / UI ELEMENT CSS
========================= */
/*.new-tag {
  background: red;
  color: #fff;
  font-size: 10px;
  padding: 2px 6px;
  margin-left: 6px;
  border-radius: 3px;
  animation: blink 1s infinite;
}

@keyframes blink {
  0% {opacity: 1;}
  50% {opacity: 0;}
  100% {opacity: 1;}
}*/


/* =========================
   FOOTER CSS
========================= */
.footer {
  background: #111;
  color: #fff;
  text-align: center;
  padding: 15px;
  margin-top: 20px;
}


/* =========================
   MOBILE RESPONSIVE CSS
========================= */
@media (max-width: 768px) {

  .menu-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
    flex-direction: column;
    width: 100%;
    background: #0B1A6E;
    position: absolute;
    top: 100%;
    left: 0;
  }

  .navbar ul.active {
    display: flex;
  }

  .navbar li {
    width: 100%;
    text-align: left;
  }

  .navbar li a,
  .dropbtn {
    padding: 12px 16px;
    border-top: 1px solid rgba(255,255,255,0.1);
  }

  .dropdown-content {
    position: static;
  }

  /* TABLE MOBILE FIX */
  .mp-table,
  .mp-table tr,
  .mp-table td {
    display: block;
    width: 100%;
  }

  .mp-table td {
    border: none;
    border-bottom: 1px solid #ddd;
  }
}