@keyframes vertical-grow {
  from {
    height: 0;
  }
  to {
    height: 100vh;
  }
}
@keyframes left-in {
  0% {
    transform: translateY(-100px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes left-icons {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeInArrows {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
#smooth-content {
  overflow: visible;
  width: 100%;
  /* set a height because the contents are position: absolute, thus natively there's no height */
  min-height: -moz-fit-content !important;
  min-height: fit-content !important;
}

body {
  margin: 0;
  overscroll-behavior: none;
}
body.body-overflow-none .hamburger:hover .menuarrow {
  visibility: hidden;
}
body.body-overflow-none #download1:hover .arrow1 {
  visibility: hidden;
}
body.body-overflow-none .dropdown-share:hover .sharearrow {
  visibility: hidden;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 60px;
  z-index: 99;
  border-right: solid 1px #dadada;
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  justify-content: space-between;
  animation-name: vertical-grow;
  animation-duration: 1.2s;
  animation-timing-function: ease;
  animation-fill-mode: forwards;
}
header.bg-white {
  background-color: white;
}
header .logo {
  margin: unset !important;
}
header .logos {
  display: flex;
  gap: 14px;
  align-items: center;
  position: relative;
  rotate: 270deg;
  bottom: 200px;
  animation-name: left-in;
  animation-duration: 0.7s;
  animation-delay: 1s;
  animation-timing-function: ease;
  animation-fill-mode: forwards;
  opacity: 0;
  transform: translateY(0);
}
header .logos .logo {
  width: 200px;
}
header .logos .logo2 {
  width: 70px;
}

.share-container {
  position: absolute;
  left: 80px;
  top: 25px;
  visibility: hidden;
}

.sharearrow svg {
  width: 50px;
  height: 50px;
}
.sharearrow p {
  color: #000;
  text-align: center;
  font-family: swister, sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 22px;
  margin: 0;
  padding-left: 10px;
}

.arrow1 {
  position: absolute;
  left: 80px;
  top: 25px;
  visibility: hidden;
}
.arrow1 svg {
  width: 50px;
  height: 50px;
}
.arrow1 p {
  color: #000;
  text-align: center;
  font-family: swister, sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 22px;
  margin: 0;
}

.menuarrow {
  position: absolute;
  left: 80px;
  top: 25px;
  visibility: hidden;
}
.menuarrow svg {
  width: 50px;
  height: 50px;
}
.menuarrow p {
  color: #000;
  text-align: center;
  font-family: swister, sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 22px;
  margin: 0;
  padding-left: 16px;
}

.hidden {
  visibility: hidden;
}

.vertical-line {
  border-left: 1px solid rgba(0, 0, 0, 0.94);
  height: 26px;
}

.header-icons {
  display: flex;
  flex-direction: column;
  width: 100%;
  animation-name: left-icons;
  animation-duration: 2s;
  animation-delay: 0.3s;
  animation-timing-function: ease;
  animation-fill-mode: forwards;
  opacity: 0;
  transform: translateX(0);
}
.header-icons ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.header-icons ul li {
  padding: 20px;
  border-bottom: 1px solid rgba(179, 179, 179, 0.8);
  transition: all 300ms ease;
}
.header-icons ul li:hover {
  cursor: pointer;
}
.header-icons #download1 {
  padding: 0;
}
.header-icons #download1 a {
  padding: 20px;
  display: block;
}
.header-icons #download1:hover {
  background-color: #000000;
  cursor: pointer;
}
.header-icons #download1:hover svg.downloadicon path {
  stroke: white;
}
.header-icons #download1:hover .arrow1 {
  visibility: visible;
}
.header-icons #download1:hover .downloadarrow .downloadarrow1 {
  animation-name: arrow;
  animation-duration: 0.5s;
  animation-timing-function: linear;
  animation-fill-mode: forwards;
  stroke: black;
  stroke-width: 3px;
  fill: none;
  stroke-dasharray: 208;
  stroke-dashoffset: 208;
}
.header-icons #download1:hover .downloadarrow .downloadarrow2 {
  animation-name: arrow;
  animation-delay: 0.5s;
  animation-duration: 0.3s;
  animation-timing-function: linear;
  animation-fill-mode: forwards;
  stroke: black;
  stroke-width: 3px;
  fill: none;
  stroke-dasharray: 39;
  stroke-dashoffset: 39;
}
.header-icons #download1:hover p.download-text {
  animation-name: fadeIn;
  animation-duration: 0.5s;
  animation-timing-function: linear;
  animation-fill-mode: forwards;
}

