* {
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

/* CUSTOM FONTS */
@font-face {
    font-family: 'Archia-Regular';
    src: url('../css/fonts/archia-regular-webfont.woff');
    font-weight: 400;
    font-style: normal;
  }
  
  @font-face {
    font-family: 'Archia-Semibold';
    src: url('../css/fonts/archia-semibold-webfont.woff');
    font-weight: 600;
    font-style: normal;
  }
  

*,
*:focus {
    outline: none;
}

body,
html {
    margin: 0;
     overflow-y: visible;
}

body {
    font-family: 'Archia-Regular';
    background: #fff;
}

body > div.animsition {
    background: #fff;
}

.contact-page {
    background: #fff;
}

a {
    color:#4444FF;
    font-weight: 300;
    text-decoration: none;
    -webkit-transition: color .2s ease;
    -moz-transition: color .2s ease;
    transition: color .2s ease;
}

a:hover,
a:active {
    color: #000;
    text-shadow: none;
    border: none;
}

.dinb {
    display: inline-block;
}

.db {
    display: block;
}

.vmid {
    vertical-align: middle;
}

.vtop {
    vertical-align: top;
}

.fl {
    float: left;
}

.fr {
    float: right;
}

.tc {
    text-align: center;
}

.tl {
    text-align: left;
}

.tr {
    text-align: right;
}

.upper {
    text-transform: uppercase;
}

.clearfix {
    clear: both;
}

.clearfix:after {
    content: '';
    display: block;
    clear: both;
}

.fs16 {
    font-size: 16px;
}

.fs18 {
    font-size: 18px;
}

.fs24 {
    font-size: 24px;
}

.fs32 {
    font-size: 32px;
}

.fs54 {
    font-size: 54px;
    line-height: 63px;
    font-family: 'Archia-Semibold';
}

.fs45 {
    font-size: 45px;
    line-height: 55px;
    font-family: 'Archia-Semibold';
}

.fw200 {
    font-weight: 200;
}

.fw300 {
    font-weight: 300;
}

.fw900 {
    font-weight: 900 !important;
    font-family: 'Archia-Semibold';
}

.lh30 {
    line-height: 30px;
}

.lh38 {
    line-height: 38px;
}

.mb40 {
    margin-bottom: 40px;
}

.mb30 {
    margin-bottom: 30px;
}

.mb20 {
    margin-bottom: 20px;
}

.pt45 {
    padding-top: 45px;
}

.row {
    max-width: 990px;
    margin: 0 auto;
}

.red {
    color:#4444FF;;
}

.black {
    color: #000000;
}

.grey {
    color: #676767;
}

.l_grey {
    color: #cecece;
}

.white {
    color: #fff;
}

.quote {
    display: block;
    width: 10px;
    height: 12px;
    background: url("../images/quote-1.svg") 50% 50% no-repeat;
    background-size: 10px 12px;
}

.col-40 {
    width: 40%;
}

.col-60 {
    width: 60%;
}

.col-75 {
    width: 75%;
}

.col-70 {
    width: 70%;
}

.col-30 {
    width: 30%;
}

.col-50 {
    width: 50%;
}

.col-25 {
    width: 25%;
    padding: 0 5px;
}

.wrap {
    max-width: 1140px;
    margin: 0 auto;
}


.footer-wrap {
    bottom: -70px;
    width: 100%;
    opacity: 0;
    z-index: 2;
    padding: 0 70px;
    -webkit-transition: .5s ease;
    -moz-transition: .5s ease;
    transition: .5s ease;
}

.footer-wrap.visible {
    bottom: 65px;
    opacity: 1;
    transition-delay: 0.3s;
}

a.lang-switcher {
    color: #000;
    position: relative;
    z-index: 2;
    -webkit-transform: rotate(-90deg) translate(5px, 5px);
    -moz-transform: rotate(-90deg) translate(5px, 5px);
    transform: rotate(-90deg) translate(5px, 5px);
}


.abs {
    position: absolute;
}

.rel {
    position: relative;
}


.lets_talk span {
    -webkit-transition: .3s ease;
    -moz-transition: .3s ease;
    transition: .3s ease;
}

.social a:hover,
.lets_talk:hover span.fw900 {
    color:#4444FF;;
}

.copyright {
    padding-top: 20px;
    text-align: center;
}

.round-grow {
    position: absolute;
    margin-top: 40px;
    top: 50%;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    width: 0;
    height: 0;
    border-radius: 50%;
    background: #191919;
    transition: 0.6s ease-out;
}

input[type="text"],
input[type="password"],
input[type="email"],
input[type="tel"] {
    border: none;
    outline: none;
    border-radius: 0;
    -webkit-appearance: none;
    box-shadow: none;
    border-bottom: 1px solid #eeeeee;
    font-size: 16px;
    font-family: 'Archia-Regular';
    font-weight: 300;
    height: 60px;
    width: 100%;
    -webkit-transition: .3s ease;
    -moz-transition: .3s ease;
    transition: .3s ease;
}

input[type="text"]:focus,
input[type="password"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus {
    border-bottom-color: #000;
}

input[type="text"].inverted,
input[type="password"].inverted,
input[type="email"].inverted,
input[type="tel"].inverted {
    border: none;
    outline: none;
    border-radius: 0;
    -webkit-appearance: none;
    box-shadow: none;
    border-bottom: 1px solid #2d2d2d;
    background: none;
    font-size: 16px;
    font-family: 'Archia-Regular';
    font-weight: 300;
    height: 60px;
    width: 100%;
    -webkit-transition: .3s ease;
    -moz-transition: .3s ease;
    transition: .3s ease;
    color: #fff;
}

input[type="text"].inverted:focus,
input[type="password"].inverted:focus,
input[type="email"].inverted:focus,
input[type="tel"].inverted:focus {
    border-bottom-color: #fff;
}

textarea.inverted {
    border: none;
    outline: none;
    border-radius: 0;
    -webkit-appearance: none;
    box-shadow: none;
    background: none;
    border-bottom: 1px solid #2d2d2d;
    font-size: 16px;
    font-family: 'Archia-Regular';
    font-weight: 300;
    min-height: 40px;
    width: 100%;
    -webkit-transition: .3s ease;
    -moz-transition: .3s ease;
    transition: .3s ease;
    resize: none;
    color: #fff;
}

textarea.inverted:focus {
    border-bottom-color: #fff;
}

.contact-form {
    max-width: 555px;
    margin: 0 auto;
}

.contact-title {
    margin-bottom: 30px;
}

.form-line {
    margin-bottom: 20px;
}

.form-line input {
    text-align: center;
}

.contact-form .button {
    margin-top: 20px
}

.button {
    border: none;
    outline: none;
    -webkit-appearance: none;
    display: inline-block;
    padding: 15px 35px;
    color: #fff;
    font-size: 24px;
    text-align: center;
    background: #ccc;
    border-radius: 0;
    font-family: 'Archia-Semibold';
    font-weight: 900;
    min-height: 60px;
    cursor: pointer;
    -webkit-transition: .3s ease;
    -moz-transition: .3s ease;
    transition: .3s ease;
}

.button.black {
    background: #000;
}

.button.black:hover {
    background: #333;
}

.button.red {
    background:#4444FF;
}

.button.red:hover {
    background:#2828b0;
}

.zi2 {
    z-index: 2;
}

body {
    overflow-x: hidden;
}

.round-loader {
    width: 72px;
    height: 74px;
    background: url("../images/loader-1.gif") center center no-repeat;
    display: inline-block;
}

#page-preloader {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    z-index: 30000;
    transition: 0.3s ease-out;
}

#page-preloader.white {
    background: #fff;
}

