*, html {
  margin: 0;
  padding: 0;
  font-family: Arial, Helvetica, sans-serif;
  scrollbar-width: thin;
  scrollbar-color: #c4a747 black;
  scroll-behavior: smooth;
}

::-webkit-scrollbar {
  width: 1vh;
}

::-webkit-scrollbar-track {
  background-color: black;
}

::-webkit-scrollbar-thumb {
  background-color: #c4a747;
  border-radius: 2vh;
}

::-moz-selection {
  background-color: #c4a747;
  color: white;
}

::selection {
  background-color: #c4a747;
  color: white;
}

body {
  background-color: #1b2530;
  color: white;
  font-size: 1.2vw;
  min-height: 100%;
  max-width: 100vw;
}

.header {
  height: 100vh;
  width: auto;
  background-color: #1b2530;
}

.header .overlay {
  height: 100vh;
  width: 100%;
  position: absolute;
  background: linear-gradient(rgba(3, 18, 26, 0.5), rgba(0, 40, 59, 0.5));
}

.header img {
  position: absolute;
  width: 20vw;
  height: auto;
  padding: 1vw;
}

video {
  height: 100vh;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
}

.navbar {
  position: fixed;
  z-index: 9999;
  width: 100%;
  min-height: 18vh;
  max-height: 18vh;
  background-color: rgba(0, 0, 0, 0.1);
  box-shadow: 0vw 0vw 2vw 2vw rgba(0, 0, 0, 0.1);
  color: white;
}

.navbar ul {
  list-style-type: none;
  overflow: hidden;
  text-transform: uppercase;
}

.navbar li {
  float: left;
  border-right: 0.2vw solid rgba(255, 255, 255, 0.5);
}

.navbar li:last-child {
  border-right: none;
}

.navbar li a {
  display: block;
  color: white;
  font-size: 1.2vw;
  text-align: center;
  padding: 1vw 1.4vw;
  text-decoration: none;
  text-shadow: 0vw 0vw 1vw black;
}

.navbar li a:hover:not(.active) {
  background-color: rgba(255, 255, 255, 0.1);
  border-bottom: 0.4vw solid rgba(255, 255, 255, 0.5);
}

.navbar .active {
  border-bottom: 0.4vw solid #c4a747;
  color: #c4a747;
}

nav {
  display: inline-block;
  margin: 5vh;
  right: 0;
  width: auto;
  height: auto;
  position: absolute;
}

.navbar img {
  width: 15vw;
  height: auto;
  padding: 1vw;
  transition: width 200ms linear;
}

.navbar img.scrolled {
  width: 7vw;
  transition: width 200ms linear;
}

.navbar.scrolled {
  background-color: #1d2731 !important;
  transition: background-color 200ms linear;
}

.navbar.normal {
  position: static;
}

@keyframes jump {
  0% {
    top: 0;
  }
  50% {
    top: 50px;
  }
  100% {
    top: 0;
  }
}
#arrow-down {
  cursor: pointer !important;
  position: relative;
  margin: 0 auto;
  text-align: center;
  animation: jump 2s infinite;
}
#arrow-down i {
  content: "\f0a8";
  font-family: "FontAwesome";
  font-size: 80px;
  transition: 0.3s ease-in-out;
}
#arrow-down i:hover {
  opacity: 0.7;
  transition: 0.3s ease-in-out;
}

.arrow-container {
  position: absolute;
  left: 50%;
  bottom: 2vh;
  transform: translate(-50%, -50%);
  margin: 0 auto;
}

.header-content {
  position: absolute;
  max-width: 40vw;
  padding: 1vw;
  right: 0;
  bottom: 5vh;
  transform: translate(0%, -50%);
  margin: 0 auto;
  background-color: rgba(0, 0, 0, 0.25);
  border-left: 0.5vw solid #c4a747;
}

.header-content p {
  line-height: 1.5vw;
}

.header-content h2 b {
  color: #c4a747;
}

.container {
  margin: 2vw 8%;
  padding: 2vw 5vw;
  display: inline-block;
  box-shadow: 0 0 2vw #000000;
  background-color: rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
}

.image-container {
  display: block;
}

.container-text {
  float: left;
  padding: 2vw;
}

.container-text h1 {
  color: #c4a747;
}

a {
  color: #c4a747;
  text-decoration: none;
}

a:hover {
  color: #c9b161;
}

.container img {
  float: right;
  width: 30vw;
  height: auto;
  border-radius: 100%;
}

.squadrons {
  display: inline-block;
}

.image-container {
  text-align: center;
  width: 100%;
  display: flex;
  align-items: center;
  margin-bottom: 4vw;
}

.squadrons img {
  width: 15vw;
  height: auto;
  border-radius: 0;
}

