@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


:root{
    --intense_black: #0A0A0A;
    --grey_black: #2e2c2d;
    --dark_grey: #241F20;
    --weak_dark_grey: #3a3737;
    --light_dark: #141112;
    --white: #ffffff;
    --padding10: 10px;
    --lightgrey: #F2F2F2;
    --lightPurple: #D1C7FE;
    --lightred: #FA6F71;
    --lightgreen: #7CB777;
    --lightblue: #57D0E6;
    --orange: #ffa500;
    --greyText: #aaaaaa;
    --blackRose: #0E100F;
    --lightGreenBackground: #F4F4F4;
    --googleBlue: #005eff;
    --elegantSharpFont: 'Oswald';
    --simplePleasentFont: 'Open Sans';
    --cinematicFont: 'Monoton';
    --mainScreenSharpFont: 'Playfair Display';
    --chillSimpleFont: 'Comfortaa';
    --roboto: 'roboto';
    --poopins: 'Poppins';


}



/* LOADER */

.preloader{
    width: 100%;
    height: 100vh;
    position: fixed;
    z-index: 10000;
    background: white;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    opacity: 1;
    transition: .7s;
}

.figuresContainer{
    width: auto;
    height: auto;
}

.loaderTitleContainer{
    width: auto;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loaderTitle{
    position: relative;
    width: 100%;
    height: auto;
    font-size: 50px;
    font-family: var(--mainScreenSharpFont);
    color: #2F3545;
    
}

.loaderTitle::after{
    content: "";
    position: absolute;
    bottom: -5px; /* Odległość od tekstu */
    left: 0;
    width: 80px; /* Długość kreski */
    height: 2px; /* Grubość kreski */
    background-color: #000000; /* Kolor kreski */
    
}

/* END OF LOADER SECTION */







html, body{
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
    font-size: 16px;
}



.c-scrollbar_thumb {

    opacity: 1 !important;
    background: var(--grey_black) !important;
    border-radius: 10px !important;
    width: 8px !important;
}



.callMeBox{
    display: flex;
    position: fixed;
    bottom: 3%;
    right: 2%;
    background-color: black;
    width: auto;
    height: auto;
    padding: 15px;
    border-radius: 20px 20px 20px 8px;
    align-items: center;
    justify-content: center;
    z-index: 9910;
    transition: 150ms;
    border: 1px solid white;
}

.callMeBox:hover{
    background-color: var(--blackRose);
    
}
.callIcon i{
    font-size: 25px;
}

.callTextContainer{
    display: flex;
    flex-direction: column;
    margin-left: 15px;

}

.callMeText{
    display: flex;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-family: var(--simplePleasentFont);
}

.numberText{
    color: white;
    font-family: var(--simplePleasentFont);
}

.websiteContent{
    width: 100%;
    height: 100%;
    background-color: var(--white);
    z-index: 100;
    box-shadow: 0 50px 50px rgba(0, 0, 0, 0.3); /* Delikatny cień dla efektu */
    box-sizing: border-box;
}

.taskBar {
    box-sizing: border-box;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 75px;
    padding: 30px;
    border-bottom: 1px solid var(--lightgrey);
}

@media (max-width: 1100px) {
    .taskBar{
        background-color: var(--blackRose);
        position: fixed;
        top: 0;
        left: 0;
        height: 75px;
        z-index: 1000;
        border-bottom: none;
    }
    
}

.taskBar.scrolled {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: white;
    box-shadow: 0px 0px 8px lightgray;

}


@media (max-width: 1100px) {
    .taskBar.scrolled {
        background-color: var(--blackRose);
        box-shadow: none;
        border-bottom: none;
    }
}







.taskBarContentContainer {
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    border-radius: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-color: 1px solid blue;
}


.navigationBar {
    padding-left: 12px;
    padding-right: 12px;
    border-radius: 24px;
    width: fit-content;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-color: 1px solid blue;

}



.nav-link {
    margin-right: 25px;
    font-family: var(--simplePleasentFont);
    font-size: 20px;
    display: flex;
    color: var(--dark_grey);
    text-decoration: none;
    transition: 200ms;
    box-sizing: border-box;
    flex-wrap: nowrap;
    position: relative;
}

.nav-link i{
    font-size: 15px;
    color: var(--dark_grey);
    margin-left: 8px;
}


.nav-link::after{
    content: '';
    position: absolute;
    bottom: -12.5px;
    left: 50%;
    width: 0px;
    height: 0px;
    background-color: rgb(0, 0, 0);
    border-radius: 50%;
    transition: 300ms ease-out;
    
}

.nav-link.active::after {
    width: 0.3em;
    height: 0.3em;
}

.sessionsContainer {
    display: none;
    position: absolute;
    top: 110%;
    left: 0;
    background-color: white;
    border: 1px solid lightgray;
    box-shadow: 0px 0px 8px lightgray;
    z-index: 10;
    width: 200px; /* Dostosuj do potrzeb */
    transition: 200ms;
    opacity: 0;
    visibility: hidden;
    border-radius: 12px;
    overflow: hidden;
}

.sessionsContainer div {
    padding: 12px;
    white-space: nowrap;
}

.sessionsContainer div a{
    font-family: var(--roboto);
    font-size: 15px;
    color: black;
    text-decoration: none;
    font-weight: 400;
}

.sessionsContainer div:hover{
    background-color: var(--lightgrey);

}

.nav-link:hover {
    background-color: var(--lightgrey);
    border-radius: 7px;
    padding: 10px;
}








.hamburgerMenuIconContainer{
    width: fit-content;
    height: 75px;
    display: none;
    align-items: center;
    justify-content: flex-end;
    position: fixed;
    z-index: 100000000;
    top: 0;
    right: 0;
}



.menu {
    transform: scale(0.35);
    background-color: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    padding: 0;
  }
  .line {
    fill: none;
    stroke: rgb(255, 255, 255);
    stroke-width: 5;
    transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1),
      stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
  }
  .line.openedSidebar{
    stroke: black;
  }
  .line1 {
    stroke-dasharray: 60 207;
    stroke-width: 5;
  }
  .line2 {
    stroke-dasharray: 60 60;
    stroke-width: 5;
  }
  .line3 {
    stroke-dasharray: 60 207;
    stroke-width: 5;
  }
  .opened .line1 {
    stroke-dasharray: 90 207;
    stroke-dashoffset: -134;
    stroke-width: 5;
  }
  .opened .line2 {
    stroke-dasharray: 1 60;
    stroke-dashoffset: -30;
    stroke-width: 5;
  }
  .opened .line3 {
    stroke-dasharray: 90 207;
    stroke-dashoffset: -134;
    stroke-width: 5;
  }



.sideBarContainer {
    position: fixed;
    top: 75px;
    right: 0; 
    left: 0;
    width: 100%;
    height: fit-content;
    background-color: var(--blackRose);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 99999999;
    padding-top: 15px;
}



.sideBarContainer.open {
    display: flex;
}


.navigationSideBar {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 5px;
    align-items: center;
} 


.sideBar-link{
    width: 92%;
    height: 60px;
    margin-bottom: 15px;
    text-decoration: none;
    font-size: 18px;
    font-family: var(--roboto);
    color: rgb(255, 255, 255);
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 12px;
    border: 0.5px solid var(--grey_black);
    box-sizing: border-box;
    padding: 25px;
    font-weight: 400;
    opacity: 0; /* Domyślnie niewidoczne */
    transform: scale(0.9); /* Początkowa skala */
    transition: opacity 500ms ease, transform 500ms ease;
}

.offersContainer{
    width: 92%;
    height: fit-content;
}

.offerRow a{
    width: 100%;
    margin-bottom: 15px;
    padding: 5px;
    text-decoration: none;
    font-size: 16px;
    font-family: var(--roboto);
    color: rgb(255, 255, 255);
    align-items: center;
    justify-content: space-between;
    border-radius: 12px;
    box-sizing: border-box;
    font-weight: 400;
    opacity: 0;
    display: none;
    transform: scale(0.9); /* Początkowa skala */
    transition: opacity 500ms ease, transform 500ms ease;
}

.offerRow a.animated {
    animation: BoomEffect 0.65s forwards;
}

.offerRow a:hover{
    border: 1px solid rgb(65, 110, 255);
    transition: 150ms;
}

.sideBar-link svg{
    transform: scale(1.2);
}

