* {
  margin: 0;
  padding: 0;
}
div.column {
  width: 400px;
  margin: 10px auto;
}
div.box {
  margin: 5px 0;
  padding: 5px;
}
div.box .logo_holder {
  width: 100px;
  margin: auto;
}
div.box h1 {
  font-size: 24px;
}
div.box h2 {
  font-size: 18px;
}
ul.access li {
  background-color: #ffeccb;
  color: #d08501;
  border-radius: 7px;
  padding: 7px;
  margin: 8px;
}
ul.access li:hover {
  background-color: #ffd894;
  color: #a66b03;
}
ul.access li span {
  float: left;
  transform: rotate(90deg);
  position: relative;
  top: 5px;
  left: 10px;
}
ul.access li:hover span {
  left: 2px;
}
ul.contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
ul.contact li {
  background-color: red;
  color: white;
  border-radius: 12px;
  padding: 5px;
  margin: 10px;
  width: 160px;
  height: 40px;
  float: right;
  text-align: center;
  overflow: hidden;
  line-height: 20px;
  font-size: 16px;
}
ul.contact li:hover {
  background-color: maroon;
  color: #a66b03;
}
ul.contact li span {
  /*    display:inline-block;*/
  /*    float:right;*/
  font-size: 20px;
  margin-left: 5px;
  position: relative;
  top: 5px;
}
ul.contact li.telegram {
  background-color: #35ace1;
  color: white;
}
ul.contact li.whatsapp {
  background-color: #00e676;
  color: white;
}
ul.contact li:hover {
  box-shadow: 0px 0px 10px 0 rgba(0, 0, 0, 0.5);
}

div.badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

@media only screen and (max-width: 399px) {
  div.column {
    width: 320px;
  }
  ul.contact li {
    margin: 10px;
    width: 130px;
  }
}

.background {
  height: 100vh;
  background-image: url(../img/44.jpg);
  background-position: center;
  background-size: cover;
  position: relative;
}

.background-form {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: white;
  padding: 12px;
  border-radius: 11px;
  width: 350px;
}
