ul.ul-social-site-preload {
    gap:20px;
}

ul.ul-social-site-preload > li {
    width: 60px;
    height: 60px;
    background-color: #FFF;
    border-radius: 50%;
    -webkit-transition: background-color .4s linear;
    -moz-transition: background-color .4s linear;
    -o-transition: background-color .4s linear;
    transition: background-color .4s linear;
}

ul.ul-social-site-preload > li:hover {
   background-color:var(--color-primary);
}


ul.ul-social-site-preload > li i {
   color:var(--color-primary);font-size: 14pt;
    -webkit-transition: color .4s linear;
    -moz-transition: color .4s linear;
    -o-transition: color .4s linear;
    transition: color .4s linear;
}

ul.ul-social-site-preload > li:hover i {
   color:#FFF;
}

span.text-preload {
    font-weight: 700;font-size: 10pt;
}




@keyframes pulse3 {
    0% {
     
      box-shadow: 0 0 0 0 rgba(248, 64, 0	, 0.7);
    }
    
    70% {
     
      box-shadow: 0 0 0 30px rgba(248, 64, 0, 0);
    }
    
    100% {
    
    }
  }


  @keyframes pulse4 {
    0% {
     
        box-shadow: 0 0 0 0 rgba(248, 64, 0	, 0.7);
    }
    
    70% {
     
      box-shadow: 0 0 0 20px rgba(255, 80, 80, 0);
    }
    
    100% {
    
    }
  }


/* ===== Typografie ===== */
h1 { font-size: clamp(2.5rem, 5vw, 4rem); font-weight: bold; }
h2 { font-size: clamp(2.2rem, 4vw, 3.5rem); font-weight: bold; }
h3 { font-size: clamp(2rem, 3.5vw, 3rem); font-weight: bold; }
h4 { font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: bold; }
h5 { font-size: clamp(1.5rem, 2.5vw, 2rem); font-weight: bold; }
h6 { font-size: clamp(1.2rem, 2vw, 1.5rem); font-weight: bold; }


h4.xs {
    font-size: clamp(0.85rem, 1.1vw, 1rem);       /* cca 13.6–16px */
    line-height: 1.4;
    font-weight: bold;
  }
  
  h4.sm {
    font-size: clamp(1rem, 1.4vw, 1.15rem);       /* cca 16–18.4px */
    line-height: 1.5;
    font-weight: bold;
  }
  
  h4.md {
    font-size: clamp(1.2rem, 1.8vw, 1.4rem);      /* cca 19.2–22.4px */
    line-height: 1.6;
    font-weight: bold;
  }
  
  h4.lg {
    font-size: clamp(1.5rem, 2.3vw, 1.75rem);     /* cca 24–28px */
    line-height: 1.7;
    font-weight: bold;
  }
  
  h4.xl {
    font-size: clamp(1.8rem, 3vw, 2.5rem);        /* cca 28.8–40px */
    line-height: 1.8;
    font-weight: bold;
  }

h3.xs {
    font-size: clamp(0.9rem, 1.2vw, 1.1rem);     /* cca 14.4–17.6px */
    line-height: 1.4;
    font-weight: bold;
  }
  
  h3.sm {
    font-size: clamp(1.05rem, 1.5vw, 1.25rem);   /* cca 16.8–20px */
    line-height: 1.5;
    font-weight: bold;
  }
  
  h3.md {
    font-size: clamp(1.2rem, 2vw, 1.5rem);       /* cca 19.2–24px */
    line-height: 1.6;
    font-weight: bold;
  }
  
  h3.lg {
    font-size: clamp(1.5rem, 2.5vw, 1.875rem);   /* cca 24–30px */
    line-height: 1.7;
    font-weight: bold;
  }
  
  h3.xl {
    font-size: clamp(1.875rem, 3.5vw, 2.5rem);   /* cca 30–40px */
    line-height: 1.8;
    font-weight: bold;
  }

p.xs {
    font-size: clamp(0.75rem, 1vw, 0.875rem);   /* 12–14px */
    line-height: 1.6;
  }
  
p.sm {
    font-size: clamp(0.875rem, 1.2vw, 1rem);    /* 14–16px */
    line-height: 1.6;
  }
  
p.md {
    font-size: clamp(1rem, 1.5vw, 1.2rem);      /* 16–19px */
    line-height: 1.8;
  }
  
p.lg {
    font-size: clamp(1.25rem, 2vw, 1.5rem);     /* 20–24px */
    line-height: 2;
  }
  
p.xl {
    font-size: clamp(1.5rem, 3vw, 2rem);        /* 24–32px */
    line-height: 2.2;
  }


 /*#region CONTAINER*/
 .div-container {
     margin-left: 200px;
     width: calc(100% - 400px);
     height: auto;
    
 }

 /*#endregion */

/*#region HEADER*/

header.header-primary {
    height: 150px;
    width: calc(100% - 400px);
    margin-left:200px;
    position: fixed;
    z-index: 1001;
    top: 0px;
    -webkit-transition: top .4s linear, background-color .4s linear;
    -moz-transition: top .4s linear, background-color .4s linear;
    -o-transition: top .4s linear, background-color .4s linear;
    transition: top .4s linear, background-color .4s linear;
    border-radius: 0px;
    background-color:var(--background-color);
  
}

body.dark header.header-primary {
    background-color:var(--background-color2);
}


header.header-primary.active {
    top:-50px;
}

header.header-primary .div-header-menu i.active {
    color: var(--color-primary);
}

header.header-primary.hide {
    top: -100px;
}

header.header-primary .div-header-left {
    width: 350px;
    height: 100px;
    position: relative;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none; 
}

header.header-primary .div-header-left img {
    height:170px;
    -webkit-transition: height .4s linear, opacity .4s linear;
    -moz-transition: height .4s linear, opacity .4s linear;
    -o-transition: height .4s linear, opacity .4s linear;
    transition: height .4s linear, opacity .4s linear;
    z-index: 1002;
}

header.header-primary.active .div-header-left img {
    height:70px;
}

header.header-primary .div-header-center {
    width: calc(100% - 700px);
    height: 100px;
    position: relative;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

header.header-primary .div-header-right {
    width: 350px;
    height: 100px;
    position: relative;
    background-color: transparent;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

header.header-primary .div-header-menu {
    display: inline;
    height: 100px;
    width: 100px;
    cursor: pointer;
}

header.header-primary .div-header-menu .div-header-menu-circle {
    width: 70px;
    height: 70px;
    background-color: var(--color-primary);
    border-radius: 50%;
}

header.header-primary .div-header-lang {
    width:170px;
    height: 100px;
}


header.header-primary .div-header-top {
    height: 50px;
    width: 100%;
    /* background-color: #EEE; */
}

header.header-primary .div-header-top-left {
    width: 500px;
    height: 100%;
    position: relative;
}

header.header-primary .div-header-top-center {
    width: calc(100% - 1000px);
    height: 100%;
    position: relative;
}

header.header-primary .div-header-top-right {
    width: 500px;
    height: 100%;
    position: relative;
}


/*#endregion */

/*#region MENU*/

ul.ul-menu {
    display: flex;
    gap: 50px;
    font-size: 18pt;
}



.hamburger .line{
    width: 50px;
    height: 5px;
    background-color: #ecf0f1;
    display: block;
    margin: 8px auto;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
  
  .hamburger:hover{
    cursor: pointer;
  }
  
  /* NINE */
  
  #hamburger-9{
    position: relative;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    transform: scale(0.6);
  }
  
  #hamburger-9.is-active{
    -webkit-transform: rotate(45deg) scale(0.6);
    -ms-transform: rotate(45deg) scale(0.6);
    -o-transform: rotate(45deg) scale(0.6);
    transform: rotate(45deg) scale(0.6);
   
  }
  
  #hamburger-9:before{
    content: "";
    position: absolute;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    width: 70px;
    height: 70px;
    border: 5px solid transparent;
    top: calc(50% - 35px);
    left: calc(50% - 35px);
    border-radius: 100%;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
  
  #hamburger-9.is-active:before{
    border: 5px solid #ecf0f1;
  }
  
  #hamburger-9.is-active .line{
    width: 35px;
  }
  
  #hamburger-9.is-active .line:nth-child(2){
    opacity: 0;
  }
  
  #hamburger-9.is-active .line:nth-child(1){
    -webkit-transform: translateY(13px);
    -ms-transform: translateY(13px);
    -o-transform: translateY(13px);
    transform: translateY(13px);
  }
  
  #hamburger-9.is-active .line:nth-child(3){
    -webkit-transform: translateY(-13px) rotate(90deg);
    -ms-transform: translateY(-13px) rotate(90deg);
    -o-transform: translateY(-13px) rotate(90deg);
    transform: translateY(-13px) rotate(90deg);
  }

  #hamburger-1.is-active .line:nth-child(2){
    opacity: 0;
  }
  
  #hamburger-1.is-active .line:nth-child(1){
    -webkit-transform: translateY(13px) rotate(45deg);
    -ms-transform: translateY(13px) rotate(45deg);
    -o-transform: translateY(13px) rotate(45deg);
    transform: translateY(13px) rotate(45deg);
  }
  
  #hamburger-1.is-active .line:nth-child(3){
    -webkit-transform: translateY(-13px) rotate(-45deg);
    -ms-transform: translateY(-13px) rotate(-45deg);
    -o-transform: translateY(-13px) rotate(-45deg);
    transform: translateY(-13px) rotate(-45deg);
  }