.offers_menu svg{
    transform: scale(1);
    color: rgb(255, 255, 255);
}

@keyframes BoomEffect {
    0% {
        transform: scale(0.9);
        opacity: 0;
    }
    50% {
        transform: scale(1.1);
        opacity: 1;
    }
    100% {
        transform: scale(1);
        opacity: 1; /* Po zakończeniu animacji element jest widoczny */
    }
}

/* Gdy menu jest otwarte */
.sideBar-link.animated {
    animation: BoomEffect 0.65s forwards;
}


.sideBar-link:hover{
    border: 1px solid rgb(65, 110, 255);
    transition: 150ms;
}






.contactButtonContainer{
    display: flex;
    align-items: center;
    justify-content: center;
}


@media (max-width: 1100px) {
    .contactButtonContainer{
        display: none;
    }
    .hamburgerMenuIconContainer{
        display: flex;
    }

    .navigationBar{
        display: none;
    }
    .out_in_mobile{
        display: none;
    }

    
    
}

.superLinksSocial{
    width: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
}
.facebook{
    font-size: 22px;
    margin-right: 18px;
    transition: 0.3s;
    color: black;
}
.linkedin{
    font-size: 22px;
    margin-right: 18px;
    transition: 0.3s;
    color: black;
}

.instagram{
    font-size: 22px;
    margin-right: 40px;
    transition: 0.3s;
    color: black;
}

.facebook:hover{
    padding: 12px;
    background-color: var(--lightgrey);
    border-radius: 50%;
}
.linkedin:hover{
    padding: 12px;
    background-color: var(--lightgrey);
    border-radius: 50%;
}

.instagram:hover{
    padding: 12px;
    background-color: var(--lightgrey);
    border-radius: 50%;

}



.contactButton {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px;
    width: 140px;
    padding: 10px;
    border: 0 solid #e5e7eb;
    background-color: var(--dark_grey);
    border-radius: 50px;
    font-size: 18px;
    font-weight: bold;
    color: #ffffff;
    transition: transform .1s ease, background-color 0.3s ease-in, color 0.3s ease;
    position: relative;
    cursor: pointer;
    overflow: hidden;
    z-index: 1;
    font-family: var(--chillSimpleFont);
    font-size: 16px;
}

.contactButton::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -40%;
    width: 100%;
    height: 200%;
    background-color: #49ADF4;
    clip-path: circle(0% at 50% 100%);
    transition: clip-path 0.8s ease-in;
    z-index: -1;
}

.contactButton:hover::before {
    clip-path: circle(200% at 50% -50%);
}

.contactButton:hover {
    border: none;
    cursor: pointer;
}

@keyframes throwEffect {
    0% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(-20px); /* Ruch w lewo */
    }
    75% {
        transform: translateX(10px); /* Ruch w prawo */
    }
    100% {
        transform: translateX(0); /* Powrót na miejsce */
    }
}

.throwAnimation {
    animation: throwEffect 0.25s ease-in-out;
}


.contactButton i{
    margin-right: 10px;
    text-decoration: none;
}




.logoContainer_Navigation{
    width: fit-content;
    height: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    width: auto; /* Upewnij się, że kontener ma odpowiednią szerokość */
}




.websiteLogo{
    margin-right: 12px;
    height: 65px;
    width: 65px;
    border-radius: 24px;
}



.logoText {
    margin-left: 15px;
    flex-wrap: nowrap;
    font-weight: bold;
    font-size: 18px;
    color: var(--light_dark);
    font-family: 'Open Sans';
    margin: 0;
    text-decoration: none;

}


@media (max-width: 1100px) {

    .logoContainer_Navigation{
        width: fit-content;
        height: fit-content;
        display: flex;
        position: fixed;
        z-index: 100000000;
        display: flex;
        top: 15px;
        left: 25px;
    }

    .websiteLogo{
        width: 50px;
        height: 50px;
        margin-right: 0px;
        border: 2.5px solid var(--grey_black);
        border-radius: 50%;
    }
    
    
}

.textSuperLink{
    text-decoration: none;
}
.iconSuperLink img{
    margin-left: 10px;
    width: 35px;
    height: 35px;
}


/* CONTENT SECTION */
/* CONTENT SECTION */
/* CONTENT SECTION */
/* CONTENT SECTION */

.landingPage{
    width: 100%;
    height: 100vh;
}



/* css slider */
.sliderLandingPage{
    height: 100vh;
    margin-top: -50px;
    position: relative;
    font-family: Poppins;
    margin: 0;
    background-color: #010101;
    color: #eee;
}
.sliderLandingPage .list .item{
    position: absolute;
    inset: 0 0 0 0;
    overflow: hidden;
    opacity: 0;
    transition: .5s;
}
.sliderLandingPage .list .item img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.sliderLandingPage .list .item::after{
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
    background-image: linear-gradient(
        to top, #000 15%, transparent
    );
    pointer-events: none;
}
.sliderLandingPage .list .item .content{
    position: absolute;
    left: 10%;
    top: 35%;
    width: 500px;
    max-width: 80%;
    z-index: 1;
    transform: translate(0%, -35%);
    color: white;
}

.Slider_Type_txt{
    color: white;
    text-shadow: -2px -2px 20px black;
}


.sliderLandingPage .list .item .content p:nth-child(1){
    text-transform: uppercase;
    letter-spacing: 7px;
}
.sliderLandingPage .list .item .content h2{
    font-size: 100px;
    margin-bottom: 25px;
}
.sliderLandingPage .list .item.activeSlide{
    opacity: 1;
    z-index: 10;
}
@keyframes showContent {
    to{
        transform: translateY(0);
        filter: blur(0);
        opacity: 1;
    }
}
.sliderLandingPage .list .item.activeSlide p:nth-child(1),
.sliderLandingPage .list .item.activeSlide h2,
.sliderLandingPage .list .item.activeSlide p:nth-child(3){
    transform: translateY(30px);
    filter: blur(20px);
    opacity: 0;
    animation: showContent .5s .7s ease-in-out 1 forwards;
}
.sliderLandingPage .list .item.activeSlide h2{
    animation-delay: 1s;
}
.sliderLandingPage .list .item.activeSlide p:nth-child(3){
    animation-duration: 1.3s;
}


.arrows{
    position: absolute;
    top: 40%;
    right: 35px;
    z-index: 100;
    transform: translate(-50%, -40%);
    gap: 10px;
    display: flex;
}
.arrows button{
    background-color: #eee5;
    border: none;
    font-family: monospace;
    width: 50px;
    height: 50px;
    border-radius: 5px;
    font-size: x-large;
    color: #eee;
    transition: .5s;
}
.arrows button:hover{
    background-color: #eee;
    color: black;
}
.thumbnail{
    position: absolute;
    bottom: 50px;
    z-index: 11;
    display: flex;
    gap: 10px;
    width: 100%;
    height: 250px;
    padding: 0 50px;
    box-sizing: border-box;
    overflow: auto;
    justify-content: center;
}

@media (max-width: 500px) {
    .thumbnail{
        bottom: 20px;
        padding: 0 40px;
    }
    
}
.thumbnail::-webkit-scrollbar{
    width: 0;
}
.thumbnail .item{
    width: 150px;
    height: 220px;
    filter: brightness(.5);
    transition: .5s;
    flex-shrink: 0;
}
.thumbnail .item img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}
.thumbnail .item.activeSlide{
    filter: brightness(1);
}
.thumbnail .item .content{
    position: absolute;
    inset: auto 10px 10px 10px;
}
@media screen and (max-width: 678px) {
    .thumbnail{
        justify-content: start;
    }
    .sliderLandingPage .list .item .content h2{
        font-size: 40px;
        margin-top: 12px;
        margin-bottom: 20px;
    }
    .sliderLandingPage .list .item .content p:nth-child(1){
        text-transform: uppercase;
        letter-spacing: 7px;
    }
    .imageDescLandingSlider{
        font-size: 15px !important;
    }
    .arrows{
        top: 20%;
        display: none;
    }
}



/* END SLIDER SECTION LANDING PAGE */
/* END SLIDER SECTION LANDING PAGE */
/* END SLIDER SECTION LANDING PAGE */




.mainTextContainer{
    border-radius: 10px;
    width: 400px;
}

.titleTextContainer{
    font-weight: bold;
    font-size: 60px;
    display: flex;
    flex-direction: column;

}

