:root {
    --primary-color: #e8e8e8;
    --secondary-color: #0a1d32;
    --accent-color: #368680;
    --light-color: #8d9cb8;
    --text-color: black;
    --btn-shadow: 2px 2px 2px rgba(0, 0, 0, 0.281);
    --img-shadow: 5px 5px 5px rgba(0, 0, 0, 0.089);
    --dark-theme: #212121;
}

html,
body {
    width: 100vw;
    min-height: 100vh;
    overflow-x: hidden;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    padding: 0;
    margin: 0;
    background-color: var(--primary-color);
    text-rendering: auto;
    scroll-behavior: smooth;
}

main {
    padding-left: 80px;
    padding-right: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.call-to-action {
    background-color: var(--accent-color);
    width: max-content;
    padding: 10px;
    font-size: 1.2rem;
    border-radius: 4px;
    padding-left: 20px;
    padding-right: 20px;
    color: white;
    text-decoration: none;
    border: none;
    box-shadow: var(--btn-shadow);
    transition: .2s;
}

.call-to-action:hover {
    transform: scale(1.02);
}

h2 span {
    border-bottom: 5px solid var(--accent-color);
}

.wave-divider-top {
    position: relative;
    bottom: -1px;
    left: 0;
    width: 100vw;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.wave-divider-bottom {
    position: relative;
    top: 0px;
    left: 0;
    width: 100vw;
    overflow: hidden;
    line-height: 0;
    transform: rotate(0deg);
}

.wave-divider-bottom-2 {
    position: absolute;
    bottom: -72px;
    left: 0;
    width: 100vw;
    overflow: hidden;
    line-height: 0;
    transform: rotate(0deg);
}

.wave-divider-top svg,
.wave-divider-bottom svg,
.wave-divider-bottom-2 svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 73px;
}

.wave-divider-top .shape-fill,
.wave-divider-bottom .shape-fill,
.wave-divider-bottom-2 .shape-fill {
    fill: #C8CBD0;
}


/*=================HEADER================*/

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100vw;
    height: 75px;
    background-color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 2;
    padding-left: 50px;
    transition: .2s;
}

.header-img-link {
    height: 100%;
    width: auto;
}

header img {
    width: auto;
    height: 100%;
}

header nav {
    width: max-content;
    margin-right: 100px;
    height: 100%;
}

header nav ul {
    display: flex;
    align-items: center;
    height: max-content;
    margin-top: 16px;
    transition: .2s;
}

header nav ul li {
    list-style: none;
    padding: 2px;
    margin: 10px;
    position: relative;
    transition: .2s;
}

header nav ul .header-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0%;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: width 0.3s ease, left 0.3s ease;
}

header nav ul .header-link:hover::before {
    width: 100%;
    left: 0;
}

header nav ul li a {
    white-space: nowrap;
}

header nav ul .header-contact-btn a {
    background-color: var(--accent-color);
    padding: 5px;
    border-radius: 5px;
    box-shadow: var(--btn-shadow);
    transition: .2s;
}

header nav ul .header-contact-btn:hover {
    opacity: .8;
}

header nav ul li a {
    text-decoration: none;
    color: white;
}

.toggle-btn {
    position: absolute;
    top: 30px;
    right: 20px;
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    transition: .2s;
}

.toggle-btn .bar {
    height: 3px;
    width: 100%;
    background-color: white;
    border-radius: 10px;
    transition: .2s;
    transform: rotate(0deg);
}

.rights {
    display: none;
}


@media (max-width: 800px) {

    header {
        flex-direction: column;
        align-items: flex-start;
        height: 80px;
        padding-left: 0;
    }

    .header-img-link {
        height: 80%;
        margin-left: 10px;
        margin-top: 10px;
    }

    .toggle-btn {
        display: flex;
    }

    .toggle-btn.active {
        margin-top: 10px;
    }

    .toggle-btn .bar1.active {
        transform: rotate(45deg);
    }

    .toggle-btn .bar2.active {
        background-color: transparent;
    }

    .toggle-btn .bar3.active {
        transform: rotate(-45deg);
        position: absolute;
    }

    header nav {
        height: 0px;
    }

    .navbar-links {
        transform: translateX(100vw);
        width: 100vw;
        height: 100vh;
        position: absolute;
        right: 0;
        background-color: var(--secondary-color);
        transition: .4s;
        padding-top: 80px;
        font-size: 1.25rem;
        align-items: flex-start;
        justify-content: center;
    }

    .navbar-links.active {
        transform: translateX(0px);
    }

    html.active {
        overflow-y: hidden;
    }

    header ul {
        flex-direction: column;
        justify-content: center;
        width: 100%;
        padding: 0;
        left: 0;
    }

    .navbar-links li {
        width: 150px;
        text-align: center;
    }

    header nav ul .header-link:hover::before {
        width: 0%;
        left: 0;
    }

    header nav ul .header-contact-btn {
        background-color: transparent;
        padding: 0px;
        border-radius: 0px;
        box-shadow: 0px 0px 0px black;
    }

    header nav ul .header-link:hover {
        border-top: none;
        opacity: .6;
    }

    .rights {
        display: flex;
        justify-content: center;
        width: 100%;
        margin-top: 200px;
    }

    .rights a {
        color: white;
        text-decoration: none;
        margin-left: 10px;
        margin-right: 10px;
    }

    .rights a:hover {
        color: var(--accent-color);
        text-decoration: underline;
    }

    .rights p {
        color: white;
        margin: 0;
    }
}


