@font-face {
  font-family: "Century Gothic";
  src: url("../assets/fonts/centurygothic.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Century Gothic";
  src: url("../assets/fonts/centurygothic_bold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}

html {
  box-sizing: border-box;
  font-size: 10px;
  scroll-padding-top: 12rem;
}

body {
  font-family: "Century Gothic", "Calibri", sans-serif;
  line-height: 1.6;
  background-color: #ffffff;
  overflow-x: hidden;
}

address {
  margin: 0;
  padding: 0;
  color: #808080;
  font-size: 1.4rem;
  font-style: normal;
}
address a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
}
address a:hover {
  color: #b3b3b3;
}

@media (max-width: 768px) {
  html {
    scroll-behavior: smooth;
    scroll-padding-top: 10rem;
  }
  body {
    scroll-behavior: smooth;
  }
}
a {
  color: rgb(85, 28, 69);
  text-decoration: none;
  transition: color 0.3s ease;
}
a:hover, a:focus {
  color: #ffffff;
}

::-moz-selection {
  background-color: #808080;
  color: #ffffff;
}

::selection {
  background-color: #808080;
  color: #ffffff;
}

.container {
  margin: 0 25rem;
}

@media (max-width: 1200px) {
  .container {
    margin: 0 10rem;
  }
}
@media (max-width: 768px) {
  .container {
    margin: 0 2rem;
  }
}
@media (max-width: 480px) {
  html {
    scroll-padding-top: 9rem;
  }
  .container {
    margin: 0 1rem;
  }
}
header {
  position: fixed;
  top: 0;
  width: 100%;
  height: 10rem;
  background-color: rgb(85, 28, 69);
  transition: all 0.3s ease;
  z-index: 1000;
  overflow: hidden;
}
header.hidden {
  transform: translateY(-100%);
}
header.active {
  height: 100vh;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 10rem;
  padding: 0 12rem;
  position: relative;
  z-index: 1001;
}

.nav-desktop {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4rem;
}
.nav-desktop .nav-link {
  font-size: 2.2rem;
  font-weight: 500;
  transition: color 0.3s ease;
  color: #ffffff;
}
.nav-desktop .nav-link:hover, .nav-desktop .nav-link:focus {
  color: #808080;
}

.nav-link-logo {
  display: flex;
  align-items: center;
  height: 100%;
  transition: all 0.3s ease;
}
.nav-link-logo img {
  height: 10rem;
  transition: filter 0.3s ease;
  filter: brightness(1);
}
.nav-link-logo:hover img {
  filter: brightness(0.5) sepia(1) saturate(0) hue-rotate(0deg);
}

.burger-menu {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 3rem;
  height: 3rem;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  gap: 0.4rem;
  transition: all 0.3s ease;
  position: relative;
}

.burger-line {
  width: 2.5rem;
  height: 0.3rem;
  background-color: #ffffff;
  border-radius: 0.2rem;
  transition: all 0.3s ease;
  transform-origin: center;
  position: relative;
}

header.active .burger-line:nth-child(1) {
  transform: rotate(45deg) translate(0.45rem, 0.45rem);
}
header.active .burger-line:nth-child(2) {
  opacity: 0;
  transform: scale(0);
}
header.active .burger-line:nth-child(3) {
  transform: rotate(-45deg) translate(0.45rem, -0.45rem);
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgb(85, 28, 69);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-2rem);
  transition: all 0.3s ease;
  padding: 0;
  margin: 0;
  z-index: 999;
}
.mobile-menu .nav-link {
  font-size: 3rem;
  font-weight: 500;
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
  text-align: center;
  padding: 2rem 0;
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  margin: 0;
}
.mobile-menu .nav-link:last-child {
  border-bottom: none;
}
.mobile-menu .nav-link:hover, .mobile-menu .nav-link:focus {
  color: #cccccc;
  background-color: rgba(255, 255, 255, 0.05);
}

header.active .mobile-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

@media (max-width: 768px) {
  header {
    height: 8rem;
    transition: height 0.3s ease;
  }
  header.hidden {
    transform: none;
  }
  .nav-container {
    height: 8rem;
    padding: 0 3rem;
  }
  .nav-link-logo img {
    height: 8rem;
  }
  .nav-desktop {
    display: none;
  }
  .burger-menu {
    display: flex;
  }
  .mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    justify-content: center;
    align-items: center;
    gap: 0;
    padding: 0;
    margin: 0;
    z-index: 999;
  }
  .mobile-menu .nav-link {
    font-size: 2.5rem;
    padding: 2.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    margin: 0;
  }
  .mobile-menu .nav-link:last-child {
    border-bottom: none;
  }
}
@media (max-width: 480px) {
  header {
    height: 7rem;
    transition: height 0.3s ease;
  }
  header.hidden {
    transform: none;
  }
  .nav-container {
    height: 7rem;
    padding: 0 2rem;
  }
  .nav-link-logo img {
    height: 7rem;
  }
  .mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    justify-content: center;
    align-items: center;
    gap: 0;
    padding: 0;
    margin: 0;
    z-index: 999;
  }
  .mobile-menu .nav-link {
    font-size: 2.2rem;
    padding: 2rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    margin: 0;
  }
  .mobile-menu .nav-link:last-child {
    border-bottom: none;
  }
  .burger-line {
    width: 2.2rem;
    height: 0.25rem;
  }
}
footer {
  background-color: rgb(85, 28, 69);
  color: #ffffff;
  padding: 4rem 0 2rem 0;
}
footer ion-icon {
  width: 1.4rem;
  height: 1.4rem;
  vertical-align: text-bottom;
  margin-right: 0.8rem;
  color: #ffffff;
  position: relative;
  top: -0.1rem;
}
footer .footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}
footer .footer-section .footer-title {
  display: flex;
  align-items: center;
  gap: 2rem;
  height: 10rem;
}
footer .footer-section .footer-title img {
  height: 10rem;
}
footer .footer-section .footer-title h3 {
  font-size: 2.4rem;
  font-weight: bold;
  color: #ffffff;
  line-height: 1.2;
}
footer .footer-section h4 {
  font-size: 1.8rem;
  font-weight: bold;
  margin: 3.6rem 0;
  color: #ffffff;
  line-height: 1.6;
}
footer .footer-section p {
  font-size: 1.4rem;
  line-height: 1.6;
  margin-bottom: 0.8rem;
  color: #ffffff;
}
footer .footer-section ul {
  list-style: none;
  padding: 0;
}
footer .footer-section ul li {
  font-size: 1.4rem;
  line-height: 1.6;
  margin-bottom: 0.8rem;
  color: #ffffff;
}
footer .footer-section ul li a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
}
footer .footer-section ul li a:hover {
  color: #cccccc;
}
footer .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 2rem;
  text-align: center;
}
footer .footer-bottom p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

