@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700;800;900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", cursive !important;
}

html {
  scroll-behavior: smooth;
}

body {
  background: rgba(0, 7, 16, 0.993);
}

input:focus,
textarea:focus {
  outline: none;
}

.active {
  display: block;
}

/* *** nav section/ navigation list *** */
nav {
  z-index: 20;
  position: fixed;
  width: 100%;
  top: 0;
  background: rgba(25, 26, 48, 0.898);
  backdrop-filter: blur(20px);
}

/* *** HERO SECTION *** */
.hero {
  background: url("../img/footer.jpg") no-repeat center center/cover;

  height: 550px;
  width: 100%;
  position: relative;
}

.content {
  position: absolute;
  top: 50%;
  left: 50%;
  height: 100%;
  width: 100%;
  transform: translate(-50%, -50%);
}

/* *** CLIENTS *** */
.client_heading {
  position: relative;
}

.client_heading::after {
  content: "Collaborators";
  position: absolute;
  top: 50%;
  left: 50%;
  height: 100%;
  width: 100%;
  transform: translate(-50%, -50%);

  font-size: 2.2rem;
  z-index: -1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(208, 208, 208, 0.088);
}

/* *** FOOTER *** */
.footer {
  height: 50vh;
  width: 100%;
  background: url("../img/footer.jpg") no-repeat top center/cover;

  display: flex;
  align-items: center;
  justify-content: center;
}
