/*
* Warna di bawah ini adalah warna default dari tema barka
* Silakan ubah nilainya jika menginginkan warna lain
* Kode warna dapat diperoleh melalui situs color picker / color palette
*/
:root {
  --primary-color: #002447;
  --secondary-color: #20639B;
  --accent-color: #15a1c4;
  --loader-color:#20639B;
}
.bgr{
  background-image: linear-gradient(to right top, #1a4990, #0075bd, #00a0cb, #00c8b7, #12eb8c);
}
.bgr2{
  background-color: #051937;
}
.bgr-footer{
  position: relative;
  min-height: 200px;
  background-image: linear-gradient(to right top, #1a4990, #0075bd, #00a0cb, #00c8b7, #12eb8c);
  z-index: 1;
}
.bgr-footer::before{
  color: black;
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: linear-gradient(45deg, rgb(15, 25, 66) 0%, rgb(40, 55, 86) 100%);
  z-index: -1;
  transition: opacity 0.5s linear;
  opacity: 0;
}
.bgr-footer:hover::before {
  opacity: 1;
}
/* return to top */
#return-to-top {
  opacity: 0.7;
  z-index: 10000;
  position: fixed;
  bottom: 15px;
  right: 15px;
  background: #05fbb5;
  border-radius: 10px;
  width: 30px;
  height: 30px;
  display: block;
  text-decoration: none;
  display: none;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
#return-to-top i {
  color: #fff;
  margin: 0;
  position: relative;
  left: 9px;
  top: 5px;
  font-size: 19px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
#return-to-top:hover {
  background: #000;
}
#return-to-top:hover i {
  color: #fff;
}