body {
    min-height: 100vh;
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
    font-size: calc(14px + .3vw);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: sans-serif;
}

a {
    transition: all .3s;
    -webkit-transition: all .3s;
    color: #000;
}

a:hover {
    color: #f48222 !important
}

/* navbar */

* {
    margin: 0;
    padding: 0;
    color: #1d1d1d;
    font-family: 'Montserrat', sans-serif;
}

body {
    overflow-x: hidden;
}

nav {
    height: 4.5rem;
    width: 100vw;
    background-color: rgb(240, 240, 240, .85);
    box-shadow: 0 3px 20px rgba(0, 0, 0, 0.2);
    display: flex;
    position: fixed;
    z-index: 99;
}

/*Styling logo*/
.logo {
    padding: 1vh 1vw;
    text-align: center;
}

.logo img {
    height: 3.5rem;
}

/*Styling Links*/
.nav-links {
    display: flex;
    list-style: none;
    width: 88vw;
    padding: 0 0.7vw;
    justify-content: space-evenly;
    align-items: center;
    text-transform: uppercase;
    margin: 0;
}

.nav-links li a {
    text-decoration: none;
    margin: 0 0.7vw;
    color: #1d1d1d;
    transition: all ease-in-out 250ms;
}

.nav-links li a:hover,
.nav-dropdown-content a:hover {
    color: #f48222;
    transition: all ease-in-out 250ms;
}

.nav-links li {
    position: relative;
}

.nav-links li a::before {
    content: "";
    display: block;
    top: 25px;
    height: 3px;
    width: 0%;
    background-color: #f48222;
    position: absolute;
    transition: all ease-in-out 250ms;
    margin: 0 0 0 10%;
}

.nav-links li a:hover::before {
    width: 80%;
}

.nav-dropdown {
    float: left;
    overflow: hidden;
    padding: 5px 0;
}

.nav-dropdown-content {
    display: none;
    position: absolute;
    background-color: rgb(240, 240, 240, .9);
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
    border-top: 3px solid #f48222;
}

.nav-dropdown-content a {
    float: none;
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    position: relative;
}

div a.nav-dropdown-link-active {
    background-color: rgba(244, 130, 34, .15);
}

.nav-dropdown:hover>.nav-dropdown-content {
    display: block;
}

ul.nav-links li a.nav-link-active {
    color: #f48222;
}

ul.nav-links li a.nav-link-active::after {
    content: "";
    display: block;
    top: -5px;
    height: 3px;
    width: 80%;
    background-color: #f48222;
    position: absolute;
    margin: 0 0 0 10%;
}

/*Styling Hamburger Icon*/
.hamburger div {
    width: 30px;
    height: 3px;
    background: #1d1d1d;
    margin: 5px;
    transition: all 0.3s ease;
}

.hamburger {
    display: none;
}

/*Stying for small screens*/
@media screen and (max-width: 800px) {
    nav {
        position: fixed;
        z-index: 3;
    }

    .hamburger {
        display: block;
        position: absolute;
        cursor: pointer;
        right: 5%;
        top: 50%;
        transform: translate(-5%, -50%);
        z-index: 2;
        transition: all 0.7s ease;
    }

    .nav-links {
        position: fixed;
        background: #ececec;
        height: 100vh;
        width: 100%;
        flex-direction: column;
        clip-path: circle(50px at 90% -20%);
        -webkit-clip-path: circle(50px at 90% -10%);
        transition: all 1s ease-out;
        pointer-events: none;
    }

    .nav-links.open {
        clip-path: circle(1000px at 90% -10%);
        -webkit-clip-path: circle(1000px at 90% -10%);
        pointer-events: all;
    }

    /* dropdown */
    .nav-dropdown {
        float: none;
        text-align: center;
        overflow: hidden;
        padding: 5px 0;
    }

    .nav-dropdown-button {
        cursor: pointer;
        font-weight: 600;
    }

    .nav-dropdown-content {
        display: flex;
        position: relative;
        background-color: rgba(242, 242, 242, 0.9);
        min-width: 160px;
        box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
        z-index: 1;
        flex-direction: column;
        border-top: 3px solid #f48222;
    }

    .nav-dropdown-content a {
        float: none;
        color: black;
        padding: 12px 16px;
        text-decoration: none;
        display: block;
        position: relative;
    }

    div a.nav-dropdown-link-active {
        background-color: rgba(244, 130, 34, .15);
    }

    /* end of dropdown */

    .nav-links li {
        opacity: 0;
    }

    .nav-links li:nth-child(1) {
        transition: all 0.5s ease 0.2s;
    }

    .nav-links li:nth-child(2) {
        transition: all 0.5s ease 0.4s;
    }

    .nav-links li:nth-child(3) {
        transition: all 0.5s ease 0.6s;
    }

    .nav-links li:nth-child(4) {
        transition: all 0.5s ease 0.7s;
    }

    .nav-links li:nth-child(5) {
        transition: all 0.5s ease 0.8s;
    }

    .nav-links li:nth-child(6) {
        transition: all 0.5s ease 0.9s;
        margin: 0;
    }

    .nav-links li:nth-child(7) {
        transition: all 0.5s ease 1s;
        margin: 0;
    }

    li.nav-fade {
        opacity: 1;
    }
}

