@font-face {
    font-family: 'Quantico';
    src: url('../fonts/Quantico-Italic.ttf') format('truetype');
}

@font-face {
    font-family: 'Quantico-Bold';
    src: url('../fonts/Quantico-Bold.ttf') format('truetype');
}

@font-face {
    font-family: 'Raleway';
    src: url('../fonts/Raleway-Thin.ttf') format('truetype');
}

@font-face {
    font-family: 'Oxanium';
    src: url('../fonts/Oxanium-Regular.ttf') format('truetype');
}

h1 {
    font-family: 'Raleway', Arial, sans-serif;
    font-weight: bold;
    font-size: 50px;
}

h2 {
    font-family: "Quantico", Arial, sans-serif;
    font-weight: bold;
    font-size: 30px;
}

p {
    font-family: 'Oxanium', Arial, sans-serif;
    font-size: 18px;
}


/*
style="background-image: url('images/banner.jpg'); background-color: #1a1a1a; display: flex; flex-direction: column; justify-content: center;padding:1rem; background-size: cover;"

style="background-image: url('images/banner.jpg'); background-color: #1a1a1a; display: flex; flex-direction: column; justify-content: center;padding:1rem; background-size: cover;"
*/

.heading_div_class {
    background-image: url('../images/banner.jpg'); 
    background-color: #1a1a1a; 
    display: flex; 
    flex-direction: column; 
    justify-content: center;
    padding:1rem; 
    background-size: cover;
}
.headingtextclass {
    margin:0px;
    background-color: #1a1a1a;
    padding-left:3rem;
    padding-right:3rem;
    opacity:93%;
}
.subheadingtextclass {
    margin:1rem;
    background-color: #1a1a1a;
    padding-left:3rem;
    padding-right:3rem;
    opacity:82%;
}

.nav_item_div_class{
    width:30%;
    display: flex;
    justify-content: center;
}
/*
style="display: flex; justify-content: space-between;"
style="width:25%; display: flex; justify-content: center;"
style="display:flex;justify-content: center;"

style=""
*/

.services_content_contain_div_class {
    display: flex; 
    justify-content: space-between;
    flex-direction: row;
}
.services_content_display_div_class {
    width:25%; 
    display: flex; 
    justify-content: center;
}
.services_heading_class{
    display:flex;
    justify-content: flex-start;
}
.rouge_image_class {
    opacity:100%;
    background-image: url('../images/rouge.jpg');
    height:100%;
    width:100%;
    min-height:200px;
    min-width:300px;
    max-height:400px;
    max-width:600px;
    background-size : cover;
}
@media (max-width: 768px) {
    h1 {
        font-family: 'Raleway', Arial, sans-serif;
        font-weight: bold;
        font-size: 30px;
    }
    h2 {
        font-family: "Quantico", Arial, sans-serif;
        font-weight: bold;
        font-size: 18px;
    }
    .headingtextclass {
        margin:0px;
        background-color: #1a1a1a;
        padding-left:1rem;
        padding-right:1rem;
        opacity:93%;
    }
    .subheadingtextclass {
        margin:1rem;
        background-color: #1a1a1a;
        padding:1rem;
        opacity:82%;
    }
    .services_content_contain_div_class {
        display: flex; 
        justify-content: space-between;
        flex-direction: column;
    }
    .services_content_display_div_class {
        width:100%; 
        display: flex; 
        justify-content: flex-start;
    }
    .services_heading_class{
        display:flex;
        justify-content: center;
    }
}










.color-scheme-1 {
    --primary-color: #151718;
    --accent-color: #3e581f;
    --secondary-color: #d3d3d3;
    --highlight-color: #6b6e70;
    --cta-color: #86c232;
}

body {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;

    -webkit-touch-callout: none; /* Disable callout (context menu) on iOS Safari */
    -webkit-user-select: none; /* Disable text selection on iOS Safari */
    -moz-user-select: none; /* Disable text selection on older versions of Firefox */
    -ms-user-select: none; /* Disable text selection on Internet Explorer and Edge */
    user-select: none; /* Disable text selection on other browsers */


}

h1,
h2,
h3 {
    color: var(--accent-color);

}

a {
    color: var(--highlight-color);
    text-decoration: none;
    font-family: 'Oxanium', Arial, sans-serif;
    font-size: 18px;
}

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

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.highlight {
    color: var(--highlight-color);
    font-weight: bold;
}

.accent {
    color: var(--cta-color);
}






body,
ul {
    margin: 0;
    padding: 0;
    list-style-position: inside;
}

nav {
    background-color: #333;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    font-family: 'Oxanium', Arial, sans-serif;
    font-size: 18px;
}

nav ul {
    list-style: none;
    display: flex;
    text-align: left;
}

nav ul li {
    margin-right: 20px;
    padding: 0.5rem;
    display: inline-block;
    position: relative;
}

nav ul li:last-child {
    margin-right: 0;
}

nav ul li ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #333333;
    padding: 0;
}

nav ul li:hover ul {
    display: block;
}

nav ul li ul li {
    display: block;
    padding: 10px;
}



.navtextclass {
    font-size: 22px;
}


@media (max-width: 768px) {
    nav {
        background-color: #333;
        color: #fff;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 3px;
        font-family: 'Oxanium', Arial, sans-serif;
    }
    .navtextclass {
        font-size: 16px;
    }
    
}








.tooltip {
    position: relative;
    cursor: pointer;
    list-style-position: inside;
}

.hidden-tooltip {
    display: none;
    position: absolute;
    background-color: #333;
    border: 1px solid #ddd;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.hidden-tooltip1 {
    padding: 5px;
    margin-left: 1rem;
    margin-top: 5rem;
    max-width: 15rem;
    opacity: 80%;
}

.hidden-tooltip1orig {
    padding: 5px;
    margin-left: 8rem;
    max-width: 20rem;
    opacity: 80%;
}

.hidden-tooltip2 {
    margin-bottom: 18rem;
    opacity: 100%;
}

@media (max-width: 768px) {
    .hidden-tooltip1 {
        padding: 5px;
        /* margin-left: 5rem;
        margin-top: 2rem; */
        margin-left: 5rem;
        margin-top: 5rem;
        max-width: 15rem;
        opacity: 80%;
    }

}





.map-container {
    position: absolute;
    z-index: 9999;
    background-color: gray;
    background-image: url('../images/temp_map.jpg');
    opacity: 0%;
    transition: 0.5s ease-in-out;
    border: 3px solid #333;
}


