body {
  background-color: #f5f5f5;
  font-family: "Satoshi", sans-serif;
  background-color: #ffffff;
  background: url('/pgr-elira.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  color: #2257a6;
  padding: 0px;
}
.login-card {
  width: 500px;
  height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  top: 50%;
  left: 50%;
  border-radius: 10px;
  position: absolute;
  transform: translate(-50%, -50%);
  background-color: #ffffff;
  box-shadow: 8px 8px 11px #00000038;
  border: 1px solid #eb2f06;
}
.login-card img {
  height: 100px;
  width: 115px;
}
.login-card input {
  height: 40px;
  width: 80%;
  outline: none;
  font-size: 18px;
  font-family: "Satoshi", sans-serif;
  border: 3px solid #2257a6;
  font-weight: bolder;
  border-radius: 10px;
  text-align: center;
  color: #2257a6;
}
.login-card button {
  width: 125px;
  height: 40px;
  margin: 10px;
  outline: none;
  border: 0px;
  border-radius: 10px;
  background-color: #2257a6;
  cursor: pointer;
  color: white;
  text-transform: uppercase;
  font-weight: 600;
}
.login-card-off {
  width: 100%;
  height: 70px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  top: 0%;
  border-radius: 50px;
  position: sticky;
  background-color: #ffffff;
  box-shadow: 8px 8px 11px #00000038;
}
.login-card-off img {
  height: 60px;
  width: 60px;
}
.contact-card {
  width: 300px;
  height: 100%;
  min-height: 150px;
  display: flex;
  overflow: hidden;
  flex-direction: column;
  justify-content: center;
  border-radius: 10px;
  margin: 20px;
  background-color: #ffffff;
  box-shadow: 8px 8px 11px #00000038;
}
.contact-card i {
  margin-right: 10px;
}
.contact-row {
  height: 100%;
  width: 90%;
  display: flex;
  margin: auto;
  align-items: center;
}
.contact-row:nth-child(5) {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.contact-time {
  width: 100%;
  background-color: #2257a6;
  color: #ffffff;
  text-align: center;
  font-weight: 600;
  /* font-size: 14px; */
}
.contacts-container {
  display: grid;
  width: 100%;
  height: 100%;
  grid-template-columns: auto auto auto;
  align-items: center;
  justify-content: center;
  margin-top: 50px;
  row-gap: 20px;
}
@media only screen and (max-width: 768px) {
  body {
    background-repeat: repeat;
  }
  .contacts-container {
    grid-template-columns: auto;
  }
  .login-card{
    width: 90%;
    height: 500px;
  }
  .login-card button{
    margin: 50px 10px 10px 10px;
  }
}