/*=================FIRST-SECTION================*/

.first-section {
    background-color: var(--primary-color);
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    max-height: 90vh;
    min-height: 800px;
    height: 90vh;
    width: 100vw;
    position: relative;
    padding-bottom: 70px;
}

.first-card {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    width: 600px;
    z-index: 1;
    margin-left: 20px;
}

.first-card h1 {
    font-size: 42px;
    margin-bottom: 10px;
}

.first-card h1 span {
    border-bottom: 4px solid var(--accent-color);
}

.first-card p {
    margin-top: 0px;
    font-size: 18px;
}

.first-section img {
    height: 600px;
    width: auto;
    z-index: 1;
}

.explore-btn {
    position: absolute;
    bottom: 40px;
    text-decoration: none;
    color: black;
    background-color: #C8CBD0;
    padding: 7px;
    border-radius: 8px;
    padding-left: 10px;
    padding-right: 10px;
    transition: .2s;
}

.explore-btn:hover {
    box-shadow: var(--btn-shadow);
    background-color: var(--accent-color);
    color: white;
}


@media (max-width: 1220px) {
    .first-section {
        padding-top: 180px;
    }

    .first-section img {
        width: 95vw;
        height: 550px;
    }

}

@media (max-width: 470px) {

    .first-section {
        padding-top: 80px;
        flex-direction: column;
        height: fit-content;
        width: 100vw;
    }

    .first-card {
        margin-right: 20px;
        max-width: fit-content;
    }

    .first-card h1 {
        font-size: 30px;
    }

    .first-card p {
        font-size: 16px;
    }

    .first-section img {
        max-height: 300px;
        margin-top: 20px;
    }

    .first-section .call-to-action {
        font-size: 17px;
    }
}


/*=================SECOND-SECTION================*/

.second-section {
    background-color: #C8CBD0;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 800px;
    width: 100vw;
    position: relative;
    padding-top: 70px;
    padding-bottom: 70px;
}

.article-container {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 800px;
    max-width: 1100px;
    position: relative;
}

.text-article {
    background-color: #f4f5f2;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    text-align: right;
    color: var(--text-color);
    transition: .2s;
    margin-top: 50px;
    border-radius: 16px;
    padding-right: 45px;
    box-shadow: var(--img-shadow);
}

.text-article:hover {
    transform: translateY(-10px);
}

.text-article h2 {
    margin-top: 0;
}

.text-article img {
    width: 270px;
    height: auto;
    margin-right: 50px;
    border-top-right-radius: 16px;
    border-bottom-right-radius: 16px;
}

.text-article:nth-child(2) {
    flex-direction: row-reverse;
    text-align: left;
    padding-right: 0px;
    padding-left: 45px;

}

.text-article:nth-child(2) img {
    width: 400px;
    margin-right: 0px;
    margin-left: 50px;
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
    border-top-left-radius: 16px;
    border-bottom-left-radius: 16px;
}


@media (max-width: 1200px) {
    .article-container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .text-article {
        flex-wrap: wrap;
        padding-left: 25px;
        padding-right: 25px;
        padding-bottom: 10px;
        padding-top: 20px;
    }

    .text-article:nth-child(2) {
        flex-direction: row-reverse;
        text-align: left;
        padding-right: 25px;
        padding-left: 25px;

    }

    .text-article img {
        max-width: 40vw;
    }

    .text-article:nth-child(2) img {
        max-width: 50vw;
    }
}


/*=================THIRD-SECTION================*/

