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

html,
body {
  height: 100%;
  font-family: 'Assistant', sans-serif;
  background: linear-gradient(180deg, #FFFFFF 0%, #F0F0F0 62.02%);
}

.main {
  width: 100%;
  height: 100vh;
  background-image: url('/images/ek_background.webp');
  background-size: contain;
  background-position: bottom center;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;

}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  width: 100%;
  max-width: 390px;
  padding: 0 24px;
}

.logo {

  margin-top: 4vh;
  margin-bottom: 2vh;
}

.logo img {
  width: 100px;
  height: auto;
}

.title,
.subtitle,
.card-title {
  font-family: 'Assistant', sans-serif;

}

.title {
  text-transform: uppercase;
  color: rgba(111, 69, 42, 1);
}

.subtitle {
  color: rgba(107, 114, 128, 1);
  text-align: center;
  margin-top: 2vh;
}

.union img {
  display: block;
  width: 100%;
  height: auto;
}

.cards {
  display: flex;
  justify-content: center;
  gap: 20px;
  width: 100%;
}

.card {
  flex: 1 1 0;
  max-width: 176px;
  aspect-ratio: 1 / 1;
  background-color: #FFFFFF;
  border-radius: 18px;
  box-shadow:
    0px 2px 4px -2px rgba(0, 0, 0, 0.1),
    0px 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.card a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  height: 100%;
  padding: 32px 24px;
  text-decoration: none;
  color: inherit;
  border-radius: inherit;
}

.card img {
  width: 110px;
  height: 110px;
  object-fit: contain;
  flex-shrink: 0;
}

.card .card-title {
  color: rgba(105, 115, 134, 1);
  font-size: 15px;
  line-height: 1.2;
  text-align: center;
}