.color_proxima {
  fill: #fff;
}

.color_proxima_blue {
  fill: #386BB2;
}

.color_office {
  fill: #fff;
}

.color_office_blue {
  fill: #00ADED;
}

.activepage {
  font-size: 16px;
  padding: 0 15px;
  color: #00ADED;
  transition: 0.4s;
  font-weight: 300;
}

.navbar {
    display: flex;
    position: fixed;
    justify-content: space-between;
    align-items: center;
    color: white;
    width: 94%;
    padding: 0 3%;
    height: 84px;
    z-index: 1000;
    transition: 0.4s;
}

.navbar-links ul {
    display: flex;
    align-items: center;
}

.navbar-links li {
    list-style: none;
}

.navbar-links li a {
    display: block;
    text-decoration: none;
}

ul li:hover > ul,
ul li ul:hover {
  visibility: visible;
  opacity: 1;
  display: flex;
}

ul li ul  {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    transition: all 0.5s ease;
    display: flex;
    flex-direction: column;
    padding: 15px 25px;
    border-radius: 5px;
    display: none;
}

.dropdown:after {
    content: url(../images/arrow_down.svg);
    position: relative;
    margin-left: 5px;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 12px;
    content: '\f078';
}

.dropdown-menu {
    background: rgba(0, 0, 0, 0.8);
    margin-top: 20px;
}

/*.dropdown-menu-white {
    background: rgba(255, 255, 255, 1);
    box-shadow: 0px 5px 10px 1px rgba(0, 0, 0, .2);
    color: #000;
}*/

.dropdown-menu:after {
    content: '';
    position: absolute;
    top: 0;
    left: 18%;
    width: 0;
    height: 0;
    border: 11px solid transparent;
    border-bottom-color: rgba(0, 0, 0, 0.8);
    border-top: 0;
    margin-left: -11px;
    margin-top: -11px;
}

.sous-menu {
  padding: 10px 0;
  font-size: 14px;
  width: 100%;
  text-align: left;
}

.sous-menu a {
  color: #fff;
  text-decoration: none;
}

.sous-menu a:hover {
  color: #009BED;
}

.links {
  font-size: 16px;
  padding: 0 15px;
  color: #fff;
  transition: 0.4s;
}

.links:hover {
  color: #00ADED;
}

.scrolled {
  background: #fff;
  transition: 0.4s;
  box-shadow: 0px 5px 10px 1px rgba(0, 0, 0, .1);
}

.scrolledlinks {
  color: #000;
  transition: 0.4s;
}

.navbar-links .phonenumber {
  background: #0A6AD6;
  color: #fff;
  border-radius: 35px;
  padding: 15px 20px;
  font-size: 14px;
  font-weight: 600;
  margin-left: 10px;
  display: flex;
  justify-content: center;
}

.navbar-links .phonenumber img {
  margin-right: 10px;
}

.toggle{
  display: none;
}

@media (min-width: 320px) and (max-width: 480px) {
  /* this is the checkbox */

/*display: flex for equal/auto child margins*/
.rows-container{
  position: absolute;
  top: 0;
  right: 5%;
  bottom: 0;
/*  used a 16:9 ratio for width & height*/
  width: 31px;
  height: 18px;
  cursor: pointer;
  margin: auto;
  display: flex;
}

/*menu is responsive to dimensions of label/.rows-container above*/
.rows{
  position: relative;
  width: 100%;
  height: 19%;
  background-color: #fff;
  margin: auto;
  border-radius: 2px;
  
  -o-transition: 0.46s;
  -ms-transition: 0.46s;
  -moz-transition: 0.46s;
  -webkit-transition: 0.46s;
  transition: 0.46s;
}

.rows:before, .rows:after{
  position: absolute;
  content: '';
  background-color: inherit;
  width: 100%;
  height: 100%;
  border-radius: 2px;
  
  -o-transition: 0.46s;
  -ms-transition: 0.46s;
  -moz-transition: 0.46s;
  -webkit-transition: 0.46s;
  transition: 0.46s;
}

.rows:before{top: 200%;}

.rows:after{top: -210%;}

.toggle:checked + .rows-container .rows{
/*  possible rotations (either positive/negative) -> 45, 135, 225, 315*/
  transform: rotate(135deg)
}

.toggle:checked + .rows-container .rows:before, .toggle:checked + .rows-container .rows:after{
/*  possible rotations (either postive/negative -> 90, 270*/
  transform: rotate(90deg);
  top: 0
}


  .color_proxima_blue {
    fill: #fff;
  }

  .color_office_blue {
    fill: #fff;
  }

  .scrolledlinks {
  color: #fff;
  }

  .navbar {
      flex-direction: column;
      align-items: flex-start;
      background: #131313;
      width: 100%;
      height: 7vh;
      padding: 0;
  }

  .brand-title {
      position: absolute;
      left: 5%;
      top: 15%;
  }

  .brand-title svg {
      max-width: 80%;
  }

  .navbar-links {
      display: none;
      width: 100%;
      background: #222222;
      margin-top: 7vh;
  }

  .navbar-links ul {
      width: 100%;
      height: 93vh;
      flex-direction: column;
      background: #222222;
  }

  .navbar-links ul li ul {
      height: unset;
  }

  .navbar-links ul li {
      text-align: center;
      width: 90%;
      border-bottom: 1px solid #3C3C3C;
      padding: 15px 0;
  }

  .navbar-links ul li:last-child {
      border-bottom: none;
      margin-top: 20px;
  }

  .navbar-links ul li a {
      padding: .5rem 1rem;
  }

  .navbar-links.active {
      display: flex;
  }

  .navbar-links .phonenumber {
  padding: 20px 20px;
  font-size: 16px;
  margin-left: unset;
  }

  .dropdown:after {
  display: none;
  }

  ul li:hover > ul,
  ul li ul:hover {
  display: none;
  }

}