.third-section {
    background-color: #C8CBD0;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 800px;
    width: 100vw;
    position: relative;
    padding-bottom: 70px;
}

.third-section h2 {
    font-size: 42px;
    text-align: center;
    margin-left: 20px;
    margin-right: 20px;
}

.benefit-card-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 100px;
    margin-bottom: 70px;
    margin-left: 20px;
    margin-right: 20px;
}

.benefit-card {
    background-color: #f4f5f2;
    display: flex;
    justify-content: center;
    flex-direction: column;
    text-align: left;
    position: relative;
    margin-right: 30px;
    margin-left: 30px;
    margin-top: 20px;
    transition: .2s;
    padding: 20px;
    padding-left: 30px;
    padding-right: 30px;
    max-width: 300px;
    border-radius: 8px;
    box-shadow: var(--img-shadow);
    transition: .2s;
}

.benefit-card h3 {
    border-bottom: 4px solid var(--accent-color);
    width: max-content;
    margin-bottom: 0;
}


.benefit-card:hover {
    transform: translateY(-10px);
}

.benefit-icon {
    width: 80px;
    height: 80px;
}

@media (max-width: 1259px) {
    .benefit-card {
        margin-bottom: 40px;
        margin-top: 0;
    }
}

@media (max-width: 450px) {
    .benefit-card {
        margin-left: 0;
        margin-right: 0;
    }
}

/*=================FOURTH-SECTION================*/

.fourth-section {
    background-color: var(--primary-color);
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 800px;
    position: relative;
    width: 100vw;
    padding-bottom: 70px;
}


.fourth-section h2 {
    font-size: 42px;
    text-align: center;
    margin-left: 20px;
    margin-right: 20px;
}

.offer-card-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 100px;
    margin-bottom: 70px;
}

.offer-card {
    color: var(--text-color);
    max-width: 400px;
    min-height: 500px;
    padding-left: 30px;
    padding-right: 20px;
    padding-top: 30px;
    padding-bottom: 10px;
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: start;
    box-shadow: var(--img-shadow);
    margin-left: 25px;
    margin-right: 25px;
    background-color: #f4f5f2;
    position: relative;
    border-radius: 16px;
    transition: .2s;
}

.offer-card:hover {
    transform: translateY(-10px);
}

.pricing {
    position: absolute;
    margin-bottom: 0;
    top: 30px;
    right: 0;
    background-color: var(--accent-color);
    border-radius: 99em 0 0 99em;
    display: flex;
    align-items: center;
    padding: 0.625em 0.75em;
    font-size: 1.25rem;
    font-weight: 600;
    color: #ffffff;
}

.pricing small {
    color: white;
    font-size: 0.75em;
    margin-left: 0.25em;
}

.offer-card h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    margin-top: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.offer-card-icon {
    height: 45px;
    width: 45px;
    margin-right: 10px;
}

.offer-card hr {
    width: 100%;
    height: 2px;
    background-color: #368680;
    border: 1px solid var(--accent-color);
}

.offer-card p {
    margin-top: 0;
    font-size: 1rem;
}

.offer-card ul {
    margin-top: 20px;
    margin-bottom: 50px;
    font-size: 1.2rem;
}

.offer-card ul li {
    margin-top: 5px;
}

.offer-card .call-to-action {
    padding-left: 50px;
    padding-right: 50px;
}

.offer-card .call-to-action:hover {
    transform: none;
    opacity: .8;
}

@media (max-width: 442px) {
    .offer-card {
        padding-bottom: 25px;
    }
}


/*=================FIFTH-SECTION================*/

.fifth-section {
    background-color: var(--primary-color);
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 800px;
    position: relative;
    padding-bottom: 70px;
}

.fifth-section h2 {
    font-size: 42px;
    text-align: center;
    margin-left: 20px;
    margin-right: 20px;
    max-width: 100vw;
}

.social-card-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    width: fit-content;
    margin-top: 100px;
    padding-left: 25px;
    padding-right: 25px;
}

.social-card {
    color: var(--text-color);
    width: 350px;
    height: max-content;
    flex-shrink: 0;
    padding-left: 30px;
    padding-right: 20px;
    padding-top: 30px;
    padding-bottom: 30px;
    display: flex;
    position: relative;
    flex-direction: column;
    box-shadow: var(--img-shadow);
    margin-left: 25px;
    margin-right: 25px;
    background-color: #f4f5f2;
    border-radius: 16px;
    transition: .2s;
    scroll-snap-align: start;
}

.social-card:hover {
    transform: translateY(-10px);
}

