/* HOME - INTRO */
.h-intro-info {
}
.h-intro-button a {
  background: none !important;
  color: #000;
  padding: 0;
  font-size: 20px;
  border-bottom: 2px solid #000;
  border-radius: 0;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 10px;
  gap: 40px;
}
.h-intro-button a:hover {
  color: #000;
}
.h-intro-button a svg {
  transition: all ease 0.5s;
}
.h-intro-button a:hover svg {
  transform: rotate(45deg);
}

/* HOME - VISUALIZATION */
.h-box-item {
  position: relative;
  overflow: hidden;
}
.h-box-item-odd:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: calc(100% - calc(calc(100% - 1242px) / 2));
  background: rgb(226 227 228 / 40%);
  left: unset;
}
.h-box-item-even:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: calc(100% - calc(calc(100% - 1242px) / 2));
  background: rgb(226 227 228 / 40%);
  right: unset;
}
.h-box-button a {
  background: none !important;
  color: #000;
  padding: 0;
  font-size: 16px;
  border-bottom: 3px solid #000;
  border-radius: 0;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 7px;
  gap: 40px;
}
.h-box-button a:hover {
  color: #000;
}
.h-box-button a svg {
  transition: all ease 0.5s;
}
.h-box-button a:hover svg {
  transform: rotate(45deg);
}

.h-box-item .wpsc-swiper-pagination {
  position: absolute;
  left: 0;
  width: 100%;
  bottom: 10px;
  margin: 0;
}

.h-box-item .swiper-pagination-bullet {
  background: #d9d9d9 !important;
  width: 30px;
  height: 4px;
  border-radius: 4px;
  opacity: 1;
}

.h-box-item .wpsc-swiper-pagination .swiper-pagination-bullet-active {
  background: #414042 !important;
}

.archive-title {
  margin-bottom: 30px;
  font-weight: 300;
  font-size: 60px;
}
.archive-description {
  font-size: 18px;
}

/* COMPANY PAGE */
.company-p-s2 {
}
.company-p-s2 > .e-con-inner > .elementor-element {
  width: auto;
}
.company-carousel .swiper-cs-button-prev {
  width: 60px;
  height: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  /* background: rgb(255, 255, 255); */
  left: -80px;
  transition: all ease 0.8s;
}
.company-carousel .swiper-cs-button-next {
  width: 60px;
  height: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  /* background: rgb(255, 255, 255); */
  right: -80px;
  transition: all ease 0.8s;
}
.company-carousel .swiper-cs-button-prev:hover,
.company-carousel .swiper-cs-button-next:hover {
  background: rgb(255, 255, 255);
}
.company-carousel .swiper-cs-button svg {
  width: 12px;
  height: auto;
}
.company-carousel .swiper-cs-button svg path {
  stroke: #000;
}

/* COMPANY - TEAM BOX */
.team-box-item {
  position: relative;
}
.team-box-item .elementor-widget-text-editor {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 11;
  -webkit-box-orient: vertical;
}
.team-box-item:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0),
    rgba(0, 0, 0, 1)
  );
  opacity: 0;
  transition: all ease 0.3s;
}
.team-box-item:hover:after {
  opacity: 1;
}

.team-box-item .elementor-widget-image {
  position: relative;
  overflow: hidden;
  padding-top: 117%;
}
.team-box-item .elementor-widget-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-box-info {
  position: absolute;
  bottom: -30%;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 40px;
  z-index: 1;
  transition: all ease 0.3s;
  opacity: 0;
  flex-wrap: nowrap;
}
.team-box-item:hover .team-box-info {
  bottom: 0;
  opacity: 1;
}

body.elementor-editor-active .team-box-info {
  opacity: 1;
  bottom: 0;
}
body.elementor-editor-active .team-box-item:after {
  opacity: 1;
}

