@import url("https://fonts.googleapis.com/css?family=Orbitron");

/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Orbitron", sans-serif;
  background-color: #000; /* Dark background */
  color: #6c7279;
}

/* Links */
a {
  color: #e84545;
  text-decoration: none;
}

a:hover, a:focus {
  text-decoration: none;
  transition: background-color, color 0.3s;
}
/* Header */
#header {
    position: fixed;
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    padding: 10px 0;
    transition: padding 0.2s;
}

#header .header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 15px;
}

#header .logo img {
    max-width: 80px;
}

#header .navigation {
    display: flex;
}

#header .primary-nav {
    display: flex;
    list-style: none;
}

#header .primary-nav li {
    margin-left: 20px;
}

#header .primary-nav li a {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
}

#header .primary-nav li a:hover,
#header .primary-nav li a.active {
    color: #fff;
}

/* Banner */
.banner_part {
    position: relative;
    background: url("../images/body_bg.png") no-repeat center center/cover;
    text-align: center;
    color: white;
    padding: 150px 0;
}

.banner_part .banner_text {
    max-width: 600px;
    margin: 0 auto;
}

.banner_part h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-weight: 900;
}

.banner_part h7 {
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 20px;
    display: block;
}

.banner_part .btn-hover {
    margin-top: 20px;
}

/* Container */
.container {
  max-width: 1200px;
  margin: auto;
  padding: 20px;
}

/* Features Section */
.feature-content h5 {
  color: #fff;
  font-size: 30px;
}

.feature-content p {
  color: #fff;
  font-size: 20px;
}

/* Team Section */
.person {
  max-width: 270px;
  margin-top: 30px;
}

.person-content {
  margin-top: 20px;
}

.person h4 {
  font-weight: 400;
}

.person h5 {
  color: #e84545;
  font-size: 13px;
  font-weight: 400;
  margin-bottom: 20px;
}

