﻿canvas {
    display: none !important;
}

.MobileApps {
    display: flex;
    flex-wrap: wrap;
}

.AppContainer {
    flex: 50%;
    height: 430px;
    position: relative;
}

.App {
    background: #eee;
    height: 410px;
    border-radius: 8px;
    margin: 10px;
    display: flex;
    flex-direction: column;
}

.Title {
    height: 100px;
    display: table;
}

.Title img {
    background: #fff;
    height: 80px;
    width: 80px;
    padding: 10px;
    border-radius: 25px;
    margin: 10px;
    box-shadow: 1px 1px 3px #aaa;
    display: table-cell;
}

.Title h3 {
    font-family: 'AlmaraiBold';
    font-size: 18px;
    display: table-cell;
    vertical-align: middle;
    color: #1E6E48;
}

.Description {
    height: 150px;
    padding: 15px;
    font-size: 14px;
    font-family: 'AlmaraiRegular';
    line-height: 1.7;
}

.Download {
    height: 130px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
}

.Download div {
    flex: 50%;
}

.Stores {
    display: flex;
    flex-direction: column;
}

.Stores>a>img {
    width: 200px;
    height: 40px;
    background: #fff;
    margin: 5px;
    object-fit: cover;
    padding: 0px 10px;
    border-radius: 25px;
}

.app-qrcode img {
    position: relative;
    float: left;
    margin: 10px auto 0 10px;
    padding: 5px;
    background: #fff;
}

@media only screen and (max-width:991px) {
    .AppContainer {
        flex: 100%;
    }
}

@media only screen and (max-width:499px) {
    .AppContainer {
        height: 480px;
    }
    .App {
        height: 460px;
    }
    .Description {
        height: 200px;
    }
    .Stores {
        align-items: center;
    }
    .app-qrcode {
        display: none;
    }
}

@media only screen and (max-width:350px) {
    .AppContainer {
        height: 530px;
    }
    .App {
        height: 510px;
    }
    .Description {
        height: 250px;
    }
}