@charset "UTF-8";

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

body {
    padding-top: 76px;
}

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

.text-white {
    color: #ffffff !important;
}

/* Branding */

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

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

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


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

.text-decoration-none {
    text-decoration: none !important;
}



/* ------ 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: #ffffff;
    font-size: .75rem;
}

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

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

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

a.fa.fa-angle-down {
    padding: 7px 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);
}

/* ------ Back to Top ------ */

#b2topBtn {
    display: none;
    /* Hidden by default */
    position: fixed;
    /* Fixed/sticky position */
    bottom: 80px;
    /* Place the button at the bottom of the page */
    right: 80px;
    /* Place the button 30px from the right */
    z-index: 99;
    /* Make sure it does not overlap */
    outline: none;
    /* Remove outline */
    background-color: #ffffff;
    /* Set a background color */
    color: var(--light-color) !important;
    /* Text color */
    cursor: pointer;
    /* Add a mouse pointer on hover */
    padding: 15px;
    /* Some padding */
    border-radius: 100%;
    /* Rounded corners */
    font-size: 24px;
    /* Increase font size */
    width: 50px;
    height: 50px;
    border: 1px solid var(--light-color);
}

#b2topBtn:hover {
    background-color: var(--light-color);
    /* Add a dark-grey background on hover */
    color: #ffffff !important;
}

/* ------ End Back to Top ------ */



/* Dropdown on Hover desktop view */
@media all and (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: none;
    }

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

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

    .navbar .nav-item .dropdown-menu {
        margin-top: 0;
    }
}

/* End Dropdown on Hover desktop view  */

.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;
    /*Just in case `pointer-events: none` is set on a parent*/
    pointer-events: auto;
    content: "";
    /*IE10 bugfix, see https://stackoverflow.com/questions/16947967/ie10-hover-pseudo-class-doesnt-work-without-background-color*/
    background-color: rgba(0, 0, 0, 0);
}



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

.fa {
    padding: 10px;
    font-size: 20px;
    width: 40px;
    height: 40px;
    text-align: center;
    text-decoration: none;
    margin: 5px 2px;
    border-radius: 50%;
}

.fa:hover {
    text-decoration: none;
}


.fa:hover {
    opacity: 1;
    color: #ffffff;
}

.fa-facebook {
    background: #3B5998;
    color: white;
}

.fa-twitter {
    background: #55ACEE;
    color: white;
}

.fa-instagram {
    background: #125688;
    color: white;
}

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


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

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

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

    body {
        padding-top: 0px;
    }

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

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