@font-face {
    font-family: "Ryman Eco";
    src: url("/assets/fonts/RymanEco-Regular.otf");
}

@font-face {
    font-family: "Socium Free";
    src: url("/assets/fonts/SociumFree-Regular.otf");
}

@font-face {
    font-family: "Galgadote-Regular";
    src: url("/assets/fonts/GalgadoteRegular-wo21P.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "Tiny5-Regular";
    src: url("/assets/fonts/Tiny5-Regular.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "Secuela-Regular";
    src: url("/assets/fonts/Secuela-Regular.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}

html,
body {
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

html::-webkit-scrollbar {
    display: none;
}

#app {
    display: flex;
    flex-direction: column;
    min-height: 100dvh;
}

.green-button {
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
    background: #2e8b57;
    border-radius: 50px;
    color: white;
    cursor: pointer;
    font-family: Inter, Helvetica, "Apple Color Emoji", "Segoe UI Emoji",
        NotoColorEmoji, "Noto Color Emoji", "Segoe UI Symbol", "Android Emoji",
        EmojiSymbols, -apple-system, system-ui, "Segoe UI", Roboto,
        "Helvetica Neue", "Noto Sans", sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    opacity: 1;
    outline: 0 solid transparent;
    padding: 8px 16px;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    width: fit-content;
    word-break: break-word;
    transition: 0.2s ease-in-out;
    border: 0;
}

.green-button:hover {
    background: #2e8b57;
    box-shadow: 0px 15px 20px rgba(27, 139, 95, 0.4);
    color: #fff;
    transform: translateY(-7px);
}

.alert {
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid transparent;
    border-radius: 4px;
    text-align: center;
}

.alert-contact {
    height: 56px;
    margin-top: 150px;
    border: 1px solid transparent;
    border-radius: 4px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1200px;
    border-radius: 15px;
    margin-left: auto;
    margin-right: auto;
}

.alert-danger-custom {
    color: black;
    background-color: #f8b7b1;
}

.alert-success-custom {
    color: black;
    background-color: #b0dd8c;
}

.coming-soon {
    text-align: center;
    font-size: 3em;
    margin-top: 50px;
}

.subpagecontainer {
    display: flex;
    flex-direction: column;
    min-height: 100dvh;
}

.white-container {
    flex: 1;
    background: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
}

.white-container h2 {
    font-size: 25px;
}

.hero_section_title {
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 90px;
    margin-bottom: 20px;
}

.macedonian .hero_section_title h1 {
    text-align: center;
    font-family: "Socium Free", sans-serif; /* Fuente cirílica */
    font-size: 60px;
}

.latin .hero_section_title h1 {
    text-align: center;
    font-family: "Ryman Eco", "Galgadote-Regular", Futura; /* Fuente latina */
    font-size: 60px;
}

/*********************************************************************************************************************/

/**
    Elements related to the login
 */
.login-container {
    margin-top: 150px;
    display: flex;
    justify-content: center;
}

.login-card {
    background-color: white;
    max-width: 500px;
    max-height: 500px;
    text-align: center;
    border: 1px solid #ccc;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(138, 138, 138, 0.1);
    flex: 1;
    margin: 25px 50px;
}

.login-card .emailLabel,
.login-card .passwordLabel {
    margin-top: 20px;
}

.form-check {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.card-header {
    color: white;
    background-color: #3bc075;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 40px;
}

.login-card button {
    background-color: #000000;
}

.login-card button:hover {
    background-color: #2e8b57;
}

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

.loginButtons {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.forgotButton {
    color: black;
    text-decoration: none;
    outline: none;
    display: flex;
    justify-content: center;
    align-items: center;
}

/*********************************************************************************************************************/

/**
    Elements related to the register
 */

.register-container {
    margin-top: 150px;
    display: flex;
    justify-content: center;
}

.register-card {
    max-width: 500px;
    max-height: 500px;
    background: #ffffff;
    text-align: center;
    border: 1px solid #ccc;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    flex: 1;
    margin: 25px 50px;
}

.registerButton button {
    background-color: #000000;
}

.registerButton:hover button {
    background-color: #2e8b57;
}

/*********************************************************************************************************************/

/**
    Elements related to the admin dashboard
 */

.admin-dashboard-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 50px;
    font-family: "Poppins", sans-serif;
}

.filters {
    margin-bottom: 10px;
}

.legend {
    margin: 0;
    padding: 0;
    width: 1570px;
    display: flex;
    justify-content: space-between;
    border: #6dba6d 2px solid;
    margin-bottom: 20px;
    border-radius: 10px;
    align-items: center;
}

.legend h3 {
    font-weight: 400;
    margin: 0;
    padding: 0;
    font-size: 22px;
    padding: 10px;
}

.box {
    overflow: hidden;
    padding: 20px;
    white-space: nowrap;
}

.box p {
    margin: auto;
}

.admin-dash-btn {
    text-align: center;
    align-content: center;
    display: inline-block;
    background-color: #6dba6d;
    color: #fff;
    border-radius: 4px;
    width: fit-content;
    height: 100%;

    padding: 10px 20px;
    margin: 0;
    outline: none;
    border: none;
    transition: 0.3s ease-in-out;
    text-transform: uppercase;
}

.admin-dash-btn:hover {
    background-color: #2e8b57;
}
.delete_button {
    text-transform: uppercase;
    text-align: center;
    align-content: center;
    display: inline-block;
    background-color: #d53131;
    color: #fff;
    border-radius: 4px;
    outline: none;
    border: none;
    width: 100%;
    height: 100%;
    padding: 10px;
    margin: 0;
    outline: none;
    transition: 0.5s ease-in-out;
}

.delete_button:hover {
    background-color: #6a0b0b;
}

.admin-dashboard-content a {
    font-weight: bold;
    text-decoration: none;
    color: #fff;
    outline: none;
}

/*********************************************************************************************************************/

/**
    Admin Dashboard Searchbar
 */
.dash-search {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    gap: 30px;
}

.dash-search input {
    width: 400px;
    padding: 10px;
    border-radius: 4px;
    border: 1px solid #ccc;
    outline: none;
}

.dash-search input form {
    display: flex;
    justify-content: center;
    align-items: center;
}

.search-btn {
    font-weight: bold;
    border: none;
    background-color: #6dba6d;
    color: #fff;
    border-radius: 4px;
    padding: 10px;
    outline: none;
}

.search-btn:hover {
    cursor: pointer;
    background-color: #2e8b57;
}

/*********************************************************************************************************************/

/**
    Elements related to the Home
 */

.home-container {
    width: 100%;
    margin-top: 70px;
    margin-right: auto;
    margin-left: auto;
}

.timeline-container {
    display: flex;
    flex-direction: column;
    position: relative;
}

.timeline-container::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px; /* Line width */
    background-color: #ccc; /* Line color */
}

.timeline-event {
    width: auto;
    height: auto;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.event-row.timeline-row img {
    object-fit: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 300px;
    height: 200px;
    border-radius: 15px;
}

.timeline-event a {
    margin: 0;
    padding: 0;
}

.timeline-event::before {
    content: "";
    position: absolute;
    left: 50%;
    height: 100%;
    border-left: 2px solid #ddd; /* Vertical line */
    z-index: 0;
}

.timeline-container.timeline-event-date {
    position: absolute;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    top: 0;
    background-color: #fff;
    padding: 0 5px;
    z-index: 2;
}

.event-row.timeline-row {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1500px;
    margin-left: 20px;
    margin-right: 20px;
    text-decoration: none;
    color: black;
}

.event-row.timeline-row .card-body {
    display: flex;
    flex-direction: column;
    width: 100px;
}

.event-row.timeline-row::before {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background-color: #2e8b57;
    border-radius: 50%;
    z-index: 1;
}

.timeline-event:nth-child(odd) {
    padding-right: 50%;
}

.timeline-event:nth-child(even) {
    padding-left: 50%;
}

.accordion-button {
    font-family: "Poppins", sans-serif;
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    padding: 1rem 1.25rem;
    font-size: 1rem;
    color: #212529;
    text-align: left;
    background-color: rgb(209, 224, 154);
    border: 0;
    border-radius: 10px !important;
    overflow-anchor: none;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
        border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out,
        border-radius 0.15s ease;
}
@media (prefers-reduced-motion: reduce) {
    .accordion-button {
        transition: none;
    }
}
.accordion-button:not(.collapsed) {
    background-color: rgb(209, 224, 154);
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.125);
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23dc5834'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transform: rotate(-180deg);
}

.accordion-button::after {
    flex-shrink: 0;
    width: 1.25rem;
    height: 1.25rem;
    margin-left: auto;
    content: "";
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-size: 1.25rem;
    transition: transform 0.2s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
    .accordion-button::after {
        transition: none;
    }
}
.accordion-button:hover {
    z-index: 2;
}
.accordion-button:focus {
    z-index: 3;
    outline: 0;
}

.accordion-header {
    margin-bottom: 0;
}

.accordion-item {
    background-color: #fff;
    border: 1px solid rgba(206, 7, 7, 0.125);
    border-radius: 10px;
}
.accordion-item:first-of-type {
    border-top-left-radius: 0.25rem;
    border-top-right-radius: 0.25rem;
}
.accordion-item:first-of-type .accordion-button {
    border-top-left-radius: calc(0.25rem - 1px);
    border-top-right-radius: calc(0.25rem - 1px);
}
.accordion-item:not(:first-of-type) {
    border-top: 0;
}
.accordion-item:last-of-type {
    border-bottom-right-radius: 0.25rem;
    border-bottom-left-radius: 0.25rem;
}
.accordion-item:last-of-type .accordion-button.collapsed {
    border-bottom-right-radius: calc(0.25rem - 1px);
    border-bottom-left-radius: calc(0.25rem - 1px);
}
.accordion-item:last-of-type .accordion-collapse {
    border-bottom-right-radius: 0.25rem;
    border-bottom-left-radius: 0.25rem;
}

.accordion {
    width: 100%;
}

.accordion-flush .accordion-collapse {
    border-width: 0;
}
.accordion-flush .accordion-item {
    border-right: 0;
    border-left: 0;
    border-radius: 0;
}
.accordion-flush .accordion-item:first-child {
    border-top: 0;
}
.accordion-flush .accordion-item:last-child {
    border-bottom: 0;
}
.accordion-flush .accordion-item .accordion-button {
    border-radius: 0;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-250px * 7));
    }
}

.hero_section {
    padding-left: 30px;
    padding-right: 30px;
    width: 100%;
    height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.hero_content {
    max-width: 1400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.text_block {
    width: 60%;
}

.hero_animation {
    width: 40%;
}

.text_block .home-h1 {
    font-size: 40px;
    font-weight: 550;
    font-family: "Ryman Eco", sans-serif;
}

.text_block .about_project {
    font-size: 17px;
}

#lottie-animation-hero-section {
    width: 500px;
    height: 500px;
}

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

.arrow {
    position: absolute;
    bottom: 50px;
    height: 40px;
    width: auto;
    cursor: pointer;
}

/*********************************************************************************************************************/

/**
    Elements related to Footer
 */

.footer {
    margin-top: auto;
    border-top: #000000 1px solid;
    padding: 20px;
    font-family: "Poppins", sans-serif;
    background-color: white;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: auto;
}

.footer .content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
}

.footer .content .footer-images {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.footer .content .footer-images .EUimage {
    width: 320px;
    height: 70px;
}
.footer .content .footer-images .logo {
    width: 120px;
    height: 120px;
}
.footer .content .footer-images .image-link img {
    width: 200px; /* Adjust as needed */
    height: 70px; /* Adjust as needed */
    margin-left: 40px;
}

.footer .content .text {
    display: flex;
    flex-direction: column;
    text-align: start;
    gap: 20px;
}
.footer .content .text p {
    width: 600px;
    font-size: 17px;
}

.footer .content .text h2 {
    font-weight: 600;
    font-size: 40px;
}

/*********************************************************************************************************************/

/**
    Elements related to About Project
 */

.white-container .about_project {
    padding-bottom: 20px;
    padding-left: 20px;
    padding-right: 20px;
    display: flex;
    margin-bottom: 0px !important;
    font-family: "Poppins", sans-serif;
    max-width: 1400px;
    font-size: 17px;
    margin-left: auto;
    margin-right: auto;
    text-align: justify;
}

.white-container .about_project {
    padding-top: 50px;
    gap: 50px;
}

.white-container .about_project img {
    border-radius: 15px;
    height: 30%;
    width: 500px;
}

.white-container .about_project img:hover {
    transform: scale(0.9) !important;
}

/*********************************************************************************************************************/

/**
    Elements related to the Project Activities
 */

.activities-container {
    max-width: 1400px;
    width: 100%;
    margin-top: 130px;
    margin-right: auto;
    margin-left: auto;
    padding: 20px;
}

.interactive-map h2,
.database h2,
.implement-garden h2 {
    text-transform: uppercase;
    font-family: "Poppins", sans-serif;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 40px;
    font-weight: 600;
    text-align: left;
    margin-bottom: 20px;
}

.interactive-map p,
.database p,
.implement-garden p {
    font-family: "Poppins", sans-serif;
    text-align: left;
    line-height: 30px;
    font-size: 17px;
}

.leaflet-popup-content-wrapper {
    overflow-y: auto !important;
    scrollbar-width: none !important; /* For Firefox */
    padding: 0 !important;
    background-color: rgba(255, 255, 255, 0.88) !important;
}

.leaflet-popup-content-wrapper::-webkit-scrollbar {
    display: none !important; /* For Chrome, Safari and Opera */
}

.leaflet-popup-scrolled::-webkit-scrollbar {
    width: 0px;
    background: transparent; /* make scrollbar transparent */
}

/*********************************************************************************************************************/

/**
    Elements related to the Partners
 */

.partners-container {
    gap: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 1240px;
    padding-right: 15px;
    padding-left: 15px;
    margin-top: 50px;
    margin-bottom: 50px;
    margin-right: auto;
    margin-left: auto;
}

.btn {
    display: inline-block;
    padding: 8px 16px;
    background-color: #6dba6d;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    padding: 10px;
}

.btn:hover {
    background-color: #2e8b57;
}

.partner-display {
    width: 100%;
    gap: 50px;
    display: flex;
    align-items: center;
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 15px;
    box-shadow: rgba(136, 191, 140, 0.48) 6px 2px 16px 0px,
        rgba(255, 255, 255, 0.8) -6px -2px 16px 0px;
}

.partner-display .text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
}

.partner-display p {
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    line-height: 30px;
}

.partner-display h2 {
    font-family: "Poppins", sans-serif;
    font-size: 35px;
}

.partner-display img {
    width: 400px;
    height: 400px;
}

.social-media-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.fas,
.fab {
    margin-top: 10px;
    margin-bottom: 10px;
    color: #000000;
    font-size: 24px;
    padding: 10px;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    text-align: center;
    line-height: 30px;
    background: #f8f9fa;
    transition: 0.2s ease-in-out;
}

.fas,
.fab {
    color: #ab4e52;
    margin-left: 4px;
}

.fas:hover,
.fab:hover {
    color: #37a466;
}

/*********************************************************************************************************************/

/**
    Elements related to the Gallery
 */

.gallery-container {
    width: 100%;
    max-width: 700px;
    height: 50%;
    margin-right: auto;
    margin-left: auto;
}

.swiper {
    width: 100%;
    padding: 50px;
}

.swiper-wrapper .swiper-slide {
    border-radius: 15px;
}

.swiper-slide img,
.swiper-slide video {
    aspect-ratio: 33/44;
    width: 100%;
    height: 50%;
    object-fit: cover;
    user-select: none;
    border-radius: 15px;
}

.swiper-button-prev {
    left: -60px;
    color: #37a466;
}

.swiper-button-next {
    right: -60px;
    color: #37a466;
}

.swiper-pagination-bullet {
    background: #37a466;
}

.swiper-pagination {
    padding: 20px 0;
}

/*********************************************************************************************************************/

/**
    Elements related to the News & Events
 */

.news-h1 {
    text-align: center;
    margin-top: 30px;
    font-family: Candara, serif;
    font-size: 45px;
    font-weight: 700;
}

.news_events-container {
    width: 100%;
    max-width: 1400px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 300px));
    gap: 50px;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
}

