.text-left-part {
    margin-right: 70px;
}

.text-right-part {
    margin-left: 70px;
}

.text-right-part h2, .text-left-part h2 {
    font-family: 'Roboto', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 44px;
    line-height: 60px;

    color: #3F3E3D;
}

.lage-call-to-action, .lage-call-to-action:hover {
    background: #6B4D40;
    font-family: 'Roboto', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 14px;
    line-height: 18px;
    text-transform: uppercase;
    padding: 14px 67px;
    color: #FFFFFF;
    display: inline-block;
    text-decoration: none;
}

.border-left {
    border-left: 1px solid #C4DEF3;
}

.border-right {
    border-right: 1px solid #C4DEF3;
}

.lage-content {
    margin: 30px 0 15px 0;
}

.padding-x-50px {
    padding: 50px 0;
}


.animated {
    /* Add your animation styles here */
    animation: move-in 1.25s;
}

@keyframes move-in {
    from {
        opacity: 0;
        transform: translate3d(0,100%,0)
    }

    to {
        opacity: 1;
        transform: none
    }
}

.lage-content-image {
    object-fit: contain;
}

@media (max-width: 992px) {
    .border-left, .border-right {
        border: none;
        padding: 0;
    }

    .text-left-part, .text-right-part {
        margin: 0 0 30px 0;
    }

    .padding-x-50px {
        padding: 25px 0;
    }
}

@media (max-width: 576px) {
    .text-right-part h2, .text-left-part h2 {
        font-size: 30px;
        line-height: 7px;
    }
}