/* custom scrollbar */
::-webkit-scrollbar {
  width: 12px;
}
::-webkit-scrollbar-track {
  background: #fff;
}
::-webkit-scrollbar-thumb {
  background-color: #00322d;
  border-radius: 10px;
  border: 2px solid #fff;
}
body::-webkit-scrollbar-track {
  border-radius: 1px;
}
body::-webkit-scrollbar-thumb {
  border-radius: 10px;
}
/* custom scrollbar */
/* animated button hover effect */
.main-btn {
  display: inline-flex;
  font-family: "Space Grotesk";
  align-items: center;
  gap: 12px;
  background: transparent;
  border: none;
  color: #0a7d3b;
  font-weight: 700;
  cursor: pointer;
  padding: 0px !important;
  font-size: 14px !important;
  line-height: 15px !important;
  /* margin-top: 40px; */
}
.main-btn .circle {
  width: 30px;
  height: 30px;
  border: 1.33px solid #0a7d3b;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.main-btn .arrow {
  transform: rotate(-45deg);
  transition: all 0.3s ease;
  width: 20px;
  height: 20px;
}
.main-btn:hover .circle {
  background: #0a7d3b;
}

.main-btn:hover .arrow {
  transform: rotate(0deg) translateX(3px);
  color: #fff !important;
  margin-left: -6px !important;
}
.main-btn:hover span {
  color: #0a7d3b !important;
}
/* .main-btn:hover svg {
  color: #fff !important;
} */
.main-btn:hover,
.main-btn:focus,
.main-btn:active {
  background: transparent !important;
  color: #0a7d3b !important;
}
@media (max-width: 768px) {
  .main-btn {
    margin-top: 0px !important;
    font-size: 12px !important;
  }
}
/* animated button hover effect */

/* animated button (white-border) hover effect */
.white-btn {
  display: inline-flex;
  font-family: "Space Grotesk";
  align-items: center;
  gap: 12px;
  background: transparent;
  border: none;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  padding: 0px !important;
  font-size: 14px !important;
  line-height: 15px !important;
}
.white-btn .circle {
  width: 30px;
  height: 30px;
  border: 1.33px solid #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.white-btn .arrow {
  transform: rotate(-45deg);
  transition: all 0.3s ease;
  width: 20px;
  height: 20px;
}
.white-btn:hover .circle {
  background: #00a83e;
}

.white-btn:hover .arrow {
  transform: rotate(0deg) translateX(3px);
  color: #fff !important;
  margin-left: -6.5px !important;
}
.white-btn:hover span {
  color: #fff !important;
}

.white-btn:hover,
.white-btn:focus,
.white-btn:active {
  background: transparent !important;
  color: #fff !important;
}
@media (max-width: 768px) {
  .white-btn {
    /* margin-top: 55px !important; */
    font-size: 12px !important;
  }
}

/* animated button (Green-border) hover effect */
.green-btn {
  display: inline-flex;
  font-family: "Space Grotesk";
  align-items: center;
  gap: 12px;
  background: transparent;
  border: none;
  color: #00322d;
  font-weight: 600;
  cursor: pointer;
  padding: 0px !important;
  font-size: 14px !important;
  line-height: 15px !important;
}
.green-btn .circle {
  width: 30px;
  height: 30px;
  border: 1.33px solid #00322d;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.green-btn .arrow {
  transform: rotate(-45deg);
  transition: all 0.3s ease;
  width: 20px;
  height: 20px;
}
.green-btn:hover .circle {
  background: #00a83e;
}

.green-btn:hover .arrow {
  transform: rotate(0deg) translateX(3px);
  color: #fff !important;
  margin-left: -5px !important;
}
.green-btn:hover span {
  color: #00322d !important;
}
/* .green-btn:hover svg {
  color: #fff !important;
} */
.green-btn:hover {
  background: transparent !important;
  color: #fff !important;
}
@media (max-width: 768px) {
  .green-btn {
    /* margin-top: 55px !important; */
    font-size: 12px !important;
  }
}
/* Menu item base */
.custom-header .hfe-nav-menu .hfe-menu-item {
  position: relative;
  display: inline-block;
}

/* Top line (hidden initially) */
.custom-header .hfe-nav-menu .hfe-menu-item::before {
  content: "";
  position: absolute;
  top: -1.88em;
  left: 0;
  width: 0%;
  height: 2px !important;
  background-color: #00a83e !important;
  transition: width 0.4s ease;
}

