.nav {
  background-color: white;
}
/* Blog information */
.DesignIT-blog_information {
  width: 90%;
  margin: auto;
  font-weight: 400;
}
.DesignIT-blog_information-img {
  width: 100%;
  margin: 0 auto 20px auto;
}
.DesignIT-blog_information-img img {
  width: 100%;
  /* height: 100%; */
  object-fit: cover;
  max-height: 700px;
  object-position: 60% 40%;
  border-radius: 10px;
}
.DesignIT-blog_information p {
  margin: 2rem 0;
}
.DesignIT-blog_information span {
  color: #b92c00;
}

/* Blog content */
.DesignIT-blog_content {
  width: 90%;
  margin: auto;
  display: flex;
  justify-content: space-between;
  font-weight: 400;
}
.DesignIT-blog_content img {
  width: 100%;
  /* height: 100%; */
  object-fit: cover;
  max-height: 600px;
  margin: 15px 0;
  object-position: 60% 40%;
  border-radius: 10px;
}
.DesignIT-blog_content_story {
  width: 65%;
}
.DesignIT-blog_content_story-p {
  margin: 2rem 0;
}
.DesignIT-blog_content-form {
  width: 30%;
  position: sticky;
  top: 12%;
  height: 300px;
}
.DesignIT-blog_content_story-img {
  width: 100%;
}
.DesignIT-blog_content_story-img img {
  width: 100%;
}

/* DesignIT-blog_content-form */
.DesignIT-blog_content-form form {
  width: 100%;
  margin: auto;
  text-align: center;
}
.DesignIT-blog_content-form p {
  font-weight: 500;
}
.DesignIT-blog_content-form input {
  display: block;
  width: 70%;
  margin: auto;
  border: none;
  outline: none;
  height: 50px;
  text-align: center;
  font-size: 1.2rem;
}
.DesignIT-blog_content-form button {
  font-size: 1.2rem;
  display: block;
  border: none;
  margin: auto;
  width: 70%;
  outline: none;
  padding: 1rem 2rem;
  border-radius: 0px 0px 15px 15px;
  background: #b92c00;
  color: white;
  cursor: pointer;
}

/* HashTag */
.DesignIT-blog_hashtag {
  width: 80%;
  display: flex;
  justify-content: space-evenly;
  margin: 4rem auto;
}
.DesignIT-blog_hashtag p {
  font-weight: 500;
  border-radius: 36px;
  padding: 1rem;
  background: #fff;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.25);
}
.DesignIT-blog-control_btns {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin: 5rem auto;
  vertical-align: center;
}

.DesignIT-blog-control_btns button {
  border-radius: 36px;
  background: #fff;
  outline: none;
  border: none;
  padding: 1rem;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.25);
  font-size: 20px;
  cursor: pointer;
}
.DesignIT-blog-control_btns button:hover {
  background-color: #b92c00;
  color: #fff;
  transform: scale(1.05);
}

/* Active (Clicked) State */
.DesignIT-blog-control_btns button:active {
  background-color: #b92c00;
  color: #fff;
}
/* DesignIT blog copied from main*/
.DesignIT-blog {
  width: 90%;
  margin: 5rem auto;
}
.DesignIT-blogs {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 2rem 0;
}
.DesignIT-blog-text {
  width: 40%;
}
.DesignIT-blog-text p {
  width: 90%;
}
.DesignIT-blog-text a {
  background-color: #b92c00;
  color: white;
  padding: 1rem 4rem;
  display: block;
  width: fit-content;
  border-radius: 10px;
  margin: 4rem 0;
}
.DesignIT-blog-images {
  display: flex;
  width: 55%;
  justify-content: space-between;
}

.DesignIT-blog-content {
  width: 47%;
  cursor: pointer;
  border-radius: 10px;
  box-shadow: 0px 2.5px 2.35px 0px rgba(0, 0, 0, 0.25);
}
.DesignIT-techAtour img {
  width: 100%;
}
.blog-information {
  padding: 0.4rem;
}
.blog-information {
  font-size: var(--fs-400);
}
.blog-topic {
  font-size: var(--fs-300);
  padding: 0 1rem;
  background-color: #b92c00;
  width: fit-content;
  border-radius: 7px;
  color: white;
  margin: 0.3rem;
}
.blog-head {
  font-weight: 600;
  margin: 0.3rem;
}
.blog-content {
  font-size: var(--fs--300);
  font-weight: 400;
  margin: 0.3rem;
}
.DesignIT-blog-author {
  display: flex;
  align-items: center;
  margin: 1rem 0.5rem;
}
.DesignIT-blog-author img {
  width: unset;
}
.DesignIT-blog-author_image {
  margin-right: 1rem;
}

.DesignIT-blog-author_image img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

.DesignIT-view {
  width: 50%;
  text-align: right;
}

/* Mobile Design for the project */

/* DesignIT blog content story */

@media (max-width: 58.125rem) {
  .DesignIT-blog_content {
    flex-direction: column;
  }
  .DesignIT-blog_content_story {
    width: 90%;
    margin: auto;
  }
  .DesignIT-blog_content-form {
    width: 80%;
    margin: auto;
  }

  .DesignIT-blog_content {
    width: 100%;
  }
  .DesignIT-blog-images {
    width: 100%;
  }
  .DesignIT-blog_hashtag {
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .DesignIT-blog_hashtag p {
    margin: 1rem;
    padding: 0.5rem;
  }
}
@media (max-width: 81.25rem) and (min-width: 58.125rem) {
  .DesignIT-blog_content-form input,
  .DesignIT-blog_content-form button {
    width: 90%;
  }
  .DesignIT-blog-images {
    width: 80%;
  }
}

@media (max-width: 38rem) {
  .DesignIT-blog-images {
    flex-direction: column;
    width: 100%;
    margin: auto;
  }
  .DesignIT-blog-content {
    width: 90%;
    border-radius: 10px;
    box-shadow: 0px 2.5px 2.35px 0px rgba(0, 0, 0, 0.25);
    margin: 2rem auto;
  }
  .DesignIT-blog h3 {
    text-align: center;
  }
}