@media (min-width: 768px) and (max-width: 1024px) {
  /* this is the checkbox */

/*display: flex for equal/auto child margins*/
.rows-container{
  position: absolute;
  top: 0;
  right: 5%;
  bottom: 0;
/*  used a 16:9 ratio for width & height*/
  width: 31px;
  height: 18px;
  cursor: pointer;
  margin: auto;
  display: flex;
}

/*menu is responsive to dimensions of label/.rows-container above*/
.rows{
  position: relative;
  width: 100%;
  height: 19%;
  background-color: #fff;
  margin: auto;
  border-radius: 2px;
  
  -o-transition: 0.46s;
  -ms-transition: 0.46s;
  -moz-transition: 0.46s;
  -webkit-transition: 0.46s;
  transition: 0.46s;
}

.rows:before, .rows:after{
  position: absolute;
  content: '';
  background-color: inherit;
  width: 100%;
  height: 100%;
  border-radius: 2px;
  
  -o-transition: 0.46s;
  -ms-transition: 0.46s;
  -moz-transition: 0.46s;
  -webkit-transition: 0.46s;
  transition: 0.46s;
}

.rows:before{top: 200%;}

.rows:after{top: -210%;}

.toggle:checked + .rows-container .rows{
/*  possible rotations (either positive/negative) -> 45, 135, 225, 315*/
  transform: rotate(135deg)
}

.toggle:checked + .rows-container .rows:before, .toggle:checked + .rows-container .rows:after{
/*  possible rotations (either postive/negative -> 90, 270*/
  transform: rotate(90deg);
  top: 0
}


  .color_proxima_blue {
    fill: #fff;
  }

  .color_office_blue {
    fill: #fff;
  }

  .scrolledlinks {
  color: #fff;
  }

  .navbar {
      flex-direction: column;
      align-items: flex-start;
      background: #131313;
      width: 100%;
      height: 7vh;
      padding: 0;
  }

  .brand-title {
      position: absolute;
      left: 5%;
      top: 22%;
  }

  .brand-title svg {
      max-width: 80%;
  }

  .navbar-links {
      display: none;
      width: 100%;
      background: #222222;
      margin-top: 7vh;
  }

  .navbar-links ul {
      width: 100%;
      height: 93vh;
      flex-direction: column;
      background: #222222;
  }

  .navbar-links ul li ul {
      height: unset;
  }

  .navbar-links ul li {
      text-align: center;
      width: 90%;
      border-bottom: 1px solid #3C3C3C;
      padding: 15px 0;
  }

  .navbar-links ul li:last-child {
      border-bottom: none;
      margin-top: 20px;
  }

  .navbar-links ul li a {
      padding: .5rem 1rem;
  }

  .navbar-links.active {
      display: flex;
  }

  .navbar-links .phonenumber {
  padding: 20px 20px;
  font-size: 16px;
  margin-left: unset;
  }

  .dropdown:after {
  display: none;
  }

  ul li:hover > ul,
  ul li ul:hover {
  display: none;
  }

}









