.body {
    width: 100%;
    min-height: 100vh;
    background-color: var(--public-background);

    font-family: "Montserrat", serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    font-size: 1.0rem;
    line-height: 1.4rem;
    color: var(--public-dark-brown);

    overflow-y: auto;
}

.accent-font {
    font-family: "Fredoka", serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
    font-variation-settings:
        "wdth" 100;
}

.icon {
    display: block;
    width: 30px;
    height: 30px;
    background-color: var(--public-dark-brown);
    mask-position: center;
    mask-repeat: no-repeat;
    mask-size: contain;
    -webkit-mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: contain;
}

.icon--menu {
    mask-image: url(/page/img/feather-icons/menu.svg);
    -webkit-mask-image: url(/page/img/feather-icons/menu.svg);
}

.icon--phone {
    mask-image: url(/page/img/feather-icons/phone.svg);
    -webkit-mask-image: url(/page/img/feather-icons/phone.svg);
}

.icon--clock {
    mask-image: url(/page/img/feather-icons/clock.svg);
    -webkit-mask-image: url(/page/img/feather-icons/clock.svg);
}

.icon--home {
    mask-image: url(/page/img/feather-icons/home.svg);
    -webkit-mask-image: url(/page/img/feather-icons/home.svg);
}

.icon--facebook {
    mask-image: url(/page/img/feather-icons/facebook.svg);
    -webkit-mask-image: url(/page/img/feather-icons/facebook.svg);
}

.icon--instagram {
    mask-image: url(/page/img/feather-icons/instagram.svg);
    -webkit-mask-image: url(/page/img/feather-icons/instagram.svg);
}

.button {
    padding-inline: 20px;
    padding-top: 10px;
    padding-bottom: 10px;
    border-radius: 8px;
    text-align: center;
}

.button--accent {
    background-color: var(--public-green);
    color: white;
    font-weight: 600;
    transition: background-color 0.3s ease;
    -webkit-transition: background-color 0.3s ease;
}

.button--accent:hover {
    cursor: pointer;
    background-color: var(--public-green-hover);
}

.button--soft {
    background-color: var(--public-green-soft);
    color: var(--main-secondary);
    font-weight: 600;
    transition: background-color 0.3s ease;
    -webkit-transition: background-color 0.3s ease;
}

.button--soft:hover {
    cursor: pointer;
    background-color: var(--public-green-soft-hover);
}

.nav {
    position: sticky;
    top: 0;
    padding-inline: 30px;
    padding-top: 10px;
    padding-bottom: 10px;
    z-index: 10;
}

