/* Button Padding */
.button {
    padding: 10px 20px;
}
.navContent li .button {
    padding: 10px 20px;
}


/* Nav Dropdowns */

.navContent ul li ul a {
    white-space: normal !important;
    overflow: visible !important;
}

@media only screen and (min-width: 768px) {
    .navContent ul li ul {
        min-width: 250px !important;
        right: auto !important; 
        padding: 10px;
    }
}

 /********************
ACCORDION BASE STYLES
-edit look of accordion here
********************/
.mwd-header {
    font-size: 30px;
  }
  
  .mwd-accordion {
    margin: 30px 0;
  }
  
  .mwd-accordion .mwd-accordion-item {
    border: 1px solid #000;
    margin-bottom: 15px;
  }
  .mwd-accordion .mwd-accordion-item .mwd-accordion-title {
    font-size: 24px;
    background: #3aa9ad;
    color: #fff;
    padding: 10px 20px;
    cursor: pointer;
  }
  .mwd-accordion .mwd-accordion-item .mwd-accordion-content {
    color: black;
    padding: 20px 20px 0 20px;
  }
  .mwd-accordion .mwd-accordion-item .mwd-accordion p {
    margin: 0;
  }
  
  /********************
  BASE +/- STYLES
  ********************/
  .mwd-accordion-content {
    display: block;
    overflow: hidden;
    max-height: 100%;
    transition: all 0.3s ease-in-out;
  }
  
  .mwd-accordion-title > :first-child {
    max-width: 90%;
  }
  
  .mwd-accordion-title {
    position: relative;
  }
  .mwd-accordion-title .mwd-accordion-icon {
    position: absolute;
    background: #fff;
    width: 20px;
    height: 3px;
    right: 22px;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s ease-in-out;
  }
  .mwd-accordion-title .mwd-accordion-icon:after {
    content: "";
    position: absolute;
    background: #fff;
    width: 3px;
    height: 20px;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s ease-in-out;
  }
  
  .active .mwd-accordion-icon:after {
    transform: translateY(-50%) rotate(90deg);
  }
  
.mw-custom-hero {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.mw-custom-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    margin: auto;
    text-align: center;
    flex-wrap: wrap;
}

.mw-custom-left {
    flex: 3;
    margin-right: 20px;
}

.mw-custom-right {
    flex: 2; 
    display: flex;
    justify-content: center;
    align-items: center;
}

.mw-custom-content h1 {
    font-size: 52px;
    margin-bottom: 20px;
    color: white;
    font-weight: 900;
    font-family: museosansbold, Arial, Verdana, sans-serif;
}

.mw-custom-content p {
    font-size: 1.2em;
    margin-bottom: 20px;
    color: white;
}

.mw-custom-buttons {
    margin-bottom: 20px;
    text-align: center;
}

.mw-custom-button {
    background-color: #9b262a;
    color: white !important;
    padding: 10px 20px;
    font-weight: bold !important;
    text-decoration: none;
    border: none;
    margin: 10px;
    display: inline-block;
    font-family: museosansbold, Arial, Verdana, sans-serif;
}

.mw-custom-button:hover {
    background-color: #cc3338;
}

.mw-custom-card {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    text-align: center;
    color: black;
    width: 100%;
}
.form-group {
    margin-bottom:0
}

.mw-custom-badges {
    text-align: center;
}

.mw-custom-badges a {
    display: inline-block;
    margin: 10px;
}

.mw-custom-badges img {
    height: 150px; /* Make badges larger */
    width: auto;
}

/* Media Query for Mobile Devices */
@media (max-width: 768px) {
    .mw-custom-content {
        flex-direction: column;
        text-align: center;
    }

    .mw-custom-left,
    .mw-custom-right {
        margin: 0;
        flex: 1 1 100%;
    }

    .mw-custom-left {
        margin-bottom: 20px;
    }

    .mw-custom-right {
        display: flex;
        justify-content: center;
        align-items: center;
    }
}