@charset "UTF-8";

/* CSS Document */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 110px; /* height of sticky header */
}

body {
    padding-top: 0;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background: rgba(0, 0, 0, 0.5);
}

/* ------ Social Media ------ */

.social-icon {
    padding: 0;
    font-size: 18px;
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    margin: 5px 2px;
    border-radius: 50%;
    transition: opacity 0.2s ease;
}

.social-icon:hover {
    opacity: 0.85;
    text-decoration: none;
    color: white !important;
}

.social-fb {
    background: #1877f2;
    color: white;
}
.social-tw {
    background: #000000;
    color: white;
}
.social-ig {
    background: #c13584;
    color: white;
}

/* ------ End Social Media ------ */

/* ------ Branding ------ */

.logo-lg {
    width: 10%;
    height: 10%;
}

.logo-sm {
    width: 5%;
    height: 5%;
}

.client-link {
    color: var(--dark-color, #000000) !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--dark-color, #000000);
}

/* ------ Nav Bar ------ */

.bg-client-light {
    background-color: var(--light-color) !important;
}

.bg-client-light .navbar-nav li a {
    color: #ffffff !important;
}

.bg-client-dark {
    background-color: var(--dark-color) !important;
}

.bg-client-dark .navbar-nav li a {
    color: #ffffff !important;
}

.bg-client-dark .navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255, 255, 255, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

.bg-client-dark .navbar-toggler {
    color: rgba(255, 255, 255, 1);
    border-color: rgba(255, 255, 255, 1);
}

/* ------ Footer ------ */

.footer-text {
    color: #000000;
    font-size: 0.75rem;
}

/* ------ Hero ------ */

.welcome {
    color: #ffffff !important;
    text-transform: uppercase;
}

.message {
    position: absolute;
    right: 15%;
    top: 50%;
    left: 15%;
    z-index: 10;
    padding-top: 20px;
    padding-bottom: 20px;
    color: #fff;
    text-align: center;
    transform: translateY(-50%);
    /* FIX: removed redundant `bottom: initial` */
}

a.fa.fa-angle-down {
    padding: 7px;
    color: #fff;
    border: 2px solid #b4b4b4;
    border-radius: 50%;
    font-size: 24px;
    margin-top: 150px;
    transition: all 0.5s;
}

a.fa.fa-angle-down:hover {
    background: var(--light-color);
    color: #ffffff;
    border: 2px solid var(--light-color);
}

#b2topBtn {
    display: none;
    position: fixed;
    bottom: 80px;
    right: 80px;
    z-index: 99;
    outline: none;
    background-color: #ffffff;
    color: var(--light-color) !important;
    cursor: pointer;
    border-radius: 50%;
    font-size: 24px;
    width: 50px;
    height: 50px;
    border: 1px solid var(--light-color);
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease, color 0.2s ease;
}

#b2topBtn:hover {
    background-color: var(--light-color);
    color: #ffffff !important;
}

/* ------ Dropdown on Hover (desktop) ------ */

@media (min-width: 992px) {
    /* FIX: removed redundant `all and` */
    .navbar .nav-item .dropdown-menu {
        display: none;
        margin-top: 0; /* FIX: consolidated duplicate selector */
    }

    .navbar .nav-item:hover .nav-link {
        color: var(--dark-color) !important;
    }

    .navbar .nav-item:hover .dropdown-menu {
        display: block;
    }
}

/* ------ End Dropdown on Hover ------ */

.dropdown-toggle:after {
    display: none;
}

/* ------ Buttons ------ */

.btn-client {
    color: #ffffff !important;
    background-color: var(--dark-color);
    border-color: var(--dark-color);
}

.btn-client:hover {
    color: #ffffff !important;
    background-color: var(--light-color);
    border-color: var(--light-color);
}

/* ------ End Buttons ------ */

/* ------ Sport Icons ------ */

.circle {
    position: relative;
    height: 100px;
    width: 100px;
    background-color: var(--light-color);
    border-radius: 50%;
    display: inline-block;
    margin: 10px;
}

.sport-icon-alt {
    display: block;
    margin: 0 auto;
    position: absolute;
    top: calc(50% - 37px);
    left: calc(50% - 37px);
    height: 75%;
}

.activesport:hover {
    background-color: #e8e8e8;
    border-radius: 4px;
}

.stretched-link:after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    pointer-events: auto;
    content: "";
    background-color: rgba(0, 0, 0, 0);
}

/* ------ Mobile ------ */

@media (max-width: 575.98px) {
    .fixed-top {
        position: inherit;
    }

    .brand-logo-only {
        display: none;
    }

    .logo-lg {
        width: 25%;
        height: 25%;
    }

    body {
        padding-top: 0;
    }

    .welcome {
        color: var(--light-color) !important;
    }

    .btn-block-m {
        width: 100%;
        display: block;
    }
}