* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --transparent-black: rgba(0, 0, 0, 0.6);
    --transparent-black-form: rgba(0, 0, 0, 0.4);
    --dark-navy: #081425;
    --logo-light-blue: #28415a;
    --light-blue: #5f9cd9;
    --neutral-light: #e8e8e8;
    --neutral-dark: #1e1e1e;
    --gold: #fbbe15;
    --dark-gold: #c6960f;
    --red: #b22234;
    --medium-dark: #2a2a2a;
    --medium-dark-rgb: 42, 42, 42;
    --work-sans: 'Work Sans', sans-serif;
    --merriweather: 'Merriweather', serif;
}

body {
    font-family: var(--work-sans);
    font-weight: 400;
    line-height: 1.6;
    background-color: var(--neutral-dark);
    color: var(--neutral-light);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--merriweather);
    font-weight: 700;
    color: var(--neutral-light);  
}

p {
    font-size: 24px;
    color: var(--neutral-light);
    margin-bottom: 10px
}

h1 {
    font-size: 40px;
}

h2 {
    font-size: 36px;
    margin-bottom: 10px;
}

h3 {
    font-size: 32px;
    margin-bottom: 10px;
}

h4, h5, h6 {
    font-size: 24px;
}

.simple-hero {
    position: relative;
    background: url('/static/img/simple_hero2.png') no-repeat center center/cover;  /* Background image */
    background-size: cover;
    z-index: 1;
    padding: 50px 0px;
}

.simple-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--transparent-black-form);
    z-index: -1; 
}

.simple-hero h1 {
    text-align: center;
    text-shadow:
    0 0 5px black,
    0 0 10px black,
    0 0 15px black;
}

.contianer {
    margin: 0 auto;
    max-width: 1200px;
}


.city-scape-section {
    position: relative;
    background: url('/static/img/bg_image.png') no-repeat center center/cover;  /* Background image */
    background-size: cover;
    z-index: 1;
}

.city-scape-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--transparent-black);
    z-index: -1;
}

.bold {
    font-weight: 700;
}

button, .button {
    font-family: 'Work Sans', sans-serif;
    font-weight: 500;
    color: var(--neutral-light);
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.button.is-primary {
    background-color: var(--gold);
    cursor: pointer;
}

.button.is-primary:hover {
    background-color: darken(var(--gold), 10%);
}

.button.is-secondary {
    background-color: var(--red);
    color: var(--neutral-dark);
}

.button.is-secondary:hover {
    background-color: darken(var(--red), 10%);
}

a {
    color: var(--light-blue);
    transition: 0.3s ease;
}

a:hover {
    color: var(--gold);
}


.bg-light {
    background-color: var(--neutral-light);
    color: var(--neutral-dark);
}

.gold.button {
    display: inline-block;
    padding: 10px 20px;
    background-color: var(--gold);
    color: var(--neutral-dark);
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}


.gold.button:hover {
    background-color: var(--dark-gold);
}

.gold.button.block {
    display: block;
}

.ms-bowl-input{
    display: none !important;
}