/*#endregion */

/*#region PANEL-LEFT*/

aside.left {
    position: fixed;left:0;height:100vh;width:200px;background-color:var(--background-color);
    -webkit-transition: background-color .4s linear;
    -moz-transition: background-color .4s linear;
    -o-transition: background-color .4s linear;
    transition: background-color .4s linear;
}

body.dark aside.left {
    background-color:var(--background-color2);
}


/*#endregion */

/*#region PANEL-RIGHT*/

@-webkit-keyframes flip-animation {
    0% {
        -webkit-transform: rotateY(0deg);
        transform: rotateY(0deg);
    }

    50% {
        -webkit-transform: rotateY(180deg);
        transform: rotateY(180deg);
    }

    100% {
        -webkit-transform: rotateY(0deg);
        transform: rotateY(0deg);
    }
}

@-moz-keyframes flip-animation {
    0% {
        -moz-transform: rotateY(0deg);
        transform: rotateY(0deg);
    }

    50% {
        -moz-transform: rotateY(180deg);
        transform: rotateY(180deg);
    }

    100% {
        -moz-transform: rotateY(0deg);
        transform: rotateY(0deg);
    }
}

@-o-keyframes flip-animation {
    0% {
        -o-transform: rotateY(0deg);
        transform: rotateY(0deg);
    }

    50% {
        -o-transform: rotateY(180deg);
        transform: rotateY(180deg);
    }

    100% {
        -o-transform: rotateY(0deg);
        transform: rotateY(0deg);
    }
}

@keyframes flip-animation {
    0% {
        -webkit-transform: rotateY(0deg);
        -moz-transform: rotateY(0deg);
        -o-transform: rotateY(0deg);
        transform: rotateY(0deg);
    }

    50% {
        -webkit-transform: rotateY(180deg);
        -moz-transform: rotateY(180deg);
        -o-transform: rotateY(180deg);
        transform: rotateY(180deg);
    }

    100% {
        -webkit-transform: rotateY(0deg);
        -moz-transform: rotateY(0deg);
        -o-transform: rotateY(0deg);
        transform: rotateY(0deg);
    }
}


aside.right {
    position: fixed;right:0;height:100vh;width:200px;background-color:var(--background-color3);z-index: 1000;
    -webkit-transition: background-color .4s linear;
    -moz-transition: background-color .4s linear;
    -o-transition: background-color .4s linear;
    transition: background-color .4s linear;
}

body.dark aside.right {
    background-color:var(--background-color4);
}

.div-page-theme {
    position:absolute;
    right:50%;
    transform: translate(50%,0%);
    margin-top:70px;
}



    ul.ul-panel-action > li {
        height: 50px;
        width: 50px;
        border: 1px solid var(--color-primary);
        transition: background-color 1s ease;
    }

        ul.ul-panel-action > li:not(:first-child) {
            margin-top: 20px;
        }


        ul.ul-panel-action > li i {
            display: inline-block;
            color: var(--font-color);
            transition: transform 1s ease;
            font-size: 14pt;
        }

        ul.ul-panel-action > li:hover i {
            -webkit-animation: flip-animation 1s ease forwards;
            -moz-animation: flip-animation 1s ease forwards;
            -o-animation: flip-animation 1s ease forwards;
            animation: flip-animation 1s ease forwards;
            color: var(--font-panel-color);
        }


        ul.ul-panel-action > li:hover {
            background-color: var(--color-primary) !important;
        }



        .switcher-input {
            display: none;
        }
        
        .switcher-label {
            background-color: var(--background-color);
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 2px 10px;
            border-radius: 30px;
            cursor: pointer;
            position: relative;
            transition: background-color 0.3s ease;
        }

        .switcher-label.horizontal {
            background-color: var(--background-color3);
        }

        body.dark .switcher-label {
            background-color: var(--background-color2);
          
        }


        body.dark .switcher-label.horizontal {
            background-color: var(--background-color4);
        }

        
        .switcher-label i, .switcher-label img  {
            font-size: 14pt;
            z-index: 2;
        }
        
        
        .switcher-label.vertical i:first-child {
            color: var(--font-color);
            margin-top:13px;
            -webkit-transition: color .4s linear;
            -moz-transition: color .4s linear;
            -o-transition: color .4s linear;
            transition: color .4s linear;
        }

        body.dark .switcher-label.vertical i:first-child {
            color: var(--font-color2);  
        }
  
        .switcher-label.vertical i:last-child {
            color: #FFF;
            margin-bottom:13px;
        }


        .switcher-label.horizontal img:first-child {       
            margin-left:5px;
        }
        
        .switcher-label.horizontal img:last-child {        
            margin-right:5px;
        }
        
        .switcher-toggler {
            background-color: var(--color-primary);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            position: absolute;
            transition: all 0.4s ease;
            z-index: 1;
            display: block;
        }

        body.dark .switcher-label.vertical .switcher-toggler {
            top: 0%;
        }
        
        .switcher-label.vertical {
            width: 50px;
            height: 100px;
            flex-direction: column;
        }
        
        .switcher-label.vertical .switcher-toggler {
            left: 50%;
            top: 50%;
            transform: translateX(-50%);
        }

        body.dark .switcher-label.horizontal .switcher-toggler {
            left: 50%;
        }
        
        .switcher-label.horizontal {
            width: 100px;
            height: 50px;
            flex-direction: row;
        }
        
        .switcher-label.horizontal .switcher-toggler {
            top: 0;
            left: 0;
            transform: none;
        }








        .rotated-outer {
            position: absolute;
            bottom: 500px;
            left: 50%;
            transform: translateX(-50%);
          }
    
    
            .rotated-wrapper {
                transform: rotate(-90deg);
                transform-origin: center;
                display: inline-block;
            }
        
            .ul-social-panel {
                display: flex;
                align-items: center;
                gap: 0;
                list-style: none;
                margin: 0;
                padding: 0;
                font-size: 12pt;
            }
        
        
            .follow-text {
                position: relative;
                padding-right: 10px;
            }
        
            .follow-text::after {
                content: "";
                position: absolute;
                top: 50%;
                left: 100%;
                transform: translateY(-50%);
                width: 40px;
                height: 1.5px;
                background-color: var(--font-color);
                pointer-events: none;
                /* zajistí, že čára nebude interaktivní */
            }
          
            body.dark .follow-text::after {           
                background-color: var(--font-color2);     
                /* zajistí, že čára nebude interaktivní */
            }





        i.icon-mouse {
            position: absolute;
            bottom: 270px;
            right: 50%;
            transform: translate(50%,0%);
            color: var(--font-color);
            z-index: 999;
            -webkit-transition: color .4s linear;
            -moz-transition: color .4s linear;
            -o-transition: color .4s linear;
            transition: color .4s linear;
        }
        
        body.dark i.icon-mouse {
            color: var(--font-color2);
           
        }




