* {
  font-family: "Oswald", sans-serif;
}
body {
  overflow-x: hidden;
}
::-webkit-scrollbar {
  width: 8px; /* Width of the scrollbar */
  background-color: transparent; /* Background of the scrollbar */
}

::-webkit-scrollbar-thumb {
  background-color: #bdbdbd; /* Color of the scrollbar thumb */
  border-radius: 2px; /* Rounded edges */
}

::-webkit-scrollbar-thumb:hover {
  background-color: #8d8d8d; /* Color when hovering over the thumb */
}

::-webkit-scrollbar-track {
  background: #eeeeee; /* Background of the track */
}

a {
  text-decoration: none;
}
.logo {
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  display: flex;
  text-decoration: none;
  color: #222222;
  font-size: 1.5rem;
  & p {
    margin: auto 0 0 3px;
  }
}
header {
  z-index: 3;
  background-color: transparent;
  display: flex;
  justify-content: space-between;
  align-items: center;
  align-items: center;
  width: 100vw;
  height: 60px;
  position: fixed;
  transition: background-color 0.3s ease;
}
header.scrolled {
  background-color: #eeeeee;
  color: black;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

header img {
  margin: auto 0 0 40px;
  width: 35px;
  transition: opacity 0.3s ease;
}

header img:hover {
  opacity: 0.7;
}

nav ul {
  font-family: "Oswald", sans-serif;
  font-size: 1rem;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  & a:hover {
    border-bottom: 2px solid #222222;
  }
}
header a {
  color: #2e2e2e;
}
header a:hover {
  color: #000;
}

/* #call-btn {
  margin-right: 40px;
  font-family: "roboto", sans-serif;
  font-size: 0.9rem;
  padding: 10px;
  border: none;
  background-color: transparent;
  border-radius: 5px;
  cursor: pointer;
  & a {
    text-decoration: underline;
  }
  transition: all 0.3s ease;
}
#call-btn i {
  font-size: 0.9rem;
  margin-left: 8px;
}
#call-btn:hover {
  background-color: #dbdbdb;
} */



#call-btn {
  margin-right: 30px;
  border-radius: 0.3em;
  border: 2px solid #00ad82;
  width: 8em;
  height: 2em;
  position: relative;
  overflow: hidden;
  background-color: transparent;
  text-align: center;
  text-transform: uppercase;
  font-size: 0.9rem;
  transition: 0.3s;
  z-index: 1;
  font-family: "Oswald", sans-serif;
  color: #17c3b2;
  cursor: pointer;
}

#call-btn::after {
  content: "";
  transition: 0.5s;
  transform-origin: center;
}

#call-btn::before {
  content: "";
  width: 0;
  height: 300%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  background: #00ad82;
  transition: 0.5s ease;
  display: block;
  z-index: -1;
}

#call-btn:hover::before,
#call-btn:hover::after {
  width: 105%;
}

#call-btn:hover {
  color: #111;
}

#call-btn i {
  font-size: 1rem;
  margin-left: 8px;
}     