.approach {
    display: flex;
    flex-direction: column;
    height: 1000px;
    width: 100%;
    max-width: 1400px;
    background-color: #FAF6F4;
}

.approach .approach-title {
    height: auto;
    padding: 30px;
}

.approach .approach-title h1 {
    font-size: 35px;
    font-family: 'aller-bd', -apple-system, system-ui;
    color: #640b19;
}

.approach .approach-title p {
    font-size: 25px;
    font-family: 'aller-rg', -apple-system, system-ui;
    color: #640b19;
}

.approach .approach-content {
    display: flex;
    flex-direction: row;
    height: 70%;
    align-items: center;
    justify-content: center;
}

.approach .approach-content .approach-info-card {
    height: fit-content;
    min-width: 400px;
    max-width: 550px;
    background-color: #640b19;
    margin-right: 10px;
    border-radius: 50px;
}

.approach .approach-content .approach-info-card .approach-title-container {
    
    display: flex;
    flex-direction: row;
    height: 20%;
    align-items: center;
    justify-content: left;
    padding: 20px;
}

.approach .approach-content .approach-info-card .approach-title-container h1 {
    font-family: 'aller-bd';
    font-size: 35px;
    color: #FAF6F4;
}

.approach .approach-content .approach-info-card .approach-content-container {
    padding: 20px;
    display: flex;
    flex-direction: column;
    height: 80%;
}

.approach .approach-content .approach-info-card .approach-content-container p {
    margin: 0;
    font-family: 'aller-lt';
    color: #FAF6F4;
    font-size: large;
    font-weight: 600;
}

.approach .approach-content .approach-info-card .approach-content-container b {
    font-size: larger;
    font-family: 'aller-bd';
}

.approach .approach-content .approach-photo-card {
    height: 80%;
    margin-left: 10px;
}

.approach .approach-content .approach-photo-card img {
    width: 100%;
    height: 100%;
    border-radius: 50px;
    object-fit: cover;
    object-position: top;
}


@media only screen and (orientation: portrait) {
    .approach {
        height: auto;
    }

    .approach .approach-content {
        flex-direction: column;
    }

    .approach .approach-content .approach-info-card {
        min-width: unset;
        max-width: unset;
        height: auto;
        margin: 10px;
        border-radius: 20px;
    }


    .approach .approach-content .approach-photo-card img {
        border-radius: 20px;    
    }

    .approach .approach-content .approach-photo-card {
        margin: unset;
        padding: 10px;
        height: 50vh;
        width: 100%;
    }
}