*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}


:root{
    --Night-Black: #0E0F12;
    --Palatine-Blue: #0038FF;
    --Brandeis-Blue: #1C79FF;
    --Light-Grey: #F5F5F7;
    --White: #FAFAFC;
    --Mid-Grey: #EDEEF2;
}
body{
    font-family: 'Poppins', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', sans-serif;
    overflow-x: hidden;
}


/* Animations */

@keyframes fadeInUp {
    from {
        transform: translate3d(0,40px,0)
    }

    to {
        transform: translate3d(0,0,0);
        opacity: 1
    }
}

@-webkit-keyframes fadeInUp {
    from {
        transform: translate3d(0,40px,0)
    }

    to {
        transform: translate3d(0,0,0);
        opacity: 1
    }
}

.animated {
    opacity: 0;
    animation-name: fadeInUp;
    animation-duration: 1s;
    animation-fill-mode: both;
}

.fadein {
    opacity: 0;
}

/* End of Animations */

.active-link{
    max-width: max-content;
}
.active-link:hover{
    color: var(--Palatine-Blue);
    transition: all 200ms ease-in-out;
}
.button-black{
    padding: 18px 36px;
    background-color: var(--Night-Black);
    position: relative;
    text-align: center;
    overflow: hidden;
    justify-content: center;
    border-radius: 50px;
    cursor: pointer;
    width: max-content;
    color: var(--White);
    margin: 30px auto;
    display: flex;
    -webkit-text-fill-color: #FAFAFC;
}
.text-button{
    position: relative;
    z-index: 1;
    font-weight: 600;
    color: #FAFAFC;
    color: var(--White);
    -webkit-text-fill-color: #FAFAFC;
    transition: all 200ms;    
}
.wave {
    position: absolute;
    width: 100%;
    height: 100%;
    top: calc(100% + 22px);
    left: 0;
    background-color: var(--Palatine-Blue);
    transition: all 1s;
    border-radius: 0 0 30px 30px;
}

.wave::before{
    content: "";
    position: absolute;
    width: 100%;
    height: 22px;
    background-image: url(img/wave.svg);
    top: -22px;
    left: 0;
    animation: wavy 0.5s linear infinite;
}
@keyframes wavy{
    0%{
        background-position-x: 0;
    }
    100%{
        background-position-x: 112px;
    }
}
.button-black:hover .wave{
    top: 0;
}
.button-black:hover{
    color: var(--White);
    color: #FAFAFC;
}

.button-blue:hover .text-button{
    position: relative;
    z-index: 1;
    font-weight: 600;
    color: var(--Palatine-Blue);
    -webkit-text-fill-color: #0038FF;
}


.button-blue{
    padding: 18px 36px;
    background-color: var(--Palatine-Blue);
    position: relative;
    text-align: center;
    overflow: hidden;
    justify-content: center;
    border-radius: 50px;
    cursor: pointer;
    color: var(white);
    width: max-content;
    color: var(--White);
    margin: 30px auto;
    display: flex;
    -webkit-text-fill-color: #FAFAFC;
}

.wave-w {
    position: absolute;
    width: 100%;
    height: 100%;
    top: calc(100% + 22px);
    left: 0;
    background-color: var(--White);
    transition: all 1s;
    border-radius: 0 0 30px 30px;
}

.wave-w::before{
    content: "";
    position: absolute;
    width: 100%;
    height: 22px;
    background-image: url(img/wave-w.svg);
    top: -22px;
    left: 0;
    animation: wavy 0.3s linear infinite;
}

.button-blue:hover .wave-w{
    top: 0;
}
.button-blue:hover{
    color: var(--Palatine-Blue);
}





.cta-text{
    max-width: 500px;
    margin: auto;
}
.uppercase{
    text-transform: uppercase;

}
.text-box-center{
    text-align: center;
    justify-content: center;
}
.blue-text{
    color: var(--Palatine-Blue);
}
.lightblue-text{
    color: var(--Brandeis-Blue);
}

.p-w{
    max-width: 600px;
}
/* Button media */





/* End of Button media */


