.flex {
  display: flex;
}
.flex-jc-c {
  justify-content: center;
}
.flex-ai-c {
  align-items: center;
}
.flex-jc-sb {
  justify-content: space-between;
}
.flex-jc-sr {
  justify-content: space-around;
}
.flex-col {
  flex-direction: column;
}

*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  transition: 0.1s;
}

body,
html {
  font-size: 100%;
  font-family: "Inter", sans-serif;
  scroll-behavior: smooth;
  height: 10000px;
}

img {
  max-width: 100%;
}

ul {
  list-style: none;
}

a,
a:visited {
  text-decoration: none;
}

:root {
  --Gold:rgba(255, 180, 0,100%);
  --Gold-light:rgba(255, 180, 0, 95%);
  --DarkSlateGray:rgba(43, 43, 43,100%);
  --Black:rgba(24, 25, 26,100%);
  --SlateGray:rgba(58, 59, 60,100%);
  --DimGray:rgb(36, 37, 38);
  --Gray:rgb(118, 118, 118);
  --Silver:rgb(240, 240, 246);
  --LightGray:rgb(228, 230, 235);
  --White:rgb(255, 255, 255);
}

header {
  position: fixed;
  width: 100%;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  padding: 0.9375rem 0;
  z-index: 999;
}

.container {
  width: 78.8888888889%;
  margin: 0 auto;
}

nav ul li {
  display: inline-block;
}
nav ul li:not(:last-child) {
  margin-right: 4.0625rem;
}
@media (max-width: 700px) {
  nav ul li:not(:last-child) {
    margin-right: 0.625rem;
  }
}
nav ul li a {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  width: 3.125rem;
  height: 3.125rem;
  padding: 0.625rem;
  background: var(--LightGray);
  position: relative;
}
@media (max-width: 700px) {
  nav ul li a {
    width: 2.5rem;
    height: 2.5rem;
  }
}
nav ul li a::before {
  content: "Home";
  position: absolute;
  bottom: 0rem;
  opacity: 0;
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.3125rem 0.9375rem;
  background: var(--DarkSlateGray);
  border-radius: 0.125rem;
  color: var(--White);
}
nav ul li a::after {
  content: "";
  border-top: 10px solid transparent;
  border-bottom: 10px solid var(--DarkSlateGray);
  border-right: 10px solid transparent;
  border-left: 10px solid transparent;
  position: absolute;
  bottom: 0rem;
  opacity: 0;
}
nav ul li a i {
  color: var(--Gray);
}
nav ul li a:hover {
  background: var(--Gold);
}
nav ul li a:hover i {
  color: var(--DarkSlateGray);
}
nav ul li a:hover::before {
  bottom: -2.5rem;
  opacity: 100;
}
nav ul li a:hover::after {
  bottom: -1rem;
  opacity: 100;
}
nav ul li:nth-child(2) a::before {
  content: "Services";
}
nav ul li:nth-child(3) a::before {
  content: "Graduate";
}
nav ul li:nth-child(4) a::before {
  content: "CV";
}
nav ul li:last-child a::before {
  content: "Contect";
}

/*# sourceMappingURL=style.css.map */
