@charset "utf-8";
/* Infinite Fidelis Consulting | Shared CSS | V1.0 */

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: 'Montserrat', sans-serif;
	background: #fff;
	color: #000;
	overflow-x: hidden;
}

a {
	text-decoration: none;
	color: inherit;
}

a:hover {
    color: #aeb1b6;
    cursor: pointer;	
}

p {
    margin-bottom: 40px;
    font-size: 18px;
    line-height: 1.5;
    color: #111;
}

strong {
    font-weight: 700;
}

ul {
	list-style: none;
}

.divider {
    width: 120px;
    height: 4px;
    margin-bottom: 40px;
    background: #d5a647;
}

.icon-location {
    display: flex;
    align-items: center;
    gap: 10px;
}

.icon img {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

/* tag (subheader) above headers */
.tag {
    display: inline-flex;
    margin-bottom: 25px;
    padding: 10px 18px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(0,0,0,.12);
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #000;
}

h1 {
    margin-bottom: 30px;
    font-family: 'Antonio', sans-serif;
    font-size: 48px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.0;
    color: #000;
}

h2 {
    text-align: center;
    font-family: 'Antonio', sans-serif;
    font-size: 48px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.0;
    color: #000;
}

h3 {
    margin-bottom: 30px;
    font-family: 'Antonio', sans-serif;
    font-size: 22px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.0;
    letter-spacing: 1px;
    color: #000;
}

h4 {
    font-size: 24px;
    line-height: 1.3;
    font-weight: 300;
    color: #fff;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 140px;
    height: 44px;
    padding: 0 34px;
    background: #d5a647;
    border-right: 4px solid #000;
    border-bottom: 4px solid #000;
    border-top: none;
    border-left: none;
    border-radius: 8px;
    font-family: 'Antonio', sans-serif;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #000;
    transition: 
        background 0.25s ease,
        color 0.25s ease,
        transform 0.2s ease;
    cursor: pointer;
}

.btn:hover {
    background: #aeb1b6;
    color: #fff;
}

/* SOCIALS */
.socials {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 20px;
}

.socials a {
    font-size: 28px;
    color: #000;
    transition: 0.3s ease;
}

.socials a:hover {
    color: #aeb1b6;
}

/* PAGE STRUCTURE */
section {
	position: relative;
	width: 100%;
}

.container {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 30px;
}

/* HEADER */
.site-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 25px 0;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
	position: relative;
}

.logo img {
    width: 175px;
}

/* NAV */
.main-nav {
    margin-left: auto;
    margin-right: auto;
}

.main-nav > ul {
    display: flex;
    align-items: flex-start;
    gap: 28px;
}

.main-nav > ul > li {
    display: flex;
    align-items: flex-start;
}

.main-nav li {
    position: relative;
}

.main-nav a,
.main-nav .nav-label {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-family: 'Antonio', sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.1;
    text-transform: uppercase;
    color: #000;
    transition: .25s ease;
}

.main-nav a:hover {
    color: #98000f;
}

.main-nav a::after {
    display: none;
}

/* dropdown arrow */
.main-nav .has-dropdown > .nav-label::after {
    content: '▾';
    display: inline-block;
    position: static;
    width: auto;
    height: auto;
    background: none;
    font-size: 12px;
    color: #98000f;
    transform: translateY(-1px);
    transition: .25s ease;
}

.main-nav .has-dropdown:hover > a::after {
    transform: translateY(-1px) rotate(180deg);
}

.main-nav .nav-label {
    border: 0;
    background: transparent;
    cursor: pointer;
    padding: 0;
}

/* dropdown */
.main-nav .dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    display: block;
    min-width: 260px;
    padding: 14px;
    background: #fff;
    border-top: 4px solid #d6a545;
    box-shadow: 0 18px 45px rgba(0,0,0,.14);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(-50%) translateY(12px);
    transition: .25s ease;
    z-index: 99;
}

.main-nav .has-dropdown {
    padding-bottom: 18px;
}

.main-nav .has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.main-nav .dropdown li {
    display: block;
}

.main-nav .dropdown a {
    display: block;
    padding: 12px 14px;
    font-size: 16px;
    line-height: 1.2;
    white-space: nowrap;
    color: #111;
    border-radius: 3px;
}

.main-nav .dropdown a:hover {
    color: #fff;
    background: #98000f;
}

/* hamburger menu */
.mobile-toggle {
    display: none;
    position: relative;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    width: 28px;
    height: 28px;
    padding: 0;
    background: transparent;
    border: none;
    cursor: pointer;
}

.mobile-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background: #98000f;
    border-radius: 20px;
    transform-origin: center;
    transition:
        transform 0.3s ease,
        opacity 0.3s ease,
        background 0.3s ease;
}

/* animate hamburger */
.mobile-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* PARTNER MARQUEES */
.partner-marquee-section {
    padding: 0 0 160px;
    text-align: center;
    background: #fff;
    overflow: hidden;
}

.partner-marquee-section .section-heading {
    max-width: 900px;
    margin: 0 auto 80px;
    text-align: center;
}

.partner-kicker {
    display: block;
    margin-bottom: 22px;
    font-family: 'Antonio', sans-serif;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #98000f;
}

.partner-marquee-section .section-heading h2 {
    margin-bottom: 24px;
}

.partner-marquee-section .section-heading p {
    max-width: 820px;
    margin: 0 auto;
    font-size: 20px;
    line-height: 1.6;
    color: #333;
}

.partner-marquee-group {
    margin-top: 90px;
}

.partner-marquee-group:first-of-type {
    margin-top: 0;
}

.partner-marquee-group h3 {
    text-align: center;
}

.partner-marquee {
    position: relative;
    overflow: hidden;
    padding: 32px 0;
    border-top: 1px solid rgba(0,0,0,.08);
    border-bottom: 1px solid rgba(0,0,0,.08);
}

.partner-track {
    display: flex;
    align-items: center;
    gap: 90px;
    width: max-content;
    animation: partnerScroll 34s linear infinite;
}

.partner-track.slow {
    animation-duration: 24s;
}

.partner-marquee:hover .partner-track {
    animation-play-state: paused;
}

.partner-logo {
    flex: 0 0 230px;
    height: 110px;
    padding: 16px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: .68;
    transition: .25s ease;
}

.partner-logo:hover {
    opacity: 1;
    transform: translateY(-2px);
}

.partner-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    transition: .25s ease;
}

.partner-logo:hover img {
    filter: grayscale(0%);
}

@keyframes partnerScroll {
    from {
        transform: translateX(0);
    }

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

/* FOOTER */
.site-footer {
    position: relative;
    padding: 100px 0 40px;
    background: url('../images/ifc-footer-bg.webp') center/cover no-repeat;
    overflow: hidden;
}

.footer-inner {
    position: relative;
    z-index: 5;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #000;
}

.footer-badges {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 25px;
}

.footer-badge {
    display: block;
    width: auto;
    margin: 0;
}

.footer-badge-sam {
    max-width: 105px;
}

.footer-badge-veteran {
    max-width: 135px;
}

.footer-brand p,
.footer-contact p,
.footer-bottom p,
.footer-links a {
    font-size: 16px;
    line-height: 1.7;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.footer-links a {
    transition: 0.3s ease;
	color: #444;
}

.footer-links a:hover {
    color: #d5a647;
}

.footer-contact .btn {
    margin-top: -10px;
}

.site-footer .socials {
    margin-top: 25px;
}

.site-footer .socials a {
    font-size: 22px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 30px;
	margin-bottom: 60px;
}

.footer-bottom p {
    margin: 0;
}