@import url('https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@100..900&display=swap');

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* colors variables */
  --theme-primary: #9F6250;
  --theme-secondary: #5A372C;
  --theme-tertiary: #AD9E8F;
  --tmeme-black: #000;
  --theme-white: #fff;
  /* transitions variables */
  --transition: all 0.4s ease-in-out;
  /* box-shadow variables */
  --box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  /* gradient variables */
  --gradientright: linear-gradient(to right, #9F6250, #5A372C);
  --gradientbottom: linear-gradient(to bottom, #9F6250, #5A372C);
}

body {
  font-family: 'Roboto Slab', serif;
  font-size: 1.6rem;
  line-height: 1.6;
  background-color: #fff;
  color: #000;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: #111;
}

p {
  margin-bottom: 1.5rem;
  font-size: 1.6rem;
}

a {
  text-decoration: none;
  color: #007BFF;
  transition: color 0.3s ease;
}

a:hover {
  color: #0056b3;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.padding_t {
  padding-top: 6rem;
}

.padding_b {
  padding-bottom: 6rem;
}

/* custom css button */
.theme_button {
  /* min-width: 150px; */
  max-width: 200px;
  padding: .9rem 2rem;
  border: none;
  position: relative;
  z-index: 1;
  background: var(--theme-secondary);
  color: #fff;
  border-radius: 5rem;
  cursor: pointer;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  box-shadow: var(--box-shadow);
}

.theme_button::before {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s, opacity 0.3s;
  white-space: pre;
  transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
}

.theme_button>span {
  display: inline-flex;
  /* padding: 1rem 0; */
  opacity: 0;
  color: #fff;
  transform: translate3d(0, -10px, 0);
  transition: transform 0.3s, opacity 0.3s;
  transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
  transition-delay: 0 !important;
}

.theme_button.animate::before {
  opacity: 0;
  transform: translate3d(0, 100%, 0);
}

.theme_button.animate>span {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.theme_button:hover {
  background-color: var(--theme-primary);
}

.theme_button:hover::before {
  opacity: 0;
  transform: translate3d(0, 100%, 0);
}

.theme_button:hover>span {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

/* theme header */
header{
    
}
.navbar{
    --bs-navbar-padding-y: 0;
    /* background-color: #f5dad165; */
    backdrop-filter: blur(8px);
    width: 100%;
    left: 0;
    top: 0;
    z-index: 99;
    height: 125px;
    box-shadow: 0px 0px 8px 0px rgba(0,0,0,0.75);
    box-shadow: inset 0 -8px 20px rgba(0, 0, 0, 0.1);
}

.navbar-brand{
  position: absolute;
  top: 3px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 999;

} 
.navbar-brand img {
  width: 160px;
  background-color: transparent;
}

.top_bar{
  flex: 1;
}
.top_social {
  width: 35px;
  height: 35px;
  background-color: var(--theme-secondary);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  position: relative;
  z-index: 2;
  overflow: hidden;
  transition: var(--transition);
}

.top_social::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  transform: translate(-50%, -50%);
  background-color: var(--theme-primary);
  border-radius: 50%;
  z-index: 1;
  opacity: 0;
  transition: var(--transition);
  overflow: hidden;
}

.top_social:hover::after {
  width: 105%;
  height: 105%;
  opacity: 1;
}

.top_social img {
  width: 20px;
  height: 20px;
  z-index: 3;
  position: relative;
  color: #fff;
  transition: color 0.3s ease;
}
.social1 img{
  filter: brightness(0) invert(1);
}
.topbar_left a h6{
    font-size: 12px;
    color: var(--theme-white);
}

.topbar_left a h6:hover .top_social::after {
  width: 105%;
  height: 105%;
  opacity: 1;
}


.navbar-nav .nav-item .nav-link{
    color: var(--theme-white);
    font-weight: 600;
    font-size: 17px;
    margin-right: 0.8rem;
}
 /* hero banner */
 /* Hero Video Banner */
#hero_banner {
  /* min-width: 100%; */
  min-height: 90dvh;
  display: flex;
  padding-top: 10%;
  /* align-items: center; */
  /* background-color: #333; */
  background: rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}
.bg_video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  z-index: -1;
  object-fit: cover;
}
@media (max-width: 991px) {
  #hero_banner {
    padding-top: 20%;
  }
}