/* General Components START
--------------------------------------------------------------------*/
/* common page cover */
.wiz-cover-text {
    max-width: 490px;
    height: 100%;
    padding-top: 80px;
    background-image: linear-gradient(to left, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 1), rgba(255, 255, 255, 1));
}

.wiz-cover-text__main {
  line-height: 1.3;
  margin-bottom: 20px;
}

.wiz-cover-text__sub {
  max-width: 75%;
}

.wiz-cover-img {
    position: absolute;
    right: 0;
    z-index: -1; 
}

@media (max-width: 640px) {
  .wiz-cover-img {
    position: initial;
  }
}

/* General Components END
--------------------------------------------------------------------*/

/* Front Page START
--------------------------------------------------------------------*/

.lp-section__inner {
    padding: 50px 0;
}

.lp-cover .wiz-cover-img {
    max-width: 900px;  
}

.wisdom-jp-link {
  color: var(--wiz-color-preset-03);
  color: var(--wiz-color-preset-03);
  text-decoration: underline;
  text-decoration-thickness: 0.004em;
  text-underline-offset: 0.15em;
  transition: 0.1s;
}
.wisdom-jp-link:hover {
  color: var(--wiz-color-preset-01);
  text-underline-offset: 0.25em;
}

/* Nav section */
.lp-section-nav {
  min-height: 30vh;
  width: 100%;
  padding-top: 40px;
  padding-bottom: 40px;
}

.lp-s-nav{
  max-width: 1024px;
  gap: 20px;
}



.lp-s-nav__btn {
  padding: 20px;
  min-height: 8em;
  position: relative;
  border: 2px solid var(--wiz-color-preset-01);
  border-radius: 10px;
  font-size: var(--wiz-font-01);
  background-color: transparent;
  color: var(--wiz-color-preset-01);
  cursor: pointer;
  transition: 0.2s cubic-bezier(.31,.61,.37,1.06);
}

.lp-s-nav__btn .arrow-right {
  width: 0; 
  height: 0; 
  position: absolute;
  bottom: 20px;
  left: 20px;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid var(--wiz-color-preset-01);
}

@media (max-width: 450px) {
    .wiz-grid.grid-4.lp-s-nav {
      grid-template-columns: 1fr 1fr;
    }
    .lp-s-nav__btn .arrow-right {
      left: unset;
      right: 20px;
    }
}

.lp-s-nav__btn:hover {
  background-color: var(--wiz-color-preset-01);
  color: #ffffff;
}

.lp-s-nav__btn:hover .arrow-right {
  border-left: 15px solid #ffffff;
}

/* Service Section */
.lp-section-serve {
  padding-top: 100px;
  padding-bottom: 100px;
}

.lp-service-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.lp-srv-item {
  border-right: 1px solid #e0e0e0;
  padding-right: 20px;
}

.lp-srv-item h3{
  color: var(--wiz-color-main-02);
  font-size: 1.1em;
}

.lp-srv-item .srv-icon {
  width: 50px;
  height: 50px;
  color: var(--wiz-color-sub-01);
}

.lp-srv-item h3{
  margin: 5px 0;
}

