/* Base */

p {
    margin-bottom: 1.625rem;
}

p:last-child {
    margin-bottom: 0;
}

button {
    transition: all 0.2s ease-in-out;
}


a[href^="tel"] {
    color: inherit;
    text-decoration: none;
}

.btn-scroll {
    position: relative;
    z-index: 10;
}

.btn-scroll::before {
    content: "";
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 60px;
    position: absolute;
    top: -10px;
    height: 60px;
    background: #F2F5FA;
    z-index: -1;
}

.arrow {
    position: absolute;
    left: 50%;
    transform: translateX(-50%) translateY(45px);
    bottom: 0px;
    transition: all 0.4s ease-in-out;
}

.btn-scroll:hover .arrow {
    transform: translateX(-50%) translateY(55px);
}



.has-overlay::after {
    content: "";
    background: #011536;
    opacity: 0.6;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    z-index: 10;
}

.lines-group {
    position: absolute;
    height: 40px;
    width: 360px;
}

@media (min-width: 770px) {
    .lines-group {
        width: 400px;
    }
}


.code-line {
   height: 6px;
   position: absolute;  
   background: #F2F5FA;
   transform: translateX(0);
   transform-origin:left top;
}

.lines-group .code-line:nth-child(1) {
    width: 152px;
    animation: coding-in-1 2s ease-in-out infinite forwards;
    left: 0;
    top: 0;
}

.lines-group .code-line:nth-child(2) {
    left: 170px;
    width: 46px;
    top: 0;
    animation: coding-in-2 2s ease-in-out infinite forwards;
    animation-delay: 500ms;
}


.lines-group .code-line:nth-child(4) {
    top: 16px;
    left: 60px;
    width: 36px;
    animation: coding-in-4 1.5s ease-in-out infinite forwards;
    animation-delay: 1200ms;
}

.lines-group .code-line:nth-child(3) {
    top: 16px;
    left: 140px;
    animation: coding-in-3 2s ease-in-out infinite forwards;
    animation-delay: 700ms;
} 

@keyframes coding-in-1 {
    0% {width: 0px; left: 0;}
    50% {width: 152px; left: 0;}
    100% {width: 0; left: 162px;}
}

@keyframes coding-in-2 {
    0% {width: 0; left: 170px;}
    50% {width: 46px; left: 170px;}
    100% {width: 0; left: 226px;}
}

@keyframes coding-in-4 {
    0% {width: 0px; left: 60px;}
    50% {width: 36px; left: 60px;}
    100% {width: 0; left: 106px;}
}

@keyframes coding-in-3 {
    0% {width: 0; left: 140px;}
    50% {width: 152px; left: 140px;}
    100% {width: 0; left: 305px;}
}

.lines-contact {
    top: 70px;
    left: 20px;
    opacity: 0.05;
}

.lines-tools {
    bottom: -20px;
    left: 20px;
}

.lines-contact .code-line {
    background: #F2F5FA;
}

.lines-group-contact {
    opacity: 0.05;
    left: 0;
}

.lines-group-contact .code-line {
    background: #E5E9ED;
}

.deco-pattern {
    position: absolute;
    width: 76px;
    height: 74px;
    background: url(../images/pattern.svg);
    background-size: cover;
    pointer-events: none;
    z-index: 20;
}

.deco-square {
    background: #F2F5FA;
    width: 40%;
    right: 0px;
    top: -40px;
    bottom: 0px;
    z-index: 1;
    position: absolute;
}

.deco-pattern-contact {
        margin-left: -30px;
        top: -50px;
        right: 0;
}

.deco-pattern-who {
    right: -12px;
    top: -20px;
}

@media (min-width: 992px) {
    .container-sm {
        max-width: 496px;
    }
}

@media (min-width: 1200px) {
    .container-sm {
        max-width: 600px;
    }
    .deco-pattern-who {
        right: -20px;
        top: 160px;
    }
    .deco-what {
        left: 4%;
        top: -40px;
    }
    .deco-pattern-contact {
        left: 50%;
        margin-left: -30px;
        top: 50px;
        right: auto;
    }
    .deco-square {
        top: -40px;
    }
}