/*Animating Hamburger Icon on Click*/
.toggle .line1 {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.toggle .line2 {
    transition: all 0.7s ease;
    width: 0;
}

.toggle .line3 {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* end of Navbar */
/* main-galerie */
.main-galerie {
    height: 70vh;
    display: flex;
}

.main-galerie-1 {
    position: relative;
    width: 25%;
    background-color: #fff;
    display: flex;
    justify-content: right;
    align-items: center;
}

.main-galerie-2 {
    width: 75%;
    background-color: #fff;
    background-image: url(images/Vizualizace/Pergola_scene-02.webp);
    background-repeat: no-repeat;
    background-position: left;
    background-size: cover;
}

.main-galerie-1 h1.h1-bottom {
    position: absolute;
    display: inline-block;
    overflow: hidden;
    white-space: nowrap;
    font-size: 40px;
    left: 19%;
    font-weight: 600;
    margin: 0;
    font-family: sans-serif;
    z-index: 1;
    text-shadow: -4px -3px 7px rgba(0, 0, 0, 0.3);
    user-select: none;
    -webkit-user-select: none;
    -webkit-user-drag: none;
    background-color: rgba(255, 255, 255, 0.7);
    padding: 5px 8px 0 5px;
}

@media screen and (min-width: 576px) {

    .main-galerie-1 h1.h1-top,
    .main-galerie-1 h1.h1-bottom {
        font-size: 67px;
    }
}

@media screen and (min-width: 768px) {

    .main-galerie-1 h1.h1-top,
    .main-galerie-1 h1.h1-bottom {
        font-size: 85px;
    }
}

@media screen and (min-width: 1024px) {

    .main-galerie-1 h1.h1-top,
    .main-galerie-1 h1.h1-bottom {
        font-size: 108px;
    }
}

@media screen and (min-width: 2000px) {

    .main-galerie-1 h1.h1-top,
    .main-galerie-1 h1.h1-bottom {
        font-size: 165px;
    }
}

/* end of main-galerie */
/* galerie second */

.galerie-second {
    height: 50vh;
    display: flex;
    background-color: rgb(242, 242, 242);
    flex-direction: column;
    position: relative;
    z-index: 0;
    -webkit-box-shadow: -4px -2px 8px 0px rgba(0, 0, 0, 0.3);
    box-shadow: -4px -2px 8px 0px rgba(0, 0, 0, 0.3);
}

.galerie-second h2 {
    color: #000;
    position: absolute;
    top: 25px;
    font-weight: 600;
    font-size: 42px;
    z-index: 2;
}

@media screen and (min-width: 1440px) {
    .galerie-second h2 {
        left: 200px;
    }
}

.galerie-second h2::before {
    content: "";
    display: block;
    top: 50px;
    height: 5px;
    width: 150%;
    background-color: #f48222;
    position: absolute;
    margin-left: 1%;
    z-index: 2;
}


.galerie-second p {
    color: #000;
    width: 45%;
    position: absolute;
    right: 300px;
    top: 90px;
    font-size: 20px;
    z-index: 2;
}

.galerie-second img.predavani {
    position: absolute;
    height: 70%;
    right: 0;
    top: 10%;
    z-index: 1;
    user-select: none;
    -webkit-user-drag: none;
}

.galerie-second img.blueprint {
    position: absolute;
    height: 98%;
    left: 0;
    bottom: 0;
    z-index: 1;
    user-select: none;
    -webkit-user-drag: none;
}

@media screen and (min-width: 1024px) and (max-width: 1439px) {
    .galerie-second h2 {
        left: 150px;
        font-size: 38px;
    }

    .galerie-second h2::before {
        width: 140%;
    }


    .galerie-second p {
        width: 55%;
        left: 300px;
        font-size: 18px;
    }

    .galerie-second img.predavani {
        height: 55%;
        top: 15%;
    }

    .galerie-second img.blueprint {
        height: 85%;
        left: 0;
        bottom: 0;
    }
}

@media screen and (min-width: 769px) and (max-width: 1023px) {
    .galerie-second {
        height: 70vh;
    }

    .galerie-second h2 {
        top: 25px;
        font-size: 35px;
        left: 100px;
    }

    .galerie-second h2::before {
        width: 98%;
    }

    .galerie-second p {
        width: 60%;
        left: 50%;
        transform: translateX(-50%);
        top: 100px;
        font-size: 20px;
    }

    .galerie-second img.predavani {
        height: 30%;
        right: 0;
        top: 10%;
    }

    .galerie-second img.blueprint {
        height: 50%;
        left: 0;
        bottom: 0;
    }
}

@media screen and (min-width: 577px) and (max-width: 768px) {
    .galerie-second {
        height: 80vh;
        align-items: center;
    }

    .galerie-second h2 {
        top: 25px;
        font-size: 30px;
    }

    .galerie-second h2::before {
        width: 98%;
    }

    .galerie-second p {
        width: 60%;
        left: 50%;
        transform: translateX(-50%);
        top: 100px;
        font-size: 20px;
    }

    .galerie-second img.predavani {
        height: 25%;
        right: 0;
        top: 22%;
    }

    .galerie-second img.blueprint {
        height: 45%;
        left: 0;
        bottom: 0;
    }
}

@media screen and (max-width: 576px) {
    .galerie-second {
        height: 92vh;
        align-items: center;
    }

    .galerie-second h2 {
        top: 25px;
        font-size: 21px;
    }

    .galerie-second h2::before {
        width: 98%;
    }

    .galerie-second p {
        width: 80%;
        left: 50%;
        transform: translateX(-50%);
        top: 100px;
        font-size: 20px;
    }

    .galerie-second img.predavani {
        display: none;
    }

    .galerie-second img.blueprint {
        height: 45%;
        left: 0;
        bottom: 0;
        opacity: .6;
    }
}

/* galerie second */
/* glaerie images */

.galerie {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    background-color: rgb(34, 34, 34);
}

.galerie-images {
    width: 33.333%;
    height: 280px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.galerie-images p {
    font-weight: 400;
}

@media screen and (max-width: 1024px) {
    .galerie-images {
        width: 50%;
        height: 280px;
    }
}

@media screen and (max-width: 768px) {
    .galerie-images {
        width: 100%;
        height: 380px;
    }
}

@media screen and (max-width: 576px) {
    .galerie-images {
        width: 100%;
        height: 300px;
    }
}

.galerie-images:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, .6);
    opacity: 0;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}

.galerie-images:hover:after {
    opacity: 1;
}

.galerie-images:hover>.galerie-main-text {
    opacity: 1;
    transform: scale(1.4);
    letter-spacing: 1px;
}

.double-line {
    max-width: 110%;
    transition: all 0.8s;
    -webkit-transition: all 0.8s;
}

.galerie-images:hover>.double-line {
    max-width: 72%;
}

.xl-line {
    width: 110%;
}

.galerie-main-text {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    color: white;
    opacity: 0;
    letter-spacing: 10px;
    transition: all 0.8s;
    -webkit-transition: all 0.8s;
}

.galerie-main-image {
    background: #4b4b4b;
    border: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .8s ease;
}

#RD-Sedlecko-5B-g {
    position: relative;
    object-position: left 0px top 40%;
}

