.qp-pop-form{
    background: var(--primary-color);
    padding: 105px 0;
}
.qp-pop-form .pop-con{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.pop-con .title{
    color: var(--text-color-white);
    font-family: var(--font-title-family);
    font-size: var(--font-title-size);
    font-style: var(--font-style);
    font-weight: var(--font-title-weight);
    line-height: var(--line-height); /* 150% */
    text-transform: capitalize;
    max-width: 340px;
}
.pop-con .desc{
    color: var(--text-color-white);
    font-family: var(--font-family);
    font-size: var(--font-desc-size);
    font-style: var(--font-style);
    font-weight: var(--font-desc-weight);
    line-height: var(--line-height); /* 150% */
    max-width: 820px;
}
.pop-con .btn{
    border: 1px solid #FFF;
    background: rgba(217, 217, 217, 0.00);
    padding: 7px;
    color: var(--primary-color);
}
.pop-con .btn a{
    display: flex;
    width: 250px;
    height: 60px;
    padding: 10px 20px;
    justify-content: center;
    align-items: center;
    gap: 24px;
    background: #FFF;
    color: var(--primary-color);
    text-align: center;
    font-family: var(--font-family);
    font-size: var(--font-desc-size);
    font-style: var(--font-style);
    font-weight: 600;
    line-height: var(--line-height); /* 150% */
    text-transform: capitalize;
}


@media screen and (max-width: 1500px) {
    .qp-pop-form .pop-con{
        gap: 30px;
    }
}
@media screen and (max-width: 992px) {
    .pop-con .desc{
        display: none;
    }
    .pop-con .btn a{
        width: auto;
    }
}
@media screen and (max-width: 768px) {
    .qp-pop-form {
        padding: 50px 0;
    }
    .qp-pop-form .pop-con{
        gap: 0;
    }
}