@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@1,500&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}
/* 
nav {
    position: sticky;
    top: 0;
} */

.fas.fa-times {
    transform: scale(1.5);
    cursor: pointer;
}

:root{
    --body-color: #fff2f1;
    --bg-secondary-color: #d4d5da;
    --secondary-color: 128, 116, 116;
    --navbar-color: #fff;
    --text-color: #4f4444;
    --accessibility-primary: #003d69;
    --title-color: #3a3030;
    --normal-font-size: 1.2em;
    --span-color: #1e90ff;
    --primary-font: ;
    --title-font: ;

    /* accessibility */
    /* kontrast */
    --bg-reverse-color: #4f4444;
    --text-reverse-color: #fff2f1;

    --bg-dark-color: #000;
    --text-dark-color: #49ba91;
    --nav-dark-text-color: #e5e835;

    /* czcionka */
    --big-font-size: 1.5em;
    --bigger-font-size: 1.8em;
    
    /* odstęp liter i wyrazów */
    --spacing-medium: 8px;
    --letter-spacing: 3px;
    
    --spacing-big: 13px;
    --letter-spacing: 4px;

    /* odstęp linijek */
    --line-height-normal: 150%;
    --line-height-medium: 175%;
    --line-height-big: 200%;

    /* ustawienie tekstu */
    --text-normal: justify;
    --text-left: left;
    --text-right: right;
    --text-center: center;

    /* nasycenie */
    /* desaturacja(czarno biale) */
    --desaturacja-text: #fff;
    --desaturacja-bg: #333;
    --desaturacja-img-none: 0%;
    --desaturacja-img: grayscale(100%);
}

@media screen and (max-width: 968px) {
    :root {
      --normal-font-size: 1.05em;
      --big-font-size: 1.3em;
      --bigger-font-size: 1.5em;
    }
  }

/* kontrast */
.default-contrast {
    background-color: var(--body-color); 
    color: var(--text-color); 

    /* SECONDARY BG */
    /* background-color: #d4d5da; */
    /* TITLE COLOR
    /* --title-color: #3a3030; */
}

.low-contrast {
    background-color: var(--bg-reverse-color); 
    color: var(--text-reverse-color); 

    /* SECONDARY BG */
    /* background-color: #bec0c7; */
    /* KOLOR NIECH BEDZIE JAK W DEFAULT */
    /* TITLE COLOR
    /* --title-color: #403535; */
}

.high-contrast {
    background-color: var(--bg-dark-color);
    color: var(--text-dark-color); 
    /* SECONDARY BG */
    /* background-color: #eff0f2; */
    /* KOLOR ZOSTAJE JAK JEST */
    /* TITLE COLOR */
    /* --title-color: #f3f0f0; */
}

img {
    transition: filter 0.5s ease;
}

.low-contrast img {
    filter: brightness(1.2); 
}

.high-contrast img {
    filter: contrast(2) brightness(0.8); 
}

/* linki */
.highlight {
    color: red;
    text-decoration: underline var(--nav-dark-text-color) 3px;
    border-radius: 4px;
}

/* czcionka */
.default-size {
    font-size: var(--normal-font-size);
}

.big-size {
    font-size: var(--big-font-size);
}

.bigger-size {
    font-size: var(--bigger-font-size);
}




body{
    background-color: var(--body-color);
    text-align: justify;
    line-height: var(--line-height-normal);
    font-family: "Raleway", sans-serif;
}

img{
    filter: none;
}

a {
    text-decoration: none;
    color: var(--text-color);
    transition: background-color .3s ease, color .3s ease;
}

p{
    font-size: var(--normal-font-size);
}

h1, h2, h3, p, div, span{
    transition: all .3s ease;
  }

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    background-color: var(--navbar-color);
    color: var(--text-color);
    position: sticky;
    top: 0;
    height: 9vh;
    z-index: 999;
    transition: all .3s ease-in-out;
}

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

.navbar-logo img{
    height: 7.5vh;
    margin-left: 2rem;
}

.navbar-links {
    display: flex;
    list-style: none;
}

.navbar-links li {
    margin: 0 10px;
}

