﻿.carreer-container {
    min-height: calc(100vh - 347px);
    align-content: flex-start;
}

.about-container {
    display: flex;
    flex-wrap: wrap;
    flex: 0 0 auto;
    width: 100%;
    margin: 0 auto;
    padding-top: 160px;
}

.page-title {
    display: flex;
    flex-wrap: wrap;
    flex: 0 0 auto;
    width: 80%;
    margin: 0 auto;
}

    .page-title h1 {
        width: 27%;
        border-bottom: 4px solid;
        border-image-slice: 1;
        border-image-source: linear-gradient(90deg, var(--color-rgba-white) 0%, var(--color-rgba-blue) 50%, var(--color-rgba-white) 100%);
        margin: 0 auto;
        text-align: center;
    }


    .page-title p {
        width: 100%;
        margin: 24px 0;
        text-align: center;
    }

    .page-title a {
        width: 100%;
        margin: 24px 0;
        text-align: center;
    }

    .page-title ul {
        margin: 0 auto;
    }

.about-image {
    display: flex;
    flex-wrap: wrap;
    flex: 0 0 auto;
    width: 100%;
    min-height: 40vh;
    max-height: 40vh;
    position: relative;
    margin-top: 34px;
}

    .about-image::before {
        content: ' ';
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        background-image: url(../images/ast-transport.jpg);
        background-size: cover;
        background-repeat: no-repeat;
        background-position: bottom;
        background-attachment: fixed;
    }

.about-cards {
    display: flex;
    flex-wrap: wrap;
    flex: 0 0 auto;
    position: relative;
    width: 80%;
    margin: 24px auto 0 auto;
}

    .about-cards .card {
        display: flex;
        flex-wrap: wrap;
        flex: 0 0 auto;
        position: relative;
        width: 50%;
        height: auto;
        padding: 14px;
        margin: 24px 0;
    }

        .about-cards .card .image {
            display: flex;
            flex-wrap: wrap;
            flex: 0 0 auto;
            position: relative;
            width: 80%;
            height: auto;
            margin: 0 auto;
        }

            .about-cards .card .image img {
                width: 100%;
                height: auto;
            }

        .about-cards .card .text-content {
            display: flex;
            flex-wrap: wrap;
            flex: 0 0 auto;
            position: relative;
            width: 80%;
            height: auto;
            min-height: 150px;
            margin: 0 auto;
            padding-top: 24px;
            background-color: var(--color-bright-white);
            text-align: center;
            place-content: start;
            align-content: start;
            border-bottom-left-radius: 6px;
            border-bottom-right-radius: 6px;
        }

            .about-cards .card .text-content h4, .about-cards .card .text-content p, .about-cards .card .text-content ul {
                width: 100%;
                margin: 0 auto;
                text-align: center;
            }

            .about-cards .card .text-content .seperator {
                width: 25%;
                min-height: 1px;
                margin: 6px auto;
                border-bottom: 2px solid var(--color-black);
            }

            .about-cards .card .text-content ul {
                list-style: none;
            }


/*#region MOBILE STYLES*/
@media (max-width: 767px) {
    .about-container {
        width: 100%;
    }

    .about-cards {
        width: 100%;
    }

        .about-cards .card {
            width: 100%;
            padding: 8px;
        }

    .page-title h1 {
        width: 95%;
    }
}
/*#endregion MOBILE STYLES*/