.galerie-images:hover img {
    transform: scale(1.2);
}

/* end of glaerie images */
/* galerie popup */

.carousel-item img {
    object-fit: contain;
    object-position: center;
    height: 80vh;
}

@media screen and (max-width: 575px) {
    .carousel-item img {
        height: 70vh;
    }
}

button.carousel-control-prev:hover>span.carousel-control-prev-icon,
button.carousel-control-next:hover>span.carousel-control-next-icon {
    background-color: rgba(0, 0, 0, .3);
    padding: 17px;
}

span.carousel-control-prev-icon,
span.carousel-control-next-icon {
    background-color: rgba(0, 0, 0, .15);
}

h5.modal-title {
    font-size: 25px;
    font-weight: 600;
}

div.modal-header {
    padding: 12px 16px;
}

/* end of galerie popup  */
/* Technologie */

.technologie-nadpis {
    width: 100%;
    height: 25vh;
    background-color: #f48222;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 4.5rem;
    z-index: 2;
}

.technologie-h1 {
    font-size: 45px;
    font-weight: 500;
}

.technologie-div {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
}

.technologie-text {
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    flex-direction: column;
}

div.technologie-text-2 p {
    border-top: 3px solid #f48222;
}

.technologie-text p {
    width: 75%;
    margin: 0;
    padding-top: 5px;
    border-top: 2px solid rgba(50, 50, 50, .6);
}

