.scada {
    width: 100%;
    background: var(--white);
    margin-top: 18rem;
}

.scada__card {
    position: relative;
    min-height: 30rem;
    background-image: url('../../images/scada-bg.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 2rem 3rem;
}

.scada__title {
    font-size: 4rem;
    line-height: 1.55;
    font-weight: 500;
    color: var(--orange);
    margin-bottom: 0;
}

.scada__text {
    font-size: 2rem;
    line-height: 1.45;
    color: var(--white);
    max-width: 50rem;
    margin-bottom: 1.5rem;
}

.scada__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--orange);
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 500;
    border-radius: 6px;
    padding: 1.5rem 10rem;
    text-decoration: none;
    min-height: 3.4375rem;
    min-width: 28.75rem;
    transition: opacity 0.2s;
    align-self: flex-start;
    border: none;
    cursor: pointer;
}

.scada__btn:hover {
    opacity: 0.85;
}

@media(max-width: 1024px) {
    .scada__btn {
        padding: 1.5rem 0;
    }
}