@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');

html {
    scroll-behavior: smooth;
}

* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    font-family: 'Lato', sans-serif;
    color: white;
}

img.rounded {
    border-radius: 500px;
}

a {
    color: inherit;
    text-decoration: none;
}



a.read-more{
    position: relative;
    text-transform: uppercase;
    color: #555866;
    font-size: 0.875em;
    font-weight: 600;
}

a.read-more.news {
    color: rgba(255,255,255,0.75);
}

a.read-more::after {
    content: "";
    position: absolute;
    height: 1px;
    background: white;
    width: 30px;
    bottom: 50%;
    margin-left: 16px;
}


header {
    position: absolute;
    top: 0;
    z-index: 999;
    height: 190px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 48px;
}

header .brand {
    display: flex;
    align-items: center;
}

header .brand img {
    height: 100px;
}

header .brand span {
    color: white;
    font-weight: 900;
    margin-left: 24px;
    font-size: 1.125em;
}

header nav {
    display: flex;
    align-items: center;
}

header nav a {
    font-size: 1em;
    color: white;
    font-weight: 300;
    margin: 0 24px;
    text-transform: uppercase;
}

header nav a.is-active {
    position: relative;
}

header nav a.is-active::after {
    content: "";
    position: absolute;
    width: 48px;
    height: 1px;
    background: #ffd700;
    top: calc(100% + 5px);
    left: 0;
}

header nav a:last-child {
    margin-right: 0;
}


footer {
    width: 100%;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #040711;
}

footer p {
    font-weight: 600;
}

@media only screen and (max-width: 1120px){
    header nav {
        display: none;
    }
}