
#menu-btn-blog .dot {
  opacity: 1;
}

header .header-margin {
  width: 100%;
  height: 30vh;
  max-height: 300px;
}

header .query{
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#query-input {
  width: 100%;
  font-weight: 900;
  font-size: 30pt;
  line-height: 120%;
  background-color: unset;
  display: block;
  flex: 1;
}

#query-input:hover, #query-input:focus, #query-input.focus {
  outline: solid 3px var(--th);
}

header .count {
  font-size: 15pt;
  font-weight: 800;
  line-height: 120%;
  display: block;
  text-align: right;
}

#articles {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 7.5px 7.5px 7.5px 7.5px;
  margin-bottom: 90px;
  transition: all 0s;
}
#articles article {
  width: calc(25% - 18.75px);
  height: auto;
  min-height: 180px;
  padding: 7.5px 7.5px 7.5px 7.5px;
  transition: all 0s;
  position: relative;
}
@media (min-width:2100px) {
  #articles article {
    width: calc(20% - 18px);
  }
}
@media (max-width:1200px) {
  #articles article {
    width: calc(33.333% - 20px);
  }
}
@media (max-width:600px) {
  #articles article {
    width: calc(50% - 22.5px);
  }
}
#articles article .image {
  width: 100%;
  margin: 0 auto;
  display: flex;
}
#articles article .image img {
  max-width: 100%;
  object-fit: cover;
  /*box-shadow: 0px 0px 60px 0px rgba(0, 0, 0, 0.3);*/
}
#articles article .text {
  position: absolute;
  bottom: 15px;
  right: 20px;
}
#articles article .text .title {
  font-size: 16pt;
  font-weight: 700;
  text-align: right;
  line-height: 150%;
}
#articles article .text .info {
  font-size: 14pt;
  font-weight: 400;
  text-align: right;
  line-height: 150%;
}

main#list {
  padding-top: 90px;
  padding-bottom: 90px;
}

main#list ul {
  margin: 0;
  padding: 0;
}

main#list li {
  margin: 0;
  padding: 0;
  list-style: none;
  height: 45px;
}

main#list li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  width: 100%;
}

main#list li a h3 {
  font-size: 15pt;
  font-weight: 800;
  line-height: 45px;
}

main#list li a:hover h3{
  text-decoration: underline;
  color: var(--th);
}

main#list li a .dot {
  width: 10px;
  height: 10px;
  border-radius: 100px;
  background-color: var(--gray-180);
}

main#list li a:hover .dot{
  background-color: var(--th);
}

section#pages {
  border-top: solid 1px var(--gray-230);
  padding-top: 90px;
  padding-bottom: 90px;
}

section#pages .inwrapper {
  display: flex;
  justify-content: space-between;
  font-size: 16pt;
}

section#pages .pages {
  width: 300px;
  display: flex;
  justify-content: space-between;
}

section#pages .pages .c span {
  color: var(--th);
}

section#pages .pages .gotopage {
  flex: 1;
  text-align: center;
}

section#pages .less, section#pages .more {
  margin-right: 20px;
}

section#pages .less.disabled span, section#pages .more.disabled span{
  color: var(--gray-150);
  cursor: not-allowed;
}

@media (max-width:840px) {

  #query-input {
    font-size: 22pt;
  }

  header .count {
    font-size: 12pt;
  }

}

@media (max-width:500px) {

  #query-input {
    font-size: 16pt;
  }

  header .count {
    font-size: 11pt;
  }

}