.contpre {
    width: 44px;
    height: 46px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -22px;
    margin-top: -23px;
}

.square {
    position: relative;
    width: 44px;
    height: 46px;
}

.square .side-l {
    width: 4px;
    height: 0;
    background: #000;
    left: 0;
    top: 0;
    position: absolute;
    -webkit-transition: 0.6s ease-out 0.2s;
    -moz-transition: 0.6s ease-out 0.2s;
    -ms-transition: 0.6s ease-out 0.2s;
    transition: 0.6s ease-out 0.2s;
}

.square .side-r {
    width: 4px;
    height: 0;
    background: #000;
    right: 0;
    top: 0;
    position: absolute;
    -webkit-transition: 0.6s ease-out 0.4s;
    -moz-transition: 0.6s ease-out 0.4s;
    -ms-transition: 0.6s ease-out 0.4s;
    transition: 0.6s ease-out 0.4s;
}

.square .side-t {
    width: 0;
    height: 4px;
    background: #000;
    right: 0;
    top: 0;
    position: absolute;
    -webkit-transition: 0.6s ease-out 0.6s;
    -moz-transition: 0.6s ease-out 0.6s;
    -ms-transition: 0.6s ease-out 0.6s;
    transition: 0.6s ease-out 0.6s;
}

.square .side-b {
    width: 0;
    height: 4px;
    background: #000;
    right: 0;
    bottom: 0;
    position: absolute;
    -webkit-transition: 0.6s ease-out 0.8s;
    -moz-transition: 0.6s ease-out 0.8s;
    -ms-transition: 0.6s ease-out 0.8s;
    transition: 0.6s ease-out 0.8s;
}

