body {
  background-color: transparent;
  background-image: url("/images/background.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  min-height: 100vh;
  font-family: "Open Sans", sans-serif;
  display: flex;
  flex-direction: column;
}

.content {
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  height: 100%;
  margin: auto 0;
}

.card {
  max-width: 530px;
  width: 100%;
  margin-left: 10px;
  margin-right: 10px;
}

.card-top {
  padding: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  background-color: #fff;
  border-top-right-radius: 15px;
  border-top-left-radius: 15px;
}
@media (max-width: 1920px) {
  .card-top {
    padding: calc(35px + 15 * (100vw - 400px) / 1620);
  }
}
.card-top img {
  max-width: 290px;
  width: 100%;
  display: block;
}

.card-bottom {
  background: rgba(255, 255, 255, 0.57);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 50px;
  border-bottom-right-radius: 15px;
  border-bottom-left-radius: 15px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.card-bottom h1, .card-bottom p {
  margin: 0;
}
@media (max-width: 1920px) {
  .card-bottom {
    gap: calc(25px + 15 * (100vw - 400px) / 1620);
    padding: calc(25px + 25 * (100vw - 400px) / 1620);
  }
}

.card-title {
  font-size: 35px;
  font-weight: 500;
  font-family: "Ubuntu";
  color: #1e2225;
  letter-spacing: -0.5px;
}
@media (max-width: 1920px) {
  .card-title {
    font-size: calc(25px + 10 * (100vw - 400px) / 1620);
  }
}

.card-text {
  font-size: 17px;
  font-family: "Open Sans";
  color: #1e2225;
  line-height: 1.66;
}
@media (max-width: 1920px) {
  .card-text {
    font-size: calc(15px + 2 * (100vw - 400px) / 1620);
  }
}

.footer {
  background-color: #ff7200;
  padding-top: 30px;
  padding-bottom: 30px;
  display: flex;
  color: #fff;
  font-size: 20px;
  justify-content: center;
  align-items: center;
  align-content: center;
  margin-top: 30px;
}
@media (max-width: 1920px) {
  .footer {
    font-size: calc(16px + 4 * (100vw - 400px) / 1620);
  }
}
@media (max-width: 600px) {
  .footer {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
}
.footer a {
  color: #fff;
  opacity: 1;
  transition: 0.2s ease-in-out;
  text-decoration: none;
}
.footer a:hover {
  opacity: 0.8;
}
.footer .footer-item {
  margin-right: 20px;
  padding-right: 20px;
  border-right: 1px solid #fff;
}
@media (max-width: 600px) {
  .footer .footer-item {
    margin-right: 0;
    padding-right: 0;
    border: 0;
  }
}
.footer .footer-item:last-child {
  margin-right: 0;
  padding-right: 0;
  border-right: 0;
}

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