.btn{
    display: inline-block;
    background: #9923b1;
    color: rgb(255, 255, 255);
    padding: 10px 15px;
    margin: 5px 0;
    border-radius: 50px;
   
    text-decoration: none;
}

#content{
    display:flex;
    justify-content: center;
  padding: 1rem;
   /* justify-content: space-between; */
}

#content .container h2 a:hover{
    background: rgb(240, 11, 60);
    color:black ;

}

.col-4{
    flex-basis: 25%;
    padding: 10px ;
    min-width: 200px;
    margin-bottom: 50px;
    transition: transform 0.5s;
}
.br{
     border-radius: 2rem;

}
.title{
    text-align: center;
    margin: 0 auto 80px;
    position: relative;
    line-height: 60px;
    color:rgb(8, 1, 1);
}
.title::after{
    content: '';
    background: #ee3919;
    width: 80px;
    height: 5px;
   border-radius: 5px;
   position:absolute;
   bottom: 0;
   left: 50%;
   transform: translateX(-50%);
}
h2{
    color: rgb(238, 255, 0);
    font-weight: normal;
 }
 
.col-4 P{
     font-size: 14px;
}

.col-4:hover{
    transform: translateY(-5px);
}





* {box-sizing: border-box;}
body {font-family: Verdana, sans-serif;}
.mySlides {display: none;}
img {vertical-align: middle;}

/* Slideshow container */
.slideshow-container {
  max-width: 700px;
  position: relative;
  margin: auto;
}

/* Caption text */
.text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}



/* The dots/bullets/indicators */
.dot {
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: rgb(241, 206, 6);
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active {
  background-color: #3b3838;
}

/* Fading animation */
.fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 1.5s;
  animation-name: fade;
  animation-duration: 1.5s;
}

@-webkit-keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {
  .text {font-size: 11px}
}