/* animation sequences */

.animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

@-webkit-keyframes elemMoveUp {
    from {
        opacity: 0;
        -webkit-transform: translate(50px, 50px);
        transform: translate(50px, 50px);
    }
    to {
        opacity: 1;
        -webkit-transform: translate(0px, 0px);
        transform: translate(0px, 0px);
    }
}

@keyframes elemMoveUp {
    from {
        opacity: 0;
        -webkit-transform: translate(50px, 50px);
        transform: translate(50px, 50px);
    }
    to {
        opacity: 1;
        -webkit-transform: translate(0px, 0px);
        transform: translate(0px, 0px);
    }
}

.elem-moving-up {
    -webkit-animation-name: elemMoveUp;
    animation-name: elemMoveUp;
}

@-webkit-keyframes elemMoveDown {
    from {
        opacity: 0;
        -webkit-transform: translate(-50px, -50px);
        transform: translate(-50px, -50px);
    }
    to {
        opacity: 1;
        -webkit-transform: translate(0px, 0px);
        transform: translate(0px, 0px);
    }
}

@keyframes elemMoveDown {
    from {
        opacity: 0;
        -webkit-transform: translate(-50px, -50px);
        transform: translate(-50px, -50px);
    }
    to {
        opacity: 1;
        -webkit-transform: translate(0px, 0px);
        transform: translate(0px, 0px);
    }
}

.elem-moving-down {
    -webkit-animation-name: elemMoveDown;
    animation-name: elemMoveDown;
}

@-webkit-keyframes elemMoveRight {
    from {
        opacity: 0;
        -webkit-transform: translate(-50px, 50px);
        transform: translate(-50px, 50px);
    }
    to {
        opacity: 1;
        -webkit-transform: translate(0px, 0px);
        transform: translate(0px, 0px);
    }
}

@keyframes elemMoveRight {
    from {
        opacity: 0;
        -webkit-transform: translate(-50px, 50px);
        transform: translate(-50px, 50px);
    }
    to {
        opacity: 1;
        -webkit-transform: translate(0px, 0px);
        transform: translate(0px, 0px);
    }
}

.elem-moving-right {
    -webkit-animation-name: elemMoveRight;
    animation-name: elemMoveRight;
}

@-webkit-keyframes elemMoveLeft {
    from {
        opacity: 0;
        -webkit-transform: translate(50px, -50px);
        transform: translate(50px, -50px);
    }
    to {
        opacity: 1;
        -webkit-transform: translate(0px, 0px);
        transform: translate(0px, 0px);
    }
}

@keyframes elemMoveLeft {
    from {
        opacity: 0;
        -webkit-transform: translate(50px, -50px);
        transform: translate(50px, -50px);
    }
    to {
        opacity: 1;
        -webkit-transform: translate(0px, 0px);
        transform: translate(0px, 0px);
    }
}

.elem-moving-left {
    -webkit-animation-name: elemMoveLeft;
    animation-name: elemMoveLeft;
}


/* svg rotation */

@-webkit-keyframes svgRotate {
    from {
        /*transform: translate(-50%,-50%) rotate(45deg);*/
        -webkit-animation-timing-function: linear;
        animation-timing-function: linear;
        -webkit-transform: translate(-50%, -50%) rotate(360deg);
        transform: translate(-50%, -50%) rotate(360deg);
    }
    to {
        -webkit-animation-timing-function: linear;
        animation-timing-function: linear;
        -webkit-transform: translate(-50%, -50%) rotate(0deg);
        transform: translate(-50%, -50%) rotate(0deg);
    }
}

@keyframes svgRotate {
    from {
        -webkit-animation-timing-function: linear;
        animation-timing-function: linear;
        -webkit-transform: translate(-50%, -50%) rotate(360deg);
        transform: translate(-50%, -50%) rotate(360deg);
    }
    to {
        -webkit-animation-timing-function: linear;
        animation-timing-function: linear;
        -webkit-transform: translate(-50%, -50%) rotate(0deg);
        transform: translate(-50%, -50%) rotate(0deg);
    }
}

.svg-clock-rotation {
    -webkit-animation-name: svgRotate;
    animation-name: svgRotate;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}

@-webkit-keyframes svgRotateAnti {
    from {
        -webkit-animation-timing-function: linear;
        animation-timing-function: linear;
        -webkit-transform: translate(-50%, -50%) rotate(-360deg);
        transform: translate(-50%, -50%) rotate(-360deg);
    }
    to {
        -webkit-animation-timing-function: linear;
        animation-timing-function: linear;
        -webkit-transform: translate(-50%, -50%) rotate(0deg);
        transform: translate(-50%, -50%) rotate(0deg);
    }
}

