/* global styles */

* {
  box-sizing: border-box;
}

html {
  font-size: 17px;
}

body {
  font-family: 'Montserrat', sans-serif;
  line-height: var(--bs-body-line-height);
  color: var(--bs-body-color);
}

a {
  text-decoration: none;
  color: inherit;
}

/* Addtional styles */

.font-serif {
  font-family: "Playfair", serif;
}

.rounded-l {
  border-radius: 3rem 0 0 3rem;
}

.hover-effect {
  position: relative;
  overflow: hidden;
}

.hover-effect::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 30%;
  height: 200%;
  background: rgba(255, 255, 255, 0.3);
  transform: rotate(25deg);
  pointer-events: none;
}

/* Only run the animation on hover, once */
.hover-effect:hover::before {
  animation: glide 0.5s forwards;
}

@keyframes glide {
  from {
    left: -50%;
  }

  to {
    left: 120%;
  }
}

.w-1 {
  width: 1px;
}

.h-1 {
  height: 1px;
}

.bg-dark-gray {
  background: rgba(0, 0, 0, 0.5);
}

.center-x {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.btn-primary {
  --bs-btn-color: #fff;
  --bs-btn-bg: #07a9fd;
  --bs-btn-border-color: #07a9fd;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: rgb(44.2, 181.9, 253.3);
  --bs-btn-hover-border-color: rgb(31.8, 177.6, 253.2);
  --bs-btn-focus-shadow-rgb: 6, 144, 215;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: rgb(56.6, 186.2, 253.4);
  --bs-btn-active-border-color: rgb(31.8, 177.6, 253.2);
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #07a9fd;
  --bs-btn-disabled-border-color: #07a9fd;
}

.glass {
  background: rgba(171, 171, 171, 0.3);
  border-radius: 16px;
  backdrop-filter: blur(9.7px);
  -webkit-backdrop-filter: blur(9.7px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.white-glass {
  background: rgba(255, 255, 255, 0.8);
  border-radius: 16px;
  backdrop-filter: blur(9.7px);
  -webkit-backdrop-filter: blur(9.7px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.bg-dark-opaque {
  background: rgba(0, 0, 0, 0.5);
}

/* .dropdown-menu {
  background: var(--bs-primary);
} */


.nav-link {
  border-bottom: 2px solid transparent;
}

.nav-link:hover {
  border-bottom: 2px solid var(--bs-primary);
}


.dropdown-menu .dropdown-item:hover {
  background: transparent;
  opacity: 0.7;
}

.nav-link,
.nav-link.show {
  color: var(--bs-primary) !important;
  text-transform: uppercase;
}

.nav-link:hover {
  color: var(--bs-primary-text-emphasis) !important;
}

/* custom classes */

.smaller {
  font-size: 0.75rem;
}

.mini {
  font-size: 0.65rem;
}

.micro {
  font-size: 0.5rem;
}

.reset-input {
  border: none;
  outline: none;
  background-color: transparent;
  padding: 0;
  color: inherit;
}

.reset-input::placeholder {
  color: inherit;
  opacity: 0.5;
}

/* media classes */

@media (max-width: 1200px) {
  /* large screens */
}

@media (max-width: 992px) {
  /* medium screens */
}

@media (max-width: 768px) {

  /* small screens */

  html {
    font-size: 15px;
  }


}

@media (max-width: 576px) {

  /* extra small screens */
  html {
    font-size: 14px;
  }
}