
#contact{
  width: 100%;
  background-size: contain;
  background-position: center;
  border-top:1px solid #e1e1e1;
}
#contact h3{
  color:#4f5674;
  font-weight: 300;
  font-size:30px;
}
#contact h2{
  color:var(--title-color);
  font-weight: 600;
  font-size:32px;
  line-height: 120%;
}
.button_contact{
  border-radius: 3px;
  font-size:16px;
  font-weight: 500;
  font-size: 18px;
  color: #ffffff;
  border: 1px solid var(--color-main);
  background-color:var(--color-main);
  transition: all 0.3s ease;
  cursor: pointer;
  width: max-content;
  padding:10px 36px;
  margin-left: auto;
  margin-right: auto;
}
.button_contact:hover{
  background-color: var(--color-main-dark);
}
@media(max-width:768px){
  #contact h2{
    font-size:22px;
  }
  #contact h3{
    font-size:20px;
  }
  .button_contact{
    font-size: 16px;
  }
}
@media(max-width:280px){
  #contact h2{
    font-size:20px;
  }
  #contact h3{
    font-size:18px;
  }
  .button_contact{
    font-size: 14px;
  }
}