 .row {
    display: flex;
    flex-wrap: wrap;
  }

  .column {
    flex: 25%;
    position: relative;
    max-width: 23%;
    box-shadow: 0 0 10px rgb(0 0 0 / 11%);
    border-radius: 10px;
	  margin: 10px;
	      border: 1px solid #e433393b;
  }

  .column img {
    width: 100%;
    height: auto;
    display: block;
  }

  .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
        background-color: rgb(228 51 57 / 77%);
    overflow: hidden;
    width: 100%;
    height: 0;
    transition: .5s ease;
  }

  .column:hover .overlay {
    height: 100%;
  }

  .text {
    color: #ffffff;
    font-size: 20px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    text-align: center;
    display: none;
	  width: 240px;
  }

  .column:hover .text {
    display: block;
  }

  .popup {
    display: none;
    position: fixed;
    top: 45%;
    left: 50%;
	  width: 80%;
    transform: translate(-50%, -50%);
    background-color: #ffffff;
    padding: 20px;
    border: 1px solid #ccc;
    z-index: 9999;
	  height: 450px;
    overflow-y: scroll;
	  
  }

.overlay-bg {
       position: fixed;
       top: 0;
       left: 0;
       width: 100%;
       height: 100%;
       background-color: rgba(255, 0, 0, 0.7); /* Red color with 0.7 opacity */
	z-index: 9998;align-content;
}

.overlay button {
    background: none;
    font-size: 20px;
    text-decoration: underline;
}
.overlay p {
    margin-bottom: 10px !important;
    font-size: 16px;
}
  .popup-content {
    display: flex;
}


.popup-close {
       position: absolute;
    top: 15px;
    right: 20px;
    cursor: pointer;
    text-align: center;
    border-radius: 4px;
    color: #f00;
    font-size: 35px;
}
.column-left h2 {
    font-size: 25px;
    padding-top: 10px;
}
.column-left {
	flex: 3;
    text-align: center;
    background: #fff;
/*    box-shadow: 0 0 10px rgb(255 0 0 / 29%); */
    margin-right: 35px;
	border-radius: 5px;
}
.column-right {
	flex: 9;
}
.column-right p {
    margin-bottom: 15px;
    font-size: 16px;
}
.column-left img {
	box-shadow: 0 0 10px rgb(255 0 0 / 29%);
}
.pop_name {
    padding: 15px;
	box-shadow: 0 0 10px rgb(255 0 0 / 29%);
}
.load-more {
    margin-top: 10px;
    text-align: center;
  }
.tit_desc h2 {
    font-size: 20px;
    padding-bottom: 10px !important;
    margin-bottom: 0;
}
.tit_desc  {
    padding: 20px 10px;
	text-align: center;
/* 	border: 1px solid #e43339; */
	0px 0px 10px 10px
}
.tit_desc p {
    margin-bottom: 0;
}

.popup-content {
    padding: 15px;
}
i.fas.fa-arrow-right {
    padding-top: 15px;
    font-size: 16px;
    color: #999592;
}

.overlay h3 {
    color: #f1ea19;
    font-size: 20px;
}

@media only screen and (max-width: 600px) {
    .column {
    max-width: 100%;
    flex: 100%;
    margin: 10px auto;
    display: block;
}
	.popup-content {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
}
	.column-right {
    margin-top: 30px;
}
	.popup {
    height: 80%;
		width: 90%;
    overflow-y: scroll;
}
}
.load-more button:last-child {
 display: none;
}
.load-less button {
	padding-top: 20px;
}
.load-more button {
        background-color: #E43339;
        color: #fff; /* Set text color to white or a contrasting color */
        padding: 10px 20px;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        font-size: 16px;
        margin-bottom: 20px; /* Add margin to space the buttons from the content */
    }

    .load-more button:first-child {
        margin-right: 10px; /* Add space between the buttons */
    }

