/* ===== COSQEN HEADER MODULE ===== */

.cosqen-header{
  text-align:center;
  padding:45px 20px 35px;
  margin-bottom:30px;
  position:relative;
}

.cosqen-header:after{
  content:"";
  position:absolute;
  left:50%;
  bottom:0;
  transform:translateX(-50%);
  width:65%;
  height:1px;
  background:linear-gradient(90deg,transparent,#7cf,transparent);
  opacity:.6;
}

/* LOGO */
.cosqen-logo{
  font-size:56px;
  font-weight:900;
  letter-spacing:9px;
  background:linear-gradient(90deg,#7cf,#bdf,#7cf);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  text-shadow:
    0 0 18px rgba(124,255,255,.35),
    0 0 36px rgba(124,255,255,.15);
  animation:cosqenGlow 3s ease-in-out infinite alternate;
}

@keyframes cosqenGlow{
  from{filter:drop-shadow(0 0 10px rgba(124,255,255,.3))}
  to{filter:drop-shadow(0 0 22px rgba(124,255,255,.6))}
}

.cosqen-tagline{
  margin-top:10px;
  font-size:18px;
  color:#e8f6ff;
  font-weight:600;
  letter-spacing:1.4px;
}

.cosqen-sub{
  margin-top:6px;
  font-size:13px;
  color:#9fb2c9;
  letter-spacing:.9px;
  opacity:.85;
}

/* MOBILE */
@media(max-width:600px){
  .cosqen-logo{font-size:42px;letter-spacing:6px;}
  .cosqen-tagline{font-size:15px;}
}