.square .n-l {
    width: 4px;
    height: 0;
    background: #000;
    left: 13px;
    top: 12px;
    position: absolute;
    -webkit-transition: 0.6s ease-out 1.0s;
    -moz-transition: 0.6s ease-out 1.0s;
    -ms-transition: 0.6s ease-out 1.0s;
    transition: 0.6s ease-out 1.0s;
}

.square .n-c {
    width: 4px;
    height: 0;
    background: #000;
    left: 20px;
    top: 12px;
    position: absolute;
    -webkit-transform: rotate(-35deg);
    -moz-transform: rotate(-35deg);
    -ms-transform: rotate(-35deg);
    transform: rotate(-35deg);
    -webkit-transition: 0.6s ease-out 1.2s;
    -moz-transition: 0.6s ease-out 1.2s;
    -ms-transition: 0.6s ease-out 1.2s;
    transition: 0.6s ease-out 1.2s;
}

.square .n-r {
    width: 4px;
    height: 0;
    background: #000;
    right: 13px;
    top: 12px;
    position: absolute;
    -webkit-transition: 0.6s ease-out 1.4s;
    -moz-transition: 0.6s ease-out 1.4s;
    -ms-transition: 0.6s ease-out 1.4s;
    transition: 0.6s ease-out 1.4s;
}

.square.ani .side-l {
    height: 46px;
}

.square.ani .side-r {
    height: 46px;
}

.square.ani .side-t {
    width: 44px;
}

.square.ani .side-b {
    width: 44px;
}

.square.ani .n-l {
    height: 22px;
}

.square.ani .n-c {
    height: 22px;
}

.square.ani .n-r {
    height: 22px;
}

.wrapper {
    max-width: 1140px;
    margin: 0 auto;
}

.col-row {
    margin: 0 -15px;
}

.col-md-4 {
    width: 33.3333%;
    float: left;
    padding: 0 15px 30px;
}

.static-wrap {
    padding-top: 180px;
    padding-bottom: 120px;
}


.h100 {
    height: 100%;
}

.vh100 {
    height: 100vh;
}

.contact-section {
    background: #191919;
    min-height: 500px;
}

.contact-section .footer-wrap {
    bottom: 0;
    opacity: 1;
    visibility: visible;
    z-index: 2;
    left: 0;
    padding-bottom: 56px;
    overflow: hidden;
}

.contact-section .footer-wrap .copyright {
    padding-top: 8px;
}

.tbl {
    display: table;
}

.tbl-cell {
    display: table-cell;
    vertical-align: middle;
}

.w100 {
    width: 100%;
}

.contact-page.fullpage-wrapper {
    width: 100%!important;
    transform: none!important;
    -webkit-transform: none!important;
    -moz-transform: none!important;
}

.img-shw {
    box-shadow: 0 15px 75px rgba(0, 0, 0, 0.2);
}

.r3 {
    border-radius: 3px;
}

.r5 {
    border-radius: 5px;
}

.projects-nav {
    border-top: 1px solid #e5e5e5;
}


.zi4 {
    z-index: 5;
}

.form_you_need {
    position: fixed;
    z-index: 999;
    left: 0;
    right: 0;
    top: 0;
    height: 100%;
    background: #131726;
    padding: 80px 60px 80px 20px;
    overflow-y: auto;
    margin-right: -40px;
}

.form_you_need .wrapper {
    max-width: 1005px;
    padding: 0 30px
}

.project-type .col-25 {
    padding: 15px;
}

.project-check input[type='checkbox'] {
    display: none;
}

.project-check label {
    display: block;
    border: 1px solid #2d2d2d;
    padding: 26px 15px 32px;
    color: #676767;
    cursor: pointer;
    text-align: center;
}

.project-check input[type='checkbox']:checked + label {
    border-color:#4444FF;;
    color: #fff;
}

.project-check label i {
    right: -10px;
    top: -10px;
    background:#4444FF url("../images/check-1.svg") no-repeat center center;
    background-size: 14px 10px;
    width: 24px;
    height: 24px;
    display: block;
    opacity: 0;
    visibility: hidden;
    z-index: 2;
}

.project-check input[type='checkbox']:checked + label i {
    opacity: 1;
    visibility: visible;
}

.project-check label img {
    opacity: 0.45;
    max-width: 100%;
}

.project-check input[type='checkbox']:checked + label img {
    opacity: 1;
}

.project-check .icon_wrap {
    min-height: 90px;
    margin-bottom: 10px;
}

