.nushto-contact-top {
    margin-bottom: 50px;
    text-align: center;
}

.nushto-contact-top h2 {
    margin-bottom: 16px;
    color: #FF7A00;
}

.nushto-contact-top p {
    color: #fff;
}

.nushto-contact-form {
    max-width: 899px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 40px 24px;
    border-radius: 32px;
    border: 2px solid #FF7A00;
    box-sizing: border-box;
}

.nushto-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    width: 100%;
}

.nushto-form-item {
    width: 100%;
}

.nushto-form-item label {
    display: inline-block;
    margin-bottom: 6px;
    color: #C0D4EC;
    font-family: sans-serif;
    font-size: 11px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: uppercase;
}

.nushto-form-item input,
.nushto-form-item textarea {
    width: 100%;
    padding: 12px 15px;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.25;
    box-sizing: border-box;
}

.nushto-form-item input::placeholder {
    color: #C0D4EC;
}

.nushto-form-item textarea {
    resize: vertical;
}

@media screen and (max-width: 768px) {
    .nushto-form-row {
        grid-template-columns: 1fr;
    }
}

.nushto-form-submit {
    align-self: center;
    display: inline-block;
    padding: 15px 28px;
    border-radius: 10px;
    background: #F36E36;
    color: #FFF;
    text-align: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
}

.nushto-popup-thank-you {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 7px;
    box-sizing: border-box;
}

.nushto-popup-thank-you-wrap {
    display: flex;
    align-items: center;
    flex-direction: column;
    max-width: 510px;
    gap: 12px;
    padding: 32px;
    border-radius: 20px;
    background: #FF7A00;
}
@media screen and (max-width: 767px) {
    .nushto-popup-thank-you-wrap {
        padding: 40px 15px;
    }
}

.nushto-popup-thank-you-title {
    color: #fff;
    text-align: center;
    font-family: sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
}
@media screen and (max-width: 767px) {
    .nushto-popup-thank-you-title {
        font-size: 20px;
    }
}