header {
    width: 100%;
    height: 400px;
    background: linear-gradient(45deg, var(--accent-color) 0%, var(--tertiary-color) 100%);
}


header .header-content {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    max-width: 1200px;
    height: 100%;
}

header .header-content img {
    width: 300px;
    height: auto;
}

header .header-content .header-title {
    margin-top: -40px;
    margin-left: -30px;
}

header .header-content h1 {
    color: #fff;
    font-size: 6em;
    line-height: 100px;
    margin: 0px;
}

header .header-content h3 {
    color: #fff;
    font-weight: 300;
    margin: 10px 5px 0px;
}

@media screen and (max-width: 992px) {
    
    header {
        padding-bottom: 30px;
    }

    header .header-content {
        flex-direction: column;
    }

    header .header-content img {
        width: 200px;
    }

    header .header-content .header-title {
        text-align: center;
        margin: 0px;
    }

    header .header-content h1 {
        font-size: 4em;
        line-height: 60px;
    }
    
    header .header-content h3 {
        font-size: 1em;
    }
}

@media screen and (max-width: 576px) {
    
    header {
        height: 380px;
    }
}