.header-image-main{
    max-height: 60vh;
    object-fit: cover;
    object-position: 50% 0%;
}

.header-image-main-center{
  max-height: 60vh;
  object-fit: cover;
  object-position: 50% 50%;
}

.fullwidth{
    width: 100%;
}

  .article-row {
    display: flex;
    margin-top: 25px;
    margin-bottom: 25px;
  }

  
  @media only screen and (max-width: 900px) {
    .article-row {
      flex-wrap: wrap;
    }

    .article-text-margin{
      margin-left: 10px !important;
    }

  }
  
  .article-column-img {
    flex: 40%;
  }

  .article-column-text {
    flex: 60%;
  }

  .article-text-margin{
      margin-left: 40px;
  }

  .opacity-effect:hover{
    opacity: 0.8;
  }

  .shadow-effect:hover{
    box-shadow: 5px 5px 5px grey;
  }

  .blog-article{
      margin-bottom: 50px;
  }

  .blog-article hr{
    border: 1px solid #b2bec3;
  }

  .blog-article a {
    color: black;
    text-decoration: none; /* no underline */
  }

  .article-details{
      font-size: 1.0rem;
      font-style: italic;
  }

  .article-header{
      padding-bottom: 0px;
      margin-bottom: 0px;
      margin-top: 5px;
  }

  .article-text{
      padding-bottom: 15px;
  }

  .article-button{
      background-color: #2980b9;
      color: whitesmoke;

      padding-top: 10px;
      padding-bottom: 10px;
      padding-left: 30px;
      padding-right: 30px;
      font-weight: bold;
  }

  .article-button:hover{
    background-color: #000000;
    color: white;
}

.article-button-red{
  background-color: #c0392b;
  color: whitesmoke;

  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 30px;
  padding-right: 30px;
  font-weight: bold;
}

.article-button-red:hover{
background-color: #000000;
color: white;
}

.button-transition{
  transition-property: color, background-color;
  transition-duration: 0.8s, 0.8s;
  transition-timing-function: ease;
  transition-delay: 0s, 0s;
}

.button-space{
  margin-bottom: 30px;
}

.opinion{
  background-color: #ecf0f1;
  padding: 20px;
  border: 1px solid #7f8c8d;
  border-radius: 10px;
  box-shadow: 4px 4px 3px grey;
  max-width: 100%;
  margin-bottom: 50px;
}

.opinion-icon-image{
  width: 100px;
  height: 100px;
  object-fit: cover;
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 4px 4px 3px grey;
  display: inline-block;
  vertical-align: middle;
}

.display-inline-block{
  display: inline-block;
  margin-left: 20px;
  vertical-align: middle;
}

.display-table{
  display: table;
  margin: 0px 0px;
}

.opinion-header{
  margin: 0px 0px 5px 0px;
}

.article-footer-text{
  font-size: 0.85rem;
  margin-right: 15px;
}

.margin-box{
  margin: 20px;
}

.margin-right-button{
  margin-right: 30px;
}

.margin-right-button-article{
  margin-right: 10px;
}

.no-underline{
  text-decoration: none;
}

.cursor-pointer{
  cursor: pointer;
}

.date-text{
  font-size: 0.8rem;
  margin-left: 10px;
}

.hiddenElm {display:none;}

.showElm {display:block;}