main {
    min-height: 830px;
    background-color: #efeffa;
    padding-bottom: 64px;
}

section {
    margin: 0 auto 0;
    width: 726px;
}

.main_section_header {
    display: flex;
    justify-content: center;
    padding-top: 100px;
    padding-bottom: 40px;
    font-size: 36px;
    font-weight: 600;
}

.main_section_header .logo {
    width: 20px;
    height: 20px;
    min-width: 20px;
    background-color: #335384;
    margin-right: 10px;
}

.header_paragraph {
    font-size: 16px;
    font-weight: 300;
    text-align: center;
    line-height: 26px;
}

.section_header {
    margin-top: 80px;
}

.section_header span {
    font-size: 26px;
    font-weight: 600;
    flex: 1;
}

.project {
    display: flex;
    background-color: #fbfbfb;    
    margin-top: 40px;
    box-shadow: -10px 10px 24px 0px rgba(138,131,124,0.23);    
    min-height: 404px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.project:hover {
    transform: translateY(-4px);
    box-shadow: -15px 15px 24px 0px rgba(108,101,94,0.23);    
}

.project a {
    outline: none;
    text-decoration: none;
    color: inherit;
    display: flex;
}

.project .col_left {
    display: flex;
    flex-direction: column;
    width: 413px;
    padding-top: 20px;
    padding-bottom: 20px;
}

.project .col_left .project_header {
    display: flex;
}

.project .col_left .project_header .logo {
    background-color: #335384;
    width: 10px;
}

.project .col_left .project_header .project_info {
    display: flex;
    flex-direction: column;
    padding-left: 20px;
}

.project .col_left .project_header .project_info .name {
    font-size: 20px;
    font-weight: 600;
    color: #335384;
}

.project .col_left .project_header .project_info .role {
    font-weight: 400;
    margin-top: 4px;
}

.project .col_left .project_description {
    padding-top: 20px;
    padding-right: 30px;
    padding-left: 30px;
    font-weight: 300;
    line-height: 24px;
}


.project .col_left .project_links {
    margin-top: 20px;
    padding-right: 30px;
    padding-left: 30px;
    height: 50px;
    display: flex;
}

.project .col_left .project_links button {
    display: block;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
}

.project .col_left .project_links button img {
    height: 40px;
}

.project .col_left .project_links button:first-child img {
    margin-right: 30px;
}

.project .col_right {    
    background-color: aqua;
    width: 313px;
}

.project .col_right .center_cropped {
    max-width: 313px;
    height: 100%;
    background-position: center center;
    background-repeat: no-repeat;
}

@media (max-width: 600px) {
    main {
        padding-left: 16px;
        padding-right: 16px;
    }

    section {
        width: 100%;
    }

    .main_section_header {
        padding-top: 40px;
        padding-bottom: 22px;
        font-size: 32px;
    }
 
    .header_paragraph {
        padding-top: 18px;
        padding-bottom: 0px;
    }

    .section_header {
        margin-top: 60px;
    }

    .project {
        flex-direction: column;
        transition: initial;
    }

    .project:hover {
        transform: initial;
         box-shadow: -10px 10px 24px 0px rgba(138,131,124,0.23);  
    }

    .project a {
        flex-direction: column;
    }

    .project .col_left {
        width: 100%;
    }

    .project .col_left .project_links {
        justify-content: center;
    }

    .project .col_left .project_header .project_info .name {
        font-size: 19px;
    }    

    .project .col_left .project_header .project_info .name::after {
        content: '  ›';
        font-size: 22px;
    }

    .project .col_left .project_header .project_info {
        padding-left: 14px;
        padding-right: 24px;
    }

    .project .col_left .project_description { 
        padding-left: 24px;
        padding-right: 24px;
    }

    .project .col_right {
        width: 100%;
        height: 200px;
    }

    .project .col_right .center_cropped {
        width: 100%;
        max-width: initial;
    }
}