

.mat-icons {
  width: 16px;
}

header {
  width: 100%;
}

.top-bar {
  /* background-color: var(--main-darkBlue-header); */
  padding-top: 20px;
  display: flex;
  color: var(--white);
  justify-content: space-between;
  flex-wrap: wrap;
  font-size: 14px;
}

.mat-icons {
  background-color : var(--white);
  border-radius: 10px;
  width: 25px;
  height: 25px;
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-info span {
  margin-right: 15px;
}

.social-media span {
  margin-right: 10px;
}

.social-media a {
  margin-right: 5px;
  text-decoration: none;
}

.main-header {
  background: linear-gradient(to right, #131c22, #2e3b45);
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.nav-menu {
  display: flex;
  gap: 20px;
  flex: 1;
}

.nav-menu a {
  color: white;
  text-decoration: none;
  font-size: 15px;
}

.logo {
  color: white;
  font-size: 22px;
  font-weight: bold;
  flex: 1;
  text-align: center;
}

.call-action {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.call-info {
  color: white;
  font-size: 14px;
  text-align: right;
}


@media (max-width: 768px) {
  .main-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-menu {
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 10px;
  }

  .logo {
    margin-bottom: 10px;
  }

  .call-action {
    flex-direction: column;
    align-items: flex-start;
  }

  .call-info {
    text-align: left;
  }
}