.mb-3 {
    margin-bottom: 20px;
}

.mt-3 {
    margin-top: 20px;
}

.branch-text-h1{
    color: #ff8e14;
}

hr {
    border: 2px solid #ff8e14;
    border-radius: 0 20px;
    margin-bottom: 20px;
}

.info-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.info-img img {
    width: 100%;
    border: 2px solid #333;
    border-radius: 20px;
    transition: transform 0.3s ease-in-out;
}

.info-img img:hover {
    cursor: pointer;
    transform: scale(1.1);
}

.info-text h2 a {
    color: #ff8e14;
    position: relative;
    display: inline-block;
    padding-bottom: 1px;
}

.info-text h2 a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 0;
    background-color: #ff8e14;
    transition: width 0.3s ease-in-out;
    transform-origin: left;
}

.info-text h2 a:hover::after {
    width: 100%;
    transform-origin: right;
}

.info-text h3 a {
    color: #000;
}

.info-text a:hover {
    color: #ff8e14;
}

.map {
    position: relative;
    height: 150px;
    border: 2px solid #ff8e14;
    border-radius: 20px;
}

.map:hover {
    border: 2px solid #000;
    border-radius: 20px;
}

.map iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 20px;
}