body,
html {
    height: 100%;
    font-family: "Inconsolata", sans-serif;
}

.bgimg {
    background-position: center;
    background-size: contain;
    /* Scale the background image to fit within the container without cropping */
    background-image: url("/pictures/logonew.jpg");
    background-repeat: no-repeat;
    min-height: 49%;
}

.menu {
    display: block;
    align-items: center;
    /* padding-top: 25%;
    margin-top: 25%; */
}

.h1 {
    text-align: center;
    font-size: 20px;
    /* Center the text */
    background-color: #9dd5d7;
    /* Adjust the margin to control the spacing between header and h1 */
    margin-top: 0px;
    margin-bottom: 0px;
}


/* .w3-button w3-block w3 {
    background-color: #9dd5d7;
} */

.custom-menu {
    align-items: center;
    text-align: center;
    background-color: #9dd5d7;
}

header {
    margin: 0;
    padding: 0;
    background-image: url("your-header-background-image.jpg");
    background-size: cover;
    /* Additional styles for your header, e.g., height, text color, etc. */
}


/* Style the menu list */

.custom-menu ul {
    align-items: center;
    text-align: center;
    list-style-type: none;
    /* padding: 0; */
    text-align: center;
    margin-top: 3px;
    margin-bottom: 0px;
}


/* Style the menu items */

.custom-menu ul li {
    align-items: center;
    text-align: center;
    display: inline;
    padding: 10px;
}


/* Style the menu links */

.custom-menu ul li a {
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #000;
    /* Text color for the menu items */
    font-weight: bold;
    font-size: 20px;
}


/* Change link color on hover */

.custom-menu ul li a:hover {
    color: #586063;
    /* Text color on hover */
}

.custom-menu ul li.current a {
    color: #586063;
    /* Change to your desired color */
    /* Add any other styles you want for the current page */
}

.custom-menu ul li a:hover {
    color: #586063;
}


/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ FORM~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/


/* Default styling for larger screens */


/* Default styling for larger screens */

form {
    padding-top: 20px;
    max-width: 50%;
    margin: 0 auto;
    padding-bottom: 0px;
    padding-left: 20px;
    padding-right: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    background-color: #f9f9f9;
}

label {
    display: block;
    font-weight: bold;
    font-size: 20px;
    margin-bottom: 0px;
    color: rgb(0, 0, 0);
}

input[type="text"],
input[type="tel"],
input[type="email"],
textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 3px;
    font-size: 16px;
}

textarea {
    min-height: 200px;
}

input[type="submit"] {
    background-color: #9dd5d7;
    color: rgb(0, 0, 0);
    padding: 12px 24px;
    border: none;
    border-radius: 3px;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out;
}

input[type="submit"]:hover {
    background-color: #85b5b7;
}


/* Responsive styling for mobile devices */

@media screen and (max-width: 768px) {
    form {
        padding: 20px;
        max-width: 70%;
    }
    input[type="text"],
    input[type="tel"],
    input[type="email"],
    textarea {
        font-size: 14px;
    }
    input[type="submit"] {
        font-size: 16px;
    }
}


/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ FORM~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/


/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ABOUT US~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/

.about-us-container {
    font-family: Tahoma, sans-serif;
    font-size: 20px;
    max-width: 75%;
    margin: 20px auto;
    padding: 30px;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    background-color: #f9f9f9;
    text-align: left;
    color: #333;
}

.about-us-container h2 {
    font-size: 30px;
    margin-bottom: 20px;
    text-align: center;
    font-weight: bold;
}


/* Additional styling for responsive design */

@media screen and (max-width: 768px) {
    .about-us-container {
        padding: 20px;
    }
    .about-us-container h2 {
        font-size: 20px;
    }
}

b {
    text-align: right;
}


/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ABOUT US~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/


/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Home~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/

.welcome {
    text-align: justify;
}

h1 {
    margin: 10px 0;
    /* Adjust the top and bottom margins as needed */
    padding: 0;
    /* Remove any padding */
}

table {
    padding-top: 0%;
    border-collapse: collapse;
}

td {
    padding: 5px;
}

img {
    width: 50px;
    /* Adjust the width as needed */
    height: 50px;
    /* Adjust the height as needed */
    cursor: pointer;
}


/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Home~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/


/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ WHAT WE DO~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/

.centered-row {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}


/* Style for each column */


/* Style for each column */

.column {
    padding: 20px;
    margin: 10px;
    border: 1px solid #ccc;
    border-radius: 10px;
    /* Add rounded corners to the column */
    max-width: 200px;
    text-align: center;
}


/* Style for the person's name */

.name {
    font-weight: bold;
    margin: 10px 0;
}


/* Style for the person's position */

.position {
    color: #555;
}


/* Make the images more circular */

.column img {
    max-width: 100%;
    /* Set the maximum width to 100% to make the images responsive */
    height: auto;
    /* Maintain aspect ratio */
    width: 150px;
    /* Adjust the width to make the images larger */
    border-radius: 50%;
    /* Create a circular clipping mask for the images */
}


/*~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Emblems~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/