/* 
Theme Name: MBAkid
Theme URI: https://github.com/elementor/hello-theme-child/
Description: mbakid is a child theme of Hello Elementor,
Author: Lekker Tech
Author URI: https://business-software.tech
Template: hello-elementor
Version: 1.0.0
Text Domain: mbakid
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html*/

/* custom styles here */

/* #site-header{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
} */
 :root {
    --header-height: 90px;
}
 body{
    padding-top: var(--header-height);
    background: #004AAC;
    background: linear-gradient(157deg,rgba(0, 74, 172, 1) 0%, rgba(11, 149, 83, 1) 81%, rgba(11, 149, 83, 1) 100%);
    color: #fff;
 }
 .home .site-logo{
    display: none;
 }
 .site-navigation-toggle-holder .site-navigation-toggle {
    background-color: transparent;
    color: #fff;
}
 #site-header{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1;
    height: var(--header-height);
    .site-logo img{
        height: 57px;
        filter: brightness(0) invert(1);
    }
 }
 /* Home slides */

.slide-section {
  position: fixed;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100vh;
  transition: top 0.8s ease;
  z-index: 1;
}

.slide-section.active {
  top: 0;
  z-index: 2;
}
@media (prefers-reduced-motion: reduce) {
  .slide-section {
    transition: none !important;
  }
}