body {
  display: flex;
  flex-direction: column;
  color: var(--yellow);
  background: var(--bg);
  background-image: var(--particle);
  height: 100vh;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-repeat: no-repeat;
  background-size: cover;
}

.navbutton {
  color: var(--yellow);
  font-size: 1.1rem;
  margin: 0.2rem;
  height: 100%;
  border: none;
  background-color: rgba(255,255,255,0);
}

.navbutton.last {
  margin-right: 1rem;
  margin-left: auto;
}

.navibar ul {
  /*width: 50%;*/
  list-style: none;
  text-decoration: none;
}

.navibar ul:last-child {
  padding: 0;
  margin: 0;
}

.copyright {
  margin-right: 1rem;
  margin-left: auto;
}

:root {
  --green2: #1f6c68;
  --particle: url(../../assets/img/particle.png);
  --red: #A14016;
  --purple: #322938;
  --orange: #CC883A;
  --yellow: #efe9bb;
  --green: #89A194;
  --whitebg: rgba(255,255,255,0.81);
}

.light {
  --bg: var(--green);
}

.navigation {
  height: 6vh;
}

.navibar {
  height: 100%;
}

.rightpanel {
  display: flex;
  flex: 7;
  width: 100%;
  justify-content: center;
  align-items: center;
}

.leftpanel {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  flex: 4;
}

.maincont {
  height: 94vh;
  display: flex;
}

.lastpanel-last {
  order: 2;
  display: flex;
  width: 100%;
  margin-bottom: 0.2rem;
  margin-top: 1rem;
}

.leftpanel-heading {
  order: 1;
  display: flex;
  height: 100%;
  justify-content: center;
  align-items: center;
}

.navbutton:hover {
  color: var(--red);
  background-color: white;
}

.navbutton:active, .navbutton:focus {
  color: var(--red);
  box-shadow: none;
  background-color: white;
}

.navbutton.first {
  margin-left: 1rem;
}

.rightpanelphoto {
  height: 100%;
}

.leftpanel-heading h1 {
  /*padding-top: 1re;*/
  padding: 1rem;
  /*border-style: dotted;*/
  text-align: center;
  font-size: calc(30px + 2.2vw);
}

.leftpanel-heading span {
  margin: 0;
  padding: 0;
  font-size: calc(30px + 8vw);
  font-family: Whisholder;
}

.emailinput {
  margin-right: 1rem;
  width: 100%;
}

.lastpanel-last i {
  font-size: 2.5rem;
  margin-left: 0.3rem;
  margin-right: 0.3rem;
}

.emailinputdesign {
  color: var(--whitebg);
  font-family: 'Muli';
  margin-left: 1rem;
  background-color: rgba(0,128,0,0);
  border-width: 2px;
  border-color: var(--green2);
  max-width: 500px;
  border-radius: 5px 0px 0px 5px;
}

.emailinputbutton {
  border-color: #1f6c68;
  text-align: center;
  line-height: 1em;
  background-color: rgba(0,123,255,0);
  font-size: 1.2rem;
  border-width: 2px;
}

.input-group > .custom-select:not(:first-child), .input-group > .form-control:not(:first-child) {
  border-radius: 5px 0px 0px 5px;
}

.emailinputbutton:hover {
  background-color: white;
  color: var(--purple);
}

#projects {
  height: 100%;
  display: none;
}

.projectspanel {
  width: 60%;
  padding: 2rem;
  flex-direction: column;
  display: flex;
  align-items: center;
  border-radius: 10px;
  /*height: 90%;*/
  margin: 1rem;
  background-color: var(--whitebg);
}

.aboususpanel {
  border-radius: 10px;
  margin: 2rem;
  width: 95%;
  height: 90%;
  background-color: rgba(255,255,255,0.6);
}

.projectspanel h1 {
  color: var(--purple);
  font-family: Whisholder;
}

.globe {
  animation-name: shake-vertical;
  animation-duration: 3s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
}

.globe {
  -webkit-animation: shake-vertical 5s cubic-bezier(0.550, 0.085, 0.680, 0.530) infinite both;
  animation: shake-vertical 5s cubic-bezier(0.550, 0.085, 0.680, 0.530) infinite both;
}

@keyframes shake-vertical {
  0% {
    transform: translate(0, 0px);
  }
  50% {
    transform: translate(0, 15px);
  }
  100% {
    transform: translate(0, -0px);
  }
}

.globe {
  height: 100%;
  width: auto;
}

.fadein {
  -webkit-animation: fade-in-bottom 1s cubic-bezier(.39,.575,.565,1.000) both;
  animation: fade-in-bottom 1s cubic-bezier(.39,.575,.565,1.000) both;
}

