/* .welcome-contact {
    --Welcome-Contact-Horisontal-Padding: var(--Side-Padding-Large);
    display: flex;
    padding: 120px var(--Welcome-Contact-Horisontal-Padding) 0;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    align-self: stretch;

    .welcome-contact-body {
        display: flex;
        padding: 69px 74px;
        justify-content: space-between;
        align-items: center;
        align-self: stretch;
        border-radius: 40px;
        flex-direction: row-reverse;

        &.violet {
            background-color: var(--Colors-Violet-500);
        }

        &.orange {
            background-color: var(--Colors-Red-Main);
        }

        .welcome-contact-content {
            display: flex;
            width: 566px;
            flex-direction: column;
            justify-content: center;
            align-items: flex-end;
            gap: 16px;
            align-self: stretch;
            color: var(--Colors-Text-Primary-Light);

            .welcome-contact-title {
                font-size: 32px;
                font-weight: 600;
                line-height: 44px; 
                align-self: stretch;
            }

            .welcome-contact-text {
                font-size: 16px;
                font-weight: 600;
                line-height: 24px; 
            }
        }
    }
    
    @media screen and (max-width: 1440px) {
        --Welcome-Contact-Horisontal-Padding: 80px;
    }

    @media screen and (max-width: 1120px) {
        --Welcome-Contact-Horisontal-Padding: 40px;

        .welcome-contact-body {
            gap: 40px;

            button {
                align-self: center;
            }
        }
    }

    @media screen and (max-width: 980px) {
        padding-top: 80px;

        .welcome-contact-body {
            flex-direction: column-reverse;

            .welcome-contact-content {
                text-align: center;
                align-items: center;
                width: auto;
                align-self: stretch;
            }
        }
    }

    @media  screen and (max-width: 768px) {
        --Welcome-Contact-Horisontal-Padding: 0;

        .welcome-contact-body {
            border-radius: 0;
        }
    }

    @media screen and (max-width: 580px) {
        .welcome-contact-body {
            padding: 69px 20px;

            button {
                align-self: stretch;
            }
        }
    }
} */

.welcome-contact {
    --Welcome-Contact-Horisontal-Padding: var(--Side-Padding-Large);
    display: flex;
    padding: 120px var(--Welcome-Contact-Horisontal-Padding) 0;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    align-self: stretch;
}
.welcome-contact .welcome-contact-body {
    display: flex;
    padding: 69px 74px;
    justify-content: space-between;
    align-items: center;
    align-self: stretch;
    border-radius: 40px;
    flex-direction: row-reverse;
}
.welcome-contact .welcome-contact-body.violet {
    background-color: var(--Colors-Violet-500);
}
.welcome-contact .welcome-contact-body.orange {
    background-color: var(--Colors-Red-Main);
}
.welcome-contact .welcome-contact-body .welcome-contact-content {
    display: flex;
    width: 566px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    gap: 16px;
    align-self: stretch;
    color: var(--Colors-Text-Primary-Light);
}
.welcome-contact .welcome-contact-body .welcome-contact-content .welcome-contact-title {
    font-size: 32px;
    font-weight: 600;
    line-height: 44px;
    align-self: stretch;
}
.welcome-contact .welcome-contact-body .welcome-contact-content .welcome-contact-text {
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
}
@media screen and (max-width: 1440px) {
    .welcome-contact {
        --Welcome-Contact-Horisontal-Padding: 80px;
   }
}
@media screen and (max-width: 1120px) {
    .welcome-contact {
        --Welcome-Contact-Horisontal-Padding: 40px;
   }
    .welcome-contact .welcome-contact-body {
        gap: 40px;
   }
    .welcome-contact .welcome-contact-body button {
        align-self: center;
   }
}
@media screen and (max-width: 980px) {
    .welcome-contact {
        padding-top: 80px;
   }
    .welcome-contact .welcome-contact-body {
        flex-direction: column-reverse;
   }
    .welcome-contact .welcome-contact-body .welcome-contact-content {
        text-align: center;
        align-items: center;
        width: auto;
        align-self: stretch;
   }
}
@media screen and (max-width: 768px) {
    .welcome-contact {
        --Welcome-Contact-Horisontal-Padding: 0;
   }
    .welcome-contact .welcome-contact-body {
        border-radius: 0;
   }
}
@media screen and (max-width: 580px) {
    .welcome-contact .welcome-contact-body {
        padding: 69px 20px;
   }
    .welcome-contact .welcome-contact-body button {
        align-self: stretch;
   }
}
