@import url('https://fonts.googleapis.com/css2?family=Istok+Web:ital,wght@0,400;0,700;1,400&family=Montserrat:wght@400;500;700&display=swap');

* {
   font-family: Arial, Helvetica, sans-serif; 
   box-sizing: border-box;
   margin: 0;
   padding: 0;
}

h1, h2, h3, h4, h5 {
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
}

p, label, select, table, input, th, td {
    font-family: 'Istok Web', sans-serif;
}

table {
    border-collapse: collapse;
}

th {
    border-bottom: 2px solid #bdc3c7;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 700;
    padding: 10px 5px;
    position: sticky;
    top: 0;
    cursor: default;
    background-color: white;
}

.no-hover:hover {
    background-color: white;
}

tr:hover {
    background-color: #f2f3f3;
}

td {
    border-bottom: 1px solid #d1d6da;
    margin: 10px 5px 5px 5px;
    padding: 10px;
    color: #34495e;
}

/* HEADER NAV */
header {
   display: flex;
   justify-content: flex-end;
   align-items: center;
   padding: 10px 10%;
   background: #cc8e35;
}

header li, header a {
    margin-top: 5px;
   font-family: "Montserrat", sans-serif;
   font-weight: 500;
   font-size: 16px;
   color: #f7f1e3;
   text-decoration: none;
}

.logo {
   display: flex;
   margin-right: auto;
   color: #f7f1e3;
   font-family: "Montserrat", sans-serif;
}

.nav-links {
   list-style: none;
   display: flex;
}

.nav-links li {
   display: inline-block;
   padding: 0 20px;
}

.nav-links li button {
   transition: all 0.3s ease 0s;
}

.nav-links li a:hover {
   text-decoration: none;
   cursor: pointer;
}

/* Current Page Selected in Nav button */
.nav-btn {
    padding: 9px 25px;
    font-family: "Montserrat", sans-serif;
    background-color: #40407a;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 500;
    font-size: 16px;
    color: oldlace;
    text-decoration: none;
}

/* LANDING / HOME PAGE */
#home-tab {
    margin: 0;
    height: 94vh;
    width: 100%;
}

#hero-image {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("https://images.unsplash.com/photo-1543782248-03e2c5a93e18?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=1351&q=80");
    height: 100%;
    width: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
  }

  #hero-text {
    display: flex;
    flex-direction: column;
    width: 60%;
    text-align: left;
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
  }

  .page-h {
      margin-bottom: 1%;
  }

