@font-face {
  font-family: "Cirka";
  src: url("fonts/Cirka-Bold.otf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  background-color: #000;
  color: white;
  width: 100vw;
  /*to prevent horizontal scroll*/
  /* overflow-x: hidden; */
}

header {
  background: transparent;
  /* margin-top: 4%; */
  width: 100%;
  /* z-index: 10; */
}

.container {
  display: flex;
  align-items: center;
  max-width: 100%;
  height: 100%;
  justify-content: center;
  background: transparent;
}

.logo {
  width: 7.5%;
  height: auto;
  position: absolute;
  /* z-index: 10; */
  top: 0.8%;
  left: 3%;
}

.navbar {
  width: 50%;
  margin-top: 2%;
  display: flex;
  /* position: absolute; */
  /* z-index: 10; */
  background: transparent;
}

.nav-list {
  list-style: none;
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 100%;
  height: 100%;
  padding-left: 5%;
  padding-right: 5%;
  padding-top: 2.7%;
  padding-bottom: 2.7%;
  background: linear-gradient(
    175deg,
    rgba(17, 18, 20, 0.75) 5%,
    rgba(12, 13, 15, 0.9) 76%
  );
  box-shadow: 0px 0.93px 0.93px 0.93px rgba(255, 255, 255, 0.15) inset;
  border-radius: 1rem;
  border: 0.93px rgba(255, 255, 255, 0.06) solid;
  backdrop-filter: blur(4.67px);
}

.nav-list a {
  text-decoration: none;
  color: #9c9c9d;
  font-weight: 500;
  font-family: "poppins";
  font-size: 1.2vw;
}

.nav-list a:hover {
  color: #fff;
}

.nav-list .active {
  color: #fff;
}

.form-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.form-class {
  background: #000;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 4%;
  margin-bottom: 10%;
  padding: 2%;
  width: 40%;
  /* margin-left: 500px; */
}

label {
  margin-bottom: 2%;
  font-weight: 500;
  font-family: "Inter";
  align-self: flex-start;
  font-size: 1.5vw;
}

input[type="text"],
input[type="email"],
input[type="file"],
textarea {
  width: 100%;
  padding: 2%;
  margin-bottom: 4%;
  /* border: 1px solid #ccc; */
  border: none;
  background-color: #333;
  border-radius: 4px;
  box-sizing: border-box;
  color: white;
  font-family: "Inter";
  font-weight: bold;
  font-size: 1vw;
}

input::placeholder {
  font-family: "Inter";
}

input[type="submit"] {
  align-self: center;
  width: 40%;
  background-color: #ffff;
  color: #000;
  padding: 2%;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1.2vw;
  font-family: "Inter";
  font-weight: 500;
}

input[type="submit"]:hover {
  background-color: gray;
}

footer {
  margin-top: 10%;
  width: 100%;
  display: flex;
  justify-content: center;
}

.newsletter-container {
  border-top: 1.186px solid #1b1c1e;
  border-bottom: 1.186px solid #1b1c1e;
  display: flex;
  justify-content: space-between;
  gap: 15%;
  background-color: black;
  padding: 3%;
  color: white;
  width: 90%;
  margin-bottom: 5%;
}

.left-newsletter {
  flex: 1;
  padding-top: 3%;
  padding-bottom: 3%;
  width: 50%;
}

.but:active {
  color: #000;
}

.left-newsletter-head {
  text-align: start;
  color: white;
  font-size: 1.3vw;
  font-family: Inter;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.06vw;
}

.left-newsletter-desc {
  color: #9c9c9d;
  font-size: 1vw;
  font-family: "Inter";
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.06vw;
}

.right-newsletter {
  flex: 1;
  padding-top: 1%;
  padding-bottom: 1%;
  width: 50vw;
}

.right-newsletter form input[type="email"] {
  padding: 3% 2% 3% 2%;
  background-color: rgb(26, 26, 26, 0.6);
  border: 1.186px solid #1b1c1e;
  color: white;
  border-radius: 0.7rem;
  width: 60%;
  font-size: 1vw;
  transition: background-color 0.2s ease-in-out;
}

.right-newsletter form input[type="email"]:hover {
  background-color: #1f1e1e;
}

.right-newsletter form button {
  padding: 2.5% 2% 2.5% 2%;
  background-color: #ffffff;
  color: black;
  border: none;
  border-radius: 0.7rem;
  cursor: pointer;
  transition: background-color 0.2s ease-in-out;
  width: 30%;
  font-size: 1vw;
  font-family: "Inter";
  font-weight: 550;
  letter-spacing: 0.06vw;
  margin-left: 2%;
}

.right-newsletter form button:hover {
  background-color: rgb(221, 218, 218);
}

.right-newsletter-desc {
  text-align: justify;
  color: rgba(255, 255, 255, 0.4);
  font-size: 1vw;
  font-family: Inter, sans-serif;
  font-weight: 300;
  line-height: 1.6;
  letter-spacing: 0.04vw;
  padding-top: 2%;
}

.sections {
  display: flex;
  justify-content: space-between;
  margin: 5%;
  margin-left: 20%;
  margin-right: 20%;
}

.contact_us,
.company,
.community {
  width: 30%;
}
.contact_us h3,
.company h3,
.community h3 {
  color: white;
  font-family: "Inter", sans-serif;
  font-size: 1.3vw;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.06vw;
  margin-bottom: 15%;
  padding-left: 10%;
}

.contact_us ul,
.company ul,
.community ul {
  list-style-type: none;
  padding-left: 10%;
  /* text-align: center; */
}

.contact_us ul li,
.company ul li,
.community ul li {
  margin-bottom: 12%;
}

.contact_us ul li a,
.company ul li a,
.community ul li a {
  color: #9c9c9d;
  font-size: 1.1vw;
  font-family: "Inter";
  font-weight: 500;
  letter-spacing: 0.06vw;
  text-decoration: none;
}

.contact_us ul li a:hover,
.company ul li a:hover,
.community ul li a:hover {
  color: #fff;
}
.company .current-page {
  color: #fff;
}
