* {
  font-family: Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  padding: 0;
  text-decoration: none;
  list-style: none;
}

body {
  height: 100vh;
}

header {
  position: fixed;
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
}
header .logo {
  display: flex;
  width: 100%;
  background-color: white;
  padding-bottom: 10px;
}
header .logo #logoImg {
  display: block;
  width: 7.5%;
  aspect-ratio: 1/1;
  min-width: 75px;
  max-height: 200px;
  max-width: 200px;
  min-height: 75px;
  margin: auto;
  margin-top: 10px;
  transition: 0.2s;
}
header .logo #logoImg img {
  width: 100%;
}
header nav {
  background-color: #db212c;
}
header nav .nav-link {
  color: white;
  font-size: large;
  margin: 0 40px;
}
header nav .nav-link:hover {
  color: white;
}
header nav .navbar-nav .nav-link.show {
  color: white;
}
@media screen and (min-width: 800px) {
  header {
    /* nav {
        font-size: 300;
        box-sizing: content-box;
        width: 100%;
        height: 60px;
        position: sticky;
        top: 0;
        background-color: $primaryColor;

        ul {
            list-style: none;
            width: 70%;
            margin: auto;
            display: flex;
            flex-direction: row;
            justify-content: space-between;
            position: relative;

            #btnAttractions:hover #listeAttractions {
                display: flex;
            }

            li {
                font-size: 1.2rem;
                display: block;
                height: 60px;
                line-height: 60px;
                width: 200%;
                text-align: center;
                color: white;
                text-transform: uppercase;

                @media screen and (max-width : 1050px) {
                    font-size: 0.8rem;
                }

                &:hover {
                    background-color: $hoverColor;
                }



                a {
                    display: block;
                    height: 100%;
                    padding-left: 20px;
                    padding-right: 20px;
                    color: white;
                }

                ul {
                    position: absolute;
                    display: none;
                    flex-direction: column;
                    left: 0;
                    margin: 0;
                    padding: 0;
                    width: 25%;
                    left: 25%;
                    background-color: $hoverColor;

                    #listeGrandesRoues:hover ul {
                        display: flex;
                        width: 100%;
                        float: left;
                        left: 100%;
                        top: 0;
                        background-color: $hoverBisColor;
                    }

                    li {
                        width: 100%;
                        background-color: $hoverColor;
                        &:hover{
                            background-color: $hoverBisColor;
                        }
                    }


                }

            }
        }
    } */
  }
  header #btnMenuMobile,
  header label {
    display: none;
  }
}
@media screen and (max-width: 799px) {
  header {
    /*  #btnMenuMobile:checked~nav {
         display: initial;
         top: 100%;
         left: 0;
         right: 0;
     } */
    /* nav {
        overflow-y: auto;
        position: absolute;
        display: none;
        text-align: center;
        max-height: 60vh;

        ul {
            overflow-y: auto;
            display: block;
            height: 100%;

            #btnAttractions:hover #listeAttractions {
                display: block;
            }

            #listeAttractions:hover {
                display: block;
            }

            #listeAttractions:focus-within {
                display: block;
            }

            #btnAttractions:focus-within #listeAttractions {
                display: block;
            }

            li {
                width: 100%;
                background-color: $primaryColor;
                color: white;

                &:hover {
                    background-color: $hoverColor;
                }

                a {
                    color: white;
                    font-size: 20px;
                    height: 60px;
                    line-height: 60px;
                    display: block;


                }

                p {
                    font-size: 20px;
                    height: 60px;
                    line-height: 60px;
                    display: block;
                }

                ul {
                    display: none;
                    width: 100%;

                    #listeGrandesRoues:hover ul {
                        display: block;
                    }

                    #listeGrandesRoues:focus-within ul {
                        display: block;
                    }

                    li {
                        width: 100%;
                        display: block;

                        ul {
                            display: none;
                            width: 100%;

                            li {
                                width: 100%;
                                display: block;
                            }
                        }
                    }
                }
            }
        }
    } */
  }
  header #btnMenuMobile {
    display: none;
  }
  header label {
    height: 60px;
    line-height: 60px;
    display: block;
    width: 100%;
    font-size: 1.2em;
    text-align: center;
    background-color: #db212c;
    color: white;
  }
}/*# sourceMappingURL=styleHeader.css.map */