/* index.scss */
#wrapper {
  width: 100%;
  height: 100%;
}

.container {
  padding: 80px 44px;
}

.title {
  position: relative;
  margin-bottom: 50px;
  font-size: 32px;
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 2px;
  scroll-margin: 90px;
}
.title::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -20px;
  width: 80px;
  height: 2px;
  background-color: #007cc7;
  left: 50%;
  transform: translateX(-50%);
}

/* headBox.scss */
body {
  padding-top: 70px;
}

#headBox {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  width: 100%;
  height: 70px;
  box-shadow: 2px 4px 7px 0 rgba(74, 42, 62, 0.1);
  background-color: #fff;
  will-change: transform;
  transition: transform 200ms linear;
}
#headBox.shrink {
  transform: translateY(-100%);
}
#headBox .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 24px;
}
#headBox h1 {
  width: 200px;
  height: 100%;
  background-image: url("../assets/img/logo.png");
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: contain;
}

/*==================== handhelds 320px - 1023px ====================*/
@media all and (max-width: 1023px) {
  #headBox #navBar.active .dropdown_menu {
    display: block;
  }
  #headBox #navBar .nav_button {
    width: 40px;
    height: 100%;
  }
  #headBox #navBar .nav_button svg {
    width: 16px;
  }
  #headBox #navBar .dropdown_menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100vw;
    height: 500px;
    padding: 8px 24px;
    border: 1px solid #efefef;
    box-shadow: 0 2px 3px 1px rgba(0, 0, 0, 0.1);
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    color: #242424;
    background-color: #fff;
  }
  #headBox #navBar .dropdown_menu > li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    line-height: 2.2;
  }
  #headBox #navBar .dropdown_menu > li:last-of-type {
    border: 0;
  }
  #headBox #navBar .dropdown_inner_menu {
    padding: 10px 0;
    padding-left: 40px;
    list-style: circle;
    text-transform: capitalize;
  }
  #headBox #navBar .dropdown_inner_menu > li {
    padding: 10px 0;
  }
  .modal_bg {
    display: none;
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100vh;
  }
  .modal_bg.active {
    display: block;
  }
}
/*==================== mobile 320px - 767px tablet ====================*/
/*==================== tablet 768px - 1023px laptop ====================*/
@media all and (min-width: 768px) and (max-width: 1023px) {
  #headBox .container {
    max-width: 960px;
  }
}
/*==================== laptop 1024px - ====================*/
@media all and (min-width: 1024px) {
  #headBox .container {
    max-width: 1140px;
  }
  #headBox #navBar {
    display: flex;
    align-items: center;
    height: 100%;
  }
  #headBox #navBar .nav_button {
    display: none;
  }
  #headBox #navBar .dropdown_menu {
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 15px;
    color: #303030;
    gap: 35px;
  }
  #headBox #navBar .dropdown_menu li,
  #headBox #navBar .dropdown_menu a {
    display: flex;
    align-items: center;
    height: 100%;
  }
  #headBox #navBar .products {
    position: relative;
  }
  #headBox #navBar .products:hover .dropdown_inner_menu {
    display: flex;
  }
  #headBox #navBar .dropdown_inner_menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%);
    justify-content: center;
    align-items: center;
    width: 200vw;
    height: 50px;
    gap: 40px;
    font-size: 15px;
    font-weight: 300;
    text-transform: capitalize;
    color: #fff;
    background-color: rgba(41, 43, 55, 0.85);
  }
  #headBox #navBar .dropdown_inner_menu a:hover {
    color: #4BBBFE;
  }
}
/* topButtonBox.scss */
#topButtonBox {
  position: fixed;
  right: 25px;
  bottom: 65px;
  width: 54px;
  height: 54px;
}
#topButtonBox > div {
  width: 100%;
  height: 100%;
}
#topButtonBox button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  border-radius: 100%;
  border: 1px solid #cccccc;
  background-color: rgba(255, 255, 255, 0.4);
  transition: background-color 0.3s, border 0.3s, color 0.3s, opacity 0.5s ease-in-out, right 0.5s ease-in-out;
  will-change: background-color, border, color, opacity, right;
}
#topButtonBox button:hover {
  background-color: #007cc7;
}
#topButtonBox button:hover svg {
  fill: #fff;
}
#topButtonBox button svg {
  height: 22px;
  fill: #242424;
}

