
:root {
  --back: #2d4d74; 
  --color:#fff; 
  --clean:#7A9ECB;
  --gradient:linear-gradient(90deg, rgba(2,0,36,1) 0%, rgba(122,158,203,1) 80%);
}

.small-box {
  border-radius: 2px;
  position: relative;
  display: block;
  margin-bottom: 20px;
  color:var(--gradient);
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
}
.small-box > .inner {
  padding: 10px;
}
.small-box > .small-box-footer {
  position: relative;
  text-align: center;
  padding: 3px 0;
  color: var(--color);
  color: rgba(255, 255, 255, 0.8);
  display: block;
  z-index: 10;
  background: var(--clean);
  text-decoration: none;
}
.small-box > .small-box-footer:hover {
  color:var(--color);
  background: var(--back);
}
.small-box h3 {
  font-size: 38px;
  font-weight: bold;
  margin: 0 0 10px 0;
  white-space: nowrap;
  padding: 0;
}
.small-box p {
  font-size: 15px;
}
.small-box p > small {
  display: block;
  color: #f9f9f9;
  font-size: 13px;
  margin-top: 5px;
}
.small-box h3,
.small-box p {
  z-index: 5;
}
.small-box .icon {
  -webkit-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
  position: absolute;
  top: -10px;
  right: 10px;
  z-index: 0;
  font-size: 90px;
  color: var(--clean);
}
.small-box:hover {
  text-decoration: none;
  color: var(--back) !important;
}
.small-box:hover .icon {
  font-size: 95px;
}
@media (max-width: 767px) {
  .small-box {
    text-align: center;
  }
  .small-box .icon {
    display: none;
  }
  .small-box p {
    font-size: 12px;
  }
}

.small-box .icon {font-size: 18px !important;margin-top:15px;}
.small-box h3 {font-size: 25px !important;}
.small-box:hover {
  text-decoration: none !important;
  color: var(--gradient) !important;
}
.small-box:hover .icon {
  font-size: 30px !important;

}
/*
.bg-blue {
    background: #2a343e;
}*/
@media (max-width: 767px) {
  .small-box {
    text-align: center !important;
  }
  .small-box .icon {
    display: none !important;
  }
  .small-box p {
    font-size: 12px !important;
  }

}

.small-box a{
  color:#fff !important;
}


