/*-- UNITED STYLES */
:root {
    --main-theme: #D9AE74;
}

::-moz-selection { /* Code for Firefox */
    color: white;
    background: #00cf8d;
}

::selection {
    color: white;
    background: #00cf8d;
}

@font-face {
    font-family: "Outfit";
    src: url("Outfit.ttf") format("truetype");
    font-display: swap;
}

@font-face {
    font-family: "Nunito";
    src: url("Nunito.ttf") format("truetype");
    font-display: swap;
}

body {
    letter-spacing: 0px;
    margin: 0px;
    font-family: 'Nunito', sans-serif;
    font-weight: 300;
/ / color: #3ab73a;
}

h2, h3 {
    font-weight: 600;
    font-family: 'Nunito', sans-serif;
}

/*-- HOMEPAGE STYLES */

#menu {
    background-image: linear-gradient(to right, #FFA500FF 10%, #f18d00 30%, gold 45%, #FFA500FF 100%);
    background-image: linear-gradient(to right, #1ca1ca 20%, #00cf8d 40%, #00cf8d 45%, #1ca1ca 100%);
    animation-name: wave-animation;
    animation-duration: 180s;
    background-size: 300% auto;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

@keyframes wave-animation {
    0% {
        background-position: 0 0;
    }
    20% {
        background-position: 100% 0;
    }
    50% {
        background-position: 0 0;
    }
    80% {
        background-position: 100% 0;
    }
    100% {
        background-position: 0 0;
    }
}

@keyframes xbtn {
    0% {
        transform: translate(0, -60px);
    }
    100% {
        background-color: #ffffff;
    }
}

@keyframes growDown {
    0% {
        transform: scaleY(0)
    }
    80% {
        transform: scaleY(1.1)
    }
    100% {
        transform: scaleY(1)
    }
}

@keyframes growUp {
    0% {
        transform: scaleY(1)
    }
    80% {
        transform: scaleY(1.1)
    }
    100% {
        transform: scaleY(0)
    }
}


#menu {
    background-color: var(--main-theme);
/ / background-image: linear-gradient(to right, #1ca1ca, #00d665);
    color: white;
    padding: 15px 20px;

    display: flex;
    font-size: 2rem;
    clear: both;
}

.menu-mobile-content {
    /*display: none;*/
    height: 0px;
    transition: .3s;
    opacity: 0;

    position: absolute;
    top: calc(41px + 2rem);
    left: 0px;
    width: 100%;

    z-index: 2000;
    animation: growDown 300ms ease-in-out forwards;
    transform-origin: top center;

    margin-top: 6rem;
}

.menu-mobile {
    z-index: 1000;
    /*    display: none;
        height: 100%;*/
    height: 0px;
    transition: .5s;
    /*background: rgba(255, 255, 255, 0.26);*/
    background: rgba(255, 255, 255, 0.6);

    /*---*/
    background: rgba(255, 255, 255, 0.9); /* TODO NEVYRESENY BLUR VERSION */
    /*---*/
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    color: #161313;

    filter: blur(4px);
    position: absolute;
    top: calc(41px + 2rem);
    left: 0px;
    width: 100%;

    animation: growDown 400ms ease-in-out forwards;
    transform-origin: top center;

}

#menu input[type=checkbox] {
    display: none;
}

#menu input[type=checkbox]:checked ~ .m-button #arr1 {
    transform: rotateY(90deg);
    transition: 0.6s;
    transform-style: preserve-3d;
    display: none;
}

#menu input[type=checkbox]:checked ~ .menu-mobile {
    /*display: block;*/
    height: 100%;
    transition: .5s;
}

#menu input[type=checkbox]:checked ~ .menu-mobile-content {
    /*display: block;*/
    height: auto;
    transition: .4s;
    opacity: 1;
}

#menu input[type=checkbox]:checked ~ .m-button #arr2 {
    display: inline;
}

#arr2 {
    display: none;
}

@keyframes page-title-animation {
    0% {
        color: silver;
        border-radius: 2em;
        border-radius: .8em;
        background: rgba(0, 0, 0, 0.8);
    }
    /*druhe cislo nazacatku v minusu a doluv plusu je animace odshora dolu*/
    20% {
    }
    100% {
        color: white;
    }
}

@keyframes underscore-animation {
    0% {
        width: 80%
    }
    33% {
        width: 90%
    }
    66% {
        width: 100%
    }
    100% {
        width: 80%
    }
}

@keyframes underscore-hover-animation {
    100% {
        width: 90%
    }
}

