@charset "UTF-8";

.interviews .tabrow {
    text-align: center;
    list-style: none;
    margin: 0;
    padding: 0;
    line-height: 24px;
    position: relative;
}

.interviews .tabrow li {
    margin: 0 2px;
    padding: 15px 10px;
    border: 1px solid #f7f7f7;
    background: #fff;
    display: inline-block;
    position: relative;
    z-index: 0;
    cursor: pointer;
    width: 180px;
    height: 56px;
    color: #666;
}

.interviews .tabrow li.selected {
    background: #f8f8f8;
    color: #000;
    z-index: 2;
    border-color: #f0f0f0;
    border-bottom-color: #f8f8f8;
}

.interviews .tabrow:after {
    position: absolute;
    content: "";
    width: 100%;
    bottom: 0;
    left: 0;
    border-bottom: 1px solid #f0f0f0;
    z-index: 1;
}

.interviews .tabrow:before {
    z-index: 1;
}

.interviews .tabrow li i {
    margin-right: 8px;
}

.interviews .tabcontents {
    background-color: #f8f8f8;
    border-bottom: 1px solid #f0f0f0;
}

.interviews .tabcontent {
    display: none;
    padding: 48px 5vw;
}

.interviews .tabcontent.selected {
    display: block;
}

.interviews .row {
    display: flex;
    margin: 24px 0;
}

.interviews .col {
    width: calc(100% / 3);
    float: left;
}

.interviews .col .image {
    overflow: hidden;
    position: relative;
    margin: 0 auto;
    width: 90%;
    height: 26vw;
    background-color: #fff;
}

.interviews .col .image img {
    position: absolute;
    width: auto;
    height: auto;
    /* min-width: 100%;
    min-height: 100%; */
    left: 50%;
    top: 50%;
    -webkit-transform: translate3d(-50%, -50%, 0);
          transform: translate3d(-50%, -50%, 0);
}

.interviews .col .text {
    margin: 0 auto;
    width: 90%;
    text-align: left;
    background-color: #f9f9f9;
    padding: 12px;
    height: calc(100% - 26vw);
    position: relative;
    padding-bottom: 60px;
}

.interviews .col .text h3 {
    margin-bottom: 18px;
    word-break: break-all;
}

.interviews .col .text p {
    color: #777777;
}

.interviews .col .text a {
    color: #fff;
    background-color: #F4524D;
    font-size: 14px;
    padding: 14px 20px;
    border-radius: 5px;
    display: inline-block;
    margin-bottom: 0;
    text-align: center;
    vertical-align: middle;
    text-decoration: none;
    margin-top: 24px;
    position: absolute;
    bottom: 0;
}

.interviews .col .text a:hover {
    color: #f2f2f2;
    background-color: #f22d27;
}

@media (max-width: 1050px) {
    .interviews .row {
        display: block;
        margin: 0;
    }
    
    .interviews .col {
        width: 100%;
        float: none;
        margin: 24px 0;
    }
    
    .interviews .col .image {
        height: 50vw;
    }
}