:root {
  --primary-color: #111;
  --gold: #d2b263;
  --font-family: "Arial", sans-serif;
}
.banner {
  min-height: 75vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.cta {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 5rem 0;
}
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
.banner .container-fluid,
.cta .container-fluid {
  position: relative;
  z-index: 1;
}
.glide__slides .glide__slide {
  position: relative;
  overflow: hidden;
}
h1{
    font-size: 2.5rem !important;
}
/* hide hover content by default */
.glide__slide .hover-div {
  opacity: 0;
  transition: opacity 0.3s ease;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: block;
  background-color: rgba(0, 0, 0, 0.6);
}

/* show on hover */
.glide__slide:hover .hover-div {
  opacity: 1;
}

.hover-div div {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.hover-div div p {
  font-size: 1.5rem;
}
.multi1 {
  position: relative;
}
.glide__bullets {
  text-align: center;
  margin-top: 1rem;
  position: absolute;
  bottom: -10px;
}

.glide__bullet {
  background: #ccc;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
  margin: 0 5px;
  transition: background 0.3s ease;
  cursor: pointer;
  border: none;
}

.glide__bullet:focus {
  outline: none;
}

.glide__bullet--active {
  background: #333;
}
a {
  text-decoration: none;
}
.form-control:focus {
  background-color: transparent;
  outline: 0;
  box-shadow: none;
}
.btn-primary {
  background-color: var(--primary-color) !important;
  border-color: var(--primary-color) !important;
  color: #fff !important;
  padding: 0.5rem 1rem !important;
  border-radius: 0.5rem !important;
  transition: all 0.3s ease !important;
}
.btn-primary:hover,
.btn-primary:active {
  background-color: transparent !important;
  border-color: var(--primary-color) !important;
  color: var(--primary-color) !important;
  border-radius: 0.5rem !important;
  transition: all 0.3s ease !important;
}
.btn-secondary {
  background-color: var(--gold) !important;
  border-color: var(--gold) !important;
  color: #fff !important;
  padding: 0.5rem 1rem !important;
  border-radius: 0.5rem !important;
  transition: all 0.3s ease !important;
}
.btn-secondary:hover,
.btn-secondary:active {
  background-color: transparent !important;
  border-color: var(--gold) !important;
  color: var(--gold) !important;
  border-radius: 0.5rem !important;
  transition: all 0.3s ease !important;
}
.btn-link {
  background-color: transparent !important;
  border: none !important;
  color: var(--primary-color) !important;
  text-decoration: underline !important;
  padding: 0.5rem 1rem !important;
  border-radius: 0.5rem !important;
  transition: all 0.3s ease !important;
}
.btn-link:hover,
.btn-link:active {
  color: var(--gold) !important;
  border-radius: 0.5rem !important;
  transition: all 0.3s ease !important;
}
.service-card:hover {
  transform: scale(1.01) !important;
  transition: all 0.3s ease !important;
  background-color: var(--gold) !important;
}
.modal-open .modal-backdrop {
    backdrop-filter: blur(5px);
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 1 !important;
  }