@media (max-width: 1024px) {
  .lp-service-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Operations Section */
.lp-section-ops .wiz-grid{
  padding: 150px 0;
}

.lp-section-ops a {
  cursor: pointer;
}

ul.lp-ops-details {
  margin-left: 0;
  list-style: none;
}

ul.lp-ops-details li{
  padding-bottom: 24px;
  border-bottom: 1px solid #404040;
}

ul.lp-ops-details li:not(:first-child){
  padding-top: 21px;
}

/* Offshore */
.lp-section-shore .wiz-grid{
  padding: 100px 0;
}

.lp-section-shore .shore-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.lp-section-shore .shore-card {
  padding: 20px;
  background: #F8F8F8;
  color: #404040;
  border-radius: 8px;
  min-height: 330px;
  transition: 0.2s ease-out;
}

@media (max-width: 768px) {
  .lp-section-shore .shore-card {
    min-height: unset;
  }
}

.lp-section-shore h4 {
  font-size: var(--wiz-font-03);
  color: var(--wiz-color-sub-01);
}

.lp-section-shore .shore-card:hover{
  transform: translateY(-10px);
}

.lp-section-shore .wp-cta-btn {
  margin: 0;
}

@media (max-width: 768px){
  .lp-section-shore .shore-grid {
    grid-template-columns: 1fr;
  }
}


/* How it Works Section*/
.lp-section-ops .ops-header {
  text-align: center;
}

.lp-section-ops .flow-grid {
  max-width: 1000px;
  margin: 0 auto;
}

.lp-section-ops .flow-item {
  background-image: linear-gradient(45deg, var(--wiz-color-main-02), #092249);
  padding: 50px 20px 20px;
}

.flow-item .how-flow-img{
  height: 100px;
  width: 100px;
  margin: 10px auto;
  border: 2px solid white;
  border-radius: 50px;
  display: inline-block;
  padding: 20px;
}

.flow-item svg{
  transition: 0.3s ease-in-out;
}

.flow-item:hover svg{
  transform: scale(1.09);
}

.flow-item .how-flow-num{
  display: inline-block;
  line-height: 2;
  padding: 0 0.7em;
  border-radius: 18px;
  background-color: #ffffff;
  color: var(--wiz-color-sub-01);
  font-weight: bolder;
  position: absolute;
  left: 20px;
  top: 20px;
}

.lp-section-ops .ops-cta {
  display: flex;
  margin-top: 30px;
  justify-content: center;
}

/* Product Section */
.lp-section-product .product-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 20px;
}

.lp-section-product .product-card{
  width: 100%; 
  padding: 40px 15px;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  transition: 0.2s ease-in-out;
}

.lp-section-product .product-card:hover{
  border: 1px solid #404040;
  transform: translateY(-5px);
}

/* Inquiry and Career Section */
.lp-section-career {
  background-color: var(--wiz-color-main-03);
}

.lp-section-career .recruit-link{
  background-color: var(--wiz-color-preset-01);
  color: #FFF;
  padding: 15px;
  border-radius: 6px;
}

.lp-contact-card {
  padding: 20px;
  border-radius: 10px;
  background-color: #ffffff;
}

/* About Section */
.lp-section-about{
  background-color: #0C2E61;
  color: #FFF;
  font-weight: 300;
}

.lp-section-about .connect-link {
  display: flex;
  align-items: center;
}

.lp-section-about .company-info p {
  margin-bottom: 0;
}

.lp-section-about .company-info ul {
  list-style: none;
  margin: 0;
}

.lp-section-about .company-info ul li{
  padding-bottom: 10px;
}

.lp-section-about .company-info .info-icon {
    width: 20px;
    margin-right: 10px;
}

.lp-section-about .wiz-grid {
  gap: 80px;
  padding: 40px 0;
}

.lp-section-about .follow-links{
  display: flex;  
}

/* Front Page END
--------------------------------------------------------------------*/

/* Offshore Page START
--------------------------------------------------------------------*/

.ofs-about,
.ofs-benefit,
.ofs-why {
  padding-top: 50px;
  padding-bottom: 50px;
}

.ofs-cover-img {
  width: 100%;
  max-width: 675px;
}

.ofs-about h3{
  font-size: var(--wiz-font-03);
  color: var(--wiz-color-main-04);
}

.ofs-about li::marker {
  color: var(--wiz-color-sub-01);
}

.ofs-about hr {
  width: 100px;
  background-color: var(--wiz-color-sub-01);
}


@media (max-width: 1024px) {
  .ofs-about-img {
    display: none;
  }
}

.ofs-benefit .wiz-grid {
  margin-top: 50px;
}

.ofs-benefit hr {
  margin: 1em 0;
}

.ofs-benefit-header{
  font-size: var(--wiz-font-03);
  background-color: #ffffff;
  color: var(--wiz-color-sub-01);
  display: inline-block;
  padding: 0 10px;
  border-radius: 8px;
  margin: 0 0 10px;
}

.ofs-benefit-hsub{
  color: var(--wiz-color-light-02);
  font-weight: 300;
  font-style: italic;
  font-size: var(--wiz-font-n1);
}


/* Offshore Page END
--------------------------------------------------------------------*/

/* How it Works Page START
--------------------------------------------------------------------*/
.hiw-cover-img{
  right: 14.5vw;
}

.hiw-details {
  padding-top: 100px;
}

.hiw-details .wiz-stick {
  top: 30vh;
  min-height: 350px;
}


@media (max-width: 1024px) {
  
  .hiw-details .wiz-stick {
    min-height: unset;
  }
}

.hiw-list{
  padding-bottom: 100px;
}

.hiw-list-item{
  padding: 20px;
  border-radius: 15px;
  margin-bottom: 50px;
}

.hiw-list-item  picture {
  grid-column: 1;
  grid-row: 1 / 3;
}

.hiw-list-item span{
  width: 5.7em;
  padding: 5px 10px;
  border-radius: 19px;
  font-size: var(--wiz-font-n2);
  line-height: 1;
}

.hiw-list-item .plus{
  width: 7.5em;
}

.hiw-list-item h3{
  font-size: var(--wiz-font-03);
}

.hiw-list-item picture{
  width: 4em;
  height: 4em;
  border-radius: 60px;
  padding: 12px;
}

@media (max-width: 450px) {
  .hiw-list-item picture {
    position: absolute;
    right: 0;
  }
}

/* hiw list item color set start*/
.hiw-list-item{
  border: 1px solid var(--wiz-color-light-03);
}

.hiw-list-item span{
  background-color: var(--wiz-color-sub-02);
  color: #ffffff;
  font-weight: 500;
}

.hiw-list-item h3,
.hiw-list-item h4{
  color: var(--wiz-color-main-04);
}

.hiw-list-item picture{
  border: 2px solid var(--wiz-color-sub-02);
  color: var(--wiz-color-sub-01);
}

.hiw-list-item.start {
  background-image: linear-gradient(45deg, var(--wiz-color-main-04), var(--wiz-color-main-02));
  color: #ffffff;
  border: none;
}


.hiw-list-item.start span{
  background-color: #ffffff;
  color: var(--wiz-color-sub-02);
  border: 2px solid var(--wiz-color-sub-01);
}

.hiw-list-item.start h3,
.hiw-list-item.start h4{
  color: inherit;
}

.hiw-list-item.start picture{
  border: 2px solid #ffffff;
  color: inherit;
}

.hiw-list-item.end {
  border: none;
  background-image: linear-gradient(45deg, var(--wiz-color-sub-01), var(--wiz-color-sub-02));
  color: #ffffff;
}

.hiw-list-item.end span{
  background-color: #ffffff;
  color: var(--wiz-color-sub-02);
}

.hiw-list-item.end h3,
.hiw-list-item.end h4{
  color: inherit;
}

.hiw-list-item.end picture{
  border: 2px solid #ffffff;
  color: inherit;
}

/* hiw list item color set end*/

.hiw-list-item hr{
  width: 150px;
}

.hiw-list-item .item-content {
  margin-left: calc(4em + 10px);
}

@media (max-width: 450px) {
  .hiw-list-item .item-content {
    margin-left: 0;
  }
}

.hiw-inquire {
  padding-top: 50px;
  padding-bottom: 50px;
  background-image: linear-gradient(45deg, var(--wiz-color-main-05), var(--wiz-color-main-04));
  color: #ffffff;
}

.hiw-inquire-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  align-content: center;
}

