.logo1.img-fluid {
	width: 200px;
	height: 60px;
}
.logo img {
	width: 200px;
	height: 60px;
}
.thumb .carousel-inner img {
    max-height: 300px; /* Adjust the height as needed */
    width: auto;
    object-fit: cover; /* Ensures images fill the area without distortion */
    margin: auto; /* Centers the image within the carousel */
}
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 20px 0;
  padding: 0;
  list-style: none;
}

.pagination-list {
  display: flex;
  gap: 10px;
}

.pagination-list li {
  display: inline;
}

.pagination-list li a {
  display: block;
  padding: 8px 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  color: #EB6245;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.pagination-list li a:hover {
  background-color: #EB6245;
  color: #fff;
}

.pagination-list li.active a {
  background-color: #EB6245;
  color: #fff;
  border-color: #EB6245;
  pointer-events: none;
}
.acopy {
  color: #F5C34B;
}
.acopy:hover {
  color: #FFF;
}
.click {
  cursor: pointer;
}



/* General styles for UL and OL */
.grids ul, .grids ol {
    margin: 0;
    padding: 0;
    list-style-position: inside; /* Ensures bullets/numbers are inside the padding */
}

/* Specific styles for UL lists */
.grids ul {
    list-style-type: disc; /* Default bullet style */
}

/* Specific styles for OL lists */
.grids ol {
    list-style-type: decimal; /* Default numeric style */
}

/* General LI styles */
.grids ul li, .grids ol li {
    padding: 5px 0; /* Space between items */
    font-size: 16px; /* Default font size */
}

/* Class-based styles */
.grids ul.classic li, .grids ol.classic li {
    font-family: "Times New Roman", serif; /* Classic font style */
    line-height: 1.5; /* Spacing between lines */
}

.grids ul.fancy li, .grids ol.fancy li {
    font-family: Arial, sans-serif; /* Modern font style */
    border-bottom: 1px solid #ddd; /* Underline separator */
    padding: 10px 0; /* More padding */
}

.grids ul.custom-bullet li {
    list-style-type: square; /* Square bullet points */
}

.grids ol.roman li {
    list-style-type: upper-roman; /* Roman numerals */
}

.grids ol.alpha li {
    list-style-type: lower-alpha; /* Lowercase alphabet */
}
.grids ul li, .grids ol li {
  margin-left: 20px;
}