/**
 * Theme Name: Humanica Child
 * Description: Humanica Child theme
 * Author: Creative Themes
 * Template: blocksy
 * Text Domain: blocksy
 */

/* LAYOUT */
.escape-right {
  width: calc(100% + (100vw - 100%) / 2) !important;
  padding-right: 0 !important;
}

.escape-full {
  width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.relative {
  position: relative;
}

/* COMPONENT */
.hmnc--smart-grid > div {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.hmnc--smart-grid-1 > div {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
}

.hmnc--smart-grid-3 > div {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.hmnc--smart-grid-5 > div {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.workplaceLogo {
  display: inline-block;
  position: relative;
  top: 7px;
  width: 215px;
  height: 50px;
  background-image: url('./assets/images/workplace-logo.webp');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.hmnc--list {
  padding-left: 20px;  
}

@media screen and (max-width: 768px) {
  .hide--br br {
    display: none;
  }
}

/* SLIDER */
.hmnc--slider-feature {
}

.hmnc--slider-feature .swiper-button-next,
.hmnc--slider-feature .swiper-button-prev {
  left: auto;
  right: 100px;
  top: auto;
  bottom: -70px;
  backdrop-filter: blur(20px);
  /* Only the last box-shadow will apply, so combine the shadows in one property: */
  box-shadow:
    0px 10px 10px 0px rgba(0, 0, 0, 0.1),
    0px 4px 4px 0px rgba(0, 0, 0, 0.05),
    0px 1px 0px 0px rgba(0, 0, 0, 0.05);
}

.hmnc--slider-feature .swiper-button-prev {
  right: 160px;
}

.hmnc--slider-feature .swiper-button-next:after {
  content: "";
  display: inline-block;
  background-image: url('data:image/svg+xml,<svg width="10" height="18" viewBox="0 0 10 18" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0.75 16.75L8.75 8.75L0.75 0.75" stroke="black" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/></svg>');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 8px;
  height: 16px;
}

.hmnc--slider-feature .swiper-button-prev:after {
  content: "";
  display: inline-block;
  background-image: url('data:image/svg+xml,<svg width="10" height="18" viewBox="0 0 10 18" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M8.75 16.75L0.75 8.75L8.75 0.75" stroke="black" stroke-opacity="0.5" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/></svg>');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 8px;
  height: 16px;
}

.hmnc--slider-slide {
  border-radius: 37px;
  overflow: hidden;
}

.hmnc--slider-feature-bg {
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.hmnc--slider-feature-box:hover .hmnc--slider-feature-bg {
  opacity: 1;
}

.hmnc--slide-blue:hover .hmnc--slide-feature-icon rect {
  fill: #3D9BF7;
  transition: fill 0.3s ease-in-out;
}

.hmnc--slide-blue:hover .hmnc--slide-feature-title-b {
  color: #3D9BF7;
  transition: color 0.3s ease-in-out;
}

.hmnc--slide-green:hover .hmnc--slide-feature-icon rect {
  fill: #71DAB9;
  transition: fill 0.3s ease-in-out;
}

/* TEXT */
.hmnc--highlight span {
  background: linear-gradient(136.92deg, #176AB1 17.1%, #B2E4F9 111.98%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
          /* text-fill-color is not standard, use -webkit-text-fill-color only */
}

.hmnc--highlight-green span {
  background: linear-gradient(112.69deg, #1A2F3F 15%, #558EA4 115.25%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hmnc--highlight-blue span {
  color: #0085C8;
}

.hmnc--highlight-gold span {  /* Fixed class name typo */
  color: #DEC076;
}

.hmnc--highlight-hana span {
  background: linear-gradient(90deg, #2B13AC 0%, #0B7CFF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hmnc--highlight-sap span {
  background: linear-gradient(112.08deg, #2B6ED1 0.07%, #062550 100.07%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}


.hmnc--highlight-size span {
  font-size: 60px;
}

/* COMPONENT */
.hmnc--ai-gradient {
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.hmnc--ai-box {
  overflow: hidden;
}

.hmnc--ai-box:hover .hmnc--ai-gradient {
  opacity: 1;
}

.hmnc--ai-icon-group {
  position: relative;
}

.hmnc--ai-icon-hover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.hmnc--ai-box:hover .hmnc--ai-icon-hover {
  opacity: 1;
}

.hmnc--ai-box:hover .hmnc--ai-title,
.hmnc--ai-box:hover .hmnc--ai-subtitle {
  color: #000000 !important;
}

.hmnc--ai-icon-black svg path {
  transition: fill 0.3s ease-in-out;
}

.hmnc--ai-box-2:hover .hmnc--ai-gradient {
  opacity: 1;
}

.hmnc--ai-box-2:hover .hmnc--ai-title {
  color: #000000 !important;
  transition: color 0.3s ease-in-out;
}

.hmnc--ai-box.hmnc--ai-box-3:hover .hmnc--ai-hana {
 color: #0156D2 !important;
 transition: color 0.3s ease-in-out;
}

/* WP FORM */
.wpforms-container .wpforms-field-label {
  color: #091825;
} 

.wpforms-container .wpforms-form ul {
  list-style: none;
}

.wpforms-container input[type=text],
.wpforms-container input[type=email],
.wpforms-container input[type=tel],
.wpforms-container input[type=number] {
  background-color: #ffffff;
  height: 48px;
  padding: 10px 20px;
  border: 0.5px solid #D0D8DF;
  box-shadow: 0px 4px 4px 0px #0000000A;
  border-radius: 10px;
}

.wpforms-container select {
  background-color: #ffffff;
  height: 48px;
  padding: 10px 20px;
  border: 0.5px solid #D0D8DF;
  box-shadow: 0px 4px 4px 0px #0000000A;
  border-radius: 10px;
}

.wpforms-container textarea {
  background-color: #ffffff;
  padding: 10px 20px;
  border: 0.5px solid #D0D8DF;
  box-shadow: 0px 4px 4px 0px #0000000A;
  border-radius: 10px;
}

.wpforms-container .wpforms-field input[type=checkbox].wpforms-error {
  border: 1px solid #FF0000;
}

.wpforms-required-label {
  color: #FF0000;
}

.wpforms-container .wpforms-submit {
  border-radius: 50px ;
}

/* XL Screen */
@media screen and (max-width: 1400px) {
  .padding--xl {
    padding: 0 30px;
  }

  .hide--br-xl br {
    display: none;
  }

  .escape-right-xl {
    width: calc(100% + (100vw - 100%) / 2) !important;
    padding-right: 0 !important;
  }

  .hmnc--dutybusiness-cover {
    flex-direction: column;
    gap: 30px;
  }

  .hmnc--dutybusiness-cover-inner {
    justify-content: center !important;
    align-items: center !important;
  }
}

/* Tablet */
@media screen and (max-width: 1000px) {
  .hmnc--highlight-size span {
    font-size: 40px;
  }

  .hide--br-tablet br {
    display: none;
  }

  .escape-right-tablet {
    width: calc(100% + (100vw - 100%) / 2) !important;
    padding-right: 0 !important;
  }

  .hmnc--slider-feature .swiper-button-next,
  .hmnc--slider-feature .swiper-button-prev {
    display: none !important;
  }

  .hmnc--dutybusiness-cover {
    flex-direction: row;
    gap: 30px;
  }

  .hmnc--dutybusiness-cover-inner {
    align-items: flex-end !important;
  }
}

/* Mobile */
@media screen and (max-width: 690px) {
  #header .ct-container,
  .hmnc--breadcrumbs-wrapper .ct-container {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 32px !important;
  }

  .hmnc--breadcrumbs-wrapper.hmnc--breadcrumbs-fixed .ct-container {
    padding: 0 !important;
  }


  .hmnc--dutybusiness-cover {
    flex-direction: column;
    gap: 30px;
  }

  .hmnc--dutybusiness-cover-inner {
    justify-content: center !important;
    align-items: center !important;
    
  }

  .hmnc--dutybusiness-cover-box {
    width: 100% !important;
    min-width: auto !important;
    max-width: 354px !important;
    height: auto !important;
  }
}
