button {
  background-color: #4462a1;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.btn-container {
  margin: 30px 0 0;
}
.btn-container--card {
  margin: 20px 0 10px;
}
.btn-container--start {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: stretch;
}
.btn-container--end {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: stretch;
}
.btn-container--center {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: stretch;
}
@media screen and (min-width: 1200px) {
  .btn-container.mt-big {
    margin-top: 50px;
  }
}
.btn-container--flex {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 30px;
}
@media screen and (min-width: 1200px) {
  .btn-container--flex {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
  }
}

.btn--main {
  text-decoration: none;
  display: inline-block;
  font-weight: 400;
  letter-spacing: 1px;
  font-size: 14px;
  padding: 12px 20px;
  cursor: pointer;
  transition: 0.4s all cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  z-index: 2;
  color: #92b5fd;
  border: 1px solid #92b5fd;
  background: transparent;
  border-radius: 25px;
}
.btn--main:hover {
  border: 1px solid transparent;
  color: #f9fafa;
  background: #92b5fd;
  border: 1px solid transparent;
}
.btn--main--color-primary {
  color: #4462a1;
  border: 1px solid #4462a1;
}
.btn--main--color-primary:hover {
  background: #4462a1;
  border: 1px solid #4462a1;
}
.btn--main--section-dark {
  color: #f9fafa;
  border: 1px solid #f9fafa;
}
.btn--main--section-dark:hover {
  background: #f9fafa;
  border: 1px solid #f9fafa;
  color: #2c2c2c;
}

.btn--hero {
  text-decoration: none;
  display: inline-block;
  border: 2px solid #4462a1;
  color: #4462a1;
  background: #f9fafa;
  padding: 5px 30px;
  border-radius: 5px;
  transition: 0.4s all cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.btn--hero:hover {
  box-shadow: 0 0 12px #4462a1;
}

main {
  padding: 50px 0;
}

.thumb-img {
  width: 100%;
  height: 500px;
  margin-bottom: 80px;
}

.post-section {
  padding: 0;
  margin: 0 0 80px 0;
}

@media screen and (min-width: 992px) {
  .post-flex-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
  }
}
@media screen and (min-width: 992px) {
  .post-flex-wrapper .text-area {
    width: 60%;
  }
}
.post-flex-wrapper .img-container {
  width: 100%;
  height: 100%;
  margin-bottom: 40px;
}
@media screen and (min-width: 992px) {
  .post-flex-wrapper .img-container {
    width: 35%;
    margin-bottom: 0;
  }
}

.heading--post {
  margin-bottom: 20px;
}

.photo-heading-redirect-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 20px 0;
}
@media screen and (min-width: 1200px) {
  .photo-heading-redirect-container {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
  }
}
.photo-heading-redirect-container .img-container {
  width: 300px;
  margin-bottom: 30px;
}
@media screen and (min-width: 1200px) {
  .photo-heading-redirect-container .img-container {
    width: 400px;
    height: 250px;
    margin-bottom: 0;
  }
}
.photo-heading-redirect-container .btn-container {
  margin-top: 30px;
}
@media screen and (min-width: 1200px) {
  .photo-heading-redirect-container .btn-container {
    margin-top: 0;
  }
}
.photo-heading-redirect-container h3 {
  color: #4462a1;
  font-size: 20px;
  font-weight: 500;
}

.custom-table-wrapper {
  display: flex;
  flex-direction: column;
  padding-bottom: 20px;
  margin: 30px 0 0;
}
@media screen and (min-width: 1200px) {
  .custom-table-wrapper {
    justify-content: center;
    align-items: center;
    margin: 50px 0 0;
  }
}
.custom-table-wrapper .values-container {
  display: flex;
  flex-shrink: 0;
}
.custom-table-wrapper .values-container .value {
  padding: 20px;
  border: 1px solid #ccc;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 200px;
  text-align: center;
  flex-shrink: 0;
  font-size: 14px;
}
.custom-table-wrapper .values-container .value-title {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
}
.custom-table-wrapper .values-container .item-name {
  font-size: 20px;
}

.scrollable-container {
  scrollbar-width: thin;
  scrollbar-color: gray transparent;
  overflow-x: auto;
}

.scrollable-container::-webkit-scrollbar {
  height: 4px;
}

.scrollable-container::-webkit-scrollbar-thumb {
  background: gray;
  border-radius: 10px;
}

.scrollable-container::-webkit-scrollbar-track {
  background: transparent;
}

p {
  margin-bottom: 30px;
}

.blog-content-wrapper ul {
  margin: 30px 0 30px 40px;
}
.blog-content-wrapper ul li {
  margin-bottom: 15px;
}

strong {
  font-weight: 500;
}/*# sourceMappingURL=post.css.map */