﻿/*********** Table of Contents ***********
    1.0: About-Apa
*****************************************/

.apa-about {
    width: 100%;
    height: auto;
    display: flex;
    overflow: hidden;
}

.apa-about .left-container {
    width: 30%;
    height: auto;
    transition: 0.5s ease;
}

    .apa-about .right-container {
        width: 70%;
        height: auto;
        transition: 0.5s ease;
        float: right;
    }

    .apa-about .card-container {
        background-size: cover;
        background-position: inherit;
        height: 400px;
    }

.right-container p {
    display: none;
}

.right-container .content-container {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
}

.details-container {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    color: white;
    background: #313131eb;
    line-height: 30px;
    overflow-y: scroll;
    max-height: 100%;
}

.right-container .more-button {
    bottom: 0;
    right: 25px;
    opacity: 0;
}

.apa-about .right-container .card {
    padding: 15px;
    border-radius: 0px;
    box-shadow: 0px 3px 6px #000000a3;
}

.apa-about .image-container {
    height: 200px;
    width: 200px;
    background-size: cover;
    margin-bottom: 20px;
    border-radius: 100%;
    -webkit-box-shadow: inset 0px 0px 17px 0px rgba(0,0,0,0.3);
    -moz-box-shadow: inset 0px 0px 17px 0px rgba(0,0,0,0.3);
    box-shadow: inset 0px 0px 17px 0px rgba(0,0,0,0.3);
}

@media screen and (max-width: 991px) {
    .apa-about {
        display: block !important;
    }

        .apa-about .left-container {
            width: 100% !important;
            height: auto;
            transition: 0.5s ease;
        }

        .apa-about .right-container {
            width: 100% !important;
            height: auto;
            transition: 0.5s ease;
            float: right;
        }
}
