.scheme-container{
/*    padding: 2rem 2rem !important;*/
    margin-left: 0px !important;
    margin-right: 0px !important;
    background-color: #ffffff;
  }
  .scheme-ani {
      background-color: #000000;
      padding: 5px 20px;
      box-shadow: 0 0 10px rgb(0 0 0 / 30%);
      /* background: #16165a;
      color: #ffffff; */
  }
  .scheme-list {
      padding-top: 12px !important;
      margin-bottom: 12px !important;
      padding-bottom: 12px !important;
  }
  .scheme-list{
    border-bottom: 0px solid !important;
  }
.scheme{
    background: linear-gradient(180deg, #027db7 0%, #b31217 100%);
    font-family: 'Nanum Gothic', sans-serif;
    border-radius: 25px 0;
    position: relative;
    overflow: hidden;
}
.scheme:before,
.scheme:after,
.scheme .scheme-content:before,
.scheme .scheme-content:after{
    content: "";
    background: #fff;
    width: 50%;
    height: 4px;
    transform: scaleX(0);
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 1;
    transition: all 600ms ease;
}
.scheme:after{
    top: auto;
    bottom: 15px;
    left: auto;
    right: 15px;
}
.scheme .scheme-content:before,
.scheme .scheme-content:after{
    width: 4px;
    height: 50%;
    transform: scaleY(0);
}
.scheme .scheme-content:after{
    left: auto;
    right: 15px;
    top: auto;
    bottom: 15px;
}
/*.scheme:hover:before,
.scheme:hover:after,
.scheme:hover .scheme-content:before,
.scheme:hover .scheme-content:after{
    transform: scale(1);
}*/
.scheme img{
    width: 100%;
    height: auto;
    transform: scale3d(1.1, 1.1, 1);
    transition: all 0.25s linear;
}
.scheme:hover img{
/*    opacity: 0.25;*/
    transform: scale(1.25);
}
.scheme .inner-content{
    color: #fff;
    text-align: center;
    width: 70%;
    opacity: 0;
    transform: translateX(-50%) translateY(-50%);
    position: absolute;
    top: 70%;
    left: 50%;
    transition: all 600ms ease;
}
.scheme:hover .inner-content{
    opacity: 1;
    top: 50%;
}
.scheme .title{
    font-size: 14px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 0 0 3px;
}
.scheme .post{
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: capitalize;
    margin: 0 0 12px;
    display: block;
}
.scheme .icon{
    padding: 0;
    margin: 0;
    list-style: none;
}
.scheme .icon li{
    display: inline-block;
    margin: 0 4px;
}
.scheme .icon li a{
    color: #fff;
    font-size: 13px;
    line-height: 25px;
    height: 25px;
    width: 25px;
    border: 2px solid #fff;
    border-radius: 10px 0 10px 0;
    display: block;
    transition: all 0.3s;
}
.scheme .icon li a:hover{
    color: #b31217;
    background: #fff;
    border-radius: 0 10px 0 10px;
}
@media only screen and (max-width:990px){
    .scheme { margin: 0 0 30px; }
}