#text-category .category-item,
#text-category-video-container {
    position: relative;
}
#text-category .category-item {
    margin-bottom: 20px;
}
#text-category-video-container #controls {
    position: absolute;
    left: 5%;
    bottom: 5%;
    z-index: 1000;
}

#text-category-video-container #controls .play, 
#text-category-video-container #controls .pause, 
#text-category-video-container #controls .mute, 
#text-category-video-container #controls .unmute {
    font-size: 0px;
    background-color: transparent;
    border: none;
    transition: all 0.3s linear;
}

#text-category-video-container .play:hover,
#text-category-video-container .pause:hover,
#text-category-video-container .mute:hover,
#text-category-video-container .unmute:hover {
  outline: none;
  border: none;
}

#text-category-video-container .play:focus,
#text-category-video-container .pause:focus,
#text-category-video-container .mute:focus,
#text-category-video-container .unmute:focus {
  outline: none;
}

#text-category-video-container #controls .play:before, 
#text-category-video-container #controls .pause:before, 
#text-category-video-container #controls .mute:before, 
#text-category-video-container #controls .unmute:before {
    font-family: 'Material Icons';
    color: #fff;
    font-size: calc(25px + (35 - 25) * ((100vw - 320px) / (1880 - 320)));
    transition: all 0.3s linear;
}

#text-category-video-container .play:before {
    content: '\e037';
}
  
#text-category-video-container .pause:before {
    content: '\e034';
}
  
#text-category-video-container .mute:before {
    content: '\e04e';
}
  
#text-category-video-container .unmute:before {
    content: '\e04f';
}

#text-category .text-category-slider li {
    position: relative;
}

#text-category .horizontal-dots {
    position: absolute;
    bottom: 30px;
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
}

#text-category .horizontal-dots li {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    padding: 0;
}

#text-category .horizontal-dots li button {
    font-size: 0;
    line-height: 0;
    display: block;
    width: 10px;
    height: 10px;
    padding: 5px;
    cursor: pointer;
    color: transparent;
    border: 0;
    outline: none;
    background: rgba(0, 0, 0, .50);
    border-radius: 50%;
}

#text-category .horizontal-dots li.slick-active button {
    background: rgba(0, 0, 0, 1);
}

#text-category .slick-prev:before, 
#text-category .slick-next:before {
    color: #000;
}

#text-category .row {
    display: flex;
    flex-wrap: wrap;
    padding: 0 10px;
}

#text-category {
    outline: none;
}

#text-category .category-item img,
#text-category .category-item video {
    max-width: 100%;
    width: 100%;
}

#text-category .text-category-infomation {
    position: absolute;
    left: 4%;
    top: 50%;
    transform: translateY(-50%);
    max-width: 27%;
    text-align: left;
}

#text-category .text-category-infomation .text-category-content .category-name {
    font-size: 32px;
    line-height: 48px;
    color: #333333;
    font-weight: 400;
    margin-bottom: 20px;
}

#text-category .text-category-infomation .text-category-content p {
    line-height: 27px;
    color: #333;
    font-weight: normal;
    font-size: 18px;
    margin: 0;
}
#text-category .text-category-infomation .text-category-content p span {
    color: #79a751;
}
#text-category .text-category-infomation .text-category-content h4 b {
    font-weight: 600;
}

#text-category .text-category-infomation .text-category-content h4 {
    font-size: 18px;
    line-height: 27px;
    font-weight: 300;
    color: #333;
    margin-bottom: 27px;
}


@media (min-width: 768px) and (max-width: 1880px) {
    #text-category .text-category-infomation .text-category-content .category-name {
        font-size: calc(16px + (32 - 16) * ((100vw - 768px) / (1880 - 768)));
        margin-bottom: calc(0px + (20 - 0) * ((100vw - 768px) / (1880 - 768)));
        line-height: calc(25px + (48 - 25) * ((100vw - 768px) / (1880 - 768)));
    }
    #text-category .text-category-infomation .text-category-content p {
        font-size: calc(11px + (18 - 11) * ((100vw - 768px) / (1880 - 768)));
        line-height: calc(15px + (27 - 15) * ((100vw - 768px) / (1880 - 768)));
    }
    #text-category .text-category-infomation .text-category-content h4 {
        font-size: calc(11px + (18 - 11) * ((100vw - 768px) / (1880 - 768)));
        margin-bottom: calc(0px + (27 - 0) * ((100vw - 768px) / (1880 - 768)));
        line-height: calc(17px + (27 - 17) * ((100vw - 768px) / (1880 - 768)));
    }
    #text-category .text-category-infomation {
        max-width: calc(250px + (460 - 250) * ((100vw - 768px) / (1880 - 768)));
    }
}
@media (max-width: 576px) {
    #text-category,
    #text-category .text-category-infomation .text-category-content h4 {
        display: none;
    }
}
@media (min-width: 320px) and (max-width: 767px) {
    #text-category .category-item {
        margin-top: 15px;
    }
    #text-category .text-category-infomation {
        right: 1%;
    }
    #text-category .text-category-infomation .text-category-content .category-name {
        font-size: calc(12px + (20 - 12) * ((100vw - 320px) / (768 - 320)));
        margin-bottom: calc(4px + (6 - 4) * ((100vw - 320px) / (768 - 320)));
        line-height: 100%;
    }
    #text-category .text-category-infomation .text-category-content p {
        font-size: calc(9px + (13 - 9) * ((100vw - 320px) / (768 - 320)));
        line-height: 100%;
    }
    #text-category .text-category-infomation .text-category-content h4 {
        font-size: calc(9px + (13 - 9) * ((100vw - 320px) / (768 - 320)));
        margin-bottom: calc(0px + (6 - 0) * ((100vw - 320px) / (768 - 320)));
        line-height: 110%;
    }
    #text-category .text-category-infomation {
        max-width: calc(100px + (280 - 100) * ((100vw - 320px) / (768 - 320)));
    }
}