.hero-section {
    position: relative;
    width: 100%;
    padding: 4rem 0;
    background-color: #fff;
}

.hero-image-square {
    position: relative;
    width: 100%;
    max-width: 750px;
    aspect-ratio: 1 / 1;
    /*background-color: #000;*/
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border-radius: 8px;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.hero-image-square::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: inherit;
    background-size: cover;
    background-position: center;
    filter: blur(15px) brightness(0.75);
    z-index: -1;
    transform: scale(1.1);
}



.hero-image-square img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    position: relative;
    z-index: 2;
}

.hero-info-box {
    /*background-color: #0f172a;*/
    background-color: #f4f1e8;
    color: #000632;
    padding: 4rem;
    border-left: 2px solid #fff;
    border-top: 2px solid #fff;
    border-radius: 8px;
    z-index: 20;
    width: 100%;
    max-width: 600px;
    hyphens: auto;
}

.hero-info-box-full {
    max-width: 100%;
}

@media (min-width: 992px) {
    .hero-info-box {
        margin-left: -80px;
        margin-top: 60px;
    }
    .hero-info-box-full {
        margin-left: 0;
        margin-top: 0;
    }
}

@media (max-width: 991px) {
    .hero-info-box {
        margin-top: -50px;
        width: 90%;
        margin-left: auto;
        margin-right: auto;
        padding: 2.5rem;
    }
    .hero-info-box-full {
        margin-top: 0;
        width: 100%;
    }
}

.btn-lime {
    background-color: #f9b000;
    color: #0f172a;
    font-weight: 700;
    border-radius: 50px;
    padding: 0.75rem 2.5rem;
    border: none;
    transition: background-color 0.2s;
}

.btn-lime:hover {
    background-color: #f39323;
    color: #0f172a;
}

.map-placeholder {
    background-color: #e9ecef;
    border: 1px solid #dee2e6;
    position: relative;
    aspect-ratio: 4 / 3;
}

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

.contact-section {
    background-color: #f8f9fa;
    padding: 5rem 0;
}
.equipicon {
    width: 30px;
    height: 30px;
    margin-right: 0.5rem;
}
.detailttext {
    color: #2e2e2e;
}

.et_sharefunctions_hero, #map-links {
    display: flex;
    justify-content: flex-end;
    width: 100%;
    max-width: 600px;
    float: none;
    padding: 0;
}

.et_sharefunctions_hero_full {
    max-width: 100%;
}

@media (min-width: 992px) {
    .et_sharefunctions_hero {
        margin-left: -80px;
    }
    .et_sharefunctions_hero_full {
        margin-left: 0;
    }
}

@media (max-width: 991px) {
    .et_sharefunctions_hero {
        width: 90%;
        margin-left: auto;
        margin-right: auto;
    }
    .et_sharefunctions_hero_full {
        width: 100%;
    }
}

.et_sharefunctions_hero a , #map-links a{
    font-size:2rem;
    color: #606060;
    margin-left: 1rem;
}
.et_sharefunctions_hero a:hover, #map-links a:hover{
    color: #2e2e2e;
}