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

body {
    background-color: #fff;
}

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

a {
    color: #1ABC9C;
}

.container {
    width: 1170px;
}

.header {
    width: 100%;
    background-color: #232323;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 30px;
}

.header__nav a {
    text-transform: uppercase;
    font-family: "Raleway", sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.05em;
    padding: 8px 12px;
    transition: all 300ms ease;
    color: #fff;
}

.header__nav a:hover {
    text-decoration: none;
    color: #1ABC9C;
}