@tailwind base;
@tailwind components;
@tailwind utilities;

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --color-primary: #682908;
  --background-primary: linear-gradient(to bottom, #c19a6b 0%, #b28b5c 100%);
}
.video-completed {
  position: relative;
  border: 2px solid var(--color-primary);
}
.video-completed::after {
  position: absolute;
  content: '\f00c';
  top: -5px;
  right: -5px;
  font-family: 'Font Awesome 6 pro';
  font-weight: 900;
  color: #fff;
  font-size: 12;
  background-color: var(--color-primary);
  height: 25px;
  width: 25px;
  display: flex;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
}
body {
  min-height: 100vh;
  position: relative;
  background-image: url(/images/home-bg-image.webp);
  background-position: center center;
  height: 1550px;
  width: 100%;
  background-size: 100% 100%;
  overflow: auto;
  position: relative;
  background-color: #000;
  padding-top: 10px !important;
  background-repeat: no-repeat;
}
.nav-link::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  display: block;
  height: 3px;
  background-color: white;
  width: 0;
  transition: 0.4s;
}
.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}
.quote {
  position: relative;
  isolation: isolate;
}
.quote::before {
  content: "\f10d";
  font-family: "Font Awesome 6 pro";
  position: absolute;
  top: -170px;
  left: 0;
  font-size: 150px;
  z-index: -1;
  opacity: 0.3;
}
.banner {
  position: relative;
  isolation: isolate;
  background-size: cover;
}
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-background-clip: text;
  -webkit-text-fill-color: #ffffff;
  transition: background-color 5000s ease-in-out 0s;
  box-shadow: inset 0 0 20px 20px #23232329;
}
.banner::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: -1;
  backdrop-filter: blur(5px);
}
body {
  color: var(--color-primary);
}
.gradientbtn {
  background: rgb(215, 156, 62);
  background: linear-gradient(
    0deg,
    rgba(215, 156, 62, 1) 0%,
    rgba(191, 118, 0, 1) 100%
  );
  border: 0;
  border-radius: 5px;
  color: white;
}
.content-height {
  max-height: 750px;
  overflow-y: auto;
  overflow-x: hidden;
}
.content-height::-webkit-scrollbar {
  width: 6px;
}
.content-height::-webkit-scrollbar-track {
  background: #a47346;
}
.content-height::-webkit-scrollbar-thumb {
  background: #431c03;
}
.content-height::-webkit-scrollbar-thumb:hover {
  background: #431c03;
}
