/* contact block */
section.contact-block {
    width: 100%;
    background: #fff;
}

section.contact-block .section-divider-top {
    height: 164px;
    background: #0E0E0C;
    clip-path: polygon(0 0, 100% 0, 100% 0%, 0% 80%);
    transform: scale(1.01);
    max-width: 99vw;
}

section.contact-block .contact-container {
    position: relative;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 100px 0 100px 0;
    max-width: 1400px;
    width: 100%;
}

section.contact-block .contact-container .form-block {
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 44px;
    max-width: 640px;
    width: 100%;
}

section.contact-block .contact-container .form-block .cc-header .cc-title {
    display: flex;
    flex-direction: row;
    gap: 8px;
    margin: 0 auto;
    justify-content: center;
}

section.contact-block .contact-container .form-block .cc-header .cc-logo img {
    display: block;
    margin: 0 auto;
    width: 100%;
    height: auto;
    max-width: 200px;
}

section.contact-block .contact-container .form-block .cc-header .cc-text .cc-title p {
    font-family: 'Unbounded', sans-serif;
    font-weight: 900;
    text-transform: uppercase;
    font-size: 40px;
    line-height: 1.2;
    letter-spacing: -0.02em;
    text-align: center;
    color: #0E0E0C;
    margin: 16px 0 0;
}

section.contact-block .contact-container .form-block .cc-header .cc-text .cc-title p span {
    font-family: 'Unbounded', sans-serif;
    background: linear-gradient(90deg, #C4EF01 0%, #99BA00 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    display: inline-block;
}

section.contact-block .contact-container .form-block .cc-header .cc-text .cc-subtitle p {
    font-family: "Mona Sans Expanded", sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #0E0E0C;
    line-height: 1.2;
    letter-spacing: -0.02em;
    text-align: center;
    margin: 16px 0 0;
}

section.contact-block .contact-container .form-block .cc-actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    padding: 0 40px;
}

section.contact-block .contact-container .form-block .cc-action-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 18px 30px;
    border-radius: 90px;
    text-decoration: none;
    font-family: "Mona Sans Expanded", sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.02em;
    transition: all .25s ease;
    border: none;
    cursor: pointer;
    background: transparent;
}

section.contact-block .contact-container .form-block .cc-action-btn .cc-action-btn__icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

section.contact-block .contact-container .form-block .cc-action-btn--primary {
    background: #D2FF1C;
    color: #0E0E0C;
}

section.contact-block .contact-container .form-block .cc-action-btn--secondary {
    background: #fff;
    color: #0E0E0C;
    border: 1px solid #D6D6D6;
}

section.contact-block .contact-container .form-block .cc-action-btn:hover {
    transform: translateY(-1px);
}

@media screen and (min-width: 1280px) and (max-width: 1440px) {
    section.contact-block .contact-container {
        padding: 162px 0 100px 0;
        max-width: 1280px;
    }
}

@media screen and (min-width: 1040px) and (max-width: 1280px) {
    section.contact-block .contact-container {
        max-width: 1040px;
    }
}

@media screen and (min-width: 720px) and (max-width: 1040px) {
    section.contact-block .contact-container {
        padding: 162px 0 100px 0;
        max-width: 1040px;
    }
}

@media screen and (max-width: 719px) {
    section.contact-block .contact-container {
        max-width: 361px;
    }

    section.contact-block .section-divider-top {
        height: 38px;
    }

    section.contact-block .contact-container .form-block .cc-header .cc-text .cc-title p,
    section.contact-block .contact-container .form-block .cc-header .cc-text .cc-title p span {
        font-size: 22px;
    }

    section.contact-block .contact-container .form-block .cc-header .cc-text .cc-subtitle p {
        font-size: 16px;
    }

    section.contact-block .contact-container .form-block .cc-actions {
        flex-direction: column;
        padding: 0 10px;
    }

    section.contact-block .contact-container .form-block .cc-action-btn {
        width: 100%;
        padding: 18px 16px;
    }
}

@media screen and (max-width: 380px) {
    section.contact-block .contact-container {
        max-width: 340px;
    }
}