.technologie-text h2 {
    width: 75%;
    font-size: 25px;
    font-weight: 600;
}

.technologie-img {
    position: relative;
}

.technologie-img::after {
    box-shadow: inset 3px 3px 10px 0 rgba(0, 0, 0, .4);
    content: '';
    display: block;
    height: 100%;
    position: absolute;
    top: 0;
    width: 100%;
}

.technologie-img img {
    width: 100%;
}

@media screen and (min-width: 576px) {
    .technologie-h1 {
        font-size: 50px;
    }
}

@media screen and (min-width: 768px) {
    .technologie-div {
        flex-direction: row;
        height: 50vh;
    }

    .technologie-wide {
        height: 70vh;
    }

    .technologie-wide p {
        width: 85%;
    }

    div.technologie-wide-2 {
        height: 60vh;
    }

    .technologie-wide-2 p {
        width: 90%;
    }

    .technologie-wide-3 {
        height: 80vh;
    }

    .technologie-wide-3 p {
        width: 90%;
    }

    .technologie-wide-4 {
        height: 70vh;
    }

    .technologie-text {
        width: 50%;
        height: 100%;
    }

    .technologie-text h2 {
        font-size: 19px;
    }

    .technologie-img {
        width: 50%;
        overflow: hidden;
    }

    .technologie-img img {
        height: 100%;
        object-fit: cover;
    }

    .technologie-div:nth-child(odd) .technologie-text {
        order: 2;
    }

    .technologie-div:nth-child(odd) .technologie-img {
        order: 1;
    }
}

@media screen and (min-width: 1024px) {
    .technologie-div {
        height: 55vh;
    }

    /* .technologie-wide p {
        width: 75%;
    }

    .technologie-wide-2 p {
        width: 75%;
    } */

    .technologie-text h2 {
        font-size: 25px;
    }
}

@media screen and (min-width: 1440px) {
    .technologie-div {
        height: 65vh;
    }
}

@media screen and (max-width: 768px) {
    .technologie-text {
        padding: 50px 0;
    }
}

@media screen and (max-width: 575px) {
    .technologie-h1 {
        font-size: 34px;
    }

    .technologie-text h2 {
        font-size: 20px;
    }
}

/* End of Technologie */
/* Technicke parametry */
.technicke-parametry-text {
    background-color: #454545;
    padding: 50px 0;
}

.technicke-parametry-text p {
    color: #fff;
    width: 65%;
    margin: 0 auto;
    font-size: 18px;
    border-top: 3px solid #f48222;
    padding-top: 5px;
}

/* end of technicke parametry */
/* skladby */
.skladby-h2 {
    text-align: center;
    padding: 10px 0;
    position: relative;
    box-shadow: 0px -2px 15px 0px rgba(0, 0, 0, 0.15);
    overflow-y: hidden;
    background-color: #fcfcfc;
}

.skladby-h2 h2 {
    font-size: 32px;
    margin: 0;
}

