   /* Reset some default styles */
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

  /* Global styles */
    body {
        font-family: Arial, sans-serif;
        background-color: #fff;
    }

  /* ---------------------------------------- */
  /* -------   START--- HERO SECTION  ------- */
  /* ---------------------------------------- */

  #hero-001 {
    padding: var(--sectionPadding);
    background-color: #f3fcfb;
    overflow: hidden;
    position: relative;
    z-index: 1;
  }  

  :root{
    --fs-1: 1.0rem;   /*- 16px default */
    --fs-15: 1.5rem;  /*- 24px default */
    --fs-2: 2.0rem;   /*- 32px default */
    --fs-3: 3.0rem;   /*- 48px default */
  }


* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-size: 100%;

}

body {
font-family: Arial, sans-serif;
background-color: #1a1a1a;
color: #ffffff;
}

header {
/* background-color: #1a1a1a; */
padding: 20px 40px;
display: flex;
justify-content: space-between;
align-items: center;

/* float navbar over the Hero image */
position: fixed;
width: 100%;
z-index: 9999;
}

.logo {
display: flex;
align-items: center;
}

.logo img {
height: 40px;
margin-right: 10px;
}

.logo span {
font-size: var(--fs-2);
font-weight: bold;
color: #ffffff;
}

nav {
display: flex;
justify-content: space-between;
}

nav a {
color: #ffffff;
text-decoration: none;
margin-left: 20px;
padding: 10px;
font-size: var(--fs-15);
}

nav a:hover {
background-color: #00B2FF;
}

.hamburger {
display: none;
cursor: pointer;
}

.bar {
width: 25px;
height: 3px;
background-color: #ffffff;
margin: 5px 0;
}

main {
padding: 0;
}

.hero {
background-image: url('images/HERO-responsive.jpg.png');
background-size: cover;
background-position: center;
height: 980px;
display: flex;
align-items: center;
justify-content: flex-start;
padding: 0 40px;
}

.hero-content {
max-width: 600px;
background-color: #6e6b6b;
}

.hero-content h1 {
font-size: var(--fs-3);
margin-bottom: var(--fs-2);
color: #ffffff;
}

.hero-content p {
font-size: var(--fs-15);
margin-bottom: 30px;
color: #cccccc;
}

.btn {
display: inline-block;
padding: 12px 24px;
background-color: #ff6600;
color: #ffffff;
text-decoration: none;
font-weight: bold;
border-radius: 5px;
}

.btn:hover {
background-color: #ff8533;
}

@media (max-width: 768px) {
header {
    padding: 20px;
}

nav {
    display: none;
}

.hamburger {
    display: block;
}

.hero {
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 36px;
}

.hero-content p {
    font-size: 16px;
}
}

 /* -------   END -- HERO SECTION  ------- */