@keyframes svgRotateAnti {
    from {
        -webkit-animation-timing-function: linear;
        animation-timing-function: linear;
        -webkit-transform: translate(-50%, -50%) rotate(-360deg);
        transform: translate(-50%, -50%) rotate(-360deg);
    }
    to {
        -webkit-animation-timing-function: linear;
        animation-timing-function: linear;
        -webkit-transform: translate(-50%, -50%) rotate(0deg);
        transform: translate(-50%, -50%) rotate(0deg);
    }
}

.svg-anti-clock-rotation {
    -webkit-animation-name: svgRotateAnti;
    animation-name: svgRotateAnti;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}


/* boltt typing cursor styling start */

.typed-cursor {
    opacity: 1;
    -webkit-animation: blink 0.7s infinite;
    animation: blink 0.7s infinite;
}

@keyframes blink {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@-webkit-keyframes blink {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}


/* animation sequence end */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: normal;
}

.dev-lab-section1 p {
    font-size: 20px;
    line-height: 1.2;
    color: #fff;
    letter-spacing: 0.01em;
}

.dev-lab-section1 {
    background: url(../images/devlab/devlab-section1-bg.jpg) no-repeat center top;
    background-size: cover;
    position: relative;
}

.dev-lab-section1 h2 {
    font-size: 40px;
    color: #fff;
    margin: 0 0 8px;
}

.dev-lab-section1-content {
    position: absolute;
    left: 0;
    bottom: 30%;
    width: 100%;
    text-align: center;
}

.dev-lab-section2 {
    /*background: url(../images/devlab/devlab-section2-bg.jpg) no-repeat center top;*/
    background-size: cover;
    position: relative;
}

.dev-lab-section2-figure img {
    display: block;
    position: relative;
}