.skladby-nadpis-text {
    background-color: #f8f8f8;
    padding: 20px 0;
}

.skladby-nadpis-text p {
    width: 80%;
    margin: 0 auto;
}

.skladby-div {
    display: flex;
    flex-direction: column;
}

.skladby-text {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgb(244, 244, 244);
    z-index: 2;
    height: 60vh;
}

.skladby-text div ul li,
.skladby-text div p,
.skladby-text div p sup {
    color: #000;
}

.skladby-text div {
    width: 80%;
}

.skladby-text div ul {
    list-style: none;
}

.skladby-text div ul li {
    position: relative;
}

.skladby-text div p {
    margin: 0;
}

.skladby-text div ul li::before {
    content: url(images/bullet-point-house.png);
    transform: scale(.22);
    display: block;
    position: absolute;
    left: -70px;
    top: -32px;
}

.skladby-img {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-color: rgb(244, 244, 244);
    z-index: 2;
    height: 60vh;
}

.skladby-img img {
    height: 40vh;
}

.skladby-img h3 {
    font-weight: 800;
    font-size: 32px;
}

hr {
    margin: 0;
    color: #f3f3f3;
}

.skladby-div:nth-child(even) .skladby-text,
.skladby-div:nth-child(even) .skladby-img {
    background-color: rgb(238, 238, 238);
}

@media screen and (min-width: 576px) {
    .skladby-nadpis-text p {
        width: 75%;
    }

    .skladby-h2 h2 {
        font-size: 40px;
    }
}

@media screen and (min-width: 768px) {
    .skladby-nadpis-text p {
        width: 70%;
    }
}

@media screen and (min-width: 1024px) {
    .skladby-nadpis-text p {
        width: 60%;
    }

    .skladby-div {
        flex-direction: row;
    }

    .skladby-text {
        width: 50%;
        height: 100%;
    }

    .skladby-img {
        width: 50%;
        height: 100%;
    }

    .skladby-div {
        height: 70vh;
    }
}

@media screen and (min-width: 1440px) {
    .skladby-nadpis-text p {
        width: 55%;
    }
}

@media screen and (max-width: 575px) {
    .skladby-text {
        height: 70vh;
    }
}

/* end of skladby */
/* terasy */

.terasy-main {
    height: 65vh;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    position: relative;
}

.terasy-h1 {
    width: 25%;
    position: relative;
    display: flex;
    align-items: center;
}

.terasy-main-2 {
    width: 75%;
    z-index: 1;
    background-image: url(images/Terasa\ F-Košice/IMG_4736-Edit-2.webp);
    background-repeat: no-repeat;
    background-size: cover;
    box-shadow: -4px 0px 7px 0px rgba(0, 0, 0, 0.3);
}

.terasy-h1 h1.h1-bottom {
    position: absolute;
    display: inline-block;
    overflow: hidden;
    white-space: nowrap;
    left: 30%;
    font-weight: 600;
    margin: 0;
    font-family: sans-serif;
    z-index: 1;
    text-shadow: -4px -3px 7px rgba(0, 0, 0, 1);
    user-select: none;
    -webkit-user-select: none;
    -webkit-user-drag: none;
}

.terasy-h1 h1.h1-top {
    position: absolute;
    display: inline-block;
    overflow: hidden;
    white-space: nowrap;
    left: 30%;
    font-weight: 600;
    margin: 0;
    font-family: sans-serif;
    z-index: 2;
    background-color: rgba(255, 255, 255, 0.7);
    padding: 0 20px 0 0;
}

.terasy-h1 h1 {
    font-size: 70px;
}

.terasy-second {
    height: 45vh;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    box-shadow: -4px -2px 8px 0px rgba(0, 0, 0, 0.3);
}

.terasy-second-1 {
    width: 50%;
    background-color: #f48222;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.terasy-second-1 h2 {
    width: 55%;
    border-bottom: 4px solid #f0f0f0;
    padding-top: 5px;
    margin-right: 20%;
    font-weight: 600;
}

.terasy-second-1 p {
    width: 75%;
}

