/* GENERAL STYLES V0.5*/
/*  FONTS ---------------------------- */
/* Urbanist */
@font-face {
    font-family: 'Poppins', sans-serif;
    src: url('../fonts/Poppins/Poppins-ExtraLight.ttf') format('truetype');
    font-weight: 200;
    font-style: extralight;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins/Poppins-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: light;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins/Poppins-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Urbanist';
    src: url('../fonts/Poppins/Poppins-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins/Poppins-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins/Poppins-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: bold;
    font-display: swap;
}

@font-face {
    font-family: 'Urbanist';
    src: url('../fonts/Poppins/Poppins-ExtraBold.ttf') format('truetype');
    font-weight: 800;
    font-style: extrabold;
    font-display: swap;
}


@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins/Poppins-Black.ttf') format('truetype');
    font-weight: 900;
    font-style: black;
    font-display: swap;
}

/* ================================================ */
/*  SECTION COLORS */
/* ================================================ */

:root {
   
    --medium-grey: #6D6D6D;
    --graphite: #3A3A3A;
    --red: #E52939;
    --light-red: #FF5061;
    --green: #85b320;
    --light-green: #B8E25C;
    --navy-blue: #090319;;
    --black: #000;
    --white: #fff;
}

/* ================================================ */
/*  SECTION GENERAL STYLES */
/* ================================================ */

html {
    scroll-behavior: smooth;
}


body {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    color: var(--graphite);
    margin: 0;
    overflow-x: hidden;
    overflow-y: auto;
    background: linear-gradient(270deg, #0D0824 0%, #03030E 100%);
}

main {
    min-height: calc(80vh - 120px);
}

section {
    position: relative;
    padding: 30px 0;
}

div,
p,
a,
span,
h1,
h2,
h3,
h4,
h5,
h6 {
    box-sizing: border-box;
}

img {
    height: auto;
    width: auto;
    max-width: 100%;
    object-fit: contain;
}

h1 {
    font-family: "cheddar-gothic-rough", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 2.5rem;
    color: #fff;

}

h2 {
    font-weight: 600;
}

h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
}

h4 {
    font-size: 1.1rem;
    font-weight: 600;
}

h5 {
    font-size: 1rem;
    font-weight: 600;
}

p {
    font-weight: 300;
}

a {
    text-decoration: none;
    color: inherit;
    font-weight: 300;
    transition: 0.3s ease-in-out;
}

a:hover {
    text-decoration: none;
    /* text-shadow: 0 0 3px rgba(255, 255, 255, 0.8); */
}

ul {
    padding-left: 0;
}

li {
    list-style: none;
}

strong {
    font-weight: 600;
}


.hidden {
    display: none; /* this hidesn content also in Gutenberg */
} 

.content-hidden {
    display: none;
}


.uppercase {
    text-transform: uppercase;
}

.text-white {
    color: #fff;
}

.no-padding {
    padding: 0 !important;
}

.no-margin {
    margin: 0 !important;
}

.no-margin-bottom {
    margin-bottom: 0;
}

.button-center {
    margin: 0 auto;
}

.section-title {
    margin-bottom: 60px;
}

/* Margins ---------------------------- */

.margin-top-xxs {
    margin-top: 10px;
}
.margin-top-xs {
    margin-top: 20px;
}

.margin-top-sm {
    margin-top: 40px;
}

.margin-top-md {
    margin-top: 80px;
}

.margin-top-lg {
    margin-top: 120px;
}

.margin-top-xl {
    margin-top: 160px;
}


.margin-bottom-xxs {
    margin-bottom: 10px;
}
.margin-bottom-xs {
    margin-bottom: 20px;
}


.margin-bottom-sm {
    margin-bottom: 40px;
}

.margin-bottom-md {
    margin-bottom: 80px;
}

.margin-bottom-lg {
    margin-bottom: 120px;
}

/* Padding ---------------------------- */
.padding-top-xxs {
    padding-top: 10px;
}
.padding-top-xs {
    padding-top: 20px;
}

.padding-top-sm {
    padding-top: 40px;
}

.padding-top-md {
    padding-top: 80px;
}

.padding-top-lg {
    padding-top: 120px;
}

.padding-top-xl {
    padding-top: 160px;
}

.padding-bottom-xs {
    padding-bottom: 20px;
}

.padding-bottom-xxs {
    padding-bottom: 10px;
}
.padding-bottom-sm {
    padding-bottom: 40px;
}

.padding-bottom-md {
    padding-bottom: 80px;
}

