
/* ================================ start option ======================================= */


.ar-flex-item li {
  display: block;
  width: 100%;
  border: 1px solid #ccc;
  margin-bottom: 30px;
  border-radius: 15px;
  background-color: #fff;
  height: 260px;
  -webkit-transition: all 500ms cubic-bezier(0.165,0.84,0.44,1);
  -o-transition: all 500ms cubic-bezier(0.165,0.84,0.44,1) ;
  transition: all 500ms cubic-bezier(0.165,0.84,0.44,1);
}

 .ar-flex-item:nth-child(1) {
  -webkit-animation-delay: 100ms;
  animation-delay: 100ms;
}
.ar-flex-info {
  position: relative;
  text-align: center;
  padding: 0 10%;
  height: 100%;
}
 .ar-flex-info i {
  margin-top: 25px;
  display: inline-block;
  padding: 0;
  border-radius: 100%;
  border: 1px solid transparent;
  background-color: #fff;
  -webkit-transition: all 500ms cubic-bezier(0.165,0.84,0.44,1);
  -o-transition: all 500ms cubic-bezier(0.165,0.84,0.44,1);
  transition: all 500ms cubic-bezier(0.165,0.84,0.44,1);
}
h1.flex-title {
  font-size: 16px;
  font-weight: 500;
  margin-top: 20px;
  margin-bottom: 5px;
  color: #444;
}
 .ar-flex-info p {
  text-align: center;
  font-size: 12px;
  line-height: 18px;
}
 .ar-flex-info .ar-flex-options a {
  display: block;
  margin: 7px 5px;
  padding: 10px;
  /* background-color: #bf9e66; */
  background-color: #1661ad;
  border-radius: 25px;
  color: #fff;
  -webkit-transition: all 100ms cubic-bezier(0.47,0,0.745,0.715);
  -o-transition: all 100ms cubic-bezier(0.47,0,0.745,0.715);
  transition: all 100ms cubic-bezier(0.47,0,0.745,0.715);
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
}
.ar-flex-item li:hover .ar-flex-info h1.flex-title {
  color: #bf9e66;
  margin-top: 10px;
  font-size: 15px;
}
.ar-flex-item li:hover {
  -webkit-transform: scale(1.06);
  -ms-transform: scale(1.06);
  transform: scale(1.06);
  border-color: #bf9e66;
  border-color: #1661ad;

}

.ar-flex-item li:hover .ar-flex-info i {
  padding: 15px;
  border-radius: 100%;
  /* border: 1px solid #bf9e66; */
  border: 1px solid #1661ad;
  margin-top: -40px;
  background-color: #fff;
  color:#1661ad;
}
.ar-flex-item li:hover .ar-flex-info h1.flex-title {
  /* color: #bf9e66; */
  color:#1661ad;
  margin-top: 10px;
  font-size: 15px;
  font-weight: bold;
}

 .ar-flex-item li:hover .ar-flex-info .ar-flex-options {
  display: block;
  opacity: 1;
}