.headshot {
  border-radius: 200px;
  height: 200px;
  width: 200px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.social-icons, .footer .footer-share {
  margin-top: 30px;
}

.social-icons li, .footer .footer-share li {
  float: left;
}

.social-icons a, .footer .footer-share a {
  border: 1px solid #e8ecee;
  border-radius: 2px;
  color: #c6cacc;
  display: block;
  font-size: 18px;
  height: 40px;
  line-height: 40px;
  margin-right: 5px;
  text-align: center;
  width: 40px;
}

.social-icons a:hover, .footer .footer-share a:hover {
  background-color: #e84545;
  border-color: #e84545;
  color: #fff;
}

/* Footer */
.footer {
  text-align: center;
}

.footer-top {
  background-image: url("../images/clouds2.jpg");
  background-position: center top;
  background-repeat: no-repeat;
  background-size: auto;
  background-color: #3a3e64;
  padding-top: 50px;
}

.footer-bottom {
  background-color: #0b152f;
  padding: 20px 0;
}

.footer .footer-col {
  margin-bottom: 80px;
}

.footer h5 {
  color: #fff;
  margin-bottom: 20px;
}

.footer p {
  color: rgba(255, 255, 255, 0.5);
}

.footer a {
  color: #fff;
}

.footer a:hover {
  color: #e84545;
}

.footer .footer-share {
  margin-top: 0;
}

.footer .footer-share li {
  display: inline-block;
  float: none;
}

.footer .footer-share a {
  border-width: 2px;
  color: #fff;
}

.footer .fa-heart {
  color: #e84545;
  font-size: 11px;
  margin: 0 2px;
}

/* Accordion */
.accordion-wrapper {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 4px -2px rgba(0, 0, 0, 0.5);
  width: 90%;
  margin: 0 auto;
}

.accordion-wrapper input {
  position: absolute;
  opacity: 0;
  z-index: -1;
}

.accordion {
  width: 100%;
  color: white;
  overflow: hidden;
  margin-bottom: 16px;
}

.accordion:last-child {
  margin-bottom: 0;
}

.accordion-label {
  display: flex;
  justify-content: space-between;
  padding: 16px;
  background: #0b152f;
  font-weight: bold;
  cursor: pointer;
  font-size: 20px;
}

.accordion-label:hover {
  background: rgba(4, 57, 94, 1);
}

.accordion-label::after {
  content: "\276F";
  width: 16px;
  height: 16px;
  transition: all 0.3s;
}

.accordion-content {
  max-height: 0;
  padding: 0 16px;
  color: rgba(4, 57, 94, 1);
  background: white;
  transition: all 0.3s;
}

.accordion-content p {
  margin: 0;
  color: rgba(4, 57, 94, 0.7);
  font-size: 18px;
}

input:checked + .accordion-label {
  background: #0b152f;
}

input:checked + .accordion-label::after {
  transform: rotate(90deg);
}

input:checked ~ .accordion-content {
  max-height: 100vh;
  padding: 16px;
}

/* Timeline */
.timeline {
  position: relative;
}

.timeline li {
    list-style: none;
    position: relative;
    text-align: center;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4rem;
}

.timeline li .content {
    position: relative;
    z-index: 2;
    max-width: 350px;
    width: 100%;
    text-align: left;
}

.timeline li .content .text-above {
    display: block;
    text-align: left;
    padding-bottom: 15px;
    color: #fff;
    font-size: 18px;
}

.timeline li .year {
    width: 110px;
    height: 110px;
    border: 2px solid #cc0202;
    border-radius: 50%;
    display: block;
    line-height: 110px;
    margin: 0 auto;
    background: #d2d2d2;
    color: #000;
    transition: all ease-in-out 0.3s;
    text-align: center;
    position: relative;
    z-index: 100;
}

.timeline .year:before {
    content: "";
    width: 4px;
    height: 79px;
    background: #c4cf00;
    position: absolute;
    bottom: -80px;
    left: 0;
    right: 0;
    margin: auto;
    z-index: -100;
	text-align: left;
}

.timeline li:last-child .year:before {
	display: none;
}

.timeline li .content .text-below {
  display: block;
  text-align: left;
  padding-top: 15px;
  padding-left: 0;
  padding-right: 0;
  color: #fff;
  font-size: 14px;
}

/* .timeline li:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 4px;
  background-color: rgb(117, 0, 70);
  top: 95px;
  left: -50%;
  z-index: 1;
} */

.timeline li:first-child:after {
  content: none;
}

.timeline li.active .year {
  background: #000000;
  color: #ababab;
}

.timeline li.active + li:after {
  background: #c4cf00;
}





/* Buttons */
.btn-hover {
  width: 220px;
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  cursor: pointer;
  margin: 20px;
  height: 65px;
  text-align: center;
  border: none;
  background-size: 300% 100%;
  border-radius: 40px;
  transition: all 0.4s ease-in-out;
}

.btn-hover:hover {
  background-position: 100% 0;
  transition: all 0.4s ease-in-out;
}

.btn-hover:focus {
  outline: none;
}

.btn-hover.color-2 {
  background-image: linear-gradient(to right, #f51e12, #e43603, #fa7199, #f85a19);
  box-shadow: 0 4px 15px 0 rgba(229, 66, 10, 0.75);
}

.btn-huge {
  padding: 15px 10px;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 3px;
}

/* Form */
input[type=text], input[type=submit] {
  width: 100%;
  padding: 12px;
  margin: 8px 0;
  display: inline-block;
  border: 1px solid #ccc;
  box-sizing: border-box;
}

input[type=checkbox] {
  margin-top: 16px;
}

input[type=submit] {
  background-color: #04AA6D;
  color: white;
  border: none;
}

input[type=submit]:hover {
  opacity: 0.8;
}

/* Image Centering */
.image.centered img {
  display: block;
  padding-top: 5px;
  margin: 0 auto;
  width: auto;
  max-width: 98%;
}

/* Custom Background */
.body_bg {
  background-image: url("../images/body_bg.png");
  background-position: center;
  background-repeat: repeat-y;
  background-size: cover;
}

.close-modal {
	display: none;
}

.show-menu {
	display: none;
	position: fixed;
    right: 20px;
    top: 11px;
}

.show-menu img {
    width: 30px;
}

div#roadmap {
    max-width: 590px;
    text-align: center;
}

@media (max-width: 992px) {
	#header .navigation {
		position: fixed;
		right: 0;
		top: 0;
		background: white;
		padding: 20px 0;
		height: 0;
        display: none;
		width: 100%;
	}
	#header .primary-nav {
		flex-flow: wrap;
	}
	ul.primary-nav li {
		width: 100%;
		padding: 5px;
		text-align: center;
		margin: 10px 0;
	}
	
	#header ul.primary-nav li a {
		font-size: 25px;
		color: black;
	}
	#header ul.primary-nav li a:hover {
		color: gray;
	}
	.close-modal {
		display: block;
		position: absolute;
		right: 20px;
		border: 1px solid gray;
		width: 40px;
		height: 40px;
		display: flex;
		align-items: center;
		justify-content: center;
		border-radius: 50%;
		cursor: pointer;
		top: 11px;
	}
	.show-menu {
		display: block;
	}
	#header .navigation.active {
		height: auto;
		display: block;
	}
}

@media (max-width: 500px ) {
	.timeline li .year {
		width: 80px;
		height: 80px;
		border: 2px solid #cc0202;
		border-radius: 50%;
		display: block;
		line-height: 20px;
		margin: 0 auto;
		background: #d2d2d2;
		color: #000;
		transition: all ease-in-out 0.3s;
		text-align: center;
		position: relative;
		z-index: 100;
		display: flex;
		align-items: center;
		justify-content: center;
	}
	.timeline .year:before {
		content: "";
		width: 4px;
		height: 214px;
		background: #c4cf00;
		position: absolute;
		bottom: -218px;
		left: 0;
		right: 0;
		margin: auto;
		z-index: -100;
		text-align: left;
	}
	.timeline li .content {
		max-width: 140px;
	}
	#header ul.primary-nav li a {
        font-size: 15px;
        color: black;
    }
	ul.primary-nav li {
        width: 100%;
        padding: 5px;
        text-align: center;
        margin: 2px 0;
    }
}