@import "gallery.css";
@import "compare.css";
@import "buttons.css";
@import "menu.css";
@import "recenze.css";
@import "video.css";

html, body {
    margin: 0;
    padding: 0;
    font-family: sans-serif;
    background-color: var(--purple);
    scroll-behavior: smooth;
    overflow-x: hidden;
    color: var(--blue);
}

:root {
    --purple: #d6c1c8;
    --pink: #eed9d8;
    --white: #ffffff;
    --black: #000000;
    --blue: #28292c;
    --gray: #7c7c7c;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Mukta";
    font-weight: 700;
    margin: 0;
    padding: 0;
}

p, a, li, ul, button, input, textarea {
    margin: 0;
    padding: 0;
    outline: 0;
}

/* Scrollbar */

::-webkit-scrollbar {
    background-color: var(--white);
}

::-webkit-scrollbar-thumb {
    background-color: var(--blue);
}

::-webkit-scrollbar-thumb:hover {
    background-color: var(--black);
}

/* Cookies */

.cookies {
    position: fixed;
    left: 50%;
    transform: translate(-50%);
    margin: auto;
    margin-bottom: 20px;
    z-index: 30;
}

.cookies div {
    width: 80vw;
    padding: 10px 20px;
    background-color: var(--purple);
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    border: 2px solid white;
}

.cookies p {
    color: black;
    margin-right: 100px;
}

.cookies p a {
    color: black;
}

.cookies div > a {
    position: relative;
    height: 100%;
    padding: 10px 20px;
    margin: 0;
    background-color: white;
    color: black;
    cursor: pointer;
}

.cookies div a:hover {
    text-decoration: underline;
}



/* Header */

.header {
    width: 100vw;
    height: 90vh;
    background-color: var(--white);
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-direction: row;
}

.header .text {
    position: relative;
    height: 35vh;
    width: 40vw;
    background-color: var(--white);
    color: var(--blue);
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    z-index: 3;
}

.header .text h1 {
    font-size: 3.5em;
    text-transform: uppercase;
    padding-left: 40px;
}

.header .text p {
    font-size: 1.3em;
    padding-left: 40px;
    color: var(--black);
}

.header .text .pink {
    position: absolute;
    top: 35%;
    left: 92%;
    width: 150px;
    height: 20px;
    background-color: var(--pink);
    content: "";
}

.header .text::before, .header .text::after {
    content: url(../img/icon/corner.png);
    position: absolute;
}

.header .text::before {
    top: -30px;
    left: -30px;
}

.header .text::after {
    top: 99.5%;
    left: -30px;
    transform: rotate(-90deg);
}

.header .text a {
    position: absolute;
}

.header .text a img {
    width: 80px;
}

.header .text .arrow {
    position: absolute;
    top: 105%;
    left: 5%;
    transition: .3s ease;
    z-index: 10;
}

.header .text .arrow:hover {
    top: 115%;
}

.header .img {
    margin-left: -15vw;
    position: relative;
}

.header .img img {
    width: 60vw;
    max-width: 1200px;
}

.header .img::before, .header .img::after {
    content: url(../img/icon/corner.png);
    position: absolute;
}

.header .img::before {
    top: -30px;
    left: -30px;
}

.header .img::after {
    top: 99.5%;
    left: -30px;
    transform: rotate(-90deg);
}


/* MAIN */

