@import url("https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap");
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Noto Sans", sans-serif;
  transition: all 0.3s ease-in-out;
}

a {
  text-decoration: none;
}

body {
  position: relative;
  height: 100vh;
  background-image: url("main-bg-2.jpg");
  background-size: cover;
  background-position: center;
}
body:before {
  content: "";
  width: 50%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(270deg, rgba(30, 30, 30, 0) 0%, rgba(30, 30, 30, 0.6) 100%);
  z-index: 1;
}
body:after {
  content: "";
  width: 50%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  background: linear-gradient(90deg, rgba(30, 30, 30, 0) 0%, rgba(30, 30, 30, 0.6) 100%);
  background-repeat: no-repeat;
  z-index: 1;
}
body .max-width {
  max-width: 1440px;
  width: 100%;
  padding-left: 25px;
  padding-right: 25px;
  margin: 0 calc((100% - 1440px) / 2);
}
@media (max-width: 1440px) {
  body .max-width {
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media (max-width: 1440px) {
  body .max-width {
    margin: 0 0;
  }
}
@media (max-width: 768px) {
  body .max-width {
    max-width: 100%;
  }
}
body header {
  position: relative;
  width: 100%;
  padding: 15px 35px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
  z-index: 2;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
@media (max-width: 768px) {
  body header {
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
  }
}
body header .logo {
  max-height: 40px;
  height: 40px;
}
body header .logo img {
  height: 40px;
  width: auto;
}
body header .menus {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
body header .menus a {
  font-size: 16px;
  line-height: 24px;
  font-weight: bold;
  color: #1e1e1e;
}
body header .menus a:hover {
  color: #f25600;
}
@media (max-width: 768px) {
  body header .menus {
    width: 100%;
  }
}
@media (max-width: 600px) {
  body header .menus {
    display: none;
  }
}
body .glass-card {
  z-index: 2;
  max-width: 600px;
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 30px;
  padding-bottom: 35px;
  padding-top: 35px;
}
@media (max-width: 600px) {
  body .glass-card {
    max-width: calc(100% - 20px);
    width: 100%;
  }
}
body .glass-card figure {
  padding: 35px 0;
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
body .glass-card figure img {
  width: 60%;
}
body .glass-card h1 {
  font-size: 40px;
  line-height: 40px;
  color: rgb(30, 30, 30);
  width: 100%;
  -webkit-backdrop-filter: blur(3px);
  padding: 35px 0 0 35px;
  text-align: center;
}
@media (max-width: 600px) {
  body .glass-card h1 {
    font-size: 30px;
    line-height: 40px;
    padding: 0 15px;
  }
}
body .glass-card p {
  font-size: 16px;
  line-height: 16px;
  font-weight: bold;
}
body .glass-card ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  padding: 0 35px;
}
@media (max-width: 600px) {
  body .glass-card ul {
    padding: 0 15px;
  }
}
body .glass-card ul li {
  list-style: none;
  max-width: calc((100% - 10px) / 2);
  width: 100%;
  color: rgb(30, 30, 30);
  font-size: 16px;
  line-height: 24px;
  font-weight: bold;
  padding-left: 20px;
  position: relative;
}
@media (max-width: 600px) {
  body .glass-card ul li {
    max-width: 100%;
  }
}
body .glass-card ul li:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  height: 20px;
  width: 15px;
  background-repeat: no-repeat;
  background-image: url("li-icon-2.svg");
  background-size: auto 90%;
}
body .glass-card .contact {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
@media (max-width: 600px) {
  body .glass-card .contact {
    padding: 0 10px;
  }
}
body .glass-card .contact a {
  max-width: calc((80% - 20px) / 2);
  width: 100%;
  background-color: #1e1e1e;
  text-decoration: none;
  padding: 10px 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: rgb(255, 255, 255);
  border-radius: 5px;
}
body .glass-card .contact a:hover {
  color: #e35202;
}
@media (max-width: 768px) {
  body .glass-card .contact a {
    max-width: calc((90% - 20px) / 2);
  }
}
@media (max-width: 600px) {
  body .glass-card .contact a {
    max-width: 100%;
  }
}

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