.anch a:hover{
		text-decoration: underline!important;
	}
.news-3-col {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  grid-gap: 30px;
}

@media (min-width: 768px) {
  .news-3-col {
    -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1200px) {
  .news-3-col {
    -ms-grid-columns: 1fr 1fr 1fr;
        grid-template-columns: 1fr 1fr 1fr;
  }
}

.news-4-col {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  grid-gap: 30px;
}

@media (min-width: 768px) {
  .news-4-col {
    -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1200px) {
  .news-4-col {
    -ms-grid-columns: 1fr 1fr 1fr 1fr;
        grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}


.blog-card {
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  border-radius: 15px;
}

.blog-card__inner {
  overflow: hidden;
  border-radius: 15px;
}

.blog-card__image {
  overflow: hidden;
  position: relative;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  background-color: var(--thm-black);
}

.blog-card__image > img {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
  width: 100%;
  -webkit-transition: opacity 500ms ease, -webkit-transform 500ms ease;
  transition: opacity 500ms ease, -webkit-transform 500ms ease;
  transition: transform 500ms ease, opacity 500ms ease;
  transition: transform 500ms ease, opacity 500ms ease, -webkit-transform 500ms ease;
}

.blog-card:hover {
  -webkit-box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.1);
}

.blog-card:hover .blog-card__image > img {
  opacity: 0.6;
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.blog-card__date {
  width: 78px;
  height: 70px;
  background-color: var(--thm-primary);
  position: absolute;
  bottom: 0;
  right: 20px;
  color: #fff;
  font-size: 16px;
  line-height: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  border-top-left-radius: 39px;
  border-top-right-radius: 39px;
  font-weight: 600;
  padding-left: 20px;
  padding-right: 20px;
}

.blog-card__content {
  border: 1px solid #fff;
  border-radius: 15px;
  border-top: 0;
  -webkit-transition: 500ms ease;
  transition: 500ms ease;
  text-align: center;
}

.blog-card__content p {
  margin: 0;
  margin-bottom: 30px;
}

@media (max-width: 575px) {
  .blog-card__content p {
    width: 100%;
    max-width: 270px;
    margin-left: auto;
    margin-right: auto;
  }
}

.blog-card__content h3 {
  margin: 0;
  font-weight: 700;
  color: var(--thm-black);
  font-size: 22px;
  padding-left: 20px;
  padding-right: 20px;
  margin-bottom: 20px;
}

@media (min-width: 768px) {
  .blog-card__content h3 {
    font-size: 24px;
    margin-bottom: 35px;
    padding-left: 35px;
    padding-right: 35px;
  }
}

.blog-card__content h3 a {
  color: inherit;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.blog-card__content h3 a:hover {
  color: var(--thm-base);
}

.blog-card:hover .blog-card__content {
  border-color: #e4e4e4;
}

.blog-card__more {
  background-color: #f1f1f1;
  border-bottom-right-radius: 15px;
  border-bottom-left-radius: 15px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  font-size: 16px;
  color: #7e7e7e;
  border-top: 1px solid #f1f1f1;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  font-weight: 500;
  line-height: 64px;
}

.blog-card__more > i {
  margin-right: 10px;
}

.blog-card:hover .blog-card__more {
  color: var(--thm-secondary);
  background-color: #fff;
  border-top-color: #e4e4e4;
}

.blog-card__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 30px;
  margin-bottom: 7px;
}

.blog-card__meta a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 16px;
  color: #7e7e7e;
  font-weight: 500;
  -webkit-transition: 500ms ease;
  transition: 500ms ease;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.blog-card__meta a + a {
  margin-left: 20px;
}

.blog-card__meta a:hover {
  color: var(--thm-base);
}

.blog-card__meta a:hover > i {
  color: var(--thm-black);
}

.blog-card__meta a i {
  margin-right: 5px;
  -webkit-transition: 500ms ease;
  transition: 500ms ease;
  color: var(--thm-base);
}

.news__top {
  position: relative;
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: cover;
  padding-bottom: 336px;
  margin-bottom: -276px;
}

.news__top::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #f1f1f1;
  opacity: 0.95;
}

.news__top .container {
  position: relative;
}

.news-home .block-title {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Common
--------------------------------------------------------------*/