.elementor-kit-7{--e-global-color-primary:#6EC1E4;--e-global-color-secondary:#54595F;--e-global-color-text:#7A7A7A;--e-global-color-accent:#61CE70;--e-global-typography-primary-font-family:"Roboto";--e-global-typography-primary-font-weight:600;--e-global-typography-secondary-font-family:"Roboto Slab";--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"Roboto";--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Roboto";--e-global-typography-accent-font-weight:500;}.elementor-kit-7 e-page-transition{background-color:#FFBC7D;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1140px;}.e-con{--container-max-width:1140px;}.elementor-widget:not(:last-child){--kit-widget-spacing:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}.site-header .site-branding{flex-direction:column;align-items:stretch;}.site-header{padding-inline-end:0px;padding-inline-start:0px;}.site-footer .site-branding{flex-direction:column;align-items:stretch;}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}
/* Start custom CSS *//* TOP BAR */
.topbar{
  background:#0d1b2a;
  color:white;
  font-size:14px;
  display:flex;
  justify-content:space-between;
  padding:8px 5%;
}

.topbar a{
  color:white;
  margin-left:10px;
  text-decoration:none;
}

/* NAVBAR */
.navbar{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:15px 5%;
  background:white;
  box-shadow:0 2px 10px rgba(0,0,0,0.1);
  position:relative;
  z-index:1000;
}

/* STICKY EFFECT */
.navbar.sticky{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  animation:slideDown 0.3s ease-in-out;
}

@keyframes slideDown{
  from{transform:translateY(-100%);}
  to{transform:translateY(0);}
}

.logo{
  font-size:22px;
  font-weight:bold;
  color:#1e88e5;
}

/* MENU */
nav ul{
  list-style:none;
  display:flex;
  gap:25px;
  margin:0;
  padding:0;
}

nav ul li a{
  text-decoration:none;
  color:#333;
  font-weight:500;
}

/* DROPDOWN */
.dropdown{
  position:relative;
}

.dropdown-menu{
  display:none;
  position:absolute;
  top:30px;
  background:white;
  box-shadow:0 5px 15px rgba(0,0,0,0.1);
  padding:10px;
  border-radius:8px;
}

.dropdown:hover .dropdown-menu{
  display:block;
}

/* MOBILE MENU */
.menu-toggle{
  display:none;
  font-size:28px;
  cursor:pointer;
}

/* MOBILE */
@media(max-width:768px){

  nav ul{
    display:none;
    flex-direction:column;
    position:absolute;
    top:70px;
    right:0;
    background:white;
    width:200px;
    padding:20px;
    box-shadow:0 10px 20px rgba(0,0,0,0.2);
  }

  nav ul.active{
    display:flex;
  }

  .menu-toggle{
    display:block;
  }

  .topbar{
    flex-direction:column;
    text-align:center;
    gap:5px;
  }
}/* End custom CSS */