* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Geologica", sans-serif;
  background-color: #ffffff;
}

/**** CONTAINERS ****/
.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100vh;
  padding-top: 100px;
}
.content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 80px;
  margin-bottom: 50px;
}
.info-row {
  display: flex;
  justify-content: center;
  gap: 24px;
}

/**** ELEMENTS ****/
.logo {
  width: 245px;
}
.info__block {
  width: 470px;
  height: 160px;
  border: 1px solid #1d376e;
  border-radius: 16px;
  padding-bottom: 6px;
}
.info__block-title {
  border-radius: 15px;
  background-color: #1d376e;
  padding: 0 20px;
  height: 85px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.info__block-title p {
  color: #ffffff;
  font-weight: 400;
  font-size: 17px;
  text-align: center;
}

.info__block-description {
  margin-left: 50px;
  margin-top: 6px;
}
.info__block-description p {
  color: #173e83;
  font-weight: 500;
  font-size: 16px;
  margin-bottom: 1px;
}
.info__block-description ul {
  list-style-type: none;
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.info__block-description li {
  color: #173e83;
  font-weight: 500;
  font-size: 14px;
}
.info__block-description a {
  color: #173e83;
  text-decoration: none;
}

.bottom-image {
  width: 100%;
  min-height: 120px;
  max-height: 400px;
  object-fit: cover;
  object-position: bottom;
  object-position: bottom;
  margin-top: auto;
}

/**** RESPONSIVE STYLES ****/
@media (max-width: 1024px) {
  .container {
    padding-top: 100px;
  }
  .info-row {
    flex-direction: column;
    gap: 32px;
  }
}

@media screen and (max-width: 660px) {
  .container {
    padding-top: 0;
  }
  .content {
    padding: 20px;
    gap: 32px;
    margin-bottom: 0;
  }
  .logo {
    width: 220px;
  }
  .info-row {
    gap: 24px;
  }
  .info__block {
    width: 100%;
    height: auto;
  }
  .info__block-title {
    height: auto;
    padding: 12px;
  }
  .info__block-title br {
    display: none;
  }
  .info__block-description {
    margin-left: 20px;
  }
  .bottom-image {
    margin-top: 0;
  }
}
@media screen and (max-width: 660px) and (min-height: 680px) {
  .bottom-image {
    position: absolute;
    bottom: 0;
  }
}
