.story-blue-sec {
    display: flex;
    flex-direction: column;
    background-color: var(--blue);
    justify-content: space-between;
    align-items: center;
    text-align: center;
    padding: 40px;
}

.story-blue-sec img {
    display: block;
    width: 40%;
    margin-left: auto;
    margin-right: auto;
}

.story-blue-sec p {
    margin-top: 40px;
    margin-left: 80px;
    margin-right: 80px;
}

.story-sec {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    color: black;
    text-align: justify;
    padding-left: 10vw;
    padding-right: 10vw;
}

.img-sec img {
    display: block;
    margin-top: 40px;
    margin-bottom: 40px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}

.p-sec p {
    margin-top: 80px;
    margin-bottom: 60px;
}

#cv-sec {
    background-color: #e7e7e7;
    display: flex;
    padding: 40px;
    flex-direction: column;
    justify-content: center;
    align-items: center;

}

#cv-sec h3 {
    color: var(--blue);
    margin-top: 20px;
    margin-bottom: 20px;
}

#cv-btn {
    border-style: none;
    background-color: #ff9200;
    padding: 20px 40px 20px 40px;
    text-decoration: none;
    color: white;
    font-weight: bolder;
    text-transform: uppercase;
    margin-top: 20px;
    margin-bottom: 20px;
}

#cv-btn:hover {}

@media screen and (min-width: 920px) {
    .story-blue-sec {
        flex-direction: row;
        padding-left: 20vw;
        padding-right: 20vw;
    }

    .story-sec {
        flex-direction: row;
    }

    .p-sec {
        width: 180%;
    }

    .p-sec p {
        margin-left: 40px;
    }

    #cv-sec {
        flex-direction: row;
        justify-content: space-evenly;
        align-items: center;
    }
}