html,
body {
    width: 100%;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Avenir';
    scroll-behavior: smooth;
}

.material-symbols-outlined {
    font-variation-settings:
        'FILL' 0,
        'wght' 400,
        'GRAD' 0,
        'opsz' 40
}

@font-face {
    font-family: 'Avenir';
    src: url('fonts/avenir/AvenirLTStd-Light.otf');
}

@font-face {
    font-family: 'MADE';
    src: url('fonts/made/MADE-Canvas-Black.otf');
}

h1,
h2,
h3,
h4 {
    font-family: 'MADE';
}

a {
    text-decoration: none;
    color: #fc340f;
}

.thumbnail {
    width: 100%;
    box-sizing: border-box;
    background-color: #050505;
    /* background-image: url('img/river-bg.webp'); */
    display: flex;
    flex-direction: row;
    background-position: center;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-end;
    align-content: flex-end;
    background-size: cover;
    height: 100vh;
    position: relative;
}

.thumbnail h1 {
    color: #ffffff;
    position: absolute;
    font-size: 90px;
    font-family: 'MADE';
    text-transform: uppercase;
    top: calc(70% - 90px);
    font-weight: 600;
    text-align: center;
}

.thumbnail small {
    color: #ffffff;
    position: absolute;
    font-family: 'MADE';
    text-transform: uppercase;
    left: 40px;
    bottom: 70px;
}

#bog-img {
    max-width: 600px;
    max-height: 90vh;
}

#thumbnail-logo {
    position: absolute;
    width: 110px;
}

@media (max-width: 600px) {
    #bog-img {
        max-width: 400px;
    }
}

@media (max-width: 1100px) and (min-height: 1200px) {
    #bog-img {
        max-width: 700px;
    }
}

@media (max-width: 420px) {
    #bog-img {
        max-width: 350px;
    }
}


@media (max-width: 592px) {
    .nav-option {
        font-size: 11px;
    }
}

@media (max-width: 433px) {
    .nav-option {
        font-size: 9px;
    }
}

nav {
    margin: 0;
    position: fixed;
    top: 0;
    z-index: 10;
    width: 100%;
    box-sizing: border-box;
}

.nav-options {
    width: 100%;
    margin: 0;
    flex-direction: row;
    flex-wrap: wrap;
    display: flex;
    font-family: 'MADE';
    text-transform: uppercase;
    justify-content: center;
    align-items: center;
    align-content: center;
    box-sizing: border-box;
    padding-left: 20px;
    padding-right: 20px;
    gap: 10px;
}

@media (max-width: 433px) {
    .nav-options {
        gap: 5px;
    }
}

.nav-option {

    text-decoration: none;
    color: #ffffff;
    font-weight: 700;
    transition: 200ms;
}

.nav-option p {
    margin: 0;
    padding: 0;
    padding-top: 10px;
    padding-bottom: 10px;
}

.nav-option:hover {
    color: #fc340f;
}


.left-top-arrow {
    position: absolute;
    top: 50px;
    left: 20px;
}

.right-top-arrow {
    position: absolute;
    top: 50px;
    right: 20px;
    transform: rotate(90deg);
}

.right-bottom-arrow {
    position: absolute;
    bottom: 50px;
    right: 20px;
    transform: rotate(180deg);
}

.left-bottom-arrow {
    position: absolute;
    bottom: 50px;
    left: 20px;
    transform: rotate(270deg);
}

.section {
    box-sizing: border-box;
    width: 100%;
    padding-top: 150px;
    padding-bottom: 150px;
    padding-left: 80px;
    padding-right: 80px;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    align-content: center;
}


@media (max-width: 744px) {
    .section {
        padding-left: 30px;
        padding-right: 30px;
        padding-top: 100px;
        padding-bottom: 100px;
    }
}

.section.left {
    align-content: flex-start;
    align-items: flex-start;
}

.section h1 {
    text-transform: uppercase;
    width: 100%;
    text-align: center;
}

.section.left p {
    width: 100%;
    max-width: 700px;
    text-align: justify;
}

.section.left h1 {
    text-align: left;
}

.section.right {
    align-content: flex-end;
    align-items: flex-end;
}

.section.right p {
    width: 100%;
    max-width: 700px;
    text-align: justify;
}

.section.right h1 {
    text-align: right;
}

.important {
    text-decoration: 4px underline #fc340f;
    text-decoration-skip-ink: none;
}

.mid-thumbnail {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 60vh;
    position: relative;
}

.mid-thumbnail .img-thumb {
    width: 100%;
    height: 100%;
    z-index: -1;
    object-fit: cover;
    filter: grayscale(100%);
}