/* Sheet media */
@media only screen and (min-width: 300px) and (max-width: 480px) {

    .space-b-container{
        justify-content: center;
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 60px;
    }
    .sheet-hero{
        padding: 0px 4%;
        max-width: 1440px;
        min-height: 100vh;
        display: flex;
        align-items: center;
        margin: auto;
        justify-content: center;
        flex-direction: column;
    }
    .sheet-hero-flex{
        padding: 140px 4%;
        max-width: 1440px;
        min-height: max-content;
        display: flex;
        margin: auto;
        justify-content: center;
        flex-direction: column;
    }
    .sheet-basic{
        padding: 0px 4%;
        max-width: 1440px;
        min-height: 100vh;
        display: flex;
        align-items: center;
        margin: auto;
        justify-content: center;
        flex-direction: column;
    }
    .sheet-basic-s{
        padding: 50px 4%;
        max-width: 1440px;
        height: 600px;
        display: flex;
        align-items: center;
        margin: auto;
        justify-content: start;
        flex-direction: column;
    }
    .sheet-basic-m{
        padding: 0px 4%;
        max-width: 1440px;
        height: 550px;
        display: flex;
        align-items: center;
        margin: auto;
        justify-content: center;
        flex-direction: column;
    }
    .sheet-cta{
        padding: 50px 4% 140px;
        max-width: 1440px;
        height: max-content;
        display: flex;
        align-items: center;
        margin: auto;
        justify-content: center;
        flex-direction: column;
    }
    .sheet-flex{
        padding: 50px 4%;
        max-width: 1440px;
        min-height: max-content;
        display: flex;
        align-items: center;
        margin: auto;
        justify-content: center;
        flex-direction: column;
    }
    .sheet-flex-l{
        padding: 50px 4%;
        max-width: 1440px;
        min-height: max-content;
        display: flex;
        align-items: center;
        margin: auto;
        justify-content: center;
        flex-direction: column;
    }

    .text-basic{
        max-width: 100%;
    }
}
@media only screen  and (min-width: 480px) and (max-width: 768px) {
 
    .space-b-container{
        justify-content: space-between;
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 60px;
    }
    .sheet-hero{
        padding: 0px 7%;
        max-width: 1440px;
        min-height: 100vh;
        display: flex;
        align-items: center;
        margin: auto;
        justify-content: center;
        flex-direction: column;
    }
    .sheet-hero-flex{
        padding: 140px 7%;
        max-width: 1440px;
        min-height: max-content;
        display: flex;
        margin: auto;
        justify-content: center;
        flex-direction: column;
    }
    .sheet-basic{
        padding: 0px 7%;
        max-width: 1440px;
        min-height: 100vh;
        display: flex;
        align-items: center;
        margin: auto;
        justify-content: center;
        flex-direction: column;
    }
    .sheet-basic-s{
        padding: 50px 7%;
        max-width: 1440px;
        height: max-content;
        display: flex;
        align-items: center;
        margin: auto;
        justify-content: center;
        flex-direction: column;
    }
    .sheet-basic-m{
        padding: 0px 7%;
        max-width: 1440px;
        height: 550px;
        display: flex;
        align-items: center;
        margin: auto;
        justify-content: center;
        flex-direction: column;
    }
    .sheet-cta{
        padding: 50px 7% 140px;
        max-width: 1440px;
        height: max-content;
        display: flex;
        align-items: center;
        margin: auto;
        justify-content: center;
        flex-direction: column;
    }
    .sheet-flex{
        padding: 50px 7%;
        max-width: 1440px;
        min-height: max-content;
        display: flex;
        align-items: center;
        margin: auto;
        justify-content: center;
        flex-direction: column;
    }
    .sheet-flex-l{
        padding: 50px 2%;
        max-width: 1440px;
        min-height: max-content;
        display: flex;
        align-items: center;
        margin: auto;
        justify-content: center;
        flex-direction: column;
    }

    .text-basic{
        max-width: 100%;
    }
}
@media only screen and (min-width: 769px) and (max-width: 1024px) {
 
    
    .space-b-container{
        justify-content: space-between;
        width: 100%;
        display: flex;
        align-items: center;
        gap: 60px;
    }
    .sheet-hero{
        padding: 0px 7%;
        max-width: 1440px;
        min-height: 100vh;
        display: flex;
        align-items: center;
        margin: auto;
        justify-content: center;
        flex-direction: column;
    }
    .sheet-hero-flex{
        padding: 140px 7%;
        max-width: 1440px;
        min-height: max-content;
        display: flex;
        margin: auto;
        justify-content: center;
        flex-direction: column;
    }
    .sheet-basic{
        padding: 0px 7%;
        max-width: 1440px;
        min-height: 100vh;
        display: flex;
        align-items: center;
        margin: auto;
        justify-content: center;
        flex-direction: column;
    }
    .sheet-basic-s{
        padding: 0px 7%;
        max-width: 1440px;
        height: 400px;
        display: flex;
        align-items: center;
        margin: auto;
        justify-content: center;
        flex-direction: column;
    }
    .sheet-basic-m{
        padding: 0px 7%;
        max-width: 1440px;
        height: 550px;
        display: flex;
        align-items: center;
        margin: auto;
        justify-content: center;
        flex-direction: column;
    }
    .sheet-cta{
        padding: 50px 7% 140px;
        max-width: 1440px;
        height: max-content;
        display: flex;
        align-items: center;
        margin: auto;
        justify-content: center;
        flex-direction: column;
    }
    .sheet-flex{
        padding: 50px 7%;
        max-width: 1440px;
        min-height: max-content;
        display: flex;
        align-items: center;
        margin: auto;
        justify-content: center;
        flex-direction: column;
    }
    .sheet-flex-l{
        padding: 50px 2%;
        max-width: 1440px;
        min-height: max-content;
        display: flex;
        align-items: center;
        margin: auto;
        justify-content: center;
        flex-direction: column;
    }

    .text-basic{
        max-width: 100%;
    }
}
@media only screen and (min-width: 1025px) and (max-width: 1280px) {
    .space-b-container{
        justify-content: space-between;
        width: 100%;
        display: flex;
        align-items: center;
        gap: 60px;
    }
    .sheet-hero{
        padding: 0px 7%;
        max-width: 1440px;
        min-height: 100vh;
        display: flex;
        align-items: center;
        margin: auto;
        justify-content: center;
        flex-direction: column;
    }
    .sheet-hero-flex{
        padding: 140px 7%;
        max-width: 1440px;
        min-height: max-content;
        display: flex;
        margin: auto;
        justify-content: center;
        flex-direction: column;
    }
    .sheet-basic{
        padding: 0px 7%;
        max-width: 1440px;
        min-height: 100vh;
        display: flex;
        align-items: center;
        margin: auto;
        justify-content: center;
        flex-direction: column;
    }
    .sheet-basic-s{
        padding: 0px 7%;
        max-width: 1440px;
        height: 400px;
        display: flex;
        align-items: center;
        margin: auto;
        justify-content: center;
        flex-direction: column;
    }
    .sheet-basic-m{
        padding: 0px 7%;
        max-width: 1440px;
        height: 550px;
        display: flex;
        align-items: center;
        margin: auto;
        justify-content: center;
        flex-direction: column;
    }
    .sheet-cta{
        padding: 50px 7% 140px;
        max-width: 1440px;
        height: max-content;
        display: flex;
        align-items: center;
        margin: auto;
        justify-content: center;
        flex-direction: column;
    }
    .sheet-flex{
        padding: 50px 7%;
        max-width: 1440px;
        min-height: max-content;
        display: flex;
        align-items: center;
        margin: auto;
        justify-content: center;
        flex-direction: column;
    }
    .sheet-flex-l{
        padding: 50px 2%;
        max-width: 1440px;
        min-height: max-content;
        display: flex;
        align-items: center;
        margin: auto;
        justify-content: center;
        flex-direction: column;
    }

    .text-basic{
        max-width: 500px;
    }
  
    
}
@media only screen and (min-width: 1280px) {
    .space-b-container{
        justify-content: space-between;
        width: 100%;
        display: flex;
        align-items: center;
        gap: 60px;
    }
    .sheet-hero{
        padding: 0px 7%;
        max-width: 1440px;
        min-height: 800PX;
        display: flex;
        align-items: center;
        margin: auto;
        justify-content: center;
        flex-direction: column;
    }
    .sheet-hero{
        padding: 0px 7%;
        max-width: 1440px;
        min-height: 900px;
        display: flex;
        align-items: center;
        margin: auto;
        justify-content: center;
        flex-direction: column;
    }
    .sheet-hero-flex{
        padding: 140px 7%;
        max-width: 1440px;
        min-height: max-content;
        display: flex;
        margin: auto;
        justify-content: center;
        flex-direction: column;
    }
    .sheet-basic{
        padding: 0px 7%;
        max-width: 1440px;
        min-height: 900px;
        display: flex;
        align-items: center;
        margin: auto;
        justify-content: center;
        flex-direction: column;
    }
    .sheet-basic-s{
        padding: 0px 7%;
        max-width: 1440px;
        height: 400px;
        display: flex;
        align-items: center;
        margin: auto;
        justify-content: center;
        flex-direction: column;
    }
    .sheet-basic-m{
        padding: 0px 7%;
        max-width: 1440px;
        height: 550px;
        display: flex;
        align-items: center;
        margin: auto;
        justify-content: center;
        flex-direction: column;
    }
    .sheet-cta{
        padding: 50px 7% 140px;
        max-width: 1440px;
        height: max-content;
        display: flex;
        align-items: center;
        margin: auto;
        justify-content: center;
        flex-direction: column;
    }
    .sheet-flex{
        padding: 50px 7%;
        max-width: 1440px;
        min-height: max-content;
        display: flex;
        align-items: center;
        margin: auto;
        justify-content: center;
        flex-direction: column;
    }
    .sheet-flex-l{
        padding: 50px 2%;
        max-width: 1440px;
        min-height: max-content;
        display: flex;
        align-items: center;
        margin: auto;
        justify-content: center;
        flex-direction: column;
    }
}
/* End of Sheet media */