/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
    #menu {
        background-image: linear-gradient(to right, #1ca1ca 20%, #00cf8d 40%, #00cf8d 45%, #1ca1ca 100%);
        animation-name: wave-animation;
        background-size: 600% auto;
    }


}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) and (max-width: 767px) {
    :root {
        --enter-right: -60px;
    }

    .common-inside {
        width: 64vw !important;
        margin-left: 18vw !important;
    }

}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) and (max-width: 1199px) {
    .common-inside p, .common-inside li, .common-inside-3 {
        font-size: 18px !important;
    }

    .common-inside-3 h2 {
        font-size: 22px !important;
    }
}

@media only screen and (min-width: 768px) {
    :root {
        --enter-right: -100px;
    }

    .common-inside {
        width: 42vw !important;
        margin-left: 29vw !important;
    }

}

/*calc(100vh - (30px + 2rem))*/
/* Large devices (laptops/desktops, 992px and up) */


@media only screen and (min-width: 992px) {
    /*.first-link {*/
    /*    display: none*/
    /*}*/
    .first-link span::after {
        background: #ffff !important;
        height: 2px !important;
    }

    .first-link span {
        cursor: default;
        color: #fff !important;
    }

    .menu-mobile-content a, .menu-mobile-content div div {
        font-weight: unset !important;
        color: #f3f3f3 !important;
    }

    .menu-mobile-content a {
        transition: .5s;
    }

    .menu-mobile-content a:hover {
        color: #818181 !important;
        transition: .4s;
    }

    .menu-mobile-content label {
        position: relative;
        transition: 1s;
        bottom: 0px
    }

    .menu-mobile-content label:hover {
        transition: .4s;
        bottom: -5px;
    }


    :root {
        --enter-right: -80px;
        --enter-left: -200px;
    }

    .m-button svg {
        display: none !important;
    }

    #dropbtn, .m-button {
        display: none;
    }

    .menu-mobile {
        display: none !important
    }

    .menu-mobile-content {
        height: unset;
        opacity: 1;
        display: flex;
        position: inherit !important;
        top: unset !important;
        left: unset !important;

        width: unset !important;
        z-index: unset !important;
        animation: unset !important;
        transform-origin: unset !important;
        font-size: 20px;
        margin-top: 0px !important;

    }

    #menu h1 {
        margin-bottom: 4px !important;
    }

    #menu-a {
        /* width: 100%; */
        /* justify-content: center; */
        flex-direction: row !important;
        margin-top: unset !important;
    }


    .menu-mobile-content a, .menu-mobile-content div div {

        background: transparent !important;
        margin-bottom: unset !important;
        width: unset !important;
        font-size: 18px !important;
        padding: 0 4px;
    }

    .menu-mobile-content div div {
        display: flex
    }

    .menu-mobile-content i, .menu-mobile-content div div p {
        display: none !important;
    }


    .common-inside-3 {
        display: flex;
        gap: 5%;
        width: 90vw !important;
        margin-left: 5vw !important;
    }


}


/*--- ZACATEK PC VERZE*/


.common-inside-3 {
    margin-bottom: 10vw;
}

/*--- KONEC PC VERZE*/

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {
    :root {
        --enter-right: -50px;
    }

    body {
        overflow-x: hidden
    }


}

@media screen and (max-width: 399px) {
    :root {
        --enter-right: -30px;
    }
}

@media screen and (max-width: 489px) {
    :root {
        --enter-right: -35px;
    }
}

@media screen and (min-width: 490px) and (max-width: 600px) {
    :root {
        --enter-right: -40px;
    }

}

.common-inside-3 {
    justify-content: center
}

.common {
    width: 100%;
    text-align: center
}

.common-inside-3, .common-inside {
    width: 80vw;
    margin-left: 10vw;
    text-align: left;
    font-size: 17px
}


a {
    transform-style: unset;
}


#menu-a {
    width: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.menu-mobile-content a, .menu-mobile-content div div {
    /* background: rgba(0, 0, 0, 0.65); */
    color: #161313;
    width: fit-content;
    margin: auto;
    padding: 8px 12px;
    border: 0px solid white;
    /* border-radius: 0.4em; */
    margin-bottom: 10px;
    width: 70%;
    font-weight: 500;
    font-size: 24px;
}

.menu-mobile-content div div a {
    background: transparent;
    display: block;
    padding: 0px;
}

.menu-mobile-content div div p {
    margin: 0;
    margin-bottom: 10px
}

#menu-icon1, #menu-icon2, #menu-icon3, #arr-up, #arr-down {
    font-size: 80% !important;
    animation-iteration-count: infinite;
    animation-duration: 10s;
}

#menu-icon1 {
    animation-name: menu-link-animation-1;
}

