.vxr_contacts8_main_box {
    padding: 80px 0 0;
    background: #0a0806;
    position: relative;
    overflow: hidden;
    --ring-radius: 20px;
    --ring-thickness: 2px;
    --ring-opacity: 0.8;
    --ring-speed: 3s;
    --ring-c1: #FFB800;
    --ring-c2: #ffc933;
}

.vxr_contacts8_main_box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #FFB800, transparent);
}

.vxr_contacts8_container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.vxr_contacts8_top_section {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    margin-bottom: 60px;
}

.vxr_contacts8_logo {
    margin-bottom: 25px;
}

.vxr_contacts8_logo img {
    height: 60px;
    width: auto;
}

.vxr_contacts8_description {
    font-size: 16px;
    line-height: 1.7;
    color: #b8b3ac;
    margin: 0 0 40px;
}

.vxr_contacts8_contact_items {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 40px;
}

.vxr_contacts8_contact_item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.vxr_contacts8_contact_icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vxr_contacts8_contact_details {
    flex: 1;
}

.vxr_contacts8_contact_title {
    font-size: 14px;
    color: #b8b3ac;
    margin: 0 0 5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.vxr_contacts8_contact_link {
    font-size: 18px;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
    display: inline-block;
}

.vxr_contacts8_contact_link:hover {
    color: #FFB800;
}

.vxr_contacts8_social {
    display: flex;
    gap: 15px;
}

.vxr_contacts8_social_link {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 184, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFB800;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 184, 0, 0.2);
}

