/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat+Alternates:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Arvo:ital,wght@0,400;0,700;1,400;1,700&family=Kalam:wght@300;400;700&family=Lora:ital,wght@0,400..700;1,400..700&family=Mochiy+Pop+P+One&family=Montserrat+Alternates:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Montserrat+Subrayada:wght@400;700&family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Arvo:ital,wght@0,400;0,700;1,400;1,700&family=Kalam:wght@300;400;700&family=Khand:wght@300;400;500;600;700&family=Lora:ital,wght@0,400..700;1,400..700&family=Mochiy+Pop+P+One&family=Montserrat+Alternates:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Montserrat+Subrayada:wght@400;700&family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Arvo:ital,wght@0,400;0,700;1,400;1,700&family=Lora:ital,wght@0,400..700;1,400..700&family=Mochiy+Pop+P+One&family=Montserrat+Alternates:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Montserrat+Subrayada:wght@400;700&display=swap');


/* About Us main section */

.left-side {
    padding-top: 80px;
    padding-bottom: 80px;
    color: #4a596c;
    display: flex;
    align-items: center;
    font-size: 20px;
    justify-content: center;
    text-align: center;
    font-family: "Khand", sans-serif;
    font-weight: 500;
    font-style: normal;
}

.right-side {
    padding-top: 80px;
    padding-bottom: 50px;
    color: #4a596c;
    display: flex;
    align-items: center;
    font-size: 15px;
    letter-spacing: 1px;
    justify-content: center;
    text-align: justify;
    font-family: "Nunito", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
}

@media (max-width: 768px) {
    .split-screen {
        height: auto; /* Auto height for smaller screens */
    }
    .left-side, .right-side {
        padding-top: 40px;
        padding-bottom: 30px;
    }
}

.about_section hr {
    border-radius: 15px;
    border: 3px solid #4e6b95;
    width: 50%;
    margin: 0 auto;
    justify-content: center;
}

/* Timeline */

.timeline_section {
    background-color: #4e6b95;
    padding: 20px;
}

.brands_header p {
    font-family: "Arvo", serif;
    font-weight: 500;
    color: #ffffff;
    font-size: 30px;
    font-style: normal;
    text-align: center;
    margin-bottom: 10px;
}

.timeline {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.timeline-item {
    display: flex;
    align-items: center;
    margin: 20px 0;
    width: 100%;
}

.timeline-item .year {
    flex-shrink: 0;
    width: 80px;
    font-size: 30px;
    color: #FFFFFF;
    text-align: right;
    margin-right: 20px;
    font-family: "Khand", sans-serif;
    font-weight: 500;
    font-style: normal;
}

.timeline-item .details {
    flex-grow: 1;
    background-color: #e1e9f4;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.timeline-item .details p {
    margin: 0;
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    color: #1a355a;
    font-family: "Nunito", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
}

@media (max-width: 768px) {
    .timeline-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .timeline-item .year {
        width: 100%;
        text-align: left;
        margin-bottom: 10px;
    }

    .timeline-item .details {
        width: 100%;
    }
}