.poppins-thin {
    font-family: "Poppins", sans-serif;
    font-weight: 100;
    font-style: normal;
}

.poppins-extralight {
    font-family: "Poppins", sans-serif;
    font-weight: 200;
    font-style: normal;
}

.poppins-light {
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    font-style: normal;
}

.poppins-regular {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.poppins-medium {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-style: normal;
}

.poppins-semibold {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: normal;
}

.poppins-bold {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-style: normal;
}

.poppins-extrabold {
    font-family: "Poppins", sans-serif;
    font-weight: 800;
    font-style: normal;
}

.poppins-black {
    font-family: "Poppins", sans-serif;
    font-weight: 900;
    font-style: normal;
}

.poppins-thin-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 100;
    font-style: italic;
}

.poppins-extralight-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 200;
    font-style: italic;
}

.poppins-light-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    font-style: italic;
}

.poppins-regular-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: italic;
}

.poppins-medium-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-style: italic;
}

.poppins-semibold-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: italic;
}

.poppins-bold-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-style: italic;
}

.poppins-extrabold-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 800;
    font-style: italic;
}

.poppins-black-italic {
    font-family: "Poppins", sans-serif;
    font-weight: 900;
    font-style: italic;
}


.fjalla-one-regular {
    font-family: "Fjalla One", sans-serif;
    font-weight: 400;
    font-style: normal;
}
* {
    transition: all 0.8s ease-out;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Fjalla One', Impact, sans-serif
}

p{font-family: Poppins, 'Segoe UI', sans-serif;}

a{font-family: Poppins, 'Segoe UI', sans-serif;}
.velkynadpis {
    font-size: 72px;
}

html {
    scroll-behavior: smooth;
}


:root {
    --primary-color: #9f3200;
    --hover-color: #00000094;
    --accent-color: #0071FF;
    --text-color: White;
    --header: 'Fjalla One', Impact, sans-serif;
    --paragraph: Poppins, 'Segoe UI', sans-serif;
}
*{
  margin: 0;
  padding: 0;
}
html{
  
  color: var(--text-color);
  scroll-behavior: smooth; /*For bookmark links*/
}
body{
  min-height: 100vh;
  min-height: 100dvh;
  background-color: var(--primary-color);
}
main{
  padding: min(5em, 7%);
}
main p{
  margin-top: .35em;
}
.logo1{
  display: none;
}
.logo2{
  display: block;
}
.logo-container {
    white-space: nowrap;
    width: 400px;
    height: 80px;
    background-image: url('/media/design/logo.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
    float: left;
}

.nav {
    display: flex;
}
nav {
    border-bottom: 1px solid var(--hover-color);
    margin-right: auto;
    background: #000000bd;
    position: fixed;
    width: 100%;
    z-index: 10000000000;
    float: right;
}

nav ul{
  list-style: none;
  display: flex;
}
nav .home-li{
  margin-right: auto;
}
    nav li {
        display: flex;
        margin-left: auto;
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 0px 0px 0px 1%;
    }
    nav a {
        display: flex;
        position: relative;
        text-decoration: none;
        color: var(--text-color);
        padding: 1em 2em;
        transition: background-color 150ms ease;
        margin-right: right;
    }
        
nav a:hover{
  background-color: var(--hover-color);
}
    nav a.active-link {
        border-bottom: 2px solid var(--text-color);
    }
    nav a::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 2px;
        background-color: white;
        transition: width 0.3s ease;
    }

    nav a:hover::after {
        width: 100%;
    }
nav a.accent-link{
  background-color: var(--accent-color);
}

#open-sidebar-button {
    display: none;
    background: none;
    border: none;
    padding: 1em;
    margin-left: auto;
    cursor: pointer;
}
#close-sidebar-button{
  display: none;
  background: none;
  border: none;
  padding: 1em;
  cursor: pointer;
}
#overlay{
  background: rgba(0, 0, 0, 0.5);
  position: fixed;
  inset: 0;
  z-index: 9;
  display: none;
}
.skip-link {
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 1000;
  background-color: var(--accent-color); 
  color: #ffffff; 
  padding: 12px 24px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
  transition: opacity 0.3s ease;
}

