
body {
  scroll-behavior: smooth;
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings: "wdth" 75;
}

.roboto-mono {
  font-family: "Roboto Mono", monospace;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

#navbar .container {
  transition: all 0.3s ease;
  margin-top: 100px;
}

#navbar.shrink .container {
  margin-top: 0;
}

#navbar img {
  width: 60px;
  height: 60px;
}

#navbar a.navbar-brand {
  font-size: x-large !important;
}

#navbar.shrink img {
  width: 40px;
  height: 40px;
}

#navbar.shrink a.navbar-brand {
  font-size: large !important;
}

#navbar.navbar-white a.navbar-brand {
  color: #4B5055 !important;
}

.hero {
  height: 100vh;
}

.bg-dark {
  background-color: #4B5055 !important;
}

.bg-primary {
  background-color: #FCAF17 !important;
}

.btn-primary {
  background-color: #FCAF17 !important;
  color: black !important;
  text-transform: uppercase;
}

.text-primary {
  color: #FCAF17 !important;
}

.btn {
  border: 0;
}

.nav-pills .nav-link {
  background-color: transparent;
  color: #4b5055;
  text-transform: uppercase;
}

.nav-pills .nav-link.active {
  border-radius: 0;
  background-color: transparent;
  color: #FCAF17;
  text-transform: uppercase;
}

.navbar-dark .navbar-nav .nav-link {
  color: white !important;
}

.carousel-item {
  height: 32rem;
  min-height: 70vh;
}

.carousel-item img {
  opacity: 0.5;
}

.carousel-caption {
  top: 1.25rem;
}

.carousel-item .card {
  width: 340px;
  max-width: 70vw;
}

.carousel-control-next, 
.carousel-control-prev {
  opacity: 1;
}

.carousel-control-next-icon, 
.carousel-control-prev-icon {
  filter: invert(1);
}

.alert {
  display: none;
}

.alert.show {
  display: block;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.ginop-flyer {
  position: fixed;
  bottom: 0;
  right: 0;
  box-shadow: 0px 0px 12px #00000033;
  z-index: 9999;
  padding: 0;
  margin: 0;
  border: 0;
  border-radius: 0;
}

.ginop-flyer img {
  max-width: 100%;
  height: auto;
  max-height: 130px;
}

.ginop-flyer button {
  filter: invert(1);
  top: -20px !important;
  opacity: 1;
  height: 5px;
  width: 10px;
  border-radius: 100%;
}

.scroll-down-indicator {
  position: absolute;
  bottom: 5em;
  left: 50%;
}

.scroll-down-indicator:before,
.scroll-down-indicator:after {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  transform: rotate(45deg);
  border-bottom: 4px solid white;
  border-right: 4px solid white;
}

.scroll-down-indicator:before {
  -webkit-animation: down-arrow-before 2.6s cubic-bezier(0.77, 0, 0.175, 1) infinite;
          animation: down-arrow-before 2.6s cubic-bezier(0.77, 0, 0.175, 1) infinite;
}

.scroll-down-indicator:after {
  -webkit-animation: down-arrow-after 2.6s cubic-bezier(0.77, 0, 0.175, 1) infinite;
          animation: down-arrow-after 2.6s cubic-bezier(0.77, 0, 0.175, 1) infinite;
}

@-webkit-keyframes down-arrow-before {
  50% {
    transform: rotate(45deg) translate(70%, 70%);
  }
  100% {
    transform: rotate(45deg) translate(70%, 70%);
  }
}

@keyframes down-arrow-before {
  50% {
    transform: rotate(45deg) translate(70%, 70%);
  }
  100% {
    transform: rotate(45deg) translate(70%, 70%);
  }
}
@-webkit-keyframes down-arrow-after {
  50% {
    transform: rotate(45deg) translate(110%, 110%);
    opacity: 0;
  }
  51% {
    transform: rotate(45deg) translate(-130%, -130%);
  }
  100% {
    transform: rotate(45deg) translate(-70%, -70%);
    opacity: 1;
  }
}
@keyframes down-arrow-after {
  50% {
    transform: rotate(45deg) translate(110%, 110%);
    opacity: 0;
  }
  51% {
    transform: rotate(45deg) translate(-130%, -130%);
  }
  100% {
    transform: rotate(45deg) translate(-70%, -70%);
    opacity: 1;
  }
}