.padding-bottom-lg {
    padding-bottom: 120px;
}

.padding-sides-md {
    padding: 0 5%;
}


/* ================================================ */
/* SECTION NAVIGATION */
/* ================================================ */

.navbar-brand-img {
    max-width: 120px;
}

.navbar-nav {
    padding-inline: 10%;

    & li {
        text-align: center;
        margin-bottom: 1rem;
    }

    & a {
        font-weight: 600;
        transition: 0.3s ease-in-out;

        &:hover {
            color: var(--red);
        }
    }

 }
.offcanvas-header {
    background: #191919;
}
 .offcanvas-body {
    background: linear-gradient(160deg, #191919 0%,var(--navy-blue) 100%);
 }

 .offcanvas-logo {
    display: flex;
    justify-content: center;
    margin-top: 10px;
   

    & img {
        max-width: 120px;
    }
 }

/* ================================================ */
/* SECTION LAYOUT */
/* ================================================ */

.mobile {
    display: none !important;
}

.desktop {
    display: block !important;
}

.container {
    max-width: 1200px;
}

.regular-page {
    & h2 {
        display: inline-block;
        font-size: 1.5rem;
        font-weight: 600;
        color: var(--navy-blue);
        margin-bottom: 10px;
        margin-top: 20px;
    }

    & a {
        text-decoration: underline;
        /* font-weight: 500; */
    }

    & ol {
        padding-left: 2rem;

        &>li {
            list-style-type: unset
        }
    }

    & ul {
        padding-left: 20px;
        margin-bottom: 20px;

        & li {
        
            position: relative;
        }

        & li:before {
            content: "•";
            position: absolute;
            left: -1em;
            font-size: 20px;
            line-height: 1;
        }
    }

    & img {
        margin-top: 15px;
        margin-bottom: 15px;
    }

}





/* ================================================ */
/* SECTION OTHER COMMON ELEMENTS */
/* ================================================ */
.text-center {
    text-align: center;
}
.text-red {
    color: var(--red);
}

.text-green {
    color: var(--green);
}

.section-title {
    font-weight: 700;
    text-transform: uppercase;
}

/* ================================================ */
/* SECTION DEFAULT WORDPRESS STYLES */
/* ================================================ */

/* ================================================ */
/* SECTION TABLES */
/* ================================================ */


/* ================================================ */
/* SECTION BUTTONS */
/* ================================================ */

.cta-row {
    margin-top: 50px;
}

.cta {
    display: flex;
    justify-content: center;
    align-items: center;
    width: fit-content;
    min-width: 200px;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    transition: 0.3s ease-in-out;

    & span {
        z-index: 2;
    }

}

.cta-primary {
    color: #fff;
    background-color: var(--red);
    box-shadow: 0 0 20px 0 rgba(223, 25, 42, 0.8);
    position: relative;
    overflow: hidden;

    &:before {
        content: "";
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(120deg, #85B320 0%, #BEAC50 52.88%, #E52939 100%);
        opacity: 0.8;
        border-radius: 50px;
        z-index: 1;
        transition: 0.2s ease-in-out;
    }

    &:hover {
        box-shadow: 0 0 30px 0 rgba(223, 25, 42, 0.9);
    }

    &:hover:before {
        left: 0;
    }
}


/* =============================== */
/*  SECTION FOOTER
/* =============================== */


footer {
    position: relative;
    min-height: 200px;
    color: #fff;
    padding-top: 4%;
    padding-bottom: 2%;
    /* background: linear-gradient(270deg, #0D0824 0%, #03030E 100%); */

    & p {
        margin-bottom: 0;
    }
}

.footer-title {
    font-family: "cheddar-gothic-rough", sans-serif;
    font-size: 2rem;
    margin-bottom: 20px;
}

.footer-logo {
    max-width: 120px;
    margin: auto;
    margin-bottom: 10px;
}

.organizer-wrapper {
    margin-top: 20px;
    padding-top: 20px;
    position: relative;

    &:before {
        content: "";
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 150px;
        height: 1px;
        background: #fff;
    }
    
}


.pijodpowiedzialnie-wrapper img {
    max-width: 120px;
     margin-bottom: 10px;
 }

/* ================================================ */
/* ================================================ */
/* MEDIA QUERIES */
/* ================================================ */
/* ================================================ */


@media (max-width: 992px) {

}

/* Worddpress breakpoint */
@media (max-width: 781px) {

}
@media (max-width: 768px) {

}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
}