/* style */

body {
  font-size: 18px;
  font-family: "century gothic";
}

@media (min-width: 768px) {
  body {
    overflow-x: hidden;
  }

  .logo {
    background-color: black;
    max-height: 120px;
  }

  /*nav*/
  nav {
    height: 80px;
  }

  main {
    background-image: url("../image/background.jpg");
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: top center;
    background-size: 100vw auto;
    padding-top: 20px;
  }

  .marketing {
    margin-top: calc(70vh - 230px);
  }
}

.navbar-dark .navbar-nav .active > .nav-link,
.navbar-dark .navbar-nav .nav-link.active,
.navbar-dark .navbar-nav .nav-link.show,
.navbar-dark .navbar-nav .show > .nav-link {
  color: #9db701 !important;
}

.navDrop-content {
  overflow: hidden;
  -webkit-transition: height 200ms ease-in;
  -moz-transition: height 200ms ease-in;
  -o-transition: height 200ms ease-in;
  transition: height 200ms ease-in;
  height: 0;
}

.navDrop-content a {
  text-decoration: none;
  color: white;
  background-color: rgba(0, 0, 0, 0.8);
  opacity: 1;
  padding: 15px;
  display: block;
  margin: 10px;
  border-radius: 8px;
  box-shadow: 10px;
  position: relative;
  z-index: 2;
}

.navDrop-content a:hover {
  color: #9db701;
}

.navDrop:hover .navDrop-content {
  display: block;
  background-color: inherit;
  height: 230px;
}

.navDrop-item {
}

/*end nav*/

footer {
  background-color: black;
}

/* MARKETING CONTENT */
.marketing-img {
  height: 14vh;
  width: 14vh;
}

.marketing-img-small {
  height: 30px;
  width: 30px;
}

.marketing .col-lg-4 {
  margin-bottom: 1.5rem;
  text-align: center;
}
.marketing h2 {
  font-weight: 400;
}
.marketing .col-lg-4 p {
  margin-right: 0.75rem;
  margin-left: 0.75rem;
}

.fadein {
  animation: fadein 300ms;
  -moz-animation: fadein 300ms; /* Firefox */
  -webkit-animation: fadein 300ms; /* Safari and Chrome */
  -o-animation: fadein 300ms; /* Opera */
}
@keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-moz-keyframes fadein {
  /* Firefox */
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes fadein {
  /* Safari and Chrome */
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-o-keyframes fadein {
  /* Opera */
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.ratio-4-3 {
  width: 100%;
  position: relative;
  background: url() 50% 50% no-repeat;
  background-size: cover;
  background-clip: content-box;
}
.ratio-4-3:before {
  display: block;
  content: "";
  padding-top: 75%;
}

.imgBand {
  position: absolute;
  z-index: 2;
  right: 0;
  max-width: 300px;
}

.bg-dark {
  background-color: #000000 !important;
}

b {
  color: #9db701;
}

g {
  color: #9db701;
}

a {
  color: #9db701;
}

a:hover {
  color: #9db701;
}

hr {
  height: 5px;
  color: #9db701;
  background-color: #9db701;
  border: none;
  padding: 0px;
  margin: 0px;
}

.hover figure img {
  -webkit-transform: rotate(0) scale(1);
  transform: rotate(0) scale(1);
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.hover figure:hover img {
  -webkit-transform: rotate(15deg) scale(1);
  transform: rotate(15deg) scale(0.8);
}

.nav {
  background-color: #131c1b;
}

@media (min-width: 1200px) {
  .container {
    max-width: 1500px;
  }
}

.hideLink {
  cursor: text;
}

.hideLink:hover {
  text-decoration: inherit;
  text-decoration-color: inherit;
  color: inherit;
}

/* CUSTOMIZE THE CAROUSEL
-------------------------------------------------- */

/* Since positioning the image, we need to help out the caption */
.carousel-caption {
  bottom: 3rem;
  z-index: 10;
}

/* Declare heights because of positioning of img element */
.carousel-item {
  height: 32rem;
  background-color: #777;
}
.carousel-item > img {
  position: absolute;
  top: 0;
  left: 0;
  min-width: 100%;
  height: 32rem;
  transition-duration: 1.5s;
}

/* Featurettes
------------------------- */

.featurette-divider {
  margin: 5rem 0; /* Space out the Bootstrap <hr> more */
}

/* Thin out the marketing headings */
.featurette-heading {
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.05rem;
}

/* RESPONSIVE CSS
-------------------------------------------------- */

@media (min-width: 40em) {
  /* Bump up size of carousel content */
  .carousel-caption p {
    margin-bottom: 1.25rem;
    font-size: 1.25rem;
    line-height: 1.4;
  }

  .featurette-heading {
    font-size: 50px;
  }
}

@media (min-width: 62em) {
  .featurette-heading {
    margin-top: 7rem;
  }
}

.print-only {
  display: none;
}

@media print {
  header,
  .do-not-print {
    display: none;
  }

  .print-full-size {
    max-width: 100%;
    flex: 0 0 100%;
  }

  .print-only {
    display: block;
  }

  @page {
    margin: 0;
    padding: 5vh;
  }

  main {
    min-height: 65vh;
  }

  p {
    color: black;
  }

  main {
    background-image: none;
  }

  .bg-dark {
    background-color: #ffffff !important;
  }

  footer {
    background-color: #ffffff !important;
  }
}
