body {
    background-color: #EAEAEA;
    margin: 0;
    padding: 0;
    background-color: #0194dc;
}

body * {
    box-sizing: border-box;
    direction: rtl;
    font-family: 'IRANSansX-Regular', sans-serif;
}

.main-content {
    width: 100%;
    margin: 0;
    height: 100vh;
    background-color: #0194dc;
}

.content-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    padding: 30px;
}

.row {
    max-width: 1285px;
    display: flex;
    margin-right: auto;
    margin-left: auto;
    position: relative;
    flex-wrap: wrap;
}

.column {
    position: relative;
    min-height: 1px;
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: center;
}

.column-50 {
    flex: 0 0 50%;
}

.comingsoon-person {
    width: 100%;
    vertical-align: middle;
    display: inline-block;
    height: auto;
    max-width: 100%;
    border: none;
    border-radius: 0;
    box-shadow: none;
}

.heading-title {
    color: #FFFFFF;
    font-size: 32px;
    font-weight: 700;
    padding: 0;
    margin: 0;
    line-height: 1.5;
    margin-bottom: 20px;
}

.desc {
    color: #FFFFFF;
    font-weight: 400;
}

.brand-info-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.brand-logo {
    display: inline-block;
    margin: auto;
}

.brand-website {
    text-decoration: none;
    color: #fff;
}

.brand-phone {
    direction: ltr;
    text-decoration: none;
    color: #fff;
}

.link-wrapper {
    display: flex;
    align-items: center;
}

.link-wrapper svg {
    margin-left: 8px;
    fill: #fff;
}

@media screen and (max-width: 767px) {
    .column-50 {
        flex: 0 0 100%;
    }
    .heading-title {
        text-align: center;
    }
    .desc {
        text-align: center;
    }
}