.home .home-container {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.home h2 {
  font-family: swister, sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 36px;
  text-align: center;
  color: #965d00;
  margin: 0;
  animation: fadeIn 3s ease-in;
}
.home img {
  margin: 0 auto;
  display: block;
}
.home img.image_preloader {
  width: 50%;
}
.home h1 {
  color: #000;
  text-align: center;
  font-variant-numeric: stacked-fractions;
  font-feature-settings: "liga" off, "clig" off;
  font-family: "MMC Display Condensed";
  font-size: 80px;
  font-style: normal;
  font-weight: 700;
  line-height: 82px;
  text-transform: uppercase;
  margin-bottom: 20px;
  margin-top: 0;
  animation: fadeIn 3s ease-in;
}

.container-arrows {
  position: relative;
  padding: 0px 20px;
}

.container-baner-arrows {
  position: fixed;
  top: 40%;
  display: flex;
  justify-content: center;
  height: 0px;
  width: 100%;
  z-index: 2;
}
@media (max-width: 768px) {
  .container-baner-arrows {
    display: none;
  }
}

.container-vol8 {
  width: 100%;
  max-width: 1260px;
  position: relative;
}

.page-arrows {
  display: flex;
  flex-direction: column;
  position: absolute;
  right: 0;
  z-index: 1;
  padding-right: 20px;
  opacity: 1;
  animation: fadeInArrows 3s ease-in;
}
@media (max-width: 1024px) {
  .page-arrows {
    right: -30px;
  }
}
.page-arrows .div-arrow {
  visibility: hidden;
}
.page-arrows .top-arrow-div {
  visibility: hidden;
  position: absolute;
  right: 48px;
  bottom: 20px;
  display: flex;
  flex-direction: column-reverse;
}
.page-arrows .top-arrow {
  position: relative;
}
.page-arrows .top-arrow:hover .top-arrow-div {
  visibility: visible;
}
.page-arrows .top-arrow:hover .read-prev {
  opacity: 1;
}
.page-arrows .top-arrow:hover .read-prev .previous1 {
  animation-name: arrow;
  animation-duration: 0.5s;
  animation-timing-function: linear;
  animation-fill-mode: forwards;
  stroke: black;
  stroke-width: 3px;
  fill: none;
  stroke-dasharray: 208;
  stroke-dashoffset: 208;
}
.page-arrows .top-arrow:hover .read-prev .previous2 {
  animation-name: arrow;
  animation-delay: 0.5s;
  animation-duration: 0.3s;
  animation-timing-function: linear;
  animation-fill-mode: forwards;
  stroke: black;
  stroke-width: 3px;
  fill: none;
  stroke-dasharray: 39;
  stroke-dashoffset: 39;
}
.page-arrows .top-arrow:hover p.prev-text {
  animation-name: fadeIn;
  animation-duration: 0.5s;
  animation-timing-function: linear;
  animation-fill-mode: forwards;
}
.page-arrows .read-prev {
  width: 45px;
  height: 60px;
  opacity: 0;
}
.page-arrows p.prev-text {
  color: #000;
  text-align: center;
  font-feature-settings: "liga" off, "clig" off;
  font-family: swister, sans-serif !important;
  font-size: 20px !important;
  font-style: normal;
  font-weight: 600 !important;
  line-height: 22px;
  margin: 0;
  position: relative;
  top: -5px;
  right: 15px;
  opacity: 0;
}
.page-arrows .next-arrow:hover .div-arrow {
  visibility: visible;
}
.page-arrows .next-arrow:hover .read-next {
  opacity: 1;
}
.page-arrows .next-arrow:hover .read-next .next1 {
  animation-name: arrow;
  animation-duration: 0.5s;
  animation-timing-function: linear;
  animation-fill-mode: forwards;
  stroke: black;
  stroke-width: 3px;
  fill: none;
  stroke-dasharray: 208;
  stroke-dashoffset: 208;
}
.page-arrows .next-arrow:hover .read-next .next2 {
  animation-name: arrow;
  animation-delay: 0.5s;
  animation-duration: 0.3s;
  animation-timing-function: linear;
  animation-fill-mode: forwards;
  stroke: black;
  stroke-width: 3px;
  fill: none;
  stroke-dasharray: 39;
  stroke-dashoffset: 39;
}
.page-arrows .next-arrow:hover p.next-text {
  animation-name: fadeIn;
  animation-duration: 0.5s;
  animation-timing-function: linear;
  animation-fill-mode: forwards;
}
.page-arrows .read-next {
  width: 45px;
  height: 60px;
  opacity: 0;
}
.page-arrows p.next-text {
  color: #000;
  text-align: center;
  font-feature-settings: "liga" off, "clig" off;
  font-family: swister, sans-serif !important;
  font-size: 20px;
  font-style: normal;
  font-weight: 600 !important;
  line-height: 22px;
  margin: 0;
  position: relative;
  top: 5px;
  right: 15px;
  opacity: 0;
}
.page-arrows a {
  background: none !important;
  padding: 0px !important;
}
.page-arrows .arrows {
  height: 50px;
  width: 50px;
  position: relative;
  cursor: pointer;
  transition: all 300ms ease;
  background-color: transparent;
  border: 1px solid rgba(179, 179, 179, 0.8);
}
.page-arrows .arrows.prev {
  border-bottom: 0;
}
.page-arrows .arrows:hover {
  background-color: black;
}
.page-arrows .arrows:hover svg path {
  stroke: white;
}
.page-arrows .arrows svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.page-arrows .arrows svg path {
  stroke: black;
}
.page-arrows .prev.non-active {
  border-bottom: 0;
}
.page-arrows .non-active {
  cursor: default;
}
.page-arrows .non-active:hover {
  background-color: transparent;
}
.page-arrows .non-active:hover svg path {
  stroke: black;
}

.dropdown-share {
  position: relative;
}
.dropdown-share:hover {
  background: black;
  cursor: pointer;
}
.dropdown-share:hover .share-icon path {
  stroke: white;
}
.dropdown-share:hover .sharearrow {
  visibility: visible;
}
.dropdown-share:hover .sharearrow .sharearrow1 {
  animation-name: arrow;
  animation-duration: 0.5s;
  animation-timing-function: linear;
  animation-fill-mode: forwards;
  stroke: black;
  stroke-width: 3px;
  fill: none;
  stroke-dasharray: 208;
  stroke-dashoffset: 208;
}
.dropdown-share:hover .sharearrow .sharearrow2 {
  animation-name: arrow;
  animation-delay: 0.5s;
  animation-duration: 0.3s;
  animation-timing-function: linear;
  animation-fill-mode: forwards;
  stroke: black;
  stroke-width: 3px;
  fill: none;
  stroke-dasharray: 39;
  stroke-dashoffset: 39;
}
.dropdown-share:hover p.share-text {
  animation-name: fadeIn;
  animation-duration: 0.5s;
  animation-timing-function: linear;
  animation-fill-mode: forwards;
}
.dropdown-share:hover .dropdown_menu_share {
  max-height: 240px;
  transition: max-height 300ms ease-in;
}
.dropdown-share:hover .dropdown_menu_share li {
  display: block;
}

.dropdown_menu_share {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  max-height: 0;
  transition: max-height 300ms ease-out;
  z-index: -1;
  background-color: black;
}
.dropdown_menu_share li {
  display: none;
  border: none !important;
  opacity: 0;
}
.dropdown_menu_share li img.x-tw-img {
  width: 15px;
}

.dropdown_menu_share .dropdown_item-1 {
  transform-origin: top center;
  animation: rotateX 600ms 100ms ease-in-out forwards;
}
.dropdown_menu_share .dropdown_item-2 {
  transform-origin: top center;
  animation: rotateX 600ms 200ms ease-in-out forwards;
}
.dropdown_menu_share .dropdown_item-3 {
  transform-origin: top center;
  animation: rotateX 600ms 300ms ease-in-out forwards;
}
.dropdown_menu_share .dropdown_item-4 {
  transform-origin: top center;
  animation: rotateX 600ms 400ms ease-in-out forwards;
}

@keyframes rotateX {
  0% {
    opacity: 0;
    transform: rotateX(-90deg);
  }
  50% {
    transform: rotateX(-20deg);
  }
  100% {
    opacity: 1;
    transform: rotateX(0deg);
  }
}
.hamburger .linemenu {
  width: 19px;
  height: 1.5px;
  background-color: black;
  display: block;
  margin: 3px auto;
  transition: all 0.3s ease-in-out;
  box-sizing: border-box;
}

.hamburger:hover {
  cursor: pointer;
}

.hamburger:hover {
  background: black;
  cursor: pointer;
}
.hamburger:hover .linemenu {
  background: white;
}
.hamburger:hover .menuarrow path {
  stroke: white;
}
.hamburger:hover .menuarrow {
  visibility: visible;
}
.hamburger:hover .menuarrow .menuarrow1 {
  animation-name: arrow;
  animation-duration: 0.5s;
  animation-timing-function: linear;
  animation-fill-mode: forwards;
  stroke: black;
  stroke-width: 3px;
  fill: none;
  stroke-dasharray: 208;
  stroke-dashoffset: 208;
}
.hamburger:hover .menuarrow .menuarrow2 {
  animation-name: arrow;
  animation-delay: 0.5s;
  animation-duration: 0.3s;
  animation-timing-function: linear;
  animation-fill-mode: forwards;
  stroke: black;
  stroke-width: 3px;
  fill: none;
  stroke-dasharray: 39;
  stroke-dashoffset: 39;
}
.hamburger:hover p.menu-text {
  animation-name: fadeIn;
  animation-duration: 0.5s;
  animation-timing-function: linear;
  animation-fill-mode: forwards;
}

#hamburger-1.is-active .linemenu:nth-child(2) {
  opacity: 0;
}