.arrows-holder {
    width: 100%;
    position: absolute;
    z-index: 9;
    height: 100%;
}

nav.light {
    color: #fff;
    background-color: #0f0f0f;
}

nav.dark {
    background-color: #ffffff;
    color: #000;
}

nav.light a {
    color: #fff;
}

nav.dark a {
    color: #000;
}

.mid-thumbnail small {
    position: absolute;
    right: 40px;
    color: #ffffff;
    bottom: 70px;
    width: 250px;
    font-family: 'MADE';
    text-transform: uppercase;
    font-size: 20px;
    text-align: right;
}

.dark-break {
    background-color: #0f0f0f;
    height: 100vh;
    box-sizing: border-box;
}

.dark-break h1 {
    color: #ffffff;
    font-size: 90px;
}

@media (max-width: 586px) {
    .dark-break {
        padding-left: 10px;
        padding-right: 10px;
    }
}

.light-break {
    background-color: #ffffff;
    height: 100vh;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    align-content: center;
    box-sizing: border-box;
}

.light-break h1 {
    color: #0f0f0f;
    font-size: 90px;
}

@media (max-width: 586px) {
    .light-break {
        padding-left: 10px;
        padding-right: 10px;
    }
}

.section.no-pad {
    padding: 0;
}

.section.dark {
    background-color: #0f0f0f;
}

#photos {
    line-height: 0;

    -webkit-column-count: 5;
    -webkit-column-gap: 0px;
    -moz-column-count: 5;
    -moz-column-gap: 0px;
    column-count: 5;
    column-gap: 0px;
}

/* #photos img {
   width: 100%;
   height: auto !important;
   box-sizing: border-box;
 }
 
 @media (max-width: 1200px) {
   #photos {
   -moz-column-count:    3;
   -webkit-column-count: 3;
   column-count:         3;
   }
 }
 @media (max-width: 1000px) {
   #photos {
   -moz-column-count:    3;
   -webkit-column-count: 3;
   column-count:         3;
   }
 }
 @media (max-width: 800px) {
   #photos {
   -moz-column-count:    2;
   -webkit-column-count: 2;
   column-count:         2;
   }
 }
 @media (max-width: 400px) {
   #photos {
   -moz-column-count:    1;
   -webkit-column-count: 1;
   column-count:         1;
   }
 } */

#photos {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    /* lub np. 10px jeśli chcesz przerwy */
}

#photos img {
    width: 20%;
    /* 5 w rzędzie */
    height: auto;
    object-fit: cover;
    box-sizing: border-box;
}

@media (max-width: 1200px) {
    #photos img {
        width: 33.33%;
        /* 3 w rzędzie */
    }
}

@media (max-width: 800px) {
    #photos img {
        width: 50%;
        /* 2 w rzędzie */
    }
}

@media (max-width: 400px) {
    #photos img {
        width: 100%;
        /* 1 w rzędzie */
    }
}

.btn-url {
    text-decoration: none;
    font-size: 30px;
    font-family: 'Avenir';
    color: #0f0f0f;
    text-decoration: underline 4px #fc340f;
    z-index: 10;
    transition: 250ms;
}

@media (max-width: 428px) {
    .btn-url {
        font-size: 18px;
    }
}

@media screen {}

.btn-url:hover {
    color: #fc340f;
    text-decoration: underline 4px #0f0f0f;
}

footer {
    box-sizing: border-box;
    width: 100%;
    padding-top: 100px;
    border-top: 0px solid #fc340f;
    padding-bottom: 180px;
    position: relative;
}

#signature {
    position: absolute;
    width: 120px;
    text-align: right;
    right: 30px;
    bottom: 80px;

}


form {
    position: relative;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    align-content: center;
    width: 100%;
    gap: 15px;
    box-sizing: border-box;
}

.loader-holder {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: #fff;
    z-index: 11;
    display: none;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    align-content: center;
}

.spinner {
    width: 56px;
    height: 56px;
    border: 11.2px #fc340f double;
    border-left-style: solid;
    border-radius: 50%;
    animation: spinner-aib1d7 0.75s infinite linear;
}

@keyframes spinner-aib1d7 {
    to {
        transform: rotate(360deg);
    }
}


.input-group {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    align-content: center;
    width: 100%;
    max-width: 700px;
    gap: 5px;
    box-sizing: border-box;
}

.input-two-cols {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    align-content: center;
    width: 100%;
    box-sizing: border-box;
    gap: 15px;
}

.input-two-cols .input-group {
    width: calc(100% - 15px);
    max-width: 344px;
}

