﻿body {
    align-items: center;
    background-color: #f4f4f4;
    margin: 0;
}

.LandingContainer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 20px;
    display: flex;
    flex-direction: column;
}


.ImgContainer img{
    width: 100%;
    height: auto;
    border-radius: 20px;
}

.ImgTextHorizontal {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
}

.ImgTextVertical {
    display: flex;
    flex-direction:column;
    justify-content: center;
    flex: 1;
    max-width: 55%;
    padding: 10px;
}

.Text {
    background: #cdcdcd21;
    color: #555555;
    border-radius: 20px;
    padding: 15px;
    margin-top: 10px;
    line-height: 1.6;
    direction: rtl;
    text-align: justify;
    text-align-last: right; 
}


.AdjustImg {
    flex: 1;
    max-width: 45%;
}

.AdjustImg img {
    width: 100%;
    height: auto;
    border-radius: 20px;
}

.gray-dashed-divider {
    height: 8px; 
    border: none;
    border-top: 8px dashed #6e6e6e47;
    margin: 20px 0;
}



@media (max-width: 768px) {
    .ShowAboveMd {
        display: none;
    }

    .ShowBelowMd {
        display: block;
    }

    .ImgTextHorizontal {
        display: flex;
        flex-direction: column;
    }

    .Reversing {
        display: flex;
        flex-direction: column-reverse;
    }

    .AdjustImg {
        max-width: 100%;
    }

    .ImgTextVertical {
        max-width: 100%
    }

    .Text {
        font-size: 18px;
    }
}

@media (min-width: 768px) {
    .ShowBelowMd {
        display: none;
    }

    .ShowAboveMd {
        display: block;
    }
}

