:root {
  --dark-black: rgba(32, 32, 32, 1);
  --light-black: rgba(42, 42, 42, 1);
  --blue: rgb(0, 86, 179);
  --error: rgb(100, 0, 0);
  --grey: rgb(196, 196, 196);
  --lighter-grey: rgb(107, 107, 107);
  --success: rgb(0, 100, 0);
  --mc-core-grey-5: #3D3938;
  --mc-core-grey-6: #262423;
  --highlight-blue: #1D323E;
}

@import url('https://fonts.googleapis.com/css2?family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap');

html {
  background-color: rgb(14, 39, 49);
  font-family: "Work Sans";
  opacity: 1;
  visibility: visible;
}

body,
html {
  height: 100%;
  width: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
}

a, body, html {
  color: rgb(213, 213, 213);
  transition: 0.25s;
}

a:hover {
  color: #ffffff;
  text-decoration: none;
}

/*Header*/
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  border-bottom: 1px solid rgb(84, 104, 124);
  background: linear-gradient(to bottom, rgba(22, 101, 150, 0.7) 0%, rgba(0, 137, 150, 0.2) 100%);
  padding: 0.8em 0;
}

header ul {
  display: flex;
  align-items: center;
  gap: 1em;
  list-style: none;
  margin: 0;
}

header ul:first-child {
    padding: 0 0 0 1em;
}

header ul a {
  display: flex;
  align-items: center;
  font-size: 28px;
  text-decoration: none;
}

header img {
  height: 1.1em;
}

/*Hyperlinks*/
.footer-icon {
  display: inline-block;
}

.icon-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
}

/*General*/
label {
  font-weight: 400;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.pageStyle {
  display: flex;
  width: 100%;
  margin: 0 auto;
}

.pageStyle-center {
  max-width: 100%;
  margin: 0 auto;
  text-align: center;
}

.pageStyle-center form input {
  padding: 0.25% 0% 0.25% 0.25%
}

.lined {
  display: flex;
  align-items: center;
  letter-spacing: 0.05em;
  text-align: center;
  text-transform: uppercase;
  color: #cccccca4;
  font-weight: 500;
}

.lined::before,
.lined::after {
  content: '';
  flex: 1;
  border-bottom: 1px solid #444;
  margin: 0 16px;
}

.inactive {
    opacity: 0.075;
}

#clickable:hover {
  cursor: pointer !important;
}

video {
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

.divider {
  border-bottom: 1px solid #ccc;
  opacity: 50%;
}

section {
  display: block;
  border-bottom: 1px solid hsla(0, 0%, 100%, .1);
  text-align: center;
}

.content {
  margin: 8px;
  margin-top: 75px;
}

select {
  background-color: var(--grey);
  border: none;
  border-radius: 3px;
  border-right: 3px solid transparent;
  color: white;
  display: inline-block;
  max-width: 72%;
  overflow: scroll;
  padding: 4px 5px;
  position: relative;
  transition: 0.1s;
}

select:disabled {
  opacity: 25%;
}

select:not(:disabled) {
  background-color: rgb(0, 80, 100);
  cursor: pointer;
}

select:not(:disabled):hover {
  background-color: var(--lighter-grey);
  color: white;
}

select.content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  color: white;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  padding: 12px 16px;
  z-index: 1;l
}

.nocaret {
  cursor: default;
}

input,
button:not(.action-button),
textarea {
  background-color: var(--lighter-grey);
  border: inset;
  border-radius: 4px;
  border-width: 2px;
  box-sizing: border-box;
  color: white;
  font: 600 20px "Work Sans";
  outline: none;
  transition: 0.1s;
  margin-top: 1.5%;
  width: 50%;
}

input[type="number"] {
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
  appearance: textfield;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
}

.input-field input:focus,
.input-field input:hover {
  border: 1px solid var(--lighter-grey);
  transition: 0.1s;
}

h1 {
  font-weight: 650;
}

h2 {
  font-weight: 575;
  margin: 10px;
  text-indent: -10px;
}

h3 {
  font-weight: 400;
}