.progress-container {
    position: absolute;
    bottom: 150px; 
    width: 2px; /* Šířka čáry */
    height: 100px; /* Fixní výška čáry */
    background-color: var(--font-color); /* Světle šedá výchozí barva */
    z-index: 999;
    right: 50%;
    transform: translate(50%,0%);
    -webkit-transition: background-color .4s linear;
    -moz-transition: background-color .4s linear;
    -o-transition: background-color .4s linear;
    transition: background-color .4s linear;
}

body.dark .progress-container {
    background-color: var(--font-color2);
   
}




.progress-bar {
    width: 100%; /* Šířka čáry */
    height: 100%; /* Výška čáry zůstává 100% */
    background: linear-gradient(to bottom, var(--color-primary) 0%, var(--color-primary) 100%); /* Černý gradient */
    background-position: top; /* Začíná nahoře */
    background-size: 100% 0%; /* Výchozí vyplnění je 0% výšky */
    background-repeat: no-repeat;
    transition: background-size .4s ease-in-out;
}

.lb-on-top {
    width: 60px;
    height: 60px;
    background-color: var(--color-primary);
    bottom: 70px;
    position: absolute;
    right: 50%;
    transform: translate(50%,0%);
    z-index: 999;
   
}

    .lb-on-top a {
        color: #FFF !important;
    }

    .lb-on-top i {
        font-size: 14pt;
    }


    

/*#endregion */

/*#region TABS*/
.tabs {
    display: flex;
    margin-bottom: 1rem;
  }

  .tab {
    padding: 10px 20px;
    cursor: pointer;
    border: none;
    background: none;
    font-weight: bold;
    border-bottom: 2px solid transparent;
    transition: all 0.2s ease;
  }

  .tab.active {
    border-bottom: 2px solid #007BFF;
    color: #007BFF;
  }

  .tab-content {
    display: none;
  }

  .tab-content.active {
    display: block;
  }


  .tab-buttons {
    margin-top: 20px;
  }

  .tab-buttons button {
    padding: 8px 16px;
    margin-right: 10px;
    font-size: 14px;
    cursor: pointer;
  }

  .swipe-hint {
    font-size: 12px;
    color: #999;
    margin-top: 5px;
  }


  .tabs-second {
    display: block;
    margin-bottom: 1rem;
  }
/*#endregion */

/*#region SECTION-ZK*/
.div-img-services {
    height: 500px;
    width: 100%;
    background-color: #FFF;
    border-radius: 50px;
    position: absolute;
    top: 0;
    left: 0;
    margin-left: 0px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}


.section-bg-img4 {
    background-image: url(../img/25193.jpg);
    /* animation: crescendo 7s alternate infinite ease-in;*/
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    border-radius: 50px;
    /*   mask-image: var(--linear-home); */

}

.section-bg-img6 {
    background-image: url(../img/6056.jpg);
    /* animation: crescendo 7s alternate infinite ease-in;*/
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    filter: grayscale(80%) brightness(110%) contrast(120%);
    border-radius: 50%;
    /*   mask-image: var(--linear-home); */

}

.section-bg-img7 {
    background-image: url(../img/11530.jpg);
    /* animation: crescendo 7s alternate infinite ease-in;*/
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    opacity: 0.9;
    mask-image: var(--linear-to-bottom);
    filter: grayscale(100%);
}



.div-img-services3 {
    height: 300px;
    width: 300px;
    position: absolute;
    bottom: -150px;
    right: -150px;
    border: 7px solid #FFF;
    border-radius: 50%;
    margin-bottom: 0px;
}


.div-panel-info-services {
    height: 150px;
    width: 150px;
    background-color: #2B3990;
    border-radius: 50%;
    position: absolute;
    top: -75px;
    right: -75px;
}

.div-panel-info-services i {
    color: #FFF;
    font-size: 24pt;
}

.div-panel-info-services span.text {
    color: #FFF;
    font-size: 8pt;
    font-weight: 500;
}

.div-panel-info-services span.value {
    color: #FFF;
    font-size: 24pt;
}

.div-panel-info-services2 {
    background-color: #2B3990;
    height: 100px;
    width: 250px;
    position: absolute;
    bottom: -50px;
    right: 50px;
    border-radius: 50px;
}

ul.ul-info > li.li-icon {
    width: 70px;
    height: 100%;
    margin-left: 20px;
}

ul.ul-info > li.li-icon .div-circle {
    background-color: #192154;
    height: 70px;
    width: 70px;
    border-radius: 50%;
}

ul.ul-info > li.li-icon .div-circle i {
    color: #FFF;
    font-size: 16pt;
}


ul.ul-info > li.li-text {
    width: calc(100% - 105px);
    height: 100%;
}

ul.ul-info > li.li-text span.value {
    color: #FFF;
    font-size: 21pt;
}

ul.ul-info > li.li-text span.text {
    color: #FFF;
    font-size: 10pt;
}
/*#endregion */

/*#region Q&A*/

.qa {
    max-width: 600px;
    margin: 40px auto;
  }

  .question {
    cursor: pointer;
    padding: 15px 20px;
    font-weight: bold;
    margin-bottom: 5px;
    transition: background-color 0.3s ease;
  }

  .answer {
    display: none;
    padding: 15px 20px;
  }

  .qa-item.active .answer {
    display: block;
  }


  .question i {
    transition: transform 0.3s ease;
  }

  .qa-item.active .question i {
    transform: rotate(180deg);
  }


/*#endregion */

/*#region GALLERY*/

.gallery {
    column-count: 3;
    column-gap: 2rem;
    margin: 40px auto;
  }

  .gallery-item {
    break-inside: avoid;
    margin-bottom: 2rem;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  }

  .gallery-item img {
    width: 100%;
    height: auto;
    display: block;
  }

  /* Responzivita */
  @media (max-width: 1024px) {
    .gallery {
      column-count: 2;
    }
  }

  @media (max-width: 600px) {
    .gallery {
      column-count: 1;
    }
  }

/*#endregion */

/*#region SECTION*/

section {
    margin: 0 auto;
    width: 100%;
    right: 0;
    position: relative;
    background-color: var(--background-color);
    height: auto;
    -webkit-transition: background-color .4s linear;
    -moz-transition: background-color .4s linear;
    -o-transition: background-color .4s linear;
    transition: background-color .4s linear;

}

body.dark section {
    background-color:var(--background-color2);
}

section.home {
    background-color: var(--background-color);
    height: calc(var(--vh, 1vh) * 100);
}

section.m2 {
    margin-top:200px;margin-bottom:200px;
}

section.mt {
    margin-top:200px;
}

section.mb {
    margin-bottom:200px;
}

.div-section-page {
    width: 50%;
    height: auto;
    position: relative;
}

.div-section-page.right {
    height: 500px;
    /* height:auto; */
}


.div-section-page.left {
    height: 500px;
     /* height:auto; */
}

/*#endregion */

/*#region HOME*/

.ul-section-primary {
    position: absolute;
    top: 50%;
    transform: translate(0%, -50%);
    margin-left: 200px;
    margin-top: 70px;
    width:calc(50% - 200px);
}

.ul-section-primary > li:first-child {
    position: relative;
    width: auto;
    height: auto;
}

.ul-section-primary > li:first-child h1 {
    
    font-size: 12pt;
    font-weight: 900; 
    color:var(--color-primary);
    
}