a{
    all: unset;
    cursor: pointer;
}


.button-b{
    display: flex;
    background-color: var(--Palatine-Blue);
    padding: 18px 36px;
    text-align: center;
    justify-content: center;
    border-radius: 50px;
    cursor: pointer;
    width: max-content;
    color: var(--White);
}

.button-b-box{
    display: flex;
    background-color: var(--Palatine-Blue);
    padding: 18px 36px;
    text-align: center;
    justify-content: center;
    border-radius: 50px;
    cursor: pointer; 
}

/* Button media */

@media only screen and (min-width: 300px) and (max-width: 480px) {
.button-b{
    display: flex;
    background-color: var(--Palatine-Blue);
    padding: 18px 36px;
    text-align: center;
    justify-content: center;
    border-radius: 50px;
    cursor: pointer;
    width: auto;
}
}

/* End of Button media */

/* Font sizes media */

@media only screen and (min-width: 300px) and (max-width: 480px) {

h1{
    font-size: 2.6rem;
    font-style: normal;
    font-weight: 700;
    line-height: 2.75rem;
}
h2{
    font-size: 2.35rem;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}
h3{
    font-size: 1.8rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}
h4{
    font-size: 1.4rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 0.46rem;
}
h5{
    font-size: 1.25rem;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
} 

h6{
    font-size: 1.1rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}
p{
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.75rem;
}
.p-xs{
    font-size: 0.875rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.75rem;
}
.button-p{
    font-size: 1rem;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}
.caption{
    font-size: 0.8rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
li{
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.75rem;
}
}
@media only screen  and (min-width: 480px) and (max-width: 768px) {

    h1{
        font-size: 3.45rem;
        font-style: normal;
        font-weight: 700;
        line-height: 4.65rem;
    }
    h2{
        font-size: 3.10rem;
        font-style: normal;
        font-weight: 600;
        line-height: normal;
    }
    h3{
        font-size: 2.35rem;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
    }
    h4{
        font-size: 1.7rem;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
        margin-bottom: 0.7rem;
    }
    h5{
        font-size: 1.35rem;
        font-style: normal;
        font-weight: 600;
        line-height: normal;
    }
    h6{
        font-size: 1.165rem;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
    }
    p{
        font-size: 1.1rem;
        font-style: normal;
        font-weight: 400;
        line-height: 1.875rem;
    }
    .p-xs{
        font-size: 1rem;
        font-style: normal;
        font-weight: 400;
        line-height: 1.75rem;
    }
    .button-p{
        font-size: 1.125rem;
        font-style: normal;
        font-weight: 600;
        line-height: normal;
    }
    .caption{
        font-size: 0.8rem;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
    }
    li{
        font-size: 1.1rem;
        font-style: normal;
        font-weight: 400;
        line-height: 1.875rem;
    }
    }
@media only screen and (min-width: 769px) and (max-width: 1024px) {
    h1{
        font-size: 4.25rem;
        font-style: normal;
        font-weight: 700;
        line-height: 5.575rem;
    }
    h2{
        font-size: 3.90rem;
        font-style: normal;
        font-weight: 600;
        line-height: normal;
    }
    h3{
        font-size: 3rem;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
    }
    h4{
        font-size: 2.125rem;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
        margin-bottom: 0.9rem;
    }
    h5{
        font-size: 1.4rem;
        font-style: normal;
        font-weight: 600;
        line-height: normal;
    }
    h6{
        font-size: 1.275rem;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
    }
    p{
        font-size: 1.1rem;
        font-style: normal;
        font-weight: 400;
        line-height: 1.875rem;
    }
    .p-xs{
        font-size: 1rem;
        font-style: normal;
        font-weight: 400;
        line-height: 1.75rem;
    }
    .button-p{
        font-size: 1.125rem;
        font-style: normal;
        font-weight: 600;
        line-height: normal;
    }
    .caption{
        font-size: 0.8rem;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
    }
    li{
        font-size: 1.1rem;
        font-style: normal;
        font-weight: 400;
        line-height: 1.875rem;
    }
}

@media only screen and (min-width: 1025px) and (max-width: 1280px) {
    
    h1{
        font-size: 5.325rem;
        font-style: normal;
        font-weight: 700;
        line-height: 6.575rem;
    }
    h2{
        font-size: 4.7rem;
        font-style: normal;
        font-weight: 600;
        line-height: normal;
    }
    h3{
        font-size: 3.45rem;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
    }
    h4{
        font-size: 1.95rem;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
        margin-bottom: 0.9rem;
    }
    h5{
        font-size: 1.475rem;
        font-style: normal;
        font-weight: 600;
        line-height: normal;
    }
    h6{
        font-size: 1.275rem;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
    }
    p{
        font-size: 1.125rem;
        font-style: normal;
        font-weight: 400;
        line-height: 1.875rem;
    }
    .p-xs{
        font-size: 1rem;
        font-style: normal;
        font-weight: 400;
        line-height: 1.75rem;
    }
    .button-p{
        font-size: 1.125rem;
        font-style: normal;
        font-weight: 600;
        line-height: normal;
    }
    .caption{
        font-size: 0.8rem;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
    }
    li{
        font-size: 1.125rem;
        font-style: normal;
        font-weight: 400;
        line-height: 1.875rem;
    }

}

@media only screen and (min-width: 1281px) {
 
h1{
    font-size: 5.625rem;
    font-style: normal;
    font-weight: 700;
    line-height: 6.875rem;
}
h2{
    font-size: 5rem;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}
h3{
    font-size: 3.75rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}
h4{
    font-size: 2.25rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 1.2rem;
}
h5{
    font-size: 1.625rem;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}
h6{
    font-size: 1.375rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}
p{
    font-size: 1.125rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.875rem;
}
.p-xs{
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.75rem;
}
.button-p{
    font-size: 1.125rem;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}
.caption{
    font-size: 0.8rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}  

li{
    font-size: 1.125rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.875rem;
}
}

/* End of Font sizes media */


/* Header section */

header {
    background-color: rgba(237, 238, 242, 0.6);
    -webkit-backdrop-filter: blur(16px);
     backdrop-filter: blur(16px);
    color: var(--Night-Black);
    display: flex;
    align-items: center;
    position: fixed;
    justify-content: center;
    left: 0;
    right: 0;
    top: 0;
    z-index: 10;
}
.header-sheet{
    max-width: 1440px;
    flex-direction: row;
    display: flex;
    width: 100%;
    padding: 20px 60px;  
}
header .logo {
    flex: 1;
    align-items: center;
    display: flex;
}
.logo-img {
    height: 16px;
    width: auto;

}
.header-link{
    font-size: 1.125rem;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.nav-links {
    display: flex;
}
.nav-links a {
    color: var(--Night-Black);
    text-decoration: none;
    margin-left: 30px;
    transition: all 0.1s ease-in-out;
}

.nav-links a:hover {
    color: var(--Palatine-Blue);
    text-decoration: none;
    transition: all 100ms ease-in-out;
 
}
#hamburger {
display: none;
}

#hamburger.open span:nth-child(2) {
  width: 0%;
  opacity: 0;
}

