:root {
  --primary: #c49333;
  --text-primary: #454545;
  --text-white: #ffffff;
  --text-light: #c4c4c4;
  --body-light: #f2f2f2;
  --body-lightest: #fbfbfb;
  --body-dark: #24282b;
}
::selection {
  background: var(--primary); /* WebKit/Blink Browsers */
  color: var(--text-white);
}
::-moz-selection {
  background: var(--primary); /* Gecko Browsers */
  color: var(--text-white);
}
body {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 300;
  min-height: 100vh;
}
b {
  font-size: inherit;
  font-weight: bold;
}
a {
  text-decoration: none;
  color: var(--primary);
}
a:hover {
  color: var(--primary);
}
h5 {
  font-size: 18px;
}
h3 {
  font-size: 22px;
}
h2 {
  font-weight: 400;
}
small {
  font-size: 13.6px;
  font-weight: 300;
}
footer {
  margin-top: auto;
}
table p{
  text-align: center;
  margin: 0px;
}
td {
  padding: 16px;
}
tr:nth-of-type(even) {
  background-color: var(--body-light);
}
.list-style-none {
  list-style-type: none;
}
/* custom classes */
/* flickity carousel */
.carousel {
  background: var(--body-light);
}
.carousel-cell {
  min-height: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px;
  box-sizing: border-box;
}

/* padding top same as navbar height */
.pt-page {
  padding-top: 80px;
}
/* vertical margin between sections */
.my-section {
  margin-top: 70px;
  margin-bottom: 70px;
}
.mt-section {
  margin-top: 70px;
}
.mb-section {
  margin-bottom: 70px;
}
/* padding for footer */
.py-section {
  padding-top: 80px;
  padding-bottom: 80px;
}
.button-primary {
  background-color: var(--primary);
  color: var(--text-white);
  outline: none;
  border: none;
  font-size: 11px;
  padding: 18px 24px;
  border-radius: 2px;
  cursor: pointer;
}
.button-primary:hover {
  background-color: var(--body-dark);
  color: var(--text-white);
}
.w-logo {
  width: clamp(120px, 60%, 334px);
}
.subheading {
  font-size: 18px;
  color: rgba(0, 0, 0, 0.4);
}
.text-2xl {
  font-size: 30px;
}
.text-xl {
  font-size: 24px;
}
.text-lg {
  font-size: 18px;
}
.text-sm {
  font-size: 13.6px;
}
.text-xs {
  font-size: 10.67px;
}
.color-primary {
  color: var(--primary);
}
.font-light {
  font-weight: 300;
}
.background-about {
  background-image: url("/images/about/bg-about.jpg");
  /* background-size: cover; */
  background-position: center;
  background-repeat: no-repeat;
}
.background-dark {
  background-color: var(--body-dark);
}
.background-light {
  background-color: var(--body-light);
}
.background-lightest {
  background-color: var(--body-lightest);
}
.background-primary {
  background-color: var(--primary);
}
hr {
  background-color: var(--text-light);
}
.page-banner {
  height: 284px;
}
.page-title {
  font-size: 40px;
  color: white;
  font-weight: bold;
  text-shadow: 1px 1px 1px rgb(0 0 0 / 40%);
}
.text-shadow {
  text-shadow: 1px 1px 1px rgb(0 0 0 / 40%);
}
.text-white {
  color: white;
}
.grid-container {
  padding: 12px;
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr));
}
.grid-item {
  padding-top: 75%;
  background-color: black;
  position: relative;
}
.video-link-overlay {
  display: none;
  background-color: blue;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 10;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.75);
}
.video-link-overlay p{
  color: white;
  background-color: rgba(256,256,256,0.26);
  padding: 5px 10px;
  font-weight: 700;
  font-size: 13px;
}
.grid-item img{
  width: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}
.grid-item:hover .video-link-overlay{
  display: flex;
}

footer {
  color: var(--text-white);
}
footer a,
footer p {
  color: var(--text-light);
  text-decoration: none;
}
footer a:hover {
  color: var(--primary);
}

/* edit bootstrap nav styles */
.navbar button.navbar-toggler {
  outline: none;
  box-shadow: none;
}
.navbar.navbar-expand-lg {
  padding: 16px 0px;
}
.navbar-nav {
  gap: 1rem;
}
.navbar-nav .dropdown .dropdown-menu {
  padding: 15px 0px;
}
.navbar-nav .dropdown .dropdown-menu .dropdown-item {
  padding: 12px 20px;
}
.dropdown-item:focus,
.dropdown-item:hover {
  background-color: var(--body-light);
}
.navbar-nav .nav-item .nav-link {
  color: var(--text-primary);
}
.navbar-nav .nav-item .nav-link:hover {
  color: var(--primary);
}
.navbar-nav .nav-item .nav-link.active {
  color: var(--primary);
}
.navbar-nav .nav-item a {
  font-size: 0.8rem;
  font-weight: 400;
}

/* Hover Animation */

.hover-elevate {
  transition:0.25s all;
  border: 1px solid transparent;
}

.hover-elevate:hover {
  transform: translateY(-4px);
  border: 1px solid var(--text-light);
}