:root {
    --theme-color: #E51951;
    --theme-over-color: #a40832;
}

.bg-theme {
    background-color: var(--theme-color);
}

.color-theme {
    color: var(--theme-color);
}

/* My Styles */
.site-logo {
    width: 160px;
}

.btn {
    background-color: var(--theme-color);
    color: #fff;
    transition: all 0.3s ease-in-out;
}

.btn:hover {
    background-color: var(--theme-over-color);
}

.nav-link.active {
    color: var(--theme-color) !important;
    font-weight: 500;
    position: relative;
}

/* Desktop only */
@media (min-width: 768px) {
    .nav-link.active::after {
        content: '';
        position: absolute;
        background-color: var(--theme-color);
        height: 2px;
        width: 100%;
        bottom: -2px;
        left: 0px;
        right: 0px;
    }

    .btnGetConnection {
        margin-left: 20px;
    }
}

.navbar-toggler {
    border: none !important;
}

.navbar-toggler:focus {
    box-shadow: none !important;
}

.footer-top {
    background-color: #2E2E2E;
    color: #fff;
}

.footer-bottom {
    background-color: #000;
    color: #fff;
}

ul.footer-link {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

ul.footer-link li {
    padding: 10px 0px;
}

ul.footer-link li a {
    color: #fff;
    text-decoration: none;
}

.social_icons {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
}

.social_icons a i {
    transition: all 0.3s ease-in-out;
    font-size: 24px;
}

.social_icons a.facebook:hover i {
    color: #1877F2;
}

.social_icons a.youtube:hover i {
    color: #FF0000;
}

.social_icons a.linkedin:hover i {
    color: #0077B5;
}

.social_icons a.twitter:hover i {
    color: #1DA1F2;
}

.social_icons a.instagram:hover i {
    color: #d62976;
}