@keyframes fade-in-bottom {
  0% {
    -webkit-transform: translateY(50px);
    transform: translateY(50px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}

.navdropdown {
  /*margin-right: 3rem;*/
  z-index: 2;
  margin-top: 1rem;
  transition: opacity .55s ease-out;
  border-radius: 5px;
  background-color: var(--yellow);
  margin-top: 3rem;
  position: absolute;
  opacity: 0;
}

.dropdownbutton {
  font-size: 0.9rem;
  color: var(--green);
  border: none;
  background-color: rgba(255,255,255,0);
}

.navdropdown p {
  border-bottom: groove;
  color: var(--red);
  margin-bottom: -0.01px;
  margin-top: 0.2rem;
  text-align: center;
}

.copyright:hover .navdropdown {
  pointer-events: auto;
  opacity: 1;
}

.navbutton.last:hover {
  background-color: rgba(255,255,255,0);
}

.crewcards i {
  border-radius: 100%;
  border: 1.6px solid var(--green);
  padding: 0.4rem;
  margin-right: 0.9rem;
}

.crewcardbutton {
  font-weight: 600;
  border-width: 1.6px;
  border-color: var(--green);
  border-radius: 0px;
  color: var(--green);
  padding: 2px 5px 2px 5px;
  background-color: rgba(255,255,255,0);
  font-size: 0.9rem;
}

.crewcards {
  font-family: Smythe, cursive;
  color: var(--green);
  letter-spacing: 1px;
}

.card {
  margin-top: 1rem;
}

.crewpanel {
  width: 95%;
  border-radius: 10px;
  /*overflow-y: scroll;*/
  height: 90%;
  margin-left: 0.6rem;
  margin-top: 2rem;
  background-color: var(--whitebg);
}

#crew {
  width: 100%;
  display: none;
  height: 100%;
}

.crewpanel h1 {
  color: var(--red);
  font-family: 'Whisholder';
  padding-top: 1rem;
  text-align: center;
}

#tab-2 p {
  letter-spacing: -0.5px;
  font-size: 12px;
}

.attcrewpanel {
  height: 70vh;
  /*overflow-y: scroll;*/
}

#tab-1 {
  overflow-y: scroll;
  overflow-x: hidden;
  height: 70vh;
}

@media (max-width: 600px) {
  #tab-1 {
  height: 60vh;
}
}

.aboutuspanel {
  width: 70%;
  font-family: 'Smythe';
  flex-direction: column;
  display: flex;
  align-items: center;
  border-radius: 10px;
  /*height: 90%;*/
  margin: 1rem;
  background-color: rgba(255,255,255,0.81);
}

@media (max-width: 600px) {
  .maincont {
    height: calc(var(--vh, 1vh) * 94);
    flex-direction: column;
  }
}

@media (max-width: 600px) {
  .leftpanel {
    height: calc(var(--vh, 1vh) * 94);
    flex: 100;
  }
}

@media (max-width: 600px) {
  .navigation {
    height: calc(var(--vh, 1vh) * 6);
    display: none;
  }
}

@media (max-width: 600px) {
  .vistab {
    display: none;
  }
}

@media (min-width: 600px) {
  .mobilenavigation {
    height: calc(var(--vh, 1vh) * 6);
    display: none;
    z-index: 1000000000;
  }
}

.mobilenavigation {
  width: 100vw;
  margin-top: auto;
  background-color: rgba(255,255,255,0.67);
  z-index: 1000000000;
}

#aboutus {
  height: 100%;
  display: none;
}

@media (max-width: 600px) {
  body {
    height: calc(var(--vh, 1vh) * 100);
    background-image: url(../../assets/img/radio.png), var(--particle);
    background-size: auto;
    background-position: center;
  }
}

@media (max-width: 600px) {
  .leftpanel-heading h1 {
    padding-top: 2rem;
    color: var(--red);
    border-radius: 5px;
    background-color: var(--whitebg);
  }
}

@media (max-width: 600px) {
  .leftpanel-heading {
    order: 3;
  }
}

.projectspanel h1 {
  border-color: var(--red);
  font-family: 'Whisholder';
  border-bottom: solid;
  color: var(--red);
  font-size: calc(20px + 2vw);
}

.aboutuspanel h1 {
  border-color: var(--red);
  font-family: 'Whisholder';
  border-bottom: solid;
  color: var(--red);
  font-size: calc(20px + 2vw);
  margin-bottom: -0.5rem;
  margin-top: 2rem;
}

.aboutuspanel h2 {
  font-size: calc(10px + 1vw);
  color: var(--purple);
  font-family: 'Muli';
  margin-left: 3rem;
  margin-right: 3rem;
}

.aboutuspanel1 {
  justify-content: center;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}

.projectcardouter {
  border-style: double;
  background-color: rgba(255,255,255,0);
  width: 70%;
  border-radius: 20px;
}

