body {
  background-color: var(--lit-sec);
}
#sector1 {
  background-image: url(/other_page/about/img/inner-pagebg.jpg),
    linear-gradient(#4f515275, #1e212dc0);
  height: 70vh;
  width: 100%;
  background-repeat: no-repeat;
  background-size: auto;
  background-blend-mode: soft-light;
  margin-bottom: 2%;
}

.main-sector {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 5%;
}

.blog-main1 {
  max-width: 50%;
}

.blog-main2 {
  width: 25%;
}

.blog-ctn {
  background-color: var(--text);
  height: 100vh;
  width: 100%;
  padding: 1.3%;
  margin-bottom: 3%;
  border-radius: 8px;
  transition: 500ms;
  border: 1px solid #46464621;
}

.blog-ctn:hover {
  box-shadow: 0 0 30px 0 #00000022;
}

.blog-img {
  background-image: url(/other_page/blog/blog-img/blog1.jpg);
  height: 60vh;
  background-repeat: no-repeat;
  border-radius: 5px;
}

#blog-img2 {
  background-image: url(/other_page/blog/blog-img/blog2.jpg);
}

#blog-img3 {
  background-image: url(/other_page/blog/blog-img/blog3.jpg);
}

.blog-img .contruct {
  background-color: var(--primary);
  width: max-content;
  font-size: 15px;
  color: var(--text);
  padding: 0.1% 1.5%;
  margin: 5% 1%;
  border-radius: 3px;
}

.blog-p1,
.blog-p2 {
  padding: 0 2%;
}

.blog-p1 .blog-title {
  font-size: 16px;
  font-weight: 500;
  margin: 3% 0;
}

.blog-p1 .blog-art {
  font-size: 14px;
  width: 95%;
  margin-bottom: 3%;
  font-weight: 350;
}

.blog-p2 {
  border-top: 1px solid #00000021;
  display: flex;
  padding-top: 3%;
  gap: 2%;
}

.blog-p2 .blog-img2 {
  width: 3vw;
}

.writer-name,
.date {
  font-size: 15px;
  align-content: center;
  font-weight: 300;
}

.blog-p2 .more {
  color: var(--primary);
}

.blog-p2 .read {
  margin-left: auto;
}

/* blog lisings blog main2 */
#blog-li {
  margin-bottom: 8%;
}

.blog-srh-block {
  background-color: var(--text);
  height: 15vh;
  width: 100%;
  text-align: center;
  align-content: center;
  border-radius: 10px;
  border: 1px solid #46464621;
}

.blog-srch-inp {
  height: 5vh;
  width: 80%;
  outline: none;
  border: 1px solid #1b1b1b35;
  border-radius: 5px;
  padding-left: 3%;
}

.blog-srch-btn {
  width: 60%;
  background-color: transparent;
  border: 1px solid var(--primary);
  color: var(--primary);
  border-radius: 5px;
  cursor: pointer;
}

/* list categories */

.blog-cat {
  background-color: var(--text);
  margin-top: 5%;
  height: 38vh;
  width: 100%;
  padding-top: 3%;
  border-radius: 5px;
  border: 1px solid #46464621;
}

.blog-cat-ctn {
  width: 90%;
  margin: auto;
}

.blog-cat header {
  font-size: 18px;
  font-weight: 450;
}

.blog-cat li {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  font-weight: 350;
  list-style: none;
  margin-top: 5%;
  transition: 300ms;
  cursor: pointer;
}

.blog-cat li:hover {
  color: var(--primary);
}

/* featured listing */
.blog-feat {
  background-color: var(--text);
  width: 100%;
  height: 65vh;
  padding-top: 5%;
  border-radius: 10px;
  border: 1px solid #46464621;
}

.blog-feat header {
  font-size: 18px;
  font-weight: 450;
}

.list-ctn {
  width: 95%;
  align-content: center;
  margin: auto;
}

.blog-feat-block {
  display: flex;
  column-gap: 5%;
  margin-top: 10%;
}

.blog-feat-block img {
  max-width: 8vw;
  min-width: 4vw;
  align-content: center;
}

.room-dels {
  font-size: 15px;
}

.room-dels .apperance {
  font-weight: 500;
  margin-bottom: 5%;
}

.room-dels .price {
  color: var(--primary);
  font-weight: 500;
  margin-bottom: 3%;
}

.room-dels .price .mon {
  font-weight: 400;
  font-size: 13px;
}

.room-dels .propts {
  font-weight: 300;
  font-size: 14px;
}

/* blog tags */

.blog-tag {
  background-color: var(--text);
  height: 32vh;
  min-height: min-content;
  width: 100%;
  align-content: center;
  border-radius: 5px;
  border: 1px solid #46464621;
}

.blog-tag header {
  font-size: 18px;
  font-weight: 400;
  margin-left: 5%;
}

.tag-block {
    display: flex;
    justify-content: center;
    gap: 10%;
    width: 90%;
    flex-wrap: wrap;
  margin: auto;
}

