:root {
  /* Theme Colors */
  --av-color-black: #000000;
  --av-color-headings: #141b34;
  --av-color-text: #555555;
  --av-color-white: #ffffff;
  --av-color-border: #e6e6e6;
  --av-color-blue: #05aba7;

  /* Theme Font Size */
  --av-font-size-12: 12px;
  --av-font-size-14: 14px;
  --av-font-size-16: 16px;
  --av-font-size-18: 18px;
  --av-font-size-20: 20px;
  --av-font-size-22: 22px;
  --av-font-size-24: 24px;
  --av-font-size-26: 26px;
  --av-font-size-28: 28px;
  --av-font-size-30: 30px;
  --av-font-size-32: 32px;
  --av-font-size-34: 34px;
  --av-font-size-36: 36px;
  --av-font-size-38: 38px;
  --av-font-size-40: 40px;
  --av-font-size-42: 42px;
  /* Theme Font Weight */
  --av-font-weight-400: 400;
  --av-font-weight-500: 500;
  --av-font-weight-600: 600;
  --av-font-weight-700: 700;
  /* Theme Radius */
  --av-radius-500: 500px;
  --av-radius-22: 22px;
}
body {
  font-family: "Roboto", sans-serif;
}
p,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0px;
}
ul {
  margin-bottom: 0px;
}
/* ***********blog-hero-section************* */
.blog-hero {
  margin-top: 100px;
}
.search-container {
  max-width: 625px;
  height: 56px;
  display: flex;
  align-items: center;
  border-radius: 8px;
  border: 0.5px solid #f6f6f680;
  position: relative;
  margin: 0 auto;
  margin-top: 60px;
}
.search-container input::placeholder {
  font-family: Inter;
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #555555;
}
.search-container input {
  flex: 1;
  padding: 20px;
  border: none;
  outline: none;
  font-family: Inter;
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #555555;
  background: #f6f6f680;
}
.search-btn {
  width: 180px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 12px;
  background: var(--av-color-blue);
  text-decoration: none;
  transition: 0.4s all;
}
.search-btn:hover {
  box-shadow: 0px 20px 25px -5px #05aba74d;
}
.search-btn span {
  font-family: Inter;
  font-weight: 700;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: 0px;
  color: var(--av-color-white);
}
/* **********blog-grid-section**************** */
.bgrid-section {
    margin-bottom: 100px;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.blog {
  border: 1px solid #0000001a;
  border-radius: 4px;
}
.blog-content {
  padding: 30px;
}
.blog-content a {
  text-decoration: none;
}
.blog-time {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 5px;
}
.blog-time span {
  font-family: Lexend Deca;
  font-weight: 400;
  font-size: 12px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #6d6d6d;
}
.blog-head {
  font-family: Poppins;
  font-weight: 500;
  font-size: 22px;
  line-height: 150%;
  letter-spacing: 0%;
  color: #333333;
  margin-bottom: 5px;
}
.blog-text {
  font-weight: 400;
  font-size: 18px;
  line-height: 36px;
  letter-spacing: 0%;
  color: var(--av-color-text);
}
.blog-img img {
  width: 100%;
}



@media (min-width: 768px) and (max-width: 1199.98px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767.98px) {
  .blog-grid {
    grid-template-columns: repeat(1, 1fr);
  }
  .blog-hero {
    margin-top: 70px;
  }
}
@media (max-width: 499.98px) {
    .search-container {
        flex-direction: column;
        gap: 20px;
        height: unset;
        align-items: start;
    }
    .search-container input {
        width: 100%;
    }
}