.terasy-second-2 {
    width: 50%;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.terasy-second-2 p {
    width: 75%;
}

.terasy-shadow {
    background-color: #fcfcfc;
}

.terasy-shadow,
.terasy-shadow-img {
    z-index: 2;
}

.terasy-shadow:nth-of-type(1) {
    box-shadow: -4px -2px 8px 0px rgba(0, 0, 0, 0.3);
}

.terasy-prouzek {
    height: 1vh;
    background-color: #1d1d1d;
}

@media screen and (min-width: 576px) {
    .terasy-h1 h1 {
        font-size: 90px;
    }
}

@media screen and (min-width: 768px) {
    .terasy-h1 h1 {
        font-size: 95px;
    }
}

@media screen and (min-width: 1024px) {
    .terasy-h1 h1 {
        font-size: 105px;
    }
}

@media screen and (min-width: 1440px) {
    .terasy-h1 h1 {
        font-size: 110px;
    }
}

/* end of terasy */
/* kontakt */

.white-space-10vh {
    height: 10vh;
    background-color: #fff;
}

.kontakt-div {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
}

.kontakt-text {
    height: 35vh;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.kontakt-text h2 {
    font-size: 55px;
    margin: 0;
}

.kontakt-img {
    position: relative;
    width: 100%;
    display: none;
}

.kontakt-img::after {
    box-shadow: inset 3px 3px 10px 0 rgba(0, 0, 0, .4);
    content: '';
    display: block;
    height: 100%;
    position: absolute;
    top: 0;
    width: 100%;
}

.kontakt-img img {
    width: 100%;
    object-fit: cover;
    overflow: hidden;
    height: 100%;
}

.kontakt-text-1,
.kontakt-text-2 {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    flex-wrap: nowrap;
    width: 100%;
}

.kontakt-text-1 {
    background-color: #f48222;
    height: 65vh;
}

.kontakt-text-2 {
    height: 65vh;
}

.kontakt-content {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
}

.kontakt-text-1 .kontakt-content {
    width: 85%;
}

.kontakt-text-1 .kontakt-content {
    width: 85%;
}

.kontakt-text-1 .kontakt-content h2,
.kontakt-text-1 .kontakt-content p,
.kontakt-info-jmeno,
.kontakt-info-telefon a,
.kontakt-info-email a {
    color: rgb(240, 240, 240);
}

.kontakt-text-1 .kontakt-content h2,
.kontakt-info-jmeno {
    font-weight: 600;
}

.br-xs {
    display: block;
}

.kontakt-info-telefon,
.kontakt-info-email {
    padding-left: 25px;
    position: relative;
}

.kontakt-info-pin-white {
    padding-left: 25px;
    position: relative;
    color: white;
}

.kontakt-info-pin-white::after {
    content: url(images/pin-icon-white.png);
    transform: scale(.046);
    display: block;
    position: absolute;
    left: -179px;
    top: -280px;
}

.kontakt-info-email::after {
    content: url(images/kontakt-email.png);
    transform: scale(.075);
    display: block;
    position: absolute;
    left: -118px;
    top: -79px;
}

.kontakt-info-telefon::after {
    content: url(images/kontakt-phone.png);
    transform: scale(.072);
    display: block;
    position: absolute;
    left: -118px;
    top: -123px;
}

.kontakt-text-1 .kontakt-content p:nth-last-child(1) {
    margin: 0;
}

.kontakt-text-2 .kontakt-content p {
    font-weight: 300;
}

.kontakt-form {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: center;
}

input,
textarea {
    background: none;
    width: 66.6666%;
    border: 2px #ccc solid;
    outline: none;
    padding: 13px 10px;
    font-size: 15px;
    color: #000;
}

textarea {
    width: 100%;
    overflow: auto;
}

input {
    width: 100%;
}

input[type=checkbox] {
    width: fit-content;
}

.button {
    background-color: #333;
    border: 1px #333 solid;
    display: inline-block;
    line-height: 41px;
    padding: 0 30px 0 15px;
    color: #fff;
    font-weight: 600;
    background-size: 100% 200%;
    position: relative;
    transition: all .3s;
    -webkit-transition: all .3s;
}

.button:hover {
    background-color: #f48222;
}

.button::after {
    content: url(images/button-arrow.png);
    transform: scale(.5);
    display: block;
    position: absolute;
    right: 4px;
    top: -2px;
}

.sent-message {
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%);
    width: 500px;
    max-width: 80vw;
    background-color: rgb(244, 244, 244);
    display: flex;
    align-items: center;
    flex-direction: column;
    border-radius: 5px;
    z-index: 99;
    border: 1px rgb(196, 196, 196) solid;
}

.sent-message-h3 {
    border-bottom: #c7c7c7 1px solid;
    margin: auto 0;
    height: 100%;
    width: 90%;
    margin: 10px 0;
}

.sent-message-p {
    width: 90%;
}

.sent-message-background {
    position: fixed;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, .2);
    z-index: 98;
    left: 0;
    top: 0;
}

