@font-face {
    font-family:"ligth";
    src:url("../fonts/SinkinSans-300Light.otf");
}

@font-face {
    font-family:"regular";
    src:url("../fonts/SinkinSans-400Regular.otf");
}

@font-face {
    font-family:"medium";
    src:url("../fonts/SinkinSans-500Medium.otf");
}


@font-face {
    font-family:"semibold";
    src:url("../fonts/SinkinSans-600SemiBold.otf");
}




* {

    font-family: var(--font-regular);

    --font-ligth: "ligth", serif;
    --font-regular: "regular", serif;
    --font-medium: "medium", serif;
    --font-semibold: "semibold", serif;

    font-weight: normal;


    -webkit-font-smoothing: subpixel-antialiased !important; 
    text-rendering:optimizeLegibility !important;
    box-sizing: border-box;

    --body_c: #FFFFFF top/contain repeat;
    --main_c: transparent;



    --padding: min(8vw,140px);


    --web_max_w: 2000px;
    --header_logo_height: clamp(55px, 5vw, 89px);
    --header_mobile_height: 60px;


    --hlavni_barva: #007027;
    --druha_barva: #0F1C2D;
    --druha_hover: #0F1C2D;

    --nadpisy:rgba(49, 49, 49, 0.85);
    --text: rgba(65, 65, 64, 0.85);
    --subtext: #333333;
    --a_color: #58BFE3;
    --marker: #6C7F5B;
    --light: #7B7B7B;

    --c1: #414140;
    --c2: #505050;


    --tit_h1: rgba(255, 255, 255, 0.85);


    --meho_c: rgba(0, 112, 39, 0.85);

}

@counter-style custom-letters {
    system: fixed;
    symbols:A B C D E F G H I J K L M N O P Q R S T U V W X Y Z;
    suffix: ") ";
}
@counter-style custom-letters-small {
    system: fixed;
    symbols:a b c d e f g h i j k l m n o p q r s t u v w x y z;
    suffix: ") ";
}

img {
    user-select: none;
    -webkit-user-select: none;
    -webkit-user-drag: none;
    
}

body{
    margin:0;
    max-width: var(--web_max_w);
    overflow-x: hidden;
    margin: 0 auto;
    overscroll-behavior-y: none;
}

body.bg {
    background: var(--body_c);
}

html {
    scroll-padding-top: var(--header_logo_height);
    scroll-behavior: smooth;
    background: white;
    /* overflow-x: hidden; */
}



a:link {
    text-decoration: unset;
}

a:visited {
    color: none;
}

a:-webkit-any-link {
    text-decoration: none;
}





header {
   
    position: fixed;
    width: fit-content;
    height: fit-content;
    top:0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: var(--web_max_w);
    margin:auto;
    
}

header .logo {
    background: #FFFFFF;
    padding: 20px 40px;

}

header .logo img {
    width: auto;
    height: var(--header_logo_height);
}



/* MAIN */

main {
    position: relative;
    background: var(--main_c);
    overflow-x: clip;
    padding-inline: 0;
}

/* titulka */


section.rozcestnik_foto {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;

    width: 100%;
    height: 100vh;
}

section.rozcestnik_foto img {
    width: 100%;
    height: 100%;
    object-position: center;
    object-fit: cover;
    position: absolute;
    top:0;
    left: 0;
    z-index: 0;
    transform-origin: center;
    transition: all .3s ease-in-out;
}

section.rozcestnik_foto a.odkaz {
    width: 100%;
    height: 100%;
    z-index: 0;
    position: relative;
    transition: all .3s ease-in-out;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    -webkit-user-drag: none;
    overflow: hidden;
}

section.rozcestnik_foto .odkaz:hover img {
    transform: scale(1.03);
}

section.rozcestnik_foto .obsah {
    z-index: 2;
    position: relative;
    gap: 45px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}




section.rozcestnik_foto a.odkaz::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: .95;
    background: transparent linear-gradient(90deg, #1D1D1D 0%, #1E1E1ED6 57%, #20202066 100%) 0% 0% no-repeat padding-box;
}




/* BTNS */

.btn {
    width: fit-content;
    background: var(--hlavni_barva);
    height: fit-content;
    display: flex;
    text-align: center;
    font-size: 1rem;
    font-family: var(--font-medium);
    color: white;
    padding: 1em 2.2em;
    transition: all .3s ease-in-out;
    box-sizing: border-box;
    align-items: center;
    justify-content: space-between;
    gap:15px;
    border: 2px solid var(--hlavni_barva);
}

