.mp-banner{
    background-color: var(--green);
    padding: 1.5em 0;
	color: #fff;
}


.mp-banner img {
    border: 3px solid #fff;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    overflow: hidden;
    object-fit: cover;
}

* {box-sizing: border-box}
/* Style the tab */
.tab {
  float: left;
  border: 1px solid #ccc;
  background-color: #f1f1f1;
  width: 30%;
  height: 700px;
}
/* Style the buttons inside the tab */
.tab button {
  display: block;
  background-color: inherit;
  color: black;
  padding: 22px 16px;
  width: 100%;
  border: none;
  outline: none;
  text-align: left;
  cursor: pointer;
  transition: 0.3s;
  font-size: 17px;
}
/* Change background color of buttons on hover */
.tab button:hover {
  background-color: #ddd;
  border-left: 5px solid var(--grey);
}

/* Create an active/current "tab button" class */
.tab button.active {
  background-color:#fff;
  border-left: 5px solid var(--green);
}
.sentab {
  float: left;
  border: 1px solid #ccc;
  background-color: #f1f1f1;
  width: 30%;
  height: 700px;
}
/* Style the tab content */
.tabcontent {
  float: left;
  padding: 0px 12px;
  border: 1px solid #ccc;
  width: 70%;
  border-left: none;
  height: 700px;
  overflow: scroll;
}

/* csss for about us page */

.opentab-container {
    display: flex;
    width: 100%;
    max-width:1280px;
    gap: 10px; /* Space between tabs and content */
	margin-top:5%
}

/* Left Side Tabs */
.opentab-buttons {
    display: flex;
    flex-direction: column;
    background: #fff; /* White background */
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.opentab-button {
    background: transparent;
    border: none;
    padding: 12px 15px;
    color: #2c3e50;
    text-align: left;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
	font-family:"Montserrat-Regular", sans-serif;
}

.opentab-button:hover {
    background: #f0f0f0;
}

.opentab-button.active {
    background-color:#fff;
    color:var(--green);
	border-right: 5px solid var(--green);
	font-family:"Montserrat-SemiBold", sans-serif;
	font-size:16px;
	font-weight:600;
}

/* Right Side Content */
.opentab-content {
    flex: 1;
    padding: 20px;
    background: #fff; /* White background */
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Tab Content */
.opencontent {
    display: none;
    border-radius: 10px;
    padding: 20px;
}

.opencontent.active {
    display: block;
   /* animation: fadeIn 0.3s ease-in-out;*/
}

/* Smooth fade effect */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
@media (max-width: 600px) {
.opentab-container {
flex-direction: column;
}
.opentab-buttons {
flex-direction: row;
justify-content: center;
width: 100%;
padding: 10px;
}
.opentab-button {
flex: 1;
text-align: center;
padding: 10px;
}
}