.social-heading {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.social-card-icon {
    height: 70px;
    width: 70px;
    margin-right: 20px;
}

.social-heading h3 {
    margin-top: 0px;
}

.social-heading img {
    height: 20px;
    width: auto;
}

.social-card p {
    margin-bottom: 10px;
}

.social-card .call-to-action {
    font-size: 1rem;
    padding: 5px;
}

.social-card .call-to-action:hover {
    transform: none;
    opacity: .8;
}

.scroll-info {
    display: none;
}

@media (max-width: 900px) {

    .social-card {
        max-width: 300px;
        height: auto;
    }

    .social-card-container {
        max-width: 300px;
        height: auto;
        gap: 0px;
        padding: 30px;
        justify-content: start;
        overflow-x: scroll;
        scroll-snap-type: x mandatory;
        margin-left: 20px;
        margin-right: 20px;
    }

    .arrow-right {
        height: 20px;
        width: 20px;
        position: absolute;
        right: 70px;
        font-size: 2rem;
    }

    .arrow-left {
        height: 20px;
        width: 20px;
        position: absolute;
        left: 60px;
        font-size: 2rem;
    }

    .scroll-info {
        display: block;
        position: relative;
        bottom: -10px;
        width: max-content;
        background-color: #c8cbd0;
        border-radius: 8px;
        padding-left: 10px;
        padding-right: 10px;
        font-weight: bold;
    }

    .scroll-info p {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .scroll-info svg {
        height: 20px;
        width: 20px;
    }

}



/*=================SIXTH-SECTION================*/

.sixth-section {
    background-color: #c8cbd0;
    width: 100vw;
    color: var(--text-color);
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: min-content;
    position: relative;
    padding-top: 70px;
    padding-bottom: 70px;
}

.sixth-section h2 {
    font-size: 42px;
    text-align: center;
    margin-left: 20px;
    margin-right: 20px;
}

.about-card {
    max-width: 800px;
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-top: 100px;
    padding-left: 20px;
    padding-right: 20px;
}

.about-card .img {
    background-color: var(--secondary-color);
    width: 400px;
    min-height: 525px;
    margin-right: 60px;
    box-shadow: var(--img-shadow);
    background-image: url(/images/about-img.jpg);
    background-position: center;
    background-size: cover;
    background-color: #f4f5f2;
    border-radius: 8px;
}

.about-card-text {
    display: flex;
    flex-direction: column;
    width: 370px;
    height: fit-content;
}

.about-card-text h3 {
    font-size: 28px;
    margin-bottom: 0;
    margin-top: 0;
}

.about-card-text h4 {
    margin-top: 0;
}

@media (max-width: 860px) {
    .about-card {
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }

    .about-card .img {
        margin-bottom: 20px;
        margin-right: 0;
        width: 95vw;
        max-width: 400px;
        min-height: 525px;
    }

    .about-card-text {
        max-width: 90vw;
        margin-left: 20px;
        margin-right: 20px;
        min-height: fit-content;
    }
}

/*=================SEVENTH-SECTION================*/

.seventh-section {
    background-color: var(--primary-color);
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: min-content;
    position: relative;
    padding-top: 170px;
    padding-bottom: 70px;
}

.background {
    background-color: #c8cbd0;
    height: 55%;
    width: 100vw;
    position: absolute;
    top: 0;
}


.contact-card {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    width: 850px;
    padding-top: 40px;
    padding-right: 50px;
    padding-left: 50px;
    padding-bottom: 35px;
    margin-bottom: 70px;
    background-color: #f4f5f2;
    border-top-left-radius: 4rem;
    border-top-right-radius: 4rem;
    border-bottom-left-radius: 4rem;
    border-bottom-right-radius: 4rem;
    box-shadow: var(--img-shadow);
    position: relative;
    transition: .2s;
}

.contact-card:hover {
    transform: translateY(-10px);
}

form label {
    font-size: .95rem;
}

#name-inp,
#mail-inp,
#message-inp {
    border: none;
    padding: 5px;
    border-radius: 8px;
    outline: none;
    background-color: #c8cbd0;
    transition: .2s;
    font-size: 1rem;
}

#name-inp:focus,
#mail-inp:focus,
#message-inp:focus {
    background-color: var(--primary-color);
    box-shadow: var(--btn-shadow);
}

#name-inp {
    width: 300px;
    height: 20px;
    margin-top: 5px;
}

#mail-inp {
    width: 300px;
    height: 20px;
    margin-top: 5px;
}

