@import url('../../fonts.googleapis.com/css2_102ff340');
@import url('../../fonts.googleapis.com/css2_507a1df9');
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
  text-decoration: none;
  font-family: "Poppins", sans-serif;
}

:root {
  --white: #ffffff;
  --black: #000000;
  --accent-gray: #565656;
  --lighter-gray: #7d7d7d;
  --darker-gray: #233142;
  --golden: linear-gradient(#A18645, #EBD988, #F5E7A1, #C4B369);
}

body {
  width: 100%;
  background: var(--darker-gray);
}
body .primary_btn {
  padding: 10px 20px;
  background: var(--golden);
  box-shadow: inset 0 0 4px var(--darker-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.3rem;
  transition: all 0.3s linear;
}
body .primary_btn button {
  border: none;
  outline: none;
  background: none;
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--darker-gray);
  cursor: pointer;
}
body .primary_btn button span {
  letter-spacing: 0;
}
body .primary_btn:hover {
  box-shadow: inset 0 0 4px var(--darker-gray), 0 0 7px var(--white);
}
body .secondary_btn {
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
body .secondary_btn button {
  border: none;
  outline: none;
  background: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 2px;
  color: var(--white);
  transition: all 0.3s linear;
  cursor: pointer;
}
body .secondary_btn button ion-icon {
  transition: all 0.3s linear;
}
body .secondary_btn button span {
  letter-spacing: 0;
}
body .secondary_btn:hover button ion-icon {
  transform: translateX(0.7rem);
}
body nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 87px;
  background: var(--darker-gray);
  padding: 0 30px;
  display: flex;
  align-items: center;
  gap: 2rem;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  z-index: 100;
}
body nav .logo {
  height: 70%;
}
body nav .line {
  width: 2px;
  height: 50%;
  background: var(--lighter-gray);
  border-radius: 50px;
}
body nav .main_nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.4rem;
  list-style-type: none;
}
body nav .main_nav a {
  position: relative;
  color: var(--lighter-gray);
  transition: all 0.3s ease;
}
body nav .main_nav a li {
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.5px;
  line-height: 2;
}
body nav .main_nav a:hover {
  transform: translateY(-17%);
  color: var(--white);
}
body nav .main_nav a::before {
  content: "";
  width: 30%;
  height: 2px;
  background: var(--white);
  box-shadow: 0 0 7px var(--white);
  border-radius: 100px;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: 0.1s linear;
  z-index: -1;
}
body nav .main_nav a:hover:before {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 13px);
}
body nav .main_nav .active {
  pointer-events: none;
  color: var(--white);
}

/* Dropdown Navigation Styles */
body nav .main_nav .dropdown {
  position: relative;
  list-style: none;
}

body nav .main_nav .dropdown > a {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  cursor: pointer;
  position: relative;
  transition: all 0.2s ease;
}

body nav .main_nav .dropdown > a:hover {
  transform: none;
  color: var(--white);
}

body nav .main_nav .dropdown > a::before {
  display: none;
}

body nav .main_nav .dropdown > a::after {
  content: "▼";
  font-size: 0.55rem;
  transition: transform 0.2s ease;
  margin-left: 0.3rem;
  color: var(--lighter-gray);
  line-height: 1;
}

body nav .main_nav .dropdown:hover > a {
  color: var(--white);
}

body nav .main_nav .dropdown:hover > a::after {
  transform: rotate(180deg);
  color: var(--white);
}

body nav .main_nav .dropdown-menu {
  position: absolute;
  top: calc(100% + 1rem);
  left: 50%;
  transform: translateX(-50%);
  background: var(--darker-gray);
  min-width: 200px;
  padding: 0.6rem 0;
  margin: 0;
  border-radius: 0.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4), 
              0 0 0 1px rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(-5px);
  transition: all 0.2s ease;
  z-index: 1000;
  list-style: none;
}

body nav .main_nav .dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

body nav .main_nav .dropdown-menu li {
  margin: 0;
  padding: 0;
  list-style: none;
}

