/**
 * Here we import all the SCSS into one.
 * 
 * @version 1.0
 * @since 1.0
 */
/**
 * Custom mixins, re-done in SCSS
 *
 * @author AM.HIGH
 * @version 2.0
 * @since 1.0
 */
/**
 * Keyline using the :before pusedo selector
 */
/**
 * Keyline using the :after pusedo selector
 */
/**
 * Svg background image
 */
/**
 * Svg image setting width and height of the element
 */
/**
 * Shadow mixins
 */
/**
 * Border radius
 */
/**
 * Element alignment
 */
/**
 * Gradients
 */
/**
 * Appearance wrapper
 */
/**
 * Animations, transitions and transforms
 */
.display-none {
  display: none !important;
}

html body.admin-bar #wpadminbar {
  z-index: 1000000;
}

#HeaderWrapper.is-scrolled {
  box-shadow: 0 5px 20px 0 rgba(0, 0, 0, 0.3);
  background-color: #fff;
}

.market-excerpt {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

.scroll-down {
  animation: down-arrow 1.5s infinite;
}

@keyframes down-arrow {
  0% {
    transform: translateY(0);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: translateY(20px);
    opacity: 0;
  }
}
.page-banners {
  overflow: hidden !important;
}
.page-banners .banner-img {
  height: 100%;
}
.page-banners .banner-img img {
  height: 100%;
  object-fit: cover;
}

body {
  overflow-x: hidden;
  width: 100%;
}
body button.disabled,
body .button.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
body .btn-arrow svg {
  width: 30px;
}
body input:focus, body textarea:focus, body select:focus {
  box-shadow: unset !important;
}
body .fl-sectors {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(4, 2fr);
}
@media (max-width: 1023px) {
  body .fl-sectors {
    grid-template-columns: repeat(2, 4fr);
  }
}
@media (max-width: 767px) {
  body .fl-sectors {
    grid-template-columns: repeat(1, 1fr);
  }
}
body .fl-sectors .fl-sector {
  background: #fff;
  padding: 24px 16px;
  box-shadow: 0 4px 14px 0 rgba(5, 24, 65, 0.3);
  transition: all ease 0.3s;
  display: flex;
  gap: 16px;
  flex-direction: column;
  align-items: flex-start;
}
@media (max-width: 1023px) {
  body .fl-sectors .fl-sector {
    padding: 16px;
  }
}
body .fl-sectors .fl-sector:hover {
  box-shadow: 0 4px 24px 0 rgba(5, 24, 65, 0.5);
}
body .fl-sectors .fl-sector h3 {
  font-size: 24px;
  color: var(--e-global-color-primary);
  font-weight: 400;
  font-family: "Frank Ruhl Libre", Sans-serif;
  line-height: 1;
  margin: 0;
}
@media (max-width: 1023px) {
  body .fl-sectors .fl-sector h3 {
    font-size: 20px;
  }
}
body .fl-sectors .fl-sector .sector-content {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  font-size: var(--e-global-typography-text-font-size);
  color: var(--e-global-color-text);
  font-family: var(--e-global-typography-text-font-family), Sans-serif;
}
body .fl-sectors .fl-sector a {
  border: 1px solid var(--e-global-color-secondary);
  padding: 9px 22px;
  border-radius: 0;
  background: rgba(255, 86, 72, 0);
  color: var(--e-global-color-text);
  font-family: var(--e-global-typography-accent-font-family), Sans-serif;
  font-size: var(--e-global-typography-accent-font-size);
  font-weight: var(--e-global-typography-accent-font-weight);
  text-transform: uppercase;
  letter-spacing: var(--e-global-typography-accent-letter-spacing);
  line-height: 1;
  transition: all ease 0.3s;
  margin-top: auto;
}
body .fl-sectors .fl-sector a:hover {
  transform: scale(1.08);
}
body .service-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
}
body .service-popup .service-overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);
}
body .service-popup .service-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  position: relative;
  padding: 0 16px;
}
body .service-popup .service-inner .service-conts {
  width: 50%;
  background: #fff;
  border-radius: 0;
  padding: 24px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (max-width: 1023px) {
  body .service-popup .service-inner .service-conts {
    width: 80%;
  }
}
@media (max-width: 767px) {
  body .service-popup .service-inner .service-conts {
    width: 100%;
  }
}
body .service-popup .service-inner .service-conts .service-close {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 24px;
  font-weight: 600;
  color: #000;
  font-family: var(--e-global-typography-text-font-family), Sans-serif;
}
body .service-popup .service-inner .service-conts h2 {
  font-size: 32px;
  margin: 0;
}
@media (max-width: 1023px) {
  body .service-popup .service-inner .service-conts h2 {
    font-size: 24px;
  }
}
@media (max-width: 767px) {
  body .service-popup .service-inner .service-conts h2 {
    font-size: 20px;
  }
}
body .service-popup .service-inner .service-conts .service-content {
  font-size: var(--e-global-typography-text-font-size);
  color: var(--e-global-color-text);
  font-family: var(--e-global-typography-text-font-family), Sans-serif;
}
body .service-popup .service-inner .service-conts .service-content h3 {
  font-size: 26px;
}
@media (max-width: 1023px) {
  body .service-popup .service-inner .service-conts .service-content h3 {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  body .service-popup .service-inner .service-conts .service-content h3 {
    font-size: 18px;
  }
}
body .service-popup .service-inner .service-conts .service-content p:not(:last-child) {
  margin-bottom: 10px;
}
body .service-popup .service-inner .service-conts .service-content p {
  font-size: inherit;
  color: inherit;
  font-family: inherit;
}
