@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

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

a {
    color: #333;
}

body {
    background-color: #fff;
}

.header {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 27px 1.5rem;
}

.header__logo {
    max-width: 212px;
}

.header nav {
    display: flex;
}

.header nav a {
    font-size: 16px;
    margin: 0 10px;
    line-height: 1.2;
    border-bottom: 3px solid transparent;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 1.1px;
    padding: 0 10px;
    transition: 0.3s ease, color 0.3s ease;
    position: relative;
    color: #303436;
    text-decoration: none;
    font-weight: 600;
}

.header nav a::after {
    content: "";
    position: absolute;
    bottom: -20px;
    left: 0;
    width: 0%;
    height: 3px;
    background: #cc4529;
    transition: width 0.3s ease;
}

.header nav a:hover::after {
    width: 100%;
}

.header nav a:hover {
    color: #2e476e;
}