/* Bobby added style changes to top nav : reduced height by 10px, reduced font & ion size */

header {
  width: 100%;
  margin: auto;
  background-color: transparent !important;
  position: fixed;
  z-index: 99;
}

.header-block {
  display: flex;
  justify-content: space-between;
  background-color: #fff;
  padding: 5px 50px;

  font-family: 'roboto', sans-serif;
  font-weight: 400;
}

.header-block-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.header-contact-info {
  display: flex;
  align-items: center;
}

.header-icons {
  height: 15px;
  margin-right: 10px;
}

.right-side-icon {
  margin-left: 5px;
}

.header-block-content > p{
  font-size: 14px;
}

.header-socials {
  margin-left: 10px;
  font-size: 21px;
  transition: 0.3s;
}

.header-socials:hover {
  color: #30d5c8;
  transition: 0.3s;
}

/* * -------------------------------------------------------------------------- */
/* *                               MEDIA QUERIES                               */
/* * -------------------------------------------------------------------------- */

@media (max-width: 990px) {
  header {
    padding: 0;
    position: initial;
    background-color: #fff;
  }
  .contact-link {
    margin-bottom: 25px;
  }
  .devis-btn {
    margin-bottom: 20px;
  }
}

@media (max-width: 550px) {
  .header-block {
    padding: 5px 25px;
  }

  .header-block-content {
    font-size: 14px;
  }

}

@media (max-width: 435px) {
  .header-block {
    display: none;
  }
}
