.map-container {
    position: relative;
    display: inline-block;
    width: 100%;
    max-width: 100%;
}

.map {
    width: 100%;
    height: auto;
    display: block;
}
@keyframes continuousAnimation {
    0% {
        transform: scale(1);
    }
    70% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}
.map-point {
    position: absolute;
    width: 28px;
    height: 28px;
    background-color: #372349;
    border-radius: 50%;
    cursor: pointer;
    transform: translate(-50%, -50%);
    z-index: 1;
    color: white;
    font-size: 22px;
    font-weight: bold;
    text-align: center;
    line-height: 28px;
    transition: transform 0.2s ease;
    animation: continuousAnimation 3s infinite;
}
.map-point:hover::after {
    content: attr(data-label);
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    background: #333;
    color: #fff;
    padding: 4px 8px;
    border-radius: 5px;
    font-size: 20px;
    white-space: nowrap;
    z-index: 999;
    pointer-events: none;
}

.navbar li {
    position: relative;
}
a.nav-link {
    color: #272262;
}
.navbar > ul > li {
    margin-left: 5px;
}

.navbar a,
.navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px 15px 24px 15px;
    font-size: 14px;
    white-space: nowrap;
    transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
}

.navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 0;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: rgba(255, 255, 255, 1);
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
}

.navbar .dropdown ul li {
    min-width: 200px;
}

.navbar .dropdown ul a {
    padding: 10px 20px;
}

.navbar .dropdown ul a i {
    font-size: 12px;
}

.navbar .dropdown:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}

.navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
}

.navbar .dropdown .dropdown:hover > ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
}

@media (max-width: 1366px) {
    .navbar .dropdown .dropdown ul {
        left: -90%;
    }

    .navbar .dropdown .dropdown:hover > ul {
        left: -100%;
    }
}

.mobile-nav-toggle {
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
}

@media (max-width: 991px) {
    .mobile-nav-toggle {
        display: block;
    }

    .navbar ul {
        display: none;
    }
}

.navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    transition: 0.3s;
    z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
    position: absolute;
    top: 15px;
    right: 15px;
    color: #fff;
}

.navbar-mobile ul {
    display: block;
    position: absolute;
    top: 55px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    padding: 10px 0;
    background-color: #fff;
    overflow-y: auto;
    transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
    padding: 10px 20px;
    font-size: 15px;
    color: #191919;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
    margin: 15px;
}

.navbar-mobile .dropdown ul {
    position: static;
    display: none;
    margin: 10px 20px;
    padding: 10px 0;
    z-index: 99;
    opacity: 1;
    visibility: visible;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
    min-width: 200px;
}

.navbar-mobile .dropdown ul a {
    padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
    font-size: 12px;
}

.navbar-mobile .dropdown > .dropdown-active {
    display: block;
}
#header {
    background-color: #fff;
}
#header .logo {
    max-width: 130px;
}
#topbar {
    background: #272262;
    font-size: 15px;
    max-height: 50px;
    min-height: 40px;
    padding: 0;
    color: #444444;
}

.bg-orange-grad {
    background: linear-gradient(180deg, #ffa467 55%, #ff6e05 100%);
    margin-top: -20px;
    z-index: 5;
}
.bl-logo {
    height: calc(1.375rem + 1.4vw) !important;
}
.bg-blue-purple {
    background-color: #272262;
}
.text-blue-purple {
    color: #272262;
}
.text-yellow {
    color: #faa635;
}
.box-lg {
    width: 100%;
    min-height: 400px;
    height: auto;
    position: relative;
}
.box-lg .text-wrapper {
    color: #fff;
    margin: 10px;
    bottom: 0;
    position: absolute;
    font-weight: 500;
}
.footer-logo {
    max-width: 200px;
}
.navbar .active {
    color: #fdb023;
}
@media (min-width: 768px) {
    .mayor-img {
        margin-top: -30px;
    }
}
body {
    font-family: "Karla";
}
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Futura";
}
