@font-face{font-family: 'Myriad';
    src: url('../fonts/MYRIADPRO-REGULAR.OTF') format("opentype");
    font-weight: normal; font-style: normal;
}
@font-face{font-family: 'Myriad';
    src: url('../fonts/MYRIADPRO-SEMIBOLD.OTF') format("opentype");
    font-weight: bold; font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html,
body {
    width: 100%;
    min-height: 100%;
    background: #fff;
    color: #333;
    font-family: 'Myriad', Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 1.25;
}
html {
    overflow-y: scroll;
}
a {
    color: inherit;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}
img {
    max-width: 100%;
    border: 0;
    display: block;
}
.col img {
    max-width: 100%;
    height: auto;
}
img.title-img{width: 380px}
@media (max-width: 600px) {
    .col img {
        width: 100%;
        height: auto;
    }
}
.page {
    width: 1010px;
    max-width: 100%;
    margin: 0 auto;
    min-height: 100vh;
    position: relative;
    padding-bottom: 34px;
}
.top-banner {
    height: 85px;
    background: #333 url("../images/top_banner.jpg") left top/cover no-repeat;
}
.main-nav {
    height: 36px;
    background: #666;
    display: flex;
    align-items: center;
    justify-content: space-around;
    color: #fff;
    font-weight: 500;
    font-size: 16px;
}
.main-nav a {
    /*padding: 8px 18px;*/
    white-space: nowrap;
}
.lang {
    display: flex;
    gap: 10px;
}
.hero-title {
    text-align: center;
    font-size: 25px;
    font-weight: normal;
    margin: 32px 0 22px;
}
.notice {
    width: 811px;
    max-width: calc(100% - 40px);
    margin: 0 auto 28px;
    padding: 13px 20px 15px;
    background: #5bbfa8;
    text-align: center;
    font-size: 23px;
    line-height: 1.25;
}
.notice2 {
    /*margin: 0 auto 28px;*/
    padding: 13px 20px 15px;
    background: #5bbfa8;
    text-align: center;
    font-size: 30px;
    line-height: 1.25;
}
.notice strong {
    display: block;
    font-size: 23px;
    text-transform: uppercase;
}
.columns {
    display: grid;
    grid-template-columns: 316px 316px 316px;
    gap: 36px;
}
.col h2,
.full-width h2, h1.full-width {
    text-align: center;
    font-size: 30px;
    line-height: 1.1;
    margin: 0 0 19px;
    font-weight: bold;
}
.full-width h2, h1.full-width{text-align: left}
.full-width h2{font-size: 26px}
h1.full-width{margin-top: 20px}
.col h3,
.full-width h3 {
    font-size: 30px;
    line-height: 1.1;
    margin: 24px 0 14px;
    font-weight: bold;
}

.col p,
.full-width p {
    margin: 0 0 13px;
}

.col ul,
.full-width ul {
    list-style: none;
    margin: 0 0 16px 0;
}

.col li,
.full-width li {
    position: relative;
    padding: 3px 0 3px 13px;
}

.col li:before,
.full-width li:before {
    content: "•";
    position: absolute;
    left: 0;
    top: 1px;
}
.col a,
.full-width a,
.col p,
.full-width p {
    overflow-wrap: anywhere;
}
.full-width {
    width: 100%;
}
.map {
    margin-bottom: 12px;
}
.address {
    font-weight: bold;
}
.col a,
.full-width a {
    color: #0066cc;
    text-decoration: underline;
    transition: color 0.2s ease;
}

.col a:hover,
.full-width a:hover {
    color: #004a99;
    text-decoration: none;
}
.footer {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 2px;
    background: #e9e9e9;
    color: #777;
    text-align: center;
    font-size: 16px;
    padding: 6px 10px;
}
@media (max-width: 1010px) {
    .page {
        padding-left: 12px;
        padding-right: 12px;
    }
    .top-banner {
        margin-left: -12px;
        margin-right: -12px;
    }
    .main-nav {
        margin-left: -12px;
        margin-right: -12px;
    }
    a#kontakty{padding-right: 20px}
    /*.columns {
        grid-template-columns: 1fr;
        gap: 25px;
        max-width: 650px;
        margin: 0 auto;
    }*/
    .notice,
    .columns {
        width: calc(100% - 40px);
        max-width: none;
        margin-left: auto;
        margin-right: auto;
    }

    .columns {
        display: block;
    }
    .col h2 {
        text-align: left;
    }
    .map {
        width: 100%;
        max-width: 316px;
    }
    .notice {
        max-width: 100%;
    }

}
@media (max-width: 600px) {
    .top-banner {
        height: 70px;
        background-size: auto 70px;
        background-position: left top;
    }
    .main-nav {
        height: auto;
        flex-wrap: wrap;
        column-gap: 20px;
        row-gap: 10px;
        justify-content: center;
        padding: 5px 0;
    }
    a#kontakty{padding-right: 0}
    .hero-title {
        font-size: 22px;
    }
    .notice,
    .notice strong {
        font-size: 19px;
    }
    .col h2,
    .col h3 {
        font-size: 26px;
    }

    .notice,
    .columns {
        width: calc(100% - 20px);
    }
    .col{margin-bottom: 30px}
}

.fs18{font-size: 18px}
.fs20{font-size: 20px}
.mt20{margin-top: 20px !important;}
.mt30{margin-top: 30px !important;}

.map-frame {
    width: 316px;
    margin-bottom: 12px;
    overflow: hidden;
}

.map-frame iframe {
    display: block;
    width: 100%;
    height: 220px;
    border: 0;
}
@media (max-width: 1010px) {
    .map-frame {
        width: 100%;
        max-width: 500px;
    }
}

.video-container {
    position: relative;
    max-width: 100%;
    width: 530px;
    margin: 20px 0;
    overflow: hidden;
}

.video-container::before {
    content: "";
    display: block;
    padding-top: 56.25%; /* 16:9 */
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}