

: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;
    --veryLightGrey: #F7F8F9;
    --grassGrenn: #02bc67;
    --phOrange: #ff9145;
    --IntenseBlue: #0c66ff;
    --borderLightgrey: lightgray;
    --elegantSharpFont: 'Oswald';
    --simplePleasentFont: 'Open Sans';
    --cinematicFont: 'Monoton';
    --mainScreenSharpFont: 'Playfair Display';
    --chillSimpleFont: 'Comfortaa';
    --roboto: 'roboto';
    --poopins: 'Poppins';
    --noto: 'Noto Sans';


}

.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;
}

/* 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;
}

@media (max-width: 750px) {
    body{
        font-size: 14px;
    }
    
}



.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;
}

.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 lightgray;
}

@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: #0c66ff;
    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 */


.aboutMeSection{
    width: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
    background-color: var(--veryLightGrey);
}

.firstPart{
    margin-top: 50px;
    width: 70%;
    height: fit-content;
    max-width: 1350px;
    background-color: white;
    border: 1px solid lightgray;
    box-shadow: 0px 0px 8px rgb(230, 229, 229);
    border-radius: 6px;
    overflow: hidden;

}


.aboutMeContentContainer{
    width: 100%;
    height: 100%;
    display: flex;
}


.imageBox {
    width: 50%;
    height: 550px;
    background-image: url(images/kompresja25.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #f0f0f0; /* Tymczasowe tło */
}

.myDetailsBox{
    width: 50%;
    height: 550px;
    box-sizing: border-box;
    padding: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

@media (max-width: 1100px) {
    .firstPart{
        margin-top: 100px;
    }
    .imageBox{
        width: 100%;
        height: 350px;
    }
    .myDetailsBox{
        width: 100%;
        height: 65%;
    }

    .aboutMeContentContainer{
        display: flex;
        flex-direction: column;
    }
}


@media (max-width: 500px) {
    .firstPart{
        width: 94%;
    }
    
}

.titleBox{
    width: 100%;
    display: inline;
    font-size: 2.2em;
    font-weight: 600;
    color: var(--blackRose);
    font-family: var(--poopins);
}

.titleSpecialWord{
    color: #eb5b5d;
}



.descBox{
    width: 100%;
    display: block;
    height: fit-content;
}

.descBox p{
    margin-top: 25px;
    font-size: 1em;
    font-weight: 300;
    color: var(--grey_black);
    font-family: var(--noto);
    line-height: 19px;
}

.secondPart{
    margin-top: 70px;
    width: 70%;
    height: fit-content;
    max-width: 1350px;
    background-color: white;
    border: 1px solid lightgray;
    box-shadow: 0px 0px 8px rgb(230, 229, 229);
    border-radius: 6px;
    overflow: hidden;
}

.skillsLevelContainer{
    width: 100%;
    height: 100%;
    display: flex;
}


.firstPartLvlBox {
    width: 60%;
    height: 100%;
}

.secondPartLvlBox{
    width: 40%;
    height: 100%;
    padding: 3em;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;

}

.gridContainerSkillsStats {
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1.5fr 1fr;
    grid-template-areas: 
        "item1 item2"
        "item3 item3";
    box-sizing: border-box;
}


.item1 {
    grid-area: item1;
}

.item2 {
    grid-area: item2;
}

.item3 {
    grid-area: item3;
}

.circleStatBox{
    width: 100%;
    height: 100%;
    padding: 15px;
    box-sizing: border-box;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}


.circleStatElement {
    margin-top: 35px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: conic-gradient(
        var(--grassGrenn) 0% 15%, 
        var(--veryLightGrey) 15% 17%,
        var(--grassGrenn) 17% 32%,
        var(--veryLightGrey) 32% 34%,
        var(--grassGrenn) 34% 49%,
        var(--veryLightGrey) 49% 51%,
        var(--grassGrenn) 51% 66%,
        var(--veryLightGrey) 66% 68%,
        var(--grassGrenn) 68% 83%,
        var(--veryLightGrey) 83% 85%,
        var(--grassGrenn) 85% 94%,
        var(--veryLightGrey) 94% 100%
    );
    
    border: 1px solid var(--veryLightGrey);
    box-shadow: 0px 0px 100px rgb(230, 229, 229);
    padding: 15px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.circleStatElement::before {
    content: '';
    width: 195px; /* Adjusted to create inner circle */
    height: 195px;
    background-color: white;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.averageScoreBox {
    z-index: 1; /* Make sure the score is on top */
    width: 60%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.averageScore {
    font-size: 3em;
    font-family: var(--roboto);
    color: var(--grassGrenn);
    font-weight: 800;
}

.averageTitle {
    font-size: .9em;
    color: lightgray;
    font-weight: 500;
    font-family: var(--roboto);
}









.statsImage{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: visible;
}

.statisticsImage{
    margin-bottom: 25px;
    width: 200px;
    height: 220px;
    background-image: url(images/skillsImageStairs.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.statsTextContainer{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    box-sizing: border-box;
    padding-left: 4em;
    padding-right: 4em;
    padding-top: 2em;
}

.statsDescTitle{
    width: 100%;
    height: fit-content;
    font-size: 1.9em;
    font-family: var(--roboto);
    font-weight: bold;
}

.statsDesc{
    margin-top: 15px;
    width: 100%;
    height: fit-content;
    font-size: 1em;
    font-family: var(--noto);
    font-weight: 300;
    line-height: 19px;
}

@media (max-width: 1100px) {
    .skillsLevelContainer{
        display: flex;
        flex-direction: column;
    }
    .firstPartLvlBox {
        width: 100%;
        height: 60%;
    }
    .secondPartLvlBox{
        width: 100%;
        height: 40%;
    }
}


@media (max-width: 500px) {
    .secondPart{
        width: 94%;
    }
    .statsTextContainer{
        padding-left: 0.5em;
        padding-right: 0.5em;
    }
    .statisticsImage{
        display: none;
    }

    .gridContainerSkillsStats {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 1.5fr 1fr;
        grid-template-areas: 
            "item1 item1"
            "item3 item3";
    }
    
}



.skillBarContainer{
    width: 100%;
    height: fit-content;
    display: flex;
    align-items: center;
    flex-direction: column;
    margin-bottom: 2.3em;

}

.skillTextContainer{
    width: 100%;
    display: flex;
    justify-content: space-between;
    height: fit-content;
}

.skillName{
    font-size: 1.1em;
    font-family: var(--roboto);
    color: var(--blackRose);
    font-weight: 700;
}

.skillLevel{
    font-size: 1.1em;
    font-family: var(--roboto);
    color: var(--blackRose);
    font-weight: 300;
}

.skillBarFufill{
    margin-top: 0.9em;
    width: 100%;
    height: 6.5px;
    background-color: var(--lightgrey);
    border-radius: 3px;
    position: relative;
    z-index: 1;
}

.skillBarFufill::after{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background-color: #02bc67;
    z-index: 2;
    border-radius: 2px;
}


/* W procentach poziomy twoich umiejętności */

.rowBar_1::after{
    width: 100%;
}

.rowBar_2::after{
    width: 85%;
}

.rowBar_3::after{
    width: 90%;
}

.rowBar_4::after{
    width: 95%;
}

.rowBar_5::after{
    width: 100%;
}

.rowBar_6::after{
    width: 90%;
}





.thirdPart{
    margin-top: 70px;
    width: 70%;
    max-width: 1350px;
    margin-bottom: 75px;
}

.myValueBox{
    width: 100%;
    display: flex;
    flex-direction: column;
}

.valueTitle{
    width: 100%;
    height: 15%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.5em;
    font-family: var(--roboto);
    font-weight: 600;
    color: black;
    margin-bottom: 25px;
}

.gridContainer{
    width: 100%;
    height: 85%;
    display: grid;
    grid-template-columns: repeat(auto-fit, 325px);
    grid-template-rows: repeat(auto-fit, auto-fit);
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.card{
    height: 375px;
    background-color: white;
    border: 2px solid lightgray;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-sizing: border-box;
    box-shadow: 0px 0px 8px lightgray;
    transition: 150ms;
}

.card:hover{
    border: 2px solid var(--IntenseBlue);
}

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

.cardIcon{
    width: 65px;
    height: 65px;
    padding: 15px;
    border: 3px solid var(--grassGrenn);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cardIcon svg{
    transform: scale(2.2);
}

.cardTitle{
    width: 100%;
    height: 20%;
    font-size: 1.65em;
    color: var(--blackRose);
    font-family: var(--roboto);
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    box-sizing: border-box;
    text-align: center;
}

.cardDesc{
    width: 100%;
    height: 35%;
    font-size: 1em;
    color: var(--blackRose);
    font-family: var(--noto);
    font-weight: 300;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 15px;
    box-sizing: border-box;
    line-height: 19px;
}


/* 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: 16px;
    font-family: var(--roboto);
    color: var(--dark_grey);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.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;
        display: flex;
        justify-content: center ;
        align-items: center;
    }
    .confirmCookiesBtn{
        margin-top: 3px;
        font-size: 12px;
    }
    
    
}








.loader {
    --path: #2F3545;
    --dot: #FA6F71;
    --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;
  }