@media (min-width: 1024px) {
    .nav {
        display: grid;
        align-items: center;
        justify-items: center;
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1023px) {
    .nav {
        display: flex;
        flex-direction: row-reverse;
        align-items: center;
        justify-content: space-between;
        gap: 30px;
    }
}

.nav__opts {
    justify-self: start;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.nav__opts__mobile-btn {
    align-self: flex-end;
    transition: background-color 0.3s ease;
    -webkit-transition: background-color 0.3s ease;
}

.nav__opts__mobile-btn:hover {
    cursor: pointer;
    background-color: var(--public-green);
    z-index: 2;
    position: relative;
}

.nav__opts__list {
    display: flex;   
    max-width: 1024px;
}

.nav__opts__list__el__link {
    color: var(--public-dark-brown);
}

@media (min-width: 1024px) {
    .nav__opts__list {
        width: 100%;
        flex-direction: row;
        align-items: center; 
        gap: 30px;
    }

    .nav__opts__list__el__link {
        transition: color 0.3s ease;
        -webkit-transition: color 0.3s ease;
    }
    
    .nav__opts__list__el__link:hover {
        color: var(--public-green)
    }
}

@media (max-width: 1023px) {
    .nav__opts__list {
        z-index: 1;
        position: absolute;
        left: 0px;
        top: 70px;
        right: 0px;
        width: 100%;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        max-height: 0px;
        opacity: 0;
        transition: max-height 0.7s ease, opacity 0.5s ease 0.2s;
        -webkit-transition: max-height 0.7s ease, opacity 0.5s ease 0.2s;
        overflow-y: hidden;
    }

    .nav__opts__list--open {
        max-height: calc(100vh - 50px);
        opacity: 1;
        transition: max-height 0.7s ease, opacity 0.5s ease;
        -webkit-transition: max-height 0.7s ease, opacity 0.5s ease;
    }

    .nav__opts__list__el {
        padding-top: 15px;
        padding-bottom: 15px;
        transition: background-color 0.3s ease;
        -webkit-transition: background-color 0.3s ease;
        background-color: var(--public-green-soft);
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding-inline: 30px;
    }

    .nav__opts__list__el:first-child {
        padding-top: 30px;
    }

    .nav__opts__list__el:last-child {
        padding-bottom: 30px;
    }

    .nav__opts__list__el:hover {
        cursor: pointer;
        background-color: var(--public-green-soft-hover);
    }
}

.nav__logo {
    height: 50px;
}

.nav__icons {
    justify-self: end;
}

.header {
    position: sticky;
    top: 0;
    width: 100%;
    padding-inline: 30px;
    padding-top: 10px;
    padding-bottom: 10px;
    background-color: var(--main);
    z-index: 9;
    color: white;
    font-weight: 700;
    font-size: 0.8rem;
}

.header__list {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
    flex-wrap: wrap;
    gap: 10px;
}

.header__list__element {
    display: flex;
    flex-direction: row;
    padding-inline: 10px;
}
@media (min-width: 1024px) {
    .header__list__element {
        align-items: center;
    }
}

@media (max-width: 1023px) {
    .header__list__element {
        align-items: flex-start;
    }
}

.header__list__element__icon {
    background-color: white;
    margin-right: 10px;
    width: 20px;
    height: 20px;
}

.header__list__element__link:hover {
    cursor: pointer;
    text-decoration: underline;
}

.footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: var(--public-background);
    color: var(--public-brown);
    padding-inline: 30px;
    padding-top: 30px;
    padding-bottom: 50px;
    font-size: 0.8rem;
}

.footer__legal-list {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
    gap: 5px;
    width: 80%;
    max-width: 1024px;
    color: var(--public-dark-brown);
}

.footer__legal-list__element__link,
.footer__lucerna-software {
    transition: color 0.3s ease;
    -webkit-transition: color 0.3s ease;
}

.footer__legal-list__element__link:hover,
.footer__lucerna-software:hover {
    color: var(--main)
}

.footer__socials-list {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding-top: 20px;
}

.footer__socials-list__element__icon {
    background-color: var(--main);
    transition: background-color 0.3s ease;
    -webkit-transition: background-color 0.3s ease;
}

.footer__socials-list__element__icon:hover {
    cursor: pointer;
    background-color: var(--main-hover);
}

.footer__credits-list {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    justify-content: space-evenly;
    flex-wrap: wrap;
}

.footer__credits-list__element {
    width: 130px;
    height: 100px;
    padding: 15px;
}

.footer__credits-list__element__img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    object-position: center;
}

@media (max-width: 1023px) {
    .header__list__element__link {
        text-decoration: underline;
    }
}

.ls-custom-window__nav__close-btn__icon {
    background-color: var(--public-dark-brown);
    transition: background-color 0.3s ease;
    -webkit-transition: background-color 0.3s ease;
}

.ls-custom-window__nav__close-btn__icon:hover {
    cursor: pointer;
    background-color: var(--public-green);
}

.ls-icon-close {
    mask-image: url(/page/img/feather-icons/x.svg);
    -webkit-mask-image: url(/page/img/feather-icons/x.svg);
}





@media (min-width: 1024px) {
    .only-mobile {
        display: none;
    }
}

@media (max-width: 1023px) {
    .only-desktop {
        display: none;
    }
}