@charset "UTF-8";
/* -------------------------------------------------------------
  Sass CSS3 Mixins! The Cross-Browser CSS3 Sass Library
  By: Matthieu Aussaguel, http://www.mynameismatthieu.com, @matthieu_tweets

  List of CSS3 Sass Mixins File to be @imported and @included as you need

  The purpose of this library is to facilitate the use of CSS3 on different browsers avoiding HARD TO READ and NEVER
  ENDING css files

  note: All CSS3 Properties are being supported by Safari 5
  more info: http://www.findmebyip.com/litmus/#css3-properties

------------------------------------------------------------- */
.single-career .site-content {
  padding-bottom: 0 !important;
}

.section_banner_swiper {
  width: 100vw !important;
  margin-left: calc(-50vw + 50%) !important;
  margin-right: calc(-50vw + 50%) !important;
  left: 0 !important;
  max-width: 100vw !important;
}
.section_banner_swiper .bannerSwiper .swiper-slide {
  aspect-ratio: 1920/830;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  max-height: 830px;
}
@media (max-width: 1920px) {
  .section_banner_swiper .bannerSwiper .swiper-slide {
    max-height: unset;
  }
}
@media (max-width: 1400px) {
  .section_banner_swiper .bannerSwiper .swiper-slide {
    aspect-ratio: 1400/830;
  }
}
@media (max-width: 1023px) {
  .section_banner_swiper .bannerSwiper .swiper-slide {
    aspect-ratio: 1023/798;
  }
}
@media (max-width: 767px) {
  .section_banner_swiper .bannerSwiper .swiper-slide {
    aspect-ratio: 767/788;
  }
}
.section_banner_swiper .bannerSwiper .swiper-slide.swiper-slide-active .thumbnail_banner img {
  transform: scale(1);
}
.section_banner_swiper .bannerSwiper .swiper-slide.swiper-slide-active .wraper_details .text_banner {
  opacity: 1;
  transform: translateX(0);
  animation: fadeThenSlide 2s cubic-bezier(0.15, 0.22, 0.2, 1) forwards;
}
.section_banner_swiper .bannerSwiper .swiper-slide.swiper-slide-active .wraper_details .box_btn_banner {
  transform: translateY(0);
}
.section_banner_swiper .bannerSwiper .swiper-slide .thumbnail_banner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.section_banner_swiper .bannerSwiper .swiper-slide .thumbnail_banner::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}
.section_banner_swiper .bannerSwiper .swiper-slide .thumbnail_banner img {
  aspect-ratio: 1920/830;
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: 830px;
  transform: scale(1.2);
  transition: all 15s ease-in-out;
}
@media (max-width: 1400px) {
  .section_banner_swiper .bannerSwiper .swiper-slide .thumbnail_banner img {
    aspect-ratio: 1400/830;
  }
}
@media (max-width: 1023px) {
  .section_banner_swiper .bannerSwiper .swiper-slide .thumbnail_banner img {
    aspect-ratio: 1023/798;
  }
}
@media (max-width: 767px) {
  .section_banner_swiper .bannerSwiper .swiper-slide .thumbnail_banner img {
    aspect-ratio: 767/788;
  }
}
@media (max-width: 1599px) {
  .section_banner_swiper .bannerSwiper .swiper-slide .container {
    max-width: 1200px !important;
  }
}
@media (max-width: 1400px) {
  .section_banner_swiper .bannerSwiper .swiper-slide .container {
    max-width: 900px !important;
  }
}
@media (max-width: 1023px) {
  .section_banner_swiper .bannerSwiper .swiper-slide .container {
    padding: 0;
    max-width: 100% !important;
  }
}
.section_banner_swiper .bannerSwiper .swiper-slide .wraper_details {
  position: relative;
  z-index: 2;
  width: 100%;
  overflow: hidden;
}
@media (max-width: 1023px) {
  .section_banner_swiper .bannerSwiper .swiper-slide .wraper_details {
    text-align: center;
  }
}
.section_banner_swiper .bannerSwiper .swiper-slide .wraper_details .text_banner {
  font-size: 80px;
  margin-bottom: 40px;
  font-weight: bold;
  color: white;
  line-height: 1.375;
  transform: translateX(100%);
  opacity: 0;
  transition: opacity 1s cubic-bezier(0.15, 0.22, 0.2, 1);
}
@media (max-width: 1920px) {
  .section_banner_swiper .bannerSwiper .swiper-slide .wraper_details .text_banner {
    font-size: 4.1666666667vw;
  }
}
@media (max-width: 1023px) {
  .section_banner_swiper .bannerSwiper .swiper-slide .wraper_details .text_banner {
    font-size: 8.7890625vw;
  }
}
@media (max-width: 767px) {
  .section_banner_swiper .bannerSwiper .swiper-slide .wraper_details .text_banner {
    font-size: 6.9100391134vw;
  }
}
.section_banner_swiper .bannerSwiper .swiper-slide .wraper_details .text_banner p {
  margin: 0;
}
.section_banner_swiper .bannerSwiper .swiper-slide .wraper_details .box_btn_banner {
  transform: translateY(150%);
  transition: all 1s cubic-bezier(0.15, 0.22, 0.2, 1);
}