.h-number {
    position: absolute;
    font-size: 130px;
    top: -40px;
    left: 40px;
    color: #A0A9B3;
    opacity: 0.2;
    margin-top: -28px;
    line-height: 100%;
    z-index: 0;
    font-weight: bold;
}

#video {
    position: absolute;
    top: 0;
    bottom: 0;
    height: 100%;
}

.video-box {
    height: 400px;
}

.logos-list img {
    max-height: 24px;
}

.h-number {
    position: absolute;
    font-size: 90px;
    top: -20px;
    right: 0;
    left: auto;
    color: #A0A9B3;
    opacity: 0.2;
    margin-top: -28px;
    line-height: 100%;
    z-index: 0;
    font-weight: bold;
}

@media (min-width: 770px) {
    .video-box {
        height: 100%;
    }
    .video-wrap {
        transform: translateY(40px);
    }
    .logos-list img {
        max-height: 40px;
    }

    .h-number {
        font-size: 130px;
        top: 0px;
        left: 40px;
        right: auto;
    }
}


/* Mobile navigation  */
body.nav-open {
    overflow: hidden;
}

.nav-mobile {
    background: #fff;
    position: fixed;
    height: 100vh;
    top: 0;
    left: 10%;
    width: 90%;
    z-index: 100;
    /* display: none; */
    transform: translateX(100%);
    transition: all 0.4s ease-in-out;
}

.nav-mobile-cover {
    position: fixed;
    display: block;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(65,69,111,0.25);
    z-index: 0;
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
    z-index: 20;
    pointer-events: none;
}

.nav-open .nav-mobile {
    display: block;
    transform: translateX(0);
}

.nav-open .nav-mobile-cover {
    opacity: 1;
    left: 0;
    
}

.nav-main {
    display: none;
}


.btn-nav {
    position: absolute;
    width: 40px;
    height: 40px;
    top: 14px;
    right: 6px;
    transition-duration: 0.25s;
    z-index: 20;
    display: block;
}

.btn-nav .icon {
    transition-duration: 0.25s;
    position: absolute;
    height: 3px;
    width: 26px;
    top: 30px;
    /* border-radius: 10px; */
    background-color: #8DD12C;
}

.btn-nav .icon:before {
    transition-duration: 0.25s;
    position: absolute;
    width: 26px;
    height: 3px;
    background-color: #8DD12C;
    content: "";
    /* border-radius: 10px; */
    top: -10px;
}

.btn-nav .icon:after {
    transition-duration: 0.25s;
    position: absolute;
    width: 26px;
    height: 3px;
    background-color: #8DD12C;
    content: "";
    /* border-radius: 10px; */
    top: 10px;
    right: 0;
}

.nav-open .btn-nav .icon {
    transition: 0.25s;
    background: transparent;
}

.nav-open .icon:before {
    -webkit-transform: rotateZ(45deg) scaleX(1.25) translate(6.5px, 6.5px);
    transform: rotateZ(45deg) scaleX(1.25) translate(6.5px, 6.5px);
}

.nav-open .icon:after {
    -webkit-transform: rotateZ(-45deg) scaleX(1.25) translate(6px, -6px);
    transform: rotateZ(-45deg) scaleX(1.25) translate(6px, -6px);
}

.btn-nav:hover {
    cursor: pointer;
}

.map {
    height: 400px;
}

@media (min-width: 768px) {
    .nav-main {
        display: block;
    }
    .nav-main,
    .nav-main a {
        /* cursor: url(../images/dot.svg), auto; */
    }
    .btn-nav {
        display: none;
    }
    .map {
        height: auto;
    }
}

/* Dropdown */


/* Effects */



/* //Particles */
#particle-slider {
    width: 100%;
    height: 100%;
}

