:root {
    font-family: Arial, sans-serif !important;
    --primary-black: #262626;
    --primary-white: #ffffff;
    --primary-grey: #d5d4d5;
    --primary-green: #77d302;
    /* --primary-green: #76d300; */
    --primary-light-green: #77d400;
    --primary-army-green: #2f3621;
    --primary-olive: rgb(195, 232, 44);
    --primary-yellow: #ecf871;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    font-family: var(--font-family-sans-serif);
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
    height: 100%;
    width: 100%;
}

::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    background: rgba(38, 38, 38, 0.89);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-green);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-olive);
}

#nav {
    background: rgba(38, 38, 38, 0.89) !important;
    /* padding-bottom: 5em; */
}

.navbar .nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
}

.navbar .nav-link:hover,
.navbar .nav-link:focus {
    color: var(--primary-green) !important;
    font-weight: bolder;
}

.navbar a.active {
    color: var(--primary-green) !important;
    font-weight: bolder;
}

.dropdown-menu {
    background: rgba(38, 38, 38, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.dropdown-item {
    color: rgba(255, 255, 255, 0.9);
}

.dropdown-item:hover,
.dropdown-item:focus {
    background: var(--primary-green);
    color: #fff;
}

header{
    padding-top: 6em !important;
}

.btGreen {
    color: var(--primary-white);
    border-bottom:5px solid var(--primary-green) !important;
    background-color: var(--primary-green);
    border: var(--primary-green) 1px solid;
}

#btnMember{
    line-height: 18px;
    font-size: 11px;
}

.btGreen:hover,
.btGreen:focus {
    color: var(--primary-green) !important;
    border-bottom:5px solid var(--primary-green) !important;
    background-color: transparent;
    border: var(--primary-green) 1px solid;
}

#btnToTop {
    color: var(--primary-white);
    background-color: rgba(38, 38, 38, 0.98);
    position: fixed;
    bottom: 20px;
    right: 30px;
    z-index: 999;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    transition: ease-in-out .4s;
    /*border: var(--primary-white) 1px solid;*/
}

#btnToTop:hover{
    opacity: 0.8;
    transform: translateY(-10px) scale(1.1);
}

.full-video {
    width: 100%;
    height: 40svh;
    object-fit: cover;
    display: block;
}

#footer li a:hover,
#footer .small a:hover {
	color: var(--primary-green) !important;
	cursor: pointer;
}

#footer i:hover {
	color: var(--primary-green) !important;
	cursor: pointer;
}

.news-wrapper {
    width: 100%;
    overflow: hidden;
    background: rgba(47, 54, 33, 0.9);
    border-top: 1px solid rgba(119, 211, 2, .3);
    border-bottom: 1px solid rgba(119, 211, 2, .3);
    padding: 12px 0;
    /*position: relative;*/
}

.news {
    display: inline-block;
    white-space: nowrap;
    padding-left: 100%;
    animation: newsMove 30s linear infinite;
}

.news:hover {
    animation-play-state: paused;
}

.news a {
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 1px;
    font-style: italic;
}

.news-wrapper .separator {
    margin: 0 6px;
    /* color: #fff; */
    font-size: 1rem;
}

@keyframes newsMove {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-100%);
    }
}

.logo-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
    /*padding: 20px 0;*/
}

.logo-track {
    display: flex;
    align-items: center;
    gap: 60px;
    width: max-content;
    animation: scrollLogos 35s linear infinite;
}

.logo-slider:hover .logo-track {
    animation-play-state: paused;
}

.logo-item {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.client-logo img {
    max-height: 120px;
    width: auto;
    object-fit: contain;
    transition: all .3s ease;
    opacity: .75;
}

.client-logo img:hover {
    transform: scale(1.08);
    filter: grayscale(0%);
    opacity: 1;
}

@keyframes scrollLogos {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}