<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    font-size: 17px;
    background: #251710;
    overflow-x: hidden;
    overflow-y: auto;
}

#myVideo {
    object-fit: cover;
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
}

.content {
    position: absolute;
    top: 50%;
    color: #f1f1f1;
    width: 100%;
    /* padding: 20px; */
    transform: translateY(-50%);
    max-width: 96%;
    left: 0;
    right: 0;
    margin: 0 auto;
    height: 100vh;
    display: flex;
    /* flex-direction: row; */
    /* align-items: baseline;
    justify-content: end; */
}

.content__inner {
    min-height: 100vh;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    margin: 20px 4vw;
}

.contact {
    position: absolute;
    right: 0;
    bottom: 14px;
    top: unset;
}

.contact__item {
    display: flex;
    align-items: center;
    width: 245px;
    margin: 0 auto;
}

.contact__item a  {
    color: #fff;
    text-decoration: none;
    font-size: 20px;
}

.contact__item a:hover {
    text-decoration: underline;
}

.contact__item svg {
    max-width: 42px;
    height: auto;
    width: 100%;
    margin-right: 25px;
}

.golden-txt {
    color: #af927f;
    font-weight: 600;
    font-size: 29px;
    margin-top: 15px;
    margin-bottom: 0;
}

h1, h3 {
    font-weight: 600;
}

h1 {
    font-size: 50px;
    margin-bottom: 10px;
    margin-top: 0;
}

.heading-box--mobile {
    display: none;
}

.heading-box {
    padding: 0;
    border: none;
    margin-bottom: 40px;
}

.heading-box h3 {
    color: #ffffff;
    font-size: 22px;
    font-weight: 500;
    margin: 0 0 26px 0;
}

.heading-box .logo {
    width: 340px;
}

.contact--mobile {
    display: none;;
}

.newsletter {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 560px;
    height: 460px;
    flex-direction: column;
    background: #251710;
}

.newsletter__desc {
    margin: 0 40px;
    font-size: 10px;
    color: #ffffff;
}

.newsletter__desc a {
    color: #ffffff;
}

.newsletter iframe {
    background: none !important;
}

.newsletter iframe html {
    overflow: hidden;
}


.arrows {
	width: 60px;
	height: 72px;
	position: fixed;
	left: 50%;
	margin-left: -30px;
	bottom: 40px;
}

.arrows path {
	stroke: #ffffff;
	fill: transparent;
	stroke-width: 1px;	
	animation: arrow 2s infinite;
	-webkit-animation: arrow 2s infinite; 
}

@keyframes arrow
{
0% {opacity:0}
40% {opacity:1}
80% {opacity:0}
100% {opacity:0}
}

@-webkit-keyframes arrow /*Safari and Chrome*/
{
0% {opacity:0}
40% {opacity:1}
80% {opacity:0}
100% {opacity:0}
}

.arrows path.a1 {
	animation-delay:-1s;
	-webkit-animation-delay:-1s; /* Safari å’Œ Chrome */
}

.arrows path.a2 {
	animation-delay:-0.5s;
	-webkit-animation-delay:-0.5s; /* Safari å’Œ Chrome */
}

.arrows path.a3 {
	animation-delay:0s;
	-webkit-animation-delay:0s; /* Safari å’Œ Chrome */
}

@media (max-width: 1000px) {
    .content {
        top: 0;
        transform: translateY(0);
        padding: 20px 20px 60px 20px;
        max-width: 100%;
    }

    .content__inner {
        max-width: 100%;
        width: 100%;
        margin: 0;
    }

    .contact {
        position: static;
        margin-top: 20px;
        margin-bottom: 10px;
    }

    .heading-box {
        width: fit-content;
        margin: 0 auto 100px auto;
    }

    #myVideo {
        width: auto;
        right: -300px;
        left: auto;
    }

    .content__inner {
        justify-content: space-between;
    }

    .contact--mobile {
        display: flex;
        position: fixed;
        bottom: 0;
        width: 100%;
        height: 20px;
        justify-content: center;
        align-items: center;
    }
    .contact--mobile .contact__item {
        margin-bottom: 0;
    }
    .golden-txt {
        margin-top: 10px;
    }
    .heading-box {
        padding: 10px;
    }
    h3 {
        margin-bottom: 15px;
        margin-top: 0;
    }
    .newsletter {
        width: 100%;
        left: 0;
        right: 0;
        bottom: 20px;
        padding: 20px 14px;
    }
}

@media (max-width: 600px) {
    /* body {
        position: relative;
        min-height: 1200px;
    } */

    .golden-txt {
        font-size: 15px;
    }
    h1 {
        font-size: 28px;
        margin-bottom: -5px;
    }
    h3 {
        font-size: 16px;
        margin-bottom: 15px;
        margin-top: 0;
    }
    .content {
        top: 70vh;
        /* padding: 25px 0 0 0; */
        padding: 0;
        height: auto;
    }
    .content__inner {
        min-height: auto;
    }
    .heading-box--desktop {
        display: none;
    }
    .heading-box--mobile {
        position: fixed;
        margin: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }

    .heading-box h3 {
        margin: 8px 0 18px 0;
        font-size: 20px;
        font-weight: 100;
    }

    .heading-box {
        width: 100%;
    }
    .contact__item {
        justify-content: center;
    }
    .contact__item a {
        font-size: 16px;
    }

    .heading-box .logo {
        max-height: 70px;
        object-fit: contain;
    }

    .newsletter {
        /* margin-top: 10vh; */
        padding: 20px 14px 0 14px;
        height: auto;
        user-select: none;
    }

    .newsletter__desc {
        margin: 16px 4px;
    }
    #newsletter iframe {
        height: 465px!important;
    }

    #myVideo {
        height: 60vh;
        top: 160px;
        right: 0;
    }
    .content {
        position: relative;
    }
    .content__bg {
        position: absolute;
        width: 100%;
        height: 100%;
        left: 0;
        top: 0;;
    }
    .heading-box {
        height: 160px;
    }
}

@media only screen and (max-device-width: 900px) 
                   and (orientation: landscape) {
                    #myVideo {
                        right: auto;
                    }
}

#salesmanago-Iframe_Formularz_zapisu_html {
    width: 100%;
}

#layout-error {
    padding: 0;
    margin: 0;
    box-shadow: none;
    background: #251710;
}</pre></body></html>