*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

body{
overflow: hidden;
display: flex;
justify-content: center;
align-items: flex-start;
}

form{
    width: 80%;
    height: auto;
    min-height: 400px;
    /* border: 2px solid green; */
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    /* flex-direction: column; */
    margin-top: 40px;
    
}

.organizador{
    width: 90%;
    height: auto;
    display: flex;
    justify-content: flex-start;
    align-items: start;
    flex-direction: column;
    /* border: 2px solid green; */
    padding-left: 50px;
}

form p{
    color: #000;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bolder;
    font-size: 30px;
    margin-bottom: 20px;
    padding-left: 20px;
}

 h5{
    color: #606060;
    font-size: 17px;
    height: auto;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 100;
    width: 40%;
    padding-left: 20px;
    margin-bottom: 20px;
    word-spacing: 4px;
}

 label{
    font-size: 18px;
    color: #606060;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    margin-top: 10px;
    margin-bottom: 10px;
    padding-left: 20px;
}

 input{
    width: 40%;
    height: 40px;
    margin-left: 20px;
    font-size: 16px;
    font-family: Arial, Helvetica, sans-serif;
    color: #606060;
    outline: none;
    border-top:none;
    border-right:none;
    border-left:none;
    border-bottom: 2px solid #b4b4b4;
}

textarea{
    width: 40%;
    border: 2px solid #b4b4b4;
    border-radius: 20px;
    height: auto;
    min-height: 200px;
    padding: 10px;
    font-family: Arial, Helvetica, sans-serif;
    color: #606060;
    font-size: 17px;
    outline: none;
    margin-left: 20px;
}

.btenvi{
    width: 20%;
    height: 55px;
    left: 20%;
    transform: translate(-50%);
    position: relative;
    background-color: #00d4ff;
    border: none;
    border-radius: 30px;
    color: #fff;
    font-family: Audiowide;
    font-size: 19px;
    cursor: pointer;
    margin-top: 10px;
    margin-bottom: 10px;
    overflow: hidden;
}

.btenvi::before{
    position: absolute;
    width: 0%;
    height: 100%;
    top: 0px;
    left: 0px;
    background-color: #ff0000;
    content: "";
    z-index: -3;
    transition: width 0.3s ease-in-out;
}

.btenvi:hover::before{
    width: 100%;
}


.quadrotec{
    width: 60%;
    background-color: #373737;
    height: 500px;
    left: 24%;
    position: relative;
    transform: translateX(-50%);
    display: flex;
    justify-content: space-around;
    align-items: start;
    padding-left: 60px;
    flex-direction: column;
    clip-path: polygon(9% 0%, 100% 0%, 91% 100%, 0% 100%);
    z-index: 9999;
    
}

.quadrotec p{
    font-size: 20px;
    font-family: Arial, Helvetica, sans-serif;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: start;
    /* border: 2px solid red; */
}

.quadrotec p svg{
    margin-right: 20px;
}
.quadrotec h1{
    color: #fff;
    font-size: 20px;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

.bramera{
    width: 22%;
    height: 830px;
    background-color: #000;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
.bramera img{
    width: 200px;
    height: 200px;
}


@media (min-width:320px) and (max-width:740px){
body{
overflow: auto;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
}

form{
    width: 100%;
    height: auto;
    min-height: 400px;
    /* border: 2px solid green; */
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: relative;
    /* flex-direction: column; */
    margin-top: 40px;
    
}

.organizador{
    width: 90%;
    height: auto;
    display: flex;
    justify-content: flex-start;
    align-items: start;
    flex-direction: column;
    /* border: 2px solid green; */
    padding-left: 0px;
}

form p{
    /* color: #000; */
    /* font-family: Arial, Helvetica, sans-serif; */
    font-weight: bolder;
    font-size: 30px;
    margin-bottom: 20px;
    padding-left: 20px;
}

 h5{
    /* color: #606060; */
    font-size: 17px;
    height: auto;
    /* font-family: Arial, Helvetica, sans-serif; */
    font-weight: 100;
    width: 100%;
    padding-left: 20px;
    margin-bottom: 20px;
    word-spacing: 4px;
}

 label{
    font-size: 18px;
    /* color: #606060; */
    /* font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif; */
    margin-top: 10px;
    margin-bottom: 10px;
    padding-left: 20px;
}

 input{
    width: 90%;
    height: 40px;
    margin-left: 20px;
    font-size: 16px;
    /* font-family: Arial, Helvetica, sans-serif; */
    /* color: #606060; */
    outline: none;
    border-top:none;
    border-right:none;
    border-left:none;
    /* border-bottom: 2px solid #b4b4b4; */
}

textarea{
    width: 90%;
    /* border: 2px solid #b4b4b4; */
    border-radius: 20px;
    height: auto;
    min-height: 200px;
    padding: 10px;
    /* font-family: Arial, Helvetica, sans-serif; */
    /* color: #606060; */
    font-size: 17px;
    outline: none;
    margin-left: 20px;
}

.btenvi{
    width: 90%;
    height: 55px;
    left: 50%;
    transform: translate(-50%);
    position: relative;
    /* background-color: #00d4ff; */
    border: none;
    border-radius: 30px;
    /* color: #fff; */
    font-family: Audiowide;
    font-size: 19px;
    cursor: pointer;
    margin-top: 10px;
    margin-bottom: 10px;
    overflow: hidden;
}

.btenvi::before{
    position: absolute;
    width: 0%;
    height: 100%;
    top: 0px;
    left: 0px;
    /* background-color: #ff0000; */
    content: "";
    z-index: -3;
    transition: width 0.3s ease-in-out;
}

.btenvi:hover::before{
    width: 100%;
}


.quadrotec{
    width: 100%;
    /* background-color: #373737; */
    height: 500px;
    left: 50%;
    position: relative;
    transform: translateX(-50%);
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding-left: 0px;
    flex-direction: column;
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
    z-index: 9999;
    
}

.quadrotec p{
    font-size: 20px;
    /* font-family: Arial, Helvetica, sans-serif; */
    /* color: #fff; */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: start;
    /* border: 2px solid red; */
}

.quadrotec p svg{
    margin-right: 20px;
}
.quadrotec h1{
    /* color: #fff; */
    font-size: 20px;
    /* font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif; */
}

.bramera{
    width: 22%;
    height: 830px;
    /* background-color: #000; */
    position: relative;
    display: none;
    justify-content: center;
    align-items: center;
}
.bramera img{
    width: 200px;
    height: 200px;
}

}