#hamburger-1.is-active .linemenu:nth-child(1) {
  transform: translateY(4.5px) rotate(45deg);
}

#hamburger-1.is-active .linemenu:nth-child(3) {
  transform: translateY(-4.5px) rotate(-45deg);
}

.box-color {
  height: 20px;
  width: 20px;
}

.box-color.dark-green {
  background-color: #007934;
}

.box-color.green {
  background-color: #3dad2c;
}

.box-color.light-green {
  background-color: #86c300;
}

.box-color.navy {
  background-color: #002c77;
}

.box-color.blue {
  background-color: #009de0;
}

.box-color.light-blue {
  background-color: #76d3ff;
}

.popupmenu-tabs {
  padding-bottom: 60px;
}

.popup-menu {
  position: fixed;
  top: 0;
  width: calc(100vw - 61px);
  right: 0;
  height: 100%;
  overflow-y: scroll;
  background-color: #ffffff;
  z-index: 90;
  transform: translateX(-100vw);
  transition: transform 2s ease-in-out;
}
.popup-menu.open {
  transform: translateX(0);
}

.popup-menu .navigation {
  border-bottom: 1px solid #dadada;
  background-color: #ffffff;
  z-index: 999999;
  position: sticky;
  top: 0;
}

.popup-menu .navigation .navigation-div {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.popup-menu .navigation .navigation-div .navigation-text {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}

.popup-menu .navigation .navigation-div .navigation-text a {
  font-family: "Noto Sans";
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: -0.16px;
  margin: 0px;
  color: #999999;
  padding: 13.7px 20px;
  text-decoration: none;
  border-bottom: 3px solid #ffffff;
}

.popup-menu .navigation .navigation-div .navigation-text a.active {
  color: #000000;
  border-bottom: 3px solid #000000;
}

.popup-menu .content {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: 100%;
  min-height: 100vh;
}

.arrowanimation {
  opacity: 0;
}
.arrowanimation.active {
  opacity: 1;
  z-index: 999999;
  width: 9em;
  height: 18.625em;
  position: absolute;
  top: 145px;
  left: 90px;
  transform: rotate(-109deg);
}
.arrowanimation.active .path, .arrowanimation.active .path-3, .arrowanimation.active .path-2 {
  stroke-dasharray: 400;
  stroke-dashoffset: 400;
  animation-name: arrow;
  animation-duration: 1.5s;
  animation-timing-function: linear;
  animation-fill-mode: forwards;
  stroke: white;
  stroke-width: 2px;
  fill: none;
}
.arrowanimation.active .arrow-resize {
  transform-origin: bottom;
  transform: scale(0.6);
  transform-box: fill-box;
}

.reading {
  opacity: 0;
  font-family: swister, sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 22px;
  width: 50px;
}
.reading.active {
  opacity: 1;
  position: absolute;
  top: 180px;
  left: 33px;
  color: white;
  z-index: 99;
  animation: none;
}

.popup-menu .content .item {
  width: 25%;
  color: #000000;
  text-decoration: none;
  height: 290px;
  position: inherit;
}

.popup-menu .content .item:not(.active):hover .reading {
  opacity: 1;
  position: absolute;
  top: 180px;
  left: 33px;
  color: white;
  z-index: 99;
  animation: mymove 1.2s ease-in-out;
}
.popup-menu .content .item:not(.active):hover .arrowanimation {
  opacity: 1;
  z-index: 999999;
  width: 9em;
  height: 18.625em;
  position: absolute;
  top: 145px;
  left: 90px;
  transform: rotate(-109deg);
}
.popup-menu .content .item:not(.active):hover .arrowanimation .path, .popup-menu .content .item:not(.active):hover .arrowanimation .path-3, .popup-menu .content .item:not(.active):hover .arrowanimation .path-2 {
  stroke-dasharray: 400;
  stroke-dashoffset: 400;
  animation-name: arrow;
  animation-duration: 1.5s;
  animation-timing-function: linear;
  animation-fill-mode: forwards;
  stroke: white;
  stroke-width: 2px;
  fill: none;
}
.popup-menu .content .item:not(.active):hover .arrowanimation .arrow-resize {
  transform-origin: bottom;
  transform: scale(0.6);
  transform-box: fill-box;
}

@keyframes mymove {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@media (max-width: 1310px) {
  .popup-menu .content .item {
    width: 33.3%;
  }
}
@media (max-width: 768px) {
  .popup-menu .content .item {
    width: 50%;
  }
}
.popup-menu .content .item .popup-image {
  width: 230px;
  -o-object-fit: cover;
  object-fit: cover;
  z-index: 99999;
  position: absolute;
  bottom: -45px;
  right: 0px;
  height: 0;
  transition: 200ms ease;
}
.popup-menu .content .item .popup-image.active {
  height: 230px;
  transform: rotate(-3.264deg);
}

.popup-menu .content .item .content-item {
  height: 290px;
  padding: 0px 30px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 300ms ease;
  z-index: 1;
  border-right: 1px solid rgba(179, 179, 179, 0.3);
  border-bottom: 1px solid rgba(179, 179, 179, 0.3);
  /*&.active{
    background-color: #000000;
  }*/
}

.popup-menu .content .item .content-item.active .content-item-bg {
  width: 100%;
  height: 100%;
}

.popup-menu .content .item .content-item.active .minititle-popup-menu {
  color: #ffffff;
}

.popup-menu .content .item .content-item.active .title-popup-menu {
  color: #ffffff;
}

.popup-menu .content .item .content-item.active .minititle-popup-menu-light-bg {
  color: #000000 !important;
}

.popup-menu .content .item .content-item.active .title-popup-menu-light-bg {
  color: #000000 !important;
}

.popup-menu .content .item .content-item.active + .popup-image {
  height: 120px;
}

.popup-menu .content .item .content-item .content-item-bg {
  position: absolute;
  width: 0%;
  right: 0;
  top: 0;
  height: 0%;
  transition: all 200ms ease;
  background-color: black;
}

.popup-menu .content .item .content-item .additional-details {
  position: absolute;
  top: 0;
  right: 0;
  width: -moz-fit-content;
  width: fit-content;
}

.popup-menu .content .item .content-item .minititle-popup-menu {
  z-index: 2;
}

.popup-menu .content .item .content-item .title-popup-menu {
  z-index: 2;
  color: #000;
  font-feature-settings: "liga" off, "clig" off;
  font-family: "MMC Display Condensed";
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 22px;
  text-transform: uppercase;
  margin: 0;
}
@media (max-width: 600px) {
  .popup-menu .content .item .content-item .title-popup-menu {
    font-size: 16px;
    line-height: 18px;
  }
}

.popup-menu .content .item .content-item .title-popup-menu-editions {
  z-index: 2;
  color: #000;
  font-feature-settings: "liga" off, "clig" off;
  font-family: "MMC Display Condensed";
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 22px;
  text-transform: uppercase;
  margin: 0;
  padding-top: 32px;
}
@media (max-width: 600px) {
  .popup-menu .content .item .content-item .title-popup-menu-editions {
    font-size: 16px;
    line-height: 18px;
    padding-top: 20px;
  }
}

.popup-menu .content .item:hover .title-popup-menu-editions {
  color: #ffffff;
}

.popup-menu .content .item .content-item.active .title-popup-menu-editions {
  color: #ffffff;
}

.popup-menu .content .item:hover .content-item-bg {
  width: 100%;
  height: 100%;
}

.popup-menu .content .item:hover .minititle-popup-menu {
  color: #ffffff;
}

.popup-menu .content .item:hover .title-popup-menu {
  color: #ffffff;
}

.popup-menu .content .item:hover .minititle-popup-menu-light-bg {
  color: #000000 !important;
}

.popup-menu .content .item:hover .title-popup-menu-light-bg {
  color: #000000 !important;
}

/*.popup-menu .content .item:hover {
  background-color: #000000 !important;
}*/
.popup-menu .content .item:hover .popup-image {
  height: 230px;
  transform: rotate(-3.264deg);
}

.popup-menu .content .grid-lines-popup {
  z-index: 1;
}

@media (max-width: 1310px) {
  .popup-menu .content .grid-lines-popup {
    display: flex;
  }
}
@media (max-width: 1310px) {
  .popup-menu .content .grid-lines-popup .grid-line-first-deleted {
    display: none;
  }
}
@media (max-width: 768px) {
  .popup-menu .content .grid-lines-popup .grid-line-second-deleted {
    display: none;
  }
}
.popup-menu .popup-menu-close-btn {
  border-right: 1px solid #f0f0f0;
  border-left: 1px solid #f0f0f0;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.popup-menu .popup-menu-close-btn img {
  padding: 10px 20px;
  width: 15px;
}

#editions {
  display: none;
}

#editionsMobile {
  display: none;
}