.webdes_icon {
    width: 130px;
    height: 85px;
}

.dev_icon {
    width: 134px;
    height: 80px;
}

.apps_icon {
    width: 143px;
    height: 80px;
}

.brand_icon {
    width: 122px;
    height: 82px;
}

.file_uploader {
    padding-bottom: 21px;
    color:#4444FF;;
    cursor: pointer;
    opacity: 1;
    position: relative;
}

.file_uploader span {
    color: #676767;
    font-size: 14px;
}

.file_upload_txt{
   color:#4444FF;;
    font-size: 12px;
    padding-bottom: 21px;
    position: relative;
}

#file_upload:after {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    height: 1px;
    width: 100%;
    background: url("../images/form/dash_b.svg") left center repeat-x;
}


.project-about .col-25 {
    padding: 0 15px;
}

.project-about .col-75 {
    padding: 0 15px;
}

.project-about {
    margin: 0 -15px;
}

.form-line.tl input {
    text-align: left;
}

.project-contact .col-50 {
    padding: 0 15px;
}

.tell-title h2 {
    margin: 0;
}

h2 span{
    margin: 0;
    font-size: 16px;
}


.clearfix.tell-title {
    margin-bottom: 20px;
}

.tell-title .fr {
    margin: 9px 0 0 0;
    color: #676767;
}

.project-about {
    margin-bottom: 80px;
}

.project-type {
    margin-bottom: 50px;
}

.project-send {
    margin-top: 30px;
}

.project-budget {
    margin-bottom: 130px;
}

.form_you_need h2 {
    margin-top: 0;
}

.about-first-screen {
    min-height: 510px;
    overflow: hidden;
}

.nav-project {
    position: fixed;
    transition: 0.3s ease-out;
    -webkit-transition: 0.3s ease-out;
}

.nav-project.notFixed {
    opacity: 0;
    transform: translateY(-50px);
    -webkit-transform: translateY(-50px)
}

.nav-project.notTop {
    top: 50%;
    margin-top: -20px;
}

.next-project {
    right: 60px;
    top: 320px;
}

.prev-project {
    left: 60px;
    top: 320px;
}

.next-project span {
    transform: rotate(90deg);
    display: block;
}

.prev-project span {
    transform: rotate(-90deg);
    display: block;
}

.under-title {
    margin-top: 60px;
}

.under-title .customer-text {
    margin-bottom: 45px;
}

.more-info {
    bottom: 70px;
    right: 5px;
    width: 100%;
    text-align: right;
    z-index: 2;
    display: block;
    padding-left: 70px;
    padding-right: 70px;
}

.watch-intro-link {
    width: 20px;
    height: 165px;
    white-space: nowrap;
    margin-left: 8px;
}

.more-info a.some-cases-link {
    height: 145px;
    margin-top: 20px;
    margin-right: 0;
}

.more-info a.some-cases-link .pixel-darrow {
    margin-top: -1px;
}

.more-info .vertical-text.invert {
    transform-origin: 82px 82px;
    -webkit-transform-origin: 82px 82px;
    -moz-transform-origin: 82px 82px;
    -webkit-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    transform: rotate(-90deg);
}

.life-carousel-wrapper {
    padding-top: 70px;
    margin-bottom: 175px;
}

.life-slide-text {
    max-width: 500px;
    padding-left: 120px;
}

.life-slide-text .fs54 {
    margin-bottom: 35px;
}

.life-slide-text p {
    margin-bottom: 0;
}

.life-slider-bg {
    left: 50%;
    margin-left: -390px;
    bottom: -50px;
}

.lf-arrows .pixel-darrow {
    margin-left: 40px
}

.lf-arrows i {
    cursor: pointer;
}

.lf-carousel-nav {
    margin-top: 60px;
}

.flex-row {
    display: flex;
    flex-direction: row;
    justify-items: center;
    align-items: center;
}

.flex-row .col-50 img {
    width: 100%;
}


.col-dots {
    width: 6.6666%;
    float: left;
    padding: 5px 0;
}

.bold-list {
    list-style: none;
    margin: 0;
    padding: 0 60px 0 0;
    max-width: 48%;
}

.bold-list:last-child {
    padding-right: 0;
}

.bold-list li {
    padding-left: 25px;
}

.bold-list li + li {
    margin-top: 17px;
}

.bold-list li:before {
    content: '';
    width: 5px;
    height: 5px;
    background:#4444FF;;
    display: block;
    float: left;
    margin: 14px 20px 0 -25px;
}


