.about-page-container {
    background-image: url("../images/dorado-bg.png");
    background-size: cover;
    background-repeat: no-repeat;
}

.about-page {
    background: rgba(0, 0, 0, .7);
}

.section-container {
    margin-left: 4rem;
    margin-right: 4rem;
    border-radius: 5px;
}

.image-container {
    display: flex;
    margin: auto;
    align-items: center;
    justify-content: center;
}

.image-container img {
    padding: 1rem;
}

.brand-container {
    padding-top: 7rem;
    padding-bottom: 1rem;
}

.brand-name {
    color: #e5e5e5;
    padding-top: 1rem;
    text-align: center;
    word-spacing: 0.2rem;
    font-weight: 200;
    font-size: 32px;
}

@media screen and (max-width: 650px) {
    .brand-name {
        font-size: 22px;
    }
    .timeline-paragraph{
        font-size: 14px!important;
    }
    .timeline-year{
        font-size: 18px!important;
    }
}

.brand-second-name {
    text-align: center;
    color: black;
}

.timeline {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 5px;
    padding-top: 3rem;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 4px;
    background-color: #fff;
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -3px;
}

.timeline-container {
    padding: 10px 40px;
    position: relative;
    background-color: inherit;
    width: 50%;
}

.timeline-container::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 25px;
    right: -12px;
    background-color: #070155;
    border: 4px solid #FF9F55;
    top: 15px;
    border-radius: 50%;
    z-index: 1;
}

.timeline-left {
    left: 0;
}

.timeline-right {
    left: 50%;
}

.timeline-left::before {
    content: " ";
    height: 0;
    position: absolute;
    top: 22px;
    width: 0;
    z-index: 1;
    right: 30px;
    border: medium solid white;
    border-width: 10px 0 10px 10px;
    border-color: transparent transparent transparent rgba(255, 255, 255, 0.7);
}

.timeline-right::before {
    content: " ";
    height: 0;
    position: absolute;
    top: 22px;
    width: 0;
    z-index: 1;
    left: 30px;
    border: medium solid white;
    border-width: 10px 10px 10px 0;
    border-color: transparent rgba(255, 255, 255, 0.7) transparent transparent;
}

.timeline-right::after {
    left: -12px;
}

.timeline-content {
    padding: 20px 30px;
    position: relative;
    border-radius: 2px;
}
@media screen and (max-width: 675px){
    .timeline-content{
        padding: 10px 5px;
    }
}
.timeline-paragraph {
    color: #e5e5e5;
    font-size: 18px;
}

.timeline-year {
    color: #e9883d;
    font-size: 24px;
    font-weight: 900;
}

.timeline-center {
    margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    z-index: 5;
    color: #e5e5e5;
    font-size: 18px;
    font-weight: 800;
}

@media screen and (max-width: 600px) {
    .timeline::after {
        left: 31px;
    }

    .timeline-container {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }

    .timeline-container::before {
        left: 60px;
        border: medium solid white;
        border-width: 10px 10px 10px 0;
        border-color: transparent white transparent transparent;
    }

    .timeline-left::after,
    .timeline-right::after {
        left: 15px;
    }

    .timeline-right {
        left: 0%;
    }
}

/*Image Gallery*/
.gallery {
    padding: 1rem;
}

.gallery-container {
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}
.gallery-container>div{
    width: auto!important;
}
.gallery .row{
    margin-right: 0!important;
    margin-left: 0!important;
}
.gallery-img {
    background-color: #070155;
    border: 1px solid #070155;
    border-radius: 5px;
    cursor: pointer;
}

.gallery-img:hover {
    opacity: 0.75;
}

.gallery-close {
    position: absolute;
}

.gallery-img {
    width: 250px;
    padding: 4px;
    margin-right: 2px;
    cursor: zoom-in;
    margin-top: 1rem;
}

.gallery-modal {
    display: flex;
    z-index: 32;
    align-items: center;
    justify-content: center;
    position: fixed;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.9);
    animation-name: modal;
    animation-duration: 0.6s;
    -webkit-animation-name: modal;
    -webkit-animation-duration: 0.6s;
}

@keyframes modal {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@-webkit-keyframes modal {
    from {
        -webkit-opacity: 0;
    }

    to {
        -webkit-opacity: 1;
    }
}

.gallery-modal-img {
    display: flex;
    margin: auto;
    width: 800px;
    padding: 10px;
    margin-left: auto;
    margin-right: auto;
    position: absolute;
}

@media screen and (max-width: 800px) {
    .gallery-modal-img {
        width: 350px;
    }

    .close-gallery {
        right: 20px !important;
        top: 300px !important;
    }
}

.close-gallery {
    position: absolute;
    top: 120px;
    right: 130px;
    transition: 0.3s ease;
    cursor: pointer;
    font-size: 50px;
    color: rgb(255, 255, 255);
    padding: 5px;
    line-height: 30px;
}

.close-gallery:hover {
    color: rgb(201, 200, 200);
}

.container-top {
    align-items: center;
    justify-content: center;
}

.container-bottom {
    align-items: center;
    justify-content: center;
}