.body-overflow-none {
  overflow: hidden;
}

@keyframes overlayAnimation {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes contentMenuAnimation {
  from {
    height: 0px;
  }
  to {
    height: 100%;
  }
}
.popup-menu-mobile {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100vh;
  z-index: 99;
  display: none;
}

.popup-menu-mobile .popup-menu-mobile-content {
  height: 100%;
  width: 100%;
  background-color: #ffffff;
  z-index: 1;
  position: fixed;
  bottom: 0px;
  left: 0px;
  animation-name: contentMenuAnimation;
  animation-duration: 200ms;
  overflow: scroll;
}

.popup-menu-mobile .popup-menu-mobile-content .popup-menu-mobile-bottom-fix {
  background-color: #ffffff;
  position: fixed;
  bottom: 0;
  display: flex;
  justify-content: space-between;
  width: 100%;
  height: 50px;
  align-items: center;
  border-top: 1px solid #dadada;
  z-index: 3;
}

.popup-menu-mobile .popup-menu-mobile-content .popup-menu-mobile-close-btn {
  padding-right: 20px;
  width: 20px;
}

.popup-menu-mobile .popup-menu-mobile-content .popup-menu-mobile-headings {
  width: 100%;
}

.popup-menu-mobile .popup-menu-mobile-content .popup-menu-mobile-items {
  overflow-y: scroll;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 0px;
}

.popup-menu-mobile .popup-menu-mobile-content .popup-menu-mobile-items a {
  text-decoration: none;
}

.popup-menu-mobile .popup-menu-mobile-content .popup-menu-mobile-title {
  color: #999999;
  font-family: "Noto Sans";
  font-weight: 600;
  font-size: 14px;
  line-height: 120%;
  letter-spacing: -0.16px;
  margin: 0px;
  padding: 13px 20px;
  text-decoration: none;
}

.popup-menu-mobile .popup-menu-mobile-content .popup-menu-mobile-title.active {
  color: #000000;
  border-top: 3px solid #000000;
}

.popup-menu-mobile .popup-menu-mobile-content .popup-menu-mobile-item {
  color: #000000;
  font-family: "Noto Sans";
  margin: 0px;
  border-bottom: 1px solid #dadada;
  display: flex;
  flex-direction: column;
  height: 157px;
}

.popup-menu-mobile .popup-menu-mobile-content .popup-menu-mobile-item:nth-child(odd) {
  border-right: 1px solid #dadada;
}

.popup-menu-mobile .popup-menu-mobile-content .popup-menu-mobile-item:hover .content .content-item-bg {
  width: 100%;
  height: 100%;
}

.popup-menu-mobile .popup-menu-mobile-content .popup-menu-mobile-item:hover .content .popup-menu-mobile-item-left .popup-menu-mobile-item-details h4 {
  color: #ffffff;
}

.popup-menu-mobile .popup-menu-mobile-content .popup-menu-mobile-item:hover .content .popup-menu-mobile-item-left .title-popup-menu {
  color: #ffffff;
}

.popup-menu-mobile .popup-menu-mobile-content .popup-menu-mobile-item:focus .content .content-item-bg {
  width: 100%;
  height: 100%;
}

.popup-menu-mobile .popup-menu-mobile-content .popup-menu-mobile-item.active .content .content-item-bg {
  width: 100%;
  height: 100%;
}

.popup-menu-mobile .popup-menu-mobile-content .popup-menu-mobile-item.active .content .bg-dark-green {
  background-color: #007934;
}

.popup-menu-mobile .popup-menu-mobile-content .popup-menu-mobile-item.active .content .bg-green {
  background-color: #3dad2c;
}

.popup-menu-mobile .popup-menu-mobile-content .popup-menu-mobile-item.active .content .bg-light-green {
  background-color: #86c300;
}

.popup-menu-mobile .popup-menu-mobile-content .popup-menu-mobile-item.active .content .bg-navy {
  background-color: #002c77;
}

.popup-menu-mobile .popup-menu-mobile-content .popup-menu-mobile-item.active .content .bg-blue {
  background-color: #009de0;
}

.popup-menu-mobile .popup-menu-mobile-content .popup-menu-mobile-item.active .content .bg-light-blue {
  background-color: #76d3ff;
}

.popup-menu-mobile .popup-menu-mobile-content .popup-menu-mobile-item.active .content .popup-menu-mobile-item-left .popup-menu-mobile-item-details h4 {
  color: #ffffff;
}

.popup-menu-mobile .popup-menu-mobile-content .popup-menu-mobile-item.active .content .popup-menu-mobile-item-left .title-popup-menu {
  color: #ffffff;
}

.popup-menu-mobile .popup-menu-mobile-content .popup-menu-mobile-item .content {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}

.popup-menu-mobile .popup-menu-mobile-content .popup-menu-mobile-item .content .content-item-bg {
  position: absolute;
  width: 0%;
  height: 0%;
  display: flex;
  align-self: self-end;
  transition: all 300ms ease;
}

.popup-menu-mobile .popup-menu-mobile-content .popup-menu-mobile-item .content .bg-dark-green {
  background-color: #007934;
}

.popup-menu-mobile .popup-menu-mobile-content .popup-menu-mobile-item .content .bg-green {
  background-color: #3dad2c;
}

.popup-menu-mobile .popup-menu-mobile-content .popup-menu-mobile-item .content .bg-light-green {
  background-color: #86c300;
}

.popup-menu-mobile .popup-menu-mobile-content .popup-menu-mobile-item .content .bg-navy {
  background-color: #002c77;
}

.popup-menu-mobile .popup-menu-mobile-content .popup-menu-mobile-item .content .bg-blue {
  background-color: #009de0;
}

.popup-menu-mobile .popup-menu-mobile-content .popup-menu-mobile-item .content .bg-light-blue {
  background-color: #76d3ff;
}

.popup-menu-mobile .popup-menu-mobile-content .popup-menu-mobile-item .content .box-color {
  height: 20px;
  width: 20px;
  align-self: end;
}

.popup-menu-mobile .popup-menu-mobile-content .popup-menu-mobile-item .content .popup-menu-mobile-item-left {
  padding: 0 20px;
  z-index: 2;
}

.popup-menu-mobile .popup-menu-mobile-content .popup-menu-mobile-item:last-child {
  margin-bottom: 60px;
}

.popup-menu-mobile .popup-menu-mobile-content .popup-menu-mobile-item h6 {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: normal;
  margin-top: 0px;
}

@media (max-width: 576px) {
  .popup-menu-mobile .popup-menu-mobile-content .popup-menu-mobile-item h6 {
    font-weight: 700;
  }
}
.popup-menu-mobile .popup-menu-mobile-content .popup-menu-mobile-item h4 {
  font-family: "MMC Display Condensed", sans-serif;
  text-transform: none;
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
}

.popup-menu-mobile .popup-menu-mobile-content .popup-menu-mobile-item .popup-menu-mobile-item-details {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: start;
  margin-top: 10px;
  margin-bottom: 5px;
}

.popup-menu-mobile .popup-menu-mobile-content .popup-menu-mobile-item .popup-menu-mobile-item-details h6 {
  margin: 0;
  padding: 0;
}

.popup-menu-mobile .popup-menu-mobile-content .popup-menu-mobile-item .popup-menu-mobile-item-details .box-section-color {
  height: 9px;
  width: 8px;
  margin-right: 5px;
  margin-top: 2px;
}

.popup-menu-mobile .popup-menu-mobile-content .popup-menu-mobile-item .popup-menu-mobile-img {
  height: 100px;
  width: 100px;
  -o-object-fit: cover;
  object-fit: cover;
}

.flex-center {
  display: flex;
  justify-content: center;
}

.grid-lines-popup {
  width: 100%;
  display: flex;
  justify-content: space-between;
  position: absolute;
  top: 0;
  left: 0;
  height: 100% !important;
}

.grid-lines {
  width: 100%;
  display: flex;
  justify-content: space-between;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

@media (max-width: 1310px) {
  .grid-lines {
    display: none;
  }
}
.grid-line {
  height: 100%;
  width: 1px;
  background-color: #f0f0f0;
}

.toc-menu-desktop-pages {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-gap: 0;
}

@media screen and (max-width: 1250px) {
  .toc-menu-desktop-pages {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .toc-menu-desktop-pages {
    grid-template-columns: 1fr 1fr;
  }
}
.toc-menu-desktop-pages {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  position: relative;
  align-content: flex-start;
}

.toc-menu-desktop-editions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  position: relative;
  align-content: flex-start;
  width: 100%;
}

#editions .content-item.active {
  background-color: #000000;
}

.swister-heading-xs {
  color: #000;
  font-family: swister, sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 20px;
  margin-bottom: 24px;
  margin-block-start: 26px;
}

h6 {
  color: #000;
  font-feature-settings: "liga" off, "clig" off;
  font-family: "MMC Display Condensed";
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 22px; /* 110% */
  text-transform: uppercase;
  margin: 0;
}

.path-2 {
  animation-delay: 1.2s;
  animation-fill-mode: forwards;
}

.path-3 {
  animation-delay: 1.4s;
  animation-fill-mode: forwards;
}

@keyframes arrow {
  to {
    stroke-dashoffset: 0;
  }
}
.audio-player {
  width: 210px;
  min-height: 50px;
  border: 1px solid #b3b3b3;
}

@keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.audio-player .timeline {
  display: none;
  background: #b3b3b3;
  width: 80px;
  height: 3px;
  position: relative;
  cursor: pointer;
}

.audio-player .timeline .progress {
  background: #000000;
  width: 0%;
  height: 3px;
  transition: 0.25s;
}

.audio-player .controls {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  height: 100%;
}

.audio-player .controls > * {
  display: flex;
  justify-content: center;
  align-items: center;
}

.audio-player .controls .play-container {
  border-right: 1px solid #b3b3b3;
  padding: 10px;
  transition: all 300ms ease;
}

.audio-player .controls .toggle-play.play {
  cursor: pointer;
  position: relative;
  left: 0;
  width: -moz-fit-content;
  width: fit-content;
  height: 23px;
}

.play-container:hover {
  cursor: pointer;
  background-color: #000000;
}
.play-container:hover svg path {
  stroke: white;
}
.play-container:hover .play-arrow1 {
  opacity: 1;
  visibility: visible;
}
.play-container:hover .play-arrow1 .path1 {
  animation-name: playArrow;
  animation-duration: 0.5s;
  animation-timing-function: linear;
  animation-fill-mode: forwards;
  stroke: black;
  stroke-width: 2px;
  fill: none;
  stroke-dasharray: 127;
  stroke-dashoffset: 127;
}
.play-container:hover .play-arrow1 .path2 {
  animation-name: playArrow;
  animation-delay: 0.5s;
  animation-duration: 0.3s;
  animation-timing-function: linear;
  animation-fill-mode: forwards;
  stroke: black;
  stroke-width: 2px;
  fill: none;
  stroke-dasharray: 32;
  stroke-dashoffset: 32;
}
.play-container:hover p.audio-text {
  animation-name: fadein;
  animation-duration: 0.5s;
  animation-timing-function: linear;
  animation-fill-mode: forwards;
}

.audio-player .controls .toggle-play.pause {
  width: -moz-fit-content;
  width: fit-content;
  height: 100%;
  cursor: pointer;
  position: relative;
}

.audio-player .controls .play-container.pause:hover svg line {
  stroke: white;
}

.audio-player .controls .time {
  display: none;
  width: 100%;
  height: 50px;
  gap: 10px;
  padding-left: 15px;
  padding-right: 15px;
}
.audio-player .controls .time .current {
  color: #000000;
  font-feature-settings: "liga" off, "clig" off;
  font-family: "Noto Sans";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
}

.audio-player .controls .name {
  color: #1a1a1a;
  font-feature-settings: "liga" off, "clig" off;
  font-family: "Noto Sans";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  padding: 15px;
}

.audio-player .controls .volume-container {
  cursor: pointer;
  position: relative;
  z-index: 2;
}

.audio-player .controls .volume-container .volume-button {
  height: 26px;
  display: flex;
  align-items: center;
}

.audio-player .controls .volume-container .volume-button .volume {
  transform: scale(0.7);
}

.audio-player .controls .volume-container .volume-slider {
  position: absolute;
  left: -3px;
  top: 15px;
  z-index: -1;
  width: 0;
  height: 15px;
  background: white;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.6666666667);
  transition: 0.25s;
}

