/* cg style*/
:root {
    --metal: #22354f;
    --dk-blue: #0d1c31;
    --bg-blue:#062858;
    --bs-blue: #0344a0;
    --bg-dark: #28303cfa;
    --bg-lite: #dae1ef;
    --grad: linear-gradient(45deg, var(--bs-blue) 74%,#00b7ea 100%);
    --bs-border-radius: 0.2em;
}
body{
    background:#eee
}
.btn-danger{
    --bs-btn-bg:#ff0040
}

.hidden{
display:none}
h2 i {
    color: var(--bs-blue);
}

.fixed-top {
  background: linear-gradient(to bottom, rgba(0,0,0,0.65) 0%,rgba(0,0,0,0.65) 28%,rgba(0,0,0,0) 100%);
    transition: all 0.2s
}
#navbartop a{
    color:#ddd;
 font-weight:700;
 padding:7px 15px
}
#navbartop a:hover{
    color:#fff
}
#navbartop .dropdown-menu a:hover{
    color:#2490ff;
    text-shadow:0 0 10px #59d9ff
}
#navbartop .dropdown-menu, .dropdown-menu li a,
.fixedtop, .bg-dark {
    background: var(--bg-dark) !important;
}

#main .shadow {
    box-shadow: 0 1.5rem 1rem -1rem rgba(0,0,0,.15) !important;
  margin-bottom:20px
} 
.hero {
    min-height: 400px;
    height: 30vh;
    overflow: clip;
    color: #fff;
    position: relative;
}

.hero:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    background: #0008;
    z-index: 1
}

.hero .intro {
    top: 20vh;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    z-index: 2
}

.hero button {
    font-weight: 600
}

.hero h1, #stats h2{
 font-weight:900 !important
}
.hero button small {
    display: block;
    font-size: 13px;
    font-weight: 400
}
.hero a.fw-bold{
 background: #fffc;
 padding:6px 10px;
 border-radius:5px;
 text-decoration:none;
 color: #333;
}
.hero a.fw-bold:hover{
     background: #0009;
}

.carousel {
    filter: blur(4px);
    min-height: 100%
}

.carousel-item {
    background: #5a6670;
    transition: all .6s ease;
}

.navbar-brand img {
    width: 150px;
}

#stats .bs-icon i, legend {
    font-size: 37px;
    color: var(--bs-blue);
}
legend {
    font-size: 17px;
}
h2 [class^="bi"], .bs-icon-primary i {
    background: var(--grad);
    background-clip: content-box;
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    transition: all 0.3s ease-in-out;
}
.justlaunched h2{
    color: var(--bg-blue);
    font-weight:900
}
.justlaunched h2 i{
    display:inline-block;
    position:relative;
      transition: all 0.3s ease-in-out;
     top:0px;
    right:0px; 
}
.justlaunched h2:hover i{
    transform: translate(0, 0);
    animation: shake 0.8s infinite;
    top:-8px;
    right:-5px
}
.btn{
    --bs-btn-border-radius:0.2rem
}
.btn-primary {
    background: var(--grad);
    transition: all 0.2s
}

.btn-primary:hover {
    box-shadow: 0 -100px 0 0 #0078ff8f inset
}
.home .card{
    background:var(--bg-lite) center no-repeat;
    background-image:var(--data-bg);
    background-size:100%;
    --bs-card-inner-border-radius:3px;
    height:200px;
    overflow:clip;
    transition:all .7s
}
.home .card:hover{
     background-size:104%;
    
}
.home .card a{
 text-decoration:none;
 color:#fff;
 font-weight:700
}
.card-img-overlay{
    background:#0006;
    color:#fff;
    text-shadow:0 2px 1px #0009;
    transition:all 0.2s
}
.card-img-overlay:hover{
     background:#000a;
     text-shadow:0 2px 2px #000f;
}
.card-img-overlay p{
    margin:0;
    max-height:0px;
    opacity:0;
    overflow:clip;
     transition:all 0.4s;
}
.card-img-overlay:hover p{
    max-height:100px;
    opacity:1
}

#stats .col .bs-icon{
      transition:all 0.4s;
}

#stats .col:hover .bs-icon{
    translate:0 -6px;
animation: rotate 3s infinite linear; 
}
 

@keyframes rotate {
  0% {    transform: translateY(-4px) rotateY(0deg);  }
  100% {    transform:translateY(-4px) rotateY(360deg); }
}

 @keyframes shake {
            0% {
                transform: translateX(0);
            }
            25% {
                transform: translateX(-5px);
            }
            50% {
                transform: translateX(5px);
            }
            75% {
                transform: translateX(-5px);
            }
            100% {
                transform: translateX(5px);
            }
        }

footer{
    background: var(--bg-lite);
    border-radius:6px;
    padding:0 15px; 
    margin:15px 0 0 0
}

footer .bs-icon a{
    color:var(--metal);
    
}

.rounded{
    border-radius:9px !important
}
#cgn {
    text-align:center;
    margin:50px 0
}
#cgn b{
    font-size:32px;
    font-weight:900;
    display:inline-block;
 margin-bottom:20px
}
 .cgn{
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
    padding: 0;
    width: 86%;
    list-style: none;
    margin: 20px auto;
  }
  .cgn img{
    max-width:100%
  }
  @media (max-width:440px){
    .cgn{
      flex-wrap: wrap;
      width: 60%;
    }
  }