.popUp{
    width: fit-content;
    max-width: calc(100% - 40px);
    height: fit-content;
    position: fixed;
    top: 0;
    left: calc(50% - 45vw);
    z-index: 1000;
    background: #000000;
    border: 1px solid #2E2C2E;
    padding: 30px 35px;
    display: none;
}
.puClose{
    width: 50px;
    height: 50px;
    position: absolute;
    top: -20px;
    right: -20px;
    border: 1px solid #ffffff;
    border-radius: 50%;
    background: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.pucImg{

}
.puInner{
    display: flex;
    flex-direction: column;
}
.puiHeader{
    display: flex;
    flex-direction: column;
    margin-bottom: 40px;
}
.puihHeader{
    color: #ffffff;
    margin-bottom: 15px;
}
.puihText{
    color: #C8CFD6;
}
.puiForm{
    display: flex;
    justify-content: space-between;
}
.puifLeft{
    display: flex;
    flex-direction: column;
}
.puiflhLabel{
    color: #ABABAB;
    margin-bottom: 9px;
}
.puiflhInput{
    width: 486px;
    height: 45px;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid #707070;
    border-radius: 6px;
    padding-left: 10px;
    color: #ffffff;
}
.puiflSubmit{
    width: fit-content;
    max-width: 200px;
    text-align: center;
    margin-top: 10px;
    padding: 21px 64px;
    color: #ffffff;
    background: #B30BB7;
    border: 2px solid #B30BB700;
    border-radius: 3px;
    cursor: pointer;
    transition: .3s;
}
.puiflSubmit:hover{
    transition: .2s;
    background: none;
    border: 2px solid #B30BB7;
}
.puiflhInputHelp{
    padding: 7px;
    height: 140px;
    resize: none;
}
.puiflhContacted{
    color: #ffffff;
}
.puiflHolder{
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
}

@media screen and (max-width: 1200px){
    .popUp{
        width: 100%;
        max-width: 100%;
        height: 100%;
        position: fixed;
        overflow-y: scroll;
        z-index: 1000;
    }
    .puClose{
        top: 20px;
        right: 20px;
    }
    .puInner{
        width: 100%;
        align-items: center;
    }
    .puiForm{
        width: 100%;
        flex-direction: column;
    }
    .puifLeft{
        width: 100%;
    }
    .puiHeader{
        width: 100%;
    }
    .puiflhInput{
        width: 100%;
    }
}

@media screen and (max-width: 500px){
    .popUp{
        padding: 40px 30px;
    }
    .puiflSubmit{
        margin-bottom: 30px;
        margin-top: 25px;
    }
}