#about-header {
    background: url('media/about/banner.png') center center/cover;
    height: 40vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 14px;
}

#about-header h2,
#about-header p {
    color: white;
}

#about-main {
    display: flex;
    align-items: center;
}

#about-main p {
    line-height: 18px;
}

#about-main img {
    width: 50%;
    height: auto;
}

#about-main div {
    width: 40%;
    padding-left: 50px;
}

#about-main .brands {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding-left: 0;
}

#about-main h4 {
    font-size: 16px;
    margin-bottom: 3px;
}

#about-app {
    text-align: center;
}

#about-app a {
    text-decoration: none;
    color: #088178;
}

#about-app .video {
    width: 70%;
    height: 95%;
    margin: 30px auto 0 auto;
}

#about-app .video video {
    width: 100%;
    height: 100%;
    border-radius: 20px;
}

@media (max-width:590px) {
    #about-main {
        flex-direction: column;
    }

    #about-main img {
        width: 100%;
        margin-bottom: 20px;
    }
    #about-main div {
        width: 100%;
        padding-left: 0px;
        text-align: center;
    }
    #about-app .video {
        width: 100%;
    }
   
}