:root {
    --blue: #1cadcb;
    --yellow: #fec24c;
    --dark: #303030;
}

#sp-header {
    position: fixed;
    background: transparent;
    box-shadow: none;
}

#sp-header.header-sticky {
    background: rgba(48, 48, 48, 0.9);
}

#sp-header .sp-menu-item a {
    text-transform: uppercase;
}

.circle-solid {
    width: 25px;
    height: 25px;
    background-color: var(--blue);
    border-radius: 50%;
    position: absolute;
    bottom: 0;
}

.circle-outline {
    width: 30px;
    height: 30px;
    border: 8px solid var(--yellow);
    border-radius: 50%;
    position: absolute;
    left: 10px;
}

@media (max-width: 425px) {
    .circle-outline {
        top: -8px;
    }
}

@media (min-width: 426px) and (max-width: 768px) {
    .circle-outline {
        top: -6px;
    }
}

.custom-title h2 {
    font-weight: 700;
}

h2.sppb-addon-title {
    position: relative;
    margin-left: 1rem;
    z-index: 1;
}

h2.sppb-addon-title::before {
    content: "";
    width: 25px;
    height: 25px;
    background-color: var(--blue);
    border-radius: 50%;
    position: absolute;
    bottom: -2px;
    left: -16px;
    z-index: -1;
}

.custom-tab-left ul.sppb-nav>li>a {
    display: flex;
    align-items: center;
    padding: 2rem;
}

.custom-tab-left ul.sppb-nav>li>a>.sppb-tab-subtitle {
    margin-left: 1rem;
    display: flex;
    flex-direction: column;
}

.custom-tab-left ul.sppb-nav>li>a>.sppb-tab-subtitle>span {
    font-size: 1.5rem;
    font-weight: 600;
}

iframe {
    border-radius: 1rem;
}

.menu-bottom ul {
    padding: 0;
    list-style: none;
}

.menu-bottom ul>li+li {
    margin-top: 8px;
}

.menu-bottom ul>li>a {
    font-size: 20px;
    font-weight: 600;
}

#sp-footer .social-footer>div {
    display: flex;
    justify-content: space-between;
}

#sp-footer .social-footer>div a {
    font-size: 2rem;
}

.btn-pulsing a {
    -moz-animation: pulsing 2s infinite;
    -webkit-animation: pulsing 2s infinite;
    animation: pulsing 2s infinite;
}

@keyframes pulsing {
    0% {
        box-shadow: 0 0 0 0 rgba(254, 194, 76, 1);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(254, 194, 76, 0);
    }
    100% {
        box-shadow: 0 0 0 50px rgba(254, 194, 76, 0);
    }
}