.close {
    position: absolute;
    top: 5px;
    right: 5px;
    padding: 3px 7px 0px;
    border: none;
    font-weight: 600;
}

.close img {
    width: 25px;
}

.kontakt-info-telefon a,
.kontakt-info-email a {
    color: #FFF;
    text-decoration: none;
}

.kontakt-content .kontakt-info-telefon a:hover,
.kontakt-content .kontakt-info-email a:hover {
    color: #000 !important;
}

@media screen and (min-width: 576px) {

    .kontakt-text {
        height: 40vh;
    }

    .kontakt-text-2 .kontakt-content p:nth-of-type(1) {
        font-size: 18px;
    }

    .br-xs {
        display: none;
    }
}

@media screen and (min-width: 768px) {
    .kontakt-div:nth-child(even) {
        flex-direction: row;
        height: 45vh;
    }

    .kontakt-text {
        height: 100%;
    }

    .kontakt-text,
    .kontakt-img {
        width: 50%;
    }

    .kontakt-text-2 .kontakt-content p:nth-of-type(1) {
        font-size: 22px;
    }

    .kontakt-img {
        display: block;
    }
}


@media screen and (min-width: 1024px) {
    div.kontakt-div {
        height: 65vh;
        flex-direction: row;
    }

    .kontakt-text-1,
    .kontakt-text-2 {
        width: 50%;
        height: 100%;
    }

    .kontakt-text-2 .kontakt-content p:nth-of-type(1) {
        font-size: 18px;
    }
}

@media screen and (min-width:1024px) and (max-width: 1300px) {
    div.kontakt-div:nth-of-type(3) {
        height: 80vh;
    }
}


@media screen and (min-width: 1440px) {
    .kontakt-text-2 .kontakt-content p:nth-of-type(1) {
        font-size: 20px;
    }

    .kontakt-text h2 {
        font-size: 60px;
    }
}

@media screen and (max-width: 576px) {
    .kontakt-text-2 .kontakt-content p {
        margin-right: auto;
        margin-left: auto;
        width: 95%;
    }

    .kontakt-text-2 .kontakt-content p:nth-of-type(1) {
        font-size: 18px;
    }

    .kontakt-text-1 {
        height: 80vh;
    }

    .kontakt-text-2 {
        height: 70vh;
    }
}

/* /kontakt */
/* index */

