* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Noto Sans", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: #333;
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  line-height: 1.2;
  font-family: "Noto Sans", sans-serif;
  font-weight: 700;
}

h1 {
  font-size: 48px;
  line-height: 1.2;
  font-weight: 700;
  font-family: "Noto Sans", sans-serif;
}

h2 {
  font-size: 32px;
  line-height: 1.2;
  font-weight: 700;
  font-family: "Noto Sans", sans-serif;
}

h3 {
  font-size: 28px;
  line-height: 1.2;
  font-weight: 700;
  font-family: "Noto Sans", sans-serif;
}

h4 {
  font-size: 24px;
  line-height: 1.2;
  font-weight: 700;
  font-family: "Noto Sans", sans-serif;
}

h5 {
  font-size: 20px;
  line-height: 1.2;
  font-weight: 700;
  font-family: "Noto Sans", sans-serif;
}

h6 {
  font-size: 16px;
  line-height: 1.2;
  font-weight: 700;
  font-family: "Noto Sans", sans-serif;
}

a {
  color: #007bff;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

.container {
  width: 100%;
  max-width: 1350px;
  margin: 0 auto;
  padding: 0 1rem;
}

.row {
  display: flex;
  flex-wrap: wrap;
}

.col {
  flex: 1;
  padding: 0.5rem;
}

.header {
  background: rgba(255, 255, 255, 0.25);
  box-shadow: 0 8px 32px 0 rgba(29, 29, 30, 0.37);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  margin: 0 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  position: relative;
  z-index: 100;
}
.header .header__logo {
  width: 80px;
  height: 80px;
  overflow: hidden;
  display: flex;
  justify-content: center;
}
.header .header__logo img {
  height: 100%;
  width: auto;
}
.header .header__menu-toggle {
  display: block;
  font-size: 1.5rem;
  cursor: pointer;
}
.header .header__nav {
  background: rgba(255, 255, 255, 0.71);
  box-shadow: 0 8px 32px 0 rgba(29, 29, 30, 0.37);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: none;
  position: absolute;
  z-index: 200;
  top: 100%;
  left: 0;
  width: 100%;
  flex-direction: column;
  align-items: center;
}
.header .header__nav a {
  margin: 1rem 0;
  text-decoration: none;
  text-align: center;
}
.header.header--open .header__nav {
  display: flex;
}
@media (min-width: 768px) {
  .header {
    margin: 1rem auto;
    width: fit-content;
  }
  .header .header__menu-toggle {
    display: none;
  }
  .header .header__nav {
    background: none;
    box-shadow: none;
    backdrop-filter: none;
    display: flex;
    position: static;
    flex-direction: row;
    align-items: center;
  }
  .header .header__nav a {
    margin: 0 1rem;
  }
}

.footer {
  margin-top: 2rem;
  background-color: #1a1a1a;
  color: #fff;
  padding: 2rem;
  font-family: Arial, sans-serif;
}
.footer__content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.footer__brand {
  text-align: center;
}
.footer__brand .footer__logo {
  width: 100px;
  margin-bottom: 1rem;
}
.footer__brand p {
  font-size: 0.875rem;
  margin: 0;
}
.footer__nav .footer__links {
  list-style: none;
  padding: 0;
  display: flex;
  gap: 1.5rem;
}
.footer__nav .footer__links li a {
  color: #fff;
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.3s;
}
.footer__nav .footer__links li a:hover {
  color: #00aaff;
}
.footer__social {
  display: flex;
  gap: 1rem;
}
.footer__social .footer__social-link {
  color: #fff;
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.3s;
}
.footer__social .footer__social-link:hover {
  color: #00aaff;
}

.button {
  font-family: "Noto Sans", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  background-color: #3498db;
  color: #fff;
  padding: 1rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}
.button:hover {
  background-color: #217dbb;
}
@media (max-width: 768px) {
  .button {
    padding: 2rem;
  }
}

.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 4rem 2rem;
  position: relative;
  height: 100vh;
  max-height: 500px;
  overflow: hidden;
  border-radius: 2rem;
  display: flex;
  align-items: start;
  justify-content: end;
}
.hero::before {
  content: "";
  background-image: url("/images/main-banner.webp");
  background-size: cover;
  background-position: center;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 8;
}
.hero::after {
  content: "";
  height: 100%;
  width: 100%;
  position: absolute;
  background-color: rgba(0, 0, 0, 0.5568627451);
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9;
}
.hero__content {
  z-index: 10;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: end;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  color: #d4d4d8;
}
.hero__content h1 {
  flex: 1;
  font-family: "Noto Sans", sans-serif;
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 1rem;
  line-height: 1.2;
  color: #d4d4d8;
}
.hero__content .description {
  max-width: 350px;
}

/*# sourceMappingURL=main.css.map */
