/* Global Css Variables */
:root {
  --background: #f8f9fa;
  --navbar-bg: #080d1b;
}
/* Common Variables */
body {
  background: var(--background);
  padding-bottom: 0;
  margin: 0;
}

img {
  max-width: 100%;
}

/* Navbar */
.navbar-custom {
  background-color: var(--navbar-bg);
}
/* Navbar End */

/* Page Specific Variables */

.carousel-inner .container,
.carousel-inner .row {
  height: 100%;
  align-items: center;
}

.carousel img {
  height: auto;
  width: auto;
  max-width: 100%;
  max-height: 70vh;
}

.carousel-item {
  height: 80vh;
}

.logo {
  height: 50px;
}

.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-radius: 10px;
}

.g-card .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: #fff;
  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: #fff;
  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: #333;
  padding: 5px 0;
}

footer a {
  color: #fff;
  font-weight: bold;
  text-decoration: none;
}

footer a:hover {
  color: #f1f1f1;
}

.upper-footer {
  background-color: #222;
}

.button-spec {
  align-items: center;
  border: 0;
  border-radius: 8px;
  background-color: #1f1c1c;
  box-shadow: rgba(255, 255, 255, 0.2) 0 15px 30px -5px;
  box-sizing: border-box;
  color: #ffffff;
  display: flex;
  font-family: Phantomsans, sans-serif;
  font-size: 20px;
  justify-content: center;
  line-height: 1em;
  max-width: 100%;
  min-width: 140px;
  padding: 3px;
  text-decoration: none;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  white-space: nowrap;
  cursor: pointer;
  width: 100%;
}

.button-spec:active,
.button-spec:hover {
  outline: 0;
}

.button-spec span {
  background-color: rgb(83, 83, 83);
  padding: 16px 24px;
  border-radius: 6px;
  width: 100%;
  height: 100%;
  transition: 300ms;
}

.button-spec:hover span {
  background: #746c8b;
  color: #ffffff;
}

.btn-central {
  background-color: #000000;
  border: 1px solid goldenrod;
}

.btn-central > a {
  text-decoration: none;
  color: #fff;
}

.btn:hover {
  background-color: #0c0c0c;
  border: 2px solid green;
}

.termsMargin {
  margin: 0 1rem;
}

/* Forms */
.form-check-label > a {
  color: #000000;
}

@media (min-width: 768px) {
  .button-spec {
    font-size: 24px;
    min-width: 196px;
  }
}