#menu-icon2 {
    animation-name: menu-link-animation-2;
}

#menu-icon3 {
    animation-name: menu-link-animation-3;
}

@keyframes menu-link-animation-1 {
    0% {
        transform: rotate(90deg) translateY(0px)
    }
    10% {
        transform: rotate(90deg) translateY(0px)
    }
    17% {
        transform: rotate(90deg) translateY(-6px)
    }
    25% {
        transform: rotate(90deg) translateY(0px)
    }
}

@keyframes menu-link-animation-2 {
    0% {
        transform: rotate(90deg) translateY(0px)
    }
    23% {
        transform: rotate(90deg) translateY(0px)
    }
    30% {
        transform: rotate(90deg) translateY(-6px)
    }
    38% {
        transform: rotate(90deg) translateY(0px)
    }
}

@keyframes menu-link-animation-3 {
    0% {
        transform: rotate(90deg) translateY(0px)
    }
    36% {
        transform: rotate(90deg) translateY(0px)
    }
    43% {
        transform: rotate(90deg) translateY(-6px)
    }
    50% {
        transform: rotate(90deg) translateY(0px)
    }
}

.angle-right {
    transform: rotate(90deg) translateY(0px);
    top: 2px;
    position: relative;
}

#menu input[type=checkbox]:checked ~ label svg line:nth-child(1) {
    transform: rotate(45deg) translate(4px, -5px) !important;
    transition: 0.6s;
}


#menu input[type=checkbox]:checked ~ label svg line:nth-child(2) {
    opacity: 0;
    transition: 0.6s;
    transform: translateX(6px) !important;
}

#menu input[type=checkbox]:checked ~ label svg line:nth-child(3) {
    transform: rotate(-45deg) translate(-13px, -2px);
    transition: 0.6s;
}

.m-button svg {
    width: 40px;
    height: 40px;
    fill: none;
    stroke: #fff;
    stroke-width: 2.4;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform 0.3s ease-in-out;
}

.m-button {
    display: flex
}

.m-button svg line {
    transition: 0.6s;
}


#postup-div ul {
    list-style: none; /* Remove default bullets */
    margin: 2.5rem 0rem;
}

#postup-div ul li::before {
    content: "\2022"; /* Add content: \2022 is the CSS Code/unicode for a bullet */
    color: #1ca1ca; /* Change the color */
    font-weight: bold; /* If you want it to be bold */
    display: inline-block; /* Needed to add space between the bullet and the text */
    width: 1em; /* Also needed for space (tweak if needed) */
    margin-left: -1em; /* Also needed for space (tweak if needed) */
}

