
 .contact-section {
    width: 100%;
    display: flex;
    justify-content: center;
    position: relative;
    background-color: #171E1B;
    border-top: 1px solid #FFFFFF1A;
    /* min-height: 568px; */
 }

 @media (max-width: 1000px) {
    .contact-section {
        flex-direction: column-reverse;
    }
 }

.contact-section-container {
    max-width: 1217px;
    width: 100%;
    display: flex;
    flex-direction: row;
}

@media (max-width: 1220px) {
    .contact-section-container {
        max-width: 100%;
        width: 100%;
        padding: 25px;
    }
}

@media (max-width: 1000px) {
    .contact-section-container {
        align-items: center;
        justify-content: center;
    }
}

@media (max-width: 500px) {
    .contact-section-container {
        margin-top: 78px;
    }
}

.contact-section-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    z-index: 1;

    .contact-section-title {
        font-size: 36px;
        font-weight: 700;
        line-height: 44px;
        color: #fff;
        max-width: 535px;

        mark {
            background: linear-gradient(180deg, #16FF4A 0%, #16FF4A 100%);
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
    }

    @media (max-width: 1000px) {
        .contact-section-title {
            font-size: 24px;
            line-height: 32px;
            max-width: 100%;
            text-align: center;
        }
    }

    .button-contact-section {
        background-color: #16FF4A;
        display: flex;
        align-items: center;
        gap: 10px;
        text-decoration: none;
        color: #fff;
        font-size: 16px;
        font-weight: 500;
        line-height: 24px;
        padding: 16px 42px;
        transition: 0.3s ease;
        cursor: pointer;
        border-radius: 16px;
        color: #000;
        margin-top: 48px;
        transition: all 0.3s ease;
    }

    @media (max-width: 1000px) {
        .button-contact-section {
           align-self: center;
           margin-top: 34px;
        }
    }

    .button-contact-section:hover {
        background: #11912d;    
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
        color: #fff;

        img {
            filter: brightness(0) invert(1);
        }
    }
}

.contact-section-image {
    position: absolute;
    right: 0;
    top: -50px;

    img {
       
    }
}

@media (max-width: 1450px) {
    .contact-section-image {
        right: -150px;
    }
}

.contact-section-image-mobile {
    display: none;
    max-width: 100%;
    width: 100%;

    img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

@media (max-width: 1000px) {

    .contact-section-image {
        display: none;
    }

    .contact-section-image-mobile {
        display: block;
    }

    .contact-section-image {
        position: relative;
        right: 0;
        top: 0;
        max-width: 100%;
        width: 100%;
        object-fit: scale-down;
    }
}