@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap');

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

a {
    color: #333;
}

.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 11px 1.5rem 12px;
    width: 100%;
}

.header-wrapper {
    border-bottom: 8px solid #bc3219;
}

.header__nav {
    display: flex;
    gap: 94px;
    font-weight: 300;
    font-family: Oswald, sans-serif;
    letter-spacing: .02em;
    flex: 1;
    justify-content: center;
    font-size: 19.2px;
    text-decoration: none;
}

.header__nav a {
    position: relative;
    padding-top: 6px;
    /* space for the red line */
    color: rgb(145, 144, 144);
    text-decoration: none;

}

/* the red line (hidden by default) */
.header__nav a::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    /* start from center */
    width: 200%;
    /* make it 150% width */
    height: 3px;
    background: #bc3219;
    transform: translateX(-50%) scaleX(0);
    /* center it & hide initially */
    transform-origin: center;
    transition: transform 0.25s ease;
}

.header__nav a:hover::before,
.header__nav a:focus-visible::before {
    transform: translateX(-50%) scaleX(1);
    /* center & show */
}

.socials {
    display: flex;
    gap: .5rem;
}

.socials a {
    display: inline-flex;
    width: 24px;
    height: 24px;
    font-size: 16px;
    align-items: center;
    justify-content: center;
    color: rgb(145, 144, 144);
}

/* Phone */
.phone {
    padding: 1.5rem;
    font-weight: 700;
    color: rgb(145, 144, 144);
    font-family: Oswald, sans-serif;
    font-weight: 300;
    font-size: 16px;
}

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