/*header#masthead {

	  position: fixed;
	  background-color: #ffffff !important;
	  box-shadow: 0 1px 0 0 rgb(0 0 0 / 10%) !important;
	}
	header.site-header {
	  max-width: 100vw;
	  padding-top: 0;
	}
	.tw-header-bg .site-header {
	  padding-left: 0 !important;
	  padding-right: 0 !important;
	  padding-bottom: 0 !important;
	}
	header .header-wrapper {
	  display: flex;
	  flex: 1;
	  padding: 15px;

	  position: fixed;
	  max-width: 100vw;
	  width: 100vw;
	  top: 0;
	  z-index: 1;
	  align-items: center;
	}
	header.scrolled {
	  background-color: #ffffff !important;
	  box-shadow: 0 0 5px rgba(0, 0, 0, 0.7);
	  transition: background-color 200ms linear;
	}
	header .header-wrapper .site-title {
	  color: grey !important;
	}
	.site-header .site-title,
	.site-footer > .site-info .site-name {
	  font-weight: 400;
	  text-transform: none !important;
	  padding: 1rem;
	}
	header .header-wrapper.scrolled .site-title {
	  color: black !important;
	}

	header .header-wrapper.scrolled .primary-navigation a {
	  color: black !important;
	  transition: background-color 200ms linear;
	}*/

#vertical header.site-header {
  display: flex;
  // background: red;
  height: 100vh;
  position: fixed;
  max-width: 300px;
  flex-direction: column;
  padding: 0 20px 0 40px;
  border-right: 1px solid lightgrey;
  /* margin-left: 40px; */
  /* margin-right: 40px; */
  margin-top: 20px;
  align-items: center;
  /* justify-content: center;*/
  // flex-wrap: wrap;
  //row-gap: var(--global--spacing-vertical);
}
.site-header > .site-logo {
  text-align: left;
}
@media only screen and (min-width: 482px) {
  .site-description {
    color: currentColor;
    font-family: var(--branding--description--font-family);
    font-size: var(--branding--description--font-size);
    line-height: 1.4;
    font-weight: bold;
  }

  .site-branding {
    margin-right: initial;
    margin-top: 4px;
    border-bottom: 1px solid lightgrey;
    width: 100%;
  }
}
@media only screen and (max-width: 482px) {
  #vertical header.site-header {
    position: fixed !important;
    max-width: none !important;
    height: 10vh;
    width: 100%;
    border-right: none;
    background: white;
    margin-top: 0;
    flex-direction: row !important;
    z-index: 999;
  }
  #vertical header.site-header .site-branding {
    text-align: left;
    width: 33%;
    height: 100%;
    margin-right: 0;
  }
  #vertical .scroller {
    /* display: flex; */
    height: 100%;
    margin-left: auto;
    width: 33%;
    margin-right: auto;
  }
  #vertical .scroller .ca3-scroll-down-link {
    top: 0vh;
  }
  #vertical .ca3-scroll-down-link.ca3-scroll-up-arrow {
    top: 50%;
  }
}

/*Scrool*/
#vertical .scroller {
  display: flex;
}

#vertical .scroller .ca3-scroll-down-link {
  cursor: pointer;
  position: absolute;
  z-index: 3;
  //top: 50vh;
  //top: 5vh;
  bottom: 10vh;
  /* right: 2rem; */
  left: 49%;

  width: 24px;
  height: 24px;
  margin-left: -12px;
  border-left: 2px solid #000;
  border-bottom: 2px solid #000;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-animation: sdb05 3s infinite;
  animation: sdb05 3s infinite;
  box-sizing: border-box;
}

#vertical .ca3-scroll-down-link.ca3-scroll-up-arrow {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-animation: sdb05-up 3s infinite;
  animation: sdb05-up 3s infinite;
  box-sizing: border-box;
  /*bottom: 0vh;*/
}
@-webkit-keyframes sdb05 {
  0% {
    -webkit-transform: rotate(-45deg) translate(0, 0);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    -webkit-transform: rotate(-45deg) translate(-20px, 20px);
    opacity: 0;
  }
}
@keyframes sdb05 {
  0% {
    transform: rotate(-45deg) translate(0, 0);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: rotate(-45deg) translate(-20px, 20px);
    opacity: 0;
  }
}

@-webkit-keyframes sdb05-up {
  0% {
    -webkit-transform: rotate(-225deg) translate(0, 0);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    -webkit-transform: rotate(-225deg) translate(-20px, 20px);
    opacity: 0;
  }
}
@keyframes sdb05-up {
  0% {
    transform: rotate(-225deg) translate(0, 0);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: rotate(-225deg) translate(-20px, 20px);
    opacity: 0;
  }
}