.navbar-links a {
    color: var(--text-color);
    font-size: var(--normal-font-size);
    padding: 5px 10px;
    border-radius: 4px;
    transition: background-color .3s ease;
}

.navbar-links a:hover {
    background-color: #555;
    color: var(--body-color);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 20;
}

.hamburger span {
    background-color: var(--text-color);
    height: 3px;
    width: 25px;
    margin: 4px 0;
    transition: all 0.3s ease;
}

.navbar-links-mobile {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 9svh;
    left: -100%;
    width: 350px;
    height: 91svh;
    background-color: var(--navbar-color);
    z-index: 1000;
    transition: left 0.3s ease;
    padding-top: 20px;
}

.navbar-links-mobile li {
    margin: 15px 0;
    text-align: center;
}

.navbar-links-mobile a {
    color: var(--text-color);
    font-size: var(--normal-font-size);
    transition: color 0.3s ease;
}

.navbar-links-mobile a:hover {
    color: #00aced;
}

.navbar.active .navbar-links-mobile {
    left: 0;
}


.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(10px, -10px);
}

.nav-item i{
    font-size: 90%;
}
/* Dropdown dla dużych ekranów */
.dropdown {
    list-style: none;
    margin: 0;
    padding: 0;
    position: absolute;
    top: calc(100% - 20px);
    background-color: #444;
    opacity: 0; 
    visibility: hidden;
    z-index: 1000;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: opacity .4s, visibility .4s;
}

.dropdown li a {
    display: flex;
    padding: 10px 20px;
    white-space: nowrap;
    color: white;
    font-size: var(--normal-font-size);
}

.dropdown li a:hover {
    background-color: var(--text-color);
}

.nav-item:hover .dropdown {
    opacity: 1;
    visibility: visible; 
}

.access{
    cursor: pointer;
    width: 2.3rem;
    height: 2.3rem;
    position: fixed;
    right: 3.5rem;
    bottom: 3.5rem;
    color: var(--accessibility-primary);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.access::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid var(--accessibility-primary);
    border-radius: 50%;
    opacity: 0.5;
    animation: ripple 1.5s infinite ease-out;
    z-index: -1;
}

.access i{
    font-size: 2.5rem;
    transition: all .3s ease-in;
}

.access i:hover{
    transform: scale(1.2);
}

.slider {
    position: relative;
    overflow: hidden;
    max-width: 1920px;
    max-height: 800px;
    z-index: 1;
}

.slides {
    position: relative;
    display: flex;
    width: 200%;
    height: 100%;
    transition: transform 0.5s ease-in-out;
}


.slide {
    width: 100%;
    height: 100%;
    background-size:contain;
    background-position: center;
}

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

.arrow {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    font-size: 2rem;
    padding: 8px 16px;
    cursor: pointer;
    z-index: 1000;
    border-radius: 50%;
}

.arrow-left {
    left: 20px;
    z-index: 1000;
}

.arrow-right {
    right: 20px;
    z-index: 1000;
}

.scroll-down{
    position: absolute;
    bottom: 20%;
    left: 50%;
    transform: translateX(-50%);
    cursor: pointer;
    text-align: center;
    z-index: 800;
}
  
.scroll-text{
    font-size: 1rem;
    color: var(--body-color);
    margin-bottom: 5px;
    display: block;
    text-align: center;
}
  
.scroll-icon{
    width: 30px;
    height: 50px;
    border: 2px solid var(--body-color);
    border-radius: 15px;
    position: relative;
    overflow: hidden;
    margin: auto;
}
  
.scroll-icon::after{
    content: '';
    width: 10px;
    height: 10px;
    background: var(--body-color);
    border-radius: 50%;
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-bounce 1.5s infinite;
}

.access-menu{
    display: flex;
    flex-direction: column;
    position: fixed;
    width: 350px;
    max-height: 92vh;
    background-color: var(--accessibility-primary);
    z-index: 900;
    transition: left 0.3s ease;
    padding-top: 20px;
    border-radius: 20px 0 0 20px;
    top: 50%;
    right: 0%;
    transform: translate(0%, -50%);
    display: block;
    overflow-y: auto;
}

