/* Общие CSS-стили */
*, *:after, *:before {
   box-sizing: border-box;
   padding: 0;
   margin: 0;
   transition: .5s ease-in-out;
   /* добавим плавность переходов для всех элементов страницы */
}
ul {
   list-style: none;
}
a {
   text-decoration: none;
   outline: none;
}
img {
   display: block;
}

h1, h2, h3, h4, h5, h6 {
   font-family: 'Playfair Display';
   font-weight: bolder;
   letter-spacing: 0px;
}
h3:hover {
    color: #ccc;
}
p {
    text-align: justify
}

body {
   font-family: 'Open Sans', arial, sans-serif;
   font-size: 18px;
   font-weight: bolder;
   line-height: 1;
   color: #373737;
   background: #0096FF;
}
/* добавим очистку потока для всех контейнеров, внутри которых задано обтекание дочерних элементов */
header:after, .container:after, footer:after, .widget-posts-list li:after, #subscribe:after {
   content: "";
   display: table;
   clear: both;
}
/* стилевой класс, который управляет шириной контейнера сетки*/
.container {
   margin: 0 auto;
   width: 100%;
   max-width: 1200px;
   padding: 0 15px;
}
.scale {
    display: inline-block; /* Строчно-блочный элемент */
    overflow: hidden; /* Скрываем всё за контуром */
    padding: 0% 0% 0% 2.0%;
    text-align: center;
    color: #373737;
}
.scale img {
    transition: 1s; /* Время эффекта */
    display: block; /* Убираем небольшой отступ снизу */
}
.scale img:hover {
    /*transform: scale(1.2); /* Увеличиваем масштаб */
    transform: rotate(-150deg);
    -ms-transform: rotate(-150deg);
    -webkit-transform: rotate(-150deg);
    transition: 1s ease-in-out;
}

hr {
    height: 20px;
    margin: 30px auto;
    width: 100%;
    background-image: radial-gradient(farthest-side at 50% -50%, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
    position: relative;
    border: none;
}
hr:before {
    height: 1px;
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    background-image: linear-gradient(90deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.75) 50%, rgba(0, 0, 0, 0));
}
#cookie_notification{
  display: none;
  z-index: 999;
  justify-content: space-between;
  align-items: flex-end;
  position: fixed;
  bottom: 15px;
  left: 50%;
  width: 900px;
  max-width: 90%;
  transform: translateX(-50%);
  padding: 25px;
  background-color: rgba(255, 255, 255, 0.7);
  border-radius: 4px;
  box-shadow: 2px 3px 10px rgba(0, 0, 0, 0.4);
}
#cookie_notification button{
  display: inline-block;
  box-sizing: border-box;
  padding: 0 20px;
  margin: 10px;
  outline: none;
  border: none;
  border-radius: 4px;
  height: 32px;
  line-height: 32px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  color: #fff;
  background-color: #ff6633;
  box-shadow: 0 2px #21487f;
  cursor: pointer;
}
#cookie_notification button:hover{
  opacity: 0.5;
}
#cookie_notification p{
  margin: 0;
  font-size: 0.9rem;
  text-align: left;
  color: black;
}
@media (min-width: 576px){
  #cookie_notification.show{
    display: flex;
  }
  .cookie_accept{
    margin: 0 0 0 25px;
  }
}
@media (max-width: 575px){
  #cookie_notification.show{
    display: block;
    text-align: left;
  }
  .cookie_accept{
    margin: 10px 0 0 0;
  }
}