.faldon {
  --maxwidth: 1200px;
  --color: #004481;
  --bgcolor: #d4edfc;
  position: fixed;
  z-index: 999;
  background-color: var(--bgcolor);
  color: var(--color);
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 1s;
  font-weight: normal;
  font-family: "bentonsansMedium", sans-serif;
  font-size: 18px;
}
.faldon.hidden {
  bottom: -10rem;
  transition: all 1s;
}
.faldon.desktop {
  display: none;
}
.faldon p {
  margin: 0;
}
.faldon .h1 {
  font-size: 26px;
}
.faldon .h2 {
  font-size: 24px;
}
.faldon .h3 {
  font-size: 22px;
}
.faldon .h4 {
  font-size: 20px;
}
.faldon .h5 {
  font-size: 16px;
}
.faldon .h6 {
  font-size: 14px;
}
.faldon .faldon-text {
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
}
.faldon .faldon-btn {
  background-color: var(--color);
  border-color: var(--color);
  margin: 1rem;
  font-weight: normal;
  line-height: 1.4;
  padding-top: 0.75rem;
}
.faldon .faldon-close-btn {
  position: absolute;
  right: 0;
  top: 0;
  font-size: 2rem;
  padding: 0.5rem;
  font-weight: normal;
  font-family: sans-serif;
}
.faldon .faldon-close-btn:hover {
  cursor: pointer;
}
@media screen and (max-width: 780px) {
  .faldon {
    flex-direction: column;
  }
  .faldon .h1,
  .faldon .h2,
  .faldon .h3,
  .faldon .h4,
  .faldon .h5,
  .faldon .h6 {
    font-size: 14px !important;
  }
  .faldon .faldon-btn {
    margin-top: 0;
  }
  .faldon.phone {
    display: none;
  }
  .faldon.phone1 {
    display: block;
  }
}