@font-face {
    font-family: estro;
    src: url('./assets/Estro\ Font\ Regular.otf');
}
@font-face {
    font-family: arialnarrow;
    src: url('./assets/arialnarrow.ttf');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: arialnarrow;
    src: url('./assets/arialnarrow_bold.ttf');
    font-weight: bold;
    font-style: normal;
}
@font-face {
    font-family: arialnarrow;
    src: url('./assets/arialnarrow_italic.ttf');
    font-weight: normal;
    font-style: italic;
}
@font-face {
    font-family: arialnarrow;
    src: url('./assets/arialnarrow_bolditalic.ttf');
    font-weight: bold;
    font-style: italic;
}
body {
    margin: 0;
    padding: 0;
    padding-top: 12.65vw;
    font-family: arialnarrow, "Open Sans", sans-serif;
    background: url('./assets/tlo.jpg');
    background-position: 0;
    background-size: 100vw ;
    background-attachment: fixed;
    overflow-x: hidden;
    @media (orientation: portrait) {
        padding-top: 22.624vw;
    } 
}
a, .btn {
    color: black;
    text-decoration: none;
}
a:hover, .btn:hover {
    text-decoration: underline;
    cursor: pointer;
}
h1, h2, h3 {
    font-family: estro;
}
h1 {
    font-size: 3vw;
    margin: 0;
    margin-top: 1vw;
    @media (orientation: portrait) {
        font-size: 6vw;
        margin-top: 2vw;
    } 
}
h2 {
    font-size: 2vw;
}
.btn {
    font-family: estro;
}
.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    z-index: 100;
}
.footer {
    width: 100vw;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 5vw 0;
    img {
        width: 15vw;
        @media (orientation: portrait) {
            width: 40vw;
        } 
    }
}

.page {
    overflow-x: hidden;
    width: 100vw;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.page-wrapper {
    padding-top: 2vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 1;
    overflow-x: hidden;
    width: 100vw;
}


.video {
    aspect-ratio: 16 / 9;
    height: max-content;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url(./assets/tasma.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    padding: 3% 10%;
    iframe, img {
        width: 100%;
        height: auto;
        aspect-ratio: 16/9;
    }
    img {
        object-fit: cover;
        object-position: 0% 78%;
        border-radius: .5vw;
    }
}

.card {
    background-image: url('./assets/Kartka.jpg');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
    padding: 4% 8%;
    width: calc(100% - 16%);
    position: relative;
}

@media (orientation: portrait) {
    
    
} 