.corporate{
    position: relative;
    width: 100%;
}
.corporate .image{
    position: relative;
    width: 100%;
    border-radius: .5rem;
    height: 15rem;
    box-shadow: var(--box-shadow);
    overflow: hidden;
    z-index: 0;
}
.corporate .image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(85%);
    z-index: 0;
}
.corporate .text{
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
    top:0;
    left: 0;
}
.corporate .text h2{
    color:transparent;
    text-shadow: none;
    -webkit-text-stroke: 1px #fff;
    font-weight: 500;
    font-size: 3rem;
    letter-spacing: 2rem;
    text-transform: uppercase;
}
.corporate .links{
    width: 100%;
    text-align: center;
}
.corporate .links a{
    margin: 0 .5rem;
    padding: .7rem 1.2rem;
    color: var(--text-color);
    background: #fff;
    box-shadow: var(--box-shadow);
    border-radius: .5rem;
    transition: all .2s;
}
.corporate .links a:hover,
.corporate .links a.active{
    background: #667eea;
    color:#fff;
    text-decoration: none;
}
.corporate .explain p{
    color:var(--text-color);
    font-size: var(--normal-font-size);
}
@media screen and (max-width: 768px){
    .corporate .text h2 {
        font-size: 2rem;
        letter-spacing: 1.2rem;
    }
}
@media screen and (max-width: 768px){
    .corporate .text h2 {
        font-size: 1.5rem;
        letter-spacing: .8rem;
    }
    .corporate .image{
        height: 10rem;
    }
}