.ul-section-primary > li:first-child h1 span.active {
    
    height:40px;
    width:40px;
    background-color:var(--color-primary);
    padding:10px;
    color:#FFF;
    
}

.ul-section-primary > li:nth-child(2) {
    margin-top: 30px;
}

.ul-section-primary > li:nth-child(2) p {
    font-weight: 600;
    font-size: 100pt;
    line-height: 120px; 
}

.ul-section-primary > li:nth-child(2) p > span.dot {
    color:var(--color-primary);
    font-size: 100pt;
}

.ul-section-primary > li:nth-child(3) {
    margin-top: 20px;
}

.ul-section-primary > li:nth-child(3) p {
    width: 100%;
    font-size: 14pt;
    line-height: 25px;
    color: var(--font-color);
    -webkit-transition: color .4s linear;
    -moz-transition: color .4s linear;
    -o-transition: color .4s linear;
    transition: color .4s linear;
    font-weight: 600;
}

body.dark .ul-section-primary > li:nth-child(3) p {
    color: var(--font-color2);
}

.ul-section-primary > li.li-button {
    background-color: transparent;
    margin-top: 40px;
    height: 100px;
}

.ul-section-primary > li.li-button .lb-primary {
    height: 100px;
    width: 100px;
    background-color: var(--color-primary);
    position: absolute;
    left: 0;
    border-radius: 50%;
    animation: pulse3 2s infinite;
}

.ul-section-primary > li.li-button .lb-primary:hover {
    background-color: var(--color-primary);
}

.ul-section-primary > li.li-button .lb-primary i {
    font-size: 21pt;
    color: #FFF;
    transition: color .4s ease-in-out;
}

.ul-section-primary > li.li-button .lb-primary:hover i {
    color: var(--font-panel-color);
}

.ul-section-primary > li.li-button .lb-primary.second {
    border: none;
    margin-left: 120px;
    width: 200px;
    border-radius: 0%;
    background-color:transparent;
    animation: none;
}

.ul-section-primary > li.li-button .lb-primary.second i.arrow {
    font-size: 16pt;
    color: var(--color-primary);
    margin-right: 20px;
}

.ul-section-primary > li.li-button .lb-primary.second span {
    color: var(--font-color);
    font-size: 16pt;
    -webkit-transition: color .4s linear;
    -moz-transition: color .4s linear;
    -o-transition: color .4s linear;
    transition: color .4s linear;
}

body.dark .ul-section-primary>li.li-button .lb-primary.second span {
    color: var(--font-color2);
}

.div-home-image {
    width:calc(50% - 200px);
    height:calc(100vh - 150px);
    height: calc(var(--vh, 1vh) * 100 - 150px);
    position: absolute; 
    bottom:0px; 
    right:0;
    margin-right:200px;
}

.div-home-image.preload {
    top:50%;
    transform: translate(0%,-50%);
}

.div-home-image .div-home-body {
    width:100%;height:100%;position: relative;
}

.div-home-image img {
    height:80%;width:auto;
}

.div-home-image .video {
    height:80%;width:auto;


  display: block;         /* odstraní inline spacing */
  margin: 0;              /* žádný vnější okraj */
  padding: 0;             /* žádný vnitřní okraj */
  border: none;           /* žádný rámeček */
  outline: none;          /* žádný focus rámeček */
  box-sizing: border-box; /* správné počítání paddingu a hranic */
  background-color: transparent; /* pro jistotu */



}




/*#endregion */

/*#region FOOTER*/

footer {
    background-color: blue;
    width: 100%;
    height: 100px;
}

/*#endregion */

/*#region RESPONSIVE*/
@media screen and
(min-width:992px) and
(max-height:850px) {


    .div-page-theme {
        margin-top:50px;
    }

    i.icon-mouse {
        bottom:250px;
    }


    .progress-container {
        bottom:130px;
    }

    .lb-on-top {
        bottom: 50px;
    }


.rotated-outer {
    bottom:470px;
}

.ul-section-primary {
    margin-top:80px;
}

}

@media screen and
(min-width:992px) and
(max-height:800px) {

    .follow-text {
        display:none;
    }

    .rotated-outer {
        bottom:50%;
        transform: translate(-50%,50%);
    }


    i.icon-mouse {
        bottom:240px;
    }


    .progress-container {
        bottom:120px;
    }

    .lb-on-top {
        bottom: 30px;
    }

    header.header-primary .div-header-left img {
        height:150px;
    }

    .div-home-image img {
        height:85%;
    }

.div-home-image .video {
     height:85%;
}



    .ul-section-primary > li:nth-child(2) p {
        font-size: 90pt;
        line-height: 100px;
    }

    .ul-section-primary > li:nth-child(3) p {
        width:90%;
    }

    .ul-section-primary > li.li-button {
        height:80px;
        margin-top:20px;
    }

    .ul-section-primary > li.li-button .lb-primary {
        height:80px;
        width:80px;
    }

    .ul-section-primary > li.li-button .lb-primary i {
        font-size: 18pt;
    }

    .ul-section-primary > li.li-button .lb-primary.second i.arrow {
        font-size: 14pt;
    }

    .ul-section-primary > li.li-button .lb-primary.second span {
        font-size: 14pt;
    }

}

@media screen and (min-width:992px) and (max-height:700px) {

    header.header-primary {
        height: 110px;
    }

    header.header-primary.active {
        top: -40px;
    }

    header.header-primary .div-header-top {
        height: 40px;
    }

    header.header-primary .div-header-left {
        height: 70px;
    }

    header.header-primary .div-header-center {
        height: 70px;
    }

    header.header-primary .div-header-right {
        height: 70px;
    }

    header.header-primary .div-header-lang {
        height: 70px;
    }

    header.header-primary .div-header-menu {
        height: 70px;
    }

    .div-home-image {
        height: calc(100vh - 110px);
        height: calc(var(--vh, 1vh)* 100 - 110px);
    }

    .rotated-outer {
        margin-bottom: 30px;
    }

    header.header-primary .div-header-left img {
        height: 130px;
    }

    .ul-section-primary>li:nth-child(3) {
        margin-top: 10px;
    }

    .ul-section-primary>li.li-button {
        margin-top: 10px;
    }

}

@media screen and
(min-width:992px) and
(max-height:600px) {

    i.icon-mouse {
       display:none;
    }

    .progress-container {
        display:none;
    }

    .rotated-outer {
        margin-bottom:-50px;
    }

    .ul-section-primary > li:nth-child(2) p {
        font-size: 80pt;
        line-height: 90px;
    }

    .ul-section-primary > li:nth-child(3) {
       display:none;
    }

}

@media screen and
(min-width:992px) and
(max-height:500px) {

    .ul-section-primary > li.li-button {
        display:none;
    }

}

@media screen and
(min-width:992px) and
(max-height:440px) {

    .rotated-outer {
        display:none;
    }

    

}

@media screen and
(min-width:992px) and
(max-height:400px) {

    .ul-section-primary > li:first-child {
        display:none;
    }

    .ul-section-primary  {
       margin-top:50px;
    }

    .ul-section-primary > li:nth-child(2) p {
        font-size: 70pt;
        line-height: 80px;
    }

  

}

@media screen and
(min-width:992px) and
(max-height:350px) {

    .ul-section-primary > li:nth-child(2) p {
        display:none;
    }

   

     .div-home-image img {
        display:none;
     }

     .div-home-image .video {
     display:none;
}

}

@media screen and
(min-width:992px) and
(max-height:270px) {

    .lb-on-top {
       display:none;
    }

}


@media screen and
(min-width:992px) and
(max-height:180px) {

    .div-page-theme {
        display:none;
    }

}
/*#endregion */

/*#region LOGO-SLEDER*/
@keyframes slide {
    0% {
        transform: translate3d(0, 0, 0)
    }

    100% {
        transform: translate3d(-100%, 0, 0)
    }
}


.div-slider {
    width: 100%;
    height: 200px;
    z-index: 999;
}

