@import url("/templates/global.css");
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;1,500&display=swap');

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

a {
    color: #e75101;
}

body {
    background-color: #FFF;
}

.header-wrapper {
    background-color: #000;
}

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

.header__logo img {
    width: 270px;
}

.header__nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 80px;
}

.header__nav a {
    font-size: 15px;
    color: #FFF;
}

.header__nav a:hover {
    opacity: .7;
    text-decoration: none;
}

.header__nav a.contact {
    background-color: rgba(237, 31, 41, 1);
    padding: 12px 32px;
    text-transform: uppercase;
    letter-spacing: 0px;
    font-size: 16px;
}