﻿@import url('https://fonts.googleapis.com/css2?family=Maven+Pro:wght@400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Russo+One&display=swap');

/*#region BODY */


:root {
    --color-primary: #C1FF00;
    --color-primary2: #83ae00;
    --color-secondary: #00c1ff;
    --color-third: #ff00c1;
    --background-color: #0a101e;
    --background-color2: #FFF;
    --background-color3: #FFF;
    --text-color: #FFF;
    --text-color2: #0a101e;
    --menu-height: 70px;
    --menu-info-panel-height: 50px;
    --header-height: 120px;
}


@-webkit-keyframes pulse {
    from {
        -webkit-transform: scale(0.8);
    }

    to {
        -webkit-transform: scale(1.2);
    }
}


@-moz-keyframes pulse {


    from {
        -moz-transform: scale(0.8);
    }

    to {
        -moz-transform: scale(1.2);
    }
}



@-o-keyframes pulse {
    from {
        -o-transform: scale(0.8);
    }

    to {
        -o-transform: scale(1.2);
    }
}


@keyframes pulse {
    from {
        transform: scale(0.8);
    }

    to {
        transform: scale(1.2);
    }
}


@keyframes fint {
    0% {
        opacity:0;  
    }

    10%,20%,30%,40%,50%,60%,70%,80%,90% {
        opacity: 1;
    }

    100% {
        opacity: 0;      
    }
}

@keyframes fint2 {
    0% {
        transform: rotate(0deg);
        opacity: 0;
    }

    10%,20%,30%,40%,50%,60%,70%,80%,90% {
        transform: rotate(0deg);
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: rotate(90deg);
    }
}





.pulse {
    -webkit-animation: pulse .4s infinite ease-in-out alternate; /* Safari & Chrome */
    -moz-animation: pulse .4s infinite ease-in-out alternate; /* Firefox */
    -o-animation: pulse .4s infinite ease-in-out alternate; /* Opera */
    animation: pulse .4s infinite ease-in-out alternate; /* W3C */
}





.div-introduction {
    position: fixed;
    z-index: 9999;
    height: 100vh;
    height: calc(var(--vh,1vh) * 100);
    width: 100vw;
    -webkit-transition: opacity .4s linear, visibility 0s linear .4s;
    -moz-transition: opacity .4s linear, visibility 0s linear .4s;
    -o-transition: opacity .4s linear, visibility 0s linear .4s;
    transition: opacity .4s linear, visibility 0s linear .4s;
    background-color: #0a101e;
    top: 0;
    opacity: 1;
    visibility: visible;
}


        .div-introduction ul > li {     
            position: absolute;
            top: 50%;
            right: 50%;
            transform: translate(50%,-50%);         
        }


            .div-introduction ul > li:first-child {
                -webkit-animation: fint .4s linear normal;
                -moz-animation: fint .4s linear normal;
                -o-animation: fint .4s linear normal;
                animation: fint .4s linear normal;
                opacity: 0;
            }

            .div-introduction ul > li:nth-child(2) {
                -webkit-animation: fint .4s linear normal .4s;
                -moz-animation: fint .4s linear normal .4s;
                -o-animation: fint .4s linear normal .4s;
                animation: fint .4s linear normal .4s;
                opacity: 0;
            }

            .div-introduction ul > li:nth-child(3) {
                -webkit-animation: fint .4s linear normal .8s;
                -moz-animation: fint .4s linear normal .8s;
                -o-animation: fint .4s linear normal .8s;
                animation: fint .4s linear normal .8s;
                opacity: 0;
            }

            .div-introduction ul > li:nth-child(4) {
                -webkit-animation: fint .4s linear normal 1.2s;
                -moz-animation: fint .4s linear normal 1.2s;
                -o-animation: fint .4s linear normal 1.2s;
                animation: fint .4s linear normal 1.2s;
                opacity: 0;
            }

            .div-introduction ul > li:nth-child(5) {
                -webkit-animation: fint 1s linear normal 1.6s;
                -moz-animation: fint 1s linear normal 1.6s;
                -o-animation: fint 1s linear normal 1.6s;
                animation: fint 1s linear normal 1.6s;
                opacity: 0;
            }

                .div-introduction ul > li:nth-child(5) > img {
                    -webkit-animation: fint2 1s linear normal 1.6s;
                    -moz-animation: fint2 1s linear normal 1.6s;
                    -o-animation: fint2 1s linear normal 1.6s;
                    animation: fint2 1s linear normal 1.6s;
                    opacity: 0;
                }


    .div-introduction.hide {
        opacity: 0;
        visibility: hidden;
    }

    .div-introduction.hide ul {
        opacity: 0;
        visibility: hidden;
    }



.preloader {
    position: fixed;
    z-index: 9999;
    height: 100vh;
    height: calc(var(--vh,1vh) * 100);
    width: 100vw;
    -webkit-transition: opacity .4s linear, visibility 0s linear .4s;
    -moz-transition: opacity .4s linear, visibility 0s linear .4s;
    -o-transition: opacity .4s linear, visibility 0s linear .4s;
    transition: opacity .4s linear, visibility 0s linear .4s;
    opacity: 1;
    visibility: visible;
    top: 0;
}

body.body-primary.night .preloader {
    background-color: #0a101e;
}

body.body-primary.day .preloader {
    background-color: #FFF;
}

.preloader.hide {
    opacity: 0;
    visibility: hidden;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Russo One", sans-serif;
    height: 100vh;
    width: 100vw;
    height: calc(var(--vh,1vh) * 100);
    overflow: hidden;
    position:fixed;

}

.font-maven {
    font-family: 'Maven Pro', sans-serif !important;
}



    body.body-primary.night {
        background-color: var(--background-color);
        color: var(--text-color);
    }

    body.body-primary.day {
        background-color: var(--background-color2);
        color: var(--text-color2);
    }



    ul.ul-stepper {

    }

ul.ul-stepper > li {
    height:50px;
    width:50px;
    background-color:red;
    border-radius:10px;
    position:relative;
    margin-left:60px;
}

    ul.ul-stepper > li:not(:last-child)::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 100%; /* Posunutí na pravou stranu kruhu */
        transform: translate(100%,-50%);
        transform: translateX(0%); /* Bez posunu */
        width: 48px;
        height: 3px;
        background-color: blue;
        margin-left:5px;
    }

    ul.ul-stepper > li:first-child::after {   
        background-color: pink !important;    
    }

/*#endregion*/
/*#region PRE-DEFINE */

.preloader {
    position: fixed;
    z-index: 9999;
    height: 100vh;
    width: 100vw;
    -webkit-transition: opacity .4s linear, visibility 0s linear .4s;
    -moz-transition: opacity .4s linear, visibility 0s linear .4s;
    -o-transition: opacity .4s linear, visibility 0s linear .4s;
    transition: opacity .4s linear, visibility 0s linear .4s;
    opacity: 1;
    visibility: visible;
}

body.body-primary.night .preloader {
    background-color: #0a101e;
}

body.body-primary.day .preloader {
    background-color: #FFF;
}

.preloader.hide {
    opacity: 0;
    visibility: hidden;
}


@-webkit-keyframes crescendo {
    0% {
        transform: scale(1)
    }

    100% {
        transform: scale(1.2)
    }
}

@-moz-keyframes crescendo {
    0% {
        transform: scale(1)
    }

    100% {
        transform: scale(1.3)
    }
}

@-o-keyframes crescendo {
    0% {
        transform: scale(1)
    }

    100% {
        transform: scale(1.3)
    }
}

@-ms-keyframes crescendo {
    0% {
        transform: scale(1)
    }

    100% {
        transform: scale(1.3)
    }
}

@keyframes crescendo {
    0% {
        transform: scale(1)
    }

    100% {
        transform: scale(1.3)
    }
}

@keyframes bounce2 {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-8px);
    }

    60% {
        transform: translateY(-4px);
    }
}



input, textarea, button, select, a {
    -webkit-tap-highlight-color: rgba(0,0,0,0);
}

a {
    padding: 0;
    margin: 0;
    text-decoration: none;
}

input:focus, select:focus, textarea:focus, button:focus {
    outline: none;
}


input.middle:focus {
    outline-width: 0;
}


a, button, input, select, textarea {
    -webkit-tap-highlight-color: transparent
}

a {
    padding: 0;
    margin: 0;
    text-decoration: none
}

    a:link {
        text-decoration: none
    }

    a:visited {
        text-decoration: none
    }

    a:hover {
        text-decoration: none
    }

    a:active {
        text-decoration: none
    }

 a {
    
    cursor: pointer;
}

body.body-primary.night a {
    color: var(--text-color) !important;
}

body.body-primary.day a {
  
    color: var(--text-color2) !important;
}







    a.creator {
        color: var(--color-primary) !important;
    }


::-webkit-scrollbar-track {
    background-color: #0c1114 !important;
}
/* Handle */
::-webkit-scrollbar-thumb {
    background: var(--color-primary);
    /* border-radius: 50px !important;*/
}
    /* Handle on hover */
    ::-webkit-scrollbar-thumb:hover {
        background: var(--color-primary);
    }

::-webkit-scrollbar {
    width: 7px;
    height: 7px;
}



.div-center {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
    position: relative;
}

.div-center-top {
    display: flex;
    justify-content: center;
    align-items: start;
    height: 100%;
    width: 100%;
    position: relative;
}

.div-center-top2 {
    display: flex;
    justify-content: center;
    align-items: start;
    height: 100vh;
    height: calc(var(--vh,1vh) * 100);
    width: 100%;
    position: absolute;
    top: 0;
}

.div-center-text {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: start;
    height: 100%;
    width: 100%;
    position: relative;
}

.div-center-text-right {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: end;
    height: 100%;
    width: 100%;
    position: relative;
}

.div-center2 {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
}

.div-center-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
    position: absolute;
    bottom: 0;
}

.div-center-primary-section {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100%;
    position: absolute;
    top: 0;
}


.div-start {
    display: flex;
    align-items: center;
    justify-content: start;
    padding-left: 10px;
    height: 100%;
    width: 100%;
    position: relative;
}

    .div-start.np {
        padding-left: 0px;
    }

.div-end {
    display: flex;
    align-items: center;
    justify-content: end;
    padding-right: 10px;
    height: 100%;
    width: 100%;
    position: relative;
}

    .div-end.np {
        padding-right: 0px;
    }




    .div-end.p50 {
        padding-right: 50px;
    }

.div-row {
    height: 100%;
    flex-wrap: wrap;
    width: 100%;
    position: relative;
    display: flex;
    align-content: flex-start;
}

    .div-row > * {
        margin: 0;
        padding: 0;
    }