.skip-link:focus {
  opacity: 1; 
  pointer-events: auto; 
  outline: 3px solid #ffffff; 
}
nav ul {
    text-align: right;
}
.background-clip{
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: -1;
}
.container{
    width: 100%;
    height: 100vh;
    background-color: rgba(0,0,0,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
}
.content{
    text-align: center;
}

.content h1{
    font-size: 95px;
    color: #fff;
    margin-bottom: 50px;
}
    .content h2 {
        font-size: 65px;
        color: #fff;
        margin-bottom: 50px;
        }
       
    .content a{
    font-size: 23px;
    color: #fff;
    text-decoration: none;
    border: 2px solid #fff;
    padding: 15px 25px;
    border-radius: 50px;
    transition: 0.3s;
}

.content a:hover{
    background-color: #fff;
    color: #000;
}


    .back-to-top {
        position: fixed;
        bottom: 20px;
        right: 20px;
        padding: 10px 15px;
        background: #a100002f;
        color: white;
        text-decoration: none;
        border-radius: 0px;
        border: solid 5px brown;
        z-index: 9999; /* Zabezpeèí, e bude nad ostatnými prvkami */
    }

.backgroundimage {
    width: 100%;
    height: 100vh;
    background-image: url(/media/design/kitchen-bg.jpeg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100%;
    justify-content: center;
    text-align: center;
    display: grid;
    place-items: center;
}

    .content h1 {
        font-size: 60px;
    }

    .hidden {
        opacity: 0;
        transform: translateY(50px);
    }

    /* Vidite¾ný stav  priplávanie */
    .show {
        opacity: 1;
        transform: translateY(0);
    }

    .buttonsbar {
        display: flex;
        align-items: center;
    }

    .normalnetlacidlo {
        border: solid #d99e82;
        padding: 5px;
        width: auto;
        text-decoration: none;
        height: auto;
        color: white;
        margin: 5px;
    }

    .contactbutton {
        position: relative;
        display: inline-block;
        border: 2px solid #d99e82;
        padding: 8px 15px;
        color: white;
        text-decoration: none;
        overflow: hidden;
        transition: color 0.3s ease, border 0.3s ease;
        z-index: 0;
    }

        .contactbutton::before {
            content: "";
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            background: #8b5a2b;
            border-radius: 50%;
            transform: translate(-50%, -50%);
            transition: width 0.6s ease-out, height 0.6s ease-out;
            z-index: -1;
        }

        .contactbutton:hover::before {
            width: 300%;
            height: 300%;
        }

        .contactbutton:hover {
            border-color: transparent;
            color: white;
        }

            .contactbutton:hover i {
                animation: vibrate 0.3s linear 2;
            }

    @keyframes vibrate {
        0% {
            transform: translate(0);
        }

        20% {
            transform: translate(-2px, 1px);
        }

        40% {
            transform: translate(2px, -1px);
        }

        60% {
            transform: translate(-1px, 2px);
        }

        80% {
            transform: translate(1px, -2px);
        }

        100% {
            transform: translate(0);
        }
    }

    .readmore {
        font-family: var(--header);
        text-decoration: none;
        transition: text-decoration 0.2s ease;
        color: brown;
    }

        .readmore:hover {
            text-decoration: underline;
            color: black;
        }

    .whiteblock {
        color: black;
        background: white;
        width: 100%;
        height: 300px;
        display: block;
        position: relative;
    }

    .aboutblock {
        color: white;
        width: 100%;
        height: 100vh;
    }

.propagate {
    height: 45vh;
    align-items: center;
    display: grid;
    place-items: center;
    text-align: center;
    justify-content: center;
}
.bar {
    width: 150%;
    height: 22vh;
    border: solid 10px #ffff71;
    border-left: none;
    border-right: none;
    background: #00000080;
    place-items: center;
    text-align: center;
    justify-content: center;
}

    .stlpce3 {
        width: 30%;
        float: left;
        white-space: nowrap;
        text-align: center;
    }

    .cistic {
        clear: both;
    }

    .okno {
        height: 55px;
        position: relative;
    }

    .Contactcard {
        width: 100%;
        height: 100vh;
        background: url("https://duyn491kcolsw.cloudfront.net/files/0x/0x4/0x43f7.png?ph=266972f4f9"), #bf441d;
        color: white;
        position: sticky;
    }

        .Contactcard a {
            color: black;
            text-decoration: none;
        }

    .medzera {
        height: 50px;
    }

    .strednadpis {
        text-align: center;
        position: center;
    }

    .riadok {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        position: center;
    }

    .adresa {
        margin: 0px 0px 0px 0%;
        display: block;
        float: left;
        white-space: nowrap;
        width: 30%;
        text-align: center;
        position: center;
    }

    .email {
        margin: bottom;
        display: block;
        float: left;
        white-space: nowrap;
        width: 30%;
        text-align: center;
    }

    .mobil {
        margin: bottom;
        display: none;
        float: left;
        white-space: nowrap;
        width: 30%;
        text-align: center;
    }

    .morecontacts {
        margin: bottom;
        display: block;
        float: left;
        white-space: nowrap;
        width: 30%;
        text-align: center;
        align-items: center;
    }

    .koniec {
        height: 30%;
        position: center;
    }

    .part1 {
        height: 500px;
        width: 30%;
        float: left;
        white-space: nowrap;
        text-align: center;
        align-items: center;
        justify-content: center;
        text-align: center;
        display: grid;
        place-items: center;
        list-style-type: none;
    }

        .part1 a {
            color: white;
            text-decoration: none;
            font-size: 16px;
            list-style-type: none;
            font-family: var(--header);
            font-size: 20px;
        }

        .part1 ul {
            list-style-type: none;
        }

    .part2 {
        height: 500px;
        width: 70%;
        text-align: center;
        color: white;
        font-family: var(--paragraph);
        justify-content: center;
        text-align: center;
        display: grid;
        place-items: center;
        list-style-type: none;
    }

        .part2 ul {
            list-style-type: none;
        }

    .example-2 {
        display: flex;
        justify-content: center;
        align-items: center;
    }

        .example-2 .icon-content {
            margin: 0 10px;
            position: relative;
        }

            .example-2 .icon-content .tooltip {
                position: absolute;
                left: 50%;
                transform: translateX(-50%);
                color: #fff;
                padding: 6px 10px;
                border-radius: 5px;
                opacity: 0;
                visibility: hidden;
                font-size: 14px;
                transition: all 0.3s ease;
            }

            .example-2 .icon-content:hover .tooltip {
                opacity: 1;
                visibility: visible;
            }

            .example-2 .icon-content a {
                position: relative;
                overflow: hidden;
                display: flex;
                justify-content: center;
                align-items: center;
                width: 50px;
                height: 50px;
                border-radius: 50%;
                color: #4d4d4d;
                background-color: #fff;
                transition: all 0.3s ease-in-out;
            }

                .example-2 .icon-content a:hover {
                    box-shadow: 3px 2px 45px 0px rgb(0 0 0 / 12%);
                }

                .example-2 .icon-content a svg {
                    position: relative;
                    z-index: 1;
                    width: 30px;
                    height: 30px;
                }

                .example-2 .icon-content a:hover {
                    color: white;
                }

                .example-2 .icon-content a .filled {
                    position: absolute;
                    top: auto;
                    bottom: 0;
                    left: 0;
                    width: 100%;
                    height: 0;
                    background-color: #000;
                    transition: all 0.3s ease-in-out;
                }

                .example-2 .icon-content a:hover .filled {
                    height: 100%;
                }

                .example-2 .icon-content a[data-social="linkedin"] .filled,
                .example-2 .icon-content a[data-social="linkedin"] ~ .tooltip {
                    background-color: #0274b3;
                }

                .example-2 .icon-content a[data-social="github"] .filled,
                .example-2 .icon-content a[data-social="github"] ~ .tooltip {
                    background-color: #24262a;
                }

                .example-2 .icon-content a[data-social="instagram"] .filled,
                .example-2 .icon-content a[data-social="instagram"] ~ .tooltip {
                    background: linear-gradient( 45deg, #405de6, #5b51db, #b33ab4, #c135b4, #e1306c, #fd1f1f );
                }

                .example-2 .icon-content a[data-social="youtube"] .filled,
                .example-2 .icon-content a[data-social="youtube"] ~ .tooltip {
                    background-color: #ff0000;
                }

    .simpleheader {
        height: 100px;
    }


    .aboutsection {
        width: 50%;
        height: auto;
        float: right;
        white-space: nowrap;
        display: grid;
        place-items: center;
    }

        .aboutsection h2 {
            text-align: center;
        }

    .vlnky {
        width: 100px;
        height: 50px;
        background-image: url('/media/vlnky.svg');
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
        align-content: center;
    }

    .textovepole {
        width: 50%;
        display: block;
        white-space: pre-wrap;
        margin: 0px 0px 0px 20px;
    }

    .readmore {
        font-family: var(--paragraph) ;
        text-decoration: none;
        transition: text-decoration 0.2s ease;
        color: white;
    }

        .readmore:hover {
            text-decoration: underline;
            color: black;
        }

    .responsiveimage {
        width: 50%;
        height: 100vh;
        background-image: url('/media/exterier.png');
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
        float: left;
        white-space: nowrap;
        background-size: 500%;
    }

    @media (max-width: 700px) {
        
    }

    @media (max-width: 2000px) {
        .whiteblock {
            color: black;
            background: white;
            width: 100%;
            height: auto;
            display: block;
            position: relative;
        }
    }
.circle1 {
    white-space: nowrap;
    width: 30px;
    height: 30px;
    background-image: url('/media/design/icons/quality.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 50px;
    border-width: 2px;
    border-color: #d99e82;
    margin: 0% 50% 0% 50%;
    border-style: solid;
}

.circle2 {
    white-space: nowrap;
    width: 30px;
    height: 30px;
    background-image: url('/media/design/icons/vstavany.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 50px;
    border-width: 2px;
    border-color: #d99e82;
    margin: 0% 50% 0% 50%;
    border-style: solid;
}

.circle3 {
    white-space: nowrap;
    width: 30px;
    height: 30px;
    border-radius: 50px;
    border-width: 2px;
    border-color: #d99e82;
    margin: 0% 50% 0% 50%;
    border-style: solid;
}

.circle4 {
    width: 50px;
    height: 50px;
    border-radius: 50px;
    background: #ffffffa5;
    color: brown;
    text-align: center;
    font-size: 45px;
}

.circle5 {
    width: 50px;
    height: 50px;
    border-radius: 50px;
    border: solid #d99e82 5px;
    background: #00000080;
    color: brown;
    text-align: center;
    display: grid;
    justify-content: center;
    place-items: center;
    font-size: 40px;
    color: white;
}

.stlpce3 {
    margin: 0px 10px;
    height: 100%;
    display: grid;
    justify-content: center;
    place-items: center;
    float: left;
    white-space: nowrap;
    text-align: center;
    font-weight: bold;
}

.icon-furnithure {
    width: 35px;
    height: 35px;
    background: url(/media/design/icons/vstavany.svg) no-repeat center;
    background-size: contain;
    margin: 0px 0px 10px 0px;
    filter: invert(1);
}
.icon-quality {
    width: 35px;
    height: 35px;
    background: url(/media/design/icons/quality.svg) no-repeat center;
    background-size: contain;
    margin: 0px 0px 10px 0px;
    filter: invert(1);
}

.backgroundphoto {
    width: 100%;
    height: 100vh;
    background: url(/media/design/kuchyna-bg.jpg) center;
}

.withtext {
    width: 100%;
    height: 100vh;
    background: #0000007d center;
    display: grid;
    justify-items: center;
}

.karticky {
    display: inline-flex;
}

.ponuka {
    width: 260px;
    height: 400px;
    background: #00000058;
    text-align: center;
    font-size: 50px;
    display: grid;
    justify-items: center;
    margin: 10px;
}

.kuchyna {
    background: url(/media/kuchyna/2.jpeg) no-repeat center;
    background-size: 190%;
}

.skrina {
    background: url(/media/skrina/1.jpeg) no-repeat center;
    background-size: 190%;
}

.dvere {
    background: url(/media/dvere/1.jpg) no-repeat center;
    background-size: 100%;
}

.ponukapolka {
    width: 260px;
    height: 200px;
    background: #0000008a;
    text-align: center;
    font-size: 25px;
    display: grid;
    justify-items: center;
    white-space: pre-wrap;
    margin: 200px 0px 0px 0px;
}

.vicbutton {
    display: block;
}

.vicbutton2 {
    display: none;
}
.Contactcard {
    width: 100%;
    height: 100vh;
    background: url("/media/design/drevo1.jpg"), #bf441d no-repeat;
    background-position: center 50%;
    background-size: 150%;
    color: white;
    position: sticky;
}

    .Contactcard a {
        color: white;
        text-decoration: none;
    }

.leftside {
    width: 50%;
    height: 100%;
    display: grid;
    justify-content: center;
    place-items: center;
    float: left;
    white-space: nowrap;
}

    .leftside .content {
        white-space: pre-wrap;
    }

.rightside {
    width: 50%;
    height: 100%;
    display: grid;
    justify-content: center;
    place-items: center;
    float: left;
    white-space: nowrap;
    background: #0000009a;
    margin: 0px 0px 20px 0px;
}

.adresa {
    display: grid;
    justify-content: center;
    place-items: center;
    width: 300px;
    text-align: center;
    position: center;
    height: 100px;
    color: white;
    background: #0000006b;
}

.email {
    display: grid;
    justify-content: center;
    place-items: center;
    width: 300px;
    text-align: center;
    position: center;
    height: 100px;
    color: white;
    background: #0000006b;
}

.mobil {
    display: none;
    justify-content: center;
    place-items: center;
    width: 300px;
    text-align: center;
    position: center;
    height: 100px;
    color: white;
    background: #0000006b;
}

.morecontacts {
    display: grid;
    justify-content: center;
    place-items: center;
    width: 300px;
    text-align: center;
    position: center;
    height: 100px;
    color: white;
    background: #0000006b;
    border: solid #d99e82 5px;
}

.koniec {
    height: 30%;
    position: center;
}
#cookiespanel {
    display: none;
    background-color: white;
    padding: 20px;
    border: 1px solid #ccc;
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 300px;
    color: brown;
    font-family: var(--paragraph);
}

    #cookiespanel button {
        display: block;
        padding: 20px;
        border: 1px solid #d99e82;
        width: 300px;
        color: brown;
        font-family: var(--paragraph);
    }
.image1 {
    white-space: nowrap;
    width: 25%;
    height: 600px;
    background-image: url('/media/design/skrina-bg.jpeg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    float: left;
    background-size: 300%;
}

.image2 {
    white-space: nowrap;
    width: 25%;
    height: 600px;
    background-image: url('/media/exterier.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 500%;
    float: right;
}
.articletext {
    font-family: var(--paragraph);
    margin: 1% 10%;
    color: black;
}
.leftciara {
    border: 50px white;
    border-left: 10px solid white;
    border-right: none;
    border-bottom: none;
    border-top: none;
    height: 505px;
    padding: 0px 0px 0px 5px;
    color: white;
}

    .leftciara article {
        padding: 5px;
        display: grid;
        justify-content: center;
        place-items: center;
    }
        .leftciara article .hyperlink {
            text-decoration: none;
            border-left: none;
            border-right: none;
            border-bottom: 1px dotted white;
            border-top: none;
            color: white;
            display: block;
            text-align: left;
        }

.rightciara {
    border: 50px white;
    border-left: none;
    border-right: 10px solid white;
    border-bottom: none;
    border-top: none;
    height: 205px;
    padding: 0px 5px 0px 0px;
    color: white;
}

    .rightciara article {
        padding: 5px;
        display: grid;
        justify-content: center;
        place-items: center;
    }

.simpleheader {
    height: 200px;
    background: url(/media/design/background-rezanie2.png) no-repeat;
    background-position: center bottom;
    background-size: 100%;
    background-attachment: fixed;
}

.stranka {
    height: 150vh;
    background: #ffffff1b;
}
.textblock {
    white-space: pre-wrap;
    width: 50%;
    height: 600px;
    background: #00000071;
    color: white;
    float: left;
}

.nav {
    display: flex;
}

.content {
    font-family: var(--paragraph);
    font-size: 44px;
    font-weight: 700;
    line-height: 54px;
}
.obsah {
    padding: 0px 10%;
    color: white;
    font-family: poppins;
    background: #ffffff1b;
    display: grid;
    justify-content: center;
    place-items: center;
}

.subtitle {
    text-align: center;
    background: #ffffff1b;
    font-family: poppins;
}

    .subtitle a {
        color: white;
        text-decoration: none;
        border-left: none;
        border-right: none;
        border-bottom: 1px dotted white;
        border-top: none;
        font-family: poppins;
    }
.obraz1 {
    white-space: nowrap;
    width: 300px;
    height: 350px;
    background-image: url('/media/kuchyna/1.jpeg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    float: left;
}
.obraz2 {
    white-space: nowrap;
    width: 200px;
    height: 200px;
    background-image: url('/media/skrina/4.jpeg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    float: right;
}
.obraz3 {
    white-space: nowrap;
    width: 300px;
    height: 350px;
    background-image: url('/media/vstavana-skrina/6.jpeg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    float: left;
}
.obraz4 {
    white-space: nowrap;
    width: 200px;
    height: 300px;
    background-image: url('/media/schody/4.jpeg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    float: right;
}
.obraz5 {
    white-space: nowrap;
    width: 200px;
    height: 500px;
    background-image: url('/media/dvere/1.jpg');
    background-size: 170%;
    background-repeat: no-repeat;
    background-position: center;
    float: left;
}
.kuchyna1 {
    width: 50%;
    height: 100vh;
    background: url(media/kuchyna11.jpeg)
}
.obsahVZ {
    padding: 0px 10%;
    color: white;
    font-family: poppins;
    background: #ffffff1b;
    display: block;
    height: auto;
}
.responsiveimage1 {
    width: 50%;
    height: 100vh;
    background-image: url('/media/kuchyna/11.jpeg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    float: left;
    white-space: nowrap;
    background-size: 150%;
}
.responsiveimage2 {
    width: 50%;
    height: 100vh;
    background-image: url('/media/dvere/1.jpg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    float: right;
    white-space: nowrap;
    background-size: 100%;
}
.rightsideR {
    width: 50%;
    height: 100vh;
    display: block;
    justify-content: center;
    place-items: center;
    float: left;
    white-space: none;
    background: #0000009a;
    margin: 0px 0px 20px 0px;
}
.formular {
    width: 50%;
    height: auto;
    background: url(/media/design/skrina-bg.jpeg) no-repeat;
    display: grid;
    place-items: center;
    text-align: center;
    justify-content: center;
    background-position: left;
    background-size: 200%;
    float: left;
    white-space: nowrap;
}

    .formular form {
        width: 100%;
        height: auto;
        background: #a55733bf;
        display: grid;
        place-items: center;
        text-align: center;
        justify-content: center;
        padding: 5px;
    }

        .formular form input {
            border-radius: 0px;
            border-bottom: solid 5px #d99e82;
            border-top: none;
            border-left: none;
            border-right: none;
            background: #00000000;
            color: white;
            font-family: poppins;
            text-align: center;
            padding: 5px 1px;
        }

        .formular form textarea {
            border-radius: 0px;
            border: none;
            background: #00000073;
            color: white;
            font-family: poppins;
            padding: 5px 1px;
        }

        .formular form .normalnetlacidlo {
            background: #00000000;
            color: white;
        }

.mapa {
    width: 50%;
    float: right;
    white-space: nowrap;
    height: 1005px;
}



.obsahstranky {
    color: white;
    font-family: poppins;
    background: #ffffff1b;
    display: block;
}

.SUBTITLE {
    color: black;
}
.formsprava {
    background: #00000082;
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99999;
    display: none;
    place-items: center;
    justify-content: center;
}

.vnutro {
    width: 500px;
    height: 500px;
    background: brown;
    color: white;
    display: grid;
    place-items: center;
    justify-content: center;
}

.obsahok {
    height: 100%;
    width: 100%;
    display: none;
    place-items: center;
    justify-content: center;
    text-align: center;
}

.fotook {
    width: 500px;
    height: 300px;
    background-image: url('/media/design/odoslane.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin: 0 auto;
}

.fotozle {
    width: 500px;
    height: 300px;
    background-image: url('/media/design/chyba.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin: 0 auto;
}

.obsahzle {
    height: 100%;
    width: 100%;
    display: none;
    place-items: center;
    justify-content: center;
    text-align: center;
}
.rightsideotvor {
    width: 50%;
    height: 60vh;
    display: grid;
    justify-content: center;
    place-items: center;
    float: right;
    white-space: nowrap;
    background: url(/media/design/drevo.jpg);
    background-size: 100%;
    margin: 0px 0px 20px 0px;
    }

.leftsideotvor {
    width: 50%;
    height: 60vh;
    display: grid;
    justify-content: center;
    place-items: center;
    float: left;
    white-space: nowrap;
}

    .leftsideotvor .content {
        white-space: pre-wrap;
    }

    .leftsideotvor a {
        color: white;
        text-decoration: none;
    }

.adresa1 {
    display: grid;
    justify-content: center;
    place-items: center;
    width: 300px;
    text-align: center;
    position: center;
    height: 100px;
    color: white;
    background: #0000006b;
    margin: 5px;
}

.email1 {
    display: grid;
    justify-content: center;
    place-items: center;
    width: 300px;
    text-align: center;
    position: center;
    height: 100px;
    color: white;
    background: #0000006b;
    margin: 5px;
}

.mobil1 {
    display: grid;
    justify-content: center;
    place-items: center;
    width: 300px;
    text-align: center;
    position: center;
    height: 100px;
    color: white;
    background: #0000006b;
    margin: 5px;
}

input:focus, textarea:focus, select:focus {
    outline: none;
    border-bottom: solid 5px var(--accent-color);
}
.opismeno {
    width: 300px;
    height: 150px;
    background-image: url('/media/design/drevokruh.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.riadok {
    display: flex;
    position: center;
    width: 100%;
    height: auto;
}
.stranka404 {
    width: 100%;
    height: 100vh;
    display: grid;
    justify-content: center;
    place-items: center;
    text-align: center;
    background: url("/media/design/kora.jpeg") no-repeat;
    background-size: 100%;
}
.zafarbenie {
    background: #a8481ba0;
    width: 100%;
    height: 100%;
    display: grid;
    justify-content: center;
    place-items: center;
    text-align: center;
}
.riadok .content h1 {
    font-size: 150px;
}

.riadok {
    display: flex;
    position: center;
    width: 100%;
    height: auto;
}