body nav .main_nav .dropdown-menu a {
  display: block;
  padding: 0.65rem 1.25rem;
  color: var(--lighter-gray);
  text-decoration: none;
  transition: all 0.2s ease;
  font-size: 0.9rem;
  font-weight: 400;
  white-space: nowrap;
}

body nav .main_nav .dropdown-menu a:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  padding-left: 1.5rem;
}

body nav .main_nav .dropdown-menu a.active {
  color: var(--white);
  background: rgba(196, 179, 105, 0.15);
  font-weight: 500;
}

body nav .main_nav .dropdown-menu a li {
  line-height: 1.4;
  list-style: none;
}
body nav .mobNav {
  height: 30px;
  width: 30px;
  border: none;
  outline: none;
  background: none;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  z-index: 120;
  cursor: pointer;
}
body nav .mobNav .navElement {
  height: 2px;
  width: 20px;
  border-radius: 50px;
  background: var(--golden);
  transition: all 0.3s ease;
}
body nav .mobNav .two {
  opacity: 1;
  visibility: visible;
}
body nav .mobNavCng .navElement {
  background: var(--white);
}
body nav .mobNavCng .one {
  transform: translateY(7px) rotate(45deg);
}
body nav .mobNavCng .three {
  transform: translateY(-7px) rotate(-45deg);
}
body nav .mobNavCng .two {
  opacity: 0;
  visibility: hidden;
}
body .line {
  width: 100%;
  height: 3px;
  background: var(--golden);
}
body footer {
  width: 100%;
  padding: 3rem 0 0 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  background: var(--darker-gray);
}
body footer .container {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-around;
  gap: 1rem;
}
body footer .container .compDec {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 1rem;
}
body footer .container .compDec img {
  height: 60px;
}
body footer .container .compDec .text {
  color: var(--white);
}
body footer .container .compDec .connect {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 1rem;
}
body footer .container .compDec .connect a {
  padding: 0.6rem 1rem;
  background: var(--golden);
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  color: var(--darker-gray);
  font-weight: 500;
  transition: all 0.3s ease;
}
body footer .container .compDec .connect a ion-icon,
body footer .container .compDec .connect a box-icon {
  transform: scale(1.1);
}
body footer .container .compDec .connect a:hover {
  box-shadow: 0 0 7px var(--lighter-gray);
}
body footer .container .compDec .connect .rounded {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
body footer .container .compDec .connect .rounded a {
  padding: 0.6rem 0.6rem;
}
body footer .container .compDec .connect .rounded ion-icon {
  font-size: 1.6rem;
}
body footer .container .links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 2rem;
}
body footer .container .links .header {
  position: relative;
  color: var(--white);
  font-size: 1.4rem;
  font-weight: 300;
  letter-spacing: 1px;
}
body footer .container .links .header::before {
  content: "";
  width: 30%;
  height: 2px;
  background: var(--golden);
  position: absolute;
  top: 100%;
  left: 0;
}
body footer .container .links .link {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 0.6rem;
}
body footer .container .links .link a {
  color: var(--white);
  transition: all 0.3s linear;
}
body footer .container .links .link a:hover {
  color: var(--white);
}
body footer .declaration {
  width: 100%;
  height: auto;
  padding: 0.3rem 2rem;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
body footer .declaration p {
  font-size: 0.9rem;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}
body footer .declaration p a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  color: var(--lighter-gray);
}
body footer .declaration p a:hover {
  color: var(--white);
}

/* Footer Styles for Elementor-based footer */
body .ekit-template-content-footer {
  width: 100%;
  background: var(--darker-gray);
  padding: 4rem 2rem 2rem;
  color: var(--white);
}

body .ekit-template-content-footer .elementor {
  max-width: 1200px;
  margin: 0 auto;
}

body .ekit-template-content-footer .e-con-inner {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

body .ekit-template-content-footer .elementor-element-1713388b {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2rem;
}

body .ekit-template-content-footer .elementor-element-1713388b img.w-25 {
  width: 200px;
  height: auto;
}

body .ekit-template-content-footer .elementor-widget-text-editor .elementor-widget-container {
  color: var(--white);
  font-size: 0.95rem;
  line-height: 1.6;
}

body .ekit-template-content-footer .elementor-social-icons-wrapper {
  display: flex;
  gap: 1rem;
  align-items: center;
}

body .ekit-template-content-footer .elementor-social-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  color: var(--white);
}

