@import url("https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100..700;1,100..700&display=swap");

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

:root {
  font-size: 13px;
  --color-text: #fff;
  --color-bg: #000;
  --color-link: #fff;
  --color-link-hover: #fff;
  --img-width: 190px;
  --img-ratio: 1.1;
  --img-offset-x: 20px;
  --img-offset-y: 20px;
  --img-border-radius: 7px;
  --color-bg-content: rgba(255, 255, 255, 0.05);
  --color-bg-demos: rgba(255, 255, 255, 0.05);
}

body {
  margin: 0;
  color: var(--color-text);
  background-color: var(--color-bg);
  font-family: "Josefin Sans", sans-serif;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  min-height: 100vh;
  min-height: -webkit-fill-available;
  overflow-x: hidden;
}

html,
body {
  scroll-behavior: smooth;
}

a {
  text-decoration: none;
  color: #fff;
}

nav {
  width: 100%;
  display: flex;
  height: 6vw;
  align-items: center;
  justify-content: space-between;
  padding: 0 3vw;
  position: fixed;
  background-color: #000;
  z-index: 999999;
}

nav .logo {
  font-size: 1.5rem;
  font-weight: 700;
}

nav .menu {
  display: flex;
  gap: 2rem;
}
nav .menu a {
  text-transform: uppercase;
  text-decoration: none;
  color: gray;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  cursor: pointer;
  transition: all 0.3s ease;
}

nav .menu a.active {
  color: #157000;
}

nav .menu a:hover {
  color: #157000;
}

nav .socile {
  display: flex;
  gap: 1.5vw;
  color: grey;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

nav .socile i:hover {
  color: var(--color-text);
}

.services {
  width: 100%;
  padding: 1dvh 3vw;
  display: flex;
  flex-direction: column;
  gap: 6rem;
}

.services_hed {
  margin-top: 12%;
  display: flex;
  justify-content: center;
}

.services_hed h1 {
  font-size: 5rem;
  font-weight: 400;
}

.services_items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.ser_item {
  width: 100%;
  height: 300px;
  background-color: #262626;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 3vw;
  gap: 1.5rem;
  cursor: pointer;
}

.ser_item h1 {
  font-size: 2rem;
  font-weight: 500;
}

.ser_item p {
  text-align: center;
  font-size: 1.2rem;
  color: grey;
}

.ser_item span {
  font-size: 1.5rem;
  font-weight: 600;
  color: #157000;
}

.ser_item img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.ser_item:hover img {
  transform: scale(1.1);
}

footer {
  width: 100%;
  height: 6vw;
  background-color: #000;
  display: flex;
  justify-content: center;
  align-items: center;
}

footer h3 {
  color: #888;
}

footer a {
  text-decoration: none;
  color: #fff;
  color: #157000;
  cursor: pointer;
}
