section.services {
    width: 100%;
    height: 100%;
    direction: ltr;
    position: relative;
    text-align: left;
    background: transparent !important;
}
section.services div.quote {
    position: absolute;
    top: 300px;
    right: 12%;
    background: url("../img/sv.jpg") no-repeat bottom;
    width: 499px;
    height: 208px;
}
section.services div.circleWrapper {
    display: block;
    vertical-align: top;
    padding-left: 120px;
}
section.services div.circle {
    display: block;
    box-sizing: border-box;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    margin: 100px 0;
    position: relative;
    z-index: 10;
    padding: 10px;
    border: none !important;
    background: #454a58; /* Old browsers */
}
div.circle .innerCircle {
    display: block;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    position: absolute;
    right: 90px;
    top: 90px;
    z-index: 2;
    border: none !important;
    background: #454a58; /* Old browsers */
}
div.circle .innerCircleI {
    display: block;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    position: absolute;
    right: 110px;
    top: 110px;
    z-index: 3;
    background: #2d3039; /* Old browsers */
}
div.circle .innerCircleI::after {
    content: '';
    display: block;
    width: 174px;
    height: 174px;
    border-radius: 50%;
    position: absolute;
    right: 3px;
    top: 3px;
    z-index: 4;
    background: #2D3039; /* Old browsers */
}
div.circle .innerCircleII {
    display: block;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    position: absolute;
    right: 125px;
    top: 125px;
    z-index: 5;
    background: #454a58; /* Old browsers */
}
div.circle .innerCircleII::before {
    content: '';
    display: block;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    position: absolute;
    right: 10px;
    top: 10px;
    z-index: 6;
    background: #727f92; /* Old browsers */
    background: -moz-linear-gradient(-45deg, #13161c 0%, #727f92 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(-45deg, #13161c 0%, #727f92 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(135deg, #13161c 0%, #727f92 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#cccccc', endColorstr='#fafafa',GradientType=1 );
}
div.circle .middleCircle {
    display: block;
    width: 124px;
    height: 124px;
    border-radius: 50%;
    position: absolute;
    right: 138px;
    top: 138px;
    z-index: 5;
    background: #2D3039;
}
.pie {
    position: relative;
    z-index: 2;
    padding: 0;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    list-style: none;
    -webkit-backface-visibility: hidden;
    -webkit-transition: all linear .5s;
    transition: all linear .5s;
}
.slice {
    /* remove slash at the end of this line to see full slice contents */
    overflow: hidden; /**/
    position: absolute;
    top: 0; right: 0;
    /* add slash at end of this line to show the red outline of the slice *
    outline: solid 1px red; /**/
    width: 50%; height: 50%;
    transform-origin: 0% 100%;
}
.slice:first-child {
    transform: rotate(-36deg) /* angle between vertical axis (12 o'clock)
							and start of the slice;
							change it to see how the slice changes */
    skewY(-18deg); /* minus (90deg minus the central angle of the slice)
							see http://en.wikipedia.org/wiki/Central_angle
							change it to see how the slice changes */
    /* in this case, take the central angle of the slice to be 50deg
       90deg - 50deg = 40deg => skewY(-40deg) */
}
.slice:nth-child(2) {
    transform: rotate(36deg) skewY(-18deg);
}
.slice:nth-child(3) {
    transform: rotate(108deg) skewY(-18deg);
}
.slice:nth-child(4) {
    transform: rotate(180deg) skewY(-18deg);
}
.slice:last-child {
    transform: rotate(252deg) skewY(-18deg);
}
.slice-contents {
    position: absolute;
    left: -100%;
    width: 200%;
    height: 200%;
    border-radius: 50%;
    padding: 15px;
    color: #fafafa;
    font-size: 3em;
    text-align: center;
    transition: background-color .2s;
    overflow: hidden;
    cursor: pointer;
}
.slice-contents i:nth-of-type(2) {
    font-size: 3em;
    right: 30%;
    top: -10%;
    color: rgba(0,0,0,.1);
    position: absolute;
    z-index: -1;
}
.slice-contents i:nth-of-type(3) {
    font-size: 4em;
    right: 35%;
    top: -5%;
    color: rgba(255,255,255,.05);
    position: absolute;
    z-index: 1;
}
.slice:first-child .slice-contents {
    transform: skewY(18deg) /* unskew slice contents */
    rotate(36deg); /* rotate by half the central angle of the slice
							which is 50deg in this case */
    background: #039be5;
}
.slice:first-child .slice-contents:hover {
    background: #014567 !important;
}
.slice:nth-child(2) .slice-contents {
    transform: skewY(18deg) /* unskew slice contents */
    rotate(36deg); /* rotate by half the central angle of the slice
							which is 50deg in this case */
    background: #0097a7;
}
.slice:nth-child(2) .slice-contents:hover {
    background: #00414a !important;
}
.slice:nth-child(2) .slice-contents i {
    transform: rotate(-72deg);
}
.slice:nth-child(3) .slice-contents {
    transform: skewY(18deg) /* unskew slice contents */
    rotate(36deg); /* rotate by half the central angle of the slice
							which is 50deg in this case */
    background: #006064;
}
.slice:nth-child(3) .slice-contents:hover {
    background: #00292d !important;
}
.slice:nth-child(4) .slice-contents {
    transform: skewY(18deg) /* unskew slice contents */
    rotate(36deg); /* rotate by half the central angle of the slice
							which is 50deg in this case */
    background: #00bfa5;
}
.slice:nth-child(4) .slice-contents:hover {
    background: #006554 !important;
}
.slice:nth-child(4) .slice-contents i {
    transform: rotate(180deg);
}
.slice:nth-child(5) .slice-contents {
    transform: skewY(18deg) /* unskew slice contents */
    rotate(36deg); /* rotate by half the central angle of the slice
							which is 50deg in this case */
    background: #69f0ae;
}
.slice:nth-child(5) .slice-contents:hover {
    background: #27654a !important;
}
div.circle .abs {
    width: 100%;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 3;
    pointer-events: none;
    -webkit-transition: all linear .5s;
    transition: all linear .5s;
}
div.circle .rel {
    width: 100%;
    height: 100%;
    position: relative;
    right: 0;
    top: 0;
}
div.circle .blinker {
    display: block;
    width: 26px;
    height: 26px;
    position: absolute;
    border-radius: 13px;
    background: #454a58 !important;
    overflow: hidden;
}
@keyframes blink {
    0% {
        opacity: 1;
        transform: scale(1);
    }
    100% {
        opacity: 0;
        transform: scale(4);
    }
}
div.circle .blinker::before {
    content: '';
    display: block;
    width: 6px;
    height: 6px;
    position: absolute;
    border-radius: 3px;
    top: 9px;
    right: 10px;
    opacity: .8;
}
div.circle .blinker::after {
    content: '';
    display: block;
    width: 6px;
    height: 6px;
    position: absolute;
    border-radius: 3px;
    top: 9px;
    right: 10px;
}
div.circle .blinker.active::after {
    animation: blink 1s ease 0s infinite;
}
div.circle .blinker.web::before {
    background: #039be5;
}
div.circle .blinker.soft::before {
    background: #0097a7;
}
div.circle .blinker.hard::before {
    background: #006064;
}
div.circle .blinker.social::before {
    background: #00bfa5;
}
div.circle .blinker.bpm::before {
    background: #69f0ae;
}
div.circle .blinker.web::after {
    background: #039be5;
    animation-duration: .8s;
}
div.circle .blinker.soft::after {
    background: #0097a7;
    animation-duration: .9s;
}
div.circle .blinker.hard::after {
    background: #006064;
    animation-duration: .7s;
}
div.circle .blinker.social::after {
    background: #00bfa5;
    animation-duration: 1.1s;
}
div.circle .blinker.bpm::after {
    background: #69f0ae;
    animation-duration: 1.2s;
}
.blinker.web {
    top: 0;
    left: 187px;
    z-index: 10;
    background: #039be5;
}
.blinker.soft {
    top: 129px;
    left: 365px;
    z-index: 10;
    background: #0097a7;
}
.blinker.hard {
    top: 338px;
    left: 298px;
    z-index: 10;
    background: #006064;
}
.blinker.social {
    top: 338px;
    left: 77px;
    z-index: 10;
    background: #00bfa5;
}
.blinker.bpm {
    top: 129px;
    left: 9px;
    z-index: 10;
    background: #69f0ae;
}
div.circle .label {
    font: .8em 'IRBSans', Helvetica, sans-serif;
    display: block;
    height: 26px;
    line-height: 21px;
    position: absolute;
    border-radius: 13px;
    color: #fafafa;
}
.label.web {
    top: -35px;
    right: 157px;
    z-index: 10;
    background: #039be5;
}
.label.soft {
    top: 104px;
    right: -74px;
    z-index: 10;
    background: #0097a7;
}
.label.hard {
    top: 362px;
    right: -16px;
    z-index: 10;
    background: #006064;
}
.label.social {
    top: 362px;
    left: -19px;
    z-index: 10;
    background: #00bfa5;
}
.label.bpm {
    top: 104px;
    left: -116px;
    z-index: 10;
    background: #69f0ae;
    color: #454a58 !important;
}
div.servicesDetail {
    position: absolute;
    top: 50px;
    left: 350px;
    padding-top: 50px;
    z-index: 2;
    direction: ltr;
    white-space: nowrap;
    width: auto;
    overflow: hidden;
}
div.servicesDetail .sDetail {
    position: relative;
    display: inline-block;
    vertical-align: top;
    height: 400px;
    direction: rtl;
    padding: 50px 50px 30px 30px;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
    background: #004d40;
}
div.servicesDetail .leftB {
    position: relative;
    display: inline-block;
    vertical-align: top;
    width: 0;
    height: 0;
    border-top: 200px solid transparent;
    border-right: 250px solid #004d40;
    border-bottom: 200px solid transparent;
}
div.servicesDetail .detailWrapper {
    position: relative;
    width: 0;
    height: 400px;
    -webkit-transition: all linear .5s;
    transition: all linear .5s;
}
div.servicesDetail .detailWrapperAbs {
    position: absolute;
    top: 0;
    left: 0;
    display: none;
}
.sDetail.web {
    background: #039be5 !important;
}
.leftB.web {
    border-right-color: #039be5 !important;
}
.sDetail.soft {
    background: #0097a7 !important;
}
.leftB.soft {
    border-right-color: #0097a7 !important;
}
.sDetail.hard {
    background: #006064 !important;
}
.leftB.hard {
    border-right-color: #006064 !important;
}
.sDetail.social {
    background: #00bfa5 !important;
}
.leftB.social {
    border-right-color: #00bfa5 !important;
}
.sDetail.bpm {
    background: #69f0ae !important;
}
.leftB.bpm {
    border-right-color: #69f0ae !important;
}
div.sDetail .closeBtn {
    position: absolute;
    width: 30px;
    height: 30px;
    right: 10px;
    top: 10px;
    background: #2D3039;
    border-radius: 50%;
    text-align: center;
    cursor: pointer;
    color: #ddd;
}
div.sDetail .closeBtn:hover {
    color: #eee;
}
div.sDetail .closeBtn::after {
    content: '\f00d';
    font-family: 'FontAwesome', Helvetica, Arial, sans-serif;
    font-size: 1.25em;
    line-height: 30px;
}
div.sDetail h3 {
    font: 1em 'IRBSans', Helvetica, sans-serif;
    margin: 0;
    padding: 0 25px;
    position: absolute;
    right: 80px;
    top: -20px;
    color: #eee;
    background: #252831;
    height: 40px;
    border-radius: 20px;
    line-height: 40px;
}
div.sDetail div.paragraph {
    color: #eee;
    background: #3a3d46; /* Old browsers */
    background: -moz-linear-gradient(-45deg, #3a3d46 0%, #22252e 100%);
    background: -webkit-linear-gradient(-45deg, #3a3d46 0%, #22252e 100%);
    background: linear-gradient(135deg, #3a3d46 0%, #22252e 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fafafa', endColorstr='#cccccc',GradientType=1 );
    position: relative;
    border-radius: 5px;
    width: 100%;
    height: 100%;
    padding: 20px;
}
div.paragraph p {
    color: #eee;
    white-space: normal;
    text-align: justify;
    font: .8em "IRSans", Helvetica, Arial, sans-serif;
    line-height: 30px;
    width: 100%;
    height: 100%;
}
div.paragraph .cubeAbs {
    position: absolute;
    left: -50px;
    top: 160px;
}
.cubeWrapper {
    width: 150px;
    height: 150px;
    position: relative;
    perspective: 1000px;
}
@keyframes cubeOutRotate {
    0% {
        transform: translateZ( -75px ) rotateX( -20deg ) rotateY(0deg);
    }
    100% {
        transform: translateZ( -75px ) rotateX( -20deg ) rotateY(360deg);
    }
}
div.cubeOut {
    width: 100%;
    height: 100%;
    position: absolute;
    transform-style: preserve-3d;
    animation: cubeOutRotate 4s linear infinite;
}
div.cubeOut figure {
    display: block;
    position: absolute;
    width: 148px;
    height: 148px;
    outline: 1px solid transparent;
    background: rgba(255, 255, 255, .1);
    line-height: 148px;
    font-size: 100px;
    font-weight: bold;
    color: rgba(255, 255, 255, .3);
    text-align: center;
}
div.cubeOut .front  { transform: rotateY(   0deg ) translateZ( 75px ); }
div.cubeOut .back   { transform: rotateY( 180deg ) translateZ( 75px ); }
div.cubeOut .right  { transform: rotateY(  90deg ) translateZ( 75px ); }
div.cubeOut .left   { transform: rotateY( -90deg ) translateZ( 75px ); }
div.cubeOut .top    { transform: rotateX(  90deg ) translateZ( 75px ); }
div.cubeOut .bottom { transform: rotateX( -90deg ) translateZ( 75px ); }
@keyframes cubeInRotate {
    0% {
        transform: translateZ(-75px) translateX(-25px) translateY(25px) rotateX( -20deg ) rotateY(0deg);
    }
    100% {
        transform: translateZ(-75px) translateX(-25px) translateY(25px) rotateX( -20deg ) rotateY(360deg);
    }
}
div.cubeIn {
    width: 100px;
    height: 100px;
    position: absolute;
    transform-style: preserve-3d;
    animation: cubeInRotate 4s linear infinite;
}
div.cubeIn figure {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    display: block;
    position: absolute;
    width: 98px;
    height: 98px;
    outline: 1px solid transparent;
    line-height: 98px;
    font-size: 1em;
    font-weight: bold;
    color: #fafafa;
    text-align: center;
}
div.cubeIn .front  { transform: rotateY(   0deg ) translateZ( 50px ); }
div.cubeIn .back   { transform: rotateY( 180deg ) translateZ( 50px ); }
div.cubeIn .right  { transform: rotateY(  90deg ) translateZ( 50px ); }
div.cubeIn .left   { transform: rotateY( -90deg ) translateZ( 50px ); }
div.cubeIn .top    { transform: rotateX(  90deg ) translateZ( 50px ); }
div.cubeIn .bottom { transform: rotateX( -90deg ) translateZ( 50px ); }
div.cubeIn .left {
    padding-top: 20px;
    line-height: 25px;
}
.web div.cubeIn > * {
    -webkit-transition: all linear .2s;
    transition: all linear .2s;
    background: rgba(3, 155, 229, 0.6);
}
.web div.cubeIn > *:hover {
    background: rgba(3, 155, 229, 0.9);
}
.soft div.cubeIn > * {
    -webkit-transition: all linear .2s;
    transition: all linear .2s;
    background: rgba(0, 151, 167, 0.6);
}
.soft div.cubeIn > *:hover {
    background: rgba(0, 151, 167, 0.9);
}
.hard div.cubeIn > * {
    -webkit-transition: all linear .2s;
    transition: all linear .2s;
    background: rgba(0, 96, 100, 0.6);
}
.hard div.cubeIn > *:hover {
    background: rgba(0, 96, 100, 0.9);
}
.social div.cubeIn > * {
    -webkit-transition: all linear .2s;
    transition: all linear .2s;
    background: rgba(0, 191, 165, 0.6);
}
.social div.cubeIn > *:hover {
    background: rgba(0, 191, 165, 0.9);
}
.bpm div.cubeIn > * {
    -webkit-transition: all linear .2s;
    transition: all linear .2s;
    background: rgba(105, 240, 174, 0.6);
}
.bpm div.cubeIn > *:hover {
    background: rgba(105, 240, 174, 0.9);
}
div.halfCircleWrapper {
    display: none;
}