@import url("https://fonts.googleapis.com/css2?family=Poppins");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins";
  transition: 0.25s ease;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  background: transparent;
  display: flex;
  flex-direction: column;
}

::-webkit-scrollbar {
  width: 0;
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: transparent;
}

.container-1 {
  width: 100%;
  height: 100vh;
  min-height: 100vh;
  min-height: -webkit-fill-available;
  background-image: url("res/bg0.png");
  background-position: center;
  background-size: cover;
  position: relative;
}

.container-1 .hero {
  width: 100%;
  height: 100%;
  background: rgba(30, 30, 30, 0.6);
  padding: 0;
  display: flex;
  justify-content: center;
  position: relative;
}

.container-1 .hero .navbar {
  width: 100%;
  height: 100%;
  max-width: 1300px;
  padding: 10px 10px;
  display: flex;
  justify-content: space-between;
  position: absolute;
  z-index: 99;
}

.container-1 .hero .navbar img {
  width: 45px;
  height: 45px;
}

.container-1 .hero .navbar ul {
  width: auto;
  height: 30px;
  background: transparent;
  padding: 0px 0px;
  display: flex;
  align-items: center;
  list-style: none;
  overflow: hidden;
  position: relative;
}

.container-1 .hero .navbar ul li {
  width: auto;
  height: auto;
  background: transparent;
  padding: 0px 10px;
  display: flex;
  position: relative;
}

.container-1 .hero .navbar ul li a {
  width: auto;
  height: auto;
  background: transparent;
  padding: 0;
  color: #c8c8c8;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  position: relative;
}

.container-1 .hero .navbar ul li a:hover {
  color: #d9d9d9;
  text-shadow: 0 0 2.5px #919191, 0 0 2.5px #919191, 0 0 2.5px #919191;
}

.container-1 .hero .navbar ul li:nth-of-type(1n) {
  margin-left: 10px;
}

.container-1 .hero .overlay {
  width: auto;
  height: auto;
  background: transparent;
  padding: 0;
  display: block;
  justify-content: center;
  align-content: center;
  align-items: center;
  align-self: center;
  animation: pop 2.5s infinite;
  position: absolute;
}

@keyframes pop {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.9);
  }
  100% {
    transform: scale(1);
  }
}

.container-1 .hero .overlay h1 {
  width: auto;
  height: auto;
  color: #fff;
  background: transparent;
  text-transform: capitalize;
  font-size: 48px;
  font-weight: auto;
  letter-spacing: 1px;
  text-align: center;
  position: relative;
}

.container-1 .hero .overlay h2 {
  width: auto;
  height: auto;
  color: #fff;
  background: transparent;
  text-transform: capitalize;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1px;
  text-align: center;
  position: relative;
}

@media not screen and (min-width: 426px) {
  .container-1 .hero .navbar ul li a {
    font-size: 10px;
  }

  .container-1 .hero .overlay h1 {
    font-size: 32px;
  }

  .container-1 .hero .overlay h2 {
    font-size: 12px;
  }
}

@media not screen and (min-width: 376px) {
  .container-1 .hero .navbar ul li a {
    font-size: 8px;
  }
}
@media not screen and (min-width: 321px) {
  .container-1 .hero .navbar ul li a {
    font-size: 6px;
  }
}

.container-2 {
  width: 100%;
  min-height: 100vh;
  background: #1e1e1e;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  border-top: 1px solid black;
  position: relative;
}

.container-2 .services {
  width: calc(100% - 40px);
  max-width: 1300px;
  max-height: calc(100% - 40px);
  background: transparent;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  overflow: scroll;
  position: relative;
  margin: 20px 20px;
}

.container-2 .services .card {
  flex: 1 1 auto;
  min-width: 260px;
  height: 300px;
  background: #181818;
  padding: 20px 20px;
  border-radius: 10px;
  display: block;
  position: relative;
  margin: 10px;
}

.container-2 .services .card:hover {
  transform: scale(1.05);
}

.container-2 .services .card:last-child {
  max-width: 925px;
}

.container-2 .services .card i {
  width: 30px;
  height: 30px;
  background: transparent;
  padding: 0;
  color: #c8c8c8;
  font-size: 30px;
  font-weight: 700;
  position: absolute;
}

.container-2 .services .card span {
  width: auto;
  height: 30px;
  background: transparent;
  padding: 2px 0px;
  color: #c8c8c8;
  font-size: 16px;
  font-weight: 700;
  position: absolute;
  margin-left: 40px;
}

.container-2 .services .card div {
  width: 100%;
  height: 5px;
  background: #1e1e1e;
  padding: 0;
  border-radius: 10px;
  position: relative;
  margin-top: 45px;
}

.container-2 .services .card p {
  width: auto;
  height: auto;
  max-width: 265px;
  background: transparent;
  padding: 10px;
  color: #c8c8c8;
  font-size: 14px;
  font-weight: 700;
  word-wrap: break-word;
  position: relative;
  margin-top: 10px;
}

.container-2 .services .card:hover i,
.container-2 .services .card:hover span,
.container-2 .services .card:hover p {
  color: #fff;
}

.footer {
  width: 100%;
  height: 30px;
  background: #181818;
  color: #c8c8c8;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

