.bg-active {
  background-color: #221a44;
  color: #ffffff;
  transition: 0.5s;
}

.bg-inactive {
  background-color: #ffffff;
  color: #221a44;
  transition: 0.5s;
}

.bg-inactive:hover {
  background-color: #221a44;
  color: #ffffff;
}

.bg-active:hover {
  background-color: #32285f;
  color: #ffffff;
}

.bg-active:active {
  background-color: #32285f;
  color: #ffffff;
}

.bg-active:focus {
  background-color: #32285f;
  color: #ffffff;
}

.myFrame {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

#content-frame-1 {
  z-index: 2;
}

#content-frame-2 {
  z-index: 1;
}

/* #region Loader */
#loader-container {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #3e3f44;
  z-index: 20;
  display: none;
}

.lds-ring {
  display: inline-block;
  position: absolute;
  left: 50%;
  top: 50%;
  width: 80px;
  height: 80px;
  transform: translate(-50%, -50%);
}

.lds-ring div {
  box-sizing: border-box;
  display: block;
  position: absolute;
  width: 64px;
  height: 64px;
  margin: 8px;
  border: 8px solid #fff;
  border-radius: 50%;
  animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  border-color: #fff transparent transparent transparent;
}

.lds-ring div:nth-child(1) {
  animation-delay: -0.45s;
}

.lds-ring div:nth-child(2) {
  animation-delay: -0.3s;
}

.lds-ring div:nth-child(3) {
  animation-delay: -0.15s;
}

@keyframes lds-ring {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* #endregion */



/* #region Perspectives / Swiper */
#pers-container {
  position: absolute;
  left: 0;
  top: 0px;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  z-index: 1;
  visibility: hidden;
}
.swiper-container {
    width:100%;
    height:100%;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;

    /* Center slide text vertically */
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}

.swiper-slide img {
  user-select: none;
}

.image-landscape {
    display:block;
    width:100%;
    height:auto;
}
.image-portrait {
    display:block;
    width:auto;
    height:100%;
}


.myswiper-button-prev {
    position:absolute;
    left: 1.1%; top: 42.9%; width: 6.5%; height: 11.6%;
    z-index:1000;
    cursor:pointer;
}
.myswiper-button-next {
    position:absolute;
    left: 92.3%; top: 42.9%; width: 6.5%; height: 11.6%;
    z-index:1000;
    cursor:pointer;
}
.myswiper-button-prev:focus, .myswiper-button-next:focus {outline:0;}
/*#endregion*/