/* Global Styles */

body {
    margin: 0;
    font-family: Arial, sans-serif;
    font-size: 16px;
}

/* Header Styles */

header {
    background-color: #ffffff;
    padding: 10px;
    text-align: center;
    border-bottom: 2px solid #2D3856;
}

.header-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding-left: 10px;
    padding-right: 10px;
}

.siteLogo{
    max-height: 120px;
}
.map{
    max-width: 400px;
    object-fit: cover;
}
h1 {
    margin: 0 0 0 10px;
    color: #2D3856;
    font-size: 36px;
    font-family: 'Good Times Rg', sans-serif !important;
}

/* Navigation Styles */

nav {
    background-color: #2D3856;
    display: flex;
    justify-content: center;
}

ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
}

li {
    margin: 0 10px;
}

.completeRoute a {
    display: block;
    color: #ffffff;
    text-align: center;
    padding: 10px;
    text-decoration: none;
}

/* Main Content Styles */

main {
    padding: 20px;
    text-align: center;
}

h2 {
    color: #2D3856;
    font-size: 32px;
}

p {
    color: #2D3856;
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 20px;
}

#map {
    height: 400px;
}

/* Footer Styles */

footer {
    background-color: #2D3856;
    color: #ffffff;
    padding: 10px;
    text-align: center;
}
.review-header {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.review-logo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 10px;
}

.review {
    background-color: #f7f7f7;
    padding: 20px;
    margin-bottom: 20px;
    min-height: 350px;
}
.pricing-paragraph {
    background-color: #f9f9f9;
    padding: 10px 20px;
    margin: 20px 0;
}

.pricing-paragraph p {
    margin: 0;
    font-size: 18px;
    font-weight: bold;
    color: #2D3856;
}
@media only screen and (max-width: 600px) {
    .review {
        height: auto;
    }
}
.hatcolor{
    color: #B11E24;
}
@media (max-width:1400px) and (min-width:1px){
    .w3-showonly-xlarge{
        display:none!important
    }
}
@media (min-width:800px){
    .w3-hide-med-large{
        display:none!important
    }
}


.spinner {
    border: 4px solid rgba(0, 0, 0, 0.1);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border-left-color: #09f;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.cld-dec23-footer-menu a {
    color: #ffffff;
    text-decoration: none;
    padding: 0 10px; /* Adjust padding as needed */
    display: inline-block; /* This will ensure that links are in one line */
    vertical-align: middle;
}

.cld-dec23-footer-menu {
    text-align: center; /* Centers the menu in the footer */
    padding: 10px 0; /* Adds some padding above and below the menu */
}
.faq-question {
    cursor: pointer;
    padding: 10px;
    border-bottom: 1px solid #ddd;
}
.faq-arrow {
    padding-right: 8px;
    transition: transform 0.3s ease;
    font-size: 14px;
    color: #777777;
}
.rotate-arrow-up {
    transform: rotate(-90deg);
}
.faq-question:hover .faq-arrow {
    transform: rotate(90deg);
}

.w3-container:not(.w3-hide) + .faq-question .faq-arrow {
    transform: rotate(-90deg); /* Rotate arrow up when the answer is visible */
}


.fade {
    transition: background-color 2s ease; /* Transition background-color over 2 seconds */
    background-color: #FFFFFF; /* White */
}