.strip {
  height: 15px;
  background: -webkit-linear-gradient(left, #c9b161, #c4a747, #947f3b);
}

footer {
  text-align: center;
  background-color: rgba(0, 0, 0, 0.3);
  background: url("../img/footer.png");
  background-repeat: no-repeat;
  background-position: center;
  margin-top: 5vw;
  padding: 3vw;
  box-shadow: 0 0vw 1vw 0vw black;
  height: 10vh;
  padding: 3vw 8vw 3vw 8vw;
}

.footer-text {
  float: left;
}

.footer-logo {
  float: right;
}

.footer-logo img {
  height: 8vh;
  width: auto;
  margin-left: 2vw;
}

.button {
  background-color: #c4a747;
  color: #000000;
  padding: 1vw 2vw;
  border-radius: 0.2vw;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
  border: none;
}

.button:hover {
  background-color: #c9b161;
  color: #000000;
}

.container.discord {
  background: url("../img/footer.png");
  background-repeat: no-repeat;
  background-position: center;
}

.container-text.discord {
  float: center;
  text-align: center;
  width: 100%;
}

input[type=text] {
  padding: 0.2vw;
  font-size: 1vw;
  width: 100%;
  border: 0.2vw solid #c4a747;
  background-color: rgba(0, 0, 0, 0.2);
  color: #FFFFFF;
}

input[type=text]:focus {
  border-color: #c9b161;
  outline: #c9b161;
}

textarea {
  padding: 0.2vw;
  font-size: 1vw;
  width: 100%;
  min-height: 300px;
  border: 0.2vw solid #c4a747;
  background-color: rgba(0, 0, 0, 0.2);
  color: #FFFFFF;
}

textarea:focus {
  border-color: #c9b161;
  outline: #c9b161;
}

.required:after {
  color: #e32;
  content: "*";
  display: inline;
}

.alert {
  display: none;
  color: #e32;
  padding: 0.2vw;
  margin-bottom: 0.5vw;
  background-color: rgba(0, 0, 0, 0.2);
  border: 0.2vw solid black;
}

.squad-container {
  margin: 0 1.5vw 0 1.5vw;
  position: relative;
  cursor: pointer;
}

.last {
  margin: 0 10.5vw 0 10.5vw;
}

/*.roster img {
    border-radius: 0;
    min-width: 100%;
    height: auto;
}*/
.squad-container h2 {
  margin-bottom: 1vw;
}

.squad-container h2 {
  color: #c4a747;
}

.squad-image {
  display: block;
  width: 100%;
  height: auto;
}

.squad-overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  transition: 0.5s ease;
  background-color: rgba(29, 39, 49, 0.9);
  border: 0.2vw solid #c4a747;
}

.squad-container:hover .squad-overlay {
  opacity: 1;
}

.squad-text {
  color: white;
  font-size: 1vw;
  position: absolute;
  text-align: center;
  padding: 0.5vw;
}

/* The container */
.checkmarkContainer {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

/* Hide the browser's default checkbox */
.checkmarkContainer input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkmark {
  border-radius: 15%;
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
}

/* On mouse-over, add a grey background color */
.checkmarkContainer:hover input ~ .checkmark {
  background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.checkmarkContainer input:checked ~ .checkmark {
  background-color: #c4a747;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.checkmarkContainer input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.checkmarkContainer .checkmark:after {
  left: 9px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}

#content {
  top: 0;
  left: 0;
  padding: 0;
  margin: 0;
  color: black;
  min-width: 100vw;
  max-width: 100vw;
}

.panel {
  padding: 0;
  margin: 0;
  min-width: -moz-fit-content;
  min-width: fit-content;
  color: white;
}

.panel-body {
  text-align: left;
}

.badge {
  display: inline-block;
  padding: 0.25em 0.4em;
  font-size: 75%;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: 0.25rem;
  display: flex;
  align-items: center;
}

.badge img {
  max-height: 16px;
  max-width: 16px;
  padding: 4px;
}

.name {
  display: flex;
  align-items: center;
}

table {
  font-family: Arial, Helvetica, sans-serif;
  border-collapse: collapse;
  width: 100%;
  color: white;
}

table td, table th {
  border: 1px solid rgba(0, 0, 0, 0.2);
  padding: 8px;
}

table tr:nth-child(even) {
  background-color: rgba(0, 0, 0, 0.2);
}

table tr:hover {
  background-color: rgba(0, 0, 0, 0.5);
}

table th {
  padding-top: 12px;
  padding-bottom: 12px;
  text-align: left;
  background-color: #131a22;
  color: white;
}

.profile-small {
  font-size: 30px !important;
  color: #c4a747;
}/*# sourceMappingURL=style.css.map */