/*
Theme Name: MyMedSpark
Theme URI: https://mymedspark.com
Description: Child theme of TwentyTwenty-Five
Author: Sabrina Onuma
Version: 1.0.0
Template: twentytwentyfive
Text Domain: mymedspark
Requires at least: 6.7
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
*/
.mms-tab-panel {
  display: none;
}

.mms-tab-panel.is-active {
  display: block;
}
.mms-tab {
  font-family: Inter, sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: #767676;

  background: none;
  border: none;
  border-bottom: 1px solid #767676;

  padding: 8px 0;
  cursor: pointer;

  transition: color 0.2s ease, border-color 0.2s ease, font-weight 0.2s ease;
}

/* hover state */
.mms-tab:hover {
  color: #005883;
  border-bottom-color: #005883;
}

/* active tab */
.mms-tab.is-active {
  color: #005883;
  border-bottom-color: #005883;
  font-weight: 500;
}

/* optional: keep hover consistent on active tab */
.mms-tab.is-active:hover {
  color: #005883;
  border-bottom-color: #005883;
}
.cover-mobile {
  display: none;
}

@media (max-width: 768px) {
  .cover-desktop {
    display: none;
  }

  .cover-mobile {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    //width: 100%;
    height: 100%;  
}
@media (max-width: 1400px) {
  .hero-group{
    max-width: 500px !important;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}
}


