@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; */
  left: 3%;
  top: 0.8%;
}

.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;
}

.blog {
  width: 100%;
  margin-top: 2%;
  padding: 5% 5% 10% 5%;
  /* height: 100vh; */
}

.recent_blog {
  width: 100%;
  color: white;
  font-size: 4vw;
  font-family: "Cirka";
  font-weight: 500;
  margin-bottom: 3%;
}
.blog_content {
  font-family: "Inter", sans-serif;
  width: 100%;
  /* height: 100%; */
  display: flex;
  flex: 1;
  justify-content: stretch;
  align-items: center;
  gap: 3%;
}
.blog_section1 {
  /* height: 100%; */
  width: 50%;
  display: flex;
  flex-direction: column;
  /* gap: 5%; */
}
.blog_section1_up {
  margin-bottom: 2%;
}
.blog_section2 {
  /* height: 100%; */
  width: 50%;
  display: flex;
  flex-direction: column;
  /* gap: 7%; */
}
.blog_section2a {
  margin-bottom: 3%;
}
.blog_section2a,
.blog_section2b {
  /* height: 40%; */
  width: 100%;
  display: flex;
  gap: 5%;
}
.blog_section2a_left,
.blog_section2b_left {
  width: 100%;
}
.blog_section2a_right,
.blog_section2b_right {
  width: 80%;
}
.blog_img1 {
  width: 100%;
  /* height: 100%; */
}

.blog_img1 img,
.blog_img2 img,
.blog_img3 img {
  border-radius: 5%;
}
.blog_img2,
.blog_img3 {
  width: 100%;
  /* height: 100%; */
  /* border-radius: 8px; */
}

.blog_date {
  color: rgba(105, 65, 198, 1);
  font-weight: 600;
  font-size: 1.1vw;
  margin-bottom: 4%;
}
.blog_heading {
  font-weight: 600;
  font-size: 1.5vw;
  margin-bottom: 4%;
}
.blog_desc {
  color: rgba(192, 197, 208, 1);
  margin-bottom: 4%;
  font-size: 1vw;
}

.circle {
  justify-content: center;
  align-items: center;
  display: inline-flex;
  border-radius: 1rem;
  padding: 1.5% 3%;
  margin-right: 1%;
  /* height: 70%; */
}
.circle.first {
  background: rgba(249, 245, 255, 1);
}
.circle.second {
  background: rgba(238, 244, 255, 1);
}
.circle.third {
  background: rgba(253, 242, 250, 1);
}

.name {
  font-size: 0.9vw;
}
.name.first {
  color: rgba(105, 65, 198, 1);
}
.name.second {
  color: rgba(53, 56, 205, 1);
}
.name.third {
  color: rgba(193, 21, 116, 1);
}

.section-beneath {
  width: 100vw;
  /* height: 150vh; */
  padding-left: 5vw;
  padding-right: 5vw;
  margin-top: 2%;
  /* margin-bottom: 5%; */
}

.beneath-title {
  font-family: "Cirka";
  font-size: 2.3vw;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 4%;
}
.cards {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.card {
  width: 31%;
  margin-bottom: 5%;
}

#beneath-image {
  width: 100%;
  /* height: 100%; */
}

.card #beneath-image {
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.card:hover #beneath-image {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.card-text {
  font-family: "Poppins";
  width: 100%;
  /* height: 50%; */
  margin-top: 5%;
}

.card-text-first {
  color: white;
  font-size: 2vw;
  font-weight: 400;
  line-height: 1.3;
  word-wrap: break-word;
}

.card-text-second {
  color: rgb(218, 215, 215);
  font-size: 1.5vw;
  font-weight: 300;
  line-height: 1.3;
  word-wrap: break-word;
}

.d-t {
  margin-top: 5%;
  width: 70%;
}

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;
}
