/* Header 
------------------------------------------------------- */

#main-header {
    background-image: url(/wp-content/uploads/2020/06/header_background.jpg);
    background-position: center; /* Center the image */
    background-repeat: no-repeat; /* Do not repeat the image */
    background-size: cover; /* Resize the background image to cover the entire container */
    box-shadow: none;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
  }
  
  .et_header_style_left #et-top-navigation {
    padding-top: 75px !important;
  }
  
  .et_header_style_left .et-fixed-header #et-top-navigation {
    padding-top: 35px !important;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
  }
  
  /* Header Page Title and Description 
  ------------------------------------------------------- */
  
  #header-page-title {
    position: absolute;
    left: 0;
    top: 20px;
    margin: 0;
    padding: 2px 10px;
    font-size: 20px;
    background-color: #fff;
    font-weight: bold;
  }
  
  #header-page-description {
    position: absolute;
    left: 0;
    top: 55px;
    margin: 0;
    color: #fff;
    font-size: 15px;
    font-family: "PT Serif", Georgia, "Times New Roman", serif;
    font-weight: bold;
    font-style: italic;
    text-transform: none;
    width: 200px;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    opacity: 1;
  }
  .et-fixed-header #header-page-description {
    opacity: 0;
    display: none;
  }
  