#text-logo{
  font-family: 'Oswald', sans-serif;
  color:rgb(185, 27, 59);
  font-size:larger
}

#menu-toggle {
  visibility:hidden;
  display:none;
}

.nav-link{
    font-family: "Oswald", cursive;
    font-size:20px;
}

.nav-link.active{
  color:rgb(185, 27, 59) !important;
}
.nav-item{
    border-radius:10px;
}

.nav-item:hover {
    background-color: #ece7e7;
}

.logo {
    width: 90px;
    height: 55px;
}

.menu-toggle {
  width: 30px;
  height: 30px;
  position: relative;
  cursor: pointer;
}

.bar {
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: black;
  border-radius: 2px;
  transition: 0.4s ease;
}

/* Positions initiales */
.bar:nth-child(1) {
  top: 6px;
}
.bar:nth-child(2) {
  top: 13.5px;
}
.bar:nth-child(3) {
  top: 21px;
}

/* Active state: cross */
.menu-toggle.active .bar:nth-child(1) {
  transform: rotate(45deg);
  top: 13.5px;
}

.menu-toggle.active .bar:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active .bar:nth-child(3) {
  transform: rotate(-45deg);
  top: 13.5px;
}

.mobile-nav {
  position: fixed;
  right: -100%;
  width: 205px;
  height: calc(100vh - 1.75cm);
  background-color: white;
  box-shadow: -2px 0 8px rgba(0, 0, 0, 0.1);
  transition: right 0.4s ease;
  z-index: 1000;
  top:1.75cm;
}

.mobile-nav.open {
  right: 0;
}

hr{
  margin: 0 auto;
  width:80%
}
@media (max-width: 700px) {
  #contactNavBarMobile{
    position: absolute; 
    bottom: 0; 
    padding:5px;
    width: 100%;
  }
  #text-logo {
    font-size:20px;
  }
  #container-link {
    margin-left: -60px;
  }
  #container-logo{
    margin-right: 0px;
  }
  #container-link{
    padding-right: 100px;
  }
  #menu-toggle {
    visibility:visible;
    display:block;
    margin-right:0.5cm;
  }
  #container-link {
    visibility: hidden;
    display: none;
  }
  .logo {
    width: 60px;
    height: 45px;
  }
  .logoNavBar{
    width: 30px;
    height: 25px;
  }
  .row-navbar {
    height: 50px;
  }
  .mobile-nav {
    display: block;
  }
  .lienNavBar{
    color:black;
    font-size:9px;
  }
}