#hamburger.open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
  top: 39px;
  left: 8px;
}

@media screen and (min-width: 768px) and (max-width:1080px){

.header-link{
    font-size: 1rem;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}
.logo-img {
    height: 14px;
    width: auto;
}


}


/* Základné štýly pre skryté menu */

@media screen and (max-width: 930px) {

    .header-sheet{
        padding: 0px 30px;
    }

    .logo-img {
        height: 24px;
        width: auto;
    }

    .nav-links {
        flex-direction: column;
        position: absolute;
        display: flex;
        align-items: center;
        margin: auto;
        top: 0px;
        left: 0;
        right: 0;
        width: 100%;
        height: 100vh;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0s ease-in-out, visibility 0s linear 0.2s;
        text-align: center;
        background-color: rgba(237, 238, 242, 0.6);
        -webkit-backdrop-filter: blur(16px);
        backdrop-filter: blur(16px); 
  
    }
    
    #hamburger {
        display: block;
    }
    
    #hamburger span {
        display: block;
        width: 28px;
        height: 3px;
        background-color: var(--Night-Black);
        margin: 7px auto;
        transition: 0.3s;
        border-radius: 2px;
    }

    .menu-open {
        height: 100vh; 
        justify-content: center;
        display: flex;
        align-items: center;
        background-color: var(--Mid-Grey 0.8);
        -webkit-backdrop-filter: blur(20px);
        backdrop-filter: blur(20px);
        opacity: 1;
        visibility: visible;
        transition: opacity 0.2s ease-in-out, visibility 0s linear 0s;
    } 


    .nav-links a {
        font-size: 2rem;
        margin: 0px auto;
    }