/* CONTACCT PAGE */
.contact-page {
  padding-left: calc(calc(100% - 1242px) / 2);
  overflow: hidden;
}
.contactForm-step {
  display: flex;
  flex-direction: column;
  gap: 26px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  z-index: -1;
}
.contactForm-step--active {
  opacity: 1;
  z-index: 2;
  position: relative;
}
.contactForm-container p {
  margin-bottom: 0;
  position: relative;
}
.contactForm-container label br {
  display: none;
}
.contactForm-box {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.contactForm-box--title {
  font-size: 12px;
  font-weight: 500;
  color: #141414;
}
.contactForm-box--input input,
.contactForm-box--input textarea {
  background: #fff;
  border-radius: 0;
  border: none;
  border: 1px solid #ebebeb;
  outline: none;
  box-shadow: none;
}
.contactForm-box--input input[type="file"] {
  padding: 0 !important;
  background: none;
  border: none;
  box-shadow: none !important;
  font-size: 12px !important;
}
.contactForm-box--input input:focus,
.contactForm-box--input textarea:focus {
  background: #fff !important;
  outline: none;
  border: 1px solid #ebebeb !important;
}
.contactForm-box--input input::placeholder {
  color: rgba(0, 0, 0, 0.3);
  font-size: 12px;
  font-weight: 400;
}
.custom-file{display: flex; justify-content: end;position: relative;}
.custom-file-input{position: absolute;}
.custom-file p{display: flex;align-items: center;gap: 4px;}
.custom-file input[type="file"] {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
}

.custom-file-button {
  display: inline-block; padding: 4px 8px; background: #ebebeb; color: #141414; border-radius: 4px; cursor: pointer; font-size: 12px; border: 1px solid #ccc;
}

.custom-file-name {
    color: #666;
    font-size:12px;
}
.contactForm-listBtn {
  margin-top: 4px;
  display: flex;
  justify-content: space-between;
}
.contactForm-stepBtn {
  display: inline-flex;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  align-items: center;
  cursor: pointer;
}
.contactForm-backBtn {
  display: inline-flex;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  align-items: center;
  cursor: pointer;
  color: #666;
}
.contactForm-backBtn:hover {
  color: #141414;
}
.contactForm-backBtn svg {
  transform: rotate(180deg);
}
.contactForm-info {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.contactForm-info--title {
  color: #141414;
  font-weight: 700;
  font-size: 24px;
}
.contactForm-info--page {
  text-align: right;
  font-size: 10px;
  color: #141414;
}
.contactForm-info--progress {
  display: block;
  height: 3px;
  background: #ebebeb;
  margin-top: 4px;
  position: relative;
}
.contactForm-info--progress p {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: #141414;
}

.contactForm-submitBtn p {
  position: relative;
}
.contactForm-submitBtn p input {
  background: #141414;
  padding: 10px 20px;
}
.contactForm-submitBtn p .wpcf7-spinner {
  position: absolute;
}
.contactForm-box--textarea {
  display: flex;
  flex-direction: row;
}
.contactForm-box--textarea .contactForm-box--title {
  width: 20%;
}
.contactForm-box--textarea .contactForm-box--title span {
  color: red;
}
.contactForm-box--textarea .contactForm-box--input {
  width: 80%;
}
.contact-page .wpcf7-list-item {
  display: inline-block;
  margin: 0;
}
.contactForm-box--fileupload {
  background: #f5f5f5;
  padding: 10px;
  align-items: center;
}
.contactForm-box--policy span {
  font-size: 12px;
}
.contactForm-box--policy input {
  width: 1em !important;
  min-width: 1em !important;
}
.wpcf7 .wpcf7-not-valid-tip {
  font-size: 12px;
}
body .wpcf7 form.invalid .wpcf7-response-output {
  margin: 0;
  border: none;
  background: #ebebeb;
  padding: 8px 12px;
}
.contactForm-box--checknote {
  font-style: italic;
  color: #666;
}
.contactForm-box--checknote p {
  font-size: 13px;
}
.contactForm-box--checknote span {
  color: red;
  margin-right: 4px;
}
.contactForm-groupBox {
  display: flex;
  gap: 30px;
}
.contactForm-groupBox .contactForm-box {
  width: calc(50% - 15px);
}
.contactForm-box--inputList .wpcf7-checkbox {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.contactForm-box--inputList .wpcf7-list-item-label {
  font-size: 12px;
}
.contactForm-box--inputList .wpcf7-list-item input {
  min-width: 1em;
  width: 1em;
}

/* CONTACT US - VALIDATE */
.contactForm-error input,
.contactForm-error textarea,
.contactForm-error select {
  border-color: #dc3545;
}

.contactForm-error .contactForm-box--inputList {
  border: 1px solid #dc3545;
  padding: 10px;
}

.contactForm-error-text {
  display: block;
  margin-top: 8px;
  color: #dc3545;
  font-size: 13px;
  line-height: 1.5;
}

body .wpcf7 form.sent .wpcf7-response-output {
  border-color: transparent !important;
  background: #bff5c4;
  color: #333;
  padding: 10px 15px;
}

/* TERM */
body .single-term {
  max-width: 1242px;
  margin: 120px auto 60px auto !important;
}

/* VIRTUAL */
.psv-tooltip {
  background: none !important;
  box-shadow: none;
}
.psv-tooltip-content {
  background: #fff !important;
  border-radius: 8px;
  overflow: hidden;
  text-shadow: none;
}
.psv-tooltip-content * {
  font-family: "Inter";
}
.psv-tooltip-content h3 {
  color: #141414;
  font-size: 22px;
  font-weight: 500;
}
.psv-tooltip-content img {
  width: 100%;
  margin: 0 !important;
  margin-bottom: 6px !important;
  border-radius: 4px;
}
.psv-virtual-tour-tooltip p {
  color: #141414;
}
.psv-tooltip-arrow {
  border-top-color: #fff !important;
}
