* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  /* font-family: "Roboto", sans-serif; */
  font-family: "Poppins", sans-serif;
}

:root {
  --primary-color: black;
  --secondary-color: #81b336;

  --nav-link-color: #333;
  --nav-link-active-color: black;
}

a {
  text-decoration: none;
}

/* body{
    font-family: "Roboto", sans-serif;
} */

/* ************* COMMON CSS START ************** */
.dflex {
  display: flex;
  justify-content: center;
  align-items: center;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", sans-serif;
}

/* p{
    letter-spacing: 0.5px;
    word-spacing: 1px;
} */

.p-y-60 {
  padding: 60px 0;
}

.theme1-section-heading {
  font-size: 2.5rem;
  font-weight: 700;
  color: #0f172a;
  letter-spacing: -0.5px;
}

@media (max-width: 991px) {
  .theme1-section-heading {
    font-size: 2rem;
  }
}

@media (max-width: 576px) {
  .theme1-section-heading {
    font-size: 1.6rem;
  }
}

.text-split {
  letter-spacing: normal !important;
}

.letter-split {
  display: inline-block;
  margin: 0;
  padding: 0;
}

/* ************* COMMON CSS END ************** */
/* ******** COMPONENT CSS START ************** */
.theme-btn-1 {
  background: var(--primary-color);
  border-radius: 40px;
  font-weight: bold;
  padding: 10px 20px;
  letter-spacing: 0.5px;
  font-family: "Montserrat", sans-serif;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
}


.theme-btn-1:hover {
  background: var(--secondary-color);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.6);
}

/* ******** COMPONENT CSS END ************** */
/* *********** NAVBAR CSS START ************** */
.navbar .navbar-logo {
  width: 150px;
  height: auto;
}

.navbar-nav .nav-item {
  border: 2px solid transparent;
  border-radius: 50px;
  padding: 0 10px;
  transition: all 0.3s ease;
}

.navbar-nav .nav-item a {
  font-size: 1.05rem;
  letter-spacing: 1px;
  font-weight: 500;
  color: var(--nav-link-color);
  text-transform: uppercase;
}

.navbar-nav .nav-item.active {
  border: 2px solid var(--nav-link-active-color);
}

.navbar-nav .nav-item:hover {
  border: 2px solid var(--nav-link-active-color);
  color: var(--nav-link-active-color);
}

@media (max-width: 991px) {
  .navbar .navbar-nav {
    text-align: center;
    gap: 10px;
    padding: 20px 0px;
  }

  .navbar img {
    width: 90px;
  }
}

/* *********** NAVBAR CSS END ************** */

/*************FOOTER UI START ******************/
.footerWrap999 {
  background: #000;
  overflow: hidden;
  position: relative;
}

.footerLink111 {
  color: #ccc;
  text-decoration: none;
  transition: 0.3s;
}

.footerLink111:hover {
  color: #fff;
  padding-left: 5px;
}

.footerWrap999 i {
  cursor: pointer;
  transition: 0.3s;
}

.footerWrap999 i:hover {
  transform: scale(1.2);
}

.footerWrap999 .bottom-footer-text {
  font-weight: 400;
}

.footerWrap999 .bgText3d999 {
  position: absolute;
  bottom: 0;
  left: 0;
  /* transform: translate(-50% -50%); */

  text-align: center;
  font-weight: 900;
  letter-spacing: 10px;
  color: white;
  font-size: 12rem;

  /* background: linear-gradient(120deg,
            black 40%,
            white 50%,
            black 60%);

    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; */

  transform: perspective(800px) rotateX(30deg) rotateZ(0deg) scaleX(1.5);
  transform-style: preserve-3d;

  /* animation: rotate3dText999 6s linear infinite,
        lightMove999 3s linear infinite; */
}

@keyframes lightMove999 {
  0% {
    background-position: -200% center;
  }

  100% {
    background-position: 200% center;
  }
}

@media (max-width: 768px) {
  .bgText3d999 {
    font-size: 70px;
  }
}

/*************FOOTER UI END ******************/