/* Hover par line left → right */
.custom-header .hfe-nav-menu .hfe-menu-item:hover::before {
  width: 100%;
}

/* Reverse animation (important trick) */
.custom-header .hfe-nav-menu .hfe-menu-item::after {
  content: "";
  position: absolute;
  top: -1.86em;
  right: 0;
  width: 100%;
  height: 2px !important;
  background-color: #00a83e !important;
  transform: scaleX(0) !important;
  transform-origin: right !important;
  transition: transform 0.8s ease !important;
}

/* Hover remove hone par right → left hide */
.custom-header .hfe-nav-menu .hfe-menu-item:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}
.hfe-nav-menu__layout-horizontal {
  width: 100% !important;
}
/* Parent section */
.top-section {
  position: relative;
  z-index: 1;
  overflow: hidden !important;
}
.home-banner {
  overflow: hidden !important;
}

/* Overlay layer */
.top-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 50, 45, 0.5);
  z-index: 1;
}

.top-section > * {
  position: relative;
  z-index: 2;
}

.custom-contact-form {
  max-width: 800px;
  font-family: "Space Grotesk";
}
.custom-contact-form p {
  margin: 0 !important;
}
/* ROW */
.custom-contact-form .row {
  display: flex;
  gap: 20px;
}

/* FIELD */
.custom-contact-form .field {
  flex: 1;
  display: flex;
  flex-direction: column;
  margin-bottom: 50px;
}

.custom-contact-form .field.full {
  width: 100%;
}

.custom-contact-form label {
  font-size: 13px;
  line-height: 15px;
  text-transform: uppercase;
  font-weight: bold;
  color: #00322d !important;
  margin-bottom: 15px;
}

/* INPUT */
.custom-contact-form input,
.custom-contact-form textarea {
  padding: 12px;
  border: 0.5px solid #86d995 !important;
  color: #00322d !important;
  background: #f6fdf2 !important;
  border-radius: 5px !important;
  outline: none;
  width: 100%;
}

.custom-contact-form textarea {
  height: 120px;
  resize: none;
}

/* CHECKBOX */
.custom-contact-form .checkbox {
  display: flex;
  gap: 10px;
  font-size: 13px;
  margin: 15px 0;
}

.custom-contact-form .checkbox a {
  color: green;
  text-decoration: underline;
}

.submit-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: transparent;
  border: none;
  color: #00a83e;
  font-weight: 600;
  cursor: pointer;
  padding: 0px !important;
  font-size: 14px !important;
  line-height: 15px !important;
  margin-top: 40px;
}
.custom-contact-form input::placeholder,
.custom-contact-form textarea::placeholder {
  color: #86d995;
  opacity: 1;
}
.custom-contact-form .wpcf7-list-item {
  margin: 0em !important;
}
/* circle */
.submit-btn .circle {
  width: 30px;
  height: 30px;
  border: 1.33px solid #00a83e;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

/* arrow initial (thoda cross feel) */
.submit-btn .arrow {
  transform: rotate(-45deg);
  transition: all 0.3s ease;
  width: 20px;
  height: 20px;
}

/* HOVER EFFECT */
.submit-btn:hover .circle {
  background: #00a83e !important;
}

.submit-btn:hover .arrow {
  transform: rotate(0deg) translateX(3px);
  color: #fff !important;
  margin-left: -5px !important;
}
.submit-btn:hover span {
  color: #00a83e !important;
}
/* .submit-btn:hover svg {
  color: #fff !important;
} */
.submit-btn:hover,
.submit-btn:focus,
.submit-btn:active {
  background: transparent !important;
  color: #00a83e !important;
}
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
  border: 1.33px solid #0a7d3b !important;
  color: #0a7d3b !important;
  margin: 1.5em 0em 0em 0em !important;
}
.checkbox label {
  display: flex;
  align-items: flex-start;
  gap: 17px;
  font-family: "Zalando Sans", sans-serif !important;
  text-transform: none !important;
  font-size: 17px !important;
  line-height: 25px !important;
  font-weight: 200 !important;
  margin-top: 14px !important;
}
.checkbox label a {
  color: #00322d !important;
  /* text-decoration: none !important; */
  cursor: pointer !important;
  font-weight: 400 !important;
}
.checkbox input {
  width: auto !important;
}
/* default checkbox hide */
.custom-contact-form input[type="checkbox"] {
  width: 20px !important;
  height: 20px !important;
  border-radius: 0 !important;
  accent-color: #00322d !important;
  cursor: pointer !important;
  margin-top: 4px;
}
.custom-contact-form .checkbox label span {
  width: 31em;
}
.custom-contact-form input,
.custom-contact-form textarea,
.report-abuse-form input,
.report-abuse-form textarea {
  font-family: "Zalando Sans" !important;
  font-size: 13px !important;
}
/* report and abuse form*/
.report-abuse-form {
  max-width: 800px;
  font-family: "Space Grotesk";
}
.report-abuse-form p {
  margin: 0 !important;
}