.btn:hover,
.btn_wrap:hover .btn {
    border-color: var(--druha_barva);
    background-color: var(--druha_barva);
    color: white;
}

.btn.inverse {
    border: 2px solid white;
    background-color: white;
    color: var(--druha_barva);
}

.btn.inverse:hover,
.btn_wrap:hover .btn.inverse {
    border: 2px solid white;
    background-color: var(--druha_barva);
    color: white;
}


.btn::after {
    /* content: ''; */
    width: 1em;
    height: 1em;
    display: block;
    mask: url('../img/ikona_sipka.svg') center/contain no-repeat;
    -webkit-mask: url('../img/ikona_sipka.svg') center/contain no-repeat;
    background-color: white;
    transition: all .3s ease-in-out;
}

.btn.nav {
    padding: 1em 1.45em;
}

.btn.nav::after {
    width: 1.5em;
    height: 1.5em;
    mask-image: url('../img/ikona_kontakt_navigovat.svg');
    -webkit-mask-image: url('../img/ikona_kontakt_navigovat.svg');
}

.btn:hover::after,
.btn_wrap:hover .btn::after {
    background-color: var(--druha_barva);
}


.btn.inverse::after {
    background-color: var(--druha_barva);
}

.btn.inverse:hover::after,
.btn_wrap:hover .btn.inverse::after {
    background-color: white;
}





.btn.alone {
    padding: 1.1em;
    transform-origin: center;
    transform: rotate(90deg);
}

.btn.centerr {
    margin-inline: auto;
    width: fit-content;
}



a.btn:hover {
    transform-origin: center;
    /* transform: scale(1.02); */

}






/*TEXTY */


section.rozcestnik_foto h1 {
    color: var(--tit_h1);

    font-family: var(--font-semibold);
    font-size: clamp(1.7rem, 3.5vw, 3rem);
    text-align: left;
    margin-bottom: 0;
    line-height: 1.35em;

    position: relative;
}

section.rozcestnik_foto h1 span {
    font: inherit;
    font-size: .95em;
    font-family: var(--font-ligth);
}



section.rozcestnik_foto p {
    color: var(--tit_h1);

    font-size: clamp(1rem, 3vw, 1.3rem);
    padding: 0;
    margin: 0;
    font-family: var(--font-regular);
    padding-left: clamp(15px, 3vw, 25px);
    text-align: left;
    position: relative;
    margin-bottom: clamp(8px, 4vw, 20px);
        line-height: 1.4em;

}




p {
    color: var(--text);
    font-family: var(--font-regular);
    font-size: clamp(1rem, 1.5vw, 1.1rem);
    line-height: 1.5em;
}
span {
    color: var(--text);
    font-size: 1.1rem;
}
b{ 
    font-weight: normal;
    font-family: var(--font-bold);
    font-size: inherit;
}

h1 span {
    color: var(--tit_h1_in);
    font-family: inherit;
    font-size: inherit;
}


h1 {
    color: var(--nadpisy);
    font-family: var(--font-bold);
    font-size: clamp(2rem, 5.5vw, 3rem);
    /* margin: 0 0 clamp(4rem, 7vw, 6rem) 0;   */
    margin: 0 0 10px 0;  
    position: relative;
    line-height: 1.15em;
}

h2 {
    font-family: var(--font-medium);
    color: var(--nadpisy);
    font-size: clamp(1.3rem, 2vw, 1.8rem);
    margin: clamp(50px, 4vw, 80px) 0 1rem 0;  
}
h3{
    font-family: var(--font-semibold);
    font-size: clamp(1.2rem, 2.2vw, 1.6rem);
    color: var(--nadpisy);
    font-weight: normal;

}
h1 ~ h3 {
    line-height: 1.75rem;
    font-family: var(--font-regular);
    margin-bottom: 30px;
}
h4{
    font-family: var(--font-medium);
    font-size: clamp(1rem,1.2vw, 1.4rem);
    color: var(--text);
    margin-top: 40px;
    margin-bottom: 0;
}

section.tit p, .decor {
    position: relative;
    padding-bottom: clamp(20px, 3vw, 50px);
}