@keyframes enter-animation {
    0% {
        transform: translateY(100px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@media (prefers-reduced-motion: no-preference) {
    .show-animation {
        animation: enter-animation 0.8s 1;
        /*NEW-VER todo*/
        transition: .5s;
        opacity: 1;
    }
}
/*NEW-VER todo*/
.show{
    opacity: 0;
}

@keyframes enter-right-animation {
    0% {
        transform: translateX(var(--enter-right));
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@media (prefers-reduced-motion: no-preference) {
    .show-right-animation {
        animation: enter-right-animation 0.8s 1;
    }
}


@media screen and (min-width: 991px) {

    @keyframes enter-left-animation {
        0% {
            transform: translateX(calc(-1 * var(--enter-left)));
            opacity: 0;
        }
        100% {
            transform: translateX(0);
            opacity: 1;
        }
    }
}


/*--- TOOLTIP BOX*/

.tooltip {
    position: relative;
    border-bottom: 1px dotted black;
}

.tooltip:before {
    content: attr(tooltip-data);
    position: absolute;
    width: 100px;
    background-color: #262626;
    color: #fff;
    text-align: center;
    padding: 15px;
    line-height: 1.1;
    border-radius: 5px;
    z-index: 1;
    opacity: 0;
    transition: opacity .5s;
    bottom: 125%;
    left: 50%;
    margin-left: -65px;
    font-size: 0.70em;
    visibility: hidden;
}

.tooltip:after {
    content: "";
    position: absolute;
    bottom: 75%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    opacity: 0;
    transition: opacity 0.8s;
    border-color: #000 transparent transparent transparent;
    visibility: hidden;
}

.tooltip:hover:before,
.tooltip:hover:after {
    opacity: 1;
    visibility: visible;
}

/* EXAMPLE TOOLTIP BOX*/
/*
<p>Hover <span class="tooltip" tooltip-data="Tooltip Content">Here</span> to see the tooltip.</p>
*/


@media (prefers-reduced-motion: no-preference) {
    .show-left-animation {
        animation: enter-left-animation 2s 1;
    }
}

h2 {
    font-weight: 500;
}

h3 {
    font-weight: 400;
}

.logo-animated {
    animation-duration: 10s;
   // animation-name: logo;
    display: inline-block;
}

.logo-dot {
    //animation-name: logo-dot;
    animation-duration: 5s;
}

.logo-end {
  //  animation-name: logo-end;
    animation-duration: 5s;
}

@keyframes logo {
    0% {
        transform: scaleX(-1);
    }

    30% {
        transform: scaleX(1);
    }
}

@keyframes logo-dot {
    0% {
        opacity: 0;
    }
    60% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes logo-end {
    0% {
        margin-left: 0px;
        /*color: #1ca1ca;*/
    }
    60% {
        margin-left: 10px;
    }
    100% {
        opacity: 1;
    }
}


.more-link {
    text-decoration: none;
    color: white;
    background-color: #73d3b2;
    padding: 8px 16px;
    border-radius: 0.7em;

    transition: .6s;
    float: right;
}


.more-link:hover {
    background-color: #54a88b;
    transition: .5s;

}


/*EXTENDED FOOTER*/
.extend-footer {
    background: #100f0f;
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

.extend-footer b {
    font-weight: 700;
}

@media screen and (min-width: 1200px) {
    .extend-footer {
        padding: 1rem 20%;
    }
}

@media screen and (min-width: 760px) and (max-width: 1200px) {
    .extend-footer {
        padding: 1rem 10%;
    }
}

@media screen and (min-width: 600px) and (max-width: 759px) {
    .extend-footer {
        padding: 1rem 5%;
    }
}

@media screen and (min-width: 460px) and (max-width: 599px) {
    .extend-footer {
        padding: 1rem 5%;
        flex-wrap: wrap;
    }

    .extend-footer div:first-child {
        flex: 1 99% !important;
    }

    .extend-footer p {
        margin-left: 20px !important;
    }

}

@media screen and (max-width: 459px) {
    .extend-footer {
        flex-direction: column;
        padding-top: 20px !important;
    }

    .extend-footer div {
        margin-bottom: 20px;
    }

    .extend-footer p {
        margin-left: 10% !important;
        margin-right: 10% !important;
    }

}

.extend-footer div {
    flex: 1;
}

.extend-footer p:first-child {
    color: #999
}

.extend-footer p {
    color: #dddddd;
    margin-left: 20%;
}

.extend-footer a:hover {
    color: #fff;
    transition: .4s;
}

.extend-footer a {
    text-decoration: none;
    color: #dddddd;
    transition: .4s;
    position: relative;
}


.extend-footer a::after {
    content: '';
    position: absolute;
    width: 100%;
    border-radius: 100rem;
    transform: scaleX(0);
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #1ca1ca;
    transform-origin: bottom right;
    transition: transform 0.35s ease-out;
}

.extend-footer a:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

@media screen and (max-width: 460px) {
    .extend-footer div:last-child p:nth-child(3) a::after {
        transform: scaleX(1);
        transform-origin: bottom left;
    }
}


/*FOOTER*/

footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px;
    background: #252525;
    color: white;
}

footer p {
    flex: 1;
    text-align: center;
}

@media screen and (max-width: 795px) {
    footer p {
        text-align: left !important;
        margin-left: 14px !important;
    }
}


@media screen and (min-width: 1200px) {
    .common-inside {
        font-size: 19px !important;
    }

    .more-link, .extend-footer p {
        font-size: 18px !important;
    }

    h3 {
        font-size: 24px !important;
    }

    h2 {
        font-size: 40px !important;
    }
}


a:hover
{
    cursor: pointer;
}

#menu-co-umime-href{
    color: #252525;
}

#menu-co-umime{
    padding: 20px;
    text-align: right;
    color: #252525;
}
#menu-co-umime .icon-arrow{
    transform:rotate(90deg) translateY(0px);
    top: 3px;
    position: relative;
    background-image: url("angle-black.svg");
    height: 1rem;
    display: inline-block;
    width: 1rem;
    background-position: center;
    background-repeat: no-repeat;
}
#menu-co-umime i{
    transition: .4s;
}
#menu-co-umime span{
    transition: .4s;
}
@media screen and (max-width: 991px) {
    #menu-co-umime {
        text-align: center;
    }
}
#menu-co-umime-href:hover ~ span {
    transition: .4s;
    color: #ccc;
}
#menu-co-umime-href:hover ~ i {
    transition: .4s;
    opacity: 0.3;
}

nav {
    margin: 0;
    padding: 0;
    list-style: none;
    display: unset;
}