body{
  padding-bottom: 0;
  margin: 0;
  background-color: #fff !important;
  font-family: 'Roboto Condensed', sans-serif;
}

img {
  max-width: 100%;
}

a {
  text-decoration: none;
}

.navbar {
  box-shadow: 0 1px 15px rgba(0,0,0,0.5);
}

.navbar-nav .nav-link.active, .navbar-nav .show>.nav-link{
  color: #8c931f;
}

.carousel-inner .container-fluid, .carousel-inner .row{
  height: 100%;
  align-items: center;
}

.carousel-caption{
  position: static;
}

.carousel img {
  height: auto;
  width: auto;
  max-width: 100%;
}

.carousel button {
  width: 100%;
}

.carousel-item.active {
  height: 80vh;
  display: flex;
  align-items: center;
  background-size: contain
}

.logo {
  max-width: 150px;
  height: auto;
}

.g-card {
  background-color: #FFF;
  box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.1);
  background-position: center;
  overflow: hidden;
  position: relative;
  margin: 10px auto;
  cursor: pointer;
  border: 5px solid #fff;
  outline: 2px solid #8c931f;
  border-radius: 15px;
  height: 100%;
}

.g-card img {
  transition: all linear 0.25s;
  width: 100%;
  height: auto;
}

.g-card .g-name {
  position: absolute;
  left: 30px;
  bottom: 70px;
  font-size: 30px;
  color: #000;
  text-shadow: 0px 0px 20px rgba(0, 0, 0, 0.5);
  font-weight: bold;
  transition: all linear 0.25s;
}

.g-card .g-icons {
  position: absolute;
  bottom: 30px;
  right: 30px;
  color: #000;
  transition: all linear 0.25s;
}

.g-card .g-icons .fa {
  margin: 5px;
}

.g-card:hover img {
  filter: grayscale(100%);
}

.g-card:hover .g-name {
  bottom: 80px;
}

.g-card:hover .g-icons {
  right: 40px;
}

footer p, .upper-footer p{
  margin-bottom: 0;
  color: #fff;
}

footer {
  background-color: #8c931f;
  padding: 5px 0;
}

footer a {
  color: #fff;
  font-weight: bold;
  text-decoration: none;
}

footer a:hover {
  color: #f1f1f1;
}

footer, footer a, footer p {
  font-size: 12px;
  font-family: 'Roboto Condensed', sans-serif;
}

.upper-footer {
  background-color: #222;
}

.button-spec {
  align-items: center;
  appearance: none;
  background-clip: padding-box;
  background-color: initial;
  background-image: none;
  border-style: none;
  box-sizing: border-box;
  color: #000;
  cursor: pointer;
  display: inline-block;
  flex-direction: row;
  flex-shrink: 0;
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 16px;
  font-weight: 800;
  justify-content: center;
  line-height: 24px;
  margin: 0;
  min-height: 64px;
  outline: none;
  overflow: visible;
  padding: 19px 26px;
  pointer-events: auto;
  position: relative;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  vertical-align: middle;
  width: auto;
  word-break: keep-all;
  z-index: 0;
}

@media (min-width: 768px) {
  .button-spec {
    padding: 19px 32px;
  }
}

.button-spec:before {
  background-color: #8c931f;  
  content: "";
  display: block;
  height: 100%;
  left: 0;
  overflow: hidden;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -2;
}

.button-spec:after {
  background-color: initial;
  background-color: #fff;
  bottom: 4px;
  content: "";
  display: block;
  left: 4px;
  overflow: hidden;
  position: absolute;
  right: 4px;
  top: 4px;
  transition: all 100ms ease-out;
  z-index: -1;
}

.button-spec:hover:not(:disabled):after {
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  transition-timing-function: ease-in;
}

.button-spec:active:not(:disabled) {
  color: #ccc;
}

.button-spec:active:not(:disabled):after {
  background-image: linear-gradient(0deg, rgba(0, 0, 0, .2), rgba(0, 0, 0, .2)), linear-gradient(92.83deg, #ff7426 0, #f93a13 100%);
  bottom: 4px;
  left: 4px;
  right: 4px;
  top: 4px;
}

.button-spec:disabled {
  cursor: default;
  opacity: .24;
}

.g-title {
  padding: 2px 0;
  background: #fff;
  color: #000;
  font-weight: bold;
  font-size: 0.8em;
  text-align: center;
  white-space: nowrap;
}

.col-md-2 .g-title {
  font-size: 0.5em;
  padding: 5px;
}

.stars {
  text-align: center;
  font-weight: normal;
  white-space: normal;
}

.fa-star {
  font-size: 10px;
}

.fa-star.checked {
  color: #ffbc00;
}

form .button-spec {
  width: 100%;
}

@media (min-width: 992px) {
  .button-spec {
    font-size: 24px;
    min-width: 196px;
  }
  .g-title {
    font-size: 1em;
  }
  .col-md-2 .g-title {
    font-size: 0.8em;
    padding: 5px 10px;
  }
  .fa-star {
    font-size: 14px;
  }
  .carousel button{
    margin-bottom: 2rem !important;
    width: auto;
  }
}

@media (max-width: 991px) {
  .carousel .my-4.d-block {
    margin-top: 0 !important;
    position: static !important;
  }
  .carousel-item.active {
    background-size: cover;
  }
}