.btn.btn_c_outline {
  display: block;
  max-width: 130px;
  width: 100%;
  font-size: 14px;
  border: 1px solid white;
  background: transparent;
  padding: 10px 20px;
  color: white;
}
@media (max-width: 1023px) {
  .btn.btn_c_outline {
    margin: 0 auto;
  }
}
.btn.btn_c_outline.bg_red {
  border-color: #d31316;
  background-color: #d31316;
  color: white;
}
.btn.btn_c_outline i {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.section_content_swiper .contentSwiper .swiper-slide {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.section_content_swiper .contentSwiper .swiper-slide.swiper-slide-active .thumbnail_content_banner .img-wrap::after {
  animation: progress-slide 2s cubic-bezier(0.15, 0.22, 0.2, 1) forwards;
}
.section_content_swiper .contentSwiper .swiper-slide.swiper-slide-active .wraper_content_details {
  opacity: 1;
  transform: translate(0, -50%);
  transition: all 1.5s cubic-bezier(0.15, 0.22, 0.2, 1);
}
.section_content_swiper .contentSwiper .swiper-slide .thumbnail_content_banner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}
.section_content_swiper .contentSwiper .swiper-slide .thumbnail_content_banner .img-wrap {
  position: relative;
  flex: 0 0 100%;
  padding-right: 255px;
}
@media (max-width: 1200px) {
  .section_content_swiper .contentSwiper .swiper-slide .thumbnail_content_banner .img-wrap {
    padding-right: 195px;
  }
}
@media (max-width: 1023px) {
  .section_content_swiper .contentSwiper .swiper-slide .thumbnail_content_banner .img-wrap {
    padding-right: 140px;
  }
}
@media (max-width: 991px) {
  .section_content_swiper .contentSwiper .swiper-slide .thumbnail_content_banner .img-wrap {
    padding-right: 100px;
  }
}
@media (max-width: 767px) {
  .section_content_swiper .contentSwiper .swiper-slide .thumbnail_content_banner .img-wrap {
    padding-right: 0;
  }
}
.section_content_swiper .contentSwiper .swiper-slide .thumbnail_content_banner .img-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: calc(100% - 255px);
  background: #d31316;
  transform: scaleX(0);
  transform-origin: left;
  z-index: 1;
  opacity: 1;
}
@media (max-width: 1200px) {
  .section_content_swiper .contentSwiper .swiper-slide .thumbnail_content_banner .img-wrap::after {
    width: calc(100% - 195px);
  }
}
@media (max-width: 1023px) {
  .section_content_swiper .contentSwiper .swiper-slide .thumbnail_content_banner .img-wrap::after {
    width: calc(100% - 140px);
  }
}
@media (max-width: 991px) {
  .section_content_swiper .contentSwiper .swiper-slide .thumbnail_content_banner .img-wrap::after {
    width: calc(100% - 100px);
  }
}
@media (max-width: 767px) {
  .section_content_swiper .contentSwiper .swiper-slide .thumbnail_content_banner .img-wrap::after {
    width: 100%;
  }
}
.section_content_swiper .contentSwiper .swiper-slide .thumbnail_content_banner .img-wrap img {
  aspect-ratio: 884/660;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 991px) {
  .section_content_swiper .contentSwiper .swiper-slide .thumbnail_content_banner .img-wrap img {
    aspect-ratio: 537/474;
  }
}
@media (max-width: 479px) {
  .section_content_swiper .contentSwiper .swiper-slide .thumbnail_content_banner .img-wrap img {
    aspect-ratio: 429/614;
  }
}
.section_content_swiper .contentSwiper .swiper-slide .wraper_content_details {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(100%, -50%);
  padding: 50px;
  background-color: white;
  width: 460px;
  color: black;
  opacity: 0;
  z-index: 2;
  clip-path: polygon(20px 0, 100% 0, 100% 100%, 0 100%, 0 20px);
}
@media (max-width: 1200px) {
  .section_content_swiper .contentSwiper .swiper-slide .wraper_content_details {
    width: 355px;
  }
}
@media (max-width: 1023px) {
  .section_content_swiper .contentSwiper .swiper-slide .wraper_content_details {
    width: 446px;
  }
}
@media (max-width: 1023px) {
  .section_content_swiper .contentSwiper .swiper-slide .wraper_content_details {
    width: 446px;
  }
}
@media (max-width: 991px) {
  .section_content_swiper .contentSwiper .swiper-slide .wraper_content_details {
    width: 325px;
    padding: 25px;
  }
}
@media (max-width: 479px) {
  .section_content_swiper .contentSwiper .swiper-slide .wraper_content_details {
    width: calc(100% - 50px);
  }
}
.section_content_swiper .contentSwiper .swiper-slide .wraper_content_details p {
  margin: 0;
}
.section_content_swiper .contentSwiper .swiper-slide .wraper_content_details .tag {
  font-family: GilmerBold;
  font-size: 9px;
  margin-bottom: 8px;
  color: rgb(142, 142, 147);
}
@media (max-width: 1200px) {
  .section_content_swiper .contentSwiper .swiper-slide .wraper_content_details .tag {
    font-size: 7px;
  }
}
.section_content_swiper .contentSwiper .swiper-slide .wraper_content_details .title {
  font-size: 27px;
  font-weight: 600;
  margin-bottom: 16px;
  line-height: 1.375;
}
@media (max-width: 1200px) {
  .section_content_swiper .contentSwiper .swiper-slide .wraper_content_details .title {
    font-size: 20px;
  }
}
.section_content_swiper .contentSwiper .swiper-slide .wraper_content_details .details {
  font-size: 16px;
  margin-bottom: 20px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box !important;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  white-space: normal;
}
@media (max-width: 1200px) {
  .section_content_swiper .contentSwiper .swiper-slide .wraper_content_details .details {
    font-size: 12px;
  }
}
@media (max-width: 1023px) {
  .section_content_swiper .contentSwiper .swiper-slide .wraper_content_details .box_btn_banner .btn_c_outline {
    margin: 0;
  }
}

