.banner .wrapper {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.facial-main {
    position: relative;
}

section.facial-catalog {
    height: 140px;
    background-color: white;
    position: sticky;
    top: 50px;
    left: 0;
    width: 100%;
    z-index: 300;
}

section.facial-catalog .wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.catalog-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1em 2em;
    cursor: pointer;
}

.catalog-item:hover {
    background-color: rgba(227, 7, 30, .05);
}

.catalog-icon {
    margin-bottom: 16px;
    flex: 0 0 54px;
    display: flex;
    align-items: center;
    justify-content: center;
}

section.facial-section {
    min-height: 500px;
    display: flex;
    flex-direction: column;
    padding-top: 45px;
    padding-bottom: 45px;
}

section.facial-section table {
    width: 100%;
}

section.facial-section tr {
    background-color: #fafafb;
}

section.facial-section tr:nth-of-type(2n) {
    background-color: #fcfcf9;
}

section.facial-section tr:nth-of-type(2n) td:nth-of-type(2n -1) {
    background-color: rgba(255, 255, 255, .8)
}

section.facial-section tr:nth-of-type(2n-1) td:nth-of-type(2n) {
    background-color: rgba(0, 0, 0, .01)
}

section.facial-section td {
    padding: 12px;
}

section.facial-section table p {
    margin: 0;
}

section.facial-section:nth-of-type(2n - 1) {
    background-color: #eeeeee;
}

section.facial-section .wrapper {
    display: flex;
    height: 100%;
    flex: 1;
    align-items: center;
    justify-content: space-between;
}

section.facial-section:nth-of-type(2n) .wrapper {
    flex-direction: row-reverse;
}

section.facial-section .intro {
    display: flex;
    margin-right: 90px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start
}

section.facial-section.no-img .intro {
    margin-right: 0;
}

section.facial-section:nth-of-type(2n) .intro {
    margin-right: 0;
    margin-left: 90px;
    align-items: flex-end;
}

section.facial-section .section-img {
    flex: 0 0 480px;
    position: relative;
    height: 270px;
    overflow: hidden;
}

section.facial-section .video {
    cursor: pointer;
}

.section-img audio {
    width: 100%;
    height: 40px;
    position: absolute;
    bottom: 0;
    left: 0;
}

audio::-webkit-media-controls-enclosure {
    border-radius: 0;
}

section.facial-section .section-img img {
    transition: .4s;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

section.facial-section .video img {
    filter: brightness(.5);
}

section.facial-section .section-img.video::after {
    content: "";
    position: absolute;
    transition: .4s;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    width: 76px;
    height: 76px;
    border: 2px solid #e5071e;
    border-radius: 50%;
    background: url("../images/play_triangle.png") calc(50% + 3px) center no-repeat rgba(0, 0, 0, .5);
}

section.facial-section .video:hover img {
    transform: scale(1.1);
    filter: brightness(.6);
}

section.facial-section .video:hover::after {
    background-color: rgba(0, 0, 0, .6);
}

#facial-video {}

.intro .title {
    font-size: 26px;
    margin-top: 30px;
    margin-bottom: 15px;
}

.intro .title {
    margin-bottom: 28px;
}

.intro .desc {
    line-height: 30px;
}

.video-layer {
    position: fixed;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, .75);
    top: 0;
    left: 0;
    cursor: pointer;
    z-index: 900;
    display: flex;
    justify-content: center;
    align-items: center;
    visibility: hidden;
    transition: .5s;
    opacity: 0;
}

.video-layer.active {
    visibility: visible;
    opacity: 1;
}

.video-js .vjs-big-play-button {
    bottom: 0;
    right: 0;
    margin: auto;
}


/* @media(max-width: 1440px){
    .banner{
        height: 540px;
    }
} */

@media(max-width: 1280px) {
    /*     .banner{
        height: 480px;
    } */
    section.facial-section .section-img {
        height: 240px;
        flex: 0 0 420px;
    }
    section.facial-section .intro {
        margin-right: 40px;
    }
    section.facial-section:nth-of-type(2n) .intro {
        margin-left: 40px;
    }
    section.facial-section {
        height: auto;
        padding: 40px 0;
    }
}

@media(max-width: 960px) {
    section.facial-section .section-img {
        height: 210px;
        flex: 0 0 360px;
    }
}

@media(max-width: 800px) {
    .facial-section .wrapper,
    section.facial-section:nth-of-type(2n) .wrapper {
        flex-direction: column;
    }
    section.facial-section .section-img {
        flex: 0 0 240px;
        width: 100%;
        max-width: 450px;
        height: 240px;
    }
    section.facial-section .intro,
    section.facial-section:nth-of-type(2n) .intro {
        margin-left: 0;
        margin-right: 0;
        margin-bottom: 40px;
        width: 100%;
        max-width: 450px;
        align-items: center;
        text-align: center;
    }
}

@media(max-width: 640px) {
    .facial-catalog {
        height: auto;
    }
    .facial-catalog .wrapper {
        padding-top: 2em;
    }
    section.facial-section .section-img {
        /* flex: 0 0 200px; */
    }
    .catalog-item {
        flex: 1;
        padding: 1em 0;
    }
    .catalog-icon {
        flex: 0 0 32px;
        margin-bottom: 12px;
    }
    .catalog-icon img {
        max-height: 32px;
    }
}