
/*Skills Section*/

.skills {
    position: relative;
    margin-top: 50px;
}

.skills .skill-item {
    position: relative;
    margin-bottom: 32px;
}

.skills .skill-item:last-child {
    margin-bottom: 0px;
}

.skills .skill-item .skill-bar {
    position: relative;
    width: 100%;
    height: 10px;
    background-color: #eeeeee;
}

.skills .skill-item .skill-bar .bar-inner {
    position: relative;
    width: 100%;
    height: 10px;
    background: none;
}

.skills .skill-item .skill-bar .bar-inner .bar {
    position: absolute;
    left: 0px;
    top: 0px;
    height: 10px;
    width: 0px;
    -webkit-transition: all 2000ms ease;
    -ms-transition: all 2000ms ease;
    -o-transition: all 2000ms ease;
    -moz-transition: all 2000ms ease;
    transition: all 2000ms ease;
   background-image: repeating-linear-gradient(-65deg, #f9f8f8 0 1.25em, #e26703 1.25em 2.5em);
}

.skills .skill-item .skill-header {
    position: relative;
    margin-bottom: 15px;
}

.skills .skill-item .skill-header .skill-title {
    position: relative;
}

.skills .skill-item .skill-header .skill-title {
    float: left;
    color: #ffffff;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4em;
}

.skills .skill-item .skill-header .skill-percentage {
    float: right;
    color: #ffffff;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4em;
    opacity: 0.6;
}

.skill-section .video-column {
    position: relative;
}

.skill-section .video-column .inner-column {
    position: relative;
    padding-top: 150px;
}

.skill-section .video-column .inner-column .video-link-box {
    position: relative;
    float: right;
    text-align: center;
}


/* Play Box */

.video-link-box .play-box {
    position: relative;
    display: block;
    text-align: center;
    width: 80px;
    height: 80px;
    margin: 0 auto;
    transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

.video-link-box .play-box .icon {
    position: relative;
    width: 80px;
    height: 80px;
    z-index: 99;
    display: inline-block;
    color: #df6512;
    font-weight: 400;
    font-size: 20px;
    text-align: center;
    border-radius: 50%;
    padding-left: 4px;
    line-height: 80px;
    background-color: #ffffff;
    transition: all 900ms ease;
    -moz-transition: all 900ms ease;
    -webkit-transition: all 900ms ease;
    -ms-transition: all 900ms ease;
    -o-transition: all 900ms ease;
    -webkit-box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.15);
    -ms-box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.15);
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.15);
}

.video-link-box .play-box .icon-outer {
    position: relative;
    display: block;
    width: 80px;
    height: 80px;
    margin: 0 auto;
}

.video-link-box .play-box .icon-outer:before {
    content: '';
    position: absolute;
    left: -15px;
    top: -15px;
    width: 110px;
    height: 110px;
    background: rgba(255, 255, 255, 0.30);
    border-radius: 50%;
}

.video-link-box .play-box .icon:after {
    content: '';
    position: absolute;
    left: -5px;
    top: -5px;
    bottom: -5px;
    right: -5px;
    background: rgba(255, 255, 255, 0.30);
    border-radius: 50%;
}

.video-link-box .ripple,
.video-link-box .ripple:before,
.video-link-box .ripple:after {
    position: absolute;
    top: 50%;
    left: 50%;
    height: 70px;
    width: 70px;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, .6);
    -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, .6);
    -ms-box-shadow: 0 0 0 0 rgba(255, 255, 255, .6);
    -o-box-shadow: 0 0 0 0 rgba(255, 255, 255, .6);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, .6);
    -webkit-animation: ripple 3s infinite;
    -moz-animation: ripple 3s infinite;
    -ms-animation: ripple 3s infinite;
    -o-animation: ripple 3s infinite;
    animation: ripple 3s infinite;
}

.video-link-box .ripple:before {
    -webkit-animation-delay: .9s;
    -moz-animation-delay: .9s;
    -ms-animation-delay: .9s;
    -o-animation-delay: .9s;
    animation-delay: .9s;
    content: "";
    position: absolute;
}

.video-link-box .ripple:after {
    -webkit-animation-delay: .6s;
    -moz-animation-delay: .6s;
    -ms-animation-delay: .6s;
    -o-animation-delay: .6s;
    animation-delay: .6s;
    content: "";
    position: absolute;
}

@-webkit-keyframes ripple {
    70% {
        box-shadow: 0 0 0 70px rgba(255, 255, 255, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

@keyframes ripple {
    70% {
        box-shadow: 0 0 0 70px rgba(255, 255, 255, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

.video-link-box .video-title {
    position: relative;
    font-size: 14px;
    font-style: italic;
    color: #ffffff;
    display: block;
    margin-top: 25px;
}


/***

====================================================================
        Clients Section
====================================================================

***/