.contenedor h3{
  font-size: 33px;
  color: rgb(219,144,.5);
  margin-bottom: 10px;
}

.contenedor p{
  font-weight: 300;
  color: rgb(219,144,.5);
}

.after::after{
  content:'';
  display: block;
  margin: auto;
  margin-top: 10px;
  width: 100px;
  height: 2px;
  background: rgb(219,144,.5);
  margin-bottom: 45px;  
}
.contact{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 20px;
    background: white;
}
.card-contact{
    width: 40%;
    text-align: left;
    line-height: 25px;
    border-right: 4px solid red;
}
.card-contact [class*="icon-"]{
    position: relative;
    font-size: 20px;
    margin-right: 7px;
    top: 5px;
    color: red;
}
.card-contact p{
    color: black;
    font-weight: 400;
}
.card-contact p a{
    color: black;
    text-decoration: none;
}
.card-contact1{
    width: 55%;
}
.bolivia{
    margin-top: 24px;
}
.australia{
    font-size: 33px;
    margin-bottom: 10px;
}
.card-contact img{
    margin-right: 10px;
}
.text-contact{
    font-size: 20px;
}
.card-contact .social-icon{
    margin-top: 20px;
    display: flex;
}
.social-icon a{
    margin-left: 15px;
}
.card-contact .social-icon [class*="icon-"]{
    position: relative;
    top: 0;
    margin-right: 0px;
    display: flex;
    background: black;
    color: white;
    width: 40px;
    height: 40px;
    line-height: 39px;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 23px;
}
.social-icon-link{
    text-decoration: none;
}
.card-contact .social-icon [class*="icon-"]:hover{
    background: #7B68EE;
}
.formulario{
    padding: 10px;
    padding-top: 0;
}
.formulario-label, .formulario-input, .formulario-textarea{
    text-align: start;
    display: block;
    width: 100%;
}
.formulario-label{
    font-size: 20px;
}
.formulario-input{
    padding: 10px;
    margin-bottom: 10px;
    font-size: 16px;
    background: rgba(220, 220, 220,0.5);
    border: none;
}
.formulario-textarea{
    padding: 8px;
    font-size: 17px;
    min-width: 100%;
    max-width: 100%;
    min-height: 100px;
    max-height: 130px;
    background: rgba(220, 220, 220,0.5);
    border: none;
}
.formulario-btn{
    border: none;
    cursor: pointer;
    font-size: 20px;
    background: red;
    color: white;
    margin-top: 20px;
    margin-bottom: 0;
    width: 150px;
    padding: 13px;
}
.formulario-btn:hover{
    background: #7B68EE;
}

/*------------responsive para 768px -----------------*/

@media screen and (max-width:768px){
    .card-contact{
        width: 45%;
    }
    .card-contact1{
        width: 53%;
    }
    .australia{
        font-size: 24px;
    }
    .text-contact{
        font-size: 17px;
    }
}
/*--------------responsive para 480 ----------*/
@media screen and (max-width: 500px){
    .card-contact{
        width: 100%;
        border-right: none;
        margin-bottom: 40px;
        border-bottom: 3px solid red;
    }
    .card-contact .social-icon{
        margin-bottom: 40px;
        justify-content: center;
    }
    .card-contact1{
        width: 100%;
    }
}