.ul-basic {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.ul-basic.flex {
  display:flex;
}

    .ul-basic.center {
        text-align: center;
    }

.container {
    width: 100%;
    padding-right: 200px;
    padding-left: 200px;
    margin-right: auto;
    margin-left: auto;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* right: 0;*/
}
/*#endregion */
/*#region PRIMARY-TEXTS */

h1.app {
    font-size: 180pt;
    font-weight: 100;
    z-index: 1003;
    position: absolute;
    letter-spacing: .2rem;
    top: 50%;
    right: 50%;
    transform: translate(50%,-50%);
}

body.body-primary.day h1.app {
    -webkit-text-stroke: 0.2vw #0a101e;
    color: transparent;
}

body.body-primary.night h1.app {
    -webkit-text-stroke: 0.2vw #FFF;
    color: transparent;
}



h1.service {
    font-size: 180pt;
    font-weight: 100;
    z-index: 1003;
    position: absolute;
    opacity: 0;
    letter-spacing: 1.2rem;
    -webkit-transition: opacity .2s linear 1s, color .2s linear 1.5s, letter-spacing .2s linear 1.5s;
    -moz-transition: opacity .2s linear 1s, color .2s linear 1.5s, letter-spacing .2s linear 1.5s;
    -o-transition: opacity .2s linear 1s, color .2s linear 1.5s, letter-spacing .2s linear 1.5s;
    transition: opacity .2s linear 1s, color .2s linear 1.5s, letter-spacing .2s linear 1.5s;
}

h1.service2 {
    font-size: 160pt;
    font-weight: 100;
    z-index: 1003;
    position: absolute;
    opacity: 0;
    letter-spacing: 1.2rem;
    -webkit-transition: opacity .2s linear 1s, color .2s linear 1.5s, letter-spacing .2s linear 1.5s;
    -moz-transition: opacity .2s linear 1s, color .2s linear 1.5s, letter-spacing .2s linear 1.5s;
    -o-transition: opacity .2s linear 1s, color .2s linear 1.5s, letter-spacing .2s linear 1.5s;
    transition: opacity .2s linear 1s, color .2s linear 1.5s, letter-spacing .2s linear 1.5s;
}



body.body-primary.day h1.service, body.body-primary.day h1.service2 {
    -webkit-text-stroke: 0.2vw #0a101e;
    color: #0a101e;
}

body.body-primary.night h1.service, body.body-primary.night h1.service2 {
    -webkit-text-stroke: 0.2vw #FFF;
    color: #FFF;
}

body.body-primary.day h1.service.active, body.body-primary.day h1.service2.active {
    opacity: 1;
    color: transparent;
    letter-spacing: .2rem;
}

body.body-primary.night h1.service.active, body.body-primary.night h1.service2.active {
    opacity: 1;
    color: transparent;
    letter-spacing: .2rem;
}


@media screen and (min-width:1801px) and (max-height:690px) {

    h1.app {
        font-size: 150pt;
    }

    h1.service {
        font-size: 150pt;
    }

    h1.service2 {
        font-size: 130pt;
    }

  
}


@media screen and (min-width:1801px) and (max-height:460px) {


    h1.app {
        display: none;
    }

    h1.service {
        display: none;
    }

    h1.service2 {
        display: none;
    }


}



/*#endregion */
/*#region INFO-PANEL-BOTTOM */
.div-info-primary {
    width: 350px;
    height: 100px;
    position: absolute;
    bottom: 0;
    z-index: 999;
    margin: 50px;
}

    .div-info-primary ul > li {
        width: 33.33%;
        height: 100%;
    }

    .div-info-primary.contact ul > li {
        width: 33.33%;
    }

        .div-info-primary.contact ul > li:last-child {
            display: none;
        }

    .div-info-primary ul > li i {
        font-size: 24pt;
    }

    .div-info-primary.social {
        left: 0;
    }

    .div-info-primary.contact {
        right: 0;     
    }

body.body-primary.night .ul-social > li:hover {
    background-color: rgba(0,0,0,0.1);
}

body.body-primary.day .ul-social > li:hover {
    background-color: rgba(255,255,255,0.1);
}



body.body-primary.primary .ul-social > li:hover i {
    color: var(--color-primary);
}

body.body-primary.secondary .ul-social > li:hover i {
    color: var(--color-secondary);
}

body.body-primary.third .ul-social > li:hover i {
    color: var(--color-third);
}


/*#endregion */
/*#region MODAL-ARROW */
.div-modal-arrow {
    width: 350px;
    height: 100px;
    position: absolute;
    bottom: 0;
    margin: 50px;
    margin-bottom: 180px;
    border-radius: 0px;
}

    .div-modal-arrow span {
        font-size: 19pt;
        color: #0a101e;
        font-weight: 100;
    }


body.body-primary.primary .div-modal-arrow {
    background-color: var(--color-primary);
}

body.body-primary.secondary .div-modal-arrow {
    background-color: var(--color-secondary);
}

body.body-primary.third .div-modal-arrow {
    background-color: var(--color-third);
}



.div-modal-arrow.social {
    left: 0;
    display: none;
}

    .div-modal-arrow.social.show {
        display: block;
    }




.div-modal-arrow.contact {
    right: 0;
    display: none;
}

    .div-modal-arrow.contact.show {
        display: block;
    }




.div-modal-arrow:after {
    content: '';
    display: block;
    position: absolute;
    left: 0px;
    right: 0px;
    margin-right: auto;
    margin-left: auto;
    top: 100%;
    width: 0;
    height: 0;
    border-right: 10px solid transparent;
    border-bottom: 0 solid transparent;
    border-left: 10px solid transparent;
}

body.body-primary.primary .div-modal-arrow:after {
    border-top: 10px solid var(--color-primary);
}

body.body-primary.secondary .div-modal-arrow:after {
    border-top: 10px solid var(--color-secondary);
}

body.body-primary.third .div-modal-arrow:after {
    border-top: 10px solid var(--color-third);
}


.div-modal-arrow.first:after {
    right: 235px;
}

.div-modal-arrow.last:after {
    left: 235px;
}





/*#endregion */
/*#region MODAL-PRIMARY */

.div-modal-form {
    width: 70%;
    height: 70%;
    position: relative;
    background-color: rgba(10, 16, 30,0.9);
    position: absolute;
    top: 50%;
    right: 50%;
    transform: translate(50%,-50%);
    z-index: 9999;
    border-radius: 10px;
    box-shadow: 0 0rem 1rem #000;
}


/*#endregion */
/*#region MODAL-QUESTIONS */
.div-modal-question {
    height: 50%;
    width: 40%;
    position: fixed;
    top: 50%;
    right: 50%;
    transform: translate(50%,-50%);
    z-index: 9999;
    border-radius: 0px;
    display: none;
}


.div-modal-question.active {
   display:block;
}


body.body-primary.night .div-modal-question {
    background-color: rgba(10, 16, 30, 1);
    
}

body.body-primary.day .div-modal-question {
    background-color: rgba(255, 255, 255, 1);
   
}








.div-modal-question .div-modal-header {
    height: 100px;
    position: absolute;
    width: 100%;
    
}


/*body.body-primary.primary .div-modal-question .div-modal-header {
    background-color: var(--color-primary);
}

body.body-primary.secondary .div-modal-question .div-modal-header {
    background-color: var(--color-secondary);
}

body.body-primary.third .div-modal-question .div-modal-header {
    background-color: var(--color-third);
}
*/



.div-modal-question .div-modal-body ul > li:nth-child(1) i {
    font-size: 57pt;
}

.div-modal-question .div-modal-body .div-start {
    padding-left: 100px;
}

body.body-primary.primary .div-modal-question .div-modal-body ul > li:nth-child(1) i {
    color: var(--color-primary);
}

body.body-primary.secondary .div-modal-question .div-modal-body ul > li:nth-child(1) i {
    color: var(--color-secondary);
}

body.body-primary.third .div-modal-question .div-modal-body ul > li:nth-child(1) i {
    color: var(--color-third);
}


body.body-primary.primary .div-modal-question .div-modal-body ul > li:nth-child(1) i {
    color: var(--color-primary) !important;
}

body.body-primary.secondary .div-modal-question .div-modal-body ul > li:nth-child(1) i {
    color: var(--color-secondary) !important;
}

body.body-primary.third .div-modal-question .div-modal-body ul > li:nth-child(1) i {
    color: var(--color-third) !important;
}





.div-modal-question .div-modal-body ul > li:nth-child(3) {
    margin-top: 5px;
}

.div-modal-question .div-modal-body ul > li:nth-child(3) > span {
    font-weight: 100;
    font-size: 18pt;
}

body.body-primary.primary .div-modal-question .div-modal-body ul > li:nth-child(3) > span {
    color: var(--color-primary);
}

body.body-primary.secondary .div-modal-question .div-modal-body ul > li:nth-child(3) > span {
    color: var(--color-secondary);
}

body.body-primary.third .div-modal-question .div-modal-body ul > li:nth-child(3) > span {
    color: var(--color-third);
}


.div-modal-question .div-modal-body ul > li:nth-child(2) {
    margin-top: 20px;
}


.div-modal-question .div-modal-body ul > li:nth-child(2) > p {
    font-weight: 100;
    font-size: 21pt;
    padding-right:100px;
}

    .div-modal-question .div-modal-body {
        height: 100%;
        position: relative;
        width: 100%;
    }

.div-modal-question .div-modal-icon {
    width: 100px;
    height: 100px;
    position: relative;
}

body.body-primary.primary .div-modal-question .div-modal-icon .div-modal-icon-circle i {
    color: var(--color-primary) !important;
}

body.body-primary.secondary .div-modal-question .div-modal-icon .div-modal-icon-circle i {
    color: var(--color-secondary) !important;
}

body.body-primary.third .div-modal-question .div-modal-icon .div-modal-icon-circle i {
    color: var(--color-third) !important;
}

.div-modal-question .div-modal-icon .div-modal-icon-circle i {
    font-size: 12pt;
}

    .div-modal-question .div-modal-header-body {
        height: 100%;
        position: relative;
        width: calc(100% - 200px);
    }

.div-modal-question .div-modal-header-close {
    width: 100px;
    height: 100px;
    position: relative;
    z-index: 1;
}

    .div-modal-question .div-modal-header-close i {
        font-size: 32pt;
       
    }

body.body-primary.primary .div-modal-question .div-modal-header-close i  {
    color: var(--color-primary);
}

body.body-primary.secondary .div-modal-question .div-modal-header-close i {
    color: var(--color-secondary);
}

body.body-primary.third .div-modal-question .div-modal-header-close i {
    color: var(--color-third);
}

.div-modal-question .div-modal-body ul > li:nth-child(4) {
    margin-top: 30px;
}

.div-modal-question .div-modal-body ul > li:nth-child(4) .div-modal-lb {
    height: 50px;
    width: 120px;
    position: relative;
    border-radius: 0%;
}

body.body-primary.primary .div-modal-question .div-modal-body ul > li:nth-child(4)  .div-modal-lb {
    background-color: var(--color-primary);
}

body.body-primary.secondary .div-modal-question .div-modal-body ul > li:nth-child(4)  .div-modal-lb {
    background-color: var(--color-secondary);
}

body.body-primary.third .div-modal-question .div-modal-body ul > li:nth-child(4)  .div-modal-lb {
    background-color: var(--color-third);
}

.div-modal-question .div-modal-footer .div-modal-lb a {
    color: var(--text-color2) !important;
}

.div-modal-question .div-modal-footer {
    height: 50px;
    position: relative;
    width: 100%;   
}

/*#endregion */
/*#region HEADER*/
header.header-primary {
    height: 100px;
    width: 100vw;
    position: fixed;
    z-index: 1001;
    top: 0px;
}

    /*header.header-primary.active {
        opacity: 1;
        -webkit-transition: opacity .4s linear;
        -moz-transition: opacity .4s linear;
        -o-transition: opacity .4s linear;
        transition: opacity .4s linear;
    }*/




    header.header-primary.hide {
        top: -100px;
    }


    header.header-primary .div-lang {
        width: 25%;
        height: 100%;
        position: relative;
        z-index: 1001;
        -webkit-user-select: none;
        -ms-user-select: none;
        user-select: none;
        opacity: 1;
        background-color: transparent;
    }

        header.header-primary .div-lang.active {
            background-color: #080d18;
        }



        header.header-primary .div-lang span {
            font-size: 24pt;
            font-weight: 100;
            /*   color: var(--color-primary);*/
        }

        header.header-primary .div-lang .div-lang-icon {
            width: 30px;
            height: 30px;
            position: relative;
        }


body.body-primary.primary header.header-primary .div-lang .div-lang-icon {
    color: var(--color-primary);
}

body.body-primary.secondary header.header-primary .div-lang .div-lang-icon {
    color: var(--color-secondary);
}

body.body-primary.third header.header-primary .div-lang .div-lang-icon {
    color: var(--color-third);
}


header.header-primary .div-menu .div-color-icon {
    width: 30px;
    height: 30px;
    position: relative;
}

body.body-primary.primary header.header-primary .div-menu .div-color-icon {
    color: var(--color-primary);
}

body.body-primary.secondary header.header-primary .div-menu .div-color-icon {
    color: var(--color-secondary);
}

body.body-primary.third header.header-primary .div-menu .div-color-icon {
    color: var(--color-third);
}

header.header-primary .div-logo {
    width: 50%;
    height: 100%;
    position: relative;
    z-index: 1001;
}




.body-primary.hide header.header-primary .div-logo img.logo {
    opacity: 0;
}



.body-primary header.header-primary .div-logo img.logo {
    height: 70px;
    opacity: 1;
    -webkit-transition: opacity .7s linear;
    -moz-transition: opacity .7s linear;
    -o-transition: opacity .7s linear;
    transition: opacity .7s linear;
}


.body-primary.hide header.header-primary .div-logo img.bounce2 {
    opacity: 0;
}


.body-primary header.header-primary .div-logo img.bounce2 {
    height: 70px;
    position: absolute;
    animation: bounce2 1.7s linear infinite;
    opacity: 1;
    -webkit-transition: opacity .7s linear;
    -moz-transition: opacity .7s linear;
    -o-transition: opacity .7s linear;
    transition: opacity .7s linear;
}


.body-primary.hide header.header-primary .div-logo .div-hr-right {
    opacity: 0;
}

header.header-primary .div-logo .div-hr-right {
    opacity: 1;
    -webkit-transition: opacity .7s linear .7s;
    -moz-transition: opacity .7s linear .7s;
    -o-transition: opacity .7s linear .7s;
    transition: opacity .7s linear .7s;
}


.body-primary.hide header.header-primary .div-menu {
    opacity: 0;
}

.body-primary header.header-primary .div-menu {
    opacity: 1;
    -webkit-transition: opacity .7s linear 2.1s;
    -moz-transition: opacity .7s linear 2.1s;
    -o-transition: opacity .7s linear 2.1s;
    transition: opacity .7s linear 2.1s;
}



.body-primary.hide header.header-primary .div-logo .div-hr-left {
    opacity: 0;
}

.body-primary header.header-primary .div-logo .div-hr-left {
    opacity: 1;
    -webkit-transition: opacity .7s linear 1.4s;
    -moz-transition: opacity .7s linear 1.4s;
    -o-transition: opacity .7s linear 1.4s;
    transition: opacity .7s linear 1.4s;
}

.body-primary.hide header.header-primary .div-lang {
    opacity: 0;
}

.body-primary header.header-primary .div-lang {
    opacity: 1;
    -webkit-transition: opacity .7s linear 2.8s;
    -moz-transition: opacity .7s linear 2.8s;
    -o-transition: opacity .7s linear 2.8s;
    transition: opacity .7s linear 2.8s;
}



.body-primary.hide .div-borderless img.img-x {
    opacity: 0;
    transform: scale(0) rotate(90deg);
}

.body-primary .div-borderless img.img-x {
    opacity: 1;
    transform: scale(1) rotate(0deg);
    -webkit-transition: opacity .7s linear 3.5s, transform .5s linear 3.5s;
    -moz-transition: opacity .7s linear 3.5s, transform .5s linear 3.5s;
    -o-transition: opacity .7s linear 3.5s, transform .5s linear 3.5s;
    transition: opacity .7s linear 3.5s, transform .5s linear 3.5s;
}

.body-primary.hide .div-borderless img.img-fist {
    opacity: 0;
    transform: scale(0) rotate(90deg);
}

.body-primary .div-borderless img.img-fist {
    opacity: 1;
    transform: scale(1) rotate(0deg);
    -webkit-transition: opacity .7s linear 4s, transform .7s linear 4s;
    -moz-transition: opacity .7s linear 4s, transform .7s linear 4s;
    -o-transition: opacity .7s linear 4s, transform .7s linear 4s;
    transition: opacity .7s linear 4s, transform .7s linear 4s;
    position: absolute;
}



.body-primary.hide .div-borderless img.img-second {
    opacity: 0;
    -webkit-transform: scale(0) rotate(-90deg);
    -moz-transform: scale(0) rotate(-90deg);
    -o-transform: scale(0) rotate(-90deg);
    transform: scale(0) rotate(-90deg);
}

.body-primary .div-borderless img.img-second {
    opacity: 1;
    -webkit-transform: scale(1) rotate(0deg);
    -moz-transform: scale(1) rotate(0deg);
    -o-transform: scale(1) rotate(0deg);
    transform: scale(1) rotate(0deg);
    -webkit-transition: opacity .7s linear 4s, transform .7s linear 4s;
    -moz-transition: opacity .7s linear 4s, transform .7s linear 4s;
    -o-transition: opacity .7s linear 4s, transform .7s linear 4s;
    transition: opacity .7s linear 4s, transform .7s linear 4s;
    position: absolute;
    animation: example 3s;
    animation-name: example;
    animation-iteration-count: 1;
    animation-delay: 6s;
}


@keyframes example {
    0%, 20%, 50%,60%, 80%, 100% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
        opacity: 1;
    }

    40% {
        -webkit-transform: rotate(-20deg);
        -moz-transform: rotate(-20deg);
        -o-transform: rotate(-20deg);
        transform: rotate(-20deg);
        opacity: 1;
    }
}


