.main-events{
  display: flex;
background-color: white;
  justify-content: space-around;
  margin: 10px 5px;
    border-radius: 5px;
  
}
@media screen and (max-width:360px) {
  .main-events{
    
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .right-section{
    justify-content: center;
  }
  .left-section button{
    font-size: .8rem;
  }
}

.left-section{
  
  padding: 10px;
 margin: 10px;

}

.left-section button{
  padding: 5px;
  margin: 5px;
}


.right-section{
  display: flex;
  padding: 10px;
  margin: 10px;
  flex-wrap: wrap;
  justify-content: center;
}
.box{
  border: 1px solid black;
  margin: 5px;
  padding: 5px;
  display: flex;
  flex-direction: column;
border-radius: 5px;
  align-items: center;
  width: 400px;
}

@media screen and (max-width:596px) {
  .box{
    border: 1px solid black;
  margin: 5px;
  padding: 5px;
  display: flex;
  flex-direction: column;
border-radius: 5px;
  align-items: center;
  width: 170px;
  }
  
}

.box img{
  max-width: 150px;
  max-width: 150px;
}





.text-slider{
  background-color: rgb(248, 248, 248);
  align-items: center;
  margin: 10px;
  border-radius: 5px;
}






.logo-slider {
  overflow: hidden;
  padding: 30px 0 0 0;
  white-space: nowrap;
  position: relative;
  
}



.logos-slide {
  display: flex;
 gap: 10px;
  animation: 20s slide infinite linear;
}

.logos-slide a{
  color: black;
}
.logos-slide img {
  width: 183px;
  height: 83px;
  margin: 0 40px;
}


@keyframes slide {
  from {
      transform: translateX(0);
  }

  to {
      transform: translateX(-100%);
  }
}



/* previous and next button */






/* know more button */
/* 

.button1 {
  border-radius: 4px;
  background-color: #df8b1e;
  border: none;
  color: #FFFFFF;
  text-align: center;
  font-size: 16px;
  padding: 4px;
  width: 150px;
  transition: all 0.5s;
  cursor: pointer;
  margin: 5px;
}

.button1 span {
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: 0.5s;

}
.button1 span a{
  color: white;
}

.button1 span:after {
  content: '\00bb';
  position: absolute;
  opacity: 0;
  top: 0;
  right: -20px;
  transition: 0.5s;
}

.button1:hover span {
  padding-right: 25px;
}

.button1:hover span:after {
  opacity: 1;
  right: 0;
} */





.Blog-heading{
	padding: 20px;
	margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.container {
  max-width: 800px;
  margin: 0 auto;
}

.categories {
  margin-bottom: 20px;
}

.category-btn {
  margin-right: 10px;
  padding: 5px 10px;
  border: 1px solid #ccc;
  background-color: #f0f0f0;
  cursor: pointer;
}

.blog-post {
  margin-top: 20px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  padding: 10px;
  background-color: white;
  max-width: 800px;
  border-radius: 10px;
}

.blog-img {
  width: 100%;
  max-width: 200px;
  height: auto;
}