/*==================== handhelds 320px - 1023px ====================*/
/*==================== mobile 320px - 767px tablet ====================*/
@media all and (max-width: 767px) {
  #topButtonBox {
    width: 30px;
    height: 30px;
  }
  #topButtonBox button svg {
    height: 12px;
  }
}
/*==================== tablet 768px - 1023px laptop ====================*/
/*==================== laptop 1024px - ====================*/
/* footBox.scss */
#footBox {
  color: #fff;
  background-color: #292b37;
}
#footBox .container {
  padding: 30px 24px;
}
#footBox .foot_logo {
  width: 220px;
  height: 77px;
  margin: auto;
  margin-bottom: 10px;
  background-image: url("../assets/img/logo_dark.png");
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: contain;
}
#footBox .foot_logo a {
  display: block;
  width: 100%;
  height: 100%;
}
#footBox dl {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  row-gap: 6px;
  column-gap: 3px;
  margin: auto;
  font-size: 12px;
  text-align: center;
  margin-bottom: 6px;
}
#footBox dl:last-of-type {
  margin-bottom: 0;
}
#footBox dl .address address {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 100%;
}
#footBox dl .address br,
#footBox dl .address span {
  display: none;
}
#footBox dl dd.tel::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 70%;
  margin-left: 9px;
  margin-right: 6px;
  transform: rotate(20deg);
  background-color: #fff;
}

/*==================== handhelds 320px - 1023px ====================*/
/*==================== mobile 320px - 767px tablet ====================*/
/*==================== tablet 768px - 1023px laptop ====================*/
@media all and (min-width: 768px) and (max-width: 1023px) {
  #footBox .container {
    display: flex;
    justify-content: space-between;
    max-width: 720px;
  }
  #footBox .foot_logo {
    margin: unset;
  }
  #footBox dl {
    justify-content: flex-end;
    text-align: right;
  }
}
/*==================== laptop 1024px - ====================*/
@media all and (min-width: 1024px) {
  #footBox .container {
    display: flex;
    justify-content: space-between;
  }
  #footBox .foot_logo {
    margin: unset;
  }
  #footBox dl {
    justify-content: flex-end;
    text-align: right;
  }
}
/* viewBox.scss */
#viewBox {
  background-color: #eee;
  height: calc(100vh - 70px);
  overflow: hidden;
  color: #fff;
}
#viewBox .slick-arrow {
  z-index: 9999;
  width: 50px;
  height: 100px;
  padding: 35px 10px;
}
#viewBox .slick-arrow::before {
  display: none;
}
#viewBox .slick-arrow:hover {
  background-color: rgba(255, 255, 255, 0.2);
}
#viewBox .slick-prev {
  left: 20px;
}
#viewBox .slick-next {
  right: 20px;
}
#viewBox .slick-next img {
  transform: rotate(180deg);
}
#viewBox .slick-dots {
  bottom: 30px;
}
#viewBox .slick-dots li button::before {
  font-size: 12px;
}
#viewBox .slick-dots li.slick-active button:before {
  opacity: 0.75;
  color: #fff;
}
#viewBox .view_slide {
  position: relative;
  z-index: 0;
  height: calc(100vh - 70px);
  overflow: hidden;
  background-position: 50% 50%;
  background-size: cover;
  background-repeat: no-repeat;
}
#viewBox .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  position: relative;
  height: 100%;
  padding-top: 30px;
}
#viewBox .subtitle {
  font-size: 36px;
  margin-bottom: 20px;
  line-height: 1.25;
}
#viewBox p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 18px;
}
#viewBox path {
  fill: #fff;
}
#viewBox a {
  display: inline-flex;
  align-items: center;
  padding: 14px 52px;
  border-radius: 999px;
  border: 1px solid #fff;
}
#viewBox a:hover {
  background-color: rgba(255, 255, 255, 0.1);
}
#viewBox svg {
  width: 16px;
  height: 16px;
  margin-right: 12px;
}
#viewBox span {
  font-size: 1rem;
  font-weight: 500;
  white-space: nowrap;
  text-transform: capitalize;
}
#viewBox .view_slide_01 {
  background-image: url("../assets/img/sellerking_bg.jpg");
}
#viewBox .view_slide_01 .img_wrapper {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
}
#viewBox .view_slide_01 .img_wrapper img {
  position: relative;
  top: 100%;
  width: 100%;
}
#viewBox .view_slide_02 {
  background: linear-gradient(120deg, #460b99 0%, #5327b1 40%, #7e48b6 100%);
}
#viewBox .view_slide_02 .img_wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
#viewBox .view_slide_02 .img_wrapper img {
  position: relative;
  top: 100%;
  width: 100%;
  height: auto;
  max-height: 903px;
  transform: translateY(-100%);
}
#viewBox .view_slide_02 .anchor_group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
#viewBox .view_slide_02 .anchor_group a {
  justify-content: center;
  width: 150px;
}
#viewBox .view_slide_03 {
  background-image: url("../assets/img/bluebg.png");
}
#viewBox .view_slide_03 .img_wrapper {
  right: 0;
  bottom: 0;
  z-index: -1;
}
#viewBox .view_slide_03 .img_wrapper img {
  position: absolute;
  bottom: 0;
  right: 0;
}
#viewBox .view_slide_03 .img_wrapper .bg_01 {
  max-height: 700px;
  transform: translate(50%, 30%);
}
#viewBox .view_slide_03 .img_wrapper .bg_02 {
  transform: translate(50%, 30%);
  opacity: 0.7;
}