.body-primary.hide ul.text-primary {
    opacity: 0;
    transform: scale(0) rotate(-180deg);
}


ul.text-primary {
    text-align: center;
    position: absolute;
    z-index: -1;
    opacity: 1;
    transform: scale(1) rotate(0deg);
    -webkit-transition: opacity .2s linear 6.3s, transform .2s linear 6.3s;
    -moz-transition: opacity .2s linear 6.3s, transform .2s linear 6.3s;
    -o-transition: opacity .2s linear 6.3s, transform .2s linear 6.3s;
    transition: opacity .2s linear 6.3s, transform .2s linear 6.3s;
}



.body-primary.hide ul.text-primary > li > h1 {
    opacity: 1;
}


ul.text-primary > li > h1 {
    font-size: 24vw;
    line-height: 19vw;
    color: transparent;
    letter-spacing: .1rem;
    opacity: 0.1;
    margin-top: 0px;
    white-space: nowrap;
    -webkit-transition: opacity .2s linear 6.3s;
    -moz-transition: opacity .2s linear 6.3s;
    -o-transition: opacity .2s linear 6.3s;
    transition: opacity .2s linear 6.3s;
}

body.body-primary.night ul.text-primary > li > h1 {
    -webkit-text-stroke: 0.7vw #000;
}

body.body-primary.day ul.text-primary > li > h1 {
    -webkit-text-stroke: 0.7vw #939393;
}



.div-arrow-primary {
    position: absolute;
    bottom: 0;
    right: 0;
    padding: 0px;
    width: 40vw;
    height: 25vh;
    /*z-index: 1001;*/
    margin-bottom: 20vh;
}



.body-primary.hide .div-arrow-primary img {
    opacity: 0;
    transform: rotate(-45deg);
}

.body-primary .div-arrow-primary img {
    position: absolute;
    opacity: 1;
    -webkit-transition: opacity .4s linear 7.5s,transform .4s linear 7.5s;
    -moz-transition: opacity .4s linear 7.5s,transform .4s linear 7.5s;
    -o-transition: opacity .4s linear 7.5s,transform .4s linear 7.5s;
    transition: opacity .4s linear 7.5s,transform .4s linear 7.5s;
    height: 100%;
    width: 100%;
    position: relative;
    bottom: 0;
    transform: rotate(-15deg);
}



.div-brush-primary {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 0px;
    width: 100vw;
    height: 35vh;
}

    .div-brush-primary .div-brush-primary-body {
        height: 100%;
        width: 70%;
        position: relative;
    }

.body-primary.hide .div-brush-primary .div-brush-primary-body img {
    opacity: 0;
}

.body-primary.hide .div-brush-primary .div-brush-primary-body span {
    opacity: 0;
}


.body-primary .div-brush-primary .div-brush-primary-body img {
    position: absolute;
    opacity: 1;
    -webkit-transition: opacity .2s linear 7.9s;
    -moz-transition: opacity .2s linear 7.9s;
    -o-transition: opacity .2s linear 7.9s;
    transition: opacity .2s linear 7.9s;
    height: 100%;
    width: 100%;
}

.body-primary .div-brush-primary .div-brush-primary-body span {
    opacity: 1;
    -webkit-transition: opacity .4s linear 8.5s;
    -moz-transition: opacity .4s linear 8.5s;
    -o-transition: opacity .4s linear 8.5s;
    transition: opacity .4s linear 8.5s;
    /*  z-index: 1003;*/
    color: var(--background-color);
    font-size: 21pt;
    font-weight: 100;
    margin-top: -25px;
    transform: rotate(17deg);
    margin-right: -15px;
}



header.header-primary .div-menu {
    width: 25%;
    height: 100%;
    position: relative;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    z-index: 1005;
}

    header.header-primary .div-menu i {
        font-size: 24pt;
        /*  color: var(--color-primary);*/
    }




body.body-primary.primary header.header-primary .div-menu i.active {
    color: var(--color-primary);
}

body.body-primary.secondary header.header-primary .div-menu i.active {
    color: var(--color-secondary);
}

