@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&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");
@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 {
  --white: #ffffff;
  --black: #000000;
  --accent-gray: #565656;
  --lighter-gray: #7d7d7d;
  --darker-gray: #111111;
  --golden: linear-gradient(hsl(42, 40%, 45%), #EBD988, #F5E7A1, #C4B369);
}

body {
  width: 100%;
  background: var(--accent-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: 80%;
  width: 8%;
}
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;
}
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);
}
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(--lighter-gray);
}
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: 100%;
  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.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);
}

@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: 120px;
  }
  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 .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);
  }
}/*# sourceMappingURL=GlobalStyle.css.map */