#this_title{
    display: none;
}
.bg_contacto{
    padding: 0;
    background: rgba(63, 63, 63, 1);
}
.cont_form{
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    padding: 90px 0;
}
.box1_form{
    width: 50%;
    padding: 0 50px 0 10px;
}
.box2_form{
    width:50%;
    padding: 0 10px 0 50px;
}
.cont_radios{
    position: relative;
    display: flex;
    padding-bottom: 20px;
}
.box_radios{
    width: 50%;

}
.tf1{
    font-family: 'Arial-Unicode-Bold';
    font-size:30px;
    color: #fff;
    padding-bottom: 30px;
    margin-bottom: 30px;
    border-bottom: 1px solid #939393;
}
.tf2{
    font-family: 'Arial-Unicode-Regular';
    font-size:18px;
    color: #fff;
    padding-bottom: 30px;
    margin-bottom: 0;
}
.pf1{
    font-family: 'Arial-Unicode-Regular';
    color: #fff;
    padding-bottom: 30px;
    line-height: 24px;
}
.pf1 span{
    color:#da72f3;
    font-weight: 700;
}
ul.list_materiales{
    font-family: 'Arial-Unicode-Regular';
    color: #fff;
    padding-bottom: 0;
    margin-bottom: 0;
    line-height: 30px;
    padding-left: 40px;
    list-style: url('../img/vineta.png');
}
ul.list_materiales li{
    padding-left: 15px;
}
a.btn_aviso{
    font-family: 'Arial-Unicode-Regular';
    color: #fff !important;
    transition:all 0.4s;
    font-size: 14px;
    text-decoration: none;
    background: #720E9E;
    border-radius: 10px;
    padding: 10px 20px;
    cursor: pointer;
}
a.btn_aviso:hover{
    background: #d768f2;
    color: #fff !important;
}
.logo_f{
    width: 380px;
    padding-bottom: 30px;
}
.flex_extra{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    padding-bottom: 50px;
}
.ext1{
    width: 50%;
}
.ext2{
    width: 10%;
}
.ext3{
    width: 33%;
}
/*** Formulario ***/
input[type=text], input[type=email], textarea{
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 15px;
    color: #222;
    width: 100%;
    padding: 13px 12px;
    border: 1px solid #ccc;
    border-radius:5px;
    margin-bottom: 10px;
    box-sizing:border-box;
    outline:0px;
    background: #fafafa;
}
::-webkit-input-placeholder {
    color: #5D5D5D;
}
input[type=submit]{
    font-family: 'Arial-Unicode-Bold';
    text-transform: uppercase;
    font-size: 15px;
    width: 170px;
    padding: 18px;
    display: block;
    transition-property:all;
    transition-duration:0.4s;
    cursor: pointer;
    background: #720E9E;
    color: #fff;
    border: none;
    -webkit-appearance: none;
    border-radius: 5px;
    float: left;
    -webkit-appearance: none;
    appearance: 0;
}
input[type=submit]:hover{
    background: #d768f2;
    color: #fff;
}
/* label */
label {
    /*display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: nowrap;*/
    margin: 12px 0;
    cursor: pointer;
    position: relative;
    align-items: center;
    width: 100%;
    line-height: 20px !important;
}
/* input radio */
input[type=radio]{
    opacity: 0;
    /*position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);*/
    z-index: -1;
}
/* .design */
.design {
    width: 20px;
    height: 20px;
    border-radius: 10px;
    background: #fff;
    border: 1px solid #ccc;
    display: block;
    position: relative;
    float: left;
}
.design::before,
.design::after {
    content: "";
    display: block;
    width: inherit;
    height: inherit;
    border-radius: inherit;
    position: absolute;
    transform: scale(0);
    transform-origin: center center;
    left: -1px;
    top: -1px;
}
.design:before {
    background: #da72f3;
    opacity: 0;
    transition: .3s;
}
.design::after {
    background: #da72f3;
    opacity: .8;
    transition: .6s;
}
/* .text */
.text {
    font-family: 'Arial-Unicode-Bold';
    color: #da72f3;
    font-size: .85em;
    transition-property: all;
    transition-duration: 0.3s;
}
/* checked state */
input:checked+.design::before {
    opacity: 1;
    transform: scale(.6);
}
/* other states */
input:hover+.design,
input:focus+.design {
    border: 1px solid #222;
}
input:hover+.design:before,
input:focus+.design:before {
    background: #da72f3;
}
input:hover~.text {
    color: #fff;
    padding-left: 10px;
}
input:focus+.design::after,
input:active+.design::after {
    opacity: .2;
    transform: scale(2);
    color: #fff;
}