.main {
    background-image: url(images/Terasa\ F-Košice/krivky_barak.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height: 95vh;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.main div {
    text-align: center;
    background-color: rgba(255, 255, 255, .65);
    padding: 15px 15px 0;
}

.main div img {
    width: 300px;
}

.main div p {
    font-size: 15px;
    color: #000;
    margin: 0;
    font-weight: 400;
    margin-top: 5px;
}

.index-h2 {
    margin: 0;
}

.technologie-div h3 {
    width: 75%;
    text-transform: uppercase;
    font-size: 16px;
    padding-left: 5px;
    margin-top: -2px;
    font-weight: 600;
}


@media screen and (min-width: 576px) {
    .main div h1 {
        font-size: 40px;
    }

    .main div p {
        font-size: 20px;
    }
}

@media screen and (min-width: 768px) {
    .main div h1 {
        font-size: 56px;
    }

    .main div p {
        font-size: 25px;
    }

    .technologie-div h3 {
        font-size: 17px;
    }
}

@media screen and (min-width: 1024px) {
    .main div h1 {
        font-size: 70px;
    }

    .main div p {
        font-size: 28px;
    }

    .technologie-div h3 {
        font-size: 20px;
    }
}


@media screen and (min-width: 1440px) {

    .index-text h2,
    .index-text p {
        width: 82%;
    }
}

/* /index */
/* partners */

.footer-partners {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    padding: 10px 0;
    background-color: #fbfbfb;
    box-shadow: 0px -5px 4px 0px rgba(0, 0, 0, 0.4);
}

.partneri-h2 {
    font-size: 28px;
    border-bottom: 4px solid #f48222;
}

.partneri {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.partneri a img {
    height: 32px;
    margin: 15px;
    transition: all .5s;
    -webkit-transition: all .5s;
}

.partneri a img:hover {
    transform: scale(1.2);
}


/* /partners */
/* footer */

footer {
    background-color: #383838;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.footer-cards {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* padding-left: 20%; */
    width: 100%;
}

.footer-kontakt {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    align-items: left;
    justify-content: left;
    text-align: left;
    /* margin: 30px 0 10px; */
    left: 50%;
}

.footer-kontakt a {
    text-decoration: none;
}

.footer-kontakt h2,
.footer-menu h2 {
    color: #f48222;
    font-weight: 600;
}

.footer-kontakt h3 {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
}

.footer-kontakt p {
    color: #fff;
    font-size: 18px;
}

.kontakt-info-pin {
    padding-left: 25px;
    position: relative;
}

.kontakt-info-pin::after {
    content: url(images/pin-icon.png);
    transform: scale(.045);
    display: block;
    position: absolute;
    left: -177px;
    top: -275px;
}

.footer-menu {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    margin-top: 30px;
    padding-right: 50px;
}

.footer-menu>ul {
    padding-left: 5px;
}

.footer-menu li {
    list-style: none;
    color: #fff;
    font-size: 19px;
}

.pointer {
    cursor: pointer;
}

.footer-menu a {
    text-decoration: none;
    color: #fff;
    transition: all .5s;
    -webkit-transition: all .5s;
}

a.footer-menu-link-active {
    color: #f48222;
    font-weight: 600;
}

.footer-menu a:hover {
    color: #f48222;
}

.footer-menu ul div {
    display: flex;
    flex-direction: column;
}

.footer-menu ul div li {
    order: 1;
}

.footer-menu ul ul {
    order: 2;
}

.footer-menu ul div ul:hover+li a {
    color: rgba(244, 130, 34);
    letter-spacing: 1.6px;
}

.footer-menu {
    order: 1;
}

.footer-kontakt {
    order: 2;
}

.p-button {
    margin-bottom: 5px;
}

.gdpr {
    font-size: 12px;
    margin-bottom: 0;
}

/* copyright */

.copyright {
    background-color: #1f1f1f;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 6vh;
}

.copyright p {
    color: rgb(204, 204, 204);
    margin: 0;
    font-size: 9px;
}

.copyright p>a {
    text-decoration: none;
    font-weight: 600;
    color: rgb(225, 225, 225);
}

/* /copyright */

@media screen and (min-width: 576px) {
    .copyright p {
        font-size: 15px;
    }
}

@media screen and (min-width: 768px) {
    .footer-cards {
        flex-direction: row;
        align-items: none;
        margin: 0;
    }

    .footer-menu,
    .footer-kontakt {
        width: 35%;
        margin: 30px 4% 10px;
    }

    .footer-menu {
        order: 2;
        padding: 0;
    }

    .footer-kontakt {
        order: 1;
    }
}

@media screen and (min-width: 1024px) {

    .footer-menu,
    .footer-kontakt {
        width: 25%;
    }
}


@media screen and (min-width: 1440px) {

    .footer-menu,
    .footer-kontakt {
        width: 20%;
    }
}

/* /footer */

#IMG_4720 {
    position: relative;
    object-position: left 0px top 0px;
}

#RD-Sedlecko-5B {
    position: relative;
    object-position: left 0px top 40%;
}

/* gdpr */
.gdpr-text {
    width: 70%;
    text-align: left;
    margin: 0 auto;
}

.gdpr-text div h3 {
    font-size: 28px;
    font-weight: 600;
    color: rgb(63, 63, 63);
}

.gdpr-text div p,
.gdpr-text div ul li {
    font-size: 18px;
    font-weight: 400;
    color: rgb(90, 90, 90);
}

.gdpr-text div {
    margin: 50px 0;
}

/* /gdpr */