/* ROW */
.report-abuse-form .row {
  display: flex;
  gap: 20px;
}

/* FIELD */
.report-abuse-form .field {
  flex: 1;
  display: flex;
  flex-direction: column;
  margin-bottom: 50px;
}

.report-abuse-form .field.full {
  width: 100%;
}

.report-abuse-form label {
  font-size: 13px;
  line-height: 15px;
  text-transform: uppercase;
  font-weight: bold;
  color: #00322d !important;
  margin-bottom: 15px;
}
.custom-file .file-btn {
  margin-bottom: 0px !important;
}
/* INPUT */
.report-abuse-form input,
.report-abuse-form textarea {
  padding: 12px;
  border: 0.5px solid #86d995 !important;
  color: #00322d !important;
  background: #f6fdf2 !important;
  border-radius: 5px !important;
  font-weight: 500;
  outline: none;
  font-size: 13px;
  line-height: 25px;
  width: 100%;
}
.file-btn .wpcf7-not-valid-tip {
  /* position: absolute;
  opacity: 1;
  margin: 1.5em 0em 0em 0em !important; */
}
.report-abuse-form textarea {
  height: 120px;
  resize: none;
}

/* FILE INPUT  */
/* wrapper */
.report-abuse-form .custom-file {
  display: flex;
  align-items: center;
  border: none;
  border-radius: 5px;
  overflow: hidden;
  /* background: #f6fdf2; */
  position: relative;
  gap: 15px;
  overflow: visible;
  align-items: stretch;
}

/* hidden actual input */
.report-abuse-form .file-input {
  position: absolute;
  opacity: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
.file-upload-wrapper {
  margin-bottom: 50px;
}
/* left button */
.report-abuse-form .custom-file .file-btn {
  background: #86d995;
  border: 0.5px solid #86d995;
  color: #00322d;
  font-family: "Zalando Sans", sans-serif !important;
  text-transform: capitalize;
  font-weight: 200;
  padding: 10px 18px;
  font-size: 13px;
  line-height: 25px;
  cursor: pointer;
  border-radius: 5px;
  white-space: nowrap;
}
.report-abuse-form .file-btn:hover {
  color: #86d995;
  background-color: #fff;
  border: 0.5px solid #86d995;
}
/* right text */
.report-abuse-form .file-name {
  flex: 1;
  padding: 10px 15px;
  border: 0.5px solid #86d995;
  border-radius: 5px;
  background: #f6fdf2;
  font-size: 13px;
  line-height: 25px;
  color: #86d995;
}

.report-abuse-form .top-checkbox {
  margin-bottom: 30px;
}

/* checkbox label */
.report-abuse-form .top-checkbox label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Zalando Sans", sans-serif;
  font-size: 14px;
  text-transform: none;
  font-weight: 400;
  color: #00322d;
  cursor: pointer;
}

/* checkbox box */
.report-abuse-form .top-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: #00322d;
  border-radius: 0 !important;
  margin-top: -1.5px !important;
}

/* CHECKBOX */
.report-abuse-form .checkbox {
  display: flex;
  gap: 10px;
  font-size: 13px;
  margin: 0;
}

.report-abuse-form .checkbox a {
  color: #00322d;
}

/* PLACEHOLDER */
.report-abuse-form input::placeholder,
.report-abuse-form textarea::placeholder {
  color: #86d995;
  opacity: 1;
}

