.contact-block {
    display: flex;
    margin: auto;
    margin-top: -100px;
    background: #FFFFFF;
    box-shadow: 0px 0px 60px 30px rgba(0, 0, 0, 0.03);
    border-radius: 10px;
    width: 80%;
    z-index: 2;
    position: relative;
    flex-direction: row;
}

.contact-left-info {
    background: linear-gradient(149.89deg, #7471F3 4.21%, #C971F3 96.26%);
    border-radius: 10px;
    width: 40%;
    max-width: 490px;
    display: flex;
    flex-direction: column;
    margin-left: 10px;
    margin-top: 10px;
    margin-bottom: 10px;
    padding: 40px;
}

.contact-info {
    font-family: 'DM Sans';
    font-style: normal;
    font-weight: 500;
    font-size: 28px;
    /* line-height: 36px; */
    margin-bottom: 0;
    color: #FFFFFF;
}

.contact-info-desc {
    font-family: 'Proxima Nova';
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    margin-top: 10px;
    /* line-height: 22px; */
    color: #FFFFFF;
    opacity: 0.6;
}

.contact-info-values-block {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    /* justify-content: center; */
}

.contact-info-values-img {
    width: 24px;
    margin-right: 15px;
}

.contact-info-values {
    font-family: 'Proxima Nova';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    color: #FFFFFF;
    text-decoration: none;
}

.contact-right-info {
    width: calc(60% - 40px);
    /* max-width: 490px; */
    display: flex;
    flex-direction: column;
    margin-left: 10px;
    margin-top: 10px;
    margin-bottom: 10px;
    padding: 40px;
}

input,
textarea {
    padding: 20px;
    font-family: 'Proxima Nova';
    font-size: 16px;
    border: 1px solid #475467;
    width: calc(100% - 40px);
    margin-bottom: 40px;
}

textarea {
    height: 100px;
    resize: none;
}

.colored-button-header {
    background: #FFFFFF;
    box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.05);
    padding: 18px 50px;
    border-style: solid;
    border-width: 1px;
    border-color: #B76BF2;
    border-radius: 64px;
    background: linear-gradient(227.29deg, #FF8D3A 6.03%, #B76BF2 50.99%, #1585F2 96.9%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.response-error {
    font-family: 'Proxima Nova';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    color: red;
    opacity: 0.5;
    margin-top: -20px;
    margin-bottom: 20px;
}

.form-black-layer{
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    bottom: 0;
    z-index: 3;
    background-color: #47546750;
}
.form-submit-popup {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #FFFFFF;
    box-shadow: 0px 0px 60px 30px rgba(0, 0, 0, 0.03);
    border-radius: 10px;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    max-width: 450px;
    z-index: 4;
    padding: 20px;
}

.form-popup-title {
    font-family: 'DM Sans';
    font-style: normal;
    font-weight: 700;
    font-size: 30px;
    color: #000000;
    margin-top: 0;
    margin-bottom: 0;
}

.form-popup-desc {
    font-family: 'Proxima Nova';
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    text-align: center;
    color: #475467;
    margin-top: 15px;
    margin-bottom: 40px;
}