#this_title{
    display: none;
}
.bg_contacto{
    background: #3f3f3f;
}
.bg_triangulo{
    background-image: url('../img/bg_tri.svg');
    background-position: left 0 top 0;
    background-repeat: no-repeat;
    background-size: 200px;
}
.cont_form{
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    padding: 90px 0;
}
.box1_form{
    width: 47%;
    padding: 0 50px 0 10px;
}
.box2_form{
    width:53%;
    padding: 0 10px 0 10px;
}
.cont_radios{
    position: relative;
    display: flex;
    padding-bottom: 20px;
}
.box_radios{
    width: 50%;
}
.tf1{
    font-family: 'Montserrat', sans-serif;
    font-weight: 600; 
    font-size:25px;
    color: #fff;
    border-bottom: 1px solid #797a7c;
    padding-bottom: 30px;
    margin-bottom: 30px;
}
.tf1 span{
    color: #9fcc15;
}
.tf2{
    font-family: 'Montserrat', sans-serif;
    font-weight: 600; 
    font-size:22px;
    color: #9fcc15;
    padding-bottom: 30px;
}
.pf1{
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    color: #fff;
    padding-bottom: 30px;
    line-height: 24px;
}
.pf1 span{
    color: #9fcc15;
    font-weight: 700 !important;
}
ul.list_materiales{
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    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: 'Montserrat', sans-serif;
    font-weight: 500;
    color: #fff !important;
    transition:all 0.4s;
    font-size: 14px;
    text-decoration: none;
    background: #207513;
    border-radius: 3px;
    padding: 15px 20px;
    cursor: pointer;
    width: 180px;
    display: block;
    border-radius: 30px;
}
a.btn_aviso:hover{
    background: #9fcc15;
    color: #fff !important;
}
.logo_f{
    width: 400px;
    padding-bottom: 30px;
}
/*** Formulario ***/
input[type=text], input[type=email], textarea{
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: #222;
    width: 100%;
    padding: 15px 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: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 14px;
    width: 180px;
    height: 50px;
    padding: 15px 20px;
    display: block;
    transition-property:all;
    transition-duration:0.4s;
    cursor: pointer;
    background: #207513;
    color: #fff;
    border: none;
    border-radius: 3px;
    -webkit-appearance: none;
    -webkit-appearance: none;
    appearance: auto;
    text-align: center;
    float: right;
    border-radius: 30px;
}
input[type=submit]:hover{
    background: #9fcc15;
    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;
    line-height: 15px;
}
/* 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: #9fcc15;
    opacity: 0;
    transition: .3s;
}
.design::after {
    background: #9fcc15;
    opacity: .8;
    transition: .6s;
}
/* .text */
.text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 1em;
    color: #9fcc15;
    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: #9fcc15;
}
input:hover~.text {
    color: #fff;
    padding-left: 10px;
}
input:focus+.design::after,
input:active+.design::after {
    opacity: .2;
    transform: scale(2);
    color: #fff;
}

.box_btns{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    padding-top: 20px;
}
.box_btn1{
    width: 50%;
}

.label{
    display: block;
    padding-bottom: 10px;
}