.decor.center {
    padding-bottom: 50px;
}

.margin-bottom {
    margin-bottom: clamp(30px, 7vw, 50px);
}

.center {
    text-align: center;
    padding-inline: var(--padding);
    width: 100%;
    display: inline-block;
}


.decor.center::after {
    left: 50%;
    bottom: -25px;
    transform: translateX(-50%);
}

.linka {
    position: relative;
    padding-bottom: 25px;
    color: var(--c2);
    font-size: clamp(1.7rem, 3vw, 2.5rem);
    margin-bottom: 0px;
}

.linka::before {
    content: '';
    width: min(80%, 75px);
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    background-color: var(--hlavni_barva);
}

.linka.stred {
    text-align: center;
}

.linka.stred::before {
    left: 50%;
    transform: translateX(-50%);
}

.linka-vertikal {
    position: relative;
}

.linka-vertikal::before {
    content: '';
    width: 3px;
    height: 100%;
    background: var(--hlavni_barva);
    position: absolute;
    top: 0;
    left: 0;
}


/* rest */


input, textarea, select {
    padding: 22px;
    border-radius: 3px;
    border-width: 1px;
    width: 100%;
    color: var(--text);

}
textarea {
    resize: vertical;
    min-height: 130px;
}

/* ----- */






/* meho podpisy */

p.autor {
    position: relative;
    width: fit-content;
    font-size: 15px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 0;
    color: var(--meho_c);
    font-family: var(--font-regular);
    text-decoration: none;
    margin-bottom: 10px;

    width: 100%;
}

a.meho {
    padding: 0.4rem 0 0.4rem 0rem;
    transition: 0.3s all ease-in;
    text-align: right;
    font-size: 15px;
    line-height: 15px;
    display: flex;
    align-items: center;
    border-radius: 3px;
    color: var(--meho_c);
    align-items: baseline;
    /* opacity: 55%; */

}

a.meho span {
    transition: 0.3s all ease-in;
    font-size: 15px;
    line-height: 15px;
    color: var(--meho_c);
}
a.meho span.dia, a.meho span.me {
    position: relative;
    width: 0px;
    left: 0;
    bottom: 0;
    display: inline-block;
    overflow: hidden;
}
p.autor:hover{
    text-decoration: none;

}
a.meho:hover {
    background: #1DB094;
    color: #D7DF21;
    padding: 0.4rem 1rem;
    opacity: 100%;

}
a.meho:hover span.mh {
    color: white;
}
a.meho:hover span.dia {
    width: 25px;
    text-align: left;
    color: white;
}
a.meho:hover span.me {
    width: 40px;
    text-align: left;
    color: #D7DF21;
}

/* V2 */



footer p.meho {
    box-sizing: border-box;
    text-align: center;
    font-family: 'gotham-light', sans-serif;
    font-size: 15px;
    position: absolute;
    left: 0;
    width: 100%;
    bottom: 0;
    color: var(--text_footer);
    text-decoration: none;
    padding-inline: var(--padding);


    transform: translateY(0%);
    justify-content: flex-start;
    color: var(--druha_barva)
}

footer p.meho > span {
    opacity: 55%;
    font-size: .9rem;
}




