.header-image-zwo {
    background-image: url("../images/tree.webp");
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    background-color: #999;
}

@media only screen and (max-width: 768px) {
    .header-image-zwo {
        background-image: url("../images/tree.webp");
        background-position: center center;
        background-repeat: no-repeat;
        background-attachment: scroll;
        background-size: cover;
        background-color: #999;
    }
}

/* bulma css adjustments */
 /* Custom link color */
a {
  color: #fff;
}

a:hover, a:focus {
  color: #fff;
}


/* FONTS */
body {
    font-family: 'Lato', sans-serif; 
}
@font-face {
    font-family: 'Lato';
    src: url('../fonts/lato-regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Lato';
    src: url('../fonts/lato-bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
}

/* NAVBAR */
/* dropdown arrow color */
.select:not(.is-multiple):not(.is-loading)::after {
    border-color: #fff !important;
}

 /* disables bulma accessibility defaults that are ugly */
.navbar { 
    --bulma-navbar-item-background-l-delta: 0% !important;
    --bulma-navbar-item-hover-background-l-delta: #FFF !important;
    --bulma-navbar-item-active-background-l-delta: #fff !important;
}

/* adjust the brand logo */
.logo-svg {
    min-height: 55px; /* Adjust the pixel value to make the logo larger */
    color: transparent !important;
}

/* show dropdown on mobile */
@media screen and (max-width: 768px) {.hero-video {display:inline !important;}}

/* HERO SECTION */
.hero-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10; /* Ensure the content appears above the video */
    margin-top: -50px !important;
  }
  
  .solid-background {
    width: 35%;
    height: 0;
    padding-top: 33%; /* Set the height to 33% of the width */
    margin-top: 10%;
    background-color: rgba(255, 255, 255, 0); /* Starting opacity set to 0 */
    border-radius: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden; /* Hide any overflowing content */
    animation: fade-in 1s forwards;
  }
  
  @keyframes fade-in {
    from {
      background-color: rgba(255, 255, 255, 0); /* Starting opacity set to 0 */
    }
    to {
      background-color: rgba(255, 255, 255, 0.75); /* Ending opacity set to 0.75 */
    }
  }
  
  .svg-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
  }
  
  .solid-background svg {
    max-width: 80%; /* Adjust the max width of the logo as desired */
    max-height: 80%; /* Adjust the max height of the logo as desired */
  }   
  

  /* Media query for screens with a maximum width of 768px (adjust the breakpoint as needed) */
  @media (max-width: 768px) {
      .solid-background {
        width: 60%; /* Adjust the width as desired */
        padding-top: 83.33%; /* Adjust the height to 83.33% of the width to maintain a 3:5 aspect ratio */
      }
    }


  /* video */
  .video-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
  }
  
  .video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
  }






/* Custom styles for the sections (About, Services, Contact) */
#about,
#services,
#contact {
    background-color: #14161A; /* Set background color */
    color: #F9F9F9; /* Set text color */
}

/* Custom styles for the headlines in the sections */
#about .title,
#services .title,
#contact .title {
    color: #EBECF0; /* Set headline text color */
}

/* Custom styles for the footer */
.footer {
    background-color: #181B20; /* Set background color */
    color: #F9F9F9; /* Set text color */
    padding-bottom: 20px; /* Adjust the value as needed */
}