/*==================== handhelds 320px - 1023px ====================*/
/*==================== mobile 320px - 767px ====================*/
@media all and (max-width: 767px) {
  #viewBox .container {
    justify-content: flex-start;
  }
  #viewBox .subtitle {
    font-size: 28px;
  }
  #viewBox p {
    font-size: 16px;
  }
  #viewBox a {
    padding: 14px 30px;
  }
  #viewBox .view_slide_03 .container {
    justify-content: center;
    max-width: 600px;
  }
}
/*==================== tablet 768px - 1023px ====================*/
@media all and (min-width: 768px) and (max-width: 1023px) {
  #viewBox {
    height: 100%;
    max-height: 760px;
  }
  #viewBox .view_slide {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    max-height: 760px;
    padding: 0 70px;
  }
  #viewBox .subtitle {
    margin-bottom: 24px;
  }
  #viewBox p {
    margin-bottom: 30px;
  }
  #viewBox .view_slide_01 .img_wrapper img {
    top: auto;
    right: 0;
    bottom: 0;
    width: auto;
    transform: translate(25%);
  }
  #viewBox .view_slide_02 .img_wrapper img {
    top: 50%;
    bottom: auto;
    transform: translate(40%, -45%);
  }
}
/*==================== laptop 1024px - ====================*/
@media all and (min-width: 1024px) {
  #viewBox {
    height: 100%;
    max-height: 680px;
  }
  #viewBox .view_slide {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    min-height: 530px;
    max-height: 680px;
    padding: 0 70px;
  }
  #viewBox .subtitle {
    font-size: 44px;
    margin-bottom: 24px;
  }
  #viewBox p {
    margin-bottom: 30px;
  }
  #viewBox .view_slide_01 .img_wrapper img {
    top: auto;
    right: 0;
    bottom: 0;
    width: auto;
    transform: translate(25%);
  }
  #viewBox .view_slide_02 .img_wrapper img {
    top: 50%;
    bottom: auto;
    height: 150%;
    transform: translate(40%, -45%);
  }
  #viewBox .view_slide_03 .img_wrapper .bg_02 {
    opacity: 1;
  }
}
/* productBox.scss */
#productBox {
  background-color: #fff;
}
#productBox .product_area > ul {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
#productBox h3 {
  text-align: center;
  text-transform: capitalize;
  font-size: 24px;
  line-height: 1.3;
  color: #195d92;
}
#productBox .product_inner {
  max-width: 350px;
  margin: auto;
  padding: 50px 30px;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.125);
  box-shadow: 0 2px 6px 0 rgba(29, 45, 134, 0.11);
}
#productBox .product_inner .content_area {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  align-items: center;
}
#productBox .product_inner .typo {
  min-height: 154px;
  margin-bottom: 30px;
  text-align: justify;
  line-height: 1.6;
  word-break: break-all;
}
#productBox .product_inner .link {
  height: 40px;
  padding: 0 50px;
  border-radius: 999px;
  font-weight: 500;
  color: #195d92;
  border: 2px solid #4786b8;
}
#productBox .product_inner .link a {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  font-size: 13px;
}