@media screen and (max-width: 1055px) {
    header .logo {
        background: #FFFFFF;
        padding: 8px 20px;
    }
    
    
    section.rozcestnik_foto {
        grid-template-columns: 1fr;
        grid-template-rows: 1fr 1fr;
        min-height: 730px;
    }

    section.rozcestnik_foto a.odkaz {
        align-items: flex-start;
    }

    section.rozcestnik_foto .obsah {
        padding: 90px var(--padding) 30px var(--padding);
        gap: 25px;
    }

    section.rozcestnik_foto .odkaz:last-of-type .obsah {
        padding: 30px var(--padding) 90px var(--padding);
    }

    section.rozcestnik_foto a.odkaz::after {
        background: transparent linear-gradient(152deg, #1D1D1D 0%, #1E1E1ED6 57%, #20202066 100%) 0% 0% no-repeat padding-box;
    }
}

@media screen and (max-width: 720px) {
    section.rozcestnik_foto h1 {
        font-size: clamp(1.3rem, 7vw, 1.6rem);
    }

    section.rozcestnik_foto p {
        font-size: clamp(.85rem, 4vw, 1rem);
    }

    .btn {
        font-size: .9rem;
        padding: .8em 1.7em;
    }
}





/* podpis kontakt */

p.autor.kontakt {
    justify-content: flex-end;
    max-width: var(--web_max_w);
    margin: auto;
    padding-inline: var(--padding);
    bottom: 50px;
    left: 0px;
    position: absolute;
    color: rgba(255, 255, 255, 0.5);
    overflow: visible;
}



.preload, .preload * {
    position: absolute;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    height: 0;
    width: 0;
    z-index: -1;
}

.captcha {
    width: 240px;
}


.mt1 {
    margin-top: 1rem;
}
.mt2 {
    margin-top: 2rem;
}


footer p.for_cookies {
    position: absolute;
    right: 0;
    width: fit-content;
    margin-right: var(--padding);
    text-align: right;
    bottom: 0;
    margin-bottom: 10px;
    z-index: 2;
    color: var(--text);
    opacity: 55%;
    font-size: 15px;
}
@media screen and (max-width:690px) {
    footer p.for_cookies {
        position: static;
        grid-column: 1/-1;
        width: 100%;
        text-align: center;
        margin-right: 0;
        margin-bottom: 0;
    }
}


/* cookies */




.termsfeed-com---nb .cc-nb-main-container {
    padding: 1.2rem;
    font-family: var(--font2);
}

.termsfeed-com---nb-simple {
    width: 100%;
    max-width: 750px !important;
    box-shadow: 0px -2px 11px -2px rgba(0,0,0,0.64) !important;
}

.termsfeed-com---palette-light .cc-nb-text {
    font-weight: 100;
    font-size: 15px;
}

.termsfeed-com---palette-light .cc-nb-title {
    font-size: 1rem;
    margin-bottom: 0.3rem;
}

.termsfeed-com---palette-light .cc-nb-reject {
    color: #fff;
    background-color: #a8a6a6;
}
.termsfeed-com---palette-light .cc-nb-changep {
    border: 1px solid #c6c6c6;
}

.termsfeed-com---palette-light .cc-nb-okagree {
    background-color: var(--druha_barva) !important;
    color: white !important;
    min-width: 90px !important;
    border: 1px solid var(--druha_barva);
}

.termsfeed-com---palette-light .cc-nb-okagree:hover,
.termsfeed-com---palette-light .cc-cp-foot-save:hover {
    background-color: var(--druha_hover) !important;
}

.termsfeed-com---palette-light .cc-cp-foot-save {
    background-color: var(--druha_barva) !important;
    color: white !important;
    border: 1px solid var(--druha_barva);
}
.termsfeed-com---palette-light .cc-pc-head-title-headline {
   display: none;
}
.termsfeed-com---palette-light .cc-pc-head-close:active, .termsfeed-com---palette-light .cc-pc-head-close:focus {
    border: none !important;
}
.termsfeed-com---pc-dialog .cc-cp-body-content-entry-text {
    font-size: 15px;
    line-height: 1.4;
}
.termsfeed-com---pc-overlay {
    overflow-y: scroll;
}

.cc-custom-checkbox input {
    width: inherit;
}

.termsfeed-com---palette-light .cc-pc-head-lang select {
    font-size: 16px;
    padding-left: 2rem;
}
.termsfeed-com---palette-light .cc-pc-head-lang select option {
    font-size: 15px;
}
.termsfeed-com---palette-light .cc-pc-head-close {
    font-size: 1.2rem;
}


@media (max-width: 320px), (max-height: 480px) {
.termsfeed-com---nb-simple {
    height: auto;
}
   
}

@media (max-width: 768px){
    .termsfeed-com---nb-simple {
        width: 100%;
        max-width: unset !important;
    }
    .termsfeed-com---nb .cc-nb-main-container {
        padding: 1.5rem;
    }

}

@media (max-width: 480px) {

    .termsfeed-com---nb .cc-nb-okagree, .termsfeed-com---nb .cc-nb-reject, .termsfeed-com---nb .cc-nb-changep {
        display: block;
        width: 100%;
        max-width: 240px;
    }
    
    .termsfeed-com---nb .cc-nb-buttons-container .cc-nb-okagree {
        margin-bottom: 1rem !important;
    }
}


@media (max-width: 320px) {

.termsfeed-com---nb-simple {
    overflow: auto;
    max-width: 100%;
}

}


/*cookies*/