.vxr_contacts8_social_link:hover {
    background: linear-gradient(135deg, #FFB800, #ffc933);
    color: #0a0806;
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(255, 184, 0, 0.4);
}

.vxr_contacts8_form_block {
    background: rgba(20, 16, 12, 0.7);
    backdrop-filter: blur(10px);
    padding: 45px;
    border-radius: 20px;
    position: relative;
}

@property --_angle {
    syntax:"<angle>";
    initial-value:0turn;
    inherits:false;
}

@supports (background: conic-gradient(red, blue)) {
    .ring-sweep{
        position: relative;
        isolation: isolate;
        border-radius: var(--ring-radius);
        contain: paint;
    }

    .ring-sweep::before{
        --_angle: 0turn;
        content:"";
        position:absolute;
        inset:0;
        border-radius:inherit;
        padding:var(--ring-thickness);
        pointer-events:none;
        opacity: 0;
        transition: opacity .25s ease, filter .25s ease;
        will-change: transform;
        background:
                conic-gradient(from var(--_angle),
                transparent 0deg 4deg,
                var(--ring-c1) 80deg 16deg,
                transparent 20deg 176deg,
                var(--ring-c2) 230deg 188deg,
                transparent 192deg 356deg);
        -webkit-mask:
                linear-gradient(#000 0 0) content-box,
                linear-gradient(#000 0 0);
        -webkit-mask-composite:xor;
        mask-composite:exclude;
        filter: drop-shadow(0 0 12px rgba(255, 184, 0, .25))
        drop-shadow(0 0 24px rgba(255, 184, 0, .15));
        animation: none;
        animation-play-state: paused;
        z-index: 10;
    }

    @media (hover: hover){
        .ring-sweep[data-ring="hover"]:hover::before,
        .ring-sweep:not([data-ring]):hover::before{
            animation: vxr_contacts8_ring_spin var(--ring-speed) linear infinite;
            animation-play-state: running;
            opacity: 1;
            filter: drop-shadow(0 0 16px rgba(255, 184, 0, .35))
            drop-shadow(0 0 36px rgba(255, 184, 0, .2));
        }
    }

    .ring-sweep[data-ring="always"]::before{
        animation: vxr_contacts8_ring_spin var(--ring-speed) linear infinite;
        animation-play-state: running;
        opacity: 1;
        filter: drop-shadow(0 0 16px rgba(255, 184, 0, .35))
        drop-shadow(0 0 36px rgba(255, 184, 0, .2));
    }

    .ring-sweep[data-ring="off"]::before{
        animation: none !important;
        opacity: 0 !important;
        filter: none !important;
    }

    @keyframes vxr_contacts8_ring_spin{
        to{ --_angle: 1turn; }
    }
}

@supports not (background: conic-gradient(red, blue)) {
    .ring-sweep{
        box-shadow:
                0 0 0 var(--ring-thickness) rgba(255, 184, 0, .9) inset,
                0 0 24px rgba(255, 184, 0, .35),
                0 0 48px rgba(255, 184, 0, .2);
    }
}

@media (prefers-reduced-motion: reduce){
    .ring-sweep::before{
        animation: none !important;
    }
}

.vxr_contacts8_form_title {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 10px;
    position: relative;
    z-index: 2;
}

.vxr_contacts8_form_subtitle {
    font-size: 16px;
    color: #b8b3ac;
    margin: 0 0 35px;
    position: relative;
    z-index: 2;
}

.vxr_contacts8_form {
    position: relative;
    z-index: 2;
}

.vxr_contacts8_form .vxr_form_row {
    margin-bottom: 25px;
}

.vxr_contacts8_form .vxr_form_row:last-of-type {
    margin-bottom: 25px;
}

.vxr_contacts8_form label {
    display: block;
    font-size: 14px;
    color: #e0dcd5;
    margin-bottom: 8px;
    font-weight: 600;
}

.vxr_contacts8_form .vxr_form_rq::after {
    content: '*';
    color: #FFB800;
    margin-left: 4px;
}

.vxr_contacts8_form .vxr_form_field {
    width: 100%;
    padding: 14px 18px;
    background: rgba(10, 8, 6, 0.6);
    border: 1px solid rgba(255, 184, 0, 0.2);
    border-radius: 10px;
    color: #ffffff;
    font-size: 15px;
    transition: all 0.3s ease;
    font-family: inherit;
}

.vxr_contacts8_form .vxr_form_field:focus {
    outline: none;
    border-color: #FFB800;
    background: rgba(10, 8, 6, 0.8);
    box-shadow: 0 0 0 3px rgba(255, 184, 0, 0.1);
}

.vxr_contacts8_form .vxr_form_field::placeholder {
    color: #6b6560;
}

.vxr_contacts8_form textarea.vxr_form_field {
    resize: vertical;
    min-height: 100px;
}

.vxr_contacts8_form select.vxr_form_field {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23FFB800' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 40px;
}

.vxr_contacts8_form .gdpr-consent {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 25px;
    font-size: 14px;
    color: #b8b3ac;
}

.vxr_contacts8_form .gdpr-consent input[type="checkbox"] {
    margin-top: 3px;
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #FFB800;
}

.vxr_contacts8_form .gdpr-consent a {
    color: #FFB800;
    text-decoration: none;
    transition: color 0.3s ease;
}

.vxr_contacts8_form .gdpr-consent a:hover {
    color: #ffc933;
    text-decoration: underline;
}

.vxr_contacts8_form .vxr_form_submit {
    width: 100%;
    padding: 16px 40px;
    background: linear-gradient(135deg, #FFB800, #ffc933);
    color: #0a0806;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.vxr_contacts8_form .vxr_form_submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 184, 0, 0.5);
    background: linear-gradient(135deg, #ffc933, #FFB800);
}

.vxr_contacts8_form .vxr_form_description_field {
    font-size: 13px;
    color: #b8b3ac;
    margin-top: 5px;
}

.vxr_contacts8_form input[type="file"].vxr_form_field {
    padding: 10px;
    cursor: pointer;
}

.vxr_contacts8_form .vxr_form_response {
    text-align: center;
    padding: 40px 20px;
}

.vxr_contacts8_success_icon {
    font-size: 60px;
    color: #4caf50;
    margin-bottom: 20px;
}

.vxr_contacts8_response_title {
    font-size: 26px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 10px;
}

.vxr_contacts8_response_text {
    font-size: 16px;
    color: #b8b3ac;
    margin: 0;
}

.vxr_contacts8_bottom_section {
    border-top: 1px solid rgba(255, 184, 0, 0.1);
    padding: 35px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.vxr_contacts8_links {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.vxr_contacts8_footer_link {
    color: #b8b3ac;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.vxr_contacts8_footer_link:hover {
    color: #FFB800;
}

.vxr_contacts8_copyright {
    text-align: right;
}

.vxr_contacts8_copyright p {
    color: #6b6560;
    font-size: 14px;
    margin: 0;
}

@media (max-width: 1024px) {
    .vxr_contacts8_main_box {
        padding: 60px 0 0;
    }

    .vxr_contacts8_container {
        padding: 0 30px;
    }

    .vxr_contacts8_top_section {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .vxr_contacts8_form_block {
        padding: 40px 35px;
    }
}

@media (max-width: 768px) {
    .vxr_contacts8_main_box {
        padding: 50px 0 0;
    }

    .vxr_contacts8_container {
        padding: 0 20px;
    }

    .vxr_contacts8_top_section {
        gap: 40px;
        margin-bottom: 40px;
    }

    .vxr_contacts8_logo img {
        height: 50px;
    }

    .vxr_contacts8_description {
        font-size: 15px;
        margin-bottom: 30px;
    }

    .vxr_contacts8_contact_items {
        gap: 20px;
        margin-bottom: 30px;
    }

    .vxr_contacts8_contact_link {
        font-size: 16px;
    }

    .vxr_contacts8_social_link {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .vxr_contacts8_form_block {
        padding: 35px 25px;
    }

    .vxr_contacts8_form_title {
        font-size: 28px;
    }

    .vxr_contacts8_form_subtitle {
        font-size: 15px;
        margin-bottom: 30px;
    }

    .vxr_contacts8_bottom_section {
        flex-direction: column;
        align-items: flex-start;
        padding: 30px 0;
    }

    .vxr_contacts8_links {
        gap: 20px;
    }

    .vxr_contacts8_copyright {
        text-align: left;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .vxr_contacts8_logo img {
        height: 40px;
    }

    .vxr_contacts8_description {
        font-size: 14px;
    }

    .vxr_contacts8_contact_item {
        gap: 12px;
    }

    .vxr_contacts8_contact_link {
        font-size: 15px;
    }

    .vxr_contacts8_social {
        gap: 12px;
    }

    .vxr_contacts8_form_block {
        padding: 30px 20px;
    }

    .vxr_contacts8_form_title {
        font-size: 24px;
    }

    .vxr_contacts8_form_subtitle {
        font-size: 14px;
    }

    .vxr_contacts8_form .vxr_form_row {
        margin-bottom: 20px;
    }

    .vxr_contacts8_form .vxr_form_field {
        padding: 12px 15px;
        font-size: 14px;
    }

    .vxr_contacts8_form .vxr_form_submit {
        padding: 14px 30px;
        font-size: 15px;
    }

    .vxr_contacts8_links {
        flex-direction: column;
        gap: 15px;
    }

    .vxr_contacts8_footer_link {
        font-size: 14px;
    }

    .vxr_contacts8_copyright p {
        font-size: 13px;
    }
}

.vxrE4356 {
    width: 40px;
    height: 40px;
}

.vxr7624E {
    width: 40px;
    height: 40px;
}

.vxr29660 {
    width: 40px;
    height: 40px;
}

.vxr_contacts8_form_response.vxr8C3F3 {
    display: none;
}