.requests_section{

}

.requests_section .part{
    background-clip: content-box;
    background-size: cover;
    background-position: center;
    padding: 0;
    margin: 0;
}

.requests_section .part .bg{
    height: 500px;
    padding: 10px;
    margin: 0;
    transition: all .5s;
    background: rgba(0, 0, 0, 0.4);
}

.requests_section .part .part_title{
    text-align: center;
    color: white;
    font-family: "League Gothic";
    text-transform: uppercase;
    font-size: 6em;
    margin-top: 60px;
}

.requests_section .part .part_text{
    text-align: center;
    color: white;
    font-family: "Oswald";
    margin-top: 30px;
    font-size: 2em;
}
.requests_section .part a.red{
    color: #ff8075;
}

.requests_section .part a.red:hover{
    color: #ff4c41;
}


@media (min-width: 1200px) {
    .requests_section{
        height: 500px;
    }

    .requests_section .part{
        transition: all .5s;
        width: 33.3%;
        float: left;
        overflow: hidden;
    }
    .requests_section .part .part_title{
        position: relative;
        transition: all .3s;
        margin-top: 200px;
    }

    .requests_section .part .part_text{
        font-size: 2em;
        transition: all .3s;
        margin-top: 30px;
        transform: scale(0);
    }
    .requests_section .part .bg{
        background: rgba(0, 0, 0, 0);
    }

    .requests_section:hover .part{
        width: 15%;
    }

    .requests_section .part:hover{
        width: 70%;
    }

    .requests_section .part:hover .bg{
        background: rgba(0, 0, 0, 0.4);
    }

    .requests_section .part:hover .part_title{
        margin-top: 60px;
    }

    .requests_section .part:hover .part_text{
        transform: scale(1);
        margin-top: 100px;
    }
}