.close-modal {
    cursor: pointer;
    width: 21px;
    height: 21px;
    background: url("../images/close-icon-1.svg") center center no-repeat;
    background-size: 21px 21px;
    left: -75px;
    top: 3px;
}

.animatedModal {
    opacity: 1;
}

.fixfixed .animatedModal {
    position: absolute;
}

.bs-dash {
    float: left;
    width: 4%;
    height: 60px;
    padding-top: 10px;
}

.bs-dash:before {
    content: '';
    width: 1px;
    height: 40px;
    background: #676767;
    display: inline-block;
    vertical-align: top;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}

.label-txt {
    white-space: nowrap;
    margin-right: -24px;
    margin-bottom: 10px;
    color: #676767;
    font-weight: 300;
}

.bs-item.col-25 {
    padding: 0;
}

.bs-item:last-child .label-txt {
    margin-right: 0;
}

.bs-item .bs-dash:last-child {
    padding-top: 0;
}

.bs-item .bs-dash:last-child:before {
    height: 60px;
}


.dark-page {
    background: #191919;
    padding-top: 185px;
}


.pointer {
    cursor: pointer;
}


.from-feed-link {
    right: -75px;
    bottom: 50px;
}

.more-feed-link {
    left: -75px;
    bottom: 50px;
}

.red-dots {
    width: 22px;
    height: 4px;
    margin-right: 15px;
}

.red-dots span {
    display: block;
    width: 4px;
    height: 4px;
    background:#4444FF;
    left: 0;
    top: 0;
}

.red-dots:before {
    content: '';
    display: block;
    width: 4px;
    height: 4px;
    background:#4444FF;;
    position: absolute;
    left: 9px;
    top: 0;
}

.red-dots:after {
    content: '';
    display: block;
    width: 4px;
    height: 4px;
    background:#4444FF;;
    position: absolute;
    left: 18px;
    top: 0;
}

.close-modal.drk-close {
    cursor: pointer;
    width: 22px;
    height: 22px;
    background: url("../images/drk-close-icon-1.svg") center center no-repeat;
    background-size: 22px 22px;
    left: -75px;
    top: 50px;
}

.maxw100 {
    max-width: 100%;
}

@media (max-width: 1400px) {
    .bold-list {
        font-size: 21px;
    }
}

@media (min-width:1440px) {
    .wrap {
        max-width: 1280px;
    }
}

@media (max-width:1279px) {

    .round-grow {
        margin-top: 5px;
    }
    .close-modal {
        left: 0;
        top: -75px;
    }
    .modal-logo.drk-logo {
        right: 20px;
        top: 20px;
    }

    .from-feed-link {
        right: 20px;
        bottom: 20px;
    }
    .more-feed-link {
        left: 20px;
        bottom: 20px;
    }
    .form_you_need {
        padding-top: 105px;
    }
    .card-section .col-50.tr.fl {
        text-align: center;
    }
    .monster-desc {
        padding: 140px 30px 0 80px;
    }
}




@media (max-width:1023px) {

    .contact-page .section .row {
        overflow: hidden;
    }

    .flex-row {
        display: block;
    }
}

@media (max-width:959px) {
    .fs54 {
        font-size: 24px;
        line-height: 34px;
    }
}

@media (max-width:767px) {
    .contact-section {
        min-height: 420px;
    }
    .under-title.services a {
        line-height: 26px;
        font-size: 16px;
    }
    .project-about .col-75,
    .project-about .col-25 {
        width: 100%;
    }
    .project-about .col-75 {
        margin-bottom: 40px;
    }
    .project-type .col-25 {
        width: 50%;
    }
    .project-contact .col-50 {
        width: 100%
    }
    .form_you_need {
        padding-right: 60px;
    }
}



@media (max-width:420px) {
    .form-line input {
        text-align: left;
    }
    .form-line .ui.selection.dropdown {
        text-align: left;
    }
    .contact-page .section .col-50 .fs24 {
        font-size: 18px;
        line-height: 25px;
    }
    .fl{
        float: none;
    }
     .project-type .col-25 {
        width: 100%;
    }


}

@media (max-width:400px) {
    .more-feed-link .red-dots,
    .from-feed-link .pixel-darrow {
        display: none;
    }
}

@media (max-width:360px) {
    .form_you_need h2 {
        font-size: 20px;
    }
    .project-about,
    .project-type {
        margin-bottom: 55px;
    }
    .form_you_need .wrapper {
        padding: 0 10px;
    }
    .case-sample .mb40 {
        margin-bottom: 20px;
        line-height: 24px;
    }
    .quote-wrap {
        display: none;
    }
    .slide6 .fs54 {
        margin-top: 40px;
    }
}   