.tag-block span {
  background-color: #00000021;
  height: 6%;
  padding: 1.5% 5%;
  font-size: 13px;
  font-weight: 300;
  border-radius: 5px;
  /* margin: 5% 3%; */
  cursor: pointer;
  transition: 500ms;
  margin-top: 5%;
}

.tag-block span:hover {
  background-color: #21212114;
}

@media (max-width: 900px) {
  .main-sector {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 5%;
    gap: 5%;
  }

  .blog-main1 {
    max-width: 80%;
  }

  .blog-ctn {
    background-color: var(--text);   
    max-height: 100%;
    height: 75vh;
    width: 100%;
    padding: 1%;
  }

  .blog-img {
    height: 40vh;
    background-repeat: no-repeat;
    background-position: center;
    background-size: auto;
  }

  .blog-img .contruct {
    font-size: 13px;
  }

  .blog-p1,
  .blog-p2 {
    padding: 0 2%;
  }

  .blog-p1 .blog-title {
    font-size: 15px;
  }

  .blog-p1 .blog-art {
    font-size: 13px;
  }

  .blog-p2 {
    padding-top: 3%;
  }

  .blog-p2 .blog-img2 {
    width: 6vw;
  }

  .writer-name,
  .date {
    font-size: 13px;
  }

  /* blog lisings blog main2 */
  .blog-main2 {
    width: 80%;
  }
  #blog-li {
    margin-bottom: 10%;
  }

  .blog-srh-block {
    height: 15vh;
    width: 100%;
  }

  .blog-srch-inp {
    height: 5vh;
    width: 80%;
  }

  .blog-srch-btn {
    width: 50%;
  }

  /* list categories */

  .blog-cat {
    height: 45vh;
    width: 100%;
    padding-top: 0%;
    align-content: center;
  }

  .blog-cat-ctn {
    width: 85%;
  }

  .blog-cat header {
    font-size: 15px;
  }

  .blog-cat li {
    font-size: 13px;
  }

  /* featured listing */
  .blog-feat {
    width: 100%;
    height: 60vh;
    padding-top: 0%;
    align-content: center;
  }

  .blog-feat header {
    font-size: 15px;
    font-weight: 500;
  }

  .list-ctn {
    width: 90%;
  }

  .blog-feat-block {
    display: flex;
    margin-top: 5%;
  }

  .blog-feat-block img {
    max-width: 20vw;
    min-width: 10vw;
    align-content: center;
  }

  .room-dels {
    font-size: 13px;
  }

  .room-dels .apperance {
    margin-bottom: 8%;
  }

  .room-dels .price .mon {
    font-size: 13px;
  }

  .room-dels .propts {
    font-size: 13px;
  }

  /* blog tags */

  .blog-tag {
    height: 20vh;
    width: 100%;
  }

  .blog-tag header {
    font-size: 15px;
  }

  .tag-block span {
    font-size: 12px;
    margin-top: 3%;
  }
}

@media (max-width: 600px) {
  #sector1 {
    height: 50vh;
    width: 100%;
    margin-bottom: 10%;
  }


  .blog-ctn {
    height: 60vh;
    padding: 2%;
  }

  .blog-img {
    height: 30dvh;
  }

  .blog-img .contruct {
    font-size: 12px;
  }

  .blog-p1,
  .blog-p2 {
    padding: 0 1%;
  }

  .blog-p1 .blog-title {
    font-size: 12px;
  }

  .blog-p1 .blog-art {
    font-size: 12px;
    width: 95%;
  }

  .blog-p2 {
    padding-top: 3%;
  }

  .blog-p2 .blog-img2 {
    width: 10vw;
  }

  .writer-name,
  .date {
    font-size: 12px;
  }

  /* blog lisings blog main2 */
  .blog-main2 {
    width: 80%;
  }
  #blog-li {
    margin-bottom: 10%;
  }

  .blog-srh-block {
    height: 15vh;
  }

  .blog-srch-inp {
    height: 5vh;
    width: 80%;
  }

  .blog-srch-btn {
    width: 50%;
    margin-top: 5%;
    height: 4vh;
  }

  /* list categories */

  .blog-cat {
    height: 30vh;
  }

  .blog-cat header {
    font-size: 13px;
  }

  .blog-cat li {
    font-size: 12px;
  }

  /* featured listing */
  .blog-feat {
    height: 42vh;
  }

  .blog-feat header {
    font-size: 14px;
  }

  .list-ctn {
    width: 90%;
  }

  .blog-feat-block {
    display: flex;
    margin-top: 5%;
  }

  .blog-feat-block img {
    max-width: 20vw;
    min-width: 10vw;
  }

  .room-dels {
    font-size: 12px;
  }

  .room-dels .apperance {
    margin-bottom: 8%;
  }

  .room-dels .price .mon {
    font-size: 10px;
  }

  .room-dels .propts {
    font-size: 12px;
  }

  /* blog tags */

  .blog-tag {
    height: 18vh;
  }

  .blog-tag header {
    font-size: 14px;
  }

  .tag-block span {
    font-size: 12px;
  }
}
