@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
  list-style: none;
  text-decoration: none;
  font-family: "Poppins", sans-serif;
}

:root {
  --accent: #896845;
  --accent-bright: #D15C3C;
  --ass: #777777;
  --white: #ffffff;
  --black: #0e0a07;
}

body {
  background: #f3f3f3;
}
body nav {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  height: 120px;
  padding: 0 70px;
  background: #f3f3f3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 200;
}
body nav .brand {
  height: 60%;
}
body nav .brand .logo {
  height: 100%;
}
body nav .nav-menu {
  display: flex;
  gap: 1.5rem;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
body nav .nav-menu li {
  height: 60px;
  display: flex;
  align-items: center;
}
body nav .nav-menu li a {
  color: var(--ass);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  transition: all 0.3s ease;
}
body nav .nav-menu li a ion-icon {
  transition: all 0.3s ease;
}
body nav .nav-menu li .dropdown-menu {
  position: absolute;
  top: 120px;
  left: 0;
  width: 100%;
  padding: 0 70px;
  background: #ffffff;
  overflow-y: hidden;
  max-height: 0;
  transition: all 0.5s ease;
}
body nav .nav-menu li .dropdown-menu .container {
  display: flex;
  gap: 6rem;
  flex-wrap: wrap;
  padding: 24px 16px 40px;
}
body nav .nav-menu li .dropdown-menu .container .prime {
  position: relative;
  text-transform: uppercase;
  margin-bottom: 2rem;
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 2px;
  background: linear-gradient(135deg, var(--accent), var(--accent-bright));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
body nav .nav-menu li .dropdown-menu .container .prime::before {
  content: "";
  width: 70px;
  height: 2px;
  background: linear-gradient(135deg, var(--accent), var(--accent-bright));
  position: absolute;
  top: 100%;
  left: 0;
}
body nav .nav-menu li .dropdown-menu .container .left-section {
  flex-grow: 1;
  flex-basis: 300px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
body nav .nav-menu li .dropdown-menu .container .left-section .dropdown-close {
  cursor: pointer;
  margin-bottom: 28px;
  display: none;
}
body nav .nav-menu li .dropdown-menu .container .left-section .desc {
  font-size: 0.9rem;
  color: var(--ass);
  line-height: 130%;
  margin-bottom: 28px;
}
body nav .nav-menu li .dropdown-menu .container .left-section .btn-see-all {
  text-transform: capitalize;
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 1px;
  padding: 6px 16px;
  background: var(--accent);
  border-radius: 2px;
  color: #ffffff;
  transition: all 0.3s ease;
}
body nav .nav-menu li .dropdown-menu .container .left-section .btn-see-all:hover {
  transform: translate(-2px, -2px);
  box-shadow: 2px 2px 7px rgba(0, 0, 0, 0.4666666667);
}
body nav .nav-menu li .dropdown-menu .container .right-section {
  flex-grow: 1;
  flex-basis: 700px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
body nav .nav-menu li .dropdown-menu .container .right-section .dropdown-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
body nav .nav-menu li .dropdown-menu .container .right-section .dropdown-links li {
  flex-grow: 1;
  flex-basis: 350px;
}
body nav .nav-menu li .dropdown-menu .container .right-section .dropdown-links li a {
  display: flex;
  align-items: center;
  gap: 17px;
  color: #000000;
}
body nav .nav-menu li .dropdown-menu .container .right-section .dropdown-links li a ion-icon {
  min-width: 20px;
  height: 20px;
  padding: 10px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #e6e6e6;
  box-shadow: inset 0 0 4px var(--ass);
  transition: all 0.3s ease;
  transform: rotate(0);
}
body nav .nav-menu li .dropdown-menu .container .right-section .dropdown-links li a .later-icon {
  width: 20px;
  height: 20px;
  padding: 20px;
  border-radius: 50%;
  font-weight: 500;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #e6e6e6;
  box-shadow: inset 0 0 4px var(--ass);
  transition: all 0.3s ease;
  transform: rotate(0);
}
body nav .nav-menu li .dropdown-menu .container .right-section .dropdown-links li a .header {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0px;
  transition: all 0.3s ease;
}
body nav .nav-menu li .dropdown-menu .container .right-section .dropdown-links li a .desc {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--ass);
  transition: all 0.3s ease;
}
body nav .nav-menu li .dropdown-menu .container .right-section .dropdown-links li a:hover ion-icon {
  color: var(--accent-bright);
  transform: scale(1.1);
}
body nav .nav-menu li .dropdown-menu .container .right-section .dropdown-links li a:hover .later-icon {
  color: var(--accent-bright);
}
body nav .nav-menu li .dropdown-menu .container .right-section .dropdown-links li a:hover .header {
  background: linear-gradient(135deg, var(--accent), var(--accent-bright));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
body nav .nav-menu li:hover a {
  color: var(--accent-bright);
}
body nav .nav-menu li:hover a ion-icon {
  transform: rotate(180deg);
}
body nav .nav-menu li:hover .dropdown-menu {
  max-height: 1000px;
}
body nav .mob_nav_toggler {
  display: none;
}
body .breadcrumb_navigation {
  width: 100%;
  padding: 80px 30px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background: url(../Assets/breadcrumb_navigation_bg.svg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
body .breadcrumb_navigation a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  font-size: 1.2rem;
  color: var(--ass);
}
body .breadcrumb_navigation .animated {
  font-size: 1.6rem;
  color: var(--ass);
  animation: swing 0.7s linear infinite;
}
@keyframes swing {
  0% {
    transform: translateX(-2px);
  }
  50% {
    transform: translateX(2px);
  }
  100% {
    transform: translateX(-2px);
  }
}
body .finalCTA {
  padding: 40px 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
body .finalCTA .box {
  padding: 70px;
  width: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.4666666667), rgba(0, 0, 0, 0.8549019608)), url(../Assets/finalCTA-bg.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  box-shadow: 3px 3px 7px rgba(0, 0, 0, 0.4666666667);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  z-index: 10;
}
body .finalCTA .box .header {
  font-size: 3rem;
  font-weight: 600;
  color: var(--white);
  position: relative;
}
body .finalCTA .box .header::before {
  content: "";
  height: 3px;
  width: 70%;
  border-radius: 100px;
  background: linear-gradient(to left, var(--white), var(--ass));
  position: absolute;
  top: 90%;
  left: 0;
}
body .finalCTA .box .header::after {
  content: "";
  height: 3px;
  width: 60%;
  border-radius: 100px;
  background: linear-gradient(to left, var(--white), var(--ass));
  position: absolute;
  top: 100%;
  left: 0;
}
body .finalCTA .box .call {
  position: relative;
  text-transform: uppercase;
  font-size: 1rem;
  font-weight: 500;
  color: #e4e4e4;
}
body .finalCTA .box .connect {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
body .finalCTA .box .connect .whatsapp_btn {
  padding: 7px 16px;
  background: green;
  border: 2px solid var(--white);
  border-radius: 0.3rem;
}
body .finalCTA .box .connect .whatsapp_btn button {
  border: none;
  outline: none;
  background: none;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  font-size: 1.2rem;
  cursor: pointer;
}
body .finalCTA .box .connect .whatsapp_btn button ion-icon {
  font-size: 1.4rem;
}
body .finalCTA .box .connect .devider {
  font-size: 0.9rem;
  color: var(--white);
  position: relative;
}
body .finalCTA .box .connect .devider::before {
  content: "";
  width: 60px;
  height: 1px;
  background: var(--white);
  position: absolute;
  top: 50%;
  left: -80px;
  transform: translateY(-50%);
}
body .finalCTA .box .connect .devider::after {
  content: "";
  width: 60px;
  height: 1px;
  background: var(--white);
  position: absolute;
  top: 50%;
  right: -80px;
  transform: translateY(-50%);
}
body .finalCTA .box .connect .contact_no {
  display: flex;
  align-items: center;
  color: var(--white);
  gap: 1rem;
  font-weight: 300;
  letter-spacing: 2px;
}
body .finalCTA .box .connect .contact_no img {
  width: 20px;
}
body footer {
  width: 100%;
  min-height: 200px;
}
body footer .main_container {
  padding: 40px 70px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: start;
  grid-gap: 3rem;
  background: var(--white);
}
body footer .main_container .comp_dec {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 1rem;
}
body footer .main_container .comp_dec .top img {
  width: 200px;
}
body footer .main_container .comp_dec .top p {
  font-size: 0.8rem;
  color: var(--ass);
}
body footer .main_container .comp_dec .bottom {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
body footer .main_container .comp_dec .bottom .main {
  background: linear-gradient(135deg, var(--accent), var(--accent-bright));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
body footer .main_container .comp_dec .bottom .buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
body footer .main_container .comp_dec .bottom .buttons a {
  color: var(--ass);
}
body footer .main_container .comp_dec .bottom .buttons a:hover {
  color: var(--accent);
}
body footer .main_container .comp_dec .bottom .buttons a ion-icon {
  font-size: 1.4rem;
}
body footer .main_container .col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}
body footer .main_container .col .header {
  font-size: 1.3rem;
  font-weight: 600;
  background: linear-gradient(135deg, var(--accent), var(--accent-bright));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
}
body footer .main_container .col .header::before {
  content: "";
  width: 30px;
  height: 2px;
  background: linear-gradient(135deg, var(--accent), var(--accent-bright));
  position: absolute;
  top: 100%;
  left: 0;
}
body footer .main_container .col ul {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 0.3rem;
}
body footer .main_container .col ul li {
  font-size: 0.8rem;
  color: var(--ass);
  transition: all 0.3s ease;
}
body footer .main_container .col ul li a {
  color: var(--ass);
}
body footer .main_container .col ul li a:hover {
  color: var(--accent);
}
body footer .main_container .col ul li:hover {
  transform: translateX(4px);
}
body footer .declaration {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 40px;
  font-size: 0.8rem;
  color: var(--white);
  background: var(--black);
}
body footer .declaration .creator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
}
body footer .declaration .creator a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  color: var(--white);
}
body footer .declaration .creator a:hover {
  color: var(--accent-bright);
}

@media screen and (max-width: 999px) {
  body nav {
    padding: 30px 40px;
  }
  body nav .brand {
    height: 100%;
  }
  body nav .brand .logo {
    height: 100%;
  }
  body nav .nav-menu {
    position: fixed;
    top: 0;
    left: 100%;
    width: 100%;
    height: 100%;
    background-color: #f3f3f3;
    z-index: 100;
    flex-direction: column;
    align-items: flex-start;
    grid-gap: 0;
    padding-left: 7vw;
    padding-top: 7vh;
    transition: all 0.3s ease;
  }
  body nav .nav-menu li {
    margin-top: 20px;
    font-size: 2rem;
  }
  body nav .nav-menu li .dropdown-menu {
    padding: 1.2rem 20px;
    top: 0;
    overflow-y: auto;
    min-height: 100vh;
    left: 100%;
    transition: all 0.3s ease;
    background: #ffffff;
  }
  body nav .nav-menu li .dropdown-menu .container {
    gap: 2rem;
  }
  body nav .nav-menu li .dropdown-menu .container .prime {
    margin-bottom: 1rem;
  }
  body nav .nav-menu li .dropdown-menu .container .left-section .dropdown-close {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    gap: 0.3rem;
    color: var(--ass);
  }
  body nav .nav-menu li .dropdown-menu .container .left-section .dropdown-close ion-icon {
    font-size: 1.6rem;
  }
  body nav .nav-menu li .dropdown-menu .container .right-section {
    flex-grow: 1;
    flex-basis: 700px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  body nav .nav-menu li .dropdown-menu .container .right-section .dropdown-links {
    gap: 1rem;
  }
  body nav .nav-menu li .dropdown-menu.show {
    left: 0;
  }
  body nav .nav-menu li a ion-icon {
    transform: rotate(-90deg);
    transition: none;
  }
  body nav .nav-menu li:hover .dropdown-menu {
    max-height: 100vh;
  }
  body nav .nav-menu li:hover a ion-icon {
    transform: rotate(-90deg);
  }
  body nav .nav-menu.show {
    left: 0;
  }
  body nav .mob_nav_toggler {
    display: flex;
    align-items: center;
    justify-content: center;
    outline: none;
    border: none;
    background: none;
    font-size: 2rem;
    color: var(--ass);
    z-index: 10000;
    cursor: pointer;
  }
  body nav .mob_nav_toggler.hide {
    opacity: 0;
    pointer-events: none;
    transition-delay: 0s;
  }
  body .finalCTA {
    padding: 30px 30px;
  }
  body .finalCTA .box {
    padding: 30px;
    align-items: flex-start;
  }
  body .finalCTA .box .header {
    font-size: 2rem;
  }
  body .finalCTA .box .header::before {
    content: "";
    height: 2px;
    width: 60%;
    border-radius: 100px;
    background: linear-gradient(to left, var(--white), var(--ass));
    position: absolute;
    top: 100%;
    left: 0;
  }
  body .finalCTA .box .header::after {
    content: "";
    height: 2px;
    width: 40%;
    border-radius: 100px;
    background: linear-gradient(to left, var(--white), var(--ass));
    position: absolute;
    top: 114%;
    left: 0;
  }
  body .finalCTA .box .call {
    position: relative;
    text-transform: uppercase;
    font-size: 1rem;
    font-weight: 500;
    color: #e4e4e4;
  }
  body .finalCTA .box .connect {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  body .finalCTA .box .connect .whatsapp_btn {
    padding: 7px 16px;
    background: green;
    border: 2px solid var(--white);
    border-radius: 0.3rem;
  }
  body .finalCTA .box .connect .whatsapp_btn button {
    border: none;
    outline: none;
    background: none;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
    font-size: 1.2rem;
    cursor: pointer;
  }
  body .finalCTA .box .connect .whatsapp_btn button ion-icon {
    font-size: 1.4rem;
  }
  body .finalCTA .box .connect .devider {
    font-size: 0.9rem;
    margin-left: 80px;
    color: var(--white);
    position: relative;
  }
  body .finalCTA .box .connect .devider::before {
    content: "";
    width: 60px;
    height: 1px;
    background: var(--white);
    position: absolute;
    top: 50%;
    left: -80px;
    transform: translateY(-50%);
  }
  body .finalCTA .box .connect .devider::after {
    content: "";
    width: 60px;
    height: 1px;
    background: var(--white);
    position: absolute;
    top: 50%;
    right: -80px;
    transform: translateY(-50%);
  }
  body .finalCTA .box .connect .contact_no {
    display: flex;
    align-items: center;
    color: var(--white);
    gap: 1rem;
    font-weight: 300;
    letter-spacing: 2px;
  }
  body .finalCTA .box .connect .contact_no img {
    width: 20px;
  }
  body footer {
    width: 100%;
    min-height: 200px;
  }
  body footer .main_container {
    padding: 30px 30px;
    grid-template-columns: 1fr;
    grid-gap: 1.6rem;
  }
  body footer .declaration {
    flex-direction: column;
  }
}/*# sourceMappingURL=universalStyles.css.map */