/*--------------------------------------------------------------
Homepage Layout Left
--------------------------------------------------------------*/

.xm-left-layout {
    position: relative;
    display: flex;
    width: 100%;
    height: fit-content;
    overflow: hidden;
}

.xm-left-layout .xm-left-img {
    width: 50%;
    flex-direction: row;
    justify-content: flex-end;
    text-align: right;
}

.xm-left-layout .xm-left-img img {
    width: 100%;
    height: 100%;
}

.xm-left-layout .xm-text {
    display: flex;
    position: relative;
    width: 50%;
    flex-direction: row;
    justify-content: flex-start;
    text-align: left;
    padding: 20px;
    align-items: center;
    justify-content: center;
}

.xm-left-layout .xm-left-title {
    display: block;
    width: 100%;
    flex-shrink: 0;
    flex-grow: 1;
    padding: 10px 0;
    font-size: 2vw;
    font-weight: 900;
}

.xm-left-layout .xm-left-description {
    display: block;
    flex-shrink: 0;
    width: 100%;
    flex-grow: 1;
    padding: 10px 0 20px;
    font-size: 1.1em;
    line-height: 1.6em;
    font-weight: 500;
}

.xm-left-layout .xm-position {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 10px;
    max-width: 60%;
}

.xm-left-layout a {
    text-decoration: none;
}

.xm-left-layout .button {
    text-align: center;
    width: fit-content;
    font-size: 18px;
    font-weight: 700;
    padding: 8px 12px;
}

.xm-left-arrow {
    position: absolute;
    z-index: 9;
    width: 12vw;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

@media screen and (max-width: 1100px) {
    .xm-left-arrow {
        width: 70px;
    }
    .xm-left-layout .xm-left-description {
        display: none;
    }
    .xm-left-layout .button {
        padding: 6px 10px;
        font-size: 11px;
    }
}