label,
input {
    width: 100%;
    max-width: 700px;
    box-sizing: border-box;
}

input {
    border: 0;
    border-bottom: 2px solid #0f0f0f;
    font-family: 'Avenir';
}

textarea {
    box-sizing: border-box;
    width: 100%;
    max-width: 700px;
    height: 300px;
    font-family: 'Avenir';
    border: 2px solid #0f0f0f;
}

input[type="submit"] {
    text-decoration: none;
    font-family: 'Avenir';
    font-size: 25px;
    border: 0;
    background: none;
    color: #0f0f0f;
    text-decoration: underline 4px #fc340f;
    z-index: 10;
    transition: 250ms;
}

input[type="submit"]:hover {
    color: #fc340f;
    cursor: pointer;
    text-decoration: underline 4px #0f0f0f;
}

@media (max-width: 1605px) {
    .input-two-cols {
        flex-direction: column;
    }

    .input-two-cols .input-group {
        max-width: 700px;
        width: 100%;
    }
}


@media (max-width: 560px) {
    .dark-break h1 {
        font-size: 60px;
    }

    .light-break h1 {
        font-size: 60px;
    }
}

@media (max-width: 380px) {
    .dark-break h1 {
        font-size: 30px;
    }

    .light-break h1 {
        font-size: 30px;
    }
}

.loader {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #fc340f;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    margin: 20px auto;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.photo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px;
}

.bottom-bar {
    width: 100%;
    box-sizing: border-box;
    position: fixed;
    z-index: 100;
    bottom: 20px;
    display: none;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    align-content: center;
    gap: 30px;
    transition: 250ms ease-in;
}

.bottom-bar.show {
    display: flex;
    transition: 250ms ease-in;
}

.bottom-bar button {
    background-color: #fc340f;
    padding: 10px;
    border-radius: 20px;
    width: 40px;
    height: 40px;
    border: 0;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    align-content: center;
    color: #ffffff;
    cursor: pointer;
    transition: 250ms;
}

.bottom-bar button:hover {
    background-color: #fc340f70;
}

.bottom-bar a {
    color: #ffffff;
    text-decoration: none;
}

#category {
    width: 200px;
    font-size: 17px;
    font-family: 'Avenir';
    border: 0;
    border-bottom: 2px #fc340f solid;
}

#img-modal-container {
    width: 100%;
    margin: 0;
    box-sizing: border-box;
    padding: 0;
    height: 100%;
    background-color: #05050560;
    z-index: 9000;
    position: fixed;
    display: none;
    top: 0;
    left: 0;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    align-content: center;
}

#img-modal {
    width: 80%;
    height: 90%;
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    align-content: center;
}

#img-modal .img {
    width: 65%;
    height: 100%;
    box-sizing: border-box;
    position: relative;
}

#img-modal .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#img-modal .img-content {
    width: 35%;
    height: 100%;
    position: relative;
    box-sizing: border-box;
    background-color: #ffffff;
    padding: 20px;
}

#img-modal .img-content button {
    position: absolute;
    right: 10px;
    top: 10px;
    background-color: #ffffff;
    border: 0;
    color: #fc340f;
    transition: 250ms;
    cursor: pointer;
}

#img-modal .img-content button:hover {
    color: #fc340f90;
}

@media (max-width: 1200px) {
    #img-modal {
        flex-direction: column;
    }

    #img-modal .img {
        width: 100%;
        height: 70%;
    }

    #img-modal .img-content {
        height: 30%;
        width: 100%;
        padding: 5px;
        font-size: 13px;
    }

    #img-modal .img-content button {
        top: 10px;
        right: 5px;
    }
}

.two-cols {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    align-content: center;
    gap: 20px;
}

.col {
    width: calc(50% - 20px);
    text-align: left;
    box-sizing: border-box;
}

.col h1 {
    text-align: left;
}

@media (max-width: 1125px) {
    .two-cols {
        flex-direction: column;
    }

    .col {
        width: 100%;
    }
}


footer {
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    padding-left: 30px;
    padding-right: 30px;
    justify-content: space-around;
    align-items: flex-start;
    align-content: center;
}

footer .col {
    width: calc(50% - 80px);
    max-width: 400px;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    align-content: center;
}

footer img {
    width: 100px;
}

@media (max-width: 988px) {
    footer {
        flex-direction: column-reverse;
        gap: 30px;
        /* align-content: flex-start; */
    }

    footer .col {
        width: 100%;
        max-width: none;
    }

    footer .col p {
        width: 100%;
    }
}

.grecaptcha-badge { 
    visibility: hidden;
}