

/* ------- Map section ---------*/
.map-section {
    position: relative;
}

.map-section .map-img img {
    height: calc(100vh - 90px);
    object-fit: contain;
    width: 100%;
}

.map_markers_marker {
    position: absolute;
    cursor: pointer;
}

.map_markers {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.map_markers_marker_pin img {
    width: 1.5em;
    max-width: 2em;
}

.map_markers_marker_flag {
    position: absolute;
    left: 0;
    top: 0;
    width: 60px;
    opacity: 0;
    transform: translateX(-50%) translateY(-50%) scale(0);
    transition: all 1s ease-in-out;
    transform-style: preserve-3d;
    margin-top: 50%;
    margin-left: 50%;
    background-color: #fff;
    padding: 10px 15px;
    width: auto;
    color: #b454af;
    border-radius: 10px;
    background-image: url(../images/map.png);
    background-size: cover;
    background-position: center;
    box-shadow: 0 3px 6px rgb(0 0 0 / 16%) !important;
    z-index: 1;
}

.map_markers_marker:hover .map_markers_marker_flag {
    opacity: 1;
    transform: translateX(-50%) translateY(-50%) scale(1);
}

.map_markers_marker:hover .map_markers_marker_pin {
    opacity: 0;
    transform: scale(0);
}

.map_markers_marker_pin {
    transition: all 0.3s ease-in-out;
}

.map_markers_marker_flag img {
    animation: flag 2s infinite ease-in-out;
    height: auto;
    width: 100%;
    object-fit: contain;
}


/*------------ buttons ----------------*/
.btn {
    padding: 10px 50px;
    border: none;
    color: #fff;
  
    position: relative;
    z-index: 2;
    overflow: hidden;
    border: 1px solid transparent;
    border-radius: 0;
}

.btn::before {
    position: absolute;
    content: "";
    z-index: -1;
    left: -1px;
    right: -1px;
    top: -1px;
    height: 100%;
    width: 100%;
    bottom: -1px;
    background: #000;
    transform: skewX(45deg) scale(0, 1);
    transition: all 0.5s ease 0s;
}

.btn:hover::before {
    transform: skewX(45deg) scale(1, 1);
}

.btn:hover {
    border: 1px solid #000;
    background-color: black;
    color: #fff;
}

.btn-check:focus + .btn,
.btn:focus {
    outline: 0;
    box-shadow: 0px 3px 6px #00000029;
}

.whatsapp {
    position: fixed;
    bottom: 5rem;
    right: 0.5rem;
    box-shadow: 0 0 16px #e9511d29;
    z-index: 4;
    color: #fff;
    border-radius: 50%;
    font-size: 2.7rem;
    width: 60px;
    height: 60px;
    background: #25D366;
    text-align: center;
}

a.whatsapp:hover {
    color: #fff;

}

.btn.pro {
    padding: 0.375rem 0.75rem;

}