.logos-slider {
    display: flex;
    flex-wrap: nowrap;
    overflow: hidden;
    position: relative;
    -webkit-mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0) 0, #000 15%, #000 85%, rgba(0, 0, 0, 0) 100%);
    mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0) 0, #000 15%, #000 85%, rgba(0, 0, 0, 0) 100%);
    margin-top: 0px;
}

.logos-slider-container {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: slide 20s linear infinite;
}

.logos-slider-container img {
    width: 200px;
    max-width: 200px;
    margin-right: 100px;
}
/*#endregion */


@media screen and (max-width:1800.98px) {

    /*#region HEADER*/
    header.header-primary {
        width: calc(100% - 340px);
        margin-left: 170px;
    }


    header.header-primary .div-header-left {
        width: 300px;
    }

    header.header-primary .div-header-left img {
      
    }

    header.header-primary .div-header-center {
        width: calc(100% - 600px);      
    }

    header.header-primary .div-header-right {
        width: 300px;
    }

    header.header-primary .div-header-top-left {
        width: 400px;
    }

    header.header-primary .div-header-top-center {
        width: calc(100% - 800px);
    }

    header.header-primary .div-header-top-right {
        width: 400px;
    }
    /*#endregion */

    /*#region PANEL-LEFT*/

    aside.left {
        width:170px;
    }

    /*#endregion */

    /*#region PANEL-RIGHT*/

    aside.right {
        width:170px;
    }

    /*#endregion */
   
    /*#region CONTAINER*/
    .div-container {
        margin-left:170px;width:calc(100% - 340px);
    }
    /*#endregion */

   /*#region HOME*/

   .ul-section-primary {
       margin-left: 170px;
       width: calc(50% - 170px);
   }


   .div-home-image {
       width: calc(50% - 170px);
       margin-right: 170px;
   }

   /*#endregion */

}

@media screen and (max-width:1600.98px) {

    /*#region HOME*/
    /*#endregion */

    /*#region HEADER*/

    header.header-primary {
        width: calc(100% - 320px);
        margin-left: 160px;
    }


    header.header-primary .div-header-left {
        width: 250px;
    }

    header.header-primary .div-header-center {
        width: calc(100% - 500px);
    }

    header.header-primary .div-header-right {
        width: 250px;
    }


    header.header-primary .div-header-lang {
        width:150px;
    }

    /*#endregion */

    /*#region CONTAINER*/
    .div-container {
        margin-left:160px;width:calc(100% - 320px);
    }
    /*#endregion */

    /*#region MENU*/
    ul.ul-menu {
        gap: 40px;
        font-size: 16pt;
    }
    /*#endregion */

    /*#region PANEL-LEFT*/
   aside.left {
    width:160px;
}
    /*#endregion */

    /*#region PANEL-RIGHT*/
    aside.right {
        width:160px;
    }
    /*#endregion */

    /*#region HOME*/

 .ul-section-primary {
    margin-left: 160px;
    width:calc(50% - 160px);
}

.div-home-image {
    width:calc(50% - 160px);   
    margin-right:160px;
}
   
    /*#endregion */
   

}

@media screen and (max-width:1439.98px) {

    /*#region HEADER*/

    header.header-primary {
        width: calc(100% - 200px);
        margin-left: 100px;
    }

    header.header-primary .div-header-left img {
        height:150px;
    }
    
    header.header-primary .div-header-left {
        width: 200px;
    }

    header.header-primary .div-header-center {
        width: calc(100% - 450px);
    }

    header.header-primary .div-header-right {
        width: 250px;
    }

    header.header-primary .div-header-menu .div-header-menu-circle {
        width:50px;
        height:50px;
    }

/*#endregion */

    /*#region CONTAINER*/
.div-container {
    margin-left:150px;width:calc(100% - 300px);
}
/*#endregion */

    /*#region PANEL-LEFT*/
aside.left {
    width:100px;
}
/*#endregion */

    /*#region PANEL-RIGHT*/

aside.right {
    width:100px;
}

.lb-on-top {
    height:50px;
    width:50px;
    bottom: 30px;
}

.progress-container {                          
    bottom: 100px; 
    width: 1.5px; 
    height: 100px;                                                                
}

.ul-social-panel {                                  
    font-size: 10pt;
}

i.icon-mouse {                                 
    bottom: 220px;                              
}

.switcher-toggler {
    width: 40px;
    height: 40px;
}

.switcher-label.vertical {
    width: 40px;
    height: 80px;
    flex-direction: column;
}

.switcher-label.horizontal {
    width: 80px;
    height: 40px;
    flex-direction: row;
}

                .switcher-label.vertical i:last-child {
                    margin-bottom: 10px;
                }

                .switcher-label.vertical i:first-child {
                    margin-top: 10px;
                }

                .switcher-label.horizontal img:first-child {
                    margin-left: 2px;
                }

                .switcher-label.horizontal img:last-child {
                    margin-right: 2px;
                }

                .switcher-label i, .switcher-label img {
                    font-size: 12pt;
                }

            
                .switcher-label img {
                    height:15px;
                    width:15px;
                }


/*#endregion */

    /*#region MENU*/
    #hamburger-9 {
        transform: scale(0.4);
    }

    #hamburger-9.is-active {
        -webkit-transform: rotate(45deg) scale(0.4);
        -ms-transform: rotate(45deg) scale(0.4);
        -o-transform: rotate(45deg) scale(0.4);
        transform: rotate(45deg) scale(0.4);
    }
    /*#endregion */
                      
    /*#region HOME*/


    .ul-section-primary {
        margin-left: 100px;
        width:calc(50% - 100px);
    }

    .ul-section-primary > li:nth-child(2) p {
        width: 100%;
    }

    .ul-section-primary > li:nth-child(3) p {
        font-size: 12pt;
        line-height: 20px;
    }

    .ul-section-primary > li.li-button .lb-primary.second {
        margin-left:100px;
    }

    .ul-section-primary > li.li-button .lb-primary.second span {
        font-size: 14pt;
    }

    .ul-section-primary > li.li-button .lb-primary.second i.arrow {
        font-size: 14pt;
    }

    .ul-section-primary > li.li-button .lb-primary {
        height:80px;
        width:80px;
    }

    .ul-section-primary > li.li-button .lb-primary i {
        font-size: 18pt;
    }

    .ul-section-primary > li.li-button {
        margin-top:20px;
    }

    .div-home-image {
        width:calc(50% - 100px);   
        margin-right:100px;
    }


/*#endregion */

}

@media screen and (max-width:1199.98px) {

    /*#region HEADER*/
    
    header.header-primary {
        width: calc(100% - 200px);
        margin-left: 100px;
    }

    header.header-primary .div-header-left {
        width: 170px;
    }

    header.header-primary .div-header-left img {
        height:130px;
    }

    header.header-primary .div-header-center {
        width: calc(100% - 340px);
    }

    header.header-primary .div-header-right {
        width: 170px;
    }


    header.header-primary .div-header-menu {
        width:70px;
    }


    header.header-primary .div-header-lang {
        width:100px;
    }

     /*#endregion */

     /*#region MENU*/

     ul.ul-menu {
        gap: 20px;
        font-size: 14pt;
    }

    /*#endregion */

    /*#region CONTAINER*/
    .div-container {
        margin-left:100px;width:calc(100% - 200px);
    }
    /*#endregion */

    /*#region PANEL-LEFT*/

aside.left {
    width: 100px;
}

/*#endregion */

    /*#region PANEL-RIGHT*/

aside.right {
    width: 100px;
}

/*#endregion */

    /*#region HOME*/

.ul-section-primary {
    margin-left: 100px;
   
}

.ul-section-primary > li:nth-child(2) p {
    font-size: 81pt;
    line-height: 100px;
    
}

.ul-section-primary > li:nth-child(2) p > span.dot {
    font-size: 81pt;
}

.ul-section-primary > li:nth-child(3) p {
    font-size: 11pt;
    line-height: auto;

}

.div-home-image img {
    height:auto;width:80%;
}

 .div-home-image .video {
    height:auto;width:80%;
}

    /*#endregion */
    
}