.audio-player .controls .volume-container .volume-slider .volume-percentage {
  background: coral;
  height: 100%;
  width: 75%;
}

.audio-player .controls .volume-container:hover .volume-slider {
  left: -123px;
  width: 120px;
}

.play-arrow1 {
  width: 100%;
  height: 100%;
  position: absolute;
  right: 153px;
  top: 15px;
  opacity: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  visibility: hidden;
}
.play-arrow1 svg {
  width: 100px;
  height: 20px;
}

p.audio-text {
  color: #000;
  text-align: center;
  font-feature-settings: "liga" off, "clig" off;
  font-family: swister, sans-serif !important;
  font-size: 18px !important;
  font-style: normal;
  font-weight: 700 !important;
  line-height: 22px;
  margin: 0;
  position: relative;
  top: 5px;
  right: 40px;
  opacity: 0;
}

@keyframes playArrow {
  100% {
    stroke-dashoffset: 0;
  }
}
.volume-block {
  width: 83%;
  display: flex;
  justify-content: flex-end;
  margin-bottom: 40px;
}
@media (max-width: 1390px) {
  .volume-block {
    width: 100%;
    max-width: 840px;
    margin: 0 auto;
    flex-direction: column-reverse;
  }
}
@media (max-width: 1024px) {
  .volume-block {
    margin: initial;
    padding: 0 30px;
    max-width: calc(100% - 60px);
  }
}