.descTextContainer{
    margin-top: 30px;
    font-family: var(--mainScreenSharpFont);
    font-size: 20px;
    color: black;
    font-weight: 400;
    display: flex;
    flex-direction: column;
}
.andSymbol{
    margin-right: 10px;
    width: 50px;
    height: 50px;
}

.goDownBtnContainer {
    margin-top: 37px;
    display: flex;
    align-items: center;
    justify-content: center;
}



.blob-btn {
    z-index: 1;
    position: relative;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 14px;
    padding-bottom: 14px;
    text-align: center;
    text-transform: uppercase;
    color: #000000;
    font-size: 14px;
    font-weight: bold;
    background-color: transparent;
    outline: none;
    border: none;
    transition: color 0.5s;
    cursor: pointer;
    border-radius: 30px;
    font-family: var(--roboto);
    border: 1px solid #000000;
  }

  .blob-btn:after {
    content: "";
    z-index: -2;
    position: absolute;
    left: 3px;
    top: 3px;
    width: 100%;
    height: 100%;
    transition: all 0.3s 0.2s;
    border-radius: 30px;
  }
  .blob-btn:hover {
    color: #FFFFFF;
  }
  .blob-btn:hover:after {
    transition: all 0.3s;
    left: 0;
    top: 0;
    border-radius: 30px;
  }
  .blob-btn__inner {
    z-index: -1;
    overflow: hidden;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: 30px;
    background: #ffffff;
  }
  .blob-btn__blobs {
    position: relative;
    display: block;
    height: 100%;
    filter: url("#goo");
  }
  
  
  
  
  .blob-btn__blob {
    position: absolute;
    top: 2px;
    width: 25%;
    height: 100%;
    background: #000000;
    border-radius: 100%;
    transform: translate3d(0, 150%, 0) scale(1.7);
    transition: transform 0.45s;
  }
  @supports (filter: url("#goo")) {
    .blob-btn__blob {
      transform: translate3d(0, 150%, 0) scale(1.4);
    }
  }
  .blob-btn__blob:nth-child(1) {
    left: 0%;
    transition-delay: 0s;
  }
  .blob-btn__blob:nth-child(2) {
    left: 30%;
    transition-delay: 0.08s;
  }
  .blob-btn__blob:nth-child(3) {
    left: 60%;
    transition-delay: 0.16s;
  }
  .blob-btn__blob:nth-child(4) {
    left: 90%;
    transition-delay: 0.24s;
  }
  .blob-btn:hover .blob-btn__blob {
    transform: translateZ(0) scale(1.7);
  }
  @supports (filter: url("#goo")) {
    .blob-btn:hover .blob-btn__blob {
      transform: translateZ(0) scale(1.4);
    }
  }










.photographerText{
    color: black;
    font-family: var(--mainScreenSharpFont);
}
.filmMakerTxt{
    color: black;
    font-family: var(--mainScreenSharpFont);
}

.mobilePageContainer {
    width: 100%;
    height: 100vh;
    display: block !important;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.9);
    z-index: 10000001;
    position: relative; /* Potrzebne do ułożenia pseudo-elementu na obraz */
}

@media (max-width: 1100px) {
    .mobilePageContainer {
        display: block !important;
    }
}

.mobileImg_1{
    background-image: url(images/frontPageImage.webp);
}

.mobileImg_2{
    background-image: url(images/mobileImg_2.jpg);
}

.mobileImg_3{
    background-image: url(images/mobileImg_3.jpeg);
}

.mobileImg_4{
    background-image: url(images/mobileImg_4.jpg);
}


.mobileImagesContainer {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100%;
    z-index: 100;
    position: relative;
}

.mobileImagesContainer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(to right, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.3)),
        linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.3));
    z-index: 200;
    pointer-events: none; /* Umożliwia klikanie przez pseudo-element, jeśli potrzeba */
    background-blend-mode: multiply; /* Umożliwia mieszanie gradientów */
}


.imgTxtContainer{
    position: absolute;
    bottom: 0;
    left: 7%;
    width: 100%;
    height: 40vh;
    display: flex;
    flex-direction: column;
}

.imgTitleTxt{
    z-index: 1000;
    font-size: 32px;
    font-weight: bold;
    color: white;
    font-family: var(--roboto);
}

.imgDescTxt{
    margin-top: 12px;
    z-index: 1000;
    font-size: 15px;
    font-weight: lighter;
    color: white;
    font-family: var(--roboto);
}

.seeMoreLink{
    margin-top: 18px;
    z-index: 1000;
    font-size: 15px;
    font-weight: 400;
    color: white;
    font-family: var(--roboto);
    display: flex;
    align-items: center;
}

.seeMoreLink i{
    margin-left: 10px;
}

.swiper-slide-shadow-left,
.swiper-slide-shadow-right {
  display: none;
}

.tranding-slider-control {
  position: relative;
  bottom: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}



.tranding-slider-control .slider-arrow {
  background: var(--white);
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  filter: drop-shadow(0px 8px 24px rgba(18, 28, 53, 0.1));
}

.tranding-slider-control .swiper-button-next{
    left: 55% !important;
    transform: translate(-55%, -125%) !important;
}

.tranding-slider-control .swiper-button-prev{
    left: 45% !important;
    transform: translate(-45%, -125%) !important;
}

.tranding-slider-control .slider-arrow ion-icon {
  font-size: 2rem;
  color: #222224;
}

.tranding-slider-control .slider-arrow::after {
  content: '';
}