.hiw-inquire-img {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100px;
  border: 3px solid;
  line-height: 1;
}


.hiw-inquire-img svg{
  height: 60%;
}

.hiw-sample{
  background-color: var(--wiz-color-main-03);
  padding-top: 50px;
  padding-bottom: 50px;
}

.hiw-sample-inner{
  position: relative;
  padding: 20px 20px 40px;
  border-radius: 20px;
  background-color: #ffffff;
}

.hiw-sample-inner h2{
  display: inline-block;
  position: absolute;
  left: 0;
  top: -3.2em;
  padding: 0 10px;
  border-radius: 24px;
  font-size: var(--wiz-font-01);
  background-color: var(--wiz-color-sub-01);
  color: #fff;
}

.hiw-sample-inner h3{
  color: inherit;
}

/* How it Works Page END
--------------------------------------------------------------------*/

/* Service Page START
--------------------------------------------------------------------*/

.srv-cover-img{
  right: 6vw;
}

.srv-details.feature {
  padding-top: 50px;
  padding-bottom: 50px;
  background-color: var(--wiz-color-main-04);
  color: #ffffff;
}

.srv-details .wiz-grid{
  margin: 60px 0;
}

.srv-details.feature .wiz-grid{
  margin: 0;
}

.srv-item{
  padding-left: 75px;
}

.srv-item-title{
  position: relative;
}

.srv-item-title h2{
  padding-top: 0.5em;
}

.srv-item-icon{
  display: flex;
  border: 2px solid var(--wiz-color-sub-01);
  padding: 15px;
  border-radius: 63px;
  position: absolute;
  left: -75px;
  background-color: #ffffff;
  color: var(--wiz-color-sub-01);
}

.srv-item-icon svg{
  height: 35px;
  width: 35px;
}

