#contactus {
    padding: 80px 10px;
}
#contactus .container{
  border: 2px solid var(--amarelo);
  border-radius: 10px;
  padding: 20px;
   background: rgba(255, 255, 255, 0.1); 
    backdrop-filter: blur(10px);          
    -webkit-backdrop-filter: blur(10px);  
}

/* Contact Us
---------------------*/
.contact-name {
  margin-bottom: 30px;
}
.contact-name h5 {
  font-size: 22px;
  color: #20247b;
  margin-bottom: 5px;
  font-weight: 600;
}
.contact-name p {
  font-size: 18px;
  margin: 0;
}

.contact-form .form-control {
  border: none;
  border-bottom: 1px solid var(--amarelo);
  background: transparent;
  border-radius: 0;
  padding-left: 0;
  box-shadow: none !important;
  color: white;
}
.contact-form .form-control:focus {
  border-bottom: 1px solid var(--vermelho);
  color: white;
  background-color: unset;
}
.contact-form .form-control.invalid {
  border-bottom: 1px solid var(--vermelho);
}
.contact-form .form-control::placeholder {
  color: rgb(160, 160, 160);
}
.contact-form .send {
  margin-top: 20px;
}

.btnBox {
    height: 60px;
    display: flex;
    align-items: center;
}
.btnBox .gradiButton{
    padding: 10px 30px;
}
.btnBox .gradiButton:hover {
    padding: 13px 33px;
}
.single_address{
  max-width: 200px;
}
.single_address a{
  text-decoration: none;
}
/* .single_address i:hover{
  color: var(--amarelo);
} */
.single_address .icon{
  align-items: center;
  gap: 20px;
}
.single_address .icon i:hover,
.single_address .icon:hover{
  color: var(--amarelo);
}
.single_address .icon i{
  font-size: 35px;
}
.single_address .icon h4{
  margin: 0;
  
}

@media (max-width: 767px) {
  .contact-form{
    margin-bottom: 50px;
  }
  .contact-form .btnBox{
    justify-content: center;
  }
  .contact-form .send {
    margin-bottom: 20px;
  }
}

.section-title h2 {
    /* font-weight: 700;
    color: #20247b;
    font-size: 45px;
    margin: 0 0 15px; */
    border-left: 5px solid var(--vermelho);
    padding-left: 15px;
}
.section-title {
    padding-bottom: 45px;
}
.contact-form .send {
    margin-top: 20px;
}
.px-btn {
    padding: 0 50px 0 20px;
    line-height: 60px;
    position: relative;
    display: inline-block;
    color: var(--vermelho);
    background: none;
    border: none;
}
.px-btn:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    border-radius: 30px;
    background: transparent;
    border: 3px solid var(--vermelho);
    border-right: 1px solid transparent;
    -moz-transition: ease all 0.35s;
    -o-transition: ease all 0.35s;
    -webkit-transition: ease all 0.35s;
    transition: ease all 0.35s;
    width: 60px;
    height: 60px;
}
.px-btn .arrow {
    width: 13px;
    height: 2px;
    background: currentColor;
    display: inline-block;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    right: 25px;
}
.px-btn .arrow:after {
    width: 8px;
    height: 8px;
    border-right: 2px solid currentColor;
    border-top: 2px solid currentColor;
    content: "";
    position: absolute;
    top: -3px;
    right: 0;
    display: inline-block;
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}