body {
    background-color: var(--color-white);
    overflow: hidden;
}

.media-container {
    padding: 195px 80px  96px;
    height: 100%;
    background: url('../../images/icon_profile_red.png') no-repeat center bottom / 100%;
}
.meida-left {
    float: left;
    width: 40%;
    font-size: 0;
    text-align: center;
}
.meida-left .box {
    display: inline-block;
}
.meida-left .box i {
    display: block;
    position: relative;
    width: 120px;
    height: 80px;
    color: var(--color-dark);
    font-size: 24px;
    text-align: center;
}
.meida-left .box i::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 100%;
    background: url('../../images/icon_arc_red.png') no-repeat 0 bottom / 120px;
    animation: ani-media-text .4s linear .5s forwards;
    overflow: hidden;
}

@keyframes ani-media-text {
    0% {
        width: 0%;
    }
    100% {
        width: 120px;
    }
}

.meida-right {
    float: right;
    width: 60%;
}
.meida-right p {
    line-height: 1.8;
    color: var(--color-dark);
    font-size: 16px;
    text-align: justify;
}
.media-list {
    margin-top: 160px;
}
.media-item {
    display: block;
    float: left;
    margin: 80px 80px 0 0;
    width: calc((100% - 320px) / 5);
    text-align: center;
}
.media-item:nth-child(-n+5) {
    margin-top: 0;
}
.media-item:nth-child(5n) {
    margin-right: 0;
}
.media-item .box {
    display: inline-block;
    font-size: 0;
    text-align: left;
}
.media-item .icon {
    position: relative;
    height: 120px;
}
.media-item .icon img {
    display: block;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}
.media-item .icon img.colour {
    display: none;
}
.media-item .name {
    margin-top: 20px;
}
.media-item .name i,
.media-item .name span {
    display: block;
    line-height: 1;
    font-size: 18px;
}
.media-item .name i {
    color: var(--theme-color);
}
.media-item .name span {
    margin-top: 10px;
    color: var(--theme-color);
}
.media-item:last-child .name i {
    color: var(--color-white);
}
.media-item:last-child .name span {
    margin-top: 10px;
    color: var(--color-white);
}
.media-item:hover .icon img {
    display: none;
}
.media-item:hover .icon img.colour {
    display: block;
}
.media-item:hover .name i {
    color: var(--color-dark);
}
.media-item:hover .name span {
    margin-top: 10px;
    color: var(--color-dark);
}