* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background-color: #F5F9FC;
}

h1 {
    color: #CC0935;
    font-family: "Outfit", sans-serif;
}

h2 {
    color: #CC0935;
    font-family: "Outfit", sans-serif;
}

p {
    font-size: 19px;
    font-family: "Montserrat", sans-serif;
}

header {
    width: 80%;
    background: #0D234C;
    display: flex;
    justify-content: space-between;
    justify-self: center;
    align-items: center;
    padding: 18px 40px;
    position: sticky;
    top: 15px;
    z-index: 999;
    border-radius: 25px;
}
.logo img {
    height: 65px;
    text-decoration: none;
}
nav {
    display: flex;
    align-items: center;
}
nav a {
    color: #F5F9FC;
    text-decoration: none;
    font-size: 20px;
    position: relative;
    transition: 0.3s;
    font-family: "Outfit", sans-serif;
}
nav a:hover {
    color: #F5F9FC;
}
nav a::after {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background: #F5F9FC;
    transition: width 0.3s;
}
nav a:hover::after {
    width: 100%;
}
.dropdown {
    display: flex;
    position: relative;
    gap: 25px;
}
.dropdown:hover {
    display: flex;
}
@keyframes dropdownFade {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.menu_tooggle {
    display: none;
}
.menu_button {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 25px;
    height: 18px;
    cursor: pointer;
}
.menu_button span {
    height: 3px;
    width: 100%;
    background: #F5F9FC;
    border-radius: 3px;
    transition: 0.5s;
}
@media (max-width: 1100px) {
    nav {
        position: absolute;
        top: 105px;
        background: #0D234C;
        width: 30%;
        flex-direction: column;
        align-items: center;
        gap: 15px;
        padding: 25px 0;
        display: none;
        border-radius: 20px;
        left: 70%;
    }
    .menu_tooggle:checked ~ nav {
        display: flex;
    }
    .menu_button {
        display: flex;
    }
    .dropdown {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    .menu_tooggle:checked + .menu_button span:nth-child(1) {
        transform: rotate(-25deg);
    }
}
section {
    width: 100%;
    height: 90%;
    display: flex;
    justify-content: space-around;
}
section .content {
    width: 120%;
}
section .content h1 {
    font-size: 4.5rem;
    margin: 7rem 2rem 0 5rem;
    font-weight: 800;
}
section .content .text_box {
    position: absolute;
    width: 55%;
    top: 320px;
    left: 10px;
    opacity: 0;
    transition: 0.4s ease-in-out;
    pointer-events: none;
}
section .content .text_box.prirodni {
    opacity: 1;
    transform: rotate(0deg);
    pointer-events: auto;
}
section .content .text_box p {
    font-size: 1.2rem;
    margin: 1rem 2rem 0 5rem;
}
.buttony {
    position: relative;
    margin: 150px 0 0 80px;
    z-index: 20;
}
.btn_box {
    display: none;
    font-size: 1.2rem;
    width: 120px;
    height: 50px;
    background-color: #CC0935;
    border-radius: 10px;
    color: #F5F9FC;
    font-weight: 700;
    font-family: "Montserrat", sans-serif;
    text-decoration: none;
    text-align: center;
    align-content: center;
    border: none;
    transition: transform 0.3s ease, font-size 0.3s ease;
    transform-origin: center;
}
.btn_box.prirodni {
    display: inline-block;
}
.btn_box:hover {
   transform: scale(1.08);
}
section .image {
    width: 100%;
    position: relative;
}
section .image .img_box {
    position: absolute;
    background-color: #0D234C;
    width: 900px;
    height: 900px;
    right: -370px;
    bottom: -370px;
    border-radius: 100%;
    pointer-events: none;
    transition: 0.3s ease-in;
    opacity: 1;
    transform: rotate(0deg);
}
section .image .img_box img {
    width: 300px;
    height: auto;
    margin: 0;
}
section .image .img_box.prirodni {
    opacity: 1;
    transform: rotate(0deg);
    filter: drop-shadow(2px 2px 50px #0D234C);
    z-index: 20;
}
section .image .img_box.prirodni img {
    height: 520px;
    transform: rotate(-20deg);
    margin: -50px 0 0 150px;
    filter: drop-shadow(2px 2px 50px #0D234C);
}
section .image .img_box.ochucene img {
    height: 520px;
    transform: rotate(-20deg);
    margin: -50px 0 0 150px;
    filter: drop-shadow(2px 2px 50px #0D234C);
}
section .image .img_box.ochucene {
    opacity: 1;
    background-color: #0D234C;
    transform: rotate(-90deg);
    filter: drop-shadow(2px 2px 50px #0D234C);
}
section .image .img_box.esence {
    opacity: 1;
    background: #0D234C;
    transform: rotate(-90deg);
    filter: drop-shadow(2px 2px 50px #0D234C);
}
section .image .img_box.esence img {
    height: 520px;
    margin: -50px 0 0 150px;
    transform: rotate(-20deg);
    filter: drop-shadow(2px 2px 50px #0D234C);
}

.img-links {
    width: 20%;
    height: 10vh;
    position: absolute;
    bottom: 20px;
    margin: 0 40%;
    display: flex;
    justify-content: space-between;
    z-index: 50;
}
.img-links a {
    width: 100%;
    height: 100%;
    margin: 0 20px;
    cursor: pointer;
    transition: 0.2s linear;
}
.img-links a img {
    width: 50px;
    height: 90px;
}
.img-links a:hover {
    margin-top: -20px;
    filter: drop-shadow(2px 2px 10px #0D234C);
}
.img-links a:nth-child(2) {
    margin: 0 0 0 -20px;
}
.img-links a:nth-child(2):hover {
    margin-top: -20px;
    filter: drop-shadow(2px 2px 10px #0D234C);
}
.img-links a:nth-child(3) {
    margin: -2px 0 0 0;
}
.img-links a:nth-child(3):hover {
    margin-top:  -22px;
    filter: drop-shadow(2px 2px 10px #0D234C);
}
.img-links a:nth-child(3) img {
    height: 90px;
}

.footer {
    width: 95%;
    background-color:#6a0019;
    padding: 40px 30px 20px 30px;
    margin: auto;
    border: none;
    border-radius: 30px;
}

.footer-horni {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
    margin: 0 0 30px 0;
}

.footer-sloupec {
    width: 20%;
    min-width: 180px;
}

.footer-sloupec h3 {
    color:#CC0935;
    font-size: 160%;
    font-weight:bold;
    margin: 0 0 15px 0;
}

.footer-sloupec ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-sloupec ul li {
    color: white;
    font-size: 16px;
    line-height: 28px;
    margin: 0 0 5px 0;
}

.footer-sloupec ul li a {
    color: white;
    text-decoration: none;
}

.footer-sloupec ul li a:hover {
    color:#CC0935;
}

.footer-spodni {
    width: 100%;
    border-top: 1px solid #ffffff;
    padding: 20px 0 0 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 15px;
}

.footer-copy {
    color: white;
    font-size: 14px;
}

.footer-pravni {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-pravni a {
    color: white;
    font-size: 14px;
    text-decoration: none;
}

.footer-pravni a:hover {
    color:#CC0935;
}