.item {
  padding-left: 10px;
  padding-right: 10px;
  
  
}
.item-card {
  transition: 0.5s;
  cursor: pointer;

   height:auto;
     box-shadow: 0px 0px 4px #aaa;
     padding:15px 20px;
  
}

h1{
    font-size:46px;
    text-align:center;
}
.item-card-title {
  font-size: 20px;
  transition: 1s;
  cursor: pointer;
  font-weight:bold;
}
.item-card-title i {
  font-size: 15px;
  transition: 1s;
  cursor: pointer;
  color: #ffa710;
}
.card-title i:hover {
  transform: scale(1.25) rotate(100deg);
  color: #18d4ca;
}

.card:hover {
  transform: scale(1.02);
  box-shadow: 10px 10px 15px rgba(0, 0, 0, 0.3);
  
}
.card-text {
  height: 280px;
}

.card::before,
.card::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  transform: scale3d(0, 0, 1);
  transition: transform 0.3s ease-out 0s;
  background: rgba(255, 255, 255, 0.1);
  content: "";
  pointer-events: none;
}
.card::before {
  transform-origin: left top;
}
.card::after {
  transform-origin: right bottom;
}
.card:hover::before,
.card:hover::after,
.card:focus::before,
.card:focus::after {
  transform: scale3d(1, 1, 1);
}
/*button {*/
/*    height: 48px!important;*/
/*}*/
/*a:hover{*/
/*    border:none!important;*/
/*    color:#000!important;*/
/*}*/
/*.bt-custom {*/
/*   padding: 5px 25px;*/
/*    color: #fff!important;*/
/*    background-color: #322bdd;*/
/*    border-radius: 10px;*/
/*    margin: 0 auto;*/
/*    border: none!important;*/
/*    margin-bottom: 20px;*/
/*    margin-top:20px;*/
/*}*/
/*.bt-custom:hover{*/
   
/*    color:#fff!important;*/
   
/*     background-color:#322bdd!important;*/
  
/*}*/
/*button :hover{*/
/*    color:#fff!important;*/
/*    background-color:#322bdd!important;*/
/*}*/


@media screen and (max-width: 600px) {
  .card {
             margin-top:20px; 
  }
  section h2.section-heading {
      font-size: 36px;
      margin-top: 0;
      font-weight: 400;
      margin-bottom: 15px;
    }
}