@media (max-width: 1100px) {
    .imgTxtContainer{
        position: absolute;
        bottom: 0;
        left: 10%;
        width: 100%;
        height: 35vh;
        display: flex;
        flex-direction: column;
    }
    
    .imgTitleTxt{
        z-index: 1000;
        font-size: 32px;
        font-weight: bold;
        color: white;
        font-family: var(--roboto);
    }
    
    .imgDescTxt{
        margin-top: 12px;
        z-index: 1000;
        font-size: 15px;
        font-weight: lighter;
        color: white;
        font-family: var(--roboto);
    }
    
    .seeMoreLink{
        margin-top: 18px;
        z-index: 1000;
        font-size: 15px;
        font-weight: 400;
        color: white;
        font-family: var(--roboto);
        display: flex;
        align-items: center;
    }
    
    .seeMoreLink i{
        margin-left: 10px;
    }
    
    .swiper-slide-shadow-left,
    .swiper-slide-shadow-right {
      display: none;
    }
    
    .tranding-slider-control {
      position: relative;
      bottom: 5rem;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    
    
    .tranding-slider-control .slider-arrow {
      background: var(--white);
      width: 3.5rem;
      height: 3.5rem;
      border-radius: 50%;
      filter: drop-shadow(0px 8px 24px rgba(18, 28, 53, 0.1));
    }

    .tranding-slider-control .swiper-button-next{
        left: 63% !important;
        transform: translate(-63%, 0%) !important;
    }
    
    .tranding-slider-control .swiper-button-prev{
        left: 37% !important;
        transform: translate(-37%, 0%) !important;
    }
    
    .tranding-slider-control .slider-arrow ion-icon {
      font-size: 2rem;
      color: #222224;
    }
    
    .tranding-slider-control .slider-arrow::after {
      content: '';
    }
    
}









/* END OF MOBILE */















.part1OfEntireContainer{
    width: 50%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.part2OfEntireContainer{
    width: 60%;
    height: 90%;
    display: flex;
    align-items: center;
}


@media (max-width: 1100px) {
    .part1OfEntireContainer{
        display: none;
    }
    .part2OfEntireContainer{
        display: none;
    }
}

.redBlobStarterPage{
    width: 750px;
    height: 750px;

}

.photographerImage{
    position: absolute;
    transform: translateY(-2.6%);
}

.mainImagesContainer{
    width: 90%;
    height: 80%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url(images/workspace_dots.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 10%;

}

.smileTextContainer{
    position: absolute;
    z-index: 3;
    font-family: 'Open Sans';
    font-size: 20px;
    color: var(--white);
    font-weight: bold;
}

.cloudText{
    position: absolute;
    width: 140px;
    height: 60px;
    border-radius: 30px 30px 30px 5px;
    background-color: var(--dark_grey);
    transform: translate(50%, -280%);
    border: 1px solid var(--dark_grey);
    display: flex;
    align-items: center;
    justify-content: center;

}

.whyMeSection {
    width: 100%;
    height: 100vh;
    background-color: white;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    max-width: 1950px;
}

.aboutMeFirstPartContainer {
    width: 60%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}


.imagesContainer {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 20px;
}

@media (max-width: 750px) {
    .aboutMeFirstPartContainer {
        width: 100%;
        height: 50%;
        display: flex;
        justify-content: center;
        align-items: flex-end;
        margin-bottom: 50px;

    }
    .whyMeSection{
        flex-direction: column;
        height: 120vh;
    }
    
}





.aboutMeImageN1 {
    width: 100%;
    height: 100%;
    background-image: url(images/Personal_images/alex_personal_1.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.aboutMeImageN2{
    width: 140px;
    height: 140px;
    object-fit: cover;
    background-image: url(images/Personal_images/alex_personal_2.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.aboutMeImageN3{
    width: 140px;
    height: 140px;
    object-fit: cover;
    background-image: url(images/Personal_images/alex_personal_4.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.aboutMeImageN4{
    width: 140px;
    height: 140px;
    object-fit: cover;
    background-image: url(images/Personal_images/alex_personal_3.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}




@media (max-width: 1100px) {
    .aboutMeImageN2{
        width: 100px;
        height: 100px;
    }
    .aboutMeImageN3{
        width: 100px;
        height: 100px;
    }
    .aboutMeImageN4{
        width: 100px;
        height: 100px;
    }
    .imagesContainer {
        display: grid;
        grid-template-columns: 280px 1fr;
        gap: 18px;
    }
    
}


@media (max-width: 750px) {
    .aboutMeImageN2{
        width: 10vh;
        height: 10vh;
    }
    .aboutMeImageN3{
        width: 10vh;
        height: 10vh;
    }
    .aboutMeImageN4{
        width: 10vh;
        height: 10vh;
    }
    .imagesContainer {
        display: grid;
        grid-template-columns: 30vh 1fr;
        gap: 14px;
    }
    
}

@media (max-width: 400px) {
    .aboutMeImageN2{
        width: 8vh;
        height: 8vh;
    }
    .aboutMeImageN3{
        width: 8vh;
        height: 8vh;
    }
    .aboutMeImageN4{
        width: 8vh;
        height: 8vh;
    }
    .imagesContainer {
        display: grid;
        grid-template-columns: 24vh 1fr;
        gap: 11px;
    }
    
}


.gridLayoutImages {
    display: grid;
    grid-template-rows: repeat(3, 1fr);
    gap: 20px;
}




.aboutMeSecondPartContainer{
    width: 60%;
    height: 100%;
    display: flex;
    align-items: center;
}

@media (max-width: 750px) {
    .aboutMeSecondPartContainer {
        width: 100%;
        height: 50%;
        display: flex;
        align-items: center;
    }
    
}

.aboutMeSectiontextContainer{
    width: 60%;
    display: flex;
    flex-direction: column;
    max-width: 550px;

}

.aboutMeTitle {
    position: relative;
    display: inline-block;
    font-size: 60px;
    font-weight: bold;
    color: #000;
    margin-bottom: 20px; /* Odległość od elementów poniżej */
    font-family: var(--mainScreenSharpFont);
}

.aboutMeTitle::after {
    content: "";
    position: absolute;
    bottom: -5px; /* Odległość od tekstu */
    left: 0;
    width: 80px; /* Długość kreski */
    height: 2px; /* Grubość kreski */
    background-color: #000000; /* Kolor kreski */
}

.aboutMeName{
    margin-top: 20px;
    font-size: 22px;
    font-family: var(--chillSimpleFont);
    color: var(--dark_grey);
    font-weight: bold;
}

.aboutMeSocialLink{
    margin-top: 10px;
    font-size: 16px;
    font-family: var(--chillSimpleFont);
    color: hsl(0, 3%, 45%);
    font-weight: bold;

}

.helloText{
    line-height: 27px;
    margin-top: 20px;
    font-size: 15px;
    font-family: var(--chillSimpleFont);
    color: var(--greyText);
    font-weight: bold;
}

.aboutMeDesc{
    line-height: 27px;
    margin-top: 5px;
    font-size: 15px;
    font-family: var(--chillSimpleFont);
    color: var(--greyText);
    font-weight: bold;
}

.numbersCountingContainer{
    margin-top: 2.2em;
    display: flex;
    height: fit-content;
    width: 100%;
    gap: 30px;
}

.numberRow{
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: column;
}

.columnUiElement{
    width: 2px;
    height: 80px;
    background-color: rgb(228, 228, 228);
}


@media (max-width: 1100px) {
    .numberRow{
        font-size: 14px;
    }
}

@media (max-width: 900px) {
    .numberRow{
        font-size: 10px;
    }
    .numbersCountingContainer{
        margin-top: 1em;
    }
}

.numberCounter{
    font-size: 3em;
    font-family: var(--poopins);
    font-weight: 300;
    color: #eb5b5d;
}

.numberTitle {
    margin-top: 15px;
    width: 50px;
    display: block; /* Ustawienie display na block */
    font-size: 1em;
    font-family: var(--poopins);
    font-weight: bold;
    color: var(--blackRose);
}

.buttonContainer{
    margin-top: 33px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.seeMyWorks {
    margin-top: 0px;
    font-family: 'Open Sans';
    background-color: transparent;
    font-size: 11px;
    color: var(--blackRose);
    padding-left: 12px;
    padding-right: 12px;
    padding-bottom: 8px;
    padding-top: 8px;
    border-radius: 24px;
    transition: background-color 0.3s, color 0.3s;
    border: 1px solid var(--blackRose);
    display: flex;
    font-weight: 400;
    align-items: center;
    position: relative;
    z-index: 0; /* Zaktualizowano z-index na 0 */
    overflow: hidden; /* Aby upewnić się, że pseudo-element jest ograniczony do kontenera */
}

.seeMyWorks .arrow_right_button {
    margin-left: 10px;
    font-size: 10px;
}

.seeMyWorks:hover {
    color: white;
}

.seeMyWorks::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--blackRose);
    transition: background-color 0.3s, transform 0.3s;
    z-index: -1; /* Pseudo-element jest za tekstem */
    border-radius: 24px;
    transform: scaleX(0); /* Ukryty przez skalowanie */
    transform-origin: left;
}

.seeMyWorks:hover::after {
    transform: scaleX(1); /* Rozciągnie tło na pełny wymiar */
}

.seeMyWorks:hover .arrow_right_button {
    color: white;
}


@media (max-width: 1100px) {
    .aboutMeTitle {
        font-size: 40px; /* 60px - 1/3 = 40px */
    }
    
    .aboutMeName {
        font-size: 14.67px; /* 22px - 1/3 = ~14.67px */
    }
    
    .aboutMeSocialLink {
        font-size: 11.33px; /* 17px - 1/3 = ~11.33px */
    }
    
    .helloText, .aboutMeDesc {
        line-height: 18px;
        font-size: 10px; /* 15px - 1/3 = 10px */
    }
    .aboutMeSectiontextContainer{
        height: 400px;
        width: 100%;
        padding-left: 15px;
    }
    .aboutMeSecondPartContainer{
        transform: translateY(3.3%);
    }

    .seeMyWorks{
        font-size: 13px;
        padding: 9px;
    }
    
}


/* PORTFOLIO SECTION */
/* PORTFOLIO SECTION */
/* PORTFOLIO SECTION */
/* PORTFOLIO SECTION */




.portfolioSection{
    width: 100%;
    height: fit-content;
    background-color: white;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 20px;
    max-width: 1950px;
}

.portfolioContainer{
    width: 100%;
    height: 95%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

}

.loadMoreProjectsContainer{
    width: 100%;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loadMoreProjectsButton{
    display: inline;
    width: fit-content;
    height: fit-content;
    font-family: var(--chillSimpleFont);
    font-weight: bold;
    font-size: 15px;
    background-color: rgb(255, 255, 255);
    border: none;
    color: rgb(54, 54, 54);
    transition: 280ms;
    padding: 8px;
    border: 1px solid lightgrey;
    border-radius: 24px;
}

.loadMoreIcon{
    margin-left: 8px;
    color: rgb(54, 54, 54);
}

.loadMoreProjectsButton:hover{
    background-color: var(--lightgrey);
    border-radius: 7px;
    padding: 8px;
}


.portfolioTextContainer{
    width: 600px;
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.portfolioTxt{
    position: relative;
    font-size: 50px;
    font-family: var(--mainScreenSharpFont);
    font-weight: bold;
    color: black;

}

.portfolioTxt::after{
    content: "";
    position: absolute;
    bottom: -8px; /* Odległość od tekstu */
    left: 50%;
    width: 80px; /* Długość kreski */
    height: 2px; /* Grubość kreski */
    background-color: #000000; /* Kolor kreski */
    transform: translateX(-50%);


}
.categoriesContainer{
    width: 420px;
    margin-top: 20px;
    display: flex;
    font-family: 'Open Sans';
    font-size: 11px;
    color: rgb(131, 131, 131);
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

@media (max-width: 500px) {
    .categoriesContainer{
        width: 320px;
    }
}

.categoryImagesBtn{
    padding: 8px;
    margin-right: 10px;
    transition: 0.3s;
}

.categoryImagesBtn.clicked{
    color: black;
    font-weight: bold;
}

.categoryImagesBtn:hover{
    padding: 8px;
    margin-right: 10px;
    background-color: var(--lightgrey);
    border-radius: 12px;
    cursor: pointer;
}





.slideProjectsContainer {
    width: fit-content;
    height: 75%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0px;
}


.parentGridContainer {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    grid-auto-rows: auto;
    gap: 12px;
    width: 100%;
    padding: 5px;
}


.portfolioIMG{
    position: relative;
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    background-repeat: no-repeat;
    transform: translateY(0) !important; 
}




.portfolioIMG:hover .imagePortfolioDescContainer{
    display: flex;

}



/* IMAGES HEIGHTS AND WIDTHS */

.imageN1 { grid-row: span 2; height: 400px; background-image: url(images/portfolio_images/imieniny_ul_św_Marcina.jpg); }
.imageN2 { grid-row: span 1; height: 200px; background-image: url(images/portfolio_images/szpital_tuchol.jpg); }
.imageN3 { grid-row: span 2; height: 400px; background-image: url(images/portfolio_images/wlż_runda_2.jpg); }
.imageN4 { grid-row: span 1; height: 200px; background-image: url(images/portfolio_images/Bułgarska.jpg); }
.imageN5 { grid-row: span 3; height: 600px; background-image: url(images/portfolio_images/Kacperczyk_Juwenalia.jpg); }
.imageN6 { grid-row: span 1; height: 200px; background-image: url(images/portfolio_images/Bułgarska.jpg); }
.imageN7 { grid-row: span 2; height: 400px; background-image: url(images/portfolio_images/Wenecja.jpg); }
.imageN8 { grid-row: span 3; height: 600px; background-image: url(images/portfolio_images/gołębiewski.jpg); }

.imageN9 { grid-row: span 2; height: 400px; background-image: url(images/portfolio_images/Villa_Morena.jpg); }
.imageN10 { grid-row: span 3; height: 600px; background-image: url(images/portfolio_images/Bitwa_Kapel.jpg); }
.imageN11 { grid-row: span 1; height: 200px; background-image: url(images/portfolio_images/Albania.jpg); }
.imageN12 { grid-row: span 3; height: 600px; background-image: url(images/portfolio_images/Poznań_Ice_Festival.jpg); }
.imageN13 { grid-row: span 2; height: 400px; background-image: url(images/portfolio_images/Arlekin_Juwenalia.jpg); }
.imageN14 { grid-row: span 2; height: 400px; background-image: url(images/portfolio_images/Kreta_Grecja.jpg); }

.imageN15 { grid-row: span 2; height: 400px; background-image: url(images/portfolio_images/Karkonosze.jpg); }
.imageN16 { grid-row: span 1; height: 200px; background-image: url(images/portfolio_images/z_lotu_ptaka.jpg); }
.imageN17 { grid-row: span 3; height: 600px; background-image: url(images/portfolio_images/Ania_i_Kuba.jpg); }
.imageN18 { grid-row: span 1; height: 200px; background-image: url(images/portfolio_images/Rocznia_Wybuchu_wielkoposlkiego.jpg); }
.imageN19 { grid-row: span 2; height: 400px; background-image: url(images/portfolio_images/Czarnogóra.jpg); }

.imageN21 { grid-row: span 2; height: 400px; background-image: url(images/portfolio_images/Chorwacja.jpg); }
.imageN22 { grid-row: span 3; height: 600px; background-image: url(images/portfolio_images/sluby_1.jpg); }
.imageN23 { grid-row: span 2; height: 400px; background-image: url(images/portfolio_images/sport_3.jpg); }
.imageN24 { grid-row: span 3; height: 600px; background-image: url(images/portfolio_images/Poznań_Ice_Festival.jpg); }

.imageN25 { grid-row: span 1; height: 200px; background-image: url(images/portfolio_images/Bal_Magisterski.jpg); }
.imageN26 { grid-row: span 2; height: 400px; background-image: url(images/portfolio_images/Słowenia.jpg);  }
.imageN27 { grid-row: span 3; height: 600px; background-image: url(images/portfolio_images/Berlin_Niemcy.jpg);}
.imageN28 { grid-row: span 2; height: 400px; background-image: url(images/portfolio_images/Wiedeń_Austria.jpg); }
.imageN29 { grid-row: span 3; height: 600px; background-image: url(images/portfolio_images/Trójmiasto.jpg) }

.imageN30 { grid-row: span 2; height: 400px; background-image: url(images/portfolio_images/wlż_runda_1.jpg); }
.imageN31 { grid-row: span 1; height: 200px; background-image: url(images/portfolio_images/MyszaSurf.jpg);  }
.imageN32 { grid-row: span 3; height: 600px; background-image: url(images/portfolio_images/Wielkopolska_Gala_Żeglarska.jpg); }
.imageN33 { grid-row: span 3; height: 600px; background-image: url(images/portfolio_images/półmaraton.jpg); }
.imageN34 { grid-row: span 1; height: 200px; background-image: url(images/portfolio_images/Studniówka_Marcinek.jpg); }


.imageN35 { grid-row: span 2; height: 400px; background-image: url(images/portfolio_images/Tatry_Polska.jpg); }
.imageN36 { grid-row: span 3; height: 600px; background-image: url(images/portfolio_images/Srebrny_zagiel.jpg); }
.imageN37 { grid-row: span 2; height: 400px; background-image: url(images/portfolio_images/gołębiewski.jpg); }
.imageN38 { grid-row: span 2; height: 400px; background-image: url(images/portfolio_images/Jesieny_Poznań.jpg); }
.imageN39 { grid-row: span 2; height: 400px; background-image: url(images/portfolio_images/Letni_Poznań.jpg); }

.imageN40 { grid-row: span 1; height: 200px; background-image: url(images/portfolio_images/Oborniki.jpg); }
.imageN41 { grid-row: span 3; height: 600px; background-image: url(images/portfolio_images/Szpital_Panele.jpg); }
.imageN42 { grid-row: span 1; height: 200px; background-image: url(images/portfolio_images/Zimowy_Poznań.jpg); }
.imageN43 { grid-row: span 3; height: 600px; background-image: url(images/portfolio_images/WLŻ_runda_3.jpg); }

/* Klasa początkowa, ukrywająca element */
.hiddenBlurFade {
    opacity: 0;
    filter: blur(30px);
    transform: translateY(10px) !important;
}

/* Klasa aktywująca animację */
.visibleBlurFade {
    animation: pushUpwardsBlurEffect 200ms ease-out forwards;
}


@keyframes pushUpwardsBlurEffect {
    0% {
        opacity: 0;
        filter: blur(30px);
        transform: translateY(30px) !important;
    }
    33%{
        opacity: 0.33;
        filter: blur(20px);
        transform: translateY(-20px) !important;
    }
    66%{
        opacity: 0.66;
        filter: blur(10px);
        transform: translateY(-10px) !important;
    }
    100%{
        opacity: 1;
        filter: blur(0px);
        transform: translateY(0px) !important;
    }

}


.loadMoreImagesQuery{
    display: none;
}

.hidden {
    opacity: 0;
    filter: blur(5px);
    transform: translateX(-100%);
}

/* Dodanie animacji dla klasy show */
.show{
    animation: showElement 1s ease-in-out forwards;
}


.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    transition: 0.3s;
    background-color: rgba(0, 0, 0, 0.1); 
    z-index: 9;
    border-radius: 10px;
}

/* Stylowanie overlay podczas hover */
.overlay:hover{
    background-color: rgba(0, 0, 0, 0.4); 
    backdrop-filter: blur(3px);  
    border-radius: 10px;
}

.imagePortfolioDescContainer{
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    z-index: 10;
    display: none;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    padding: 10px;
    box-sizing: border-box;
    line-height: 31px;
}

/* Stylowanie tekstu */
.imageDesc {
    font-size: 30px;
    font-family: var(--roboto);
    color: white;
    font-weight: bold;
}

.imageIconArrow{
    margin-top: 12px;
    font-size: 20px;
    font-family: var(--roboto);
    color: lightgray;
    font-weight: 400;
}

.imageIconArrow i{
    color: lightgray;
    margin-left: 8px;
}

.testSection{
    width: 100%;
    height: 100vh;
    background-color: white;
}













.offerSection{
    height: 100vh;
    background-color: white;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 700px) {
    .offerSection{
        height: 130vh;
    }
    .scrollContent{
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;

    }
}

.offerContainer{
    width: 80%;
    height: 80%;
    display: flex;
    flex-direction: column;
}

.offerContent{
    width: 100%;
    height: 100%;
}

@media (max-width: 1100px) {
    .offerContainer{
        width: 95%;
    } 
}

.offerSectionTitleContainer{
    width: 100%;
    height: 20%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid black;

}
.offerTitle{
    position: relative;
    font-size: 40px;
    font-family: var(--mainScreenSharpFont);
    font-weight: bold;
    color: black;
}

.offerContent{
    width: 100%;
    height: 80%;
    display: flex;
    justify-content: center;
    align-items: center;
}


.firstHalfOfferSection{
    width: 35%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 1100px) {
    .firstHalfOfferSection{
        align-items: center;
        width: 50%;
    }
    .SecondHalfOfferSection{
        align-items: center;
        justify-content: start;
    }
  
}



.SecondHalfOfferSection{
    width: 50%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}



@media (max-width: 700px) {
    .offerContent{
        flex-direction: column-reverse;

    } 
    .firstHalfOfferSection{
        width: 100%;
        height: 50%;
        background-position: center;
        background-size: cover;
    }
    .SecondHalfOfferSection{
        width: 100%;
        height: 50%;

    }
}

.offerTxtContainer{
    width: 600px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.offerDesc{
    margin-top: 15px;
    font-family: var(--chillSimpleFont);
    font-size: 14px;
    color: var(--grey_black);
}



.imageContainer{
    width: 90%;
    height: 90%;
    background-image: url(images/womanImgTEST.avif);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.scrollContainer{
    width: 100%;
    height: 90%;
    display: flex;
    flex-direction: column;
    overflow-y: auto; /* Dodaje pionowy scrollbar */
    overflow-x: hidden; /* Ukrywa poziomy scrollbar */
    scrollbar-width: thin; /* Ustawia szerokość scrollbara na cienką */
    scrollbar-color: #888888 #f1f1f1; /* Ustawia kolor scrollbara i jego tła */

}

@media (max-width: 700px) {
    .scrollContainer{
        height: 100%;
        scrollbar-width:auto;
    
    }
    .personalSession{
        margin-top: 50px;
    }
    .offerTitle{
        font-size: 30px;
    }
    .offerDesc{
        font-size: 12px;
    }
}



.serviceRow{
    width: 100%;
    height: auto;
    margin-bottom: 30px;
    display: flex;
    transition: 0.3s;
    flex-direction: column;
}

.serviceContainer{
    width: 100%;
    height: 60px;
    display: flex;
    transition: 0.3s;
}
.serviceContainer:hover{
    cursor: pointer;
    background-color: var(--lightgrey);
    padding: 5px;
    border-radius: 12px;
}

.serviceIcon{
    width: auto;
    height: 100%;
}

.serviceIcon img{
    width: auto;
    height: 100%;
    background-color: white;
    box-shadow: 0 8px 8px rgb(228, 228, 228);
    border-radius: 16px;
    box-sizing: border-box;
    padding: 12px;
    margin-left: 5px;
}

.serviceTxtContainer{
    margin-left: 37px;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}


.serviceTitle{
    letter-spacing: 0.3px;
    font-size: 20px;
    font-weight: bold;
    font-family: var(--mainScreenSharpFont);
    color: black;

}

.serviceDescContainer{
    width: 100%;
    height: 60px;
    display: none;
    transition: .5s;
    transform: translateY(-70%);
    opacity: 0;
}



.arrowDownIcon{
    font-size: 30px;
    color: black;
    box-sizing: border-box;

    width: auto;
    height: 100%;
    border-radius: 16px;
    box-sizing: border-box;
    padding: 22px;
}

.serviceDesc{
    margin-left: 37px;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    font-size: 12px;
    color: var(--greyText);
    font-family: var(--chillSimpleFont);
    font-weight: bold;
    
    
}

@media (max-width: 700px) {
    .serviceTitle{
        font-size: 18px;
    }
    .serviceContainer{
        height: 50px;
    }
    .serviceDescContainer{
        height: 50px;
    }
    .serviceDesc{
        font-size: 10px;
        margin-left: 20px;
        
    }
    
}



/* TESTIMONIALS SECTION */


.testimonialsSection{
    width: 100%;
    height: 100vh;
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: white;
    max-width: 1950px;
}

@media (max-width: 1300px) {
    .testimonialsSection{
        height: 150vh;

    }
}

@media (max-width: 600px) {
    .testimonialsSection{
        height: 175vh;

    }
}


.opinionsSectionTitleBox {
    text-align: center;
}

.opinionsSectionTitleTxt {
    display: inline-block;
    position: relative;
    font-size: 42px;
    font-family: var(--mainScreenSharpFont);
    font-weight: bold;
    color: black;
    padding: 0 20px;
}

.opinionsSectionTitleTxt::after {
    content: "";
    position: absolute;
    bottom: -20px;
    left: 50%;
    width: 40%;
    height: 2px;
    background-color: var(--grey_black);
    transform: translateX(-50%);
}




@media (max-width: 500px) {
    .opinionsSectionTitleTxt {
        font-size: 34px;
        padding: 0 20px;
    }
    .opinionsSectionTitleTxt::before {
        left: -14px;
    }
    
    .opinionsSectionTitleTxt::after {
        right: -14px;
    }
}


.testimonialsContainer{
    width: 80%;
    height: 80%;
}


.opinion_slide{
    width: 80%;
    height: 100%;
    display: flex !important;
    overflow: hidden;
}

@media (max-width: 1300px) {
    .opinion_slide{
        display: flex !important;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }
}

.firstPartOpinions {
    width: 40%;
    height: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    position: relative;
}

@media (max-width: 1300px) {
    .firstPartOpinions {
        width: fit-content;
        height: 50%;
    }
}

@media (max-width: 400px) {
    .firstPartOpinions {
        margin-top: 100px;
        margin-bottom: 75px;
        width: 80%;
        height: fit-content;
        justify-content: flex-start;
    }
    .testimonialsContainer{
        width: 80%;
        height: fit-content;
    
    }
}

.opinionImage {
    width: 345px;
    height: 465px;
    border-radius: 24px;
    position: relative;
}

@media (max-width: 500px) {
    .opinionImage {
        width: 245px;
        height: 365px;
    }
}


.opinion_img_1{
    background-image: url(images/Wojciech_opinia.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.opinion_img_2{
    background-image: url(images/Szymon_opinia.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}


.opinion_img_3{
    background-image: url(images/Bartek_opinia.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.opinion_img_4{
    background-image: url(images/Bal_absolwentow_opinia.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.opinion_img_5{
    background-image: url(images/Justyna_opinia.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.opinion_img_6{
    background-image: url(images/Antek_opinia.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}



.opinionImage::before,
.opinionImage::after {
    content: "";
    position: absolute;
    background-image: url(images/dots_img.png);
    background-size: cover;
    background-repeat: no-repeat;
}

.opinionImage::before {
    top: -15%; /* 1/3 wysokości obrazu */
    left: -17%; /* 2/3 szerokości obrazu */
    width: 100px;
    height: 210px;
    z-index: -1;
}

.opinionImage::after {
    top: 87%; /* 1/3 wysokości obrazu */
    left: 55%; /* 2/3 szerokości obrazu */
    width: 210px;
    height: 100px;
    z-index: -1;
}





.secondPartOpinions {
    width: 60%;
    height: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    position: relative;
}


@media (max-width: 1300px) {
    .secondPartOpinions {
        justify-content: center;
        align-items: center;
        width: fit-content;
        height: 40%;
    }
}

@media (max-width: 500px) {
    .secondPartOpinions {
        margin-bottom: 75px;
    }
}


.opinionDesc{
    height: fit-content;
    width: 80%;
    background-color: var(--lightgrey);
    border-radius: 1px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    max-width: 700px;
    border: 1px solid var(--blackRose);
    border-radius: 6px;

}



.opinionTitle{
    font-size: 23px;
    color: grey;
    font-weight: 400;
    font-family: var(--chillSimpleFont)
}

.opinionTxt{
    margin-top: 35px;
    font-size: 18px;
    color: var(--dark_grey);
    font-weight: bold;
    line-height: 25px;
    font-family: var(--chillSimpleFont);
}

.opinionClientName{
    margin-top: 35px;
    font-size: 30px;
    color: var(--intense_black);
    font-weight: bold;
    line-height: 25px;
    font-family: var(--chillSimpleFont);
}

.opinionClientHobby{
    margin-top: 15px;
    font-size: 17px;
    color: var(--grey_black);
    font-weight: 400;
    line-height: 25px;
    font-family: var(--chillSimpleFont);
}


@media (max-width: 800px) {
    .opinionTitle{
        font-size: 17px;
        color: grey;
        font-weight: 400;
        font-family: var(--chillSimpleFont);
    }
    
    .opinionTxt{
        margin-top: 15px;
        font-size: 11px;
        line-height: 17px;
    }
    
    .opinionClientName{
        margin-top: 15px;
        font-size: 23px;
    }
    
    .opinionClientHobby{
        margin-top: 5px;
        font-size: 14px;
        line-height: 15px;
    }
    


}




.swiper-slide-shadow-left,
.swiper-slide-shadow-right {
  display: none;
}

.opinions-slider-control {
  position: relative;
  bottom: 5rem;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.opinions-slider-control .swiper-button-next{
    left: 55% !important;
    transform: translate(-55%, 20%) !important;
}

.opinions-slider-control .swiper-button-prev{
    left: 45% !important;
    transform: translate(-45%, 20%) !important;
  }

@media (max-width: 1300px) {
    .opinions-slider-control .swiper-button-next{
        left: 60% !important;
        transform: translate(-60%, 65%) !important;
    }
    
    .opinions-slider-control .swiper-button-prev{
        left: 40% !important;
        transform: translate(-40%, 65%) !important;
    }
}

@media (max-width: 500px) {
    .opinions-slider-control .swiper-button-next{
        left: 70% !important;
        transform: translate(-70%, 69%) !important;

    }
    
    .opinions-slider-control .swiper-button-prev{
        left: 30% !important;
        transform: translate(-30%, 69%) !important;
    }
    
}

.opinions-slider-control .slider-arrow-opinions {
  background: var(--white);
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  filter: drop-shadow(0px 8px 24px rgba(18, 28, 53, 0.1));
}

.opinions-slider-control .slider-arrow-opinions .slider-icon {
    font-size: 1.4rem;
    color: #222224;
  }


.opinions-slider-control .slider-arrow-opinions::after {
  content: '';
}





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




.footerSection{
    width: 100%;
    height: 35vh;
    background-color: var(--lightGreenBackground);
    padding: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}


.footerFirstPart{
    width: 80%;
    height: 80%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
}


@media (max-width: 550px) {
    .footerSection{
        padding: 30px;
        height: 110vh;
    }
}

@media (max-width: 550px) {
    .footerSection{
        padding: 0px;
        padding-top: 20px;
        padding-left: 10px;
        padding-right: 10px;
    }
    .footerFirstPart{
        width: 90%;
        flex-direction: column;
        
    }
}

@media (max-width: 550px) {
    .footerSection{
        padding: 0px;
        padding-top: 15px;
        padding-left: 0px;
        padding-right: 0px;
    }
}

.copyRightContainer{
    padding: 10px;
    width: 25%;
    height: 100%;
}

.servicesContainer{
    padding: 10px;
    width: 25%;
    height: 100%;
}

.informationContainer{
    padding: 10px;
    width: 25%;
    height: 100%;
}

.socialLinksContainer{
    padding: 10px;
    width: 25%;
    height: 100%;
}


@media (max-width: 700px) {
    .copyRightContainer{
        width: 100%;
        padding: 0px;
    }
    
    .servicesContainer{
        width: 100%;
        padding: 0px;
    }
    
    .informationContainer{
        width: 100%;
        padding: 0px;
    }
    
    .socialLinksContainer{
        width: 100%;
        padding: 0px;
    }
}

.footerSecondPart{
    padding-left: 20px;
    width: 80%;
    height: 20%;
}

@media (max-width: 700px) {
    .footerSecondPart{
        padding-left: 0px;
        width: 90%;
    }
}

.footerUnderline{
    border-color: rgb(224, 224, 224);
}

.footerLegalTxtContainer{
    display: flex;
    justify-content: space-between;
    width: 100%;
    height: 50%;
    align-items: center;
}

.footerLegalTxtContainer div a{
    text-decoration: none;
    color: var(--grey_black);
}



.footerLegalName{
    position: relative;
    width: 100%;
    height: auto;
    font-size: 34px;
    font-family: var(--mainScreenSharpFont);
    color: black;
    
}

.footerLegalName::after{
    content: "";
    position: absolute;
    bottom: -5px; /* Odległość od tekstu */
    left: 0;
    width: 80px; /* Długość kreski */
    height: 2px; /* Grubość kreski */
    background-color: #000000; /* Kolor kreski */
    
}

@media (max-width: 550px) {
    .privacyPolicyContainer a{
        font-size: 14px;
        margin-bottom: 20px;
    }
    .tosPolicyContainer a{
        font-size: 14px;
        margin-bottom: 20px;
    }
    .infoEmail{
        margin-top: 20px;
    }
    .weedingShots{
        margin-top: 20px;
    }
    
}

.footerWebInfoBox{
    width: 100%;
    height: 80%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.websiteCreator{
    display: inline;
    margin-top: 5px;
    text-decoration: none;
}

.websiteCreator a{
    font-size: 16px;
    font-family: var(--roboto);
    color: var(--dark_grey);
    text-decoration: none;
}


.copyRightTxt a{
    font-size: 16px;
    font-family: var(--roboto);
    color: var(--dark_grey);
    text-decoration: none;
}

.boldTxt{
    font-weight: bold;
}


.footerServicesTitle{
    width: 100%;
    height: auto;
    font-size: 25px;
    font-family: var(--mainScreenSharpFont);
    color: black;
}

@media (max-width: 600px) {
    .footerServicesTitle{
        margin-bottom: 10px;
    }
}

.footerServicesContainer{
    width: 100%;
    height: 80%;
    font-size: 15px;
    font-family: var(--roboto);
    color: var(--dark_grey);
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: start;
}

.footerServicesContainer a div{
    margin-bottom: 4.5px;
}

.footerServicesContainer a{
    text-decoration: none;
    color: var(--grey_black);
}


.footerInformationTitle{
    width: 100%;
    height: auto;
    font-size: 25px;
    font-family: var(--mainScreenSharpFont);
    color: black;
    
}

@media (max-width: 500px) {
    .footerInformationTitle{
        margin-top: 25px;
    }
}

.infoContentBox{
    width: 100%;
    height: 80%;
    font-size: 16px;
    color: var(--dark_grey);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.infoBoxN1{
    margin-bottom: 20px;
    font-family: var(--roboto);
}


.infoBoxN1 div a{
    margin-bottom: 3px;
    text-decoration: none;
    color: var(--grey_black);
}

.infoBoxN2{
    margin-bottom: 20px;
    font-family: var(--roboto);
}

.infoBoxN2 div a{
    margin-bottom: 10px;
    text-decoration: none;
    color: var(--grey_black);
}

.infoBoxN1 div {
    margin-bottom: 3px;
}

.infoBoxN2 div {
    margin-bottom: 3px;
}


.socialLinksTitle{
    width: 100%;
    height: auto;
    font-size: 25px;
    font-family: var(--mainScreenSharpFont);
    color: black;
    
}

@media (max-width: 500px) {
    .socialLinksTitle{
        margin-top: 25px;
    }
    
}

.socialLinksContentBox{
    margin-top: 20px;
    width: 50%;
    height: 80%;
    display: flex;
    justify-content: space-between;
}
.socialLinksContentBox a{
    font-size: 16px;
    font-family: var(--roboto);
    color: var(--dark_grey);
    text-decoration: none;

}

.socialLinksContentBox i{
    font-size: 23px;
}

.footerLegalTxtContainer div{
    font-size: 16px;
    font-family: var(--mainScreenSharpFont);
    color: var(--grey_black);
}





@keyframes showElement {
    0% {
        opacity: 0;
        filter: blur(5px);
        transform: translateX(-100%);
    }
    100% {
        opacity: 1;
        filter: blur(0);
        transform: translateX(0);
    }
}




.back_to_top {
    position: fixed;
    bottom: 3%;
    left: 2%;
    width: 40px;
    height: 40px;
    line-height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    border-radius: 0.4rem;
    pointer-events: none;
    opacity: 0;
    box-shadow: 0 0 0.5rem rgb(231, 231, 231);
    transition: all 0.2s ease-in-out;
    transform: translateY(-30rem);
    z-index: 100000000;
  }
  ion-icon {
    color: var(--dark_grey);
    font-size: 30px;
  }
  .back_to_top.showGoUpBtn {
    opacity: 1;
    pointer-events: auto;
    cursor: pointer;
    transform: translateY(0rem);
  }
  


.cookieWebsiteContentBlock{
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.8);
    position: fixed;
    z-index: 9998;
    display: none;
}


.cookiesContainer{
    width: 480px;
    height: 325px;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9999;
    background-color: white;
    border-radius: 12px;
    display: none;
    flex-direction: column;
    overflow: hidden;
    justify-content: center;
    align-items: center;
}


.cookieImage{
    width: 100%;
    background-image: url(images/cookies_img_2.jpg);
    height: 35%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    
}

.cookieTxtBox{
    padding: 15px;
    width: 90%;
    height: 65%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    font-family:'Poppins';
}



.cookieTitle{
    margin-top: 10px;
    font-weight: bold;
    font-size: 26px;
    color: black;

}

.cookieUsageDesc {
    margin-top: 18px;
    font-size: 13px;
    color: var(--greyText);
    font-weight: 400;
    display: inline;
}

.cookieUsageDesc .cookiePolicyLink {
    text-decoration: none;
    color: black;
    font-weight: bold;
}


.confirmCookiesBtn{
    margin-top: 20px;
    width: 55%;
    height: 25%;
    border-radius: 24px;
    background-color: black;
    color: white;
}

.confirmCookiesBtn:hover{
    cursor: pointer;
}

@media (max-width: 550px) {
    .cookiesContainer{
        width: 336px;
        height: 227px;
    }
    .cookieImage{
        height: 40%;
        
    }
    .cookieTxtBox{
        padding-left: 8px;
        padding-right: 8px;
        padding-top: 4px;
        padding-bottom: 0px;
        width: 90%;
        height: 60%;
    }
    .cookieTitle{
        margin-top: 4px;
        font-size: 21px;
    }
    .cookieUsageDesc{
        margin-top: 8px;
        font-size: 11px;
        color: var(--greyText);
        font-weight: 400;
        justify-content: center ;
        align-items: center;
    }
    .confirmCookiesBtn{
        margin-top: 3px;
        font-size: 12px;
    }
    
    
}








.loader {
    --path: #2F3545;
    --dot: #ED1C24;
    --duration: 3s;
    width: 44px;
    height: 44px;
    position: relative;
  }
  .loader:before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    position: absolute;
    display: block;
    background: var(--dot);
    top: 37px;
    left: 19px;
    transform: translate(-18px, -18px);
    -webkit-animation: dotRect var(--duration) cubic-bezier(0.785, 0.135, 0.15, 0.86) infinite;
            animation: dotRect var(--duration) cubic-bezier(0.785, 0.135, 0.15, 0.86) infinite;
  }
  .loader svg {
    display: block;
    width: 100%;
    height: 100%;
  }
  .loader svg rect,
  .loader svg polygon,
  .loader svg circle {
    fill: none;
    stroke: var(--path);
    stroke-width: 10px;
    stroke-linejoin: round;
    stroke-linecap: round;
  }
  .loader svg polygon {
    stroke-dasharray: 145 76 145 76;
    stroke-dashoffset: 0;
    -webkit-animation: pathTriangle var(--duration) cubic-bezier(0.785, 0.135, 0.15, 0.86) infinite;
            animation: pathTriangle var(--duration) cubic-bezier(0.785, 0.135, 0.15, 0.86) infinite;
  }
  .loader svg rect {
    stroke-dasharray: 192 64 192 64;
    stroke-dashoffset: 0;
    -webkit-animation: pathRect 3s cubic-bezier(0.785, 0.135, 0.15, 0.86) infinite;
            animation: pathRect 3s cubic-bezier(0.785, 0.135, 0.15, 0.86) infinite;
  }
  .loader svg circle {
    stroke-dasharray: 150 50 150 50;
    stroke-dashoffset: 75;
    -webkit-animation: pathCircle var(--duration) cubic-bezier(0.785, 0.135, 0.15, 0.86) infinite;
            animation: pathCircle var(--duration) cubic-bezier(0.785, 0.135, 0.15, 0.86) infinite;
  }
  .loader.triangle {
    width: 48px;
  }
  .loader.triangle:before {
    left: 21px;
    transform: translate(-10px, -18px);
    -webkit-animation: dotTriangle var(--duration) cubic-bezier(0.785, 0.135, 0.15, 0.86) infinite;
            animation: dotTriangle var(--duration) cubic-bezier(0.785, 0.135, 0.15, 0.86) infinite;
  }
  
  @-webkit-keyframes pathTriangle {
    33% {
      stroke-dashoffset: 74;
    }
    66% {
      stroke-dashoffset: 147;
    }
    100% {
      stroke-dashoffset: 221;
    }
  }
  
  @keyframes pathTriangle {
    33% {
      stroke-dashoffset: 74;
    }
    66% {
      stroke-dashoffset: 147;
    }
    100% {
      stroke-dashoffset: 221;
    }
  }
  @-webkit-keyframes dotTriangle {
    33% {
      transform: translate(0, 0);
    }
    66% {
      transform: translate(10px, -18px);
    }
    100% {
      transform: translate(-10px, -18px);
    }
  }
  @keyframes dotTriangle {
    33% {
      transform: translate(0, 0);
    }
    66% {
      transform: translate(10px, -18px);
    }
    100% {
      transform: translate(-10px, -18px);
    }
  }
  @-webkit-keyframes pathRect {
    25% {
      stroke-dashoffset: 64;
    }
    50% {
      stroke-dashoffset: 128;
    }
    75% {
      stroke-dashoffset: 192;
    }
    100% {
      stroke-dashoffset: 256;
    }
  }
  @keyframes pathRect {
    25% {
      stroke-dashoffset: 64;
    }
    50% {
      stroke-dashoffset: 128;
    }
    75% {
      stroke-dashoffset: 192;
    }
    100% {
      stroke-dashoffset: 256;
    }
  }
  @-webkit-keyframes dotRect {
    25% {
      transform: translate(0, 0);
    }
    50% {
      transform: translate(18px, -18px);
    }
    75% {
      transform: translate(0, -36px);
    }
    100% {
      transform: translate(-18px, -18px);
    }
  }
  @keyframes dotRect {
    25% {
      transform: translate(0, 0);
    }
    50% {
      transform: translate(18px, -18px);
    }
    75% {
      transform: translate(0, -36px);
    }
    100% {
      transform: translate(-18px, -18px);
    }
  }
  @-webkit-keyframes pathCircle {
    25% {
      stroke-dashoffset: 125;
    }
    50% {
      stroke-dashoffset: 175;
    }
    75% {
      stroke-dashoffset: 225;
    }
    100% {
      stroke-dashoffset: 275;
    }
  }
  @keyframes pathCircle {
    25% {
      stroke-dashoffset: 125;
    }
    50% {
      stroke-dashoffset: 175;
    }
    75% {
      stroke-dashoffset: 225;
    }
    100% {
      stroke-dashoffset: 275;
    }
  }
  .loader {
    display: inline-block;
    margin: 0 16px;
  }







