/*
==========
Styles for header.
==========
*/

header{
    width: 100%;
    height: 130px;
    background-color: var(--blue-color);
    padding-left: 3em;
    padding-right: 3em;
}

/*
==========
Styles for container navigation menu.
==========
*/

.navigation{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/*
==========
Styles for image header.
==========
*/

.navigation .container__image{
    display: block;
    width: auto;
    height: 100%;
}

.navigation .container__image img{
    width: auto;
    height: 100%;
}

/*
==========
Styles for menu desktop.
==========
*/

.navigation__desktop{
    width: 100%;
    height: 100%;
    display: flex;
    gap: 1em;
    justify-content: flex-end;
}

.navigation__desktop .navigation__items__desktop{
    width: max-content;
    height: 100%;
    display: flex;
    gap: 1em;
    align-items: center;
    justify-content: center;
    list-style: none;
}

.navigation__desktop .navigation__items__desktop .option__menu{
    width: max-content;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.navigation__desktop .navigation__items__desktop .option__menu a{
    text-decoration: none;
    color: var(--white-color);
    transition: all ease-in-out .3s;
}

.navigation__desktop .navigation__items__desktop .option__menu a:hover{
    text-decoration: none;
    color: var(--orange-color);
    cursor: pointer;
    transition: all ease-in-out .3s;
}

.active__option__menu{
    text-align: center;
}

.active__option__menu a{
    text-decoration: none;
    color: var(--orange-color);
    transition: all ease-in-out .3s;
}

.active__option__menu a:hover{
    color: var(--lightorange-color);
    text-decoration: none;
    cursor: pointer;
    transition: all ease-in-out .3s;
}

/*
==========
Styles for navigation mobile.
==========
*/

.navigation__mobile{
    background-color: var(--blue-color);
    width: 100%;
    height: 100vh;
    position: fixed;
    top: -100vh;
    left: 0;
    z-index: 1000;
    transition: all ease-in-out .5s;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.navigation__mobile .navigation__items__mobile{
    list-style: none;
}

.navigation__mobile .navigation__items__mobile .option__menu{
    width: 100%;
    height: auto;
    text-align: center;
}

.navigation__mobile .navigation__items__mobile .option__menu a{
    width: 100%;
    height: auto;
    color: var(--white-color);
    text-decoration: none;
    transition: all ease-in-out .3s;
}

.navigation__mobile .navigation__items__mobile .option__menu a:hover{
    width: 100%;
    height: auto;
    color: var(--orange-color);
    text-decoration: none;
    transition: all ease-in-out .3s;
    cursor: pointer;
}

.navigation__mobile--active{
    background-color: var(--blue-color);
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    transition: all ease-in-out .5s;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.navigation__mobile--active .navigation__items__mobile{
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1em;
}

.navigation__mobile--active .navigation__items__mobile .option__menu{
    width: 100%;
    height: auto;
    text-align: center;
}

.navigation__mobile--active .navigation__items__mobile .option__menu a{
    width: 100%;
    height: auto;
    color: var(--white-color);
    text-decoration: none;
    transition: all ease-in-out .3s;
}

.navigation__mobile--active .navigation__items__mobile .option__menu a:hover{
    width: 100%;
    height: auto;
    color: var(--orange-color);
    text-decoration: none;
    transition: all ease-in-out .3s;
    cursor: pointer;
}

#button-menu-mobile{
    display: none;
}

/*
==========
Header image.
==========
*/

.container__header__image {
    width: 100%;
    height: 170px;
    overflow: hidden;
    position: relative;
}

.header__image__track {
    display: flex;
    transition: transform 1s ease-in-out;
    width: 100%;
    height: 100%;
}

.header__image__track .container__image{
    width: 100%;
    height: 100%;
    flex-shrink: 0;
    position: relative;
}

.header__image__track .container__image img {
    width: 100%;
    height: 100%;
    flex-shrink: 0;
    object-fit: cover;
}

/*
==========
Styles for content header image.
==========
*/

.content__header__image{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--white-color-transparent);
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.content__header__image .information__header__image{
    padding-left: 3em;
    width: max-content;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 1em;
}

.content__header__image .information__header__image .title__two{
    color: var(--blue-color);
    font-size: 2em;
}

.content__header__image .information__header__image .background__title{
    background-color: var(--orange-color);
    display: inline-block;
    padding-top: 7px;
    padding-bottom: 7px;
    padding-left: 13px;
    padding-right: 13px;
    color: var(--white-color);
}

/*
==========
Styles for navigation menu in mobile 700px.
==========
*/

@media screen and (max-width: 700px){
    /*
    ==========
    Styles for header.
    ==========
    */

    header{
        width: 100%;
        height: 130px;
        background-color: var(--blue-color);
        padding-left: 1.5em;
        padding-right: 1.5em;
    }

    .navigation__desktop{
        display: none;
    }

    #button-menu-mobile{
        display: flex;
        width: 50px;
        height: 50px;
    }

    #button-menu-mobile .icon{
        display: block;
        width: 100%;
        height: 100%;
    }

    #button-menu-mobile .icon svg{
        width: 100%;
        height: 100%;
        fill: var(--white-color);
        transform: rotate(180deg);
    }

    .content__header__image .information__header__image .title__two{
        color: var(--blue-color);
        font-size: 1.5em;
    }
}