.container {
    cursor: pointer;
    display: flex;
    width: auto;
    margin-right: -20px;
 
  }
  svg {
    transition: transform 500ms cubic-bezier(0.4, 0, 0.2, 1);
  }
  .active svg {
    transform: rotate(90deg);
  }
  path {
    transition: transform 500ms cubic-bezier(0.4, 0, 0.2, 1),
      stroke-dasharray 500ms cubic-bezier(0.4, 0, 0.2, 1),
      stroke-dashoffset 500ms cubic-bezier(0.4, 0, 0.2, 1);
  }
  path:nth-child(1) {
    transform-origin: 36% 40%;
  }
  path:nth-child(2) {
    stroke-dasharray: 29 299;
  }
  path:nth-child(3) {
    transform-origin: 35% 63%;
  }
  path:nth-child(4) {
    stroke-dasharray: 29 299;
  }
  path:nth-child(5) {
    transform-origin: 61% 52%;
  }
  path:nth-child(6) {
    transform-origin: 62% 52%;
  }
  .active path:nth-child(1) {
    transform: translateX(9px) translateY(1px) rotate(45deg);
  }
  .active path:nth-child(2) {
    stroke-dasharray: 225 299;
    stroke-dashoffset: -72px;
  }
  .active path:nth-child(3) {
    transform: translateX(9px) translateY(1px) rotate(-45deg);
  }
  .active path:nth-child(4) {
    stroke-dasharray: 225 299;
    stroke-dashoffset: -72px;
  }
  .active path:nth-child(5) {
    transform: translateX(9px) translateY(1px) rotate(-45deg);
  }
  .active path:nth-child(6) {
    transform: translateX(9px) translateY(1px) rotate(45deg);
  }
  
}