/*==================== handhelds 320px - 1023px ====================*/
/*==================== mobile 320px - 767px tablet ====================*/
/*==================== tablet 768px - 1023px laptop ====================*/
@media all and (min-width: 768px) and (max-width: 1023px) {
  #productBox .product_area > ul {
    flex-direction: initial;
    justify-content: center;
    flex-wrap: wrap;
  }
}
/*==================== laptop 1024px - ====================*/
@media all and (min-width: 1024px) {
  #productBox .container {
    max-width: none;
  }
  #productBox .product_area > ul {
    flex-direction: initial;
    justify-content: center;
    flex-wrap: wrap;
  }
}
/* vanillaTopicBox.scss */
#sellerking {
  width: 100%;
  display: flex;
  justify-content: center;
  /*  background-image: url('./assets/img/sellerking-bg.png'); */
  background-color: #EFF5F6;
}
#sellerking .sellerking-contents {
  display: flex;
  justify-content: space-between;
  text-transform: uppercase;
  gap: 30px;
  padding: 20px;
  flex-wrap: wrap;
}
#sellerking .movie {
  float: left;
  width: 100%;
}
#sellerking .video-wrap {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 30px;
  height: 0;
  overflow: hidden;
}
#sellerking .video-wrap iframe,
#sellerking .video-wrap object,
#sellerking .video-wrap embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#sellerking .youtube {
  width: 600px;
  height: 400px;
}
#sellerking .seller-text {
  display: flex;
  flex-direction: column;
  width: 100%;
}
#sellerking .seller-text .txt1 {
  color: #222222;
  font-weight: 300;
  font-size: 18px;
  line-height: 34px;
  letter-spacing: -1px;
}
#sellerking .seller-text .blue {
  color: #0055D4;
}
#sellerking .seller-text .txt2 {
  margin-top: 20px;
  margin-bottom: 35px;
  color: #222222;
  font-weight: 400;
  font-size: 16px;
  line-height: 34px;
  list-style: disc;
  list-style-position: inside;
}
#sellerking .seller-text .seller-btn {
  background: linear-gradient(92.28deg, #003EA0 12.12%, #0048BB 21.95%, #6E41D6 90.74%);
  border-radius: 10px;
  width: 240px;
  height: 60px;
  padding: 15px 40px;
  font-weight: 500;
  font-size: 16px;
  color: #fff;
  text-align: center;
}
#sellerking .title::after {
  background-color: #007CC7;
}
#sellerking p {
  width: 100%;
  margin-bottom: 30px;
  text-align: center;
  font-size: 24px;
  font-weight: 500;
}
#sellerking .movie #sellerking-ad {
  margin: auto;
  width: 745px;
  max-width: 408px;
}
#sellerking .seller_area {
  display: flex;
  flex-direction: column;
  max-width: 510px;
  gap: 46px;
  margin: auto;
  margin-top: 100px;
}
#sellerking .seller_area li {
  display: flex;
}
#sellerking .seller_area li::before {
  flex-shrink: 0;
  content: "";
  display: block;
  width: 65px;
  height: 65px;
  margin-right: 20px;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: contain;
}
#sellerking .seller_area li .subtitle {
  display: flex;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -1px;
  margin-bottom: 8px;
}
#sellerking .seller_area li dd {
  line-height: 1.6;
}

