body {
    margin: 0;
}

dl, ol, ul {
    margin-top: unset;
    margin-bottom: unset;
    }


.container {
    width: 100vw;
    height: 100vh;

    overflow-x: hidden;

    font-family: 'Quicksand', sans-serif;
    font-weight: bold;
    font-size: 20px;

    display: grid;

    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 80px auto 1fr;

    max-width: unset;
    padding: unset;
}

.container div {

}

.header {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 30px 10%;

    grid-column-start: 1;
    grid-column-end: 4;
}

.logo {
    cursor: pointer;
    margin-right: auto;
    color: inherit;
    font-size: 18px;
    font-weight: 700;
}

.nav_links {
    list-style: none;
}

.nav_links li a {
    color: #3d3d3d;
    transition: all 0.3s ease 0s;
}

.nav_links li a:hover {
    color: #17c0eb;

}

.nav_links li {
    display: inline-block;
    padding: 0 40px;
}


.header li, a, button {
    margin: 0  5px ;
    font-weight: 500;
    font-size: 16px;
}

.hero {
    grid-row-start: 2;
    grid-column-end: span 3;

    height: 200px;
}

.hero-image {
    background-image: linear-gradient( rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.8)), url(../images/background.png);
    filter: blur(1px);
    -webkit-filter: blur(1px);
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    height: 100%
}

.hero-text {
  text-align: left;
  position: relative;
  top: -60%;
  left: 20%;
  color: white;
}

.content-large {
    grid-row-start: 3;
    grid-row-end: span 2;
}

.content-main {
    background-color: #ffffff;

    grid-row-start: 3;
    grid-column-end: span 3;

    padding: 20px;
}

.create-job-table {
    width: 100%;
}

.create-job-table tbody td {
    text-align: right;
    padding: 20px 20px;
}

.create-job-table tbody td ul{
    display: flex;
    justify-content: space-between;
}

.create-job-table tbody td ul li{
    display: inline;
    list-style: none;
    font-weight: normal;
}

table {
    box-sizing: border-box;
}

table video, img {
    max-width: 100%;
    min-width: 200px;
}

.files-list-table {
    text-align: center;
}

.files-list-table td {
	font-weight: 500;
    font-size: 14px;
    
}

.submit-section {
    margin: 50px 0px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

input[type="button"] {
    background-color: #3d3d3d;
    padding: 0 100px;
    border: none;
    color: white;
    padding: 15px 72px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
}

input[type="submit"] {
    background-color: #3d3d3d;
    padding: 0 100px;
    border: none;
    color: white;
    padding: 15px 72px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
}

.submit-section input:hover {
    background-color: #6d7883;
}

input, select {
    outline: none;
}

input[type=text],input[type=number], select {
  width: 100%;
  padding: 12px 20px;
  margin: 8px 0;
  display: inline-block;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
}

.menu-section {
    width: 100%;
    display: inline-flex;
    justify-content: space-between;
    margin-bottom: 50px;
}

.menu-section div {

}

.menu-section * {
    margin-left: 20px;
}

button {
    background-color: #3d3d3d;
    border: none;
    color: white;
    padding: 5px 18px;
    text-decoration: none;
}

button:hover {
    background-color: #6d7883;
}

.status-wrapper {
    border-style: solid;
    border-width: 1px;
    padding: 15px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
}

.error-wrapper {
    background-color: #fecaca;
    border-color: #dc2626;
    color: #dc2626;
}

.success-wrapper {
    background-color: #bbf7d0;
    border-color: #16a34a;
    color: #16a34a;
}


@media only screen and (max-width: 1200px) {


  .files-list-table {
    width: 100%;
    display: flex;
    flex-direction: column;
  }

  .files-list-table th {
      display: none;
  }

  .files-list-table tr {
     display: flex;
     flex-direction: column;
  }
}

@media (min-width: 768px) {
    .hero {
      height: 300px;
    }

    .content-main {
        padding: 20px 20%;
    }
}

