.installation-wrapper {
    background-color: var(--main-color);
    padding-top: 5rem;
    overflow: hidden;
    padding-bottom: 5rem;
}

.installation-wrapper .installation-wrapper-content {
    display: flex;
    gap: 0.625rem;
}

.installation-wrapper .installation-left {
    max-width: 32.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.installation-wrapper .installation-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 3.625rem;
    font-family: var(--font-family);
    color: #fff;
}

.installation-wrapper .installation-subtitle {
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1.75rem;
    font-family: var(--font-family);
    color: #fff;
}

.installation-wrapper .installation-button{
    margin-top: 2.5rem;
}

.installation-wrapper .installation-button a {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.625rem 1.375rem;
    border-radius: 6.25rem;
    background-color: var(--castanho);
    font-family: var(--font-family);
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.5rem;
    text-decoration: none;
    text-transform: uppercase;
    color: var(--main-color);

    width: max-content;
    transition: all 0.3s ease;
}

.installation-wrapper .installation-button a:hover {
    background-color: #FFF;
}

.installation-wrapper .installation-right{
    position: relative;
}

.installation-wrapper .installation-right::before {

    content: url(../images/Ilustra_with_semi.svg);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    position: relative;
    z-index: 1;
    max-width: 40rem;
    bottom: -0.625rem;
    
}


@media (max-width: 1160px) {

    .installation-wrapper {
        padding-top: 0;
    }

    .installation-wrapper .installation-wrapper-content {
        flex-direction: column;
        
    }

    .installation-wrapper .installation-right::before {
        content: url(../images/Ilustra_mobile.svg);
        max-width: 100%;
    }


    .installation-wrapper .installation-right::after {
        content: "";
        position: absolute;
        bottom: -68%;
        width: 170%;
        height: 150%;
        border-radius: 1000%;
        background: linear-gradient(139deg, #0C09E6 9.69%, #2A2970 72.31%);
        z-index: 0;
        display: flex;
        left: -24%;
    }

    .installation-wrapper .installation-right {
        padding-bottom: 6.25rem;
    }

    .installation-wrapper .installation-button {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .installation-wrapper .installation-wrapper-content {
        gap: 3.4375rem;
    }

    .installation-wrapper .installation-left {
        width: 100%;
        max-width: 100%;
    }

}