#vanillaTopicBox {
  background-color: #E4E4FD;
  color: #222222;
}
#vanillaTopicBox .container {
  padding-bottom: 80px;
}
#vanillaTopicBox .title::after {
  background-color: #541F95;
}
#vanillaTopicBox p {
  width: 100%;
  margin-bottom: 60px;
  text-align: center;
  font-size: 24px;
  font-weight: 500;
}
#vanillaTopicBox .img_area #topicSlide {
  margin: auto;
  /* width: 745px; */
  max-width: 408px;
}
#vanillaTopicBox .img_area #topicSlide img {
  display: block;
  width: auto;
  height: auto;
  max-height: 650px;
  margin: auto;
}
#vanillaTopicBox .img_area .button_area {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}
#vanillaTopicBox .img_area .button_area a {
  display: block;
  width: 188px;
  height: 68px;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: contain;
}
#vanillaTopicBox .img_area .button_area .app_store_link {
  background-image: url("../assets/icon/appstore-300x108.png");
}
#vanillaTopicBox .img_area .button_area .google_play_link {
  background-image: url("../assets/icon/googleplay-300x107.png");
}
#vanillaTopicBox .content_area {
  display: flex;
  flex-direction: column;
  max-width: 510px;
  gap: 46px;
  margin: auto;
  margin-top: 100px;
}
#vanillaTopicBox .content_area > li {
  display: flex;
}
#vanillaTopicBox .content_area > li:nth-child(1)::before {
  background-image: url("../assets/img/ic_01-1.png");
}
#vanillaTopicBox .content_area > li:nth-child(2)::before {
  background-image: url("../assets/img/ic_02-1.png");
}
#vanillaTopicBox .content_area > li:nth-child(3)::before {
  background-image: url("../assets/img/ic_03-1.png");
}
#vanillaTopicBox .content_area > li:nth-child(4)::before {
  background-image: url("../assets/img/ic_04-1.png");
}
#vanillaTopicBox .content_area > li:nth-child(5)::before {
  background-image: url("../assets/img/ic_05-1.png");
}
#vanillaTopicBox .content_area > li::before {
  flex-shrink: 0;
  content: "";
  display: block;
  width: 70px;
  height: 70px;
  margin-right: 20px;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: contain;
}
#vanillaTopicBox .content_area > li .subtitle {
  display: flex;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -1px;
  margin-bottom: 8px;
}
#vanillaTopicBox .content_area > li dd {
  line-height: 1.6;
  font-size: 16px;
  color: #49484A;
}

/*==================== handhelds 320px - 1023px ====================*/
/*==================== mobile 320px - 767px tablet ====================*/
@media all and (max-width: 767px) {
  #vanillaTopicBox .img_area #topicSlide img {
    width: 100%;
    height: auto;
    max-height: none;
  }
  #vanillaTopicBox .youtube {
    width: 100%;
    height: 100%;
  }
  #vanillaTopicBox .content_area {
    margin-top: 60px;
  }
  #vanillaTopicBox .content_area .subtitle {
    font-size: 22px;
  }
  #vanillaTopicBox .seller-text {
    display: flex;
    float: right;
    flex-direction: column;
    border-radius: 10px;
  }
  #vanillaTopicBox .movie #sellerking-ad {
    margin: auto;
    width: 100%;
  }
  #footBox dl .address br {
    display: block;
  }
  #footBox dl .address span {
    display: block;
    width: 1px;
    height: 6px;
  }
  }