@media screen and (max-width: 325px){
    .logo-img {
        height: 18px;
        width: auto;
    }

    

}


/* End of Header section */







/* Footer section */

.section-f{
    background-color: var(--Palatine-Blue);
    color: var(--White);
}
.caption-footer{
    color: var(--White);
}
.sheet-footer{
    max-width: 1440px;
    width: 100%;
    padding: 60px;
    display: flex;
    align-items: center;
    margin: auto;
    flex-direction: column;
    
}
.link-row{
    display: flex;
    width: 100%;
    margin-right: 0px;
    justify-content: end;
}
.link-box{
    margin: 0 30px;
}

.link-text{
    transition: color 100ms ease-in-out;
    color: var(--White);

}

.link-text:hover{
    color: var(--Brandeis-Blue);
}

.row-1{
    display: flex;
    width: 100%;
    flex: 1;
    margin-bottom: 100px;
}
.row-1-box{
    display: flex;
    flex-direction: row;
    width: 100%;
}
.mobile-flex{
    display: flex;
}

.backtop-box{
    display: flex;
    flex-direction: column;
    text-align: center;
    margin-right: 0px;
    margin-left: 40px;
    
}
.button-top{
    background-color: var(--White);
    display: flex;
    flex-direction: column;
    height: 45px;
    border-radius: 50px;
    width: 120px;
    justify-content: center;
    align-items: center;
    margin-bottom: 8px;
    cursor: pointer;
}

.arrow-up{
    transition: transform 200ms ease-in-out;
}

.button-top:hover .arrow-up{
    transform: translateY(-4px);
}

