/* SELECTION START / НАЧАЛО ВЫБОРА */
.post_button {
    box-shadow: 0 5px 15px 0 rgba(0,0,0,0.2);
    border: none;
    background: #ffffff;
    transition: 0.2s;
    text-align: left;
    border-radius: 5px;
}

.post_button:hover {
    transform: translateY(-7px);
}

.active {
    background-color: #00a8fc3a;
    transition: translateY(-7px);
}

.padding_button {
    padding: 25px;
}

.post-wrap {
   max-width: 1120px;
   margin: 0 auto;
   display: flex;
   justify-content: center;
   flex-wrap: wrap;
}

.post-item {
   padding: 15px;
   cursor: pointer;
}

.post-item * {
   transition: .3s linear;
}

.item-content {
    border-radius: 5px;
    padding: 20px;
    transition: 0.2s;
}

.item-body {
   color: #00A6FC;
   font-size: 24px;
   width: 300px;
}

.item-body h3 {
    font-family: 'Geometria';
    font-weight: bold;
    margin-bottom: 15px;
    transition-delay: .05s;
    font-size: 36px;
}

.item-body p {
   transition-delay: .1s;
   color: #00171F;
   font-family: 'Geometria';
   font-weight: 600;
   font-size: 24px;
}

.link {
   text-decoration: none;
   display: inline-block;
   overflow: hidden;
   position: relative;
   padding-right: 30px;
   color: #00A6FC;

   font-family: 'Geometria';
   font-size: 18px;
   text-transform: uppercase;
   font-weight: 600;
}


.link span {
   display: inline-block;
   position: relative;
   transition: .6s cubic-bezier(.6, .01, 0, 1);
}


@media (min-width: 768px) {
   .post-item {
      flex-basis: 50%;
      flex-shrink: 0;
   }
}
@media (min-width: 960px) {
   .post-item {
      flex-basis: 33.333333333%;
   }
}


.flex {
    display: flex;
    flex-direction: row;
    text-align: center;
    align-items: center;
}

.container2 {
	padding: 10px 0px;

}
  
.flex_button {
    display: flex;
    flex-direction: row;
    text-align: center;
    align-items: center;
    margin-top: 25px;
}
/* SELECTION END / КОНЕЦ ВЫБОРА */