.post-container {
  margin: 10rem 10rem;
  max-width: 1200px;
}
@media (min-width: calc(1200px + 20rem)) {
  .post-container {
    margin: 10rem auto;
  }
}
@media (max-width: 1280px) {
  .post-container {
    margin: 7.5rem 7.5rem;
  }
}
@media (max-width: 1024px) {
  .post-container {
    margin: 7.5rem 3.75rem;
  }
}
@media (max-width: 768px) {
  .post-container {
    margin: 7.5rem 5rem;
  }
}
@media (max-width: 640px) {
  .post-container {
    margin: 7.5rem 3rem;
  }
}
@media (max-width: 448px) {
  .post-container {
    margin: 5rem 1.25rem;
  }
}
.post-container h1 {
  margin-bottom: 0.5rem;
}
.post-container .subtitle {
  font-weight: 700;
}
.post-container .blocks {
  display: flex;
  flex-direction: column;
  margin: 2.5rem 0;
  align-items: flex-start;
}
.post-container .blocks .block-img {
  width: 100%;
  height: 400px;
  background: #D9D9D9;
  border-radius: 5px 5px 5px 0;
  overflow: hidden;
}
.post-container .blocks .block-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.post-container .subtitle {
  margin-bottom: 1rem;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1;
}
.post-container hr {
  width: 5rem;
  margin: 1rem 0;
  color: #3A6661;
  size: 2px;
  border: none;
  border-top: 3px solid #3A6661;
  border-radius: 10px;
}
.post-container .link {
  margin-top: 2.5rem;
  text-align: right;
}
.post-container .icons-service {
  display: flex;
  justify-content: start;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}
.post-container .icons-service .one-icon-service {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
  width: 90px;
}
.post-container .icons-service .one-icon-service img {
  max-width: 100%;
  height: 72px;
  object-fit: contain;
}
.post-container .icons-service .one-icon-service p {
  font-size: 0.75rem;
  text-align: center;
}
.post-container .icons-service.number img {
  margin-bottom: 0.5rem;
}
.post-container .icons-service.number .one-icon-service {
  width: 130px;
  gap: 0;
}
.post-container .icons-service.number .one-icon-service .number-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: #597588;
}
.post-container .icons-service.app-truck {
  margin-top: 2rem;
}
.post-container .icons-service.app-truck img {
  border-radius: 15px;
  transition: all 0.25s ease;
}
.post-container .icons-service.app-truck img:hover {
  cursor: pointer;
  scale: 1.02;
  box-shadow: 0 0 12.5px 0 rgba(0, 0, 0, 0.25);
}
.post-container .title-app-truck {
  margin-top: 3rem;
}
@media (max-width: 768px) {
  .post-container .blocks .block-text {
    width: 100%;
  }
  .post-container .blocks .block-img {
    border-radius: 5px 5px 0 0;
  }
}
.post-container .area-news {
  margin-top: 3rem;
}
.post-container .news {
  display: flex;
  align-items: start;
  width: 100%;
  transition: all 0.5s ease;
  gap: 2rem;
}
.post-container .news .article {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  width: 33.3333333333%;
  transition: all 0.25s ease;
}
.post-container .news .article .cover {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 5px;
  transition: box-shadow 0.25s ease;
  overflow: hidden;
}
.post-container .news .article .cover:hover {
  text-decoration: none;
}
.post-container .news .article .cover .overlay {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: end;
  justify-content: start;
  transition: background-color 0.25s ease;
}
.post-container .news .article .cover .overlay .date {
  padding: 0.125rem 0.5rem;
  color: #fff;
  background-color: #3A6661;
  border-radius: 1rem;
  font-size: 0.75rem;
  margin: 0.5rem;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.125);
}
.post-container .news .article:hover {
  cursor: pointer;
  transform: scale(105%);
}
.post-container .news .article:hover .cover {
  box-shadow: 0 0 12.5px 0 rgba(0, 0, 0, 0.25);
}
.post-container .news .article:hover a.link-text {
  text-shadow: 0 0 12.5px 0 rgba(0, 0, 0, 0.25);
}
.post-container .news .article a.link-text {
  font-weight: 500;
  font-size: 1.1rem;
  transition: all 0.25s ease;
}
.post-container .all-news {
  margin-top: 2rem;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}
@media (min-width: 2048px) {
  .post-container .news .article {
    margin: 3rem !important;
  }
}
@media (max-width: 1280px) {
  .post-container .news {
    margin: 2.5rem 0;
  }
}
@media (max-width: 768px) {
  .post-container .news {
    flex-direction: column;
  }
  .post-container .news .article {
    width: 100%;
  }
  .post-container .all-news {
    margin-top: 2rem;
  }
}
@media (max-width: 448px) {
  .post-container .all-news {
    margin-top: 1rem;
  }
}
.post-container .doleance-form {
  padding: 3rem;
  margin-top: 3rem;
  background-color: #3A6661;
  color: #fff;
  border-radius: 5px;
  text-align: center;
}
.post-container .doleance-form .container {
  margin: auto;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
.post-container .doleance-form .container .title-form {
  color: #fff;
}