.card-news {
    width: 300px;
    height: 610px;
    background: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: rgba(136, 191, 140, 0.48) 6px 2px 16px 0px,
        rgba(255, 255, 255, 0.8) -6px -2px 16px 0px;
    margin: auto;
}

.card-news .card-body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    height: 400px;
}

.card-news .card-body .content {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}

.card-news .card-body .card-footer {
    margin-top: auto;
    width: 100%;
    background-color: transparent;
    border: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.card-news .card-body h3 {
    text-align: start;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    word-wrap: break-all;
    font-size: 24px;
    text-align: start;
    font-family: "Poppins", sans-serif;
    margin-top: 0;
    margin-bottom: 20px;
    line-clamp: 3;
    -webkit-line-clamp: 3;
    text-overflow: ellipsis;
    overflow: hidden;
}

.card-news .card-body p {
    font-size: 15px;
    text-align: start;
}

.card-news img {
    object-fit: cover;
    width: 325px;
    height: 220px;
    transition: transform 0.3s ease-in-out; /* Animation */
}

.card-news img:hover {
    transform: scale(1.05); /* Zoom on hover */
}

.card-news .card-text {
    font-family: "Poppins", sans-serif;
    font-size: 15px;
}

.card-news .card-date {
    font-family: "Poppins", sans-serif;
    font-size: 15px;
    margin-bottom: 10px;
    margin-top: 30px;
}

.newsletter-container {
    gap: 50px;
    margin-top: 50px;
    max-width: 1400px;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 300px));
    align-items: center;
    justify-content: center;
}

