html, body {

    margin: 0;
    padding: 0;

    width: 100%;
    height: 100%;

    font-size: 15px;
    line-height: 18px;
    font-weight: 400;
    font-family: "Lato", sans-serif;
    color: #362A81;

    background-image: url('/lndpg/images/bg-kurtfrey.webp');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

h1, h2, h3, h4 {

    margin: 0;
    padding: 0;
}

a {

    font-size: 15px;
    line-height: 18px;
    color: #362A81;
    text-decoration: none;
}

p {
    margin: 0;
    padding: 0;
}

img {
    max-width: 100%;
    height: auto;
}

.lnd {

    display: flex;

    flex-direction: column;
    align-items: center;
    justify-content: center;

    width: 100%;
    height: 100svh;


}

.lnd-wrap {

    display: flex;
    flex-direction: column;
    width: 100%;

    align-items: center;
    justify-content: center;

}

.lnd-logo {

    display: flex;
    width: 90%;
    align-items: center;
    justify-content: center;

    margin-bottom: clamp(20px, 5.4vw, 65px);
}

.lnd-content {

    display: flex;
    width: 100%;

    padding-bottom: 35px;

    flex-direction: column;
    align-items: center;
    justify-content: center;

    background-color: rgba(255,255,255,0.85);
}


.lnd-content-head {

    display: block;

    max-width: 955px;
    width: 90%;

    padding: 35px 0;
}

.lnd-content-head h1 {

    display: block;

    margin-bottom: 20px;

    font-size: 18px;
    line-height: 22px;
    font-weight: 700;

    text-align: center;
}

.lnd-content-head p {

    display: block;

    text-align: center;
}

.lnd-content-data {

    display: flex;

    max-width: 955px;
    width: 90%;

    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.lnd-content-data-address {

    display: block;

    max-width: 475px;
    width: 90%;
}

.lnd-content-data-address h3 {

    display: block;

    margin-bottom: 20px;

    font-size: 15px;
    line-height: 18px;
    font-weight: 700;
}

.lnd-content-data-address ul {

    list-style: none;
    margin: 0;
    padding: 0;

    display: flex;
    flex-direction: row;

    align-items: flex-start;
    justify-content: flex-start;
}

.lnd-content-data-address ul li:first-child {

    width: 200px;
}

.lnd-content-data-address ul:last-of-type {

    margin-bottom: 20px;
}

.lnd-content-data-contact {

    display: block;

    max-width: 180px;
    width: 90%;
}

.lnd-content-data-contact ul {

    list-style: none;
    margin: 0;
    padding: 0;

    gap: 20px;

    display: flex;
    flex-direction: column;

    align-items: flex-start;
    justify-content: flex-start;
}

.lnd-content-data-contact ul li {

    position: relative;
    display: flex;

    align-items: flex-start;
    justify-content: flex-start;
}

.lnd-content-data-contact ul li:nth-child(1)::before {

    content: '';
    display: block;
    width: 15px;
    height: 15px;

    padding-top: 5px;
    margin-right: 10px;

    background-image: url('/lndpg/images/ico_location.svg');
    background-repeat: no-repeat;
    background-position: top center;
    background-size: contain;
}

.lnd-content-data-contact ul li:nth-child(2)::before {

    content: '';
    display: block;
    width: 15px;
    height: 18px;

    margin-right: 10px;

    background-image: url('/lndpg/images/ico_mail.svg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
}

.lnd-content-data-contact ul li:nth-child(3)::before {

    content: '';
    display: block;
    width: 15px;
    height: 18px;

    margin-right: 10px;

    background-image: url('/lndpg/images/ico_phone.svg');
    background-repeat: no-repeat;
    background-position: top center;
    background-size: contain;
}


@media screen and (max-width: 1024px) {

    .lnd {

        height: auto;
    }

    .lnd-logo {

        margin-top: 30px;
    }

    .lnd-content-data {

        flex-direction: column;

        align-items: flex-start;

        max-width: 90%;

        gap: 30px;
    }

    .lnd-content-data-address {

        max-width: 90%;
    }

    .lnd-content-data-address ul {

        flex-direction: column;
        margin-bottom: 15px;
    }
}