:root {
    --blue-color: #30C0D8;
    --purple-color: #7848A8;
    --pink-color: #F03078;
    --orange-color: #F07800;
    --darkblue-color: #3A62EE;
    --yellow-color: #F0D800;
}

.bold-item {
    font-weight: bold;
}

.white-background {
    background-color: white;
}

body.about-page {
    background-color: var(--blue-color);
}

body.home-page {
    background-color: var(--purple-color);
}

body.privacy-page {
    background-color: var(--pink-color);
}

html {
    font-family: 'Abel Pro';
    font-size: 14px;
}

.figure-caption {
    font-family: 'Abel Pro';
    font-size: 14px; /* Example of font size */
    color: White; /* Example of text color */
}

.text-center {
    text-align: center;
}

h2 {
    font-family: 'AbelPro', sans-serif;
    font-size: 26px;
    color: White;
    margin-bottom: 10px;
}

p1 {
    font-family: 'AbelPro', sans-serif;
    font-size: 14px;
    color: White;
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

.img-fluid {
    max-width: 100%;
    height: auto;
}

.img-rounded {
    border-radius: 15px; /* Adjust this value to increase or decrease rounding */
    overflow: hidden; /* Ensure content doesn't overflow the rounded corners */
}

.text-section {
    font-family: Arial, sans-serif;
    font-size: 16px;
    line-height: 1.5; /* Line spacing */
    margin: 20px 0; /* Margin around paragraphs */
    text-align: justify; /* Full justification */
    margin-bottom: 20px;
}

.img-float-left-vsml {
    float: left;
    margin: 0 15px 15px 0;
    max-width: 200px;
}

.img-float-right-vsml {
    float: right;
    margin: 0 0 15px 15px;
    max-width: 200px;
}

.img-float-left-sml {
    float: left;
    margin: 0 15px 15px 0;
    max-width: 300px;
}

.img-float-right-sml {
    float: right;
    margin: 0 0 15px 15px;
    max-width: 300px;
}

.img-float-left-med {
    float: left;
    margin: 0 15px 15px 0;
    max-width: 400px;
}

.img-float-right-med {
    float: right;
    margin: 0 0 15px 15px;
    max-width: 400px;
}

.img-float-left-lg {
    float: left;
    margin: 0 15px 15px 0;
    max-width: 500px;
}

.img-float-right-lg {
    float: right;
    margin: 0 0 15px 15px;
    max-width: 500px;
}

.img-float-left-vlg {
    float: left;
    margin: 0 15px 15px 0;
    max-width: 600px;
}

.img-float-right-vlg {
    float: right;
    margin: 0 0 15px 15px;
    max-width: 600px;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.grid-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    background-color: white;
}

.photo {
    width: 100%;
    max-width: 350px;
    height: auto;
    margin-right: 20px;
    background-color:lightgrey;
}

    .timeline-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 20px;
    }

    .timeline {
        position: relative;
        width: 60%;
        max-width: 800px;
        margin: 0 auto;
    }

        .timeline::before {
            content: '';
            position: absolute;
            left: 50%;
            top: 0;
            bottom: 0;
            width: 2px;
            background: #333;
            transform: translateX(-50%);
        }

    .event {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 40px;
        width: 100%;
        position: relative;
    }

    .year-circle-left {
        display: flex;
        align-items: center;
        position: absolute;
        left: calc(50% + 32px);
        transform: translateX(-50%);
        text-align: center;
    }

    .year-circle-right {
        display: flex;
        align-items: center;
        position: absolute;
        left: calc(50% - 22px);
        transform: translateX(-50%);
        text-align: center;
        flex-direction: row-reverse;
    }

    .circle {
        width: 20px;
        height: 20px;
        border: 2px solid #333;
        border-radius: 50%;
        background-color: white;
        margin-right: 10px;
    }

    .year-left {
        font-weight: bold;
        font-size: 1.2em;
        margin: 0;
        margin-left: 10px; /* Add space between the circle and the year */
    }

    .year-right {
        font-weight: bold;
        font-size: 1.2em;
        margin: 0;
        margin-right: 10px; /* Add space between the circle and the year */
    }

    .details {
        width: 45%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

        .details img {
            width: 100%;
            max-width: 200px;
            height: auto;
            margin-bottom: 10px;
        }

    .left .details {
        align-items: flex-end;
        text-align: right;
        margin-right: auto;
    }

    .right .details {
        align-items: flex-start;
        text-align: left;
        margin-left: auto;
    }



.grid-container2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    padding: 20px;
    max-width: 1200px;
}

.grid-item2 {
    background-color: #f4f4f4;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    text-align: center;
    display: flex;
    flex-direction: column;
}

    .grid-item2 img {
        width: 100%;
        height: auto;
    }

.description2 {
    padding: 10px;
}

    .description2 h3 {
        margin-bottom: 10px;
    }

    .description2 p {
        color: #555;
    }


/* dropdown-menu.css */

.dropdown-menu3 {
    display: none;
    position: absolute;
    background-color: white;
    box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.1);
    padding: 1rem;
    width: 1100px;
    height: auto;
}

.dropdown:hover .dropdown-menu3 {
    display: grid;
    grid-template-columns: repeat(8, 1fr); /* 8 equal columns */
    gap: 1rem; /* space between columns */
}

.dropdown-item3 {
    color: black;
    text-decoration: none; /* Remove underline */  
    width: 120px;
}

    .dropdown-item3:hover {
        background-color: #f8f9fa;
        color: black; /* Maintain color on hover */
    }

.grid-container3 {
    display: grid;
    grid-template-columns: repeat(8, 1fr); /* 8 equal columns */
    gap: 1rem; /* space between items */
}

@media (max-width: 768px) {

    .img-float-left-vsml {
        float: none !important;
        display: block;
        max-width: 200px;
    }

    .img-float-right-vsml {
        float: none !important;
        display: block;
        max-width: 200px;
    }

    .img-float-left-sml {
        float: none !important;
        display: block;
        max-width: 300px;
    }

    .img-float-right-sml {
        float: none !important;
        display: block;
        max-width: 300px;
    }

    .img-float-left-med {
        float: none !important;
        display: block;
        max-width: 400px;
    }

    .img-float-right-med {
        float: none !important;
        display: block;
        max-width: 400px;
    }

    .img-float-left-lg {
        float: none !important;
        display: block;
        max-width: 500px;
    }

    .img-float-right-lg {
        float: none !important;
        display: block;
        max-width: 500px;
    }

    .img-float-left-vlg {
        float: none !important;
        display: block;
        max-width: 600px;
    }

    .img-float-right-vlg {
        float: none !important;
        display: block;
        max-width: 600px;
    }

    .grid-container {
        grid-template-columns: 1fr;
    }

    .grid-item {
        flex-direction: column;
        text-align: center;
    }

    .photo {
        margin-right: 0;
        margin-bottom: 10px;
    }

    .dropdown-menu3 {
        width: 150px;
    }

    .dropdown:hover .dropdown-menu3 {
        grid-template-columns: repeat(1 1fr); /* 1 equal columns */
    }

    .grid-container3 {
        grid-template-columns: repeat(1, 1fr); /* 1 equal columns */
    }
}