.dev-lab-section2-figure {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.dev-lab-section2-figure1 {
    width: 683px;
    height: 469px;
    margin: 49px 0 0 27px;
    z-index: 1;
}

.dev-lab-section2-figure2 {
    width: 558px;
    height: 385px;
    margin: 168px 0 0 -233px;
    z-index: 2;
}

.dev-lab-section2-figure4 {
    width: 558px;
    height: 384px;
    margin: 278px 0 0 -458px;
    z-index: 3;
}

.dev-lab-section2-figure6 {
    width: 558px;
    height: 384px;
    margin: -36px 0 0 -710px;
    z-index: 1;
}

.dev-lab-section2-figure3 {
    width: 557px;
    height: 385px;
    margin: -86px 0px 0 268px;
    z-index: 3;
}

.dev-lab-section2-figure5 {
    width: 557px;
    height: 385px;
    margin: -194px 0 0 498px;
    z-index: 2;
}

.dev-lab-section2-figure7 {
    width: 557px;
    height: 385px;
    margin: 150px 0 0 690px;
    z-index: 4;
}

.dev-lab-section3 {
    padding-top: 120px;
    padding-bottom: 80px;
}

.dev-lab-section3-container {
    width: 94%;
    max-width: 1390px;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.dev-lab-section3-content {
    width: 44%;
}

.dev-lab-section3-content h2 {
    font-size: 33px;
    line-height: 1.15;
    /* letter-spacing: .22em; */
    text-transform: capitalize;
    margin-bottom: 30px;
}

.dev-lab-section3-content p {
    font-size: 16px;
    line-height: 1.55;
    letter-spacing: .05em;
    color: #000;
    margin-bottom: 40px;
}

.dev-lab-section3-content span {
    display: inline-block;
    text-align: center;
    font-size: 13px;
    color: #000;
}

.dev-lab-section3-fig {
    width: 56%;
    position: relative;
}

.dev-lab-section3-fig:before {
    content: '';
    display: block;
    width: 15px;
    height: 70px;
    background: #04b210;
    position: absolute;
    top: -40px;
    right: -8px;
}

.dev-lab-section4-container {
    width: 94%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 120px 15px;
    -webkit-box-shadow: 3px 5px 18px rgba(0, 0, 0, 0.29);
    box-shadow: 3px 5px 18px rgba(0, 0, 0, 0.29);
}

.dev-lab-section4-content {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}

.dev-lab-section4-top {
    margin-bottom: 25px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.dev-lab-section4-box {
    text-align: center;
}

.dev-lab-section4-box h3 {
    text-transform: capitalize;
    letter-spacing: .01em;
    font-size: 24px;
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
}

.dev-lab-section4-box:hover h3 {
    -webkit-transform: translateX(50%);
    transform: translateX(50%);
}

.dev-lab-section4-bottom {
    min-height: 200px;
    width: 90%;
    max-width: 800px;
    margin: 0 auto 80px;
    border-left: 1px dashed #000;
    border-right: 1px dashed #000;
    border-bottom: 1px solid #000;
    position: relative;
}

.dev-lab-section4-bottom:before,
.dev-lab-section4-bottom:after {
    content: '';
    display: block;
    width: 14px;
    height: 14px;
    border: 1px dashed #000;
    border-radius: 50%;
    position: absolute;
}

.dev-lab-section4-bottom:before {
    left: -7px;
    top: -14px;
}

.dev-lab-section4-bottom:after {
    right: -7px;
    top: -14px;
}

.dev-lab-section4-bottom h4 {
    font-size: 32px;
    /* letter-spacing: .22em; */
    background: #fff;
    margin: 0;
    padding: 0 12px;
    position: absolute;
    left: 50%;
    bottom: -14px;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

.dev-lab-section4-container>p {
    width: 100%;
    max-width: 670px;
    font-size: 15px;
    line-height: 1.6;
    letter-spacing: .05em;
    margin: 0 auto;
    text-align: center;
}

.dev-lab-section5 {
    position: relative;
    margin-top: 80px;
}

.dev-lab-section5 h2 {
    color: #000;
    margin: 20px 0 28px;
    font-size: 33px;
    line-height: 1.2;
    /* letter-spacing: 0.22em; */
}

.dev-lab-section5 h2>span {
    display: block;
}

.dev-lab-section5 p {
    color: #000;
    margin: 20px 0 0;
    font-size: 16px;
    letter-spacing: .05em;
    line-height: 1.6;
}

.dev-lab-section5-figblock {
    width: 946px;
    height: 946px;
    position: absolute;
    right: -115px;
    /*right: 0;*/
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    position: absolute;
}

.dev-lab-section5-figblock>div {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 946px;
    height: 946px;
    visibility: visible !important;
}

.dev-lab-section5-figblock1 {
    width: 946px;
    height: 946px;
    background: url(../images/devlab/section5-rotate1.png) no-repeat center;
    background-size: cover;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.dev-lab-section5-figblock2 {
    background: url(../images/devlab/section5-rotate2.png) no-repeat center;
    background-size: 705px auto;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.dev-lab-section5-figblock3 {
    background: url(../images/devlab/section5-rotate3.png) no-repeat center;
    background-size: 450px auto;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    margin-top: -14px;
}

.dev-lab-section5-figblock4 {
    background: url(../images/devlab/section5-rotate4.png) no-repeat center;
    background-size: 305px auto;
    margin-top: -15px;
    margin-left: -10px;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.dev-lab-section5-figblock5 {
    background: url(../images/devlab/section5-rotate5.png) no-repeat center;
    background-size: 200px auto;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    margin-top: -12px;
    margin-left: -5px;
}


/*.dev-lab-section5 > figure svg {
	width: 100%;
	height: auto;
}

.dev-lab-section5 > figure svg g {
	position: relative;
	-webkit-transform-origin: center;
	transform-origin: center;
}*/

.dev-lab-section5-container {
    width: 100%;
    max-width: 1180px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}


/*.dev-lab-section5-top {
	padding-left: 200px;
}*/

.dev-lab-section5-content {
    width: 100%;
    max-width: 500px;
}

.dev-lab-section5-bottom {
    min-height: 120px;
    background: #1a1a1a;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    z-index: 10;
}

.dev-lab-section5 .dev-lab-section5-bottom p {
    margin: 0;
    width: 100%;
    max-width: 510px;
    line-height: 56px;
    background: #f6f6f6;
    padding: 0 10px;
    text-align: center;
    position: absolute;
    top: -26px;
}

.dev-lab-mobile-view {
    display: none;
}


/*********************
	MEDIA QUERIES
****************************/

@media only screen and (max-width:1400px) {
    .section {
        height: auto;
        min-height: 650px;
        padding-top: 30px;
        padding-bottom: 30px;
    }
    .dev-lab-section1 {
        height: 100vh;
    }
    .dev-lab-section1 p {
        font-size: 20px;
    }
    .dev-lab-section5-figblock {
        width: 800px;
        height: 800px;
    }
    .dev-lab-section5-figblock>div {
        width: 100%;
        height: 100%;
    }
    .dev-lab-section5-figblock2 {
        background-size: 595px auto;
    }
    .dev-lab-section5-figblock3 {
        margin-top: -10px;
        background-size: 310px auto;
    }
    .dev-lab-section5-figblock4 {
        background-size: 195px auto;
        margin-top: -12px;
        margin-left: -6px;
    }
    .dev-lab-section5-figblock5 {
        background-size: 132px auto;
        margin-top: -9px;
        margin-left: -2px;
    }
}


/* 1400px */

@media only screen and (max-width:1200px) {
    .dev-lab-section1 h2 {
        font-size: 38px;
    }
    .dev-lab-section1 p {
        font-size: 18px;
    }
}


/* 1200 */

@media only screen and (max-width:1024px) {
    .dev-lab-section1 h2 {
        font-size: 36px;
    }
    .dev-lab-section1 p {
        font-size: 18px;
    }
    .dev-lab-section1 h2 {
        min-height: 44px;
    }
    .dev-lab-section1-content {
        bottom: auto;
        top: 50%;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
    }
    .dev-lab-section5-figblock {
        width: 520px;
        height: 520px;
    }
    .dev-lab-section5-figblock2 {
        background-size: 380px auto;
    }
    .dev-lab-section5-figblock3 {
        background-size: 225px auto;
    }
    .dev-lab-section5-figblock4 {
        background-size: 145px auto;
    }
    .dev-lab-section5-figblock5 {
        background-size: 96px auto;
        margin-top: -10px;
        margin-left: -3px;
    }
    .dev-lab-section2-figure1 {
        width: 490px;
        height: auto;
        margin: 32px 0 0 20px;
    }
    .dev-lab-section2-figure2 {
        width: 400px;
        height: auto;
        margin: 119px 0 0 -170px;
    }
    .dev-lab-section2-figure4 {
        width: 400px;
        height: auto;
        margin: 200px 0 0 -332px;
    }
    .dev-lab-section2-figure6 {
        width: 400px;
        height: auto;
        margin: -26px 0 0 -512px;
    }
    .dev-lab-section2-figure3 {
        width: 400px;
        height: auto;
        margin: -62px 0px 0 193px;
    }
    .dev-lab-section2-figure5 {
        width: 400px;
        height: auto;
        margin: -140px 0 0 356px;
    }
    .dev-lab-section2-figure7 {
        width: 400px;
        height: auto;
        margin: 110px 0 0 497px;
    }
}


/* 1024 end */

@media only screen and (max-width:800px) {
    .dev-lab-section1 h2 {
        font-size: 34px;
    }
    .dev-lab-section1 p {
        font-size: 18px;
    }
    .dev-lab-section5-content {
        width: 50%;
        padding-left: 20px;
        padding-right: 20px;
        margin-top: -30px;
    }
}


/* 800px */

@media only screen and (max-width:767px) {
    .dev-lab-mobile-view {
        display: block;
    }
    .section {
        min-height: 450px;
        background-attachment: scroll;
    }
    .dev-lab-section1 h2 {
        font-size: 30px;
    }
    .dev-lab-section1 p {
        font-size: 16px;
    }
    .dev-lab-section1 {
        padding: 0;
        height: auto;
        min-height: 100px;
        background: #fff;
    }
    .dev-lab-section5 {
        padding-bottom: 0;
        -ms-flex-flow: row wrap;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        flex-flow: row wrap;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
    .dev-lab-section5-container {
        width: 100%;
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
    }
    .dev-lab-section5-content {
        width: 100%;
        max-width: 100%;
        margin: 0;
        text-align: center;
    }
    .dev-lab-section5 p {
        margin-top: 16px;
    }
    .dev-lab-section5-figblock {
        width: 400px;
        height: 400px;
        right: -50px;
        background: url(../images/devlab/section5-svg.svg) no-repeat right center;
        background-size: 400px auto;
        position: static;
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px);
        margin-top: -30px;
    }
    .dev-lab-section5-figblock>div {
        display: none;
    }
    .dev-lab-section5-bottom {
        display: none;
    }
    /*  new psd mobile design  */
    .dev-lab-section1-content {
        bottom: 50px;
        -webkit-transform: initial;
        transform: initial;
        top: initial;
    }
    .dev-lab-section2 {
        background: #e7e7e7;
    }
    .dev-lab-section3 {
        padding: 0;
    }
    .dev-lab-section3-content h2 {
        font-size: 22px;
    }
    .dev-lab-section3-content h2 br {
        display: none;
    }
    .dev-lab-section3-container {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-flow: column-reverse;
        flex-flow: column-reverse;
        width: 100%;
    }
    .dev-lab-section3-fig {
        width: 100%;
        position: relative;
    }
    .dev-lab-section3-fig:before {
        display: none;
    }
    .dev-lab-section3-content {
        width: 90%;
        -webkit-box-shadow: 0px 0px 15px -5px rgba(0, 0, 0, 0.30);
        box-shadow: 0px 0px 15px -5px rgba(0, 0, 0, 0.30);
        position: relative;
        z-index: 9;
        margin: -50px auto 70px;
        padding: 20px 20px 70px;
        text-align: center;
        background: #fff;
    }
    .dev-lab-section4 {
        background: #fcfcfc;
    }
    .dev-lab-section4-bottom {
        display: none;
    }
    .dev-lab-section4-container {
        -webkit-box-shadow: none;
        box-shadow: none;
    }
    .dev-lab-section4-top {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-flow: column;
        flex-flow: column;
    }
    .dev-lab-section4-container {
        padding-top: 70px;
        padding-bottom: 70px;
    }
    .dev-lab-section5 {
        margin-top: 0;
        min-height: initial;
    }
    .dev-lab-section5 h2 {
        font-size: 22px;
    }
    .dev-lab-section5-container {
        width: 90%;
        -webkit-box-shadow: 0px 0px 15px -5px rgba(0, 0, 0, 0.30);
        box-shadow: 0px 0px 15px -5px rgba(0, 0, 0, 0.30);
        margin-bottom: 100px;
        padding: 40px 10px 70px;
    }
    .dev-lab-section4-box {
        margin-bottom: 120px;
        background: #fcfcfc;
        position: relative;
        z-index: 9;
        padding: 10px;
    }
    .dev-lab-section4-box:last-child{
        margin-bottom: 0;
    }
    .dev-lab-section4-top {
        position: relative;
    }
    .dev-lab-section4-top:after {
        position: absolute;
        content: '';
        border-left: 1px dotted #000;
        width: 1px;
        top: 0;
        height: 100%;
        left: 0;
        right: 0;
        margin: 0 auto;

    }
   .dev-lab-section4-box:hover h3 {
    -webkit-transform: translateX(00%);
    transform: translateX(00%);
}
}


/* 767 End */

@media only screen and (max-width:500px) {
    .dev-lab-section1 h2 {
        font-size: 28px;
    }
    .dev-lab-section1 p {
        font-size: 16px;
    }
    .dev-lab-section1-content {
        padding-left: 10px;
        padding-right: 10px;
    }
    .dev-lab-section1 p {
        font-size: 14px;
    }
    .dev-lab-section2 {
        min-height: 300px;
    }
    .dev-lab-section2-figure1 {
        width: 278px;
        margin: -25px 0 0 -1px;
    }
    .dev-lab-section2-figure2 {
        width: 210px;
        margin: 25px 0 0 -95px;
    }
    .dev-lab-section2-figure4 {
        width: 210px;
        margin: 73px 0 0 -189px;
    }
    .dev-lab-section2-figure6 {
        width: 210px;
        margin: -63px 0 0 -265px;
    }
    .dev-lab-section2-figure3 {
        width: 210px;
        margin: -74px 0px 0 101px;
    }
    .dev-lab-section2-figure5 {
        width: 210px;
        margin: -120px 0 0 190px;
    }
    .dev-lab-section2-figure7 {
        width: 210px;
        margin: 11px 0 0 277px;
    }
    .dev-lab-section5 {
        min-height: 300px;
    }
    .dev-lab-section5-content {
        width: 100%;
        margin-top: 0;
        text-align: center;
    }
    .dev-lab-section5-content .line,
    .dev-lab-section5-content .line-thin {
        margin-left: auto;
        margin-right: auto;
    }
    .dev-lab-section5-figblock {
        width: 320px;
        height: 320px;
        background-size: cover;
    }
	.dev-lab-section3-content span br,
	.dev-lab-section3-content p br{
		display: none;
	}
}


/* 500 End */

@media only screen and (max-width:375px) {
    .dev-lab-section1 h2 {
        font-size: 26px;
    }
}

@media only screen and (max-width:359px) {
    .dev-lab-section5-figblock {
        width: 280px;
        height: 280px;
    }
}
