@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400&family=Roboto:wght@100&display=swap');

:root {
    --orange-color: #da4901;
    --purple-color: #3c4d68;
    --light-gray: #3b3b4e;
    --white-color: #fff;
}

* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

.text-primary {
    color: var(--orange-color);
}

body {
    font-family: 'Open Sans', sans-serif;
    background: var(--white-color);
    color: var(--light-gray);
    line-height: 1.6;
}

ul {
    list-style: none;
}

a {
    color: var(--light-gray);
    text-decoration: none;
}

h1,
h2 {
    font-weight: 300;
    line-height: 1.2;
}

p {
    margin: 10px 0;
}

img {
    width: 100%;
}

.logo {
    width: 100px;
    height: 70px;
}

.logo img {
    width: 100%;
    height: 100%;
}

/* Navbar */
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #333;
    color: var(--white-color);
    opacity: 0.8;
    width: 100%;
    height: 70px;
    position: fixed;
    top: 0px;
    padding: 0 30px;
    transition: 0.5s;
}

.navbar.top {
    background: transparent;
}

.navbar a {
    color: var(--white-color);
    padding: 10px 20px;
    margin: 0 5px;
}

.navbar a:hover {
    border-bottom: var(--orange-color) 2px solid;
    color: var(--orange-color);
}

.navbar ul {
    display: flex;
}

.navbar .logo {
    font-weight: 400;
}

/* Header */
.hero {
    background: url('../img/pic-2.jpg') no-repeat center center/cover;
    height: 100vh;
    position: relative;
    color: var(--white-color);
}

.hero .content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 100%;
    padding: 0 20px;
}

.hero .content h1 {
    font-size: 55px;
}

.hero .content p {
    font-size: 23px;
    max-width: 600px;
    margin: 20px 0 30px;
}

/* .hero::after */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.hero * {
    z-index: 10;
}

.hero.blog {
    background: url('../images/home/blog.jpg') no-repeat center center/cover;
    height: 30vh;
}

span {
    color: aqua;
}

/* Mobile */
@media(max-width: 768px) {
    .navbar {
        flex-direction: column;
        height: 120px;
        padding: 20px;
    }

    .navbar a {
        padding: 10px 10px;
        margin: 0 3px;
    }
}