/*==================== tablet 768px - 1023px laptop ====================*/
@media all and (min-width: 768px) and (max-width: 1023px) {
  #sellerking .sellerking-contents {
    display: flex;
    row-gap: 100px;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: flex-start;
  }
  #vanillaTopicBox .title {
    width: 100%;
  }
  #vanillaTopicBox .container > div {
    display: flex;
    row-gap: 100px;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: flex-start;
  }
  #vanillaTopicBox .content_area {
    margin-top: 0;
    margin: unset;
  }
}
/*==================== laptop 1024px - ====================*/
@media all and (min-width: 1024px) {
  #sellerking .sellerking-contents {
    display: flex;
    row-gap: 100px;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: flex-start;
  }
  #sellerking .movie {
    width: 45%;
  }
  #sellerking .seller-text {
    width: 45%;
  }
  #vanillaTopicBox .title {
    width: 100%;
  }
  #vanillaTopicBox .container > div {
    display: flex;
    row-gap: 100px;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: flex-start;
  }
  #vanillaTopicBox .content_area {
    margin-top: 0;
    margin: unset;
  }
}
/* projectsBox.scss */
#projectsBox {
  background-color: #fff;
}
#projectsBox .content_area {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}
#projectsBox .content_area > li {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  max-width: 510px;
  width: 100%;
  margin: auto;
  border-radius: 2px;
  box-shadow: 0 1px 7px rgba(165, 165, 165, 0.7490196078);
  background-color: #fff;
}
#projectsBox .content_area > li .subtitle {
  margin-top: 22px;
  margin-bottom: 8px;
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  padding: 0 15px;
}
#projectsBox .content_area > li .img_wrapper {
  padding-top: 60.25%;
  position: relative;
  width: 100%;
  order: -1;
  overflow: hidden;
}
#projectsBox .content_area > li .img_wrapper:hover {
  transition: all 300ms ease-in;
}
#projectsBox .content_area > li .img_wrapper:hover .overlay {
  box-shadow: rgba(0, 0, 0, 0.1) 0 0 0 0 inset;
}
#projectsBox .content_area > li .img_wrapper:hover img {
  transform: scale(1.2);
}
#projectsBox .content_area > li .img_wrapper .overlay {
  /*  box-shadow: rgb(0 0 0 / 10%) 0 -16px 16px 0 inset; */
  transition: box-shadow 0.3s;
  position: absolute;
  z-index: 100;
  top: 0;
  width: 100%;
  height: 100%;
}
#projectsBox .content_area > li .img_wrapper img {
  position: absolute;
  width: 100%;
  height: auto;
  top: 0;
  transition: transform 0.3s;
  object-fit: cover;
  object-position: 50% 50%;
}
#projectsBox .content_area > li .chip_banner {
  display: inline-flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 26px;
  padding: 0 15px;
  gap: 4px;
}
#projectsBox .content_area > li .chip_banner > li {
  padding: 1px 7px 2px;
  border-radius: 6px;
  font-weight: 400;
  line-height: 1.6;
  font-size: 14px;
  white-space: nowrap;
  text-transform: capitalize;
  background-color: #363c4b;
  color: #fff;
}

/*==================== handhelds 320px - 1023px ====================*/
/*==================== mobile 320px - 767px tablet ====================*/
/*==================== tablet 768px - 1023px laptop ====================*/
@media all and (min-width: 768px) and (max-width: 1023px) {
  #projectsBox .container {
    max-width: 720px;
  }
  #projectsBox .content_area {
    justify-content: space-between;
    flex-direction: row;
    flex-wrap: wrap;
  }
  #projectsBox .content_area > li {
    max-width: none;
    width: calc(50% - 30px);
    margin: unset;
  }
}
/*==================== laptop 1024px - ====================*/
@media all and (min-width: 1024px) {
  #projectsBox .container {
    max-width: 1150px;
  }
  #projectsBox .content_area {
    justify-content: space-between;
    flex-direction: row;
    flex-wrap: wrap;
  }
  #projectsBox .content_area > li {
    max-width: none;
    width: calc(33.3333333333% - 30px);
    margin: unset;
  }
}
/* bannerBox.scss */
#bannerBox {
  background-color: #fff;
}
#bannerBox #companyCarousel {
  display: flex;
}
#bannerBox #companyCarousel .slick-slide {
  height: 100%;
}
#bannerBox #companyCarousel .slick-slide img {
  width: 100%;
}