body.body-primary.third header.header-primary .div-menu i.active {
    color: var(--color-third);
}





.div-color-body {
    width: calc(25% - 100px);
    height: 120px;
    position: absolute;
    right: 0;
    background-color: #080d18;
    opacity: 0;
    z-index: 1000;
    -webkit-transition: opacity .4s linear;
    -moz-transition: opacity .4s linear;
    -o-transition: opacity .4s linear;
    transition: opacity .4s linear;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    margin: 0px 50px;
    border-radius: 0px;
    margin-top: 100px;
    top: -500px;
}


body.body-primary.primary .div-color-body {
    border: 2px solid var(--color-primary);
}

body.body-primary.secondary .div-color-body {
    border: 2px solid var(--color-secondary);
}

body.body-primary.third .div-color-body {
    border: 2px solid var(--color-third);
}


body.body-primary.night .div-color-body {
    background-color: var(--background-color);
}

body.body-primary.day .div-color-body {
    background-color: var(--background-color2);
}







.div-color-body.active {
    opacity: 1;
    top: 0;
}


.div-color-header {
    width: 100%;
    height: 50px;
    position: relative;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border-radius: 0px;
}


body.body-primary.primary .div-color-header {
    background-color: var(--color-primary);
}

body.body-primary.secondary .div-color-header {
    background-color: var(--color-secondary);
}

body.body-primary.third .div-color-header {
    background-color: var(--color-third);
}

.div-color-header span {
    font-size: 14pt;
    font-weight: 100;
    color: var(--background-color);
}


.div-color-primary-body {
    width: 50%;
    height: 70px;
    position: relative;
}

    .div-color-primary-body .body {
        width: 33.33%;
        height: 70px;
        position: relative;
    }

    .div-color-primary-body .body2 {
        width: 33.33%;
        height: 70px;
        position: relative;
    }

        .div-color-primary-body .body2 .dot {
            height: 30px;
            width: 30px;
            position: relative;
            border-radius: 0%;
        }

            .div-color-primary-body .body2 .dot i.check {
                color: #080d18;
                font-size: 10pt;
            }

            .div-color-primary-body .body2 .dot.yellow {
                background-color: #C1FF00;
            }

            .div-color-primary-body .body2 .dot.pink {
                background-color: #ff00c1;
            }

            .div-color-primary-body .body2 .dot.blue {
                background-color: #00c1ff;
            }



.div-color-body-mode {
    width: 45px;
    height: 45px;
    position: relative;
    border-radius: 0px;
}

    .div-color-body-mode i {
        font-size: 16pt;
    }

body.body-primary.night .div-color-body-mode i {
    color: var(--text-color);
}

body.body-primary.day .div-color-body-mode i {
    color: var(--text-color2);
}


body.body-primary.night .div-color-body-mode.active i {
    color: var(--text-color2);
}


body.body-primary.day .div-color-body-mode.active i {
    color: var(--text-color2);
}



body.body-primary.primary .div-color-body-mode.active {
    background-color: var(--color-primary);
}

body.body-primary.secondary .div-color-body-mode.active {
    background-color: var(--color-secondary);
}

body.body-primary.third .div-color-body-mode.active {
    background-color: var(--color-third);
}














.div-lang-body {
    width: calc(25% - 100px);
    height: 120px;
    position: absolute;
    background-color: #080d18;
    opacity: 0;
    z-index: 1000;
    -webkit-transition: opacity .4s linear;
    -moz-transition: opacity .4s linear;
    -o-transition: opacity .4s linear;
    transition: opacity .4s linear;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    margin: 0px 50px;
    border-radius: 0px;
    top: -500px;
    margin-top: 100px;
}






body.body-primary.primary .div-lang-body {
    border: 2px solid var(--color-primary);
}

body.body-primary.secondary .div-lang-body {
    border: 2px solid var(--color-secondary);
}

body.body-primary.third .div-lang-body {
    border: 2px solid var(--color-third);
}



body.body-primary.night .div-lang-body {
    background-color: var(--background-color);
}

body.body-primary.day .div-lang-body {
    background-color: var(--background-color2);
}




.div-lang-body.active {
    opacity: 1;
    top: 0px;
}

.div-lang-header {
    width: 100%;
    height: 50px;
    position: relative;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border-radius: 0px;
}

body.body-primary.primary .div-lang-header {
    background-color: var(--color-primary);
}

body.body-primary.secondary .div-lang-header {
    background-color: var(--color-secondary);
}

body.body-primary.third .div-lang-header {
    background-color: var(--color-third);
}





.div-lang-header span {
    font-size: 14pt;
    font-weight: 100;
    color: var(--background-color);
}





.div-lang-item {
    width: 33.33%;
    height: 70px;
    position: relative;
}

    /* header.header-primary .div-lang-item.active span {
            color: var(--color-primary);
            
        }*/



    .div-lang-item span {
        font-size: 16pt;
        font-weight: 100;
    }

    .div-lang-item img {
        height: 35px;
        filter: grayscale(100%) opacity(50%);
    }

    .div-lang-item:not(.active):hover img {   
        filter: grayscale(0%);
    }

    .div-lang-item.active img {
        filter: grayscale(0%);     
    }


.nav-menu-body {
    width: 500px;
    height: calc(100vh - 100px);
    right: -500px;
    position: absolute;
    top: 0;
    margin-top: 100px;
    -webkit-transition: right .4s linear;
    -moz-transition: right .4s linear;
    -o-transition: right .4s linear;
    transition: right .4s linear;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-color: rgba(8, 13, 24, 0.9);
    z-index: 1002;
}

    .nav-menu-body.active {
        right: -500px;
    }

/* header.header-primary .nav-menu-body ul {
          
            height: 100%;
            width: 100%;
        }

            header.header-primary .nav-menu-body ul > li {
                width: 100%;
                height: 22.5%;
                position: relative;
                font-size: 42pt;
                font-weight: 600;
            }

                header.header-primary .nav-menu-body ul > li:last-child {
                    height: 10%;
                }

                header.header-primary .nav-menu-body ul > li > ul.social {
                    display: flex;
                }

                    header.header-primary .nav-menu-body ul > li > ul.social > li {
                        width: 33.33%;
                        height: 100%;
                        position: relative;
                        background-color: var(--color-primary);
                    }

                        header.header-primary .nav-menu-body ul > li > ul.social > li i {
                            font-size: 28pt;
                            color: var(--background-color);
                        }*/



.div-nav-menu-body {
    height: calc(100% - 170px);
    width: 100%;
    margin-top: 70px;
}


.div-nav-menu-footer {
    width: 100%;
    height: 100px;
    position: relative;
    background-color: #080d18;
    left: 0;
    bottom: 0
}

.div-nav-menu-footer {
    width: 100%;
    height: 100px;
    position: absolute;
    background-color: #080d18;
    left: 0;
    bottom: 0
}

    .div-nav-menu-footer ul {
        display: flex;
        height: 100%;
    }

        .div-nav-menu-footer ul > li {
            width: 33.33%;
            height: 100%;
            position: relative;
        }

            .div-nav-menu-footer ul > li i {
                font-size: 21pt;
            }

.div-color-button {
    display: inline;
}

.div-menu-button {
    display: none;
}


/*#endregion */
/*#region PRIMARY-SECTION */
.section-primary {
    /* height: calc(100vh - 120px);
    height: calc(var(--vh,1vh) * 100 - 120px);*/
    height: 100vh;
    height: calc(var(--vh,1vh) * 100);
    position: relative;
    overflow: hidden;
}


