﻿/* #region colors */
/* #endregion colors */
/* #region breakpoints */
/* #endregion breakpoints */
/* #region media queries for new mockups */
/* #endregion media queries for new mockups */
@keyframes fadein {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }

@keyframes spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg); } }

.blogposts {
  display: grid;
  max-width: 1280px;
  margin: 0 auto;
  row-gap: 25px; }
  @media only screen and (min-width: 1024px) {
    .blogposts {
      grid-template-columns: 1fr 1fr 1fr;
      column-gap: 40px; } }
  @media only screen and (min-width: 768px) and (max-width: 1023px) {
    .blogposts {
      grid-template-columns: 1fr 1fr;
      column-gap: 30px; } }
  @media only screen and (max-width: 767px) {
    .blogposts {
      grid-template-columns: 1fr; } }
  .blogposts .blogpost-item .blogpost-image {
    border-radius: 8px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    display: block;
    margin-bottom: 10px; }
    @media only screen and (min-width: 1280px) {
      .blogposts .blogpost-item .blogpost-image {
        height: 225px; } }
    @media only screen and (min-width: 1024px) and (max-width: 1279px) {
      .blogposts .blogpost-item .blogpost-image {
        height: 200px; } }
    @media only screen and (min-width: 768px) and (max-width: 1023px) {
      .blogposts .blogpost-item .blogpost-image {
        padding-bottom: 62.31454%; } }
    @media only screen and (max-width: 767px) {
      .blogposts .blogpost-item .blogpost-image {
        padding-bottom: 65.59767%; } }
  .blogposts .blogpost-item .blogpost-title {
    margin-bottom: 10px; }
    @media only screen and (max-width: 767px) {
      .blogposts .blogpost-item .blogpost-title {
        font-size: 20px;
        font-weight: 700;
        line-height: 27px; } }
    .blogposts .blogpost-item .blogpost-title a {
      text-decoration: none;
      cursor: pointer;
      color: inherit; }
      .blogposts .blogpost-item .blogpost-title a:hover, .blogposts .blogpost-item .blogpost-title a:focus, .blogposts .blogpost-item .blogpost-title a:active {
        color: #FF7A00; }
  .blogposts .blogpost-item .blogpost-description {
    font-family: Roboto;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0em; }
    @media only screen and (max-width: 767px) {
      .blogposts .blogpost-item .blogpost-description {
        line-height: 22px; } }
    .blogposts .blogpost-item .blogpost-description a {
      text-decoration: none;
      cursor: pointer;
      color: inherit; }
      .blogposts .blogpost-item .blogpost-description a:hover, .blogposts .blogpost-item .blogpost-description a:focus, .blogposts .blogpost-item .blogpost-description a:active {
        color: #FF7A00; }
  .blogposts .blogpost-item .blogpost-create-date {
    color: #999999;
    font-family: Roboto;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0em;
    text-align: left;
    margin-bottom: 10px; }
    .blogposts .blogpost-item .blogpost-create-date a {
      text-decoration: none;
      color: inherit; }
      .blogposts .blogpost-item .blogpost-create-date a:active {
        color: inherit; }
      .blogposts .blogpost-item .blogpost-create-date a:hover {
        color: inherit; }

.page-loader {
  background-image: url("../../images/load.png");
  background-size: 100%;
  background-repeat: no-repeat;
  animation: spin 2s linear infinite; }
  @media only screen and (min-width: 768px) {
    .page-loader {
      margin: 55px auto 0;
      width: 30px;
      height: 30px; } }
  @media only screen and (max-width: 767px) {
    .page-loader {
      margin: 40px auto 0;
      width: 36px;
      height: 36px; } }