/* CHECKBOX STYLE */
.report-abuse-form input[type="checkbox"] {
  width: 20px !important;
  height: 20px !important;
  border-radius: 0 !important;
  accent-color: #00322d !important;
  margin-top: 4px;
}
.report-abuse-form .checkbox label span {
  width: 31em;
}
.report-abuse-form .wpcf7-list-item {
  margin: 0em !important;
}

.e-n-accordion-item:last-child {
  border-bottom: 1px solid #86d995;
}
/* #e-n-accordion-item-23911{
    border-bottom: 1px solid #86D995;
} */

.light-green .main-btn {
  color: #00a83e !important;
  text-transform: uppercase !important;
}
.light-green .main-btn .circle {
  border: 1.33px solid #00a83e !important;
}
.light-green .main-btn:hover .circle {
  background: #00a83e !important;
}
.light-green .main-btn:hover span {
  text-transform: uppercase !important;
  color: #00a83e !important;
}
.light-green .main-btn:hover,
.light-green .main-btn:focus,
.light-green .main-btn:active {
  color: #00a83e !important;
}
#cems-container {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.cems-item {
  background: #e4f0dc;
  padding: 30px;
  border-radius: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cems-title {
  font-family: "Space Grotesk";
  font-size: 20px;
  line-height: 25px;
  font-weight: 500;
  color: #00322d;
}

.download-btn {
  background: #86d995;
  font-family: "Zalando Sans";
  border: 0.5px solid #86d995;
  padding: 8px 15px;
  border-radius: 5px;
  color: #00322d;
  text-decoration: none;
  font-weight: 250;
  font-size: 13px;
  line-height: 25px;
}
.download-btn:hover {
  border: 0.5px solid #86d995;
  background-color: #e4f0dc;
}
.elementor-element-822b260 .light-green .main-btn {
  margin-top: 70px !important;
}
/* .custom-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
  z-index: 999;
  transition: all 0.3s ease;
}
.custom-header {
  transform: translateY(0);
}

.custom-header.sticky-active {
  animation: slideDown 0.4s ease forwards;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
} */

#press-container {
  display: flex !important;
  flex-direction: column;
  gap: 40px;
}

.press-item {
  background: #e4f0dc;
  padding: 50px 50px !important;
  border-radius: 10px;
  justify-content: space-between;
  align-items: center;
}
.press-date {
  font-size: 14px;
  color: #00a83e;
  margin-bottom: 50px;
  font-family: "Space Grotesk";
  font-weight: 700;
  line-height: 15px;
  letter-spacing: 0.95px;
  text-transform: uppercase;
}

.press-title {
  font-family: "Space Grotesk";
  font-size: 20px;
  line-height: 25px;
  font-weight: 500;
  color: #00322d;
}

.press-desc {
  font-size: 17px;
  font-weight: 200;
  color: #00322d;
  font-family: "Zalando Sans";
  margin-top: 30px;
  margin-bottom: 50px;
}

.press-btn {
  background: #86d995;
  font-family: "Zalando Sans";
  border: 0.5px solid #86d995;
  padding: 8px 15px;
  border-radius: 5px;
  color: #00322d;
  text-decoration: none;
  font-weight: 250;
  font-size: 13px;
  line-height: 25px;
  margin-top: 50px;
}
.press-btn:hover {
  border: 0.5px solid #86d995;
  background-color: #e4f0dc;
}
.mobile-only {
  display: none;
}
.mobile-header .hfe-nav-menu li:not(:first-child) {
  border-top: 0.5px solid #00a83e !important;
}
/* Hide default opened icon */
.faq-sec .e-opened {
  display: none !important;
}

/* Default Closed State */
.faq-sec .e-n-accordion-item-title-icon svg rect:first-child {
  fill: transparent !important;
  transition: all 0.7s ease;
}

.faq-sec .e-n-accordion-item-title-icon svg rect:last-child {
  stroke: #00a83e !important;
}

.faq-sec .e-n-accordion-item-title-icon svg path {
  fill: #00a83e !important;
  transition: all 0.3s ease;
  transform-origin: center;
}

/* Open State */
.faq-sec .e-n-accordion-item[open] .e-n-accordion-item-title-icon svg {
  transform: rotate(45deg);
  transition: transform 0.7s ease;
}

.faq-sec
  .e-n-accordion-item[open]
  .e-n-accordion-item-title-icon
  svg
  rect:first-child {
  fill: #00a83e !important;
}