/*==================== handhelds 320px - 1023px ====================*/
@media all and (max-width: 1023px) {
  #bannerBox .container {
    padding: 30px 0;
  }
}
/*==================== mobile 320px - 767px tablet ====================*/
/*==================== tablet 768px - 1023px laptop ====================*/
/*==================== laptop 1024px - ====================*/
/* newsBox.scss */
#newsBox {
  background-color: #3a3e4d;
}
#newsBox .title {
  color: #fff;
}
#newsBox .title::after {
  background-color: #fff;
}
#newsBox .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 540px;
  gap: 37px;
}
#newsBox article {
  background-color: #fff;
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 2px;
}
#newsBox article h3 {
  margin-bottom: 15px;
  font-size: 22px;
  font-weight: 500;
  line-height: 30px;
  letter-spacing: -1px;
  color: #195d92;
  padding-top: 20px;
  padding-bottom: 10px;
}
#newsBox article p {
  line-height: 1.6;
  margin-bottom: 30px;
}
#newsBox article .link_button {
  position: relative;
  overflow: hidden;
}
#newsBox article .link_button img {
  width: 100%;
}
#newsBox article .link_button img:hover + a {
  top: 0;
  opacity: 100;
  transition: top 0.3s, opacity 0.3s;
}
#newsBox article .link_button a {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 2000;
  width: 100%;
  height: 100%;
  background-color: rgba(36, 36, 36, 0.47);
  transition: top 0.3s, opacity 0.3s;
  opacity: 0;
}
#newsBox article .link_button a:hover {
  top: 0;
  opacity: 100;
  transition: top 0.3s, opacity 0.3s;
}
#newsBox article .link_button a span {
  padding: 8px 30px;
  border: 2px solid #fff;
  border-radius: 999px;
  font-weight: 500;
  color: #fff;
}
#newsBox .more {
  display: inline-block;
  padding: 0 17px;
  line-height: 2.5;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  color: #333;
  background-color: #fff;
}

/*==================== handhelds 320px - 1023px ====================*/
/*==================== mobile 320px - 767px tablet ====================*/
/*==================== tablet 768px - 1023px laptop ====================*/
/*==================== laptop 1024px - ====================*/
@media all and (min-width: 1024px) {
  #newsBox .title {
    width: 100%;
  }
  #newsBox .container {
    max-width: 1150px;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 0;
    column-gap: 37px;
  }
  #newsBox article {
    width: calc(33.3333333333% - 30px);
  }
  #newsBox .more {
    margin: auto;
    margin-top: 37px;
  }
}
/* aboutBox.scss */
#aboutBox {
  background-color: #fff;
}
#aboutBox .container {
  max-width: 540px;
}
#aboutBox p {
  line-height: 1.6;
  text-align: center;
}
#aboutBox p::after {
  content: "";
  display: block;
  width: 100%;
  height: 158px;
  background-image: url("../assets/img/about_bg_wh.png");
  background-position: 50% 50%;
  background-size: contain;
  background-repeat: no-repeat;
}

/*==================== handhelds 320px - 1023px ====================*/
/*==================== mobile 320px - 767px tablet ====================*/
/*==================== tablet 768px - 1023px laptop ====================*/
@media all and (min-width: 768px) and (max-width: 1023px) {
  #aboutBox .container {
    max-width: 1110px;
  }
  #aboutBox .container p::after {
    width: 100%;
    height: 280px;
  }
}
/*==================== laptop 1024px - ====================*/
@media all and (min-width: 1024px) {
  #aboutBox .container {
    max-width: 1110px;
  }
  #aboutBox .container p::after {
    width: 100%;
    height: 345px;
  }
}
/* contactBox.scss */
#contactBox {
  color: #fff;
  background-color: #3a3e4d;
  text-align: center;
}
#contactBox .title::after {
  background-color: #fff;
}
#contactBox p {
  margin: 100px auto 50px;
  font-size: 28px;
  font-weight: 500;
  word-break: break-all;
}
#contactBox a {
  padding: 12px 80px;
  background-color: #007cc7;
  border-radius: 999px;
  font-weight: 500;
  transition: all 300ms ease-in;
}
#contactBox a:hover {
  box-shadow: 0 20px 20px rgba(0, 0, 0, 0.2);
  color: #007cc7;
  background-color: #fff;
}

/*==================== handhelds 320px - 1023px ====================*/
@media all and (max-width: 1023px) {
  #contactBox p {
    font-size: 25px;
  }
  #contactBox a {
    padding: 12px 60px;
  }
}
/*==================== mobile 320px - 767px tablet ====================*/
/*==================== tablet 768px - 1023px laptop ====================*/
/*==================== laptop 1024px - ====================*/
/*==================== mobile 320px - 767px tablet ====================*/
@media all and (max-width: 767px) {
  .container {
    padding: 90px 24px;
  }
}
/*==================== laptop 1024px - ====================*/
@media all and (min-width: 1024px) {
  .mobile {
    display: none;
  }
}

/*# sourceMappingURL=index.css.map */