@media (max-width: 768px) {
  footer {
    padding: 3rem 0 1.5rem 0;
  }
  footer .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
  }
  footer .footer-section h3 {
    font-size: 1.8rem;
  }
  footer .footer-section h4 {
    margin: 1rem 0;
    font-size: 1.8rem;
  }
  footer .footer-section a, footer .footer-section p {
    font-size: 1.8rem;
  }
  footer ion-icon {
    width: 1.8rem;
    height: 1.8rem;
    vertical-align: text-bottom;
    margin-right: 0.8rem;
    color: #ffffff;
    position: relative;
    top: -0.2rem;
  }
  footer .footer-bottom p {
    font-size: 1.6rem;
  }
}
.btn {
  display: inline-block;
  padding: 1.5rem 3rem;
  font-family: "Century Gothic", "Calibri", sans-serif;
  font-size: 1.8rem;
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  outline: none;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.2);
}
.btn:active {
  transform: translateY(0);
}
.btn:focus {
  outline: 2px solid #ffffff;
  outline-offset: 2px;
}
.btn.btn-primary {
  background-color: rgb(85, 28, 69);
  color: #ffffff;
}
.btn.btn-primary:hover {
  background-color: #2f0f26;
}

@media (max-width: 768px) {
  .btn {
    padding: 1.2rem 2.5rem;
    font-size: 1.6rem;
  }
}
@media (max-width: 480px) {
  .btn {
    padding: 1rem 2rem;
    font-size: 1.4rem;
  }
  footer {
    padding: 2.5rem 0 1rem 0;
  }
  footer .footer-section a, footer .footer-section p {
    font-size: 1.6rem;
  }
  footer .footer-bottom p {
    font-size: 1.4rem;
  }
}
.info-section {
  background-color: rgb(85, 28, 69);
  color: #ffffff;
  padding: 6rem 0;
  text-align: center;
  position: relative;
  z-index: 4;
}
.info-section p {
  font-size: 1.8rem;
  max-width: 80rem;
  margin: 0 auto 2rem auto;
  line-height: 1.6;
}
.info-section p:last-child {
  margin-bottom: 0;
}

.about-section {
  background-color: rgb(85, 28, 69);
  color: #ffffff;
  padding: 8rem 0;
  text-align: center;
  position: relative;
  z-index: 4;
}
.about-section .about-title {
  text-align: center;
  font-size: 4rem;
  font-weight: bold;
  color: #ffffff;
  margin-bottom: 6rem;
  line-height: 1.2;
}
.about-section .about-content p {
  font-size: 1.8rem;
  max-width: 80rem;
  margin: 0 auto 2rem auto;
  line-height: 1.6;
}
.about-section .about-content p:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .info-section {
    padding: 4rem 0;
  }
  .info-section p {
    font-size: 1.8rem;
  }
  .about-section {
    padding: 6rem 0;
  }
  .about-section .about-title {
    font-size: 3.8rem;
    margin-bottom: 4rem;
  }
  .about-section .about-content p {
    font-size: 1.8rem;
  }
  footer {
    padding: 3rem 0 1.5rem 0;
  }
  footer .footer-section h3 {
    font-size: 1.8rem;
  }
  footer .footer-section h4 {
    font-size: 1.8rem;
  }
  footer .footer-section ul li {
    font-size: 1.6rem;
  }
  footer .footer-bottom p {
    font-size: 1.6rem;
  }
}
@media (max-width: 480px) {
  .info-section {
    padding: 4rem 0;
  }
  .info-section p {
    font-size: 1.6rem;
  }
  .about-section {
    padding: 4rem 0;
  }
  .about-section .about-title {
    font-size: 3.3rem;
    margin-bottom: 3rem;
  }
  .about-section .about-content p {
    font-size: 1.6rem;
  }
  .about-section footer {
    padding: 2.5rem 0 1rem 0;
  }
  .about-section footer .footer-section h3 {
    font-size: 1.6rem;
  }
  .about-section footer .footer-section h4 {
    font-size: 1.6rem;
  }
  .about-section footer .footer-section ul li {
    font-size: 1.6rem;
  }
  .about-section footer .footer-bottom p {
    font-size: 1.4rem;
  }
}/*# sourceMappingURL=global.css.map */