body .ekit-template-content-footer .elementor-social-icon:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
}

body .ekit-template-content-footer .elementor-social-icon i {
  font-size: 1.2rem;
}

body .ekit-template-content-footer .elementor-element-3d3eab93 {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

body .ekit-template-content-footer .elementor-element-3087b646 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

body .ekit-template-content-footer .elementor-heading-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 1.5rem;
}

body .ekit-template-content-footer .elementor-icon-list-items {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

body .ekit-template-content-footer .elementor-icon-list-item a {
  color: var(--white);
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

body .ekit-template-content-footer .elementor-icon-list-item a:hover {
  color: var(--white);
  padding-left: 0.5rem;
}

body .ekit-template-content-footer .elementor-icon-list-icon {
  display: inline-flex;
  align-items: center;
  margin-right: 0.5rem;
}

body .ekit-template-content-footer .elementor-icon-list-icon i {
  font-size: 1rem;
  color: var(--white);
}

body .ekit-template-content-footer .ftr-info {
  padding: 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 2rem;
}

body .ekit-template-content-footer .ftr-info .row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

body .ekit-template-content-footer .ftr-info p {
  color: var(--white);
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
}

body .ekit-template-content-footer .ftr-info b {
  color: var(--white);
  font-weight: 600;
}

body .ekit-template-content-footer .ftr-info a {
  color: var(--white) !important;
  text-decoration: none;
  transition: all 0.3s ease;
}

body .ekit-template-content-footer .ftr-info a:hover {
  color: var(--lighter-gray) !important;
  text-decoration: underline;
}

body .ekit-template-content-footer .ftr-info hr {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin: 2rem 0;
}

body .ekit-template-content-footer .elementor-element-1bae3b27 {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

body .ekit-template-content-footer .elementor-element-1bae3b27 .elementor-heading-title {
  font-size: 1rem;
  color: var(--lighter-gray);
  margin: 0;
}

body .ekit-template-content-footer .elementor-element-1bae3b27 .elementor-heading-title a {
  color: var(--white);
  text-decoration: none;
  transition: all 0.3s ease;
}

body .ekit-template-content-footer .elementor-element-1bae3b27 .elementor-heading-title a:hover {
  color: var(--lighter-gray);
  text-decoration: underline;
}

@media all and (max-width: 999px) {
  body nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 87px;
    padding: 0 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
    z-index: 100;
  }
  body nav .logo {
    width: 167px;
  }
  body nav .line {
    display: none;
  }
  body nav .main_nav {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7803921569);
    -webkit-backdrop-filter: blur(0.7rem);
            backdrop-filter: blur(0.7rem);
    position: fixed;
    top: 0;
    left: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    transition: all 0.3s linear;
  }
  body nav .main_nav a {
    transition: all 0.3s ease;
  }
  body nav .main_nav a li {
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    line-height: 2;
  }
  body nav .main_nav .active {
    color: var(--white);
  }

  body nav .main_nav .dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(0%) translateY(0);
}


  /* Mobile Dropdown Styles */
  body nav .main_nav .dropdown {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  body nav .main_nav .dropdown > a {
    width: 100%;
    justify-content: center;
    padding: 0.8rem 1rem;
    color: var(--lighter-gray);
    position: relative;
  }

  body nav .main_nav .dropdown > a.active {
    color: var(--white);
  }

  body nav .main_nav .dropdown > a::after {
    font-size: 0.6rem;
    position: absolute;
    right: 1rem;
  }

  body nav .main_nav .dropdown-menu {
    position: static;
    transform: none;
    max-height: 0;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    width: calc(100% - 2rem);
    margin: 0;
    box-shadow: none;
    border: none;
    background: rgba(0, 0, 0, 0.4);
    border-left: 2px solid rgba(196, 179, 105, 0.3);
    border-radius: 0.3rem;
    padding: 0;
    transition: all 0.3s ease;
  }

  body nav .main_nav .dropdown.open .dropdown-menu {
    max-height: 500px;
    opacity: 1;
    visibility: visible;
    padding: 0.4rem 0;
    margin: 0.3rem 0 0.5rem 0;
  }

  body nav .main_nav .dropdown.open > a::after {
    transform: rotate(180deg);
  }

  body nav .main_nav .dropdown-menu a {
    padding: 0.7rem 1.2rem;
    font-size: 0.85rem;
    display: block;
  }

  body nav .main_nav .dropdown-menu a:hover {
    padding-left: 1.5rem;
    background: rgba(255, 255, 255, 0.08);
  }

  body nav .show-nav {
    left: 0;
  }
  body nav .mobNav {
    display: flex;
  }
  body footer {
    width: 100%;
    padding: 3rem 0 0 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    background: var(--darker-gray);
  }
  body footer .container {
    width: 100%;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-around;
    gap: 3rem;
  }
  body footer .container .compDec {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 1rem;
  }
  body footer .container .compDec img {
    height: 60px;
  }
  body footer .container .compDec .text {
    color: var(--lighter-gray);
  }
  body footer .container .compDec .connect {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 1rem;
  }
  body footer .container .compDec .connect a {
    padding: 0.6rem 1rem;
    background: var(--golden);
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
    color: var(--darker-gray);
    font-weight: 500;
    transition: all 0.3s ease;
  }
  body footer .container .compDec .connect a ion-icon,
  body footer .container .compDec .connect a box-icon {
    transform: scale(1.1);
  }
  body footer .container .compDec .connect a:hover {
    box-shadow: 0 0 7px var(--lighter-gray);
  }
  body footer .container .links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 2rem;
  }
  body footer .container .links .header {
    position: relative;
    color: var(--white);
    font-size: 1.4rem;
    font-weight: 300;
    letter-spacing: 1px;
  }
  body footer .container .links .header::before {
    content: "";
    width: 30%;
    height: 2px;
    background: var(--golden);
    position: absolute;
    top: 100%;
    left: 0;
  }
  body footer .container .links .link {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 0.6rem;
  }
  body footer .container .links .link a {
    color: var(--lighter-gray);
    transition: all 0.3s linear;
  }
  body footer .container .links .link a:hover {
    color: var(--white);
  }
  body footer .declaration {
    width: 100%;
    height: auto;
    padding: 0.7rem 2rem;
    background: var(--black);
    display: flex;
    align-items: center;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  body footer .declaration p {
    font-size: 0.9rem;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
  }
  body footer .declaration p a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
    color: var(--lighter-gray);
  }
  body footer .declaration p a:hover {
    color: var(--white);
  }

  body .ekit-template-content-footer {
    padding: 3rem 1rem 1.5rem;
  }

  body .ekit-template-content-footer .elementor-element-1713388b img.w-25 {
    width: 150px;
  }

  body .ekit-template-content-footer .elementor-element-3087b646 {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  body .ekit-template-content-footer .elementor-heading-title {
    font-size: 1.2rem;
    margin-bottom: 1rem;
  }

  body .ekit-template-content-footer .ftr-info .row {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  body .ekit-template-content-footer .ftr-info p {
    font-size: 0.85rem;
  }

  body .ekit-template-content-footer .elementor-social-icons-wrapper {
    flex-wrap: wrap;
  }
}/*# sourceMappingURL=GlobalStyle.css.map */


  .uw-widget-custom-trigger{
  z-index:99 !important;
  bottom: 12% !important;
}

.uw-widget-custom-trigger .short-key{
  display: none !important;
}

@media (max-width: 767px) {

.uw-widget-custom-trigger img{
    width: 20px !important;
    height: 20px !important;
    margin-left: 6px !important;
    margin-top: 0 !important;
  }

  .uw-widget-custom-trigger{
  z-index:99 !important;
  bottom: 12% !important;
  max-width: 48px !important;
  height: 48px !important;
  padding: 8px !important;
}
  
}