.message {
    position: fixed;
    top: 1%;
    right: 1%;
    font-size: 20px;
    font-family: "Mukta";
    font-weight: 700;
    color: var(--black);
    text-align: center;
    padding: 10px 40px;
    background-color: #f8ef42;
    background-image: linear-gradient(315deg, #f8ef42 0%, #0fd64f 84%);
    border-radius: 8px;
    z-index: 150;
    transition: .3s ease;
}

.message.right {
    background-color: #f8ef42;
    background-image: linear-gradient(315deg, #f8ef42 0%, #0fd64f 84%);
}

.message.false {
    background-color: #ee5253;
    background-image: linear-gradient(315deg, #ee5253 0%, #e50914 74%);
    color: white;
}

.message.hide {
    animation: hide .5s forwards;
}

@keyframes hide {

    0% {
        opacity: 1;
        top: 1%;
    }

    60% {
        opacity: 0;
        top: -2%;
        display: block;
    }

    100% {
        opacity: 0;
        top: -2%;
        display: none;
    }

}

/* Sekce */

section {
    width: 100vw;
}

section > .nadpis {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px;
}

section > .nadpis h2 {
    font-size: 3em;
    text-transform: uppercase;
    margin: 0;
}

section > .content {
    width: 80vw;
    background-color: var(--white);
    display: flex;
    justify-content: space-evenly;
    align-items: flex-end;
    flex-direction: column;
    padding: 10vh 0;
}

section > .content > p {
    width: 50%;
    font-size: 18px;
    margin-right: 12.5%;
    margin-bottom: 50px;
}

.nopadding > .content {
    padding: 0;
}

/* O mně */

section > .content > .omne {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-direction: row;
    text-decoration: none;
}

section > .content > .omne .bx-wrapper {
    width: 25vw;
    margin-left: -5vw;
    margin-right: 0px;
    height: 100%;
}

section > .content > .omne p {
    position: relative;
    max-width: 30vw;
    font-size: 18px;
    text-align: justify;
    background: var(--white);
    padding: 50px;
    z-index: 5;
}

section > .content > .omne p::before, section > .content > .omne p::after {
    content: url(../img/icon/corner.png);
    position: absolute;
}

section > .content > .omne p::before {
    top: -30px;
    left: -30px;
}

section > .content > .omne p::after {
    top: 99.5%;
    left: -30px;
    transform: rotate(-90deg);
}


/* Služby */

section > .content > .sluzba {
    margin: 50px 0;
    padding: 0;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-direction: row;
    text-decoration: none;
    color: var(--blue);
}

section > .content > .sluzba .text {
    position: relative;
    background-color: var(--white);
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-direction: row;
    width: 30vw;
    height: 20vh;
    z-index: 3;
}

section > .content > .sluzba .text h3 {
    font-size: 2em;
    text-transform: uppercase;
}

section > .content > .sluzba .text p {
    font-size: 0.9em;
    color: var(--black)
}

section > .content > .sluzba .text img {
    width: 60px;
    transform: rotate(-90deg);
    transition: .3s ease;
}

section > .content > .sluzba .text:hover img {
    transform: translate(75%) rotate(-90deg);
}

section > .content > .sluzba .text::before, section > .content > .sluzba .text::after {
    content: url(../img/icon/corner.png);
    position: absolute;
}

section > .content > .sluzba .text::before {
    top: -30px;
    left: -30px;
}

section > .content > .sluzba .text::after {
    top: 99.5%;
    left: -30px;
    transform: rotate(-90deg);
}

section > .content > .sluzba .img {
    margin-left: -10vw;
    position: relative;
}

section > .content > .sluzba .img img {
    height: 45vh;
}

/* Certifikace */

section > .content > .certifikace {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    width: 65%;
    margin: 25px 0;
    margin-right: 8.5%;
}

section > .content > .certifikace.hidden {
    display: none;
}

section > .content > .btn.submit {
    margin-right: 33.5%;
}

section > .content > .certifikace .text p {
    margin: 7px 0;
}

section > .content > .certifikace .text .nadpis {
    font-size: 1.4em;
    font-weight: 700;
    color: var(--blue);
    text-transform: uppercase;
}

section > .content > .certifikace .text .desc {
    font-size: 1.1em;
    color: var(--black);
}

section > .content > .certifikace .text .date {
    font-size: 0.8em;
    font-weight: 200;
    color: var(--gray);
}

section > .content > .certifikace .icons {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
}

section > .content > .certifikace .icons img, section > .content > .certifikace .icons svg {
    width: 60px;
    margin: 0 15px;
    transition: .3s ease-in-out;
}

section > .content > .certifikace .icons img:hover {
    transform: scale(.9);
}

section > .content > .certifikace .icons svg .arrow {
    transform: translate(0%, 0%);
    transition: .3s ease-in-out;
}


section > .content > .certifikace .icons svg:hover .arrow {
    transform: translate(0%, 10%);
}

/* Formulář */

.content .form {
    width: 45%;
    margin-right: 15%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.content .form .form-group {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    width: 50%;
    margin: 10px;
}

.content .form .form-group p {
    font-family: "Mukta";
    font-size: 20px;
    padding: 5px;
    padding-left: 0;
}

.content .form .form-group input, .content .form .form-group textarea {
    width: 100%;
    border: none;
    background-color: transparent;
    font-size: 18px;
    font-family: sans-serif;
    border-bottom: 2px solid #acabab;
    padding: 5px;
    resize: none;
    transition: .3s;
}

.content .form .form-group input:focus, .content .form .form-group textarea:focus {
    border-bottom: 2px solid var(--blue);
}

.content .underline-text {
    color: var(--gray);
    font-size: 12px;
    text-align: center;
    margin-top: 15px;
}

/* Kontakt */

section > .content > .kontakt {
    width: 50%;
    margin-right: 12.5%;
    position: relative;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-direction: row;
    margin-bottom: 50px;
}

section > .content > .kontakt > div {
    width: 40%;
    height: 120%;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

section > .content > .kontakt > div:first-child {
    align-items: flex-end;
}

section > .content > .kontakt > div:last-child {
    align-items: flex-start;
}

section > .content > .kontakt > span {
    position: absolute;
    top: -25%;
    left: calc(50% - 0.5px);
    height: 150%;
    width: 1px;
    background-color: var(--black);
    content: "";
    opacity: 0.4;
}

section > .content > .kontakt > div > p {
    font-size: 18px;
    margin: 4px;
}

section > .content > .kontakt > div a {
    text-decoration: none;
    color: var(--black);
}

section > .content > .kontakt > div img {
    height: 22px;
    margin-top: 4px;
}

footer > p {
    text-align: center;
    font-size: 18px;
    padding: 5px 0;
}

footer > p > a {
    text-decoration: none;
    color: var(--black);
}

footer .conditions {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    padding: 10px;
}

footer .conditions a {
    margin: 0 10px;
    color: black;
}

footer .conditions .cc-setting-link {
    background-color: transparent;
    border: none;
    text-decoration: underline;
    font-size: 1rem;
    margin: 0 10px;
    cursor: pointer;
}

footer section .content > p {
    width: 50%;
    text-align: center;
    margin-bottom: 0;
}

footer section .cooworker {
    padding: 20px 0 !important;
}

footer section .cooworker p {
    padding: 10px 0;
    width: 35%;
    margin-right: 20%;
}


/* Resposibilita */


@media only screen and (max-width: 1050px) {

    section > .content > .sluzba .text::before, section > .content > .sluzba .text::after, section > .content > .omne p::before,
    section > .content > .omne p::after, .header .text::before, .header .text::after, .header .img::before, .header .img::after {
        content: url(../img/icon/corner_mobile.png);
    }

    section > .content > .sluzba .text::before, section > .content > .omne p::before, .header .text::before, .header .img::before {
        top: -20px;
        left: -20px;
    }

    section > .content > .sluzba .text::after, section > .content > .omne p::after, .header .text::after, .header .img::after {
        bottom: -20px;
        left: -20px;
    }

    .header .img {
        margin-left: -15vw;
    }

    .header .img img {
        width: 65vw;
    }

    .header .text {
        width: 40vw;
    }

    .header .text h1 {
        font-size: 2.5em;
    }

    .header .text p {
        font-size: 1em;
    }

    .header .text .arrow img {
        width: 60px;
    }

    .header .text .pink {
        top: 25%;
        width: 100px;
        height: 15px;
    }

    /* Section */

    section .content {
        width: 90vw;
        padding: 7vh 0;
    }

    section > .nadpis {
        padding: 50px;
    }

    section > .nadpis h2 {
        font-size: 2.3em;
    }

    section > .nadpis p {
        font-size: 15px;
    }

    section > .content > p {
        width: 50%;
        font-size: 15px;
        margin-right: 15%;
        margin-bottom: 50px;
    }


    /* O mně */

    section > .content > .omne .bx-wrapper {
        width: 30vw;
        margin-left: -5vw;
    }

    section > .content > .omne p {
        position: relative;
        max-width: 45vw;
        font-size: 15px;
        padding: 25px;
    }

    /* Služby */

    section > .content > .sluzba .text {
        width: 35vw;
        height: 20vh;
    }

    section > .content > .sluzba .text h3 {
        font-size: 1.5em;
    }

    section > .content > .sluzba .text p {
        font-size: 0.9em;
    }

    section > .content > .sluzba .text img {
        width: 40px;
    }

    section > .content > .sluzba .img {
        margin-left: -10vw;
    }

    section > .content > .sluzba .img img {
        height: 35vh;
    }

    /* Certifikace */

    section > .content > .certifikace {
        width: 65%;
    }

    section > .content > .certifikace .text .nadpis {
        font-size: 1.2em;
    }

    section > .content > .certifikace .text .desc {
        font-size: 1em;
    }

    section > .content > .certifikace .text .date {
        font-size: 0.8em;
    }

    section > .content > .certifikace .icons img, section > .content > .certifikace .icons svg {
        width: 50px;
        margin: 0 15px;
    }

    /* Kontakt */

    section > .content > .kontakt {
        width: 60%;
        margin-right: 15%;
    }

    section > .content > .kontakt > div {
        width: 40%;
        height: 120%;
    }

    section > .content > .kontakt > span {
        top: -25%;
        height: 150%;
    }

    section > .content > .kontakt > div > p {
        font-size: 16px;
    }

    section > .content > .kontakt > div img {
        height: 22px;
        margin-top: 8px;
    }

    footer > p {
        font-size: 15px;
        padding: 8px 0;
    }

    footer section .content > p {
        width: 60%;
    }

    footer section .cooworker p {
        margin-right: 15%;
    }

}


@media only screen and (max-width: 770px) {

    section > .content > .sluzba .text::before, section > .content > .sluzba .text::after, section > .content > .omne p::before,
    section > .content > .omne p::after, .header .text::before, .header .text::after, .header .img::before, .header .img::after {
        content: url(../img/icon/corner_mobile.png);
    }

    section > .content > .sluzba .text::before, section > .content > .omne p::before, .header .text::before, .header .img::before {
        top: -20px;
        left: -20px;
    }

    section > .content > .sluzba .text::after, section > .content > .omne p::after, .header .text::after, .header .img::after {
        bottom: -20px;
        left: -20px;
    }

    .cookies p {
        margin-right: 20px;
        font-size: 15px;
    }

    .header {
        flex-direction: column-reverse;
    }

    .header .img {
        margin-left: -0vw;
        margin-bottom: -10vh;
    }

    .header .img img {
        width: 100vw;
    }

    .header .text {
        width: 70vw;
        height: 25vh;
    }

    .header .text h1 {
        font-size: 2.5em;
    }

    .header .text p {
        font-size: 1em;
    }

    .header .text .arrow {
        position: absolute;
        top: 95%;
        left: 75%;
    }

    .header .text .arrow img {
        width: 100px;
    }

    .header .text .pink {
        top: -15%;
        left: 90%;
        width: 15px;
        height: 100px;
    }

    /* Section */

    section .content {
        width: 100vw;
        padding: 7vh 0;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }

    section > .nadpis {
        padding: 30px;
    }

    section > .nadpis h2 {
        font-size: 2em;
    }

    section > .nadpis p {
        font-size: 14px;
    }

    section > .content > p {
        width: 70%;
        font-size: 15px;
        margin-right: 0;
        margin-bottom: 40px;
    }


    /* O mně */

    section > .content > .omne {
        width: 100%;
        display: flex;
        justify-content: flex-end;
        align-items: center;
        flex-direction: row;
    }

    section > .content > .omne .bx-wrapper {
        width: 50vw;
        margin-left: -15vw;
    }

    section > .content > .omne p {
        position: relative;
        max-width: 40vw;
        font-size: 15px;
        padding: 25px;
    }

    /* Služby */

    section > .content > .sluzba {
        width: 100%;
    }

    section > .content > .sluzba .text {
        width: 45vw;
        height: 15vh;
    }

    section > .content > .sluzba .text h3 {
        font-size: 1.5em;
    }

    section > .content > .sluzba .text p {
        font-size: 0.9em;
    }

    section > .content > .sluzba .text img {
        width: 40px;
    }

    section > .content > .sluzba .img {
        margin-left: -15vw;
    }

    section > .content > .sluzba .img img {
        height: 25vh;
    }

    /* Certifikace */

    section > .content > .certifikace {
        width: 80%;
        margin-right: 0;
    }

    section > .content > .btn.submit {
        margin-right: 0;
    }

    section > .content > .certifikace .text .nadpis {
        font-size: 1.1em;
    }

    section > .content > .certifikace .text .desc {
        font-size: 0.9em;
    }

    section > .content > .certifikace .text .date {
        font-size: 0.7em;
    }

    section > .content > .certifikace .icons img, section > .content > .certifikace .icons svg {
        width: 45px;
        margin: 0 10px;
    }

    /* Kontakt */

    section > .content > .kontakt {
        width: 80%;
        margin-right: 0%;
    }

    section > .content > .kontakt > div {
        width: 40%;
        height: 120%;
    }

    section > .content > .kontakt > span {
        top: -25%;
        height: 150%;
    }

    section > .content > .kontakt > div > p {
        font-size: 16px;
    }

    section > .content > .kontakt > div img {
        height: 22px;
        margin-top: 8px;
    }

    footer > p {
        font-size: 15px;
        padding: 8px 0;
    }

    footer section .cooworker p {
        margin-right: 0%;
    }

}

@media only screen and (max-width: 500px) {

    section > .content > .sluzba .text::before, section > .content > .sluzba .text::after, section > .content > .omne p::before,
    section > .content > .omne p::after, .header .text::before, .header .text::after, .header .img::before, .header .img::after {
        content: "";
    }

    .cookies div {
        flex-direction: column;
    }

    .cookies p {
        margin-right: 0;
        margin-bottom: 10px;
        text-align: justify;
        font-size: 16px;
    }

    .header {
        flex-direction: column-reverse;
    }

    .header .img {
        margin-left: -0vw;
        margin-bottom: -10vh;
        padding: 0;
        width: 100vw;
        overflow: hidden;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .header .img img {
        width: 140vw;
    }

    .header .text {
        width: 90vw;
        height: 25vh;
    }

    .header .text h1 {
        font-size: 2.5em;
    }

    .header .text p {
        font-size: 1em;
    }

    .header .text .arrow {
        position: absolute;
        top: 75%;
        left: 75%;
    }

    .header .text .arrow img {
        width: 80px;
    }

    .header .text .pink {
        top: -20%;
        left: 90%;
        width: 15px;
        height: 100px;
    }

    /* Section */

    section .content {
        width: 100vw;
        padding: 7vh 0;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }

    section > .nadpis {
        padding: 30px;
    }

    section > .nadpis h2 {
        font-size: 1.8em;
    }

    section > .nadpis p {
        font-size: 14px;
    }

    section > .content > p {
        width: 70%;
        font-size: 15px;
        margin-right: 0;
        margin-bottom: 40px;
    }


    /* O mně */

    section > .content > .omne {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column-reverse;
    }

    section > .content > .omne .bx-wrapper {
        width: 100vw;
        margin-left: 0vw;
        margin-bottom: -20vh;
    }

    section > .content > .omne p {
        position: relative;
        max-width: 70vw;
        font-size: 15px;
        padding: 25px;
        margin-bottom: 70px;
    }

    /* Služby */

    section > .content > .sluzba {
        width: 100%;
        margin-right: 0;
        justify-content: center;
        flex-direction: column-reverse;
    }

    section > .content > .sluzba .text {
        width: 80%;
        height: 15vh;
    }

    section > .content > .sluzba .text h3 {
        font-size: 1.5em;
    }

    section > .content > .sluzba .text p {
        font-size: 0.9em;
    }

    section > .content > .sluzba .text img {
        width: 40px;
    }

    section > .content > .sluzba .img {
        margin-left: 0;
        margin-bottom: -15vh;
        width: 90%;
    }

    section > .content > .sluzba .img img {
        height: auto;
        width: 100%;
    }

    /* Certifikace */

    section > .content > .certifikace {
        width: 85%;
        margin-right: 0;
        justify-content: center;
        flex-direction: column;
    }

    section > .content > .certifikace .text .nadpis {
        font-size: 1em;
    }

    section > .content > .certifikace .text .desc {
        font-size: 0.9em;
    }

    section > .content > .certifikace .text .date {
        font-size: 0.7em;
    }

    section > .content > .certifikace .icons {
        margin-top: 10px;
    }

    section > .content > .certifikace .icons img, section > .content > .certifikace .icons svg {
        width: 45px;
        margin: 0 10px;
    }

    /* Kontakt */

    section > .content > .kontakt {
        width: 90%;
        margin-right: 0%;
        flex-direction: column;
        margin-bottom: 5px;
    }

    section > .content > .kontakt > div {
        width: 100%;
        height: 120%;
        margin: 20px 0;
        justify-content: center;
        align-items: center !important;
    }

    section > .content > .kontakt > span {
        display: none;
    }

    section > .content > .kontakt > div > p {
        font-size: 16px;
    }

    section > .content > .kontakt > div img {
        height: 22px;
        margin-top: 8px;
    }

    footer > p {
        font-size: 15px;
        padding: 8px 0;
    }

    footer section .content > p {
        width: 90%;
        text-align: center;
        margin-right: 0;
    }


}
