*{
  color: #29abe2;

}
.maincontainer {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-areas:
    "contactussection"
    "footersection";
}
.item-b {
  grid-area: contactussection;
  background-image: url(/assets/images/dropbydrop_logo.svg);
 
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.item-i {
  grid-area: footersection;
  max-height: 200px;
}
/* h2,
h3 {
  line-height: 0.8;
} */
h2, h3, p, span, label, a, legend{
/*   line-height: 2;
 */  font-family: 'Fredoka', sans sarif !important;
}
body, html {
  height: 100%;
  margin: 0;
}
.contactussection {
  border-width: 3px;
  border-style: double;
  display: grid;
  grid-template-columns: 40% 60%;
  grid-template-areas: "  contactussectionform";
}
.contactussectionform {
  display: table-cell;
  width: 100%;
/*   width: 50%;
 */  padding: 50px;
}
.custom-form {
  margin: auto;
  padding: 20px;
  background: #f9f9f9;
  border-radius: 8px;
  /* box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); */
  box-shadow: 9px 9px 4px lightgray;

  text-align-last: center;
}

.custom-form label, legend {
  font-weight: bold;
  display: block;
  margin-top: 10px;
  text-align: center;
}
.custom-form input,
.custom-form textarea {
  width: 95%;
  padding: 10px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 4px;
}
fieldset{
  border: 1px solid #ccc;
  border-radius: 4px;
  background-color: white;
  text-align: center;
  padding-top: 20px;
  margin-top: 20px;
}
fieldset span {
  display: -webkit-inline-box;
  white-space: nowrap;
  margin-right: 20px;
  margin-bottom: 10px;
}
fieldset span input[type="checkbox"] {
  vertical-align: middle;
  border: 1px solid #ccc;
  border-radius: 4px;
  margin-top: 0 !important;
  margin-right: 10px;
}
fieldset span label {
  vertical-align: middle;
  margin-top: 0 !important;
}
.pconsenso {
  padding-top: 10px;
}
.consenso {
  display: inline !important;
  max-width: 12px !important;
}

.custom-form button {
  width: 95%;
  padding: 10px;
  background: #29abe2;
  color: white;
  border: none;
  border-radius: 4px;
  margin-top: 15px;
  margin-bottom: 20px;
  cursor: pointer;
  font-size: 16px;
}

.custom-form button:hover {
  background: #4abed9;
}
.footersection {
  position: relative;
  /* Full height */
  width: 100%; 
}
.Canvas-Footer{
  display: flex;
  grid-row: 4 / 5;
  align-items: stretch;
  grid-column: 1 / 4;
  flex-wrap: wrap;
  justify-content: center;
}
.canvas-footer{
  border-top: 1px solid transparent;
  justify-content: flex-end;
  flex-wrap: wrap;
}
.py-0{
    padding-block: 0 !important;
}
.px-300{
  padding-inline: 16px !important;
}
.py-200{
  padding-block: 12px !important;
}
.footer-info{
  display: inline;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.footer-links a:hover {
  color: #4abed9;
}


@media (max-width: 768px) {
  .Canvas-footer{
    border-top: 1px solid transparent;
    justify-content: flex-end;
  }
  .contactussection {
    border-width: 3px;
    border-style: double;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    grid-template-areas: "contactussectionform";
  }

}

@media screen and (max-width: 304px) {
  .Canvas-Footer {
      display: grid;
      align-items: center;
  }
}