@import url('https://fonts.googleapis.com/css2?family=Anton&family=Barlow+Semi+Condensed:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Figtree:ital,wght@0,300..900;1,300..900&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

body {
    background-color: white;
}

.t-primary-bgcolor {
    background-color: #464642;
}

a {
    color: #e09003;
}

.container {
    width: 1170px;
}


.header {
    width: 100% !important;
}

.top-bar {
    height: 42px;
    background-color: #0F0FEB;
}

.top-bar-content {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.social-icons {
    display: flex;
    /* forces horizontal layout */
    align-items: center;
    /* vertically center them */
}

.social-icons a {
    display: inline-flex;
    /* keeps icon inline and clickable */
    align-items: center;
    margin-left: 1rem;
    padding-top: 10px;
    font-size: 18px;
}

.header__main {
    background-color: #00007F;
    padding: 1rem 0;
}

.header__flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.header__logo img {
    display: block;
    max-height: 60px;
    max-width: 375px;
}

.header__nav {
    display: flex;
    align-items: flex-end;
    gap: 2rem;
    /* replaces margin-left on links if you want */
}

.header__nav a {
    line-height: 1;
    font-weight: 600;
    font-family: "Figtree", sans-serif;
    font-size: 20px;
    color: white;
    text-decoration: none;
    /* optional: nudge down a hair if needed */
    /* padding-bottom: 2px; */
}




.header__nav a:hover {
    border-bottom-color: #2F855B;
    border-bottom-width: 3px;
}

.header__main {
    padding: 40px 0;
}

.header__logo img {
    max-width: 375px;
}