@import url("css/core.css");

.navigation {
    font-family: JD Sans Pro;
    font-weight: 400;
    font-style: Book;
    font-size: 15px;
    leading-trim: none;
    line-height: 26px;
    letter-spacing: 1.5px;
    text-align: center;
    vertical-align: middle;
    text-transform: uppercase;
}

.navigation .nav-link {
    color: var(--dark);

}

.navigation .fw-bold .fs-2 {
    font-family: IndustryTest;
    font-weight: 700;
    font-style: Bold;
    font-size: 37px;
    leading-trim: NONE;
    line-height: 72px;
    letter-spacing: 0%;
    vertical-align: middle;

}
.navigation .nav-item .list-unstyled li a {
    transition: color 0.25s ease;
}

.navigation .nav-item .list-unstyled li a:hover {
    color: var(--primary);
}

/* Footer */
footer p b {

}
footer small {
    font-weight: 300;
}
footer ul li a {
    color: var(--white);
    font-weight: 300;
    transition: color 0.25s ease;
}
footer ul li a:hover {
    color: var(--secondary);
}

footer .fa-brands {
    font-size: 2rem;
}

/* Cards */
.employee-card {
    z-index: 2;
    top: 85%;
    transform: translateY(-50%);
}
.employee-card-secondary {
    z-index: 2;
    top: 85%;
    transform: translateY(-50%);
}

/* Banners */
.hero-container {
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100%;
    min-height: 300px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-text-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.banner-container {
    position: relative;
    overflow: hidden;
    height: 500px;
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
}
.banner-container-sm {
    position: relative;
    overflow: hidden;
    height: 350px;
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
}
.banner-container .banner-title {
    white-space: normal;
}
.banner-overlay {
    background-color: rgba(0, 0, 0, .45);
    /*background: linear-gradient(360deg, rgba(0, 0, 0, 0.77) 100%, rgba(102, 102, 102, 0) 100%);*/
    z-index: 1;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}
.banner-title {
    font-family: var(--heading-font);
    font-size: 6rem;
    color: var(--white);
    font-weight: bold;
}

@media (min-width: 1200px) {
    .banner-title {
        font-size: 6rem;
    }
}


@media (max-width: 1199px) {
    .banner-title {
        font-size: 5rem;
    }
}

@media (max-width: 991px) {
    .banner-title {
        font-size: 5.5rem;
    }
}

@media (max-width: 767px) {
    .banner-title {
        font-size: 6rem;
    }
}

@media (max-width: 575px) {
    .banner-title {
        font-size: 5rem;
    }
}

@media (max-width: 475px) {
    .banner-title {
        font-size: 4rem;
    }
}

@media (max-width: 375px) {
    .banner-title {
        font-size: 3rem;
    }
}

/* Slick Slider */
.slick-dots li.slick-active button:before {
    color: var(--darkgrey);
    font-size: 18px;
}
.slick-dots li button:before {
    font-size: 10px;
    padding-top: 12px;
}
.used-featured .slick-dots {
    bottom: -50px !important;
}
.used-featured .slick-dots li button:before,
.caffeine-slider .slick-dots li button:before {
    opacity: 1;
}
.used-featured .slick-dots li.slick-active button:before,
.caffeine-slider .slick-dots li.slick-active button:before {
    color: var(--tertiary);
}

/* Cards */
.card-overlay {
    position: relative;
    overflow: hidden;
}

.card-overlay .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.35);
    transition: background 0.3s ease;
    z-index: 1;
}

.card-overlay:hover .overlay {
    background: rgba(0, 128, 0, 0.75);
}

.card-overlay img {
    display: block;
    width: 100%;
    height: auto;
}
.card-overlay .overlay {
    transition: background 0.4s ease, opacity 0.4s ease;
}

/* Animations */
.on-hover-lift:hover {
    transform: translateY(-5px);
    transition: transform 0.3s ease;
}

/* Text */
.responsive-text {
    font-size: clamp(1rem, 2vw + 0.5rem, 2rem);
    text-align: center;
    z-index: 2;
    line-height: 1.1;
}


/* Custom */
.green-bar {
    position: relative;
    background-color: var(--primary);
    height: 60px;
    margin-bottom: 80px !important;
}

.green-bar::after {
    content: "";
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 80px solid transparent;
    border-right: 80px solid transparent;
    border-top: 80px solid var(--primary);
}

.nav-tabs .nav-link {
    color: var(--dark);
}

.nav-tabs .nav-link.active {
    color: var(--primary);
    font-weight: bold;
}