.volume-block .left-block {
  position: relative;
  width: 430px;
  height: 290px;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url("/content/dam/oliver-wyman/v3/template-scripts/boardroom-vol10/images/texture-frame-1.png");
}
.volume-block .left-block.big-width {
  width: 500px;
  height: 337px;
}
@media (max-width: 1390px) {
  .volume-block .left-block {
    margin-top: 30px;
    margin-bottom: 30px;
    background-size: contain;
  }
}
.volume-block .left-block p {
  color: #000;
  font-feature-settings: "liga" off, "clig" off;
  font-family: swister;
  font-size: 22px;
  font-style: normal;
  font-weight: 500;
  line-height: 30px;
  margin-top: 0;
  margin-bottom: 0;
}
.volume-block .left-block p.bold {
  font-weight: 700;
  margin: 0;
}

.volume-block .left-block .left-block-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 65%;
}
.volume-block .left-block .left-block-content.w-85 {
  width: 85%;
}
.volume-block .left-block .left-block-content.w-85 p {
  max-width: 90%;
}

.volume-block .right-block {
  width: 50%;
}
@media (max-width: 1390px) {
  .volume-block .right-block {
    width: 100%;
  }
}

.volume-block .right-block .right-block-content {
  padding-left: 30px;
}
.volume-block .right-block .right-block-content h3 {
  margin-top: 0;
}
.volume-block .right-block .right-block-content p {
  margin: 0;
}
.volume-block .right-block .right-block-content p a {
  color: #2C6EF2;
  text-decoration: none;
}
@media (max-width: 1390px) {
  .volume-block .right-block .right-block-content {
    padding-left: 0px;
  }
}

.body-m {
  font-family: "Noto Sans";
  font-size: 18px;
  font-weight: 400;
  line-height: 30px;
}

