

: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;
    --SuperLightGrey: #F5F5F5;
    --lightGreenBackground: #F4F4F4;
    --blackRose: #0E100F;
    --elegantSharpFont: 'Oswald';
    --simplePleasentFont: 'Open Sans';
    --cinematicFont: 'Monoton';
    --mainScreenSharpFont: 'Playfair Display';
    --chillSimpleFont: 'Comfortaa';
    --roboto: 'roboto';
    --poopins: 'Poppins';
}


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

@media (max-width: 500px) {
    body{
        font-size: 12px;
    }
    
}

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

.articleSection{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.firstPartSection{
    width: 100%;
    height: 31.25em; /* 500px */
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.websiteValueContentContainer{
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.secondPartSection{
    width: 100%;
    height: 75%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
    max-width: 1920px;
}

.articleTxtContainer{
    width: 50%;
    height: 100%;
    padding: 1.5625em; /* 25px */
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    margin-bottom: 4.6875em; /* 75px */
    background-color: white;
}

@media (max-width: 1300px) {
    .articleTxtContainer{
        width: 70%;
        height: 100%;
    }
}

@media (max-width: 900px) {
    .articleTxtContainer{
        width: 80%;
        height: 100%;
    }
}

@media (max-width: 800px) {
    .articleTxtContainer{
        width: 95%;
        height: 100%;
    }
}

@media (max-width: 600px) {
    .articleTxtContainer{
        padding-left: 1.5625em; /* 25px */
        padding-right: 1.5625em; /* 25px */
        padding-top: 1.25em; /* 20px */
        padding-bottom: 1.25em; /* 20px */
        width: 100%;
        height: 100%;
        transform: scale(1);
    }
}



.hashtagContainer{
    width: 100%;
    height: fit-content;
    display: flex;
    gap: 0.9375em; /* 15px */
}

.hashtag{
    width: fit-content;
    height: fit-content;
    padding-top: 1em; /* 12px */
    padding-bottom: 1em; /* 12px */
    padding-left: 1.125em; /* 18px */
    padding-right: 1.125em; /* 18px */
    width: fit-content;
    background-color: var(--grey_black);
    font-family: var(--roboto);
    font-size: 0.8125em; /* 13px */
    color: var(--SuperLightGrey);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 1.5em; /* 24px */
}

.reactionsContainer{
    margin-top: 3.2em;
    width: 100%;
    height: 50px;
    display: flex;
    gap: 1.6em; /* 15px */
}

@media (max-width: 500px) {
    .reactionsContainer{
        margin-top: 3.2em;
        width: 100%;
        height: 50px;
        display: flex;
        gap: 1em; /* 15px */
    } 
}

.singleReactionBox{
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 100ms;
    width: 3.45em;
    padding: 5px;
}

.singleReactionBox:hover{
    background-color: var(--lightgrey);
    border-radius: 24px;
    cursor: pointer;
    border: 1px solid var(--greyText);
}

.counter_style{
    font-size: 17px;
    font-family: var(--roboto);
    font-weight: 300;
    color: var(--intense_black);
    margin-left: 5px;
}

.reactionImg{
    width: 24px;
    height: 24px;
}

.reacted{
    background-color: var(--lightgrey);
    border-radius: 24px;
    cursor: pointer;
    border: 1px solid var(--greyText);
}



.articleTitleContainer{
    width: 100%;
    height: fit-content;
    display: flex;
    align-items: center;
}

.articleTitleTxt{
    margin-top: 0.2em; /* 50px */
    font-family: var(--roboto);
    font-weight: 500;
    font-size: 2.8125em; /* 45px */
    letter-spacing: 0px;
    color: var(--intense_black);
}

@media (max-width: 500px) {
    .articleTitleTxt{
        margin-top: 0.325em; /* 50px */
    }
}

.titleDesc{
    margin-top: 1.5625em; /* 25px */
    font-size: 1.0625em; /* 17px */
    line-height: 1.1875em; /* 19px */
    font-weight: 300;
    color: black;
    font-family: var(--roboto);
}

.articleCreatorContainer{
    margin-top: 1.5625em; /* 25px */
    width: 100%;
    height: fit-content;
    display: flex;
    align-items: center;
    border-bottom: 0.0625em solid var(--greyText); /* 1px */
    border-top: 0.0625em solid var(--greyText); /* 1px */
    padding: 0.3125em; /* 5px */
}

.articleCreatorImage{
    width: 3.125em; /* 50px */
    height: 3.125em; /* 50px */
    border-radius: 50%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.creatorDetailsContainer{
    margin-left: 0.9375em; /* 15px */
    width: fit-content;
    height: 3.125em; /* 50px */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.creatorName{
    font-size: 1.25em; /* 20px */
    font-weight: bold;
    color: black;
    font-family: var(--roboto);
}

.articleWriteDate{
    margin-top: 0.3125em; /* 5px */
    font-size: 0.875em; /* 14px */
    font-weight: 300;
    color: black;
    font-family: var(--roboto);
}

.articleTextContainer{
    margin-top: 1.5625em; /* 25px */
    font-size: 1.0625em; /* 17px */
    line-height: 1.1875em; /* 19px */
    font-weight: 300;
    color: black;
    font-family: var(--roboto);
}

.articleBoldSectionTitle{
    margin-top: 1.5625em; /* 25px */
    font-weight: bold;
    color: var(--intense_black);
    font-size: 1.4375em; /* 23px */
    font-family: var(--roboto);
}

.articleImage{
    margin-top: 1.5625em; /* 25px */
    margin-bottom: 1.5625em; /* 25px */
    width: 100%;
    height: 31.25em; /* 500px */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 1em; /* 16px */
}

@media (max-width: 600px) {
    .articleImage{
        height: 15.625em; /* 250px */
    }    
}

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