.row-2{
    display: flex;
    width: 100%;
    flex: 1;
    margin-bottom: 70px;
}

.social-icon-row{
    display: flex;
    gap: 20px;
    width: max-content;
    align-items: end;
}
.social-icon{
    transition: transform 200ms ease-in-out;
}

.social-icon:hover{
    transform: scale(1.1);
}
.logo-footer-box{
    height: max-content;
    display: flex;
    justify-content: end;
    width: 100%;
}
.logo-footer{
    width: 75%;
}
.row-3{
    display: flex;
    width: 100%;
    flex: 1;
}

.rights-text{
    margin-right: auto;
    margin-left: 0px;
}



@media only screen and (max-width: 360px) {
    .link-box:nth-child(2) {
        order: 3;
        width: 175px;
        margin: 0 calc(30vw - 150px) 0 0;
      }
  }
  
  @media only screen and (min-width: 300px) and (max-width: 510px) {

    .sheet-footer{
        padding: 60px 28px;
    }
    .row-1{
        margin-bottom: 50px;
    }
    .link-row{
        justify-content: start;
        margin-bottom: 30px;
        flex-wrap: wrap;
        flex: 0 0 calc(33.33% - 10px);

    }
    .link-box{
        margin: 0 10px 0 0;
    }
    .link-box:nth-child(1) {
        order: 1;
        width: calc(50% - 10px);
        margin-bottom: 30px;
    }
    .link-box:nth-child(2) {
        order: 3;
        width: calc(50% - 10px);
    }
    .link-box:nth-child(3) {
        order: 4;
        margin-right: 0px;
        width: auto;
        margin-left: auto;
    }
    .backtop-box:nth-child(4) {
        order: 2;
        width: auto;
        margin-left: auto;
    }

    .button-top{
        margin: 0 auto 0 auto;
    }


    .row-1-box{
        flex-direction: column-reverse;
        width: 100%;
    }

    .row-2{
       flex-wrap: wrap;
       margin-bottom: 50px;
    }
    
    .social-icon-row{
        margin-bottom: 50px;
    }

    .logo-footer-box{
        justify-content: start;
    }
    .logo-footer{
        width: 100%;
    }
    .row-3{
        flex-wrap: wrap;
    }
 
  }


  
  @media only screen  and (min-width: 480px) and (max-width: 768px) {
    .row-1{
        margin-bottom: 50px;
    }
    .link-row{
        justify-content: start;
        margin-bottom: 30px;
        flex-wrap: wrap;

    }
    .link-box:nth-child(1) {
        order: 1;
        width: 175px;
        margin-bottom: 30px;
      }
      .link-box:nth-child(2) {
        order: 3;
        width: 175px;
        margin: 0 calc(30vw - 130px) 0 0;
      }
      .link-box:nth-child(3) {
        order: 4;
        margin-right: 0px;
        width: 175px;
        margin-left: auto;
      }
      .backtop-box:nth-child(4) {
        order: 2;
        width: 175px;
        margin-left: auto;
      }

      .button-top{
        margin: 0 auto 0 auto;
      }
   
    .link-box{
        margin: 0 30px 0 0;
    }

    .row-1-box{
        flex-direction: column-reverse;
        width: 100%;
    }

    .row-2{
       flex-wrap: wrap;
    }
    
    .social-icon-row{
    margin-bottom: 50px;
    }

    .logo-footer-box{
        justify-content: start;
    }
    .logo-footer{
        width: 100%;
    }
    .row-3{
        flex-wrap: wrap;
    }
  }
  
  @media only screen and (min-width: 769px) and (max-width: 1024px) {
    .row-1{
        margin-bottom: 50px;
    }
    .link-row{
        justify-content: space-between;
        margin-bottom: 30px;
       
    }
    .link-box{
        margin: 0 30px 0 0;
    }

    .row-1-box{
        flex-direction: column-reverse;
        width: 100%;
    
    }
  }

/* End of Footer section */


/* Made by worq. */
.worq-container{
    display: flex;
    width: 96%;
    justify-content: center;
    height: max-content;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    border-radius: 50px;
    text-decoration: none;
    margin-top: 30px;
    background: #0035F0;
    max-width:1440px;
  }
  
  .text-worq{
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    color: var(--White);
  }
  
  .logo-worq{
    height: 20px;
    width: auto;
    margin-top: 6px;
  }
  
  /* Made by worq. */