.contentPagination {
  display: none;
}
@media (max-width: 1023px) {
  .contentPagination {
    padding-right: 140px;
    display: block;
    bottom: var(--swiper-pagination-bottom, 25px) !important;
  }
}
@media (max-width: 991px) {
  .contentPagination {
    padding-right: 100px;
  }
}
@media (max-width: 767px) {
  .contentPagination {
    padding-right: 0;
    bottom: var(--swiper-pagination-bottom, 15px) !important;
  }
}

.wrap_button_arrow {
  position: absolute;
  width: 110px;
  height: 10px;
  right: 0;
  bottom: 70px;
}
@media (max-width: 1200px) {
  .wrap_button_arrow {
    width: 90px;
    bottom: 50px;
  }
}
.wrap_button_arrow .opal-icon-long-arrow-left,
.wrap_button_arrow .opal-icon-long-arrow-right {
  font-size: 33px;
}
@media (max-width: 1200px) {
  .wrap_button_arrow .opal-icon-long-arrow-left,
  .wrap_button_arrow .opal-icon-long-arrow-right {
    font-size: 22px;
  }
}
.wrap_button_arrow .swiper-button-next {
  right: var(--swiper-navigation-sides-offset, 0px);
}
.wrap_button_arrow .swiper-button-prev,
.wrap_button_arrow .swiper-button-next {
  color: black;
}
.wrap_button_arrow .swiper-button-prev::after,
.wrap_button_arrow .swiper-button-next::after {
  display: none;
}