.close-access{
    font-size: 2rem;
    position: fixed;
    right: .5rem;
    margin-right: 20px;
    color: var(--body-color);
}

.options{
    display: flex;
    flex-wrap: wrap;
    padding: 20px;
    margin-top: 1.2rem;
    justify-content: center;
    align-content: center;
}

.access-block{
    flex: 1 1 calc(50% - 20px);
    width: 100px;
    height: 120px;
    background-color: var(--body-color);
    margin: 1rem 10px 0 10px;
    padding: 10px;
    border-radius: 15px;
    text-align: center;
    align-items: center;
    display: flex;
    justify-content: center;
    flex-direction: column;
    box-shadow: inset -2px -2px 14px -4px rgba(51, 51, 51, 1);
}

.access-block:hover{
    box-shadow: inset -2px -2px 14px 1px rgba(51, 51, 51, 1);
    cursor: pointer;
}

.title, .icon i{
    margin-top: .5rem;
    font-size: var(--normal-font-size);
    color: var(--text-color);
}

.icon i{
    margin-top: 0;
}

.reset{
    margin-top: 1.7rem;
}

.reset{
    width: 60%;
    height: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.375rem;
    background-color: var(--navbar-color);
    padding: 1.2rem 0;
    transform: all .15s ease;
    font-size: var(--normal-font-size);
    box-shadow: inset -2px -2px 14px -4px rgba(51, 51, 51, 1);
}
  
.reset:hover{
    opacity: .9;
}

.reset i{
    margin-right: 1rem;
}

.zresetuj, .reset i{
    font-weight: 600;
    color: var(--text-color);
}

.section-title{
    text-align: center;
    font-size: 2.3em;
    margin-bottom: 2rem;
    padding-top: 2rem;
    color: var(--title-color);
    width: 100%;
}

.pracownie{
    padding: 2rem 1rem;
    margin-bottom: 2rem;
    
  }
.pracownie-container{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    max-width: 850px;
    margin: 0 auto;
}
  
