/*
 *  1.0 Common
 */

.kc-off-notice {
    width: 100%;
    padding: 10px;
    text-align: left;
    background-color: #e9e385;
    color: #333;
    font-size: 14px
}

.kc-off-notice a {
    text-transform: capitalize;
    text-decoration: underline
}

.kc_clfw {
    width: 100% !important;
    clear: both !important;
    display: block !important;
    height: 0px !important;
    padding: 0px !important;
    margin: 0px !important
}

.kc-section {
    position: relative;
}

.kc-wrap-row {
    position: relative;
    z-index: 3;
}

.kc-row-container {
    width: 100%;
}

.kc-section[row-alignment] {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

.kc-section[row-alignment="top"] {
    align-items: flex-start;
    align-content: flex-start;
}

.kc-section[row-alignment="middle"] {
    align-items: center;
    align-content: center;
}

.kc-section[row-alignment="bottom"] {
    align-items: flex-end;
    align-content: flex-end;
}

.kc-section[data-crosscover] {
    position: relative;
}

.kc-section[data-crosscover] .images-background-wrap {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.kc-section[data-crosscover] .images-background-wrap::before {
    content: '';
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    z-index: 2;
}

.kc-section[data-backgroundvideo] {
    position: relative;
}

.kc-section[data-backgroundvideo] .video-background-wrap {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
}

.kc-section[data-backgroundvideo] .bv-video {
    background-size: cover;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.kc-section[data-backgroundvideo] .bv-video-wrap::before {
    content: '';
    position: absolute;
    width: 100%;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    z-index: 2;
}



/*
 *  2.0 Counter
 */
.kc-counter .counter-number,
.kc-counter .counter-unit {
    line-height: 1;
}


/*
 *  3.0 Video Player
 */
.kc-video-player  {
    display: inline-block;
}

.kc-video-player .play-icon {
    position: relative;
    display: inline-block;
    margin-top: 5px;
    width: 60px;
    height: 60px;
    text-align: center;
    background-color: #135bad;
    border-radius: 100%;
    transform: translateY(0px);
    transition: box-shadow 0.25s, border-color 0.25s ease, background-color 0.25s ease, transform 0.35s cubic-bezier(0.785, 0.135, 0.15, 0.85);
}

.kc-video-player:hover .play-icon {
    transform: translateY(-2px);
}

.kc-video-player .play-icon:before {
    position: absolute;
    left: 50%;
    top: 50%;
    margin-top: -3px;
    margin-left: -3px;
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-top: 4px solid transparent;
    border-left: 8px solid #ffffff;
    border-bottom: 4px solid transparent;
}

.kc-video-player a:hover .play-icon {
    background-color: #104c92;
}

.kc-video-player a:hover .play-icon:before {
    border-left-color: #ffffff;
}

.kc-video-player .left-text-wrap {
    padding-right: 20px;
}

.kc-video-player .right-text-wrap {
    padding-left: 20px;
}