.div-section-img {
    height: 100vh;
    height: calc(var(--vh,1vh) * 100);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.section-img-animation {
    -webkit-transition: transform 1s linear,opacity 1s linear;
    -moz-transition: transform 1s linear,opacity 1s linear;
    -o-transition: transform 1s linear,opacity 1s linear;
    transition: transform 1s linear,opacity 1s linear;
    opacity: 1;
    animation: crescendo 5s alternate infinite ease-in;
    filter: brightness(100%) grayscale(100%) opacity(15%);
}

.section-img-first {
  
}
.section-img-first2 {
    background-image: url(../img/jp-min2.webp);
    animation: crescendo 5s alternate infinite ease-in;
    position: fixed;
    height: 100%;
    width: 100%;
    top: 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    opacity: 0.2;
}

body.body-primary.day .section-img-first2 {
    opacity: 0;
}

body.body-primary.night .section-img-first2 {
    opacity: 0.2;
}


.div-borderless {
    height: 40vh;
    width: 55vw;
}

    .div-borderless img {
        height: 100%;
        width: 100%;
    }
/*#endregion */
/*#region PRIMARY-IMG */

img.img.app {
    height: 70%;
    width: auto;
    position: absolute;
    z-index: 1003;
    opacity: 0;
    -webkit-transition: opacity .4s linear 0s;
    -moz-transition: opacity .4s linear 0s;
    -o-transition: opacity .4s linear 0s;
    transition: opacity .4s linear 0s;
}

    img.img.app.active {
        opacity: 1;
        -webkit-transition: opacity .4s linear 0s;
        -moz-transition: opacity .4s linear 0s;
        -o-transition: opacity .4s linear 0s;
        transition: opacity .4s linear 0s;
    }


img.img.graf {
    opacity: 0;
    height: 70%;
    width: auto;
    position: absolute;
    z-index: 1003;
    -webkit-transition: opacity .4s linear 0s;
    -moz-transition: opacity .4s linear 0s;
    -o-transition: opacity .4s linear 0s;
    transition: opacity .4s linear 0s;
}


    img.img.graf.active {
        opacity: 1;
        -webkit-transition: opacity .4s linear 2s;
        -moz-transition: opacity .4s linear 2s;
        -o-transition: opacity .4s linear 2s;
        transition: opacity .4s linear 2s;
    }


img.img.webs {
    height: 80%;
    width: auto;
    position: absolute;
    z-index: 1003;
    opacity: 0;
    -webkit-transition: opacity .4s linear 0s;
    -moz-transition: opacity .4s linear 0s;
    -o-transition: opacity .4s linear 0s;
    transition: opacity .4s linear 0s;
}

    img.img.webs.active {
        opacity: 1;
        -webkit-transition: opacity .4s linear 2s;
        -moz-transition: opacity .4s linear 2s;
        -o-transition: opacity .4s linear 2s;
        transition: opacity .4s linear 2s;
    }

img.img.bus {
    height: 85%;
    width: auto;
    position: absolute;
    z-index: 1003;
    opacity:0;
    -webkit-transition: opacity .4s linear 0s;
    -moz-transition: opacity .4s linear 0s;
    -o-transition: opacity .4s linear 0s;
    transition: opacity .4s linear 0s;
}

    img.img.bus.active {
        opacity: 1;
        -webkit-transition: opacity .4s linear 2s;
        -moz-transition: opacity .4s linear 2s;
        -o-transition: opacity .4s linear 2s;
        transition: opacity .4s linear 2s;
    }

img.img.mar {
    height: 80%;
    width: auto;
    position: absolute;
    z-index: 1003;
    opacity: 0;
    -webkit-transition: opacity .4s linear 0s;
    -moz-transition: opacity .4s linear 0s;
    -o-transition: opacity .4s linear 0s;
    transition: opacity .4s linear 0s;
}

    img.img.mar.active {
        opacity: 1;
        -webkit-transition: opacity .4s linear 2s;
        -moz-transition: opacity .4s linear 2s;
        -o-transition: opacity .4s linear 2s;
        transition: opacity .4s linear 2s;
    }


    img.img.brush {
        height: 85%;
        width: auto;
        position: absolute;
        top: 50%;
        right: 50%;
        transform: translate(50%,-50%);
        margin-top: 10px;       
    }


@media screen and (min-width:1801px) and (min-height:1450px) {

    img.img.brush {
        height: auto;
        width: 70%;
        margin-top: 10px;
    }


    img.img.app {
        height: auto;
        width: 70%;
        margin-top: 10px;
    }

    img.img.graf {
        height: auto;
        width: 65%;
        margin-top: 10px;
    }

    img.img.bus {
        height: auto;
        width: 60%;
        margin-top: 10px;
    }

    img.img.mar {
        height: auto;
        width: 75%;
        margin-top: 10px;
    }

    img.img.webs {
        height: auto;
        width: 65%;
        margin-top: 10px;
    }
}




@media screen and (min-width:992px) and (max-height:700px) {

    img.img.brush {
        height: 75%;
    }
}

@media screen and (min-width:992px) and (max-height:600px) {

    img.img.brush {
        height: 65%;
    }

}



@media screen and (min-width:992px) and (max-height:483px) {

    img.img.brush {
        display: none;
    }

    img.img.app {
        display: none;
    }

    img.img.graf {
        display: none;
    }

    img.img.bus {
        display: none;
    }

    img.img.mar {
        display: none;
    }

    img.img.webs {
        display: none;
    }


}

    /*#endregion */  
/*#region HR */
    .div-hr-right {
        width: 100%;
        position: absolute;
        height: 20px;
    }


    body.body-primary.primary .div-hr-right {
        border-right: 2px solid var(--color-primary);
    }

    body.body-primary.secondary .div-hr-right {
        border-right: 2px solid var(--color-secondary);
    }

    body.body-primary.third .div-hr-right {
        border-right: 2px solid var(--color-third);
    }



    .div-hr-left {
        width: 100%;
        position: absolute;
        height: 20px;
    }

    body.body-primary.primary .div-hr-left {
        border-left: 2px solid var(--color-primary);
    }

    body.body-primary.secondary .div-hr-left {
        border-left: 2px solid var(--color-secondary);
    }

    body.body-primary.third .div-hr-left {
        border-left: 2px solid var(--color-third);
    }



    .div-hr-right2 {
        border-right: 5px solid var(--color-primary);
        width: 100%;
        position: absolute;
        height: 500px;
    }



    body.body-primary.primary .div-hr-right2 {
        border-right: 5px solid var(--color-primary);
    }

    body.body-primary.secondary .div-hr-right2 {
        border-right: 5px solid var(--color-secondary);
    }

    body.body-primary.third .div-hr-right2 {
        border-right: 5px solid var(--color-third);
    }





    .div-hr-right.menu {
        border-right: 2px solid var(--background-color);
        width: 100%;
        position: absolute;
        height: 30px;
    }
    /*#endregion */
/*#region OPACITY */
    .div-opacity {
        position: absolute;
        width: 0vw;
        height: 0vh;
        top: 0;
        background-color: rgba(0,0,0,0.99);
        z-index: 1000;
    }

    body.body-primary.night .div-opacity {
        background-color: rgba(8, 13, 24, 0.9);
    }

    body.body-primary.day .div-opacity {
        background-color: rgba(255,255,255,0.5);
    }




    .div-opacity.active {
        width: 100vw;
        height: 100vh;
        height: calc(var(--vh,1vh) * 100);
    }

    /*#endregion */
/*#region COOKIES */
    .div-cookies {
        height: 200px;
        width: 0%;
        position: absolute;
        bottom: -500px;
        margin-bottom: 50px;
        border-radius: 0px;
        z-index: 1002;
        background-color: #4BB543;
        opacity: 0;
        -webkit-transition: width .3s linear 2s,opacity .3s linear 2s,bottom .3s linear 2.3s;
        -moz-transition: width .3s linear 2s,opacity .3s linear 2s,bottom .3s linear 2.3s;
        -o-transition: width .3s linear 2s,opacity .3s linear 2s,bottom .3s linear 2.3s;
        transition: width .3s linear 2s,opacity .3s linear 2s,bottom .3s linear 2.3s;
    }


        .div-cookies.active {
            width: 60%;
            opacity: 1;
            -webkit-transition: none;
            -moz-transition: none;
            -o-transition: none;
            transition: none;
            bottom: 0;
        }


    /*.div-cookies.active {
        display: inline;
    }*/


    body.body-primary.night .div-cookies.active {
        background-color: var(--background-color);
    }

    body.body-primary.day .div-cookies.active {
        background-color: var(--background-color2);
    }





    body.body-primary.primary .div-cookies.active {
        border: 2px solid var(--color-primary);
    }

    body.body-primary.secondary .div-cookies.active {
        border: 2px solid var(--color-secondary);
    }

    body.body-primary.third .div-cookies.active {
        border: 2px solid var(--color-third);
    }


    .div-cookies.active .div-cookies-icon {
        width: 200px;
        height: 100%;
        position: relative;
        border-radius: 0px;
    }

    .div-cookies .div-cookies-icon {
        width: 100%;
        height: 100%;
    }



    .imageRot {
        -webkit-animation: spin 1s ease-in-out;
        -moz-animation: spin 1s ease-in-out;
        animation: spin 1s ease-in-out;
    }

    @-moz-keyframes spin {
        0% {
            opacity: 0;
        }



        100% {
            opacity: 1;
            -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
        }
    }

    @-webkit-keyframes spin {
        0% {
            opacity: 0;
        }

        100% {
            opacity: 1;
            -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
        }
    }

    @keyframes spin {
        0% {
            opacity: 0;
        }

        100% {
            opacity: 1;
            -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
        }
    }


    .imageRot2 {
        -webkit-animation: spin2 .5s ease-in-out;
        -moz-animation: spin2 .5s ease-in-out;
        animation: spin2 .5s ease-in-out;
    }

    body.body-primary.primary .imageRot2 {
        color: var(--color-primary);
    }

    body.body-primary.secondary .imageRot2 {
        color: var(--color-secondary);
    }

    body.body-primary.third .imageRot2 {
        color: var(--color-third);
    }




    @-moz-keyframes spin2 {

        100% {
            -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
        }
    }

    @-webkit-keyframes spin2 {


        100% {
            -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
        }
    }

    @keyframes spin2 {


        100% {
            -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
        }
    }


    .div-cookies .div-cookies-icon i {
        font-size: 51pt;
        color: #FFF;
    }


    .div-cookies.active .div-cookies-icon i {
        color: #0a101e;
    }



    body.body-primary.primary .div-cookies.active .div-cookies-icon {
        background-color: var(--color-primary);
    }

    body.body-primary.secondary .div-cookies.active .div-cookies-icon {
        background-color: var(--color-secondary);
    }

    body.body-primary.third .div-cookies.active .div-cookies-icon {
        background-color: var(--color-third);
    }





    .div-cookies.active .div-cookies-text {
        width: calc(100% - 500px);
        height: 100%;
        position: relative;
        display: inline;
    }

    .div-cookies .div-cookies-text {
        display: none;
    }



    .div-cookies.active .div-cookies-text > .div-start {
        padding-left: 20px;
    }

    .div-cookies.active .div-cookies-text ul > li:first-child {
        font-size: 21pt;
    }

    body.body-primary.primary .div-cookies.active .div-cookies-text ul > li:first-child {
        color: var(--color-primary);
    }

    body.body-primary.secondary .div-cookies.active .div-cookies-text ul > li:first-child {
        color: var(--color-secondary);
    }

    body.body-primary.third .div-cookies.active .div-cookies-text ul > li:first-child {
        color: var(--color-third);
    }




    .div-cookies.active .div-cookies-text ul > li:last-child {
        font-size: 8pt;
        margin-top: 5px;
        width: 90%;
        font-weight: 500;
    }

    .div-cookies.active .div-cookies-button {
        width: 300px;
        height: 100%;
        position: relative;
        display: inline;
        border-radius: 0px;
    }


    .div-cookies .div-cookies-button {
        display: none;
    }



    body.body-primary.night .div-cookies.active .div-cookies-button {
        background-color: var(--background-color);
    }

    body.body-primary.day .div-cookies.active .div-cookies-button {
        background-color: var(--background-color2);
    }



    .div-cookies .div-cookies-button .div-cookies-button-body {
        width: 200px;
        height: 70px;
        border-radius: 0px;
    }



    body.body-primary.primary .div-cookies.active .div-cookies-button .div-cookies-button-body {
        border: 2px solid var(--color-primary);
    }

    body.body-primary.secondary .div-cookies.active .div-cookies-button .div-cookies-button-body {
        border: 2px solid var(--color-secondary);
    }

    body.body-primary.third .div-cookies.active .div-cookies-button .div-cookies-button-body {
        border: 2px solid var(--color-third);
    }






    .div-cookies-button .div-cookies-button-body span {
        font-weight: 500;
        font-size: 14pt;
    }

    .div-cookies .div-cookies-button .div-cookies-button-body:hover span {
        color: var(--text-color);
    }


    .div-cookies.active .div-cookies-button .div-cookies-button-body:hover span {
        color: var(--text-color2);
    }



    body.body-primary.primary .div-cookies.active .div-cookies-button .div-cookies-button-body {
        border: 2px solid var(--color-primary);
    }

        body.body-primary.primary .div-cookies.active .div-cookies-button .div-cookies-button-body:hover {
            background-color: var(--color-primary);
        }

    body.body-primary.secondary .div-cookies.active .div-cookies-button .div-cookies-button-body {
        border: 2px solid var(--color-secondary);
    }

        body.body-primary.secondary .div-cookies.active .div-cookies-button .div-cookies-button-body:hover {
            background-color: var(--color-secondary);
        }

    body.body-primary.third .div-cookies.active .div-cookies-button .div-cookies-button-body {
        border: 2px solid var(--color-third);
    }

        body.body-primary.third .div-cookies.active .div-cookies-button .div-cookies-button-body:hover {
            background-color: var(--color-third);
        }

    /*#endregion */


    @media screen and (max-width:1800.98px) {

        /*#region INFO-PANEL-BOTTOM */
        .div-info-primary {
            margin: 40px;
           
        }
        /*#endregion */
        /*#region HEADER*/
        header.header-primary .div-logo {
            
        }
        /*#endregion */       
        /*#region PRIMARY-TEXT */



        h1.app {
            font-size: 120pt;
        }


        h1.service {
            font-size: 120pt;
        }

        h1.service2 {
            font-size: 110pt;
        }


           
        /*#endregion */
        /*#region PRIMARY-IMG */


        @media screen and (max-width:1800.98px) and (min-width:1601px) and (min-height:1200px) {

            img.img.brush {
                height: auto;
                width: 70%;
                margin-top: 10px;
            }

            img.img.app {
                height: auto;
                width: 70%;
                margin-top: 10px;
            }

            img.img.graf {
                height: auto;
                width: 65%;
                margin-top: 10px;
            }

            img.img.bus {
                height: auto;
                width: 60%;
                margin-top: 10px;
            }

            img.img.mar {
                height: auto;
                width: 75%;
                margin-top: 10px;
            }

            img.img.webs {
                height: auto;
                width: 65%;
                margin-top: 10px;
            }
        }



        /*#endregion */

        @media screen and (max-width:1800.98px) and (min-width:1601px) and (max-height:611px) {          
        }

        @media screen and (max-width:1800.98px) and (min-width:1601px) and (max-height:450px) {
            /*#region PRIMARY-IMG */
            h1.app {
                display: none;
            }

            h1.service {
                display: none;
            }

            h1.service2 {
                display: none;
            }
            /*#endregion */
        }
    }

    @media screen and (max-width:1600.98px) {

        /*#region PRE-DEFINE */
        .container {
            padding-right: 100px;
            padding-left: 100px;
        }
        /*#endregion */     
        /*#region INFO-PANEL-BOTTOM */
        .div-info-primary {
            margin: 30px;
        }
        /*#endregion */
        /*#region PRIMARY-TEXT */

        h1.app {
            font-size: 115pt;
        }



        h1.service {
            font-size: 115pt;
        }



        h1.service2 {
            font-size: 105pt;
        }


        /*#endregion */
        /*#region PRIMARY-IMG */


        /*#region PRIMARY-IMG */


        @media screen and (max-width:1600.98px) and (min-width:1440px) and (min-height:1200px) {

            img.img.brush {
                height: auto;
                width: 70%;
                margin-top: 10px;
            }


            img.img.app {
                height: auto;
                width: 70%;
                margin-top: 10px;
            }

            img.img.graf {
                height: auto;
                width: 65%;
                margin-top: 10px;
            }

            img.img.bus {
                height: auto;
                width: 60%;
                margin-top: 10px;
            }

            img.img.mar {
                height: auto;
                width: 75%;
                margin-top: 10px;
            }

            img.img.webs {
                height: auto;
                width: 65%;
                margin-top: 10px;
            }
        }



        /*#endregion */


        






        /*#endregion */
        /* #region COOKIES */
        .div-cookies.active {
            width: 70%;
        }
        /* #endregion */
        /*#region HEADER*/
        header.header-primary .div-logo {
         
        }


        .div-lang-body {
            width: calc(40% - 100px);
        }

        .div-color-body {
            width: calc(40% - 100px);
        }


        /*#endregion */

        @media screen and (max-width:1600.98px) and (min-width:1440px) and (max-height:586px) {        
        }
        @media screen and (max-width:1600.98px) and (min-width:1440px) and (max-height:443px) {
            /*#region PRIMARY-TEXT */
            h1.app {
                display: none;
            }

            h1.service {
                display: none;
            }

            h1.service2 {
                display: none;
            }
            /*#endregion */         
        }

    }

    @media screen and (max-width:1439.98px) {

        /* #region COOKIES */
        .div-cookies.active {
            width: 80%;
        }
        /* #endregion */
        /*#region HEADER*/
        header.header-primary .div-logo {
            
        }
        /*#endregion */
        /*#region INFO-PANEL-BOTTOM */
        .div-info-primary {
            width: 300px;
        }

            .div-info-primary ul > li i {
                font-size: 21pt;
            }

        /*#endregion */ 
        /*#region MODAL-ARROW */
        .div-modal-arrow {
            width: 300px;
            border-radius: 0px;
        }

            .div-modal-arrow.first:after {
                right: 200px;
            }

            .div-modal-arrow.last:after {
                left: 200px;
            }


            .div-modal-arrow span {
                font-size: 17pt;
            }
        /*#endregion */
        /*#region PRIMARY-TEXT */

        h1.app {
            font-size: 104pt;
        }

        h1.service {
            font-size: 104pt;
        }

        h1.service2 {
            font-size: 94pt;
        }

        /*#endregion */
        /*#region PRIMARY-IMG */


        @media screen and (max-width:1439.98px) and (min-width:1200px) and (min-height:1000px) {

            img.img.brush {
                height: auto;
                width: 75%;
                margin-top: 10px;
            }


            img.img.app {
                height: auto;
                width: 70%;
                margin-top: 10px;
            }

            img.img.graf {
                height: auto;
                width: 65%;
                margin-top: 10px;
            }

            img.img.bus {
                height: auto;
                width: 60%;
                margin-top: 10px;
            }

            img.img.mar {
                height: auto;
                width: 75%;
                margin-top: 10px;
            }

            img.img.webs {
                height: auto;
                width: 65%;
                margin-top: 10px;
            }
        }



        /*#endregion */


        @media screen and (max-width:1439.98px) and (min-width:1200px) and (max-height:586px) {     
        }

        @media screen and (max-width:1439.98px) and (min-width:1200px) and (max-height:430px) {
            /*#region PRIMARY-TEXT */
            h1.app {
                display: none;
            }

            h1.service {
                display: none;
            }

            h1.service2 {
                display: none;
            }
            /*#endregion */
        }

    }


    @media screen and (max-width:1199.98px) {

        /*#region INFO-PANEL-BOTTOM */
        .div-info-primary {
            margin: 20px;
        }
        /*#endregion */      
        /*#region HEADER*/
        header.header-primary .div-logo {
            
        }
        /*#endregion */     
        /* #region COOKIES */
        .div-cookies.active {
            width: 90%;
        }
        /* #endregion */
        /*#region PRIMARY-TEXT */

        h1.app {
            font-size: 104pt;
        }



        h1.service {
            font-size: 104pt;
        }



        h1.service2 {
            font-size: 94pt;
        }



        /*#endregion */
        /*#region PRIMARY-IMG */

        @media screen and (max-width:1199.98px) and (min-width:992px) and (min-height:870px) {

            img.img.brush {
                height: auto;
                width: 75%;
                margin-top: 10px;
            }


            img.img.app {
                height: auto;
                width: 70%;
                margin-top: 10px;
            }

            img.img.graf {
                height: auto;
                width: 65%;
                margin-top: 10px;
            }

            img.img.bus {
                height: auto;
                width: 60%;
                margin-top: 10px;
            }

            img.img.mar {
                height: auto;
                width: 75%;
                margin-top: 10px;
            }

            img.img.webs {
                height: auto;
                width: 65%;
                margin-top: 10px;
            }


        }


        /*#endregion */


        @media screen and (max-width:1199.98px) and (min-width:992px) and (max-height:578px) {      
        }

        @media screen and (max-width:1199.98px) and (min-width:992px) and (max-height:553px) {       
        }

        @media screen and (max-width:1199.98px) and (min-width:992px) and (max-height:463px) {
            /*#region PRIMARY-TEXT */
            h1.app {
                display: none;
            }

            h1.service {
                display: none;
            }

            h1.service2 {
                display: none;
            }
            /*#endregion */          
        }

    }


@media screen and (max-width:991.98px) {

    /*#region INFO-PANEL-BOTTOM */
    .div-info-primary {
        margin: 20px;
        margin-bottom: 20px;
    }
    /*#endregion */
    /* #region COOKIES */
    .div-cookies {
        height: 150px;
    }

        .div-cookies.active .div-cookies-icon {
            width: 150px;
        }

        .div-cookies .div-cookies-icon i {
            font-size: 42pt;
        }

        .div-cookies.active .div-cookies-text {
            width: calc(100% - 320px);
        }

            .div-cookies.active .div-cookies-text ul > li:first-child {
                font-size: 16pt;
            }

            .div-cookies.active .div-cookies-text ul > li:last-child {
                font-size: 7pt;
                width: 95%;
            }

        .div-cookies.active .div-cookies-button {
            width: 170px;
        }

        .div-cookies .div-cookies-button .div-cookies-button-body {
            width: 120px;
            height: 60px;
            border-radius: 0px;
        }

    body.body-primary.primary .div-cookies.active .div-cookies-button .div-cookies-button-body {
        background-color: var(--color-primary);
    }

    body.body-primary.secondary .div-cookies.active .div-cookies-button .div-cookies-button-body {
        background-color: var(--color-secondary);
    }

    body.body-primary.third .div-cookies.active .div-cookies-button .div-cookies-button-body {
        background-color: var(--color-third);
    }

    .div-cookies-button .div-cookies-button-body span {
        color: var(--text-color2);
        font-size: 12pt;
    }
    /* #endregion */
    /*#region HEADER*/



   

    .div-lang-body {
        width: calc(60% - 100px);
    }

    .div-color-body {
        width: calc(60% - 100px);
    }

    .div-info-primary {
        width: 250px;
        height: 70px;
    }




    .div-modal-arrow {
        width: 250px;
        height: 70px;
        margin-bottom: 140px;
        border-radius: 0px;
    }

        .div-modal-arrow.first:after {
            right: 165px;
        }

        .div-modal-arrow.last:after {
            left: 165px;
        }

        .div-modal-arrow span {
            font-size: 15pt;
        }

        .div-modal-arrow.social.show {
            display: none;
        }

            .div-modal-arrow.contact.show {
                display: none;
            }



   /* @media screen and (max-width:991.98px) and (min-width:768px) and (max-height:430px) {
        header.header-primary {
          
            height: 70px;
        }
    }*/


    /*#endregion */
    /*#region PRIMARY-IMG */


    img.img.brush {
        height: auto;
        width: 65%;
        margin-top: 10px;
    }

    img.img.app {
        height: auto;
        width: 60%;
        margin-top: 10px;
    }

    img.img.graf {
        height: auto;
        width: 55%;
        margin-top: 10px;
    }

    img.img.bus {
        height: auto;
        width: 50%;
        margin-top: 10px;
    }

    img.img.mar {
        height: auto;
        width: 65%;
        margin-top: 10px;
    }

    img.img.webs {
        height: auto;
        width: 55%;
        margin-top: 10px;
    }


    @media screen and (max-width:991.98px) and (min-width:768px) and (max-height:730px) {
        img.img.brush {
            height: 60%;
            width: auto;
            margin-top:0px;
        }

        img.img.app {
            height: 60%;
            width: auto;
            margin-top: 0px;
        }

        img.img.graf {
            height: 60%;
            width: auto;
            margin-top: 0px;
        }

        img.img.bus {
            height: 60%;
            width: auto;
            margin-top: 0px;
        }

        img.img.mar {
            height: 60%;
            width: auto;
            margin-top: 0px;
        }

        img.img.webs {
            height: 60%;
            width: auto;
            margin-top: 0px;
        }

    }

    @media screen and (max-width:991.98px) and (min-width:768px) and (max-height:400px) {


        img.img.brush {
           display:none;
        }

        img.img.app {
            display: none;
        }

        img.img.graf {
            display: none;
        }

        img.img.bus {
            display: none;
        }

        img.img.mar {
            display: none;
        }

        img.img.webs {
            display: none;
        }

    }
      

        /*#endregion */
    /*#region PRIMARY-TEXT */


    h1.app {     
        font-size: 42pt;
    }

    h1.service {
        font-size: 42pt;
    }

    h1.service2 {
        font-size: 42pt;
    }


    @media screen and (max-width:991.98px) and (min-width:768px) and (max-height:324px) {

        h1.app {
            display: none;
        }

        h1.service {
            display: none;
        }

        h1.service2 {
            display: none;
        }

    }
    /*#endregion */
    
}

@media screen and (max-width:911.98px) {

    /*#region PRIMARY-IMG */
    img.img.brush {
        width: 65%;
    }

    img.img.app {
        width: 60%;
    }

    img.img.graf {
        width: 55%;
    }

    img.img.bus {
        width: 50%;
    }

    img.img.mar {
        width: 65%;
    }

    img.img.webs {
        width: 55%;
    }
    /*#endregion */

    @media screen and (max-width:991.98px) and (min-width:768px) and (max-height:730px) {
        /*#region PRIMARY-IMG */
        img.img.brush {
            height: 60%;
            width: auto;
            margin-top: 0px;
        }

        img.img.app {
            height: 60%;
            width: auto;
            margin-top: 0px;
        }

        img.img.graf {
            height: 60%;
            width: auto;
            margin-top: 0px;
        }

        img.img.bus {
            height: 60%;
            width: auto;
            margin-top: 0px;
        }

        img.img.mar {
            height: 60%;
            width: auto;
            margin-top: 0px;
        }

        img.img.webs {
            height: 60%;
            width: auto;
            margin-top: 0px;
        }
        /*#endregion */    
    }
   
}


@media screen and (max-width:820px) {

    /*#region PRIMARY-IMG */
    img.img.brush {
        width: 75%;
        margin-top: 0px;
    }

    img.img.app {
        width: 70%;
    }


    img.img.graf {
        width: 65%;
    }


    img.img.bus {
        width: 60%;
    }

    img.img.mar {
        width: 75%;
    }

    img.img.webs {
        width: 65%;
    }
    /*#endregion */

    @media screen and (max-width:991.98px) and (min-width:768px) and (max-height:730px) {
        /*#region PRIMARY-IMG */
        img.img.brush {
            height: 60%;
            width: auto;
            margin-top: 0px;
        }

        img.img.app {
            height: 60%;
            width: auto;
            margin-top: 0px;
        }

        img.img.graf {
            height: 60%;
            width: auto;
            margin-top: 0px;
        }

        img.img.bus {
            height: 60%;
            width: auto;
            margin-top: 0px;
        }

        img.img.mar {
            height: 60%;
            width: auto;
            margin-top: 0px;
        }

        img.img.webs {
            height: 60%;
            width: auto;
            margin-top: 0px;
        }
        /*#endregion */ 
    }

}


    @media screen and (max-width:767.98px) {

        /* #region COOKIES */
        .div-cookies {
            height: 120px;
        }


            .div-cookies.active .div-cookies-icon {
                width: 120px;
            }

            .div-cookies .div-cookies-icon i {
                font-size: 32pt;
            }

            .div-cookies.active .div-cookies-text {
                width: calc(100% - 240px);
            }

                .div-cookies.active .div-cookies-text ul > li:first-child {
                    font-size: 14pt;
                }

                .div-cookies.active .div-cookies-text ul > li:last-child {
                    font-size: 5.5pt;
                    width: 95%;
                }

            .div-cookies.active .div-cookies-button {
                width: 120px;
            }

            .div-cookies .div-cookies-button .div-cookies-button-body {
                width: 90px;
                height: 50px;
                border-radius: 0px;
            }

        .div-cookies-button .div-cookies-button-body span {
            font-size: 11pt;
        }
        /* #endregion */
        /*#region PRIMARY-IMG */


        @media screen and (max-width:767.98px) and (min-width:576px) and (max-height:730px) {
            img.img.brush {
                height: 60%;
                width: auto;
                margin-top: 0px;
            }

            img.img.app {
                height: 60%;
                width: auto;
                margin-top: 0px;
            }

            img.img.graf {
                height: 60%;
                width: auto;
                margin-top: 0px;
            }

            img.img.bus {
                height: 60%;
                width: auto;
                margin-top: 0px;
            }

            img.img.mar {
                height: 60%;
                width: auto;
                margin-top: 0px;
            }

            img.img.webs {
                height: 60%;
                width: auto;
                margin-top: 0px;
            }

        }

        @media screen and (max-width:767.98px) and (min-width:576px) and (max-height:400px) {
            img.img.brush {
                display: none;
            }

            img.img.app {
                display: none;
            }

            img.img.graf {
                display: none;
            }

            img.img.bus {
                display: none;
            }

            img.img.mar {
                display: none;
            }

            img.img.webs {
                display: none;
            }
        }


        /*#endregion */
        /*#region HEADER*/


        .div-lang-item img {
            height: 30px;
        }


        header.header-primary .div-menu i {
            font-size: 18pt;
        }

        header.header-primary .div-lang span {
            font-size: 18pt;
        }

        .div-lang-body {
            width: calc(70% - 100px);
        }

        .div-color-body {
            width: calc(70% - 100px);
        }

        .div-info-primary {
            width: 200px;
            height: 60px;
        }

        .div-modal-arrow {
            width: 200px;
            height: 60px;
            margin-bottom: 130px;
        }

            .div-modal-arrow.first:after {
                right: 130px;
            }

            .div-modal-arrow.last:after {
                left: 130px;
            }

            .div-modal-arrow span {
                font-size: 12pt;
            }

        .div-info-primary ul > li i {
            font-size: 18pt;
        }

        @media screen and (max-width:767.98px) and (min-width:576px) and (max-height:578px) {
            header.header-primary {
                height: 70px;
            }
        }




        /*#endregion */
        /*#region PRIMARY-TEXT */

        @media screen and (max-width: 767.98px) and (min-width:575.98px) and (max-height:314px) {

            h1.app {
                display: none;
            }

            h1.service {
                display: none;
            }

            h1.service2 {
                display: none;
            }
        }


        /*#endregion */

    }


    @media screen and (max-width:575.98px) {

        /*#region MODAL-QUESTIONS */

        .div-modal-question {
            height: 100%;
            width: 100%;
            
        }

            .div-modal-question .div-modal-body .div-start {
                padding-left: 50px;
            }

            .div-modal-question .div-modal-body ul > li:nth-child(2) > p {
               
                font-size: 18pt;
                padding-right: 70px;
            }

            .div-modal-question .div-modal-body ul > li:nth-child(3) > span {
             
                font-size: 12pt;
            }
        /*#endregion */
        /*#region INFO-PANEL-BOTTOM */

        body.body-primary.night .ul-social > li:last-child i {
            color: var(--text-color);
        }

        body.body-primary.day .ul-social > li:last-child i {
            color: var(--text-color2);
        }


        .div-info-primary {
            z-index: 1000;
        }


        .div-color-primary-body .body {
            width: 50%;
        }
        /*#endregion */
        /*#region PRIMARY-IMG */

        img.img.brush {
            width: 80%;
            margin-top: -10px;
        }

        img.img.app {
            width: 80%;
        }

        img.img.graf {
            width: 70%;
        }

        img.img.bus {
            width: 70%;
        }

        img.img.mar {
            width: 80%;
        }

        img.img.webs {
            width: 70%;
        }

        @media screen and (max-width:575.98px) and (min-width:473.98px) and (max-height:710px) {
            img.img.brush {
                height: 60%;
                width: auto;
                margin-top: -10px;
            }

            img.img.app {
                height: 45%;
                width: auto;
                margin-top: -10px;
            }

            img.img.graf {
                height: 50%;
                width: auto;
                margin-top: -10px;
            }

            img.img.bus {
                height: 55%;
                width: auto;
                margin-top: -10px;
            }

            img.img.mar {
                height: 45%;
                width: auto;
                margin-top: -10px;
            }

            img.img.webs {
                height: 50%;
                width: auto;
                margin-top: -10px;
            }


        }
       

            @media screen and (max-width:575.98px) and (min-width:473.98px) and (max-height:380px) {
                img.img.brush {
                    display: none;
                }

                img.img.app {
                    display: none;
                }

                img.img.graf {
                    display: none;
                }

                img.img.bus {
                    display: none;
                }

                img.img.mar {
                    display: none;
                }

                img.img.webs {
                    display: none;
                }
            }





            @media screen and (max-width:575.98px) and (min-width:473.98px) and (max-height:440px) {
            }

            /*#endregion */
        /*#region PANEl-COOKIES */

        .div-cookies {
            height: 250px;
        }


        .div-cookies.active {
            height: 250px;
            bottom: 0;
            width: calc(100% - 50px);
            opacity: 1;
        }


        .div-cookies.active .div-cookies-icon {
            width: 100%;
            height: 50px;
            position: relative;
            border-radius: 0px;
        }

        .div-cookies .div-cookies-icon {
            width: 100%;
            height: 100%;
        }


            .div-cookies .div-cookies-icon i {
                font-size: 21pt;
            }

        .div-cookies.active .div-cookies-text {
            width: 100%;
            height: calc(100% - 110px);
            position: relative;
            padding: 10px 10px;
            display: inline;
        }

        .div-cookies .div-cookies-text {
            display: none;
        }

            .div-cookies .div-cookies-text .div-start {
                justify-content: center;
                align-items: center;
                padding: 0px 10px;
            }

                .div-cookies .div-cookies-text .div-start ul {
                    text-align: center;
                }

            .div-cookies .div-cookies-text ul > li:first-child {
                font-size: 16pt;
            }

            .div-cookies .div-cookies-text ul > li:last-child {
                font-size: 7pt;
                margin-top: 5px;
                width: 100%;
                font-weight: 400;
            }


        .div-cookies.active .div-cookies-button {
            width: 100%;
            height: 60px;
            position: relative;
            border-radius: 0px;
            display: inline;
        }

        .div-cookies .div-cookies-button {
            display: none;
        }

            .div-cookies .div-cookies-button .div-cookies-button-body {
                width: 120px;
                height: 40px;
                border-radius: 0px;
            }

        .div-cookies-button .div-cookies-button-body span {
            font-size: 12pt;
        }




           /* .div-cookies {
                height: auto;
                width: 0px;
                opacity: 0;
                bottom: -500px;
                border-radius: 0px;
                -webkit-transition: width .3s linear 2s,opacity .3s linear 2s;
                -moz-transition: width .3s linear 2s,opacity .3s linear 2s;
                -o-transition: width .3s linear 2s,opacity .3s linear 2s;
                transition: width .3s linear 2s,opacity .3s linear 2s;
            }


                

                    */


            /*#endregion */
        /*#region HEADER*/




            header.header-primary {
                height: 70px;
            }

                header.header-primary .div-logo {
                }


            .body-primary header.header-primary .div-logo img.logo {
                height: 50px;
            }

            .body-primary header.header-primary .div-logo img.bounce2 {
                height: 50px;
            }


            .div-color-button {
                display: none;
            }

            .div-menu-button {
                display: inline;
            }

            .div-info-primary.social {
                display: none;
            }


            .nav-menu-body {
                width: 100%;
                height: 100vh;
                height: calc(var(--vh,1vh) * 100 - 0px);
                margin-top: 0px;
                right: -100%;
                top: 0;
                position: absolute;
            }

            header.header-primary .div-menu i {
                font-size: 18pt;
            }

            header.header-primary .div-lang span {
                font-size: 18pt;
            }



            .nav-menu-body.active {
                right: 0%;
            }



            .div-info-primary {
                margin: 20px;
            }


                .div-info-primary.contact {
                    position: absolute;
                    width: calc(100% - 40px);
                }

            .div-color-body {
                width: calc(100% - 60px);
                position: absolute;
                margin: 30px;
                margin-bottom: 100px;
            }

            .div-lang-body {
                width: calc(100% - 60px);
                position: absolute;
                margin: 30px;
                margin-top: 100px;
            }

            .div-lang-header span {
                font-size: 12pt;
            }

            .div-color-header span {
                font-size: 12pt;
            }

            .div-color-body.active {
                bottom: 0 !important;
                top: auto;
            }

            .div-modal-arrow.contact {
                width: calc(80% - 100px);
                height: 60px;
                margin-bottom: 130px;
                left: 0;
            }

            .div-modal-arrow.social {
                width: calc(100% - 100px);
                height: 60px;
                margin-bottom: 100px;
                z-index: 1002;
            }


            .div-modal-arrow.contact.first:after {
                right: 67%;
            }

            .div-modal-arrow.contact:after {
                right: 0%;
            }

            .div-modal-arrow.contact.last:after {
                left: 67%;
            }


            .div-modal-arrow.social.first:after {
                right: 82%;
            }

            .div-modal-arrow.social:after {
                right: 0%;
            }

            .div-modal-arrow.social.last:after {
                left: 82%;
            }



            .div-info-primary.contact ul > li {
                width: 25%;
            }

                .div-info-primary.contact ul > li:last-child {
                    display: inline;
                }

                    .div-info-primary.contact ul > li:last-child i.arrow {
                        font-size: 12pt;
                        padding-right: 10px;
                    }

            body.body-primary.primary .div-info-primary.contact ul > li:last-child i.arrow {
                color: var(--color-primary);
            }

            body.body-primary.secondary .div-info-primary.contact ul > li:last-child i.arrow {
                color: var(--color-secondary);
            }

            body.body-primary.third .div-info-primary.contact ul > li:last-child i.arrow {
                color: var(--color-third);
            }



            /*#endregion */
        /*#region PRIMARY-TEXT */

        h1.app {
            font-size: 32pt;
        }

        h1.service {
            font-size: 36pt;
            letter-spacing: .7rem;
        }

        h1.service2 {
            font-size: 28pt;
            letter-spacing: .7rem;
        }


        @media screen and (max-width:575.98px) and (min-width:473.98px) and (max-height:600px) {

          
          
        }

        @media screen and (max-width:575.98px) and (min-width:473.98px) and (max-height:440px) {

          

        }


     

        @media screen and (max-width:575.98px) and (min-width:473.98px) and (max-height:300px) {

           
            h1.app {
                display: none;
            }

            h1.service {
                display: none;
            }

            h1.service2 {
                display: none;
            }
        }





            /*#endregion */

    }

    @media screen and (max-width:473px) {

        /*#region HEADER*/




        header.header-primary .div-lang {
            width: 30%;
        }

            header.header-primary .div-lang span {
                font-size: 14pt;
            }

            header.header-primary .div-lang .div-lang-icon {
                width: 20px;
                height: 20px;
                margin-left: 0px;
            }

                header.header-primary .div-lang .div-lang-icon i {
                    font-size: 10pt;
                }



        header.header-primary .div-lang-body {
            width: calc(100% - 100px);
        }


        header.header-primary .div-lang-header span {
            font-size: 14pt;
        }

        header.header-primary .div-lang-item span {
            font-size: 16pt;
        }


        header.header-primary .div-logo {
            width: 40%;
        }

        header.header-primary .div-menu {
            width: 30%;
        }

            header.header-primary .div-menu i {
                font-size: 14pt;
            }

        .div-info-primary ul > li i {
            font-size: 14pt;
        }

        .div-nav-menu-footer ul > li i {
            font-size: 14pt;
        }


        .div-info-primary.contact ul > li:last-child i.arrow {
            font-size: 10pt;
            padding-right: 5px;
        }




        /*#endregion */
        /*#region PRIMARY-IMG */

        img.img.brush {         
            width: 85%;  
            margin-top:-10px;
        }

        img.img.app {
            width: 85%;
        }

        img.img.graf {
            width: 75%;
        }

        img.img.bus {
            width: 75%;
        }

        img.img.mar {
            width: 85%;
        }

        img.img.webs {
            width: 75%;
        }


        @media screen and (max-width:473px) and (min-width:375.98px) and (max-height:730px) {
            img.img.brush {
                height: 50%;
                width: auto;
                margin-top: -10px;
            }

            img.img.app {
                height: 36%;
                width: auto;
                margin-top: -10px;
            }

            img.img.graf {
                height: 43%;
                width: auto;
                margin-top: -10px;
            }

            img.img.bus {
                height: 50%;
                width: auto;
                margin-top: -10px;
            }

            img.img.mar {
                height:36%;
                width: auto;
                margin-top: -10px;
            }

            img.img.webs {
                height: 42%;
                width: auto;
                margin-top: -10px;
            }
        }

        @media screen and (max-width:473px) and (min-width:375.98px) and (max-height:380px) {
            img.img.brush {
                display: none;
            }

            img.img.app {
                display: none;
            }

            img.img.graf {
                display: none;
            }

            img.img.bus {
                display: none;
            }

            img.img.mar {
                display: none;
            }

            img.img.webs {
                display: none;
            }
        }



        /*#endregion */
        /*#region PRIMARY-TEXT */

        h1.app {
            font-size: 32pt;
        }

        h1.service {
            font-size: 32pt;
        }

        h1.service2 {
            font-size: 32pt;
        }

     

        @media screen and (max-width:473px) and (min-width:375.98px) and (max-height:270px) {



            h1.app {
                display: none;
            }

            h1.service {
                display: none;
            }

            h1.service2 {
                display: none;
            }
        }
       
        /*#endregion */      
        
    }

    @media screen and (max-width: 375px) {

        /*#region PRIMARY-IMG */

        img.img.brush {
            width: 90%;
        }

        img.img.app {
            width: 90%;
        }

        img.img.graf {
            width: 80%;
        }

        img.img.bus {
            width: 80%;
        }

        img.img.mar {
            width: 80%;
        }

        img.img.webs {
            width: 80%;
        }

        @media screen and (max-width:375px) and (min-width:334.98px) and (max-height:535px) {

            img.img.brush {
                height: 50%;
                width: auto;
                margin-top: -15px;
            }

            img.img.app {
                height: 40%;
                width: auto;
                margin-top: -10px;
            }

            img.img.graf {
                height: 45%;
                width: auto;
                margin-top: -10px;
            }

            img.img.bus {
                height: 50%;
                width: auto;
                margin-top: -10px;
            }

            img.img.mar {
                height: 45%;
                width: auto;
                margin-top: -15px;
            }

            img.img.webs {
                height: 45%;
                width: auto;
                margin-top: -10px;
            }

        }

      

        @media screen and (max-width:375px) and (min-width:334.98px) and (max-height:380px) {
            img.img.brush {
                display: none;
            }

            img.img.app {
                display: none;
            }

            img.img.graf {
                display: none;
            }

            img.img.bus {
                display: none;
            }

            img.img.mar {
                display: none;
            }

            img.img.webs {
                display: none;
            }
        }


        /*#endregion */
        /*#region PRIMARY-TEXT */

        h1.app {
            font-size: 27pt;
        }

        h1.service {
            font-size: 27pt;
        }


        h1.service2 {
            font-size: 21pt;
        }


       

       

        @media screen and (max-width:375px) and (min-width:334.98px) and (max-height:260px) {


            h1.app {
                display: none;
            }

            h1.service {
                display: none;
            }

            h1.service2 {
                display: none;
            }
        }

       
        /*#endregion */       
        
    }

    @media screen and (max-width: 334px) {

        /*#region PRIMARY-IMG */

        .div-prim-text .div-text-primary span.center {
            font-size: 36pt;
        }

        @media screen and (max-width:334px) and (min-width:320.98px) and (max-height:566px) {
            img.img.brush {
                height: 45%;
                width: auto;
                margin-top: -15px;
            }

            img.img.app {
                height: 35%;
                width: auto;
                margin-top: -15px;
            }

            img.img.graf {
                height: 40%;
                width: auto;
                margin-top: -15px;
            }

            img.img.bus {
                height: 45%;
                width: auto;
                margin-top: -15px;
            }

            img.img.mar {
                height: 40%;
                width: auto;
                margin-top: -15px;
            }

            img.img.webs {
                height: 40%;
                width: auto;
                margin-top: -15px;
            }
        }

     

            @media screen and (max-width:334px) and (min-width:320.98px) and (max-height:350px) {
                img.img.brush {
                    display: none;
                }

                img.img.app {
                    display: none;
                }

                img.img.graf {
                    display: none;
                }

                img.img.bus {
                    display: none;
                }

                img.img.mar {
                    display: none;
                }

                img.img.webs {
                    display: none;
                }
            }







            /*#endregion */
        /*#region PRIMARY-TEXT */

        h1.app {
            font-size: 27pt;
        }

        h1.service {
            font-size: 27pt;
        }

        h1.service2 {
            font-size: 16pt;
        }


            

        @media screen and (max-width:334px) and (min-width:320.98px) and (max-height:260px) {

            h1.app {
                display: none;
            }

            h1.service {
                display: none;
            }

            h1.service2 {
                display: none;
            }
        }


            /*#endregion */

    }

    @media screen and (max-width: 320px) {

        /*#region PRIMARY-IMG */
        img.img.app {
            display: none;
        }

        img.img.brush {
            display: none;
        }

        img.img.graf {
            display: none;
        }

        img.img.webs {
            display: none;
        }

        img.img.bus {
            display: none;
        }

        img.img.mar {
            display: none;
        }


        /*#endregion */
        /*#region TEXT-BG */
        ul.ul-primary-text {
            display: none;
        }

        /*#endregion */
        /*#region PRIMARY-TEXT */


        h1.app {
            display: none;
        }

        h1.service {
            display: none;
        }

        h1.service2 {
            display: none;
        }

        /*#endregion */     

    }
  