/* -- Font Faces -------------------------------------------- */
@font-face {
  font-family: 'Saans';
  src: url('../fonts/saans-font-family/Saans-TRIAL-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
.main-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  text-decoration: none;
}

.main-nav a {
  text-transform: capitalize;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 1em;
  line-height: 1.5;
  color: var(--color-slate);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-decoration: none;
  color: #000;
  padding: 0.4rem 0;
  transition: color 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.main-nav a:hover {
  color: #ff7a18;
}

.main-nav:has(a:hover) a:not(:hover) {
  opacity: 0.3;
}
@media(max-width:768px){
	.main-nav{
	font-size: 0.75em;
	gap: 10px;
	}
}