.sidebar .block {
  border: solid 2px #EEBF45;
  width: 100%;
  box-sizing: border-box;
  padding: 28px 20px;
  margin-bottom: 40px;
}

.sidebar .block p {
  margin: 0px;
  font-family: Moderat;
  font-weight: 100;
  font-size: 18px;
  line-height: 28px;
  color: white;
  margin-bottom: 20px;
}

.sidebar .block a {
  font-family: Moderat;
  margin: 0px;
  font-weight: 100;
  font-size: 12px;
  line-height: 16px;
  text-transform: uppercase;
  text-decoration: none;
  color: white;
  position: relative;
  cursor: pointer;
  display: block;
  margin-top: 30px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.sidebar .block a:after {
  content: "";
  width: 0%;
  height: 1px;
  background-color: rgb(221, 76, 68);
  position: absolute;
  bottom: -6px;
  left: 0px;
  transition: all 0.3s ease 0s;
  width: 100%;
}

.sidebar .hs-form-field {
  margin-bottom: 0;
}

.sidebar .actions {
  margin-bottom: 18px;
}




@media (max-width: 1024px) {
  .sidebar .block p {
    font-size: 16px;
    line-height: 26px;
  }
}

