.title-section {
    display: flex;
    color: #fff;
    background-color: black;
    padding-top: 0px;
    height: auto;
    align-items: center;
}
@media (max-width: 769px) {
    .title-section {
        padding-top: 115px;
    }
}

.title-subsection {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 1600px;
    padding-top: 5%;
    padding-left: 21.75%;
    padding-bottom: 1%;
    height: auto;
}
@media (max-width: 1024px) {
    .title-subsection {
        padding-left: 0%;
    }
}
@media (max-width: 769px) {
    .title-subsection {
    }
}

.title-header {
    animation: 0.8s ease-out 0s 1 zoomUp;
    display: flex;
    font-size: 14px;
    line-height: 140%;
    padding-top: 2.1%;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
}
@media (max-width: 1024px) {
    .title-header {
        padding-top: 15%;
    }
}
@media (max-width: 769px) {
    .title-header {
        padding-top: 25%;
    }
}


.title-subheader {
    animation: 0.9s ease-out 0s 1 zoomUp;
    padding-left: 0.2%;
    padding-top: 1.1%;
    padding-bottom: 3%;
    display: flex;
    font-size: 56px;
    font-weight: 500;
    line-height: 110%;
    color: #fff;
}
@media (max-width: 1024px) {
    .title-subheader {
        margin-left: 7%;
    }
}
@media (max-width: 769px) {
    .title-subheader {
        padding-top: 5%;
        padding-bottom: 10%;
        font-size: 40px;
        line-height: 110%;
        margin-left: 0;
    }
}

.detail-row {
    display:flex;
    width:60%;
    flex-direction: row;
    justify-content: space-between;
    border-bottom: solid 1px var(--global-colour-tertiary);
    margin-left: 10%;
}
@media (max-width: 1024px) {
    .detail-row {
        width: 86%;
        margin-left: 7%;
    }
}
@media (max-width: 769px) {
    .detail-row {
        flex-direction: column;
        padding-bottom: 5%;
        width:93%;        
        margin-left: 0.5%;
    }
}

.contact-entry {
    align-items: flex-start;
    display: flex;
    flex-direction: column;
    animation-name: zoomUp; 
    width: 100%;
}

.contact-entry-1 {
    animation-duration: 1.2s;
    margin-block-end: 2rem;
}
@media (max-width: 769px) {
    .contact-entry-1 {
        margin-block-end: unset;
    }
}

.contact-entry-2 {
    animation-duration: 1.3s;
}

.contact-entry-3 {
    animation-duration: 1.4s;
}

.contact-entry-4 {
    animation-duration: 1.5s;
}

.contact-header {
    font-family: var(--global-primary-font-family), sans-serif;
    font-size: 20px;
    font-weight: 600;
    /*letter-spacing: 2px;*/
    line-height: 24px;
    /*text-transform: uppercase;*/
    color: #fff;
    /*border-bottom: solid 1px var(--global-colour-tertiary);*/
    padding-bottom: 16px;    
    Width: 95%;
}
@media (max-width: 769px) {
    .contact-header {
        display: none;
    }
}

.contact-detail {
    font-weight: 100;
    font-size: 20px;
    line-height: 28px;
    color: #fff;
    margin-top: 16px;
    padding-bottom: 16px;
}
@media (max-width: 1024px) {
    .contact-detail {
        font-size: 16px;
    }
}

@media (max-width: 769px) {
    .contact-location {
        display: none;
    }
}

.contact-facility {
    font-weight: 600;

}
@media (max-width: 769px) {
    .contact-facility {
        font-size: 20px;
    }
}

.contact-detail a {
    text-decoration: none;
    background-color: transparent;
    color: #fff;
}

/* Map section */

.body-flex {
    background-color: black;
    align-items: center;
    justify-content: center;
    display: flex;
}

.body-flex-right {
    position: relative;
    margin-bottom: -4px;    
    width: 55%;
    max-width: 1200px;
    margin-top: 5%;
    margin-bottom: 2%;
}
@media (max-width: 1024px) {
    .body-flex-right {
        width: 86%;
        
    }
}
@media (max-width: 769px) {
    .body-flex-right {
        width: 85%;        
    }
}

.body-flex-right a {
    text-decoration: none;
    background-color: transparent;
    color: var(--global-colour-primary);
}

.img-map {
    height: 484px;
    width: 100%;
    object-fit: cover;
    position: relative;
}

.map-button {
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 2px;
    line-height: 105%;
    background-color: var(--global-colour-text-light);
    border-style: solid;
    border-color: var(--global-colour-text-light);
    border-width: 8px 8px 8px 8px;
    border-radius: 100px 100px 100px 100px;
    padding: 5px 8px 5px 8px;
    text-align: center;
}

.map-button-border {
    cursor: pointer;
    background-color: rgba(255,255,255, 0.2);

    border-style: solid;
    border-width: 10px 10px 10px 10px;
    border-color: rgba(255,255,255, 0.2);
    border-radius: 100px 100px 100px 100px;

    position: absolute;
    /*transform: translate(-50%, -50%);*/
    left: 46.5%;
    top: 90%;
    margin-bottom: 40px;
    animation: 1s ease-out 0s 1 zoomIn;
}
@media (max-width: 1024px) {
    .map-button-border {
        left: 42.5%;
    }
}
@media (max-width: 768px) {
    .map-button-border {
        left: 27.5%;
    }
}