@media (max-width: 576px) {
  .body-m {
    font-size: 16px;
    line-height: 28px;
    letter-spacing: -0.16px;
  }
}
.quote-container {
  width: 500px;
  height: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.quote-container p {
  color: #000;
  font-feature-settings: "liga" off, "clig" off;
  font-family: swister !important;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 32px;
}

.container-mobile-vol8 {
  display: contents;
}

footer {
  width: calc(100vw - 60px);
  left: 60px;
  background: #000000;
  display: flex;
  justify-content: center;
  position: relative;
}
@media (max-width: 1024px) {
  footer {
    width: 100vw;
    left: 0;
    bottom: 48px;
  }
}

footer .footer-content {
  padding: 40px 20px;
  display: flex;
  margin: 0 auto;
  justify-content: space-between;
}
@media (max-width: 1024px) {
  footer .footer-content {
    padding: 40px 30px;
  }
}

footer .footer-content .footer-left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

footer .footer-content .footer-left .footer-text p {
  margin: 0;
  padding-top: 40px;
  color: rgba(255, 255, 255, 0.6);
  font-feature-settings: "liga" off, "clig" off;
  font-family: "Noto Sans";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 142.857% */
  letter-spacing: -0.14px;
}

footer .footer-content .footer-right {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

footer .footer-content .footer-right .footer-logo {
  display: flex;
  flex-direction: row;
  align-items: center;
}

footer .footer-content .footer-right .footer-logo .footer-ow-logo {
  height: 19px;
  margin-right: 20px;
}

footer .footer-content .footer-right .footer-logo .footer-fmi-logo {
  height: 37px;
  margin-left: 12px;
}

footer .vertical-line-footer {
  height: 18px;
  border-right: 1px solid white;
}

footer .footer-content .footer-left .footer-links {
  padding-top: 40px;
  position: relative;
}

footer .footer-content .footer-left .footer-links ul {
  margin: 0px;
  padding: 0;
  text-align: end;
}
@media (max-width: 1024px) {
  footer .footer-content .footer-left .footer-links ul {
    text-align: start;
  }
}

footer .footer-content .footer-left .footer-links ul li {
  list-style-type: none;
  display: inline-block;
  padding-right: 24px;
}

footer .footer-content .footer-left .footer-links ul li a {
  text-decoration: none;
  cursor: pointer;
  color: #fff;
  font-feature-settings: "liga" off, "clig" off;
  font-family: "Noto Sans";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 142.857% */
  letter-spacing: -0.14px;
  transition: all 300ms ease;
}

footer .footer-content .footer-left .footer-links ul li a:hover {
  color: #2c6ef2;
  text-decoration: none;
}

footer .footer-content .footer-left .footer-links .footer-text-mobile {
  display: none;
}

footer .footer-content .footer-left .footer-links .footer-text-mobile p {
  margin: 0;
  color: #ffffff;
  padding: 20px 0;
  font-family: "Noto Sans";
  font-style: normal;
  font-weight: normal;
  font-size: 11px;
  text-align: center;
  line-height: 20px;
  letter-spacing: -0.14px;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

@media (max-width: 1024px), (max-height: 580px) {
  header {
    width: 100%;
    max-height: 60px;
    height: unset !important;
    flex-direction: row;
    border-bottom: 1px solid rgba(179, 179, 179, 0.8);
    transition: all 300ms ease;
  }
  header.bg-white-mobile {
    background-color: white;
  }
  header .container-mobile-vol8 {
    display: flex;
    justify-content: space-between;
    width: 100%;
  }
  header .logos {
    bottom: 0;
    rotate: unset;
    padding-left: 30px;
  }
  header .header-icons {
    height: 60px;
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    width: -moz-fit-content;
    width: fit-content;
  }
  header .header-icons ul {
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
  }
  header .header-icons ul .menuarrow {
    display: none;
  }
  header .header-icons ul .arrow1 {
    display: none;
  }
  header .header-icons ul .share-container {
    display: none;
  }
  header .header-icons ul li {
    max-height: 60px;
    border-left: 1px solid rgba(179, 179, 179, 0.8);
    border-bottom: none;
  }
  header .header-icons ul .hamburger .linemenu {
    margin: 4px auto;
  }
  .container-baner-arrows {
    right: 40px;
  }
  .hero_hero-wrapper {
    margin-top: 50px;
  }
  .popup-menu {
    width: 100vw;
    transform: translateY(-100%);
  }
  .popup-menu.open {
    transform: translateY(0);
    top: 61px;
  }
  .popup-menu .navigation .navigation-div .navigation-text a {
    padding-left: 30px;
  }
  #hamburger-1.is-active .linemenu:nth-child(1) {
    transform: translateY(5.5px) rotate(45deg);
  }
  #hamburger-1.is-active .linemenu:nth-child(3) {
    transform: translateY(-5.5px) rotate(-45deg);
  }
  .dropdown_menu_share {
    top: 0;
    bottom: 0;
    right: 60px;
    left: unset;
    width: auto;
  }
  .dropdown-share {
    bottom: 2px;
  }
  .dropdown-share .copy-link {
    position: relative;
    top: 2px;
  }
}
@media (max-width: 768px) {
  .dropdown_menu_share {
    display: none !important;
  }
}
@media (max-width: 550px) {
  #download1 {
    display: none;
  }
}
#smooth-wrapper {
  background-image: url("/content/dam/oliver-wyman/v3/template-scripts/boardroom-vol10/images/Texture.png");
  background-size: 50% 100%;
  background-repeat: repeat-x;
}

.hero-container {
  position: relative;
}