#message-inp {
    width: 300px;
    height: 100px;
    margin-top: 5px;
}

.checkbox-line {
    display: flex;
    align-items: center;
    font-size: .8rem;
}

.contact-card a {
    color: var(--accent-color);
}

.contact-card a:hover {
    opacity: .8;
}

.contact-text {
    margin-left: 60px;
}

.contact-text h2 {
    margin-top: 15px;
    font-size: 30px;
}

.contact-text ul li {
    width: fit-content;
}

.contact-text ul li p {
    font-size: 18px;
    margin: 0;
    padding: 5px;
}

.contact-text ul li:nth-child(3) p {
    background-color: var(--accent-color);
    border-radius: 4px;
    color: white;
    padding: 5px;
}

.contact-card table tr {
    font-size: 1.1rem;
    display: flex;
    justify-content: space-between;
    width: 250px;
}

.socials-headline {
    margin-top: 40px;
    font-weight: bold;
    font-size: 1.2rem;
}

.social-ico-container {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
}

.social-ico {
    height: 50px;
    width: 50px;
    margin-right: 10px;
    margin-left: 10px;
    border-radius: 4px;
}

.social-ico:hover {
    opacity: .8;
}

.contact-card .call-to-action:hover {
    transform: none;
    cursor: pointer;
    opacity: .8;
}

@media (max-width: 980px) {
    .contact-card {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        max-width: fit-content;
        height: fit-content;
        margin-left: 20px;
        margin-right: 20px;
        max-width: 70vw;
        border-radius: 25px;
    }

    .contact-text h2 {
        font-size: 26px;
    }

    .contact-card form {
        margin-bottom: 40px;
    }

    .contact-text {
        margin-left: 0;
        max-width: 100vw;
    }

    .contact-text ul {
        padding-left: 15px;
    }

    .contact-text ul li p {
        font-size: 17px;
    }
}


/*=================EIGHTH-SECTION================*/

.eighth-section {
    background-color: var(--primary-color);
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    align-items: center;
    min-height: 800px;
    position: relative;
    padding-top: 100px;
}

.eighth-section h2 {
    font-size: 42px;
    margin-bottom: 70px;
    text-align: center;
    margin-left: 20px;
    margin-right: 20px;
}

.eighth-section details {
    background-color: #f4f5f2;
    color: var(--text-color);
    width: 600px;
    padding: 20px;
    box-shadow: var(--img-shadow);
    margin: 20px;
    margin-bottom: 40px;
    text-align: left;
    cursor: default;
    border-radius: 16px;
    transition: .2s;
}

.eighth-section details:hover {
    transform: translateY(-10px);
}

.more-questions {
    background-color: #f4f5f2;
    color: var(--text-color);
    max-width: 600px;
    padding: 20px;
    padding-bottom: 30px;
    box-shadow: var(--img-shadow);
    margin: 20px;
    margin-bottom: 40px;
    text-align: left;
    border-radius: 16px;
    transition: .2s;
}

.more-questions:hover {
    transform: translateY(-10px);
}

.more-questions h3 {
    margin-top: 0;
}

.eighth-section .call-to-action:hover {
    opacity: .8;
}

@media (max-width: 659px) {
    .eighth-section details {
        max-width: 400px;
        width: 80vw;
    }
}

/*=================FOOTER================*/

footer {
    background-color: var(--secondary-color);
    color: white;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    padding-left: 80px;
    padding-right: 80px;
    padding-top: 20px;
    margin-top: 100px;
    position: relative;
}

.navigation-container {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    width: 400px;
}

.navigation-container label {
    list-style: none;
    font-weight: bold;
    padding-right: 0px;
}

.navigation-container ul {
    padding: 15px;
    margin-top: 0;
}

.navigation-container a {
    color: white;
    text-decoration: none;
}

.navigation-container a:hover {
    opacity: .8;
}

footer p {
    position: absolute;
    right: 80px;
    bottom: 10px;
}

footer li a,
footer p a {
    color: white;
    text-decoration: none;
}

footer li a:hover,
footer p a:hover {
    color: var(--accent-color);
    text-decoration: underline;
}



@media (max-width: 880px) {
    footer {
        flex-direction: column;
        flex-wrap: wrap;
        height: fit-content;
        justify-content: center;
        padding-bottom: 170px;
    }

    .navigation-container {
        flex-direction: column;
        flex-wrap: wrap;
        height: fit-content;
        justify-content: flex-start;
        align-items: flex-start;
    }

    footer p {
        right: 40px;
    }
}