.newsletter {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 300px;
    background: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: rgba(136, 191, 140, 0.48) 6px 2px 16px 0px,
        rgba(255, 255, 255, 0.8) -6px -2px 16px 0px;
    margin: auto;
}

.newsletter-container .newsletter img {
    width: 325px;
    height: auto;
    object-fit: cover;
    transition: transform 0.3s ease-in-out; /* Animation */
}

.newsletter-container .newsletter img:hover {
    transform: scale(1.05);
}

#social-links ul {
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.socials {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

/*********************************************************************************************************************/

/**
    Elements related to News Article
 */

.news-article-main {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    margin-top: 100px;
    margin-bottom: 50px;
    display: flex;
    justify-content: center;
    padding: 0 20px;
}

.news-article {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #ffffff;
    border-radius: 15px;
}

.news-article h2 {
    text-align: center;
    font-family: "Poppins", sans-serif;
    font-size: 40px;
    margin-top: 30px;
    margin-bottom: 50px;
    padding-left: 10px;
    padding-right: 10px;
}

.news-article .news-article-content {
    width: 100%;
}

.news-article .news-article-content p {
    font-family: "Poppins", sans-serif;
    box-sizing: border-box;
    font-size: 17px;
    text-align: justify;
}

.news-hashtags {
    font-family: "Poppins", sans-serif;
    margin-top: 50px;
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.news-hashtags p {
    padding: 6px 12px;
    border-radius: 15px;
    background-color: #a9eec6;
    margin: 0 5px;
}

.news-article .article-image {
    border-radius: 15px;
    margin-bottom: 30px;
    max-width: 1400px;
    width: 100%;
    height: auto;
    box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
}

/*********************************************************************************************************************/

/**
    Elements related to Modules
 */

.modules-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.modules-inside {
    display: grid;
    justify-content: center;
    grid-template-columns: repeat(auto-fit, minmax(300px, 300px));
    max-width: 1400px;
    width: 100%;
    padding: 20px;
    margin-right: auto;
    margin-left: auto;
    gap: 70px;
}

.autoevaluation-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.autoevaluation-container p {
    font-family: "Poppins", sans-serif;
    font-size: 17px;
    text-align: center;
}

.modules-container .module {
    margin-bottom: 50px;

    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 auto;
    gap: 10px;
    border-radius: 15px;
    width: 300px;
    height: 400px;
    box-shadow: rgba(136, 191, 140, 0.48) 6px 2px 16px 0px,
        rgba(255, 255, 255, 0.8) -6px -2px 16px 0px;
    border: #37a466 2px solid;
}

.modules-container .module a,
.autoevaluation-container a {
    text-decoration: none;
    color: black;
    padding: 10px 15px;
    background-color: #2e8b57;
    border-radius: 15px;
    color: white;
    transition: 0.2s ease-in;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
}

.modules-container .module a:hover,
.autoevaluation-container a:hover {
    background-color: #f8de7e;
    color: black;
}

.modules-container .module img {
    margin-bottom: 15px;

    width: 100%;
    height: auto;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}

/*********************************************************************************************************************/

/**
    Elements related to the Database
 */

.db-table {
    display: flex;
    flex-direction: column;
    border-radius: 15px;
    border: #e9e9e9 0.1px solid;
    box-shadow: rgba(215, 215, 215, 0.48) 6px 2px 16px 0px,
        rgba(255, 255, 255, 0.8) -6px -2px 16px 0px;
    padding: 20px 10px;
}

.db-data-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.db-data-container table th {
    text-align: start;
    padding: 15px;
}

.db-data-container .title-table {
    text-transform: uppercase;
    font-family: "Poppins", sans-serif;
    font-size: 20px;
    text-align: center;
    border-radius: 15px;
    text-align: start;
    background-color: #6dba6d;
    color: white;
}

.db-data-container .content td {
    font-family: "Poppins", sans-serif;
    font-size: 17px;
    text-align: start;
    padding: 15px;
}

.db-table a {
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
    background: #6dba6d;
    border-radius: 50px;
    color: white;
    cursor: pointer;
    font-family: Inter, Helvetica, "Apple Color Emoji", "Segoe UI Emoji",
        NotoColorEmoji, "Noto Color Emoji", "Segoe UI Symbol", "Android Emoji",
        EmojiSymbols, -apple-system, system-ui, "Segoe UI", Roboto,
        "Helvetica Neue", "Noto Sans", sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    opacity: 1;
    outline: 0 solid transparent;
    padding: 12px 24px;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    width: fit-content;
    word-break: break-word;
    transition: 0.2s ease-in-out;
    border: 0;
}

.db-table a:hover {
    background: #2e8b57;
    box-shadow: 0px 15px 20px rgba(190, 190, 190, 0.4);
    color: #fff;
    transform: translateY(-7px);
}

.filter-container {
    width: 100%;
}
.filters {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.filters select {
    padding: 10px;
    border-radius: 15px;
    border: 1px solid #ccc;
    outline: none;
}

.db-data-container .title {
    width: 700px;
    font-weight: 600;
}

.db-data-container .filter1 {
    width: 250px;
}

.db-data-container .fieldofaction {
    width: 300px;
}

.db-data-container .button {
    width: 250px;
}

/*********************************************************************************************************************/

/**
    Elements related to the DATABASE Detail
 */

.database-detail-container {
    margin: 0 auto;
    max-width: 1400px;
    width: 100%;
    margin-top: 100px;
    margin-bottom: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    font-family: "Poppins", sans-serif;
}

.database-detail {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #ffffff;
    border-radius: 15px;
}

.database-detail-container h2 {
    font-weight: 600;
    text-align: center;
    font-size: 40px;
    margin-top: 30px;
    margin-bottom: 50px;
    text-transform: uppercase;
}

.database-detail-description {
    margin-bottom: 30px;
}

.database-detail-container .database-detail {
    line-height: 35px;
    font-family: "Poppins", sans-serif;
    margin-bottom: -20px;
    font-size: 17px;
    text-align: justify;
}

/*********************************************************************************************************************/

/**
    Elements related to the QUIZ
 */

.quiz-container {
    font-family: "Poppins", sans-serif;
}

.quiz-container .quiz-header {
    list-style: none;
    background: #ffffff;
    border-radius: 15px;
    box-shadow: #979797 0px 0px 5px;
    padding: 20px;
    height: auto;
    width: 800px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.quiz-header h3 {
    text-transform: uppercase;
    font-size: 30px;
    font-weight: 600;
    text-align: center;
    font-family: "Poppins", sans-serif;
    margin-top: 0;
    margin-bottom: 20px;
}

.quiz-header ul {
    padding: 0;
    margin: 0;
}

.quiz-container .quiz-header ul li {
    text-align: start;
    list-style: none;
}
.quiz-container .quiz-header ul li label {
    text-align: center;
    font-size: 17px;
}

/*********************************************************************************************************************/

/**
    Elements related to the Contact
 */

.right-side {
    border-radius: 15px;
    min-height: 500px;
    padding: 20px;
    box-sizing: border-box;
}

.contact_form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 500px;
    min-width: 350px;
    border-radius: 15px;
    padding: 20px;
}

.form-group {
    border-radius: 15px;
    margin-bottom: 20px;
    background: white;
}

input[type="text"],
input[type="email"],
textarea {
    width: 100% !important;
}

.textarea {
    resize: vertical;
}

/*********************************************************************************************************************/

/**
    Elements related to the Admin Dashboard Sidebar
 */

.container-scroller {
    overflow: auto;
    display: flex;
    height: 100dvh;
    width: 100%;
}

.sidebar {
    position: sticky;
    left: 0;
    top: 0;
    overflow-y: auto;
    height: 100%;
    flex: 1 1 0;
    max-width: 250px;
    padding: 2rem 1rem;
    background-color: #598a72;
}

main {
    height: 100%;
    flex: 1;
}

.admin-dashboard-logo {
    width: 150px;
    height: 150px;
    margin-left: 30px;
}

.sidebar .menu {
    margin: 0 -1rem;
}

.sidebar .menu-item {
    text-align: center;
    margin-top: 10px;
    padding: 1rem;
    text-transform: uppercase;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    display: block;
    transition: 0.2s linear;
}

.sidebar .menu .menu-item:hover,
.sidebar .menu .menu-item.active {
    border-right: 5px solid #4ee567;
}

/*********************************************************************************************************************/

/**
    Elements related to Add News
 */

.addnews-form {
    margin-top: 50px;
    margin-left: 50px;
    margin-right: 50px;
    padding-bottom: 30px;
}

.addnews-form img {
    margin-top: 20px;
}

.addnews-form embed {
    margin-top: 20px;
}

/**
    Elements related to MarkerView
 */

.markerView {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 1400px;
    width: 100%;
    padding-right: 20px;
    padding-left: 20px;
    margin-top: 130px;
    margin-right: auto;
    margin-left: auto;
    gap: 20px;
}

.markerView h1 {
    align-self: flex-start;
    font-family: "Poppins", sans-serif;
    font-size: 40px;
}

.markerView p {
    font-family: "Poppins", sans-serif;
    font-size: 17px;
    text-wrap: pretty;
}

.markerView img {
    max-width: 1400px;
    width: 100%;
    height: auto;
    border-radius: 15px;
}

.markerSocials {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.markerSocialElements {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.markerSocialElements p {
    font-family: "Poppins", sans-serif;
    font-size: 17px;
}

/*Media Queries*/

@media (max-width: 1200px) {
    .white-container .about_project img {
        width: 100%;
        height: auto;
    }

    .white-container .about_project {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    /*Home + App Layout*/

    .navbar-items {
        display: none;
    }
    .hero_content {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
    }
    .hero_animation {
        display: none;
    }

    .text_block {
        width: 85%;
    }

    /*Partners Container*/

    .partner-display {
        gap: 0;
        flex-direction: column;
    }

    .social-media-links {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .partners-container {
        gap: 20px;
        width: 100%;
    }

    .partner-display img {
        max-width: 300px;
        max-height: 300px;
        overflow: hidden;
    }

    /*news-detail*/

    .news-article {
        width: 100%;
        text-align: center;
    }

    .news-hashtags {
        gap: 10px;
    }

    .news-article .article-image {
        width: 90%;
        height: auto;
    }
    #menuicon {
        display: flex;
        color: black;
        padding: 0;
        margin: 0;
        cursor: pointer;
        align-items: center;
        justify-content: center;
    }
    .event-row.timeline-row .card-body {
        display: flex;
        flex-direction: column;
        text-align: center;
        width: 100%;
    }

    /*MarkerView*/
    .markerView img {
        width: 100%;
        height: auto;
    }

    /*Gallery*/
    .swiper {
        padding: 30px;
    }
}

@media (max-width: 1520px) {
    /*Home Timeline*/

    .timeline-container {
        display: flex;
        flex-direction: column;
        width: 80%;
    }

    .timeline-container::before {
        display: none;
    }

    .timeline-event::before {
        display: none;
    }

    .timeline-event:nth-child(odd) {
        justify-content: center;
        padding: 0;
    }

    .timeline-event:nth-child(even) {
        justify-content: center;
        padding: 0;
    }

    .event-row.timeline-row {
        width: auto;
        flex-direction: column;
    }

    .event-row.timeline-row::before {
        display: none;
    }

    .event-row.timeline-row .card-body {
        display: flex;
        flex-direction: column;
        text-align: center;
        width: 80%;
    }
    .text_block {
        width: 100%;
    }
    /*Database list*/

    .db-data-container .title-table {
        display: none;
    }

    .db-data-container > * {
        width: 100%;
    }
    .db-data-container .db-table tbody tr {
        margin: auto;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .db-data-container .db-table tbody td {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    /*Database detail*/

    .database-detail-container .database-detail {
        padding: 0 50px;
        width: 100%;
    }

    .database-detail-container {
        width: 100%;
    }
}

@media (max-width: 1660px) {
    .footer .content {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 0;
    }

    .footer .content .text {
        text-align: center;
    }
}

@media (max-width: 768px) {
    /*Database*/

    .filters {
        flex-direction: column;
    }
    .database-container .database {
        width: 100%;
    }

    .db-table a {
        margin: 0;
    }

    .footer .content .text p {
        padding: 20px;
        width: 100%;
    }

    .footer .content .footer-images {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 20px;
    }
    .footer .content .footer-images .image-link img {
        margin: 0;
    }
}
