@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: #808080;
}

.header-wrapper {
    background-color: rgba(255, 255, 255, 0.6);
    margin-bottom: 1rem;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.7);
}

.header {
    font-family: 'Times New Roman', Times, serif;
    padding: 4.5rem 0 1.5rem;
}

.header__main {
    color: #000;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.header h1 {
    font-size: 60px;
    margin-bottom: 14px;
}

.header p {
    font-size: 17px;
    margin-bottom: 3px;
}

.header__nav {
    display: flex;
    justify-content: space-between;
    gap: 14px;
}

.header__nav a {
    flex: 1;
    text-align: left;
    line-height: 30px;
    color: #000;
    font-size: 17px;
    border-top: 1px solid rgb(231, 81, 1);
    display: flex;
}

.header__nav a span {
    border-top: 3px solid transparent;
    flex: 1;
    padding: 5px 8px 8px;
}

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

.header__nav a:hover span {
    border-top: 3px solid rgb(231, 81, 1);
}