/* Fonty */
@font-face {
	font-family: "Montserrat";
	src: url("/fonts/montserrat.ttf");
}
@font-face {
	font-family: "Anton";
	src: url("/fonts/anton.ttf");
}
@font-face {
	font-family: "Century Gothic";
	src: url("/fonts/century-gothic.ttf");
}
.font-anton {
    font-family: "Anton";
}

/* Dokument */
html {
	scroll-behavior: smooth;
}
body {
    max-width: 1800px;
    width: 100%;
    margin: auto;
    font-family: "Montserrat";
    font-size: 18px;
    cursor: default;
    overflow-x: hidden;
}
body > * {
    /* width: 1200px; */
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}
.content {
    width: 1200px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    /* background-color: rgba(0, 0, 0, 0.09); */
}

/* Ogólne */
a.undecorated-link {
    text-decoration: none;
    color: inherit;
}
a.hover-link:hover {
    text-decoration: underline;
}
.width-initial {
    width: initial;
}
.background-color-lightblue {
    background-color: #37abc8;
}
.background-color-darkblue {
    background-color: #17223d;
}
.text-darkblue {
    color: #17223d !important;
}
.text-lightblue {
    color: #37abc8 !important;
}

/* Banner */


/* Sekcja główna */
.splide__arrows, .splide__pagination {
    display: none !important;
}
.splide__list {
    height: initial !important;
}

/* Menu */
nav {
    margin-top: -30px;
}
.menu-button {
    width: 130px;
}
#social-icons {
    position: relative;
    left: 85px;
}
.menu-email {
    position: relative;
    left: 300px;
    top: 35px;
}
@media screen and (max-width: 1201px) {
    #social-icons {
        left: 5vw;
    }
    .menu-email {
        left: 20vw;
    }
}
@media screen and (max-width: 1050px) {
    #social-icons {
        left: 0;
    }
    .menu-email {
        left: 15vw;
    }
}

/* Stopka */
footer .content {
    font-size: 26px;
}
#kurp {
    font-size: 20px;
}
#kurp .col-7 > div:first-child {
    font-size: 30px;
}
#copyright {
    font-family: "Century Gothic";
}

/* Alerty */
.alert {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    font-size: 1.5em;
    z-index: 3;
}
.alert .close {
    font-size: 1.5em;
}