header{
    width: 100%;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    /* background-color: #FFFFFF; */
}
.backgroundTopHeader{
    background-color: #29ABE2;
    width: 100%;
}
.topHeader{
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}

.contactSection{
    display: flex;
    align-items: center;
    column-gap: 20px;
}

.contact{
    display: flex;
    column-gap: 15px;
    align-items: center;

    img{
        width: 16px;
        height: 16px;
    }

    .text{
        color: #FFFFFF;
    }
}

.socialMedia{
    display: flex;
    align-items: center;
    column-gap: 30px;

    img{
        width: 20px;
        height: 20px;
    }
}

.bottomHeader{
    display: flex;
    justify-content: space-between;
    align-items: center;    
    width: 100%;
    padding: 10px calc(5% - 13px);
    margin: 0 auto;
    transition: background-color .5s ease;
}

.imgLogo{
    height: 40px;

    img{
        height: 100%;
    }
}

.optionsHeader{
    display: flex;
    align-items: center;
    column-gap: 10px;
    min-width: 45%;
    justify-content: space-between;
    background-color: transparent;
    border: none;
    a{
        font-weight: bold;
        font-size: 14px;
        color: #29ABE2;
    }

    .optionHeader{
        background-color: transparent;
        border: none;
        font-weight: bold;
        font-size: 14px;
        color: #29ABE2;
        position: relative;
    }
}

.selectHeader{
    display: flex;
    align-items: center;
    column-gap: 5px;
    cursor: pointer;

    img{
        width: 20px;
        height: 20px;
    }

    .allOptions{
        position: absolute;
        top: calc(100% + 12px);
        background-color: #FFF;
        padding: 15px;
        display: flex;
        flex-direction: column;
        row-gap: 15px;
        border-radius: 10px;
        display: none;
        z-index: 10000;
        
        a{
            color: #29ABE2;
            font-size: 16px;
            text-align: center;
        }

    }
}

.marginHeader{
    height: 44px;
}

.menuHeader{
    display: none;
}

@media screen and (max-width: 700px){
    .bottomHeader{
        background-color: #FFFFFF !important;
        padding: 10px 5%;
    }
    .optionsHeader{
        margin-right: -100vw;
        border-top: 1px solid #A2A2;
        position: absolute;
        top: 104px;
        width: 100%;
        background-color: #FFF;
        right: 0;
        flex-direction: column;
        row-gap: 20px;
        padding: 30px 20px;
        -webkit-box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
        -moz-box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
        box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
        
        transition: margin-right 1s ease;
        a{
            color: #29ABE2;
        }
    }
    .menuHeader{
        display: flex;
    }
}

@media screen and (max-width: 600px){
    .contact{

        .text{
        display: none;
        }
    }
}