.pracownia{
    border: 1px solid var(--bg-secondary-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    transition: transform .3s, box-shadow .3s;
}
  
.pracownia img{
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}
  
.pracownia h3{
    padding: 1rem;
}
  
.pracownia:hover{
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    background-image: linear-gradient(to bottom, #fff2f1, #fff0f3, #fceff7, #f7effb, #efeffe, #e7ecfe, #dee9fe, #d3e6fe, #c8defe, #bed5fd, #b5cdfc, #adc4fb);
}       
.about{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 2rem 10%;
    background-color: var(--bg-secondary-color);
}

.about-text{
    flex: 1 1 60%;
    padding: 1rem 3rem 1rem 0;
}

.about-text h3{
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    color: var(--title-color);
}

.about-text ol, .about-text p{
    padding-left: 2rem;
    margin: 1rem 0;
}

.about-text li{
    margin: 0.5rem 1.5rem;
}

.about-image{
    flex: 1 1 40%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
}

.about-image img{
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.team{
    height: auto;
    background-color: var(--bg2-color);
}

.row{
    display: flex;
    flex-wrap: wrap;
    padding: 2rem 1rem;
    text-align: center;
}

.column{
    width: 100%;
    padding: 0.5rem 0;
    display: flex;
}

.profile{
    box-shadow: 0 0 2.4rem rgba(25, 0, 58, 0.1);
    border: 2px solid var(--text-color);
    padding: 3.5rem 1rem;
    border-radius: 0.6rem;
    color: var(--p-color);
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 1;
}

.profile .img-container{
    width: 7rem;
    height: 7rem;
    background-color: var(--hover-color);
    padding: 0.5rem;
    border-radius: 50%;
    margin: 0 auto 2rem auto;
}

.profile:hover{
background-image: linear-gradient(to bottom, #fff2f1, #fff0f3, #fceff7, #f7effb, #efeffe, #e7ecfe, #dee9fe, #d3e6fe, #c8defe, #bed5fd, #b5cdfc, #adc4fb);}

.profile:hover .img-container{
    transform: scale(1.15);
}

.profile img{
    width: 100%;
    border-radius: 50%;
}
.profile h3{
    font-weight: 500;
}

.profile p{
    font-weight: 300;
    text-transform: uppercase;
    margin: 0.5rem 0 2rem 0;
    letter-spacing: 2px;
}

.footer{
    background-color: var(--bg-secondary-color);
    padding: 2rem 1rem;
    text-align: center;
    height: auto;
}

.footer-container{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
    max-width: 1200px;
    margin: auto;
}

.footer-contact, .footer-links, .footer-logo{
    flex: 1 1 calc(33.33% - 2rem);
    min-width: 250px; 
}

.footer-contact ul, .footer-links ul{
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact a, .footer-links a{
    color: var(--span-color);
}
.footer-contact a:hover, .footer-links a:hover{
    text-decoration: underline;
}

.creator{
    width: 100%;
    text-align: center;
    padding: 1rem;
}

.creator span, .creator i{
    color: var(--span-color);
}

.rodo-modal{
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.rodo-modal.active{
    display: flex;
}

.rodo-content{
    background: #fff;
    color: #333;
    padding: 2rem;
    border-radius: 8px;
    max-width: 500px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.rodo-content button{
    margin-top: 1rem;
    padding: 0.5rem 1rem;
    background-color: var(--span-color);
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.rodo-content button:hover{
    background-color: #0066cc;
}


.documents-page{
    max-width: 800px;
    margin: auto;
    padding: 2rem;
    min-height: 69vh;
}

.page-title{
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
    color: var(--text-color);
}

.documents-list{
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.document-item{
    display: flex;
    align-items: center;
    background: var(--body-color);
    padding: 1rem;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: box-shadow 0.3s;
}

.document-item:hover{
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
}

.document-icon{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff;
    margin-right: 1rem;
}

.document-icon i{
    font-size: 100%;
    color: var(--body-color);
}

.pdf-icon i{
    margin-right: -.4rem;
}

.pdf-icon{
    background-color: #e74c3c;
}

.doc-icon{
    background-color: #3498db;
}

.document-info h2{
    margin: 0;
    font-size: 1.2rem;
    color: var(--title-color);
}

.document-info p{
    margin: 0.2rem 0 0;
    font-size: 0.9rem;
    color: var(--text-color);
}

.download-button{
    margin-left: auto;
    padding: 0.5rem 1rem;
    background-color: var(--span-color);
    color: #fff;
    border-radius: 5px;
    font-size: 0.9rem;
    font-weight: bold;
    transition: background-color 0.3s;
}

.download-button:hover{
    background-color: #0066cc;
}



.gallery{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3em;
    padding: 20px;
    max-width: 60%;
    margin: 0 auto 2rem auto;
}

.gallery img{
    width: 100%;
    height: auto;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.gallery img:hover{
    transform: scale(1.05);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.modal{
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
}

.modal-content{
    max-width: 90%;
    max-height: 80%;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.caption{
    color: var(--body-color);
    text-align: center;
    margin-top: 10px;
}

.close{
    position: absolute;
    top: 20px;
    right: 30px;
    color: var(--body-color);
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
}

.close:hover{
    color: var(--span-color);
}

.contact-container{
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 69vh;
}

.contact{
    display: flex;
    max-width: 1200px;
    min-width: 700px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    overflow: hidden;
}

.info-section{
    flex: 1;
    padding: 30px;
    background-image: linear-gradient(to left, #c8defe, #bed5fd, #b5cdfc, #adc4fb);
    color: var(--text-color);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.info-section h2, .info-section h4{
    margin-bottom: 1rem;
}

.info-section p{
    margin: 10px 0;
    line-height: 1.6;
}

.info-section .icon i{
    font-size: 20px;
    margin-right: 10px;
    color: var(--span-color);
}

.info-item{
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.form-section{
    flex: 1;
    padding: 30px;
    position: relative;
}

.form-section h2{
    margin-bottom: 20px;
    font-size: 24px;
}

form{
    display: flex;
    flex-direction: column;
}

input, button, textarea{
    padding: 12px;
    margin-bottom: 15px;
    font-size: 16px;
    border-radius: 5px;
    border: 1px solid #ccc;
}

input:focus{
    border-color: var();
    outline: none;
    box-shadow: 0 0 5px rgba(255, 102, 0, 0.4);
}

button{
    background-color: var(--span-color);
    color: var(--text-color);
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 2rem;
}

button:hover{
    background-color: #adc4fb;
}

.lab{
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 69vh;
    padding: 20px;
}

.lab-container{
    display: flex;
    max-width: 1200px;
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 1px 4px 24px -10px rgba(0, 0, 0, 1);
}

.image-lab{
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.image-lab img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.text-lab{
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.text-lab h2{
    margin-bottom: 20px;
}

.text-lab p{
    line-height: 1.6;
}

.popup{
    position: fixed;
    bottom: 20px;
    left: 20px;
    background-color: #d4d5da;    
    box-shadow: 1px 4px 24px -10px rgba(0, 0, 0, 1);
    border-radius: 8px;
    padding: 20px;
    display: none;
    z-index: 900;
}

.popup-content{
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.popup-content p{
    margin-bottom: 20px;
}

.popup-content a{
    margin: 5px;
    padding: 10px 20px;
    cursor: pointer;
    border: none;
    border-radius: 5px;
}

#accept-btn {
    background-color: var(--span-color);
    color: var(--body-color);
}


@media (max-width: 768px){
    .navbar{
        min-height: 9svh;
    }
    .navbar-links{
        display: none;
    }
    .hamburger{
        display: flex;
    }
    .access{
        right: 2.4rem;
        bottom: 2rem;
    }
    .arrow{
        font-size: 1.5rem;
    }
    .slider{
        height: 91svh;
    }
    .slide{
        background-size:cover;
        background-position: left;
    }
    .slide img{
        object-position: -3rem;
        object-fit: cover; 
    }
    .arrow{
        top: 50%;
    }
    .scroll-down{
        bottom: 20px;
    }
    .access-menu{
        height: auto;
        max-height: 90svh;
        width: 80%;
        margin-top: 3vh;
    }
    .section-title{
        line-height: 1.1em;
    }
    .about{
        flex-direction: column;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        padding: 2rem 0;
    }
    .about-text{
        flex: 1 1 100%;
        word-wrap: break-word;
        overflow-wrap: break-word;
        font-size: clamp(16px, 4vw, 24px);
        line-height: 1.5em;
    }
    .about-image{
        flex: 1 1 100%;
    }
    .about-image img{
        height: 30rem;
        max-width: 100%;
        height: auto;
    }
    .footer{
        height: auto;
    }
    .footer-container{
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    .footer-contact, .footer-links, .footer-logo{
        flex: 1 1 100%;
    }
    .contact{
        flex-direction: column;
    }
    .lab-container{
        flex-direction: column;
    }
    .image-lab, .text-lab{
        flex: unset;
        width: 100%;
    }
    .image-lab{
        height: 250px;
    }
}

@media screen and (min-width: 768px){
    .team{
      padding: 1rem 7rem;
    }
    .price-list .title{
        margin-top: 3rem;
    }
  }

@media screen and (min-width: 992px){
    .team{
      padding: 1rem;
    }
    .profile{
      padding: 5rem 1rem;
    }
    .column{
      flex: 0 0 33.33%;
      max-width: 33.33%;
      padding: 0 1rem;
    }
  }

@media (max-width: 600px){
    .document-item{
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .document-info{
        margin-top: 1.1rem;
    }
    .document-info p{
        padding-top: .5rem;
    }
    .download-button{
        margin-top: 1rem;
        margin-left: 0;
        width: 100%;
        text-align: center;
    }
}

@keyframes ripple{
    0% {
        transform: scale(1);
        opacity: 0.5;
    }
    100% {
        transform: scale(2);
        opacity: 0; 
    }
}
  
@keyframes scroll-bounce{
    0% {
      top: 5px;
      opacity: 1;
    }
    50% {
      top: 30px;
      opacity: 0.5;
    }
    100% {
      top: 5px;
      opacity: 1;
    }
}