.ms-tab-container * {
  margin: 0;
  padding: 0;
  border-radius: 0;
}
.ms-tab-buttons {
    display: flex;
    border-bottom: 1px solid gray;
}

.ms-tab-button {
    cursor: pointer;
    padding: 10px 20px;
    border: none;
    color: #B8B8B8;
    font-size: 32px;
    background: transparent !important;
    box-shadow: none !important;
    outline: none;
    border-bottom: 2px solid #CACACA;
    width: 50%; 
    justify-content: center !important;
    font-family: "Noto Serif",serif !important;
}

.ms-tab-button:hover {
  color: #202120; !important;
}

.ms-tab-button.active {
  color: #202120;
    border-bottom-color: #C00;
}

.ms-tab-contents {
    padding: 20px;
}

.ms-tab-contents {
    padding: 20px;
    position: relative; /* Make the tab-contents container position relative */
    min-height: 100px; /* Optionally set a minimum height */
}

.ms-tab-content {
    position: absolute; /* Position contents absolutely within the container */
    top: 40px;
    left: 0;
    opacity: 0;
    visibility: hidden;
    width: 100%; /* Ensure the content takes up full width */
    transition: opacity .8s ease-in-out, visibility .8s ease-in-out;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
  align-content: center;
  justify-items: center;
}

.ms-tab-content-inner {
  background: #C00;
  width: 286px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap:4px;
  align-items: center;
}

.ms-tab-content-inner svg {
  margin-bottom: 8px;
}

.ms-tab-content-inner h3 {
  color: white;
  text-transform: uppercase;
  font-size: 24px;
    font-family: Manrope,sans-serif!important;
}

.ms-tab-content-inner p {
  color: white;
  
}

.ms-tab-content.active {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 1280px) {
    .ms-tab-container {
         padding-inline:16px;   
    }
    .ms-tab-content {
        grid-template-columns: 1fr 1fr;
    }
    .ms-tab-contents {
        margin-bottom: 200px
    }
}

@media (max-width: 900px) {
    .ms-tab-contents {
        margin-bottom: 400px
    }
}

@media (max-width: 768px) {
  .ms-tab-button {
    font-size: 24px;
  }
  .ms-tab-content-inner {
    width:164px;
    text-align: center;
  }
  .ms-tab-content {
    gap:16px;
  }
}

@media (max-width: 450px) {
 .ms-tab-button {
    font-size: 18px;
  }
}

footer {
  display:none !important;
}

