.elementor-12 .elementor-element.elementor-element-345dd85{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-12 .elementor-element.elementor-element-7f77ec4{padding:0px 0px 0px 0px;}.elementor-theme-builder-content-area{height:400px;}.elementor-location-header:before, .elementor-location-footer:before{content:"";display:table;clear:both;}/* Start custom CSS for html, class: .elementor-element-7f77ec4 *//* ===== HEADER ===== */

.header {
  position: fixed;
  top: 24px;
  left: 0;
  width: 100%;
  z-index: 999;
  padding: 0 24px;
  box-sizing: border-box;
}

.header-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 16px 28px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  background: #051f31;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 22px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.12);
}

/* LOGO */

.logo img {
  width:350PX;
 display: block;

}

/* MENU */

.nav {
  display: flex;
  align-items: center;
  gap: 42px;
}

.nav a {
  position: relative;

  color: #F5F4F2;
  text-decoration: none;

  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.3px;

  transition: 0.3s ease;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;

  width: 0%;
  height: 1px;

  background: #FC6807;
  transition: 0.3s ease;
}

.nav a:hover {
  color: #FC6807;
}

.nav a:hover::after {
  width: 100%;
}

/* BUTTON */

.btn-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 13px 24px;

  background: linear-gradient(
    135deg,
    #FC6807,
    #B8500B
  );

  color: #fff;
  text-decoration: none;

  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.3px;

  border-radius: 14px;

  transition: 0.3s ease;
}

.btn-call:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(252, 104, 7, 0.28);
}

/* RESPONSIVE */

@media(max-width: 980px){

  .header {
    top: 14px;
    padding: 0 14px;
  }

  .header-container {
    padding: 14px 18px;
  }

  .nav {
    display: none;
  }

  .logo img {
    width: 230px;
  }

  .btn-call {
    padding: 12px 18px;
    font-size: 13px;
  }

}/* End custom CSS */