.location-block {
    padding: 50px 0 75px;
}

.location-block .container {
    position: relative;
}

.location-title {
    font-weight: 400;
    font-size: 64px;
    line-height: 100%;
    color: #232D3F;
    text-align: center;
        font-family: var(--second-font);
}


.location-content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
}

.location-address {

    text-align: center;

    margin: 30px 0 0 0;
}
.location-address a {
    color: #005B41;
    font-weight: 500;
    font-size: 24px;
}
.location-list ul {
width: 100%;
}
.location-list {
    max-width: 461px;
    margin-left: 20px;
width: 100%;
}

.location-list .address-item p {
    position: relative;

}
.location-list .address-item p:before {
content: '';
display: block;
    width: 0;
    height: 2px;
    background-color: #232D3F;
    position: absolute;
right: -85px;
    z-index: 3;
    top: calc(50% - 1px);
transition: all 0.6s;
}

.location-list .address-item {
    font-weight: 500;
    font-size: 24px;
    text-align: left;
    color: #232D3F;
    margin: 0 0 30px;
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
    gap: 15px;
    position: relative;
transition: all 0.6s;
}

.location-list .address-item.action p:before {
    width: 80px;
}

.location-list .address-item:last-child {
    margin: 0;
}

.location-map {
    max-width: 968px;
    width: 100%;
    position: relative;
}

.location-list .address-item.action {
    color: #005B41;
}


#map-glow-canvas {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    width: 100%;
    height: 100%;
}

.location-block-border-top,
.location-block-border-bottom {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    left: 0;
    position: absolute;
    z-index: 3;
}

.location-block-border-top {
    top: 25px;
}

.location-block-border-bottom {
    bottom: -65px;
}

.location-block-border-top img {
    width: 35%;
}

@media only screen and (max-width: 1024px) {
.location-list {
	margin-left: 0;
}
    .location-block-border-top img {
        width: 25%;
    }

    .location-block-border-top-left {
        margin-left: 2rem;
    }

    .location-block-border-top-right {
        margin-right: 2rem;
    }
}

@media only screen and (max-width: 768px) {  
    .location-title {
        font-size: 32px;
    }

    .location-address {
        font-size: 20px;
        margin: 20px 0 30px;
    }

    .location-content {
        align-items: flex-start;
        flex-direction: column;
    }

    .location-list .address-item {
        font-size: 18px;
        margin: 0 0 15px;
    }

    .location-block {
        margin-bottom: 0;
    }
}