@media screen and (max-width:991.98px) {

    /*#region HEADER*/


    header.header-primary .div-header-center {
            position: absolute;
            width: 100vw;
            right: -70px;
            height: 100vh;
            height: calc(var(--vh, 1vh) * 100);
            display: none;
        }
    
        header.header-primary.active .div-header-center {
            top: 50px;
        }
    
        header.header-primary.menu .div-header-center {
            display: block;
            background-color: #FFF;
        }
    
        header.header-primary.menu .div-header-center .div-center {
            justify-content: end;
        }
    
        header.header-primary {
            height: 150px;
            width: calc(100% - 120px);
            margin-left: 50px;
        }
    
        header.header-primary.active {
            top: -50px;
        }
    
        header.header-primary.hide {
            top: -50px;
        }
    
        header.header-primary .div-header-top {
            height: 50px;
        }
    
        header.header-primary .div-header-right {
            right: 0;
            position: absolute;
            margin-top: 50px;
        }
    
        
    
        /*#endregion */
    
    /*#region CONTAINER*/
        .div-container {
            width: calc(100% - 120px);
            margin-left: 50px;
        }
        /*#endregion */

    /*#region HOME*/
    .ul-section-primary {
        margin-left: 50px;
        width: calc(45% - 50px);
    }


    .ul-section-primary>li:nth-child(2) p {
        font-size: 70pt;
        line-height: 80px;
    }

    .ul-section-primary>li:first-child h1 {
        font-size: 10pt;
    }

    .div-home-image img {
        width: 80%;
    }

     .div-home-image .video {
   width: 80%;
}

    .div-home-image {
        width:calc(55% - 70px);   
        margin-right:70px;
    }


    /*#endregion */

    /*#region MENU*/

        ul.ul-menu {
            display: block;
            gap: 0px;
            font-size: 18pt;
            margin-right: 80px;
        }
    
        ul.ul-menu>li .div-center {
            justify-content: end;
        }


    /*#endregion */
      
    /*#region PANEL-LEFT*/

aside.left {
    width: 50px;
}


    /*#endregion */
    
    /*#region PANEL-RIGHT*/

    aside.right {
        width: 70px;
    }

    .lb-on-top {
        height: 40px;
        width: 40px;
        bottom: 20px;
    }

    .lb-on-top i {
        font-size: 12pt;
    }

    /*#endregion */
        
    /*#region SECTION*/


       .div-section-page {
        width: 100%;
        height: 50%;
        position: relative;
    }

    .div-section-page.right {
        position: relative;
        /* height: auto; */
        width: 100%;
        height: 500px;
        margin-bottom: 500px;
    }

    .div-section-page.left {
        bottom: 0;
        margin-top: auto;
        position: absolute;
        height: 500px;
        width: 100%;
    }


/*#endregion */
    
    /*#region RESPONSIVE*/

                @media screen and (max-width:991.98px) and (min-width: 768px) and (max-height:850px) {
        
                    .div-page-theme {
                        margin-top: 50px;
                    }
        
                    i.icon-mouse {
                        bottom: 250px;
                    }
        
                    .progress-container {
                        bottom: 130px;
                    }
        
                    .lb-on-top {
                        bottom: 50px;
                    }
        
                    .rotated-outer {
                        bottom: 470px;
                    }
        
                    .ul-section-primary {
                        margin-top: 80px;
                    }
        
        
                }


                                @media screen and (max-width:991.98px) and (min-width: 768px) and (max-height:800px) {
                
                
                                    .follow-text {
                                        display: none;
                                    }
                
                                    .rotated-outer {
                                        bottom: 50%;
                                        transform: translate(-50%, 50%);
                                    }
                
                
                                    i.icon-mouse {
                                        bottom: 240px;
                                    }
                
                                    .progress-container {
                                        bottom: 120px;
                                    }
                
                                    .lb-on-top {
                                        bottom: 30px;
                                    }
                
                
                                }
                

        @media screen and
        (max-width:991.98px) and (min-width: 768px) and
        (max-height:700px) {
        
            header.header-primary {
                height: 110px;             
            }
        
            header.header-primary.active {
                top: -40px;
            }
        
            header.header-primary .div-header-top {
                height: 40px;
            }
        
            header.header-primary .div-header-left {
                height: 70px;
            }


            .div-home-image {
                height: calc(100vh - 110px);
                height: calc(var(--vh, 1vh)* 100 - 110px);
            }
        
        
        
            header.header-primary .div-header-right {
                height: 70px;
                margin-top: 40px;
            }
        
            header.header-primary .div-header-lang {
                height: 70px;
            }
        
            header.header-primary .div-header-menu {
                height: 70px;
            }

            .rotated-outer {
                margin-bottom: 30px;
            }
        

        }


        @media screen and
        (max-width:991.98px) and (min-width: 768px) and
        (max-height:600px) {
        
            i.icon-mouse {
               display:none;
            }
          
            .progress-container {
                display:none;
            }
        
            .rotated-outer {
                margin-bottom:-50px;
            }

            .ul-section-primary > li:nth-child(3) {
                margin-top:10px;
            }


            .ul-section-primary > li.li-button {
                margin-top:10px;
            }

            .ul-section-primary > li:nth-child(2) {
                margin-top:20px;
            }

            .ul-section-primary>li:nth-child(2) p {
                font-size: 60pt;
                line-height: 70px;
            }

            .ul-section-primary > li:nth-child(3) p {
                font-size: 9pt;
            }

            .div-home-image img {
                width: auto;
                height:80%;
            }

             .div-home-image .video {
  width: auto;
                height:80%;
}
  
        }


        @media screen and
        (max-width:991.98px) and (min-width: 768px) and
        (max-height:570px) {
        
            .ul-section-primary > li:nth-child(3) {
               display:none;
            }

            .ul-section-primary {
                margin-top:60px;
            }
        
        }

        
        @media screen and
        (max-width:991.98px) and (min-width: 768px) and
        (max-height:500px) {
        
            .ul-section-primary > li:nth-child(3) {
               display:none;
            }


            .div-home-image img {
                width: auto;
                height:90%;
            }

            .div-home-image .video {
  width: auto;
                height:90%;
}

            .ul-section-primary {
                margin-top:60px;
            }
    
            .ul-section-primary > li.li-button {
                display:none;
            }
       
        }

   
        @media screen and
        (max-width:991.98px) and (min-width: 768px) and
        (max-height:400px) {
        
            .rotated-outer {
                display:none;
            }

           
          
        }

        @media screen and
        (max-width:991.98px) and (min-width: 768px) and
        (max-height:370px) {
        
            .lb-on-top {
                display:none;
             }

             .ul-section-primary > li:first-child  {
                display:none;
            }
         
        }

        @media screen and
        (max-width:991.98px) and (min-width: 768px) and
        (max-height:350px) {
        
            .div-home-image {
                display:none;
             }

             .ul-section-primary   {
                display:none;
            }
         
        }

        @media screen and
        (max-width:991.98px) and (min-width: 768px) and
        (max-height:180px) {
        
            .div-page-theme {
                display:none;
            }        
                  
        }

        /*#endregion */

}

