:root {
  /* Typography */
  --font-pri: "Proxima Nova", sans-serif;
  /* Color Palette */
  --color-pri: #1d90c9;
  --color-sec: #001221;
  --color-third: #3b4044;
  --color-text: #888888;
  --color-text-2: #005491;
  --color-white: #fff;
  --color-black: #000;
  --container-width: 124.8rem;
  --container-padding: 1.6rem;
  --z-i-header: 100;
}

.article-item {
  gap: 3.2rem;
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 1201px) {
  .article-item:hover .img img {
    transform: translate(-50%, -50%) scale(1.05);
  }
}
@media screen and (max-width: 1024px) {
  .article-item {
    gap: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .article-item {
    gap: 1.2rem;
  }
}

.article-img .img {
  display: block;
  overflow: hidden;
  position: relative;
  border-radius: 1.6rem;
  padding-top: 72.9166666667%;
}
.article-img .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 50%;
  left: 50%;
  position: absolute;
  transform: translate(-50%, -50%);
  transition: 0.4s ease;
}

.article-content {
  gap: 2.4rem;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 1024px) {
  .article-content {
    gap: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .article-content {
    gap: 1.2rem;
  }
}

.article-title {
  font-size: 2rem;
}
@media only screen and (max-width: 1200px) {
  .article-title {
    font-size: 1.8rem;
  }
}
@media only screen and (max-width: 800px) {
  .article-title {
    font-size: 1.6rem;
  }
}
.article-title {
  color: #082823;
  font-weight: 700;
  line-height: 120%;
  transition: 0.4s ease;
  letter-spacing: -0.04rem;
  text-transform: capitalize;
}
@media screen and (min-width: 1201px) {
  .article-title:hover {
    color: var(--color-pri);
  }
}
@media screen and (max-width: 576px) {
  .article-title {
    font-size: 1.4rem;
  }
}

.article-desc {
  color: #667085;
  line-height: 160%;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  letter-spacing: -0.032rem;
}
@media screen and (max-width: 576px) {
  .article-desc {
    font-size: 1.2rem;
  }
}

.src {
  gap: 4rem;
  display: flex;
  flex-direction: column;
}
.src .title-48 {
  font-size: 4.8rem;
}
@media only screen and (max-width: 1200px) {
  .src .title-48 {
    font-size: 4.2rem;
  }
}
@media only screen and (max-width: 800px) {
  .src .title-48 {
    font-size: 2.6rem;
  }
}
.src .title-48 {
  font-weight: 600;
  color: var(--color-pri);
  text-align: center;
  letter-spacing: -0.096rem;
  text-transform: uppercase;
}
.src-form .form-wrap {
  gap: 1.6rem;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .src-form .form-wrap {
    flex-direction: unset;
  }
}
.src-form .form-group {
  flex: 1;
}
@media screen and (max-width: 767px) {
  .src-form .form-group {
    width: 100%;
  }
}
@media screen and (min-width: 992px) {
  .src-form .form-search {
    min-width: 63rem;
  }
}
@media screen and (min-width: 992px) and (max-width: 1200px) {
  .src-form .form-search {
    min-width: 50rem;
  }
}
.src-form .form-search .form-label {
  gap: 3.2rem;
  border-radius: 0.8rem;
  display: flex;
  align-items: center;
  padding: 0.8rem 2.4rem;
  border: 0.1rem solid rgba(0, 0, 0, 0.08);
}
@media screen and (max-width: 767px) {
  .src-form .form-search .form-label {
    padding: 0.8rem 1.2rem 0.8rem 1.5rem;
  }
}
.src-form .form-search input {
  border: 0;
  padding: 0;
  border-radius: 0;
}
.src-form .form-search button {
  flex-shrink: 0;
  user-select: none;
  width: 2rem;
  height: 2rem;
}
.src-form .form-search button img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.src-form .form-select:after {
  right: 1.2rem;
}
.src-form .form-action {
  text-align: right;
  min-width: 10.5rem;
}
@media screen and (max-width: 767px) {
  .src-form .form-action {
    margin-top: 1.6rem;
  }
}
.src-form input,
.src-form select {
  border-radius: 0.8rem;
  background-color: transparent;
}
.src-form select {
  border: 0.1rem solid rgba(0, 0, 0, 0.08);
}

.post {
  margin: 6rem 0rem 10rem;
}
@media screen and (max-width: 992px) {
  .post {
    margin: 6rem 0rem;
  }
}
@media screen and (max-width: 576px) {
  .post {
    margin: 4rem 0rem;
  }
}
.post-wrap {
  gap: 6rem;
}
@media screen and (max-width: 1024px) {
  .post-wrap {
    gap: 4rem;
  }
}
@media screen and (max-width: 767px) {
  .post-wrap {
    gap: 2.4rem;
  }
}
.post-heading .title-64 {
  font-size: 6.4rem;
}
@media only screen and (max-width: 1200px) {
  .post-heading .title-64 {
    font-size: 3.9rem;
  }
}
@media only screen and (max-width: 800px) {
  .post-heading .title-64 {
    font-size: 2.9rem;
  }
}
.post-heading .title-64 {
  font-weight: 500;
  color: var(--color-sec);
  line-height: 130%;
  letter-spacing: -0.128rem;
}
@media screen and (max-width: 1024px) {
  .post-col {
    width: 100%;
  }
}
.post-col:first-child .article-img .img {
  padding-top: 54.8696844993%;
}
.post-col:first-child .article-title {
  font-size: 2.4rem;
}
@media only screen and (max-width: 1200px) {
  .post-col:first-child .article-title {
    font-size: 2.2rem;
  }
}
@media only screen and (max-width: 800px) {
  .post-col:first-child .article-title {
    font-size: 1.8rem;
  }
}
.post-col:first-child .article-desc {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-clamp: 3;
  -webkit-line-clamp: 3;
}
@media screen and (min-width: 1025px) {
  .post-col:last-child .article-item {
    gap: 1.6rem;
    align-items: center;
    flex-direction: unset;
  }
  .post-col:last-child .article-img {
    width: 100%;
    flex-shrink: 0;
    max-width: 12.5rem;
  }
  .post-col:last-child .article-title {
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 1025px) {
  .post-col:last-child .article-desc {
    display: none;
  }
}
.post-swiper {
  position: relative;
}
@media screen and (max-width: 1024px) {
  .post-swiper .swiper {
    margin: 0 -0.8rem;
  }
}
@media screen and (min-width: 1025px) {
  .post-swiper .swiper-wrapper {
    gap: 1.6rem;
    flex-wrap: wrap;
    transform: unset !important;
  }
}
.post-swiper .swiper-slide {
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .post-swiper .swiper-slide {
    padding: 0 0.8rem;
    width: 33.3333333333%;
  }
}
@media screen and (max-width: 767px) {
  .post-swiper .swiper-slide {
    width: 50%;
  }
}
@media screen and (max-width: 576px) {
  .post-swiper .swiper-slide {
    width: 83.3333333333%;
  }
}

.blog {
  margin: 10rem 0rem 0;
}
@media screen and (max-width: 992px) {
  .blog {
    margin: 6rem 0rem;
  }
}
@media screen and (max-width: 576px) {
  .blog {
    margin: 4rem 0rem;
  }
}
.blog-wrap {
  gap: 4rem;
  display: flex;
  flex-direction: column;
}
.blog-inner {
  gap: 4rem;
  display: flex;
  flex-direction: column;
  --letter-spacing: 1.6rem;
}
@media screen and (max-width: 1200px) {
  .blog-inner {
    --letter-spacing: 0.8rem;
  }
}
@media screen and (max-width: 576px) {
  .blog-inner {
    --letter-spacing: 0.4rem;
  }
}
.blog-list {
  display: flex;
  flex-wrap: wrap;
  row-gap: 4.8rem;
  margin: 0 calc(-1 * var(--letter-spacing));
}
@media screen and (max-width: 1200px) {
  .blog-list {
    row-gap: calc(2 * var(--letter-spacing));
  }
}
.blog-item {
  width: 33.3333333333%;
  padding: 0 var(--letter-spacing);
}
@media screen and (max-width: 767px) {
  .blog-item {
    width: 50%;
  }
}

.p-post {
  margin: 0;
}
/*# sourceMappingURL=post.css.map */