.swiper-button-prev,
.swiper-button-next {
  color: white;
}
@media (max-width: 1023px) {
  .swiper-button-prev,
  .swiper-button-next {
    display: none !important;
  }
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, 30px);
  left: auto;
}

.swiper-button-prev,
.swiper-rtl .swiper-button-next {
  left: var(--swiper-navigation-sides-offset, 30px);
  right: auto;
}

.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  position: relative;
  background-color: rgba(255, 255, 255, 0.7);
}
.swiper-pagination-bullet::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  background: rgba(255, 255, 255, 0.7);
  -webkit-border-radius: 100px;
  -khtml-border-radius: 100px;
  -moz-border-radius: 100px;
  -ms-border-radius: 100px;
  -o-border-radius: 100px;
  border-radius: 100px;
}
.swiper-pagination-bullet::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  border: 2px solid white;
  -webkit-border-radius: 100px;
  -khtml-border-radius: 100px;
  -moz-border-radius: 100px;
  -ms-border-radius: 100px;
  -o-border-radius: 100px;
  border-radius: 100px;
  display: none;
}
.swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: white;
}
.swiper-pagination-bullet.swiper-pagination-bullet-active::before {
  background: transparent;
}
.swiper-pagination-bullet.swiper-pagination-bullet-active::after {
  display: block;
}

.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: var(--swiper-pagination-bottom, 50px);
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 6px);
}

/* animation  */
@keyframes fadeThenSlide {
  0% {
    opacity: 0;
    transform: translateX(100%);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
/* animation  */
@keyframes progress-slide {
  0% {
    transform: scaleX(0);
    transform-origin: left;
  }
  50% {
    transform: scaleX(1);
    transform-origin: left;
  }
  51% {
    transform: scaleX(1);
    transform-origin: right;
    /* เปลี่ยนจุดเริ่มเป็นด้านขวา */
  }
  100% {
    transform: scaleX(0);
    transform-origin: right;
  }
}
.card_auto {
  padding: 150px 80px;
  background-color: white;
  margin-bottom: 50px;
}
@media (max-width: 767px) {
  .card_auto {
    padding: 50px 20px;
  }
}
.card_auto .wrap_card_auto .box_title {
  margin-bottom: 50px;
}
.card_auto .wrap_card_auto .box_title .text_date {
  font-size: 18px;
  color: #768492;
}
.card_auto .wrap_card_auto .box_title .text_date p {
  margin-bottom: 10px;
}
.card_auto .wrap_card_auto .box_title .text_title {
  font-size: 50px;
  font-weight: bold;
  color: black;
  line-height: 1.375;
}
@media (max-width: 1023px) {
  .card_auto .wrap_card_auto .box_title .text_title {
    font-size: 26.5px;
  }
}
.card_auto .wrap_card_auto .box_details {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: start;
  -moz-align-items: start;
  align-items: start;
  gap: 40px;
}
.card_auto .wrap_card_auto .box_details.text-right {
  flex-direction: row-reverse;
}
.card_auto .wrap_card_auto .box_details.text-right .items_details .text {
  text-align: left;
}
.card_auto .wrap_card_auto .box_details.text-right .items_details .text p {
  margin: 0;
}
@media (max-width: 1023px) {
  .card_auto .wrap_card_auto .box_details {
    flex-direction: column !important;
  }
}
.card_auto .wrap_card_auto .box_details .items_details {
  width: 50%;
}
@media (max-width: 1023px) {
  .card_auto .wrap_card_auto .box_details .items_details {
    width: 100%;
  }
}
.card_auto .wrap_card_auto .box_details .items_details .thumbnail_img img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.card_auto .wrap_card_auto .box_details .items_details .text {
  font-size: 18px;
  color: #7a7a7a;
}

.section_subscribe {
  opacity: 0;
  transform: translateY(80px); /* ขยับลงมา */
  transition: all 0.8s ease-out;
}

.section_subscribe.show {
  opacity: 1;
  transform: translateY(0);
}/*# sourceMappingURL=custom2.css.map */