 /* fixed header */

:root{
  --inblock-header-offset: 0px;
}


body{
  padding-top: var(--inblock-header-offset);
    transition: padding-top 0.2s ease;
}

.fixed-header {
  z-index:990;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  border-bottom: 1px solid transparent;
  transition: background-color 0.3s ease, opacity 0.3s ease, border-bottom 0.3s ease, box-shadow 0.3s ease;
}

.fixed-header.scrolled {
  background-color: #fff;
  border-bottom: 1px solid #eaeaea;
  opacity:1;
box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
}

.progress-line {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    background-color: #00031A;
    width: 0;
    z-index: 999;
}

.scroll-to-top {
    position: fixed;
    bottom: 24px;
    right: 24px;
    display: none;
    padding: 16px 16px;
    background-color: #00031A;
    border: none;
    border-radius: 24px;
    cursor: pointer;
    z-index: 1000;
}

.scroll-to-top svg {
    display: block;
    margin: auto;
    fill: none;
    stroke: #fff;
}

.scroll-to-top:hover {
    background: linear-gradient(28deg, #EF776B, #B164A5, #4565AD, #364B9B);
}