@charset "UTF-8";
html,
html * {
	padding: 0;
	margin: 0;
	box-sizing: border-box
}

header {
    position: fixed;
    top: 0;
    left:0;
    width: 100%;
    z-index: 9999;
}


#content1 {
  position: relative;
  height: 80vh;
}
#button1 {
  display: block;
  position: fixed;
  right: 0px;
  width: 50px;
  height: 50px;
  border: none;
  background: #A80000;
  color: #fff;
}
#button1:hover {
  opacity: .6;
}
.list1 {
  display: block;
  width: 150px;
  position: fixed;
  top: -120%;
  right: 0;
  padding: 0;
  background: #FFC2C2;
  transition: all 0.4s;
}
.list1 li {
  display: block;
  list-style: none;
  border-bottom: 0.2px solid #FFFFFF;
}
.list1 li:last-child {
  border-bottom: none;
}
.list1 li:hover {
  opacity: .6;
}
.list1 li a {
  display: block;
  padding: 0.3em 0.7em;
  text-decoration: none;
  color: #3B0909;
}
.open {
  top: 50px;
}
.navbar.fixed-top.navbar-expand-lg.navbar-light.bg-custom .navbar-brand {
}

@media all and (-ms-high-contrast: none) {
#button1:hover + .list1, .list1:hover {
  top: 50px;
}
}