@media screen and (max-width:767.98px) {

    @keyframes pulse3 {
        0% {
         
          box-shadow: 0 0 0 0 rgba(248, 64, 0	, 0.7);
        }
        
        70% {
         
          box-shadow: 0 0 0 20px rgba(255, 80, 80, 0);
        }
        
        100% {
        
        }
      }
    
    
      @keyframes pulse4 {
        0% {
         
            box-shadow: 0 0 0 0 rgba(248, 64, 0	, 0.7);
        }
        
        70% {
         
          box-shadow: 0 0 0 10px rgba(255, 80, 80, 0);
        }
        
        100% {
        
        }
      }



    /*#region HEADER*/

header.header-primary {
    height: 110px;
}

header.header-primary.active {
    top: -40px;
}

header.header-primary .div-header-top {
    height: 40px;
}

header.header-primary .div-header-left {
    height: 70px;
}

header.header-primary .div-header-left img {
    height: 110px;
}

header.header-primary .div-header-right {
    height: 70px;
    margin-top: 40px;
}

header.header-primary .div-header-lang {
    height: 70px;
}

header.header-primary .div-header-menu {
    height: 70px;
}

/*#endregion */

    /*#region HOME*/

    .ul-section-primary {
        position: absolute;
        bottom: 30px;
        top: inherit;
        transform: none;
        width: calc(100% - 120px);
    }


    .ul-section-primary > li:first-child {
        height:20px;
    }

    .ul-section-primary > li:first-child h1 span.active {
        height:30px;
        width:30px;   
        padding:7px;    
    }


.ul-section-primary > li:nth-child(2) p {     
    background-color:transparent;

}

.ul-section-primary > li:nth-child(3) {
    margin-top: 10px;
    height:100px;
    overflow-y: auto;
}

.ul-section-primary > li:nth-child(3) p {
    background-color: transparent;
    width: 70%;
    font-size: 10pt;
}

.ul-section-primary > li:nth-child(2) {
    margin-top: 10px;
    height:140px;
}

.ul-section-primary > li:nth-child(2) p {
    font-size: 50pt;
    line-height: 50px;
}

.ul-section-primary > li.li-button {
    margin-top: 10px;
}

.ul-section-primary > li.li-button {
    height:80px;
}

.ul-section-primary > li.li-button .lb-primary {
    height: 70px;
    width: 70px;
}

.ul-section-primary > li.li-button .lb-primary.second {
    margin-left: 100px;
    width: 160px;
}

.ul-section-primary > li.li-button .lb-primary.second i.arrow {
    font-size: 12pt;
}

.ul-section-primary > li.li-button .lb-primary.second span {
    font-size: 12pt;
}




.div-home-image {
    width: calc(100% - 120px);
    height:calc(100vh - 480px); /* 370px */
    height: calc(var(--vh, 1vh) * 100 - 480px);
    bottom: inherit;
    top:110px;
}

.div-home-image.preload {
    top:110px;
    transform: none;
    height:calc(100vh - 510px); /* 370px */
    height: calc(var(--vh, 1vh) * 100 - 510px);
}

.div-home-image img {
    height:80%;width:auto;
}

.div-home-image .video {
 height:80%;width:auto;
}

/* .div-home-image {
    width:50%;
    height:calc(100% - 150px);
    position: absolute; 
    bottom:0px; 
    right:0;
    background-color:yellow;
} */


/*#endregion */

 /*#region FOOTER*/
 /*#endregion */

    /*#region RESPONSIVE*/
 @media screen and (max-width:767.98px) and (min-width: 576px) and (max-height:850px) {

     .div-page-theme {
         margin-top: 50px;
     }

     i.icon-mouse {
         bottom: 250px;
     }

     .progress-container {
         bottom: 130px;
     }

     .lb-on-top {
         bottom: 50px;
     }

     .rotated-outer {
         bottom: 470px;
     }

     .ul-section-primary {
         margin-top: 80px;
     }


 }


 @media screen and (max-width:767.98px) and (min-width: 576px) and (max-height:830px) {


    


 }

 @media screen and (max-width:767.98px) and (min-width: 576px) and (max-height:800px) {

     .follow-text {
         display: none;
     }

     .rotated-outer {
         bottom: 50%;
         transform: translate(-50%, 50%);
     }


     i.icon-mouse {
         bottom: 240px;
     }

     .progress-container {
         bottom: 120px;
     }

     .lb-on-top {
         bottom: 30px;
     }

 }

 @media screen and (max-width:767.98px) and (min-width: 576px) and (max-height:750px) {

     .div-home-image {
         height: calc(100vh - 430px);
         height: calc(var(--vh, 1vh) * 100 - 430px);
         top: 110px;
     }

     .ul-section-primary>li:nth-child(3) {
         margin-top: 10px;
         height: 60px;
     }

     .ul-section-primary>li:nth-child(3) p {
         font-size: 8pt;
         line-height: normal;
     }

     .ul-section-primary>li.li-button {
         height: 70px;
     }

     .ul-section-primary>li.li-button .lb-primary {
         height: 60px;
         width: 60px;
     }

     .ul-section-primary>li.li-button .lb-primary i {
         font-size: 16pt;
     }

     .ul-section-primary>li.li-button .lb-primary.second {
         margin-left: 70px;
     }

 }


 @media screen and (max-width:767.98px) and (min-width: 576px) and (max-height:700px) {

     .rotated-outer {
         margin-bottom: 30px;
     }

 }



 @media screen and (max-width:767.98px) and (min-width: 576px) and (max-height:650px) {

     .div-home-image {
         display: none;
     }

 }

 @media screen and (max-width:767.98px) and (min-width: 576px) and (max-height:600px) {


     i.icon-mouse {
         display: none;
     }

     .progress-container {
         display: none;
     }

     .rotated-outer {
         margin-bottom: -50px;
     }

 }


 @media screen and (max-width:767.98px) and (min-width: 576px) and (max-height:450px) {

     .ul-section-primary>li:nth-child(3) {
         display: none;
     }



 }




 @media screen and (max-width:767.98px) and (min-width: 576px) and (max-height:400px) {

     .rotated-outer {
         display: none;
     }


     .ul-section-primary>li.li-button {
         display: none;
     }



 }


 @media screen and (max-width:767.98px) and (min-width: 576px) and (max-height:300px) {

     .ul-section-primary {
         display: none;
     }

     .lb-on-top {
         display: none;
     }

 }

 @media screen and (max-width:767.98px) and (min-width: 576px) and (max-height:180px) {

     .div-page-theme {
         display: none;
     }

 }

 /*#endregion */

}