.faq-sec .e-n-accordion-item[open] .e-n-accordion-item-title-icon svg path {
  fill: #fff !important;
}
.elementor-widget-n-accordion
  .e-n-accordion-item[open]
  > .e-n-accordion-item-title
  .e-n-accordion-item-title-icon
  .e-closed {
  display: block !important;
}

.enemalta-sec{
  display: none;
}
.about-delimara-sec{
  display: none;
}
.lng-sec{
  display: none;
}

































@media (min-width: 1537px) {
  body:not(.rtl)
    .elementor-11
    .elementor-element.elementor-element-c680daa
    .hfe-nav-menu__layout-horizontal
    .hfe-nav-menu
    > li.menu-item:not(:last-child) {
    margin-left: 50px !important;
  }
  body:not(.rtl)
    .elementor-262
    .elementor-element.elementor-element-c680daa
    .hfe-nav-menu__layout-horizontal
    .hfe-nav-menu
    > li.menu-item:not(:last-child) {
    margin-left: 50px !important;
  }
}

/* RESPONSIVE */
@media (min-width: 1536px) and (max-width: 1690px) {
  .elementor-11 .elementor-element.elementor-element-ba1eb3b {
    column-gap: 120px !important;
  }
  .elementor-11 .elementor-element.elementor-element-30031d4 {
    gap: 60px;
  }
}
@media (min-width: 1536px) and (max-width: 1720px) {
  .elementor-11 .elementor-element.elementor-element-ba1eb3b {
    column-gap: 60px !important;
  }
}
@media (min-width: 1241px) and (max-width: 1270px) {
  .elementor-11 .elementor-element.elementor-element-30031d4 {
    column-gap: 25px;
  }
}
@media (max-width: 1024px) {
  .report-abuse-form,
  .custom-contact-form {
    max-width: 100% !important;
  }
}
@media (max-width: 1240px) {
  .mobile-only {
    display: block;
  }
}
@media (max-width: 768px) {
  .mobile-overlay::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #00322d80 !important;
    z-index: 1;
  }
  .mobile-overlay {
    overflow: hidden !important;
  }
  .custom-contact-form .row {
    flex-direction: column;
  }
  .map-mobile iframe {
    height: 300px !important;
  }
  .custom-contact-form .row {
    gap: 0px !important;
  }
  .custom-contact-form .checkbox {
    margin: 20px 0 !important;
  }
  .custom-contact-form .checkbox label {
    font-size: 13px !important;
    line-height: 18px !important;
  }
  .submit-btn {
    margin-top: 40px !important;
    font-size: 12px !important;
  }
  .custom-contact-form .field {
    margin-bottom: 50px !important;
  }
  .custom-contact-form .checkbox label span {
    width: 19em !important;
  }
  .custom-contact-form input[type="checkbox"] {
    width: 17px !important;
    height: 17px !important;
    margin-top: 2px;
  }

  .report-abuse-form .row {
    flex-direction: column;
    gap: 0px !important;
  }

  .report-abuse-form .checkbox {
    margin: 20px 0 !important;
  }

  .report-abuse-form .checkbox label {
    font-size: 13px !important;
    line-height: 18px !important;
  }

  .report-abuse-form .field {
    margin-bottom: 50px !important;
  }

  .report-abuse-form .checkbox label span {
    width: 19em !important;
  }

  .report-abuse-form input[type="checkbox"] {
    width: 17px !important;
    height: 17px !important;
    margin-top: 2px;
  }

  .report-abuse-form .submit-btn {
    margin-top: 30px !important;
    font-size: 12px !important;
  }

  /* 🔥 extra (recommended for file input mobile) */
  .report-abuse-form input[type="file"] {
    font-size: 12px;
  }
  .report-abuse-form .file-name {
    font-size: 13px !important;
    line-height: 25px;
  }
  .faq-sec .e-n-accordion-item-title-header {
    width: 72%;
  }
  .report-abuse-form .top-checkbox {
    margin-bottom: 70px;
  }
  .cems-item {
    display: block;
    text-align: center;
    padding-top: 50px !important;
    padding-bottom: 50px !important;
  }
  .cems-title {
    margin-bottom: 30px !important;
    font-size: 16px;
    line-height: 23px;
    font-weight: 400;
  }
  #cems-container {
    gap: 30px;
  }
  .elementor-element-822b260 .light-green .main-btn {
    margin-top: 60px !important;
  }
}