.projectcardinner {
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.projectcardinner p {
  text-align: center;
}

.projectcardinner h6 {
  margin-top: 1rem;
}

.projectcardinner.atthetone {
  border-color: orange;
  background-color: rgba(255,255,255,0);
  border-radius: 20px;
  font-family: 'Whisholder';
  background-size: cover;
  background-position: bottom;
}

.projectcardinner.sharevestiga {
  border-radius: 20px;
  font-family: Muli, sans-serif;
}

.projectspanel.pitn {
}

.projectcardouter.pitn {
  font-family: 'Smythe';
}

.projectcardinner img {
  width: 50%;
  border-style: double;
}

.projectspanel1 {
  display: flex;
  height: 100%;
  justify-content: center;
  align-items: center;
}

.projectcolumn {
  display: flex;
  justify-content: center;
}

#tab-2 {
  color: var(--green);
  font-family: 'Muli';
  overflow-y: scroll;
  overflow-x: hidden;
  height: 60vh;
}

.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
  color: var(--red);
}

.card-title {
  letter-spacing: -0.5px;
  font-size: 18px;
}

#tab-3 p {
  font-size: 12px;
  font-family: 'Comodo';
}

#tab-3 h4 {
  font-family: 'Comodo';
  font-size: 16px;
}

@media (max-width: 600px) {
  #tab-3 {
  height: 60vh;
}
}

#tab-1 h4 {
  letter-spacing: 1px;
}

.nav-tabs .nav-link {
  color: var(--purple);
}

@media (max-width: 600px) {
  #tab-2 {
    height: 60vh;
    /*overflow-y: scroll;*/
  }
}

.projectcardbody {
  color: var(--green);
  width: 30%;
  border-color: var(--green);
  border-style: double;
  margin-top: 1rem;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  cursor: pointer;
}

.projectcardbody img {
  border-color: var(--green2);
  border-style: double;
  width: 70%;
}

.projectcardcontainer {
  width: 100%;
  display: flex;
  justify-content: space-around;
}

.projectcardbody h3 {
  margin-top: 1rem;
  font-size: calc(10px + 1vw);
  text-align: center;
}

.projectcardbody p {
  text-align: center;
}

.att {
  font-family: 'Smythe';
  letter-spacing: 1px;
}

.sv {
  letter-spacing: -1px;
  font-family: 'ABeeZee';
}

@media (max-width: 600px) {
  .projectcardcontainer {
    align-items: center;
    flex-direction: column;
  }
}

@media (max-width: 600px) {
  .projectcardbody {
    width: 80%;
  }
}

@media (max-width: 600px) {
  .projectcardbody h3 {
    font-size: calc(20px + 1vw);
  }
}

.projectcardbody.sv h3 {
  font-size: calc(10px + 0.8vw);
}

.projectcardbody.att h3 {
  margin-top: 2rem;
}

.projectcardbody:hover {
  background-color: var(--green);
  color: white;
}

.cb {
  --bg: var(--cbgreen);
}

.form-control:focus {
  background-color: rgba(255,255,255,0);
}

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

.crewcards i:hover {
  background-color: var(--green);
  color: white;
  cursor: pointer;
}

.lastpanel-last i:hover {
  cursor: pointer;
  color: var(--green2);
}

@media (max-width: 600px) {
  .copyright {
    display: none;
  }
}

.d-flex.flex-row.align-items-xl-center.mob {
  /*background-color: rgba(255,255,255,0.29);*/
}

@media (max-width: 600px) {
  .crewcontainer {
    height: 100%;
    overflow-y: scroll;
  }
}

@media (max-width: 600px) {
  .crewpanel {
    /*height: 60%;*/
  }
}

@media (max-width: 600px) {
  .tab-content {
    height: 60%;
  }
}

@media (max-width: 600px) {
  .projectspanel {
    height: 90%;
    width: 70%;
  }
}

@media (max-width: 600px) {
  #projects {
    /*overflow-y: scroll;*/
    height: 100%;
  }
}

@media (max-width: 600px) {
  .rightpanel {
    height: 80%;
    /*display: none;*/
  }
}

@media (max-width: 600px) {
  .projlist {
    height: 100%;
    overflow-y: scroll;
  }
}

@media (max-width: 600px) {
  .navbutton {
    color: var(--red);
    font-size: calc(6px + 2vw);
  }
}

#homepageimage {
  /*display: none;*/
}

@media (max-width: 600px) {
  .nav.nav-tabs.d-xl-flex.justify-content-xl-center {
    /*justify-content: center!important;*/
  }
}

.cpright {
  width: 78%;
}

.nav.nav-tabs.d-xl-flex.justify-content-xl-center {
  justify-content: center;
}

.fab.fa-patreon {
  font-size: 2rem;
  margin-top: 0.3rem;
}

.container.crewcontainer.executiveteam {
  font-family: 'Open Sans', sans-serif;
  font-size: 13px;
}

.nav-item.tab4 {
  font-family: 'Open Sans', sans-serif;
  letter-spacing: -1.5px;
}

#tab-3 {
  height: 60vh;
  overflow-y: scroll;
}

#tab-4 {
  height: 70vh;
  overflow-y: scroll;
}

@media (max-width: 600px) {
  #tab-4 {
  height: 60vh;
}
}

svg {
  height: 100%;
  width: 11%;
}

.fab.fa-twitter {
  font-size: 2.3rem;
}

#tab-2 h4 {
  font-size: 15px;
}