.srv-item h3 {
  font-size: var(--wiz-font-01);
}

.srv-item hr {
  margin: 0.5em 0;
  width: 150px;
  background-color: var(--wiz-color-sub-01);
}

.srv-tech-list{
  list-style: none;
}

.srv-tech-list li{
  margin-bottom: 5px;
  list-style: none;
}

.srv-tech.feature {
  padding: 50px 20px;
  background-color: var(--wiz-color-main-04);
  color: #ffffff;
}

.srv-tech-table {
  border-collapse: separate;
  border-spacing: 0 7px;
}

.srv-tech-cell {
  display: flex;
  padding: 0 5px 0 15px;
  gap: 5px 5px;
  flex-wrap: wrap;
}

.srv-tech-table tr td:first-child {
  padding-right: 10px;
  border-right: 1px solid #ffffff;
}

.srv-tech-pill {
  display: inline-block;
  padding: 0 10px;
  border-radius: 20px;
  font-weight: 500;
  text-wrap: nowrap;
  background-color: #ffffff;
  color: var(--wiz-color-sub-01);
}

@media (max-width: 1024px) {
  .srv-tech .wiz-grid.reverse {
    display: flex;
    flex-direction: column-reverse;
  }
  
  .srv-tech .tech-img {
    display: none;
  }
}

/* Service Page END
--------------------------------------------------------------------*/

/* Company Page START
--------------------------------------------------------------------*/
.cmp-block {
  display: flex;
  width: 280px;
  padding: 10px 10px 0;
  border-radius: 25px;
  border: 2px solid var(--wiz-color-main-01);
  flex-direction: column;
  justify-content: center;
  text-align: center;
  align-items: center;
}

.cmp-block figure{
  width: 40px;
  height: 40px;
}

.cmp-block h3 {
  font-size: var(--wiz-font-01);
  color: var(--wiz-color-sub-01);
}

.cmp-block p {
  font-size: var(--wiz-font-n1);
}

.cmp-hero-section {
  height: 30vh;
  min-height: 300px;
}

.cmp-cover-text {
  max-width: unset;
}

.cmp-cover-text__sub {
  max-width: unset;
}

/* Company Page END
--------------------------------------------------------------------*/
/* Career Page START
--------------------------------------------------------------------*/

.crr-cover-img{
  right: 5vw;
}

.crr-details{
  padding-bottom: 100px;
}

/* .crr-details .wiz-grid{ */
  /* padding: 0 20px; */
/* } */

/* Career Page END
--------------------------------------------------------------------*/

/* Contact Page START
--------------------------------------------------------------------*/

.cct-cover-img{
  right: 12vw;
}

.cct-details{
  padding-bottom: 100px;
}

/* .cct-details .wiz-grid{ */
  /* padding: 0 20px; */
/* } */

/* Contact Page END
--------------------------------------------------------------------*/

/* Work Archive, Single START
--------------------------------------------------------------------*/
.wrk-cover{
  height: 30vh;
  min-height: 200px;
  padding-top: 80px;
}

@media (max-width: 450px) {
  .wrk-cover {
    height: unset;
  } 
}

.wrk-list{
  padding: 0 20px 100px;
  gap: 20px;
}

.wrk-item{
  min-height: 300px;
  border: 1px solid #e0e0e0;
  padding: 20px;
  border-radius: 10px;
  transition: 0.2s ease-in-out;
}

.wrk-item img{
    border: 1px solid #c7c7c7;
    border-radius: 6px;
}

.wrk-item:hover{
  border: 1px solid #404040;
  transform: translateY(-5px);
}

.wrk-post-content .post-thumbnail {
    display: block;
    width: 70%;
    margin: 0 auto;
}

@media (max-width: 640px) {
  .wrk-post-content .post-thumbnail {
    width: calc(100% - 40px);
  }
}

.wrk-post-content.wrk-archive .post-thumbnail {
    width: 100%;
    height: 150px;
}

.wrk-post-content .post-thumbnail img{
  width: 100%;
  margin: 0 auto;
  border: 2px solid var(--wiz-color-main-03);
  border-radius: 10px;
}

.wrk-post-content.wrk-archive .post-thumbnail img{
    height: 100%;
    margin: 0;
    object-fit: cover;
    object-position: 0;
}

.wiz-cover.wrk-single-cover{
    padding: 80px 20px 20px;
}

.wrk-content-single {
    padding: 0 20px;
}

/* Work Archive, Single END
--------------------------------------------------------------------*/