#google-map {
    height: 400px;
    width: 100%;
}

.gm-style img {
    width: 40%;
}

.tooltip-box {
    width: 407px;
    height: 100%;
    filter: drop-shadow(0px 3px 29.5px rgba(14, 10, 80, 0.08));
    background-color: #ffffff;
    border-radius: 14px;
    padding-block: 20px;
    box-shadow: 0 2px 0px 0px #f2951f;
}

.tooltip-inner-box {
    display: flex;
    align-items: center;
    gap: 25px;
    padding-inline: 15px;
}

.tooltip-inner-box .image-box img {
    width: 155px;
    height: 157px;
    border-radius: 14px;
    object-fit: cover;
}

.tooltip-info h3 {
    font-size: 28px;
    line-height: 29px;
    color: #000000;
    font-weight: 600;
    font-family: "Inter";
    text-transform: capitalize;
    margin: 0;
}

.tooltip-info p {
    font-size: 15px;
    line-height: 16px;
    color: #000000;
    font-weight: 400;
    font-family: "Poppins";
    padding-block: 11px 15px;
    margin: 0;
}

.tooltip-info a {
    font-size: 18px;
    line-height: 31px;
    color: #000000;
    font-weight: 600;
    font-family: "Inter";
    text-decoration: none;
}

.tooltip-box:before {
    width: 0;
    height: 0;
    border-left: 1px solid transparent;
    border-right: 22px solid transparent;
    border-top: 23px solid #fff;
    position: absolute;
    content: "";
    bottom: -23px;
    left: 85px;
}

.tooltip-box:after {
    width: 2px;
    height: 0px;
    border-left: 0px solid transparent;
    border-right: 21px solid transparent;
    border-top: 21px solid #f1951f;
    bottom: -22.5px;
    left: 84.6px;
    z-index: -1;
    content: "";
    position: absolute;
}