.other-industries {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  background-color: #ffffff;
  /* SECTORS*/
}
.other-industries .sectors {
  position: relative;
  width: 100%;
  background-color: #6ca4b1;
  overflow: hidden;
}
.other-industries .sectors::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 35vh;
  background: linear-gradient(180deg, rgba(109, 165, 178, 0.36) 0%, rgba(41, 107, 119, 0.36) 100%);
  pointer-events: none;
  z-index: 1;
}
.other-industries .sectors .main-content > * {
  position: relative;
  z-index: 2;
}
.other-industries .sectors .title {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 24vh 0px 14vh;
  align-self: stretch;
  width: 100%;
  align-items: center;
  position: relative;
  flex: 0 0 auto;
}
.other-industries .sectors .title .section-title {
  color: white;
  font-weight: 100;
  font-size: 3.45em;
}
.other-industries .sectors .title .section-description {
  color: white;
  font-weight: 100;
  font-size: 2em;
  text-align: center;
  line-height: 1.2em;
  width: 60%;
}
@media (max-width: 991.98px) {
  .other-industries .sectors .title .section-description {
    width: 100%;
  }
}
.other-industries .sectors .main-content {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  position: relative;
  flex: 0 0 auto;
}
.other-industries .sectors .main-content .row {
  background-color: transparent;
}
.other-industries .sectors .main-content .row .sector {
  color: white;
  display: inline-flex;
  min-height: calc(260px * var(--scale));
  align-items: flex-start;
  gap: 30px;
}
@media (max-width: 991.98px) {
  .other-industries .sectors .main-content .row .sector {
    flex-direction: column;
  }
}
.other-industries .sectors .main-content .row .sector .sector-image {
  position: relative;
  align-self: stretch;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-right: 10px solid #8dd3e3;
  border-top-left-radius: 12px;
  border-bottom-left-radius: 12px;
  overflow: hidden;
}
@media (max-width: 991.98px) {
  .other-industries .sectors .main-content .row .sector .sector-image {
    width: 100%;
    height: 130px;
    border-top-left-radius: 12px;
    border-bottom-left-radius: 0px;
    border-top-right-radius: 12px;
  }
}
.other-industries .sectors .main-content .row .sector .sector-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, #8dc1cd 0%, #efc6aa 100%);
  opacity: 0.8;
  mix-blend-mode: hard-light;
  pointer-events: none;
  z-index: 1;
}
.other-industries .sectors .main-content .row .sector .sector-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-top-left-radius: 12px;
  border-bottom-left-radius: 12px;
  z-index: 0;
  position: relative;
}
.other-industries .sectors .main-content .row .sector .sector-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 1em 2em;
  gap: 11px;
}
@media (max-width: 991.98px) {
  .other-industries .sectors .main-content .row .sector .sector-content {
    gap: 0px;
    padding: 0em;
  }
}
.other-industries .sectors .main-content .row .sector .sector-content .sector-title {
  font-weight: 400;
  font-size: 1.8em;
  text-transform: uppercase;
}
.other-industries .sectors .main-content .row .sector .sector-content .sector-description {
  font-size: 1.2em;
  line-height: 1.3em;
  color: #def9ff;
}
.other-industries .sectors .main-content .row .sector .sector-content .sector-tags {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  position: relative;
  align-self: stretch;
  width: 100%;
  gap: calc(13px * var(--scale)) calc(13px * var(--scale));
  padding: calc(19px * var(--scale)) 0px 0px;
}
.other-industries .sectors .main-content .row .sector .sector-content .sector-tags .sector-tag {
  padding: calc(6px * var(--scale)) calc(16px * var(--scale));
  background-color: #ccf5ff;
  border-radius: 3px;
  color: #79a0a9;
  transition: all 0.2s ease-in-out;
  position: relative;
  font-size: 0.9em;
}
.other-industries .sectors .main-content .row .sector .sector-content .sector-tags .sector-tag::after {
  content: "click to enquire";
  position: absolute;
  bottom: -1px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #49828f;
  color: white;
  width: 100%;
  text-align: center;
  font-size: 0.7em;
  padding: 1px 8px;
  border-radius: 0px 0px 3px 3px;
  white-space: nowrap;
  pointer-events: none;
  z-index: 10;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.other-industries .sectors .main-content .row .sector .sector-content .sector-tags .sector-tag:hover {
  background-color: white !important;
  color: #51a5b7 !important;
  padding-bottom: 1.4em !important;
}
.other-industries .sectors .main-content .row .sector .sector-content .sector-tags .sector-tag:hover::after {
  opacity: 1;
}
.other-industries .sectors .call-to-action {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  width: 100%;
  padding: 7em;
}
@media (max-width: 991.98px) {
  .other-industries .sectors .call-to-action {
    flex-direction: column;
  }
}
.other-industries .sectors .call-to-action .cta-title {
  color: #ffffff;
  font-size: 2.6em;
  text-align: right;
  line-height: 1em;
}
@media (max-width: 991.98px) {
  .other-industries .sectors .call-to-action .cta-title {
    text-align: left;
  }
}
.other-industries .sectors .call-to-action .cta-title .first {
  font-size: 0.9em;
  font-weight: 100;
}
.other-industries .sectors .call-to-action .cta-title .second {
  font-size: 1.2em;
  font-weight: 100;
}
.other-industries .sectors .call-to-action .cta-title .question-mark {
  font-size: 1.2em;
  font-weight: 500;
}

.corner-triangle-up {
  position: relative;
  z-index: 910;
}
.corner-triangle-up .triangle {
  position: absolute;
  top: 2.3em;
  right: 0;
  width: 0;
  height: 0;
  z-index: 2;
}
.corner-triangle-up.to-servicios .triangle {
  border-top: 14em solid #3b81c0;
  border-left: 14em solid transparent;
}
@media (max-width: 991.98px) {
  .corner-triangle-up.to-servicios .triangle {
    border-top: 8em solid #3b81c0;
    border-left: 8em solid transparent;
  }
}
.corner-triangle-up.to-levels .triangle {
  border-top: 14em solid #e57c15;
  border-left: 14em solid transparent;
}
@media (max-width: 991.98px) {
  .corner-triangle-up.to-levels .triangle {
    border-top: 8em solid #e57c15;
    border-left: 8em solid transparent;
  }
}
.corner-triangle-up .link {
  position: absolute;
  z-index: 50;
  right: 0;
  padding: 1rem;
  font-size: 3em;
  width: 3em;
  height: 4em;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 991.98px) {
  .corner-triangle-up .link {
    font-size: 2.5em;
    width: 2em;
    height: 2em;
  }
}
.corner-triangle-up .link a {
  color: white;
}

/* TOOLTIP */
.tooltip {
  background-color: transparent;
}
.tooltip .tooltip-inner {
  background-color: #4f7d87;
  color: #8ac1ce;
  font-size: 0.8em;
  padding: 3px 6px;
  border-radius: 0px;
  border: none;
  box-shadow: none;
}
.tooltip .tooltip-arrow {
  border-color: #4f7d87;
}