@charset "utf-8";
/* CSS Document */
* {
  box-sizing: border-box;
}

.tabs-container {
  display: flex;
  min-height: 300px;
}

/* Tabs by default are vertical */
.tabs {
  display: flex;
  flex-direction: column;
  width: 200px;
  /*background: #ffffff;*/
}

.tab {
  padding: 2rem 1.25rem;
  cursor: pointer;
  border: none;
  background: #ffffff;
  border: 1px solid #dcdcdc;
  text-align: left;
  border-radius: 10px 0px 0px 10px;
  font-family:'InvescoEditor';	
  font-size: 14px;	
  line-height: 21px;	
  color: #000000;	
}

.tab.active {
  background: #000ad2;
  color: #FFFFFF;
}

.tab-content {
  flex: 1;
  padding: 2rem;
  background: #fafafa;
  border:1px solid #000ad2;	
  border-radius: 0px 10px 10px;	
}

.content {
  display: none;
}

.content.active {
  display: block;
}

.tab1-note{
	display: inline-block; vertical-align: top; width: 70%; font-size: 11px; padding: 10px;
}

.card {
	width: 100%;
    max-width: 280px;
    border-radius: 15px;
    overflow: hidden;
    background-color: #cff9ff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    font-family: Arial, sans-serif;
	margin: 15px 10px;
	display: inline-block;
	vertical-align: top;
	min-height: 400px;
}

.card-image {
    height: 170px;
    overflow: hidden;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the image covers the container */
	object-position: top;
    display: block;
}

.card-content {
    padding: 20px;
    background-color: #cff9ff;
	color: #000000;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
}

.description {
    font-size: 14px;
    color: #000000;
}


/* ✅ Responsive: turn tabs horizontal on small screens */
@media (max-width: 1024px) and (min-width: 601px) {
	.card {
		width: 200px;
		margin: 15px 5px;
	}
}


@media (max-width: 768px) {
  .tabs-container {
    flex-direction: column;
  }

  .tabs {
    flex-direction: row;
    width: 100%;
    overflow-x: auto;
  }

  .tab {
    flex: 1;
    text-align: center;
    border-bottom: none;
    border-right: 1px solid #ccc;
	border-radius: 10px 10px 0px 0px;   
  }

  .tab:last-child {
    border-right: none;
  }
	
	.tab-content {
		border-radius: 0px 0px 10px 10px;  
	}	
	
	.tab1-note{
		display: inline-block; vertical-align: top; width: 100%; font-size: 11px; padding: 10px;
	}
	
	.card{
		margin: 15px 0px;
	}
}