.main-hero {
  width: 100%;
  display: block;
  margin: 0 auto;
  position: relative;
  z-index: 10;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.hero_img {
  margin-top: 80px;
}
@media (max-width: 1024px) {
  .hero_img {
    padding: 30px;
    margin-top: 30px;
  }
}
.hero_img .boxsticker {
  position: absolute;
  width: 30%;
  top: 100px;
  left: -60px;
  z-index: 11;
}
@media (max-width: 600px) {
  .hero_img .boxsticker {
    display: none;
  }
}
.hero_img .boxsticker img {
  width: 150px;
}
.hero_img .box1 {
  position: absolute;
  width: 100%;
}
.hero_img .box1.doodle {
  left: -260px;
  top: 100px;
  width: 50%;
  z-index: 11;
}
.hero_img .box1 .texture-hero {
  width: 85%;
  margin: 0 auto;
  display: block;
}
.hero_img .box1 .texture-hero.flower1 {
  width: 35%;
  margin: unset;
}

.mobile-arrows {
  display: none;
}
@media (max-width: 768px) {
  .mobile-arrows {
    background-color: white;
    display: flex;
    position: fixed;
    bottom: 0;
    width: 100%;
    border-top: 1px solid rgba(179, 179, 179, 0.8);
    z-index: 10;
  }
  .mobile-arrows a, .mobile-arrows p {
    text-decoration: none;
    color: #1A1A1A;
    font-family: "Noto Sans";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
  }
  .mobile-arrows .mobile-left-prev {
    width: 50%;
    border-right: 1px solid rgba(179, 179, 179, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    gap: 20px;
  }
  .mobile-arrows .mobile-left-prev.non-active {
    opacity: 0.2;
    cursor: none;
  }
  .mobile-arrows .mobile-right-next {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    gap: 20px;
  }
  .mobile-arrows .mobile-right-next.non-active {
    opacity: 0.2;
    cursor: none;
  }
}

.share-cta-mobile {
  display: none;
  visibility: hidden;
  opacity: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
}
.share-cta-mobile .bg-overlay {
  position: fixed;
  background: rgba(0, 0, 0, 0.4);
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 100;
  transition: all 300ms ease;
}
.share-cta-mobile.active {
  opacity: 1;
  z-index: 100;
  visibility: visible;
  display: block;
}
.share-cta-mobile.active .share-menu-mobile {
  opacity: 1;
  z-index: 101;
  visibility: visible;
  position: fixed;
  left: 0;
  bottom: 0;
  right: 0;
  height: 300px;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: all 400s ease;
}
.share-cta-mobile.active .bg-overlay {
  opacity: 1;
  visibility: visible;
  height: 100%;
}
.share-cta-mobile.active .share-mobile-list {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  overflow-y: scroll;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}
.share-cta-mobile.active .share-mobile-list ul {
  padding: 0;
  margin: 0;
  width: 100%;
}
.share-cta-mobile.active .share-mobile-list ul li {
  padding: 15px 20px;
}
.share-cta-mobile.active .share-mobile-list ul li a {
  text-decoration: none;
  color: #1A1A1A;
  font-family: "Noto Sans";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
}
.share-cta-mobile.active .share-mobile-list ul .share-mobile-title {
  color: rgba(26, 26, 26, 0.95);
  font-family: "Noto Sans";
  font-size: 14px;
  font-style: normal;
  line-height: 20px;
  border-bottom: 1px solid #e6e6e6;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
}
.share-cta-mobile.active .share-mobile-list ul .share-mobile-title a {
  font-weight: 700 !important;
  padding: 15px 20px;
}
.share-cta-mobile.active .share-mobile-list ul .share-mobile-title .close-mobile-share {
  border-left: 1px solid rgba(179, 179, 179, 0.3);
  padding: 20px;
  display: flex;
}

.image_preloader_mobile {
  display: none !important;
}

.main-hero-mobile {
  display: none;
}

@media (max-width: 600px) {
  header .logos a {
    display: flex;
  }
  header .logos .logo {
    width: 110px;
  }
  header .logos .logo2 {
    width: 50px;
  }
  header .logos {
    padding-left: 20px;
    gap: 8px;
  }
  .hero_img {
    padding: 20px;
    margin-top: 25px;
  }
  .main-hero {
    display: none;
  }
  .main-hero-mobile {
    width: 100%;
    display: block;
    margin: 0 auto;
    position: relative;
    z-index: 10;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  }
  .volume-block {
    padding: 0 20px;
    max-width: calc(100% - 40px);
  }
  .volume-block .left-block p {
    font-size: 20px;
    font-weight: 500;
    line-height: 26px;
    max-width: 90%;
  }
  .body-m {
    font-size: 16px;
    line-height: 26px;
  }
  .ow-list {
    padding-inline-start: 20px;
  }
  .volume-block .left-block {
    width: 100%;
    height: 258px;
  }
  footer {
    bottom: 49px;
  }
  footer .footer-content {
    flex-direction: column;
  }
  footer .footer-content .footer-left {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
  }
  footer .footer-content .footer-left .footer-links {
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    padding-top: 0;
    padding-bottom: 20px;
    width: 100%;
  }
  footer .footer-content .footer-left .footer-links ul {
    text-align: start;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  footer .footer-content .footer-left .footer-text p {
    width: 150px;
    padding-top: 15px;
    padding-bottom: 30px;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
  }
  footer .footer-content .footer-right .footer-logo {
    justify-content: flex-end;
  }
  footer .footer-content {
    padding: 40px 20px;
  }
  footer .footer-content .footer-right .footer-logo .footer-ow-logo {
    height: 14px;
    margin-right: 10px;
  }
  footer .footer-content .footer-right .footer-logo .footer-fmi-logo {
    height: 25px;
    margin-left: 10px;
  }
  footer .footer-content .footer-left .footer-links ul li a {
    font-size: 13px;
    font-weight: 400;
    line-height: 20px;
  }
  header {
    animation: none !important;
    height: 100%;
  }
  .header-icons {
    opacity: 1;
    animation: none;
  }
  header .logos {
    opacity: 1;
    animation: none;
  }
  .popup-menu .content .item {
    height: 157px;
  }
  .popup-menu .content .item .content-item {
    height: 157px;
    padding: 0px 20px;
  }
  .popup-menu h6 {
    font-size: 16px;
    line-height: 18px;
  }
  .swister-heading-xs {
    margin-bottom: 5px;
    font-size: 16px;
    line-height: 18px;
    margin-block-start: 14px;
  }
  .reading {
    display: none !important;
  }
  .arrowanimation {
    display: none !important;
  }
  .popup-image {
    display: none !important;
  }
  .popup-menu .navigation .navigation-div .navigation-text a {
    padding-left: 20px;
  }
  .popup-menu .navigation .navigation-div .navigation-text a {
    font-size: 14px;
    padding: 8.7px 20px;
  }
  .home h2 {
    font-size: 28px;
    text-align: center;
  }
  .home h1 {
    font-size: 52px;
    font-style: normal;
    font-weight: 700;
    line-height: 54px;
  }
  header .container-mobile-vol8 {
    padding-left: 0;
  }
  .hero_img .box1 {
    display: none;
  }
  .home-container .image_preloader {
    display: none;
  }
  .home-container .image_preloader_mobile {
    display: block !important;
    width: 90%;
  }
  .dropdown-share:hover {
    background-color: transparent;
  }
  .dropdown-share:hover .share-icon path {
    stroke: black;
  }
  .play-arrow1 {
    display: none;
  }
  .volume-block .left-block.big-width {
    width: 100%;
    height: 300px;
  }
  .volume-block .left-block {
    height: 300px;
    background-image: url("/content/dam/oliver-wyman/v3/template-scripts/boardroom-vol10/images/texture-frame-mobile.png");
  }
  .volume-block .left-block .left-block-content {
    width: 80%;
  }
}/*# sourceMappingURL=test.css.map */