@media screen and (max-width:575.98px) {

ul.ul-social-site-preload {
    gap:10px;
}

ul.ul-social-site-preload > li {
   width:50px;height:50px;
}

ul.ul-social-site-preload > li i {
   font-size: 12pt;
}

span.text-preload {
   font-size: 8pt;
}

    /*#region HEADER*/
 header.header-primary {
    height:110px;
    width: 100%;
    margin-left: 0px;
}

    header.header-primary .div-header-left {
        height: 70px;
    }

    header.header-primary .div-header-left img {
        height: 100px;
        margin-left:30px;
    }

    header.header-primary .div-header-center {    
        right: 0px;         
    }

    header.header-primary .div-header-right {         
        right: 0px;
        height:70px;
    }

    header.header-primary .div-header-lang {
        height:70px;
    }

    header.header-primary .div-header-menu {
        height:70px;
    }
 /*#endregion */

    /*#region MENU*/
  ul.ul-menu {
    font-size: 28pt;
    margin-right: 100px;
}

/*#endregion */

    /*#region CONTAINER*/
        .div-container {
            margin-left:30px;width:calc(100% - 60px);
        }
        /*#endregion */

    /*#region HOME*/

 .ul-section-primary {
    width: calc(100% - 30px);
    margin-left:30px;
    margin-top: 0px;
}

.ul-section-primary > li:first-child h1 {
    font-size: 10pt;
}

.ul-section-primary > li:nth-child(2) {
    height:100px;
}

.ul-section-primary > li:nth-child(2) p {
    font-size: 36pt;
    line-height: 40px;
    /* letter-spacing: -.2rem; */
}

.ul-section-primary > li:nth-child(2) p > span.dot {
    font-size: 42pt;
    color:var(--color-primary);
}



.ul-section-primary > li:nth-child(3) {
    margin-top: 5px;
    height:60px;
  
}

.ul-section-primary > li:nth-child(3) p {
    font-size: 8pt;
    line-height: normal;
}


.ul-section-primary>li.li-button {
    height:70px;
}


.ul-section-primary > li.li-button .lb-primary.second i.arrow {
    font-size: 12pt;
    margin-right:10px;
}

.ul-section-primary > li.li-button .lb-primary.second span {
    font-size: 12pt;
}

.ul-section-primary > li.li-button .lb-primary {
    height: 60px;
    width: 60px;
}

.ul-section-primary > li.li-button .lb-primary i {
    font-size: 16pt;
}

.ul-section-primary > li.li-button .lb-primary.second {
    margin-left: 70px;
}

.div-home-image {
    width: calc(100% - 30px);
    margin-right:0;
    margin-left:30px;     
    height:calc(100vh - 390px); /* 370px */
    height: calc(var(--vh, 1vh) * 100 - 390px);
    bottom: inherit;
    top:110px;
}


.div-home-image.preload {
    top:110px;
    transform: none;
    height:calc(100vh - 430px); /* 370px */
    height: calc(var(--vh, 1vh) * 100 - 430px);
}




.div-home-image img {
    width:85%;
    height:auto;
}

.div-home-image .video {
  width:85%;
    height:auto;
}

.div-home-image.preload img {
    width:70%;
    height:auto;
}

.div-home-image.preload .video {
    width:70%;
    height:auto;
}



 /*#endregion */

    /*#region PANEL-LEFT*/

aside.left {
    width:30px;
}

 /*#endregion */

    /*#region PANEL-RIGHT*/
   
   aside.right {
    width:70px;
    display:none;
}

aside.right.menu {
   display: block;
   z-index: 1005;
   margin-top:120px;
   height:calc(100% - 120px);
}

header.header-primary.active.menu.active2 ~ main aside.right.menu {
    margin-top: 70px;
    height: calc(100% - 70px);
}

.div-page-theme {
    margin-top:0px;
}

    /*#endregion */
   
    /*#region FOOTER*/
 /*#endregion */

    /*#region RESPONSIVE*/


 @media screen and (max-width:575.98px) and (max-height:990px) {
        

    .div-home-image img {
        width:auto;
        height:85%;
    }

    .div-home-image .video {
  width:auto;
        height:85%;
}

 }

 @media screen and (max-width:575.98px) and (max-height:900px) {
        

    i.icon-mouse {
        bottom: 250px;
    }

    .progress-container {
        bottom: 130px;
    }

    .lb-on-top {
        bottom: 50px;
    }

    .rotated-outer {
        bottom: 470px;
    }

    .div-home-image.preload img {
      width:auto;
        height:85%;
}

.div-home-image.preload .video {
width:auto;
        height:85%;
}


 }




                @media screen and (max-width:575.98px) and (max-height:830px) {


                    .follow-text {
                        display: none;
                    }

                    .rotated-outer {
                        bottom: 350px;
                    }


                    i.icon-mouse {
                        bottom: 220px;
                    }

                    .progress-container {
                        bottom: 100px;
                    }

                    .lb-on-top {
                        bottom: 30px;
                    }
  

                }










@media screen and
(max-width:575.98px) and
(max-height:700px) {

.rotated-outer {
margin-bottom: 30px;
}

.rotated-outer {
    bottom: 270px;
}


}



@media screen and
(max-width:575.98px) and
(max-height:600px) {

    .div-home-image {
        display: none;
    }


i.icon-mouse {
display:none;
}

.progress-container {
display:none;
}

.rotated-outer {
    bottom: 110px;
}

}

@media screen and
(max-width:575.98px) and
(max-height:450px) {

.rotated-outer {
display:none;
}

}

@media screen and
(max-width:575.98px) and
(max-height:300px) {

.lb-on-top {
display:none;
}

}

@media screen and
(max-width:575.98px) and
(max-height:220px) {

.div-page-theme {
display:none;
}        
  
}




 /*#endregion */


}

@media screen and (max-width:473px) {

    /*#region HEADER*/

 header.header-primary {
    height: 110px;
}

header.header-primary.active {
    top:-40px;
}

header.header-primary.active .div-header-center {
    top:40px;
} 


header.header-primary .div-header-top {
    height:40px;
}

header.header-primary .div-header-right {  
    margin-top:40px;       
}

 /*#endregion */

    /*#region HOME*/

 .ul-section-primary>li:nth-child(3) p {
    width: 90%;
}

.div-home-image {   
    height:calc(100vh - 390px);
    height: calc(var(--vh, 1vh) * 100 - 390px);
    top:110px;
}

.div-home-image img {
    height:auto;
    width:80%;
}

.div-home-image .video {
    height:auto;
    width:80%;
}

 /*#endregion */

   /*#region PANEL-LEFT*/
   /*#endregion */
    
   /*#region PANEL-RIGHT*/

      aside.right.menu {
        margin-top: 110px;
        height: calc(100% - 110px);
    }

 /*#endregion */
    
   /*#region RESPONSIVE*/

        @media screen and (max-width:473px) and (min-width: 376px) and (max-height:840px) {
    
            .div-home-image img {
                height: 85%;
                width: auto;
            }

            .div-home-image .video {
     height: 85%;
                width: auto;
}
    
        }

         /*#endregion */
   
}

@media screen and (max-width: 375px) {

    /*#region HEADER*/

    header.header-primary {
        height:80px;
    }

    header.header-primary.active .div-header-center {
        top:30px;
    } 

    header.header-primary .div-header-top {
        height:30px;
    }

        header.header-primary .div-header-left {
            height: 50px;
        }

        header.header-primary .div-header-left img {
            height: 70px;
        }

        header.header-primary.active .div-header-left img {
            height:40px;
        }

        header.header-primary .div-header-right {  
            margin-top:30px;       
            height:50px ;
        }

        header.header-primary .div-header-lang {
            height:50px !important;
        }

        header.header-primary .div-header-menu {
            height:50px !important;
        }


        header.header-primary.active {
            top:-30px;
        }

        header.header-primary .div-header-menu .div-header-menu-circle {
            width:40px;
            height:40px;
        }
    


   /*#endregion */

    /*#region MENU*/

   #hamburger-9 {
    transform: scale(0.3);
}

#hamburger-9.is-active {
    -webkit-transform: rotate(45deg) scale(0.3);
    -ms-transform: rotate(45deg) scale(0.3);
    -o-transform: rotate(45deg) scale(0.3);
    transform: rotate(45deg) scale(0.3);
}

 /*#endregion */

   /*#region HOME*/

   .ul-section-primary>li:first-child h1 {
    font-size: 10pt;
}

.div-home-image {   
    height:calc(100vh - 360px);
    height: calc(var(--vh, 1vh) * 100 - 360px);
    top:80px;
}

   /*#endregion */
   
    /*#region PANEL-LEFT*/
    /*#endregion */

    /*#region PANEL-RIGHT*/

    aside.right.menu {
        margin-top: 80px;
        height: calc(100% - 80px);
    }

    header.header-primary.active.menu.active2~main aside.right.menu {
        margin-top: 50px;
        height: calc(100% - 50px);
    }

    .div-page-theme {
        margin-top:20px;
    }

    .ul-social-panel {                                  
        font-size: 8pt;
    }


    /*#endregion */

    /*#region RESPONSIVE*/


        @media screen and (max-width: 375px) and (min-width: 335px) and (max-height:840px) {
    
            .div-home-image img {
                height: 70%;   
                width:auto;         
            }

             .div-home-image .video {
      height: 70%;   
                width:auto;     
}
    
        }


        @media screen and (max-width: 375px) and (min-width: 335px) and (max-height:700px) {
    
            .div-home-image img {
                height: 85%;   
                width:auto;         
            }

              .div-home-image .video {
     height: 85%;   
                width:auto;         
}
    
        }

        /*#endregion */

}

@media screen and (max-width: 334px) {

  
}

@media screen and (max-width: 320px) {

}