*, *:before, *:after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html, body, div, span, object, iframe, figure, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, code, em, img, small, strike, strong, sub, sup, tt, b, u, i, ol, ul, li, fieldset, form, label, table, caption, tbody, tfoot, thead, tr, th, td, main, canvas, embed, footer, header, nav, section, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: none;
     -moz-text-size-adjust: none;
      -ms-text-size-adjust: none;
          text-size-adjust: none;
}

footer, header, nav, section, main {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

input {
  -webkit-appearance: none;
  border-radius: 0;
}

a {
  all: unset;
}

::-webkit-scrollbar {
  display: none;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Roboto Slab", serif;
  line-height: 1.5;
}

.pointerCursor {
  cursor: pointer;
}

.font-ge {
  font-family: "BPG Nino Elite Exp", serif;
}

.section1 {
  background-color: black;
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.section1 .video-container {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 500px;
}
.section1 .video-container .start-video {
  width: 100%;
  height: auto;
}
.section1 .video-container .start-img {
  width: 100%;
}
.section1 .video-container .start-img-a {
  cursor: pointer;
  z-index: 100;
  margin-top: 2rem;
}

.loader {
  background: #fff url("/images/PreloadGif.GIF.gif") no-repeat center center;
  height: 100%;
  width: 100%;
  position: absolute;
  z-index: 99;
}

.language-block {
  max-width: 110px;
  width: 100%;
  color: black;
  position: fixed;
  top: 3%;
  left: 90%;
  z-index: 100;
}
.language-block .language-div {
  border: 0px solid white;
  border-radius: 0%;
  padding: 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.language-block .language-div .language {
  border: 2px solid white;
  border-radius: 0%;
  padding: 4px;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  background-color: rgb(193, 182, 154);
}
.language-block .language-div .language:hover {
  background-color: rgb(220, 213, 195);
}
.language-block .language-div .language.active {
  background-color: rgb(220, 213, 195);
}
.language-block .hide-menu-div {
  border: 2px solid white;
  border-radius: 0%;
  padding: 4px;
  background-color: rgb(193, 182, 154);
  text-align: center;
  margin-top: 4px;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.language-block .hide-menu-div:hover {
  background-color: rgb(220, 213, 195);
}
.language-block .menu-color {
  background-color: rgb(220, 213, 195);
}

.navigation-block {
  position: fixed;
  top: 15%;
  left: 91.5%;
  z-index: 99;
  overflow: hidden;
}
.navigation-block .nav-ul .nav-li-a {
  border: 5px double white;
  border-radius: 50%;
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 10px;
  margin-top: 10px;
  color: black;
  cursor: pointer;
  background-color: rgb(193, 182, 154);
  -webkit-transform: scale(0.8);
          transform: scale(0.8);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.navigation-block .nav-ul .nav-li-a:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.navigation-block .nav-ul .nav-li-a:hover {
  -webkit-transform: scale(1);
          transform: scale(1);
}

.nav-hide {
  -webkit-animation: heigh-reduse 1.5s;
          animation: heigh-reduse 1.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

.nav-show {
  -webkit-animation: heigh-increase 1.5s;
          animation: heigh-increase 1.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

@-webkit-keyframes heigh-reduse {
  0% {
    height: 100%;
  }
  100% {
    height: 0%;
  }
}

@keyframes heigh-reduse {
  0% {
    height: 100%;
  }
  100% {
    height: 0%;
  }
}
@-webkit-keyframes heigh-increase {
  0% {
    height: 0%;
  }
  100% {
    height: 100%;
  }
}
@keyframes heigh-increase {
  0% {
    height: 0%;
  }
  100% {
    height: 100%;
  }
}
.block-active {
  display: block;
}

.block-none {
  display: none;
}

.section2 {
  background-color: #778c87;
  position: relative;
  z-index: 1;
}
.section2 .volga-road-img {
  position: absolute;
  top: 500px;
  left: 0;
  width: 100%;
  z-index: 0;
}
.section2 .container-section2 {
  position: relative;
  top: 190px;
  left: 0;
}
.section2 .container-section2 .volga-salon-container .volga-salon-img {
  position: relative;
  top: 0%;
  left: 0%;
  width: 100%;
}
.section2 .container-section2 .volga-salon-container .volga-wheel-img {
  position: absolute;
  top: 36%;
  left: 21.5%;
  width: 20%;
  cursor: pointer;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.section2 .container-section2 .volga-salon-container .volga-wheel-img:hover {
  -webkit-animation: rotate 10s forwards;
          animation: rotate 10s forwards;
}
@-webkit-keyframes rotate {
  50% {
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
}
@keyframes rotate {
  50% {
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
}
.section2 .container-section2 .volga-salon-container .volga-blog-img {
  position: absolute;
  top: 51%;
  left: 67%;
  width: 14%;
}
.section2 .container-section2 .volga-salon-container .volga-map-img {
  position: absolute;
  top: 40.5%;
  left: 42.6%;
  width: 11%;
}
.section2 .container-section2 .volga-salon-container .open {
  opacity: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.section2 .container-section2 .volga-salon-container .open:hover {
  opacity: 1;
  cursor: pointer;
}
.section2 .container-section2 .volga-salon-container .volga-clock-img {
  position: absolute;
  top: 52.6%;
  left: 59.9%;
  width: 5%;
  cursor: pointer;
  opacity: 0.5;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.section2 .container-section2 .volga-salon-container .volga-clock-img:hover {
  opacity: 1;
}
.section2 .container-section2 .volga-salon-container .volga-radio-img {
  position: absolute;
  top: 52%;
  left: 44%;
  width: 14%;
  opacity: 0.5;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  cursor: pointer;
}
.section2 .container-section2 .volga-salon-container .volga-radio-img:hover {
  opacity: 1;
}
.section2 .container-section2 .volga-salon-container .volga-mirror-img {
  position: absolute;
  top: 11%;
  left: 43.3%;
  width: 12%;
}
.section2 .container-section2 .volga-salon-container .volga-sticker-img {
  position: absolute;
  top: 36.8%;
  left: 58.2%;
  width: 20%;
  cursor: pointer;
  opacity: 0.9;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.section2 .container-section2 .volga-salon-container .volga-sticker-img:hover {
  -webkit-transform: translate(5%);
          transform: translate(5%);
}
.section2 .volga-sit-img {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 2;
}

.hide {
  display: none;
}

.section3 {
  position: relative;
}
.section3 .pointer {
  -webkit-animation: pointer 1.5s linear infinite;
          animation: pointer 1.5s linear infinite;
  position: absolute;
  cursor: pointer;
}
.section3 .pointer:nth-child(odd) {
  -webkit-animation-delay: 0.7s;
          animation-delay: 0.7s;
}
.section3 .volga-map-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.section3 .volga-map-zugdidi-img {
  top: 23.8%;
  left: 31.5%;
}
.section3 .volga-map-Kutaisi-img {
  top: 32%;
  left: 39.5%;
}
.section3 .volga-map-Gudauri-img {
  top: 25%;
  left: 59.5%;
}
.section3 .volga-map-batumi-img {
  top: 45%;
  left: 25.4%;
}
.section3 .volga-map-muxrani-img {
  top: 41%;
  left: 60.3%;
}
.section3 .volga-map-tbilisi-img {
  top: 48.2%;
  left: 62%;
}
.section3 .volga-map-rustavi-img {
  top: 54%;
  left: 64.7%;
}
.section3 .volga-map-background-img {
  width: 100%;
}
.section3 .volga-map-background-img img {
  width: 100%;
}
@-webkit-keyframes pointer {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-10%);
            transform: translateY(-10%);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes pointer {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-10%);
            transform: translateY(-10%);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.section3 .volga-map-modali {
  padding: 30px 55px;
  background: white;
  z-index: 5;
}
.section3 .volga-map-modal {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  overflow: hidden;
  -webkit-animation: videoCard 0.4s;
          animation: videoCard 0.4s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  z-index: 999;
}
@-webkit-keyframes videoCard {
  from {
    left: 0%;
  }
  to {
    left: 50%;
  }
}
@keyframes videoCard {
  from {
    left: 0%;
  }
  to {
    left: 50%;
  }
}
.section3 .volga-map-modal-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  z-index: 3;
}
.section3 .volga-map-modal-header-items {
  padding: 12px 30px;
  margin-right: 2px;
  font-size: 1.15rem;
  background: #889ca4;
  cursor: pointer;
}
.section3 .volga-map-modal-header-items-active {
  background: white;
}
.section3 .volga-map-modal-header img {
  position: absolute;
  top: 0;
  right: 0;
  cursor: pointer;
}
.section3 .volga-map-modal video {
  width: 650px;
  height: 350px;
  background: black;
}
.section3 .volga-map-modal p {
  padding: 10px 0;
  width: 650px;
  font-size: 0.95em;
}
.section3 .volga-map-modal-zugdidi-pictures .pictures-slider {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.section3 .volga-map-modal-zugdidi-pictures .pictures-slider img {
  width: 220px;
  height: 190px;
  margin: 0 10px;
}
.section3 .volga-map-modal-zugdidi-pictures p {
  max-width: 100%;
  padding: 0;
  margin: 0;
}

.hide {
  display: none;
}

.section3 {
  height: 114vh;
  position: relative;
  background-image: url(../images/map/map_background.jpg);
  background-position: center;
  background-size: cover;
}
.section3 .pointer {
  -webkit-animation: pointer 1.5s linear infinite;
          animation: pointer 1.5s linear infinite;
  position: absolute;
  cursor: pointer;
}
.section3 .img {
  cursor: pointer;
  width: 210px;
  height: 190px;
  -o-object-fit: cover;
     object-fit: cover;
  margin-left: 6px;
}
.section3 .volga-map-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.section3 .volga-map-zugdidi-img {
  top: 23.8%;
  left: 31.5%;
}
.section3 .volga-map-batumi-img {
  top: 45%;
  left: 25.4%;
}
.section3 .volga-map-muxrani-img {
  top: 41%;
  left: 60.3%;
}
.section3 .volga-map-tbilisi-img {
  top: 48.2%;
  left: 62%;
}
.section3 .volga-map-rustavi-img {
  top: 54%;
  left: 64.7%;
}
@keyframes pointer {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-10%);
            transform: translateY(-10%);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.section3 .volga-map-modali {
  padding: 20px 55px;
  background: white;
  z-index: 5;
}
.section3 .volga-map-modal {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.section3 .volga-map-modal-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  z-index: 3;
}
.section3 .volga-map-modal-header-items {
  padding: 12px 30px;
  margin-right: 2px;
  font-size: 1.15rem;
  background: #889ca4;
  cursor: pointer;
}
.section3 .volga-map-modal-header-items-active {
  background: white;
}
.section3 .volga-map-modal-header img {
  position: absolute;
  top: 0;
  right: 0;
  cursor: pointer;
}
.section3 .volga-map-modal video {
  width: 650px;
  height: 350px;
  background: black;
}
.section3 .volga-map-modal .video-post {
  max-width: 650px;
  width: 100%;
  height: 400px;
}
.section3 .volga-map-modal p {
  padding: 10px 0;
  width: 650px;
  font-size: 0.95em;
}
.section3 .volga-map-modal-pictures {
  padding: 20px;
}
.section3 .volga-map-modal-pictures .swiper-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 654px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-top: 40px;
  padding-bottom: 48px;
}
.section3 .volga-map-modal-pictures .post-descr {
  font-size: 15px;
  margin-bottom: 50px;
}
.section3 .volga-map-modal-pictures .pictures-slider {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.section3 .volga-map-modal-pictures .pictures-slider img {
  width: 220px;
  height: 190px;
  margin: 0 10px;
}
.section3 .volga-map-modal-pictures p {
  max-width: 100%;
  padding: 0;
  margin: 0;
}

.post-descr {
  margin: 20px;
}

.previous {
  max-width: 50px;
  width: 100%;
  position: absolute;
  top: 30%;
  left: 18%;
  cursor: pointer;
}

.next {
  max-width: 50px;
  width: 100%;
  position: absolute;
  top: 30%;
  right: 18%;
  cursor: pointer;
}

.section4 {
  height: 100vh;
  background-image: url(../images/Timeline/timeline_background.jpg);
  background-position: center;
  background-size: cover;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  z-index: 2;
}
.section4 .timelineFold {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.section4 .timelineFold .timelineContainer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2.5rem;
  background-color: black;
  opacity: 0.8;
  padding: 1.25rem 1.75rem;
}
.section4 .timelineFold .timelineContainer .prev:active, .section4 .timelineFold .timelineContainer .next1:active {
  -webkit-transform: translateY(1px);
          transform: translateY(1px);
}
.section4 .timelineFold .timelineContainer .timelineText {
  -webkit-box-shadow: rgb(204, 219, 232) 3px 3px 6px 0px inset, rgba(255, 255, 255, 0.5) -3px -3px 6px 1px inset;
          box-shadow: rgb(204, 219, 232) 3px 3px 6px 0px inset, rgba(255, 255, 255, 0.5) -3px -3px 6px 1px inset;
  background-color: rgb(255, 255, 255);
  opacity: 0.8;
  height: 150px;
  width: 700px;
  color: black;
  padding: 1.5rem;
}
.section4 .timelineFold .timelineContainer .timelineText .text-slider {
  display: none;
  font-family: "Gentium Book Basic", serif;
}
.section4 .timelineFold .timelineContainer .timelineText p:last-child {
  display: block;
}
.section4 .timelineFold .timelineCar {
  background-color: rgb(255, 255, 255);
  width: 700px;
  height: auto;
  margin-top: 1.5rem;
  opacity: 0.8;
  padding: 0.5rem 0;
}
.section4 .timelineFold .timelineCar #car {
  position: absolute;
  width: 70px;
  height: 70px;
  margin-left: 50px;
  background-image: url(../images/Timeline/min-volga1.png);
}
.section4 .timelineFold .timelineCar #line {
  height: 10px;
  background-color: #334D51;
  margin: 50px 50px 20px 50px;
}
.section4 .timelineFold .timelineCar #line .butt {
  width: 15px;
  height: 20px;
  float: left;
  position: relative;
  background-color: #6AC5C1;
  margin-left: 50px;
  -webkit-transition: height 0.4s ease-in-out;
  transition: height 0.4s ease-in-out;
}
.section4 .timelineFold .timelineCar #line .butt:nth-child(1) {
  margin-left: 30px;
}
.section4 .timelineFold .timelineCar #line .butt:hover {
  cursor: pointer;
  height: 30px;
  -webkit-box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px, rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
          box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px, rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
}
.section4 .timelineFold .timelineCar .yearContainer span {
  display: none;
  width: 15px;
  height: 20px;
  float: left;
  position: relative;
  font-size: 14px;
  margin-left: 50px;
}
.section4 .timelineFold .timelineCar .yearContainer span:first-child {
  display: block;
  margin-left: 73px;
}

.section5 {
  height: 100vh;
  background-image: url(../images/Radio/Radio.jpg);
  background-position: center;
  background-size: cover;
}
.section5 .section-5-parallax {
  position: relative;
  margin: 0 auto;
}
.section5 .background-radio {
  height: 630px;
  width: 1000px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  position: absolute;
  background-image: url(../images/Radio/radio_big.png);
}
.section5 .background-radio .radio-player-wrapper {
  font-family: "Gentium Book Basic", serif;
  position: absolute;
  top: 72%;
  left: 50.1%;
  border-radius: 8px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  height: 72px;
  width: 339px;
  background-color: white;
  z-index: 2;
  font-size: 13px;
  color: #394f5a;
  opacity: 0;
  pointer-events: none;
}
.section5 .background-radio .radio-player-wrapper p {
  margin-left: 10px;
  margin-top: 2px;
}
.section5 .background-radio .radio-player-wrapper .audio {
  width: 100%;
  height: 30px;
  bottom: 0;
}
.section5 .background-radio .radio-player-wrapper .audio::-webkit-media-controls-enclosure {
  border-radius: 8px;
  background-color: rgb(255, 255, 255);
}
.section5 .backround-blur-cont {
  width: 1190px;
  height: 658px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  position: absolute;
}
.section5 .backround-blur-cont .background-radio-blur {
  background-color: black;
  opacity: 0.8;
  position: absolute;
  height: 658px;
  width: 1050px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.section5 .backround-blur-cont .radio-buttons {
  height: 200px;
  width: 70px;
  position: absolute;
  top: 35%;
  cursor: pointer;
  background-color: black;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.8;
}
.section5 .backround-blur-cont .radio-previous {
  background-image: url(../images/Radio/previous.png);
  left: 0;
}
.section5 .backround-blur-cont .radio-next {
  background-image: url(../images/Radio/next.png);
  right: 1px;
}
.section5 .backround-blur-cont .radio-previous:active, .section5 .backround-blur-cont .radio-next:active {
  -webkit-transform: translateY(1px);
          transform: translateY(1px);
}
.section5 .backround-blur-cont .background-white-blur {
  position: absolute;
  top: 35%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  height: 366px;
  width: 952px;
  background-color: white;
  opacity: 0.6;
}
.section5 .radio-singer-info {
  -webkit-box-shadow: rgba(50, 50, 93, 0.25) 0px 30px 60px -12px inset, rgba(0, 0, 0, 0.3) 0px 18px 36px -18px inset;
          box-shadow: rgba(50, 50, 93, 0.25) 0px 30px 60px -12px inset, rgba(0, 0, 0, 0.3) 0px 18px 36px -18px inset;
  padding: 5px 40px;
  height: 340px;
  width: 770px;
  background-color: white;
  opacity: 0.9;
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -75%);
          transform: translate(-50%, -75%);
  font-family: "Gentium Book Basic", serif;
}
.section5 .radio-singer-info .radio-singer-upper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 216px;
}
.section5 .radio-singer-info .radio-singer-upper .singer-image {
  background-image: url(../images/Radio/singer_big/1.jpg);
  height: 200px;
  width: 170px;
  float: left;
  margin: 10px 15px 0 0;
}
.section5 .radio-singer-info .radio-singer-upper .singer-about {
  width: 550px;
}
.section5 .radio-singer-info .radio-singer-upper .singer-about .singer-name {
  font-size: 31px;
  color: #394f5a;
}
.section5 .radio-singer-info .radio-singer-upper .singer-about .singer-info {
  font-size: 16px;
  color: #394f5a;
}
.section5 .radio-singer-info .radio-singer-lower {
  margin-top: 20px;
}
.section5 .radio-singer-info .radio-singer-lower .radio-music {
  width: 688px;
  height: 28px;
  margin-bottom: 3px;
  background-color: #819CA5;
  padding-left: 7px;
  color: white;
  font-size: 18px;
  cursor: pointer;
}
.section5 #overlay-radio.show-overlay {
  opacity: 1;
  pointer-events: auto;
  z-index: 1000;
}

.section6 {
  background-image: url(../images/bagage/bagage_ground.png);
  background-position: center;
  background-size: cover;
  position: relative;
  height: 100vh;
}
.section6 .volga-bagage-img {
  position: relative;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 80%;
}
.section6 .volga-light-img {
  position: absolute;
  top: 63%;
  left: 30%;
  width: 8%;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  z-index: 2;
}
.section6 .volga-light-img:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}
.section6 .volga-sax-img {
  position: absolute;
  top: 37%;
  left: 55%;
  width: 10%;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.section6 .volga-sax-img:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}
.section6 .volga-clap-img {
  position: absolute;
  top: 57%;
  left: 26%;
  width: 7%;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  z-index: 1;
}
.section6 .volga-clap-img:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}
.section6 .volga-camera-img {
  position: absolute;
  top: 34%;
  left: 40%;
  width: 20%;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.section6 .volga-camera-img:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}
.section6 .volga-soundrec-img {
  position: absolute;
  top: 56%;
  left: 47%;
  width: 11%;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.section6 .volga-soundrec-img:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}
.section6 .volga-reel-img {
  position: absolute;
  top: 62%;
  left: 35%;
  width: 9%;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  z-index: 1;
}
.section6 .volga-reel-img:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}
.section6 .volga-tv-img {
  position: absolute;
  top: 40%;
  left: 27%;
  width: 13%;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.section6 .volga-tv-img:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}
.section6 .volga-megaphone-img {
  position: absolute;
  top: 48%;
  left: 44%;
  width: 5%;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.section6 .volga-megaphone-img:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}
.section6 .volga-keyboard-img {
  position: absolute;
  top: 65%;
  left: 44%;
  width: 10%;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.section6 .volga-keyboard-img:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}

.mapFold_bagage {
  position: absolute;
  top: 20%;
  left: 30%;
  z-index: 99;
  max-width: 900px;
  width: 100%;
  height: 400px;
  -webkit-animation: bagageCard 0.4s;
          animation: bagageCard 0.4s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
@-webkit-keyframes bagageCard {
  from {
    left: 0%;
  }
  to {
    left: 25%;
  }
}
@keyframes bagageCard {
  from {
    left: 0%;
  }
  to {
    left: 25%;
  }
}
.mapFold_bagage .info-block-overlay {
  height: 500px;
  background-color: #fff;
  overflow-y: scroll;
  padding: 40px;
  line-height: 25px;
}
.mapFold_bagage .info-block-overlay .info-title {
  font-size: 20px;
  font-weight: 900;
  margin-top: 10px;
}
.mapFold_bagage .info-block-overlay .info-sax-title {
  margin-top: 15px;
}
.mapFold_bagage .info-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.mapFold_bagage .info-header-item {
  max-width: 150px;
  width: 100%;
  background-color: rgb(255, 255, 255);
  border-bottom: 1px solid rgba(128, 128, 128, 0.256);
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 20px;
  font-weight: 900;
}
.mapFold_bagage .info-header-icon {
  cursor: pointer;
}

.section7 {
  background: no-repeat center url(../images/Trailer/trailer_background.jpg);
  background-size: cover;
  height: 100vh;
  position: relative;
}
.section7 #trailerView {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  height: 500px;
  width: 800px;
}
.section7 #trailerView #view {
  margin-top: -20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: no-repeat url(../images/Trailer/screen.png);
  display: none;
  background-position: bottom;
  position: relative;
  overflow: hidden;
}
.section7 #trailerView #view .video {
  width: 743px;
  height: 404px;
  position: absolute;
  bottom: 49px;
}
.section7 #playbut {
  height: 117px;
  width: 117px;
  position: absolute;
  bottom: 200px;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  cursor: pointer;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.section7 #playbut:hover {
  -webkit-transform: translate(-55%, -55%);
          transform: translate(-55%, -55%);
}

.section8 {
  background-image: url(../images/bagage/bagage_ground.png);
  background-position: center;
  background-size: cover;
  position: relative;
  min-height: 100vh;
}
.section8 .character-container {
  width: 1020px;
  display: grid;
  grid-template-columns: auto auto auto;
  margin: auto;
}
.section8 .character-container .character-item {
  width: 300px;
  height: 201px;
  margin: 10px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.section8 .character-container .character-item .character-img {
  width: 100%;
  height: auto;
  border: 15px solid rgb(255, 255, 255);
}
.section8 .character-container .character-item:before {
  content: "";
  position: absolute;
  background-color: rgba(0, 0, 0, 0.5);
  background: rgba(0, 148, 255, 0.5);
  left: auto;
  right: 0;
  height: 361px;
  width: 361px;
  -webkit-transform-origin: 100% 0%;
          transform-origin: 100% 0%;
  -webkit-transition: all 0.3s ease-in-out 0.6s;
  transition: all 0.3s ease-in-out 0.6s;
  -webkit-transform: rotate(56.5deg) translateX(-180px);
          transform: rotate(56.5deg) translateX(-180px);
  opacity: 1;
}
.section8 .character-container .character-item:after {
  content: "";
  position: absolute;
  top: auto;
  bottom: 0;
  left: 0;
  height: 361px;
  width: 361px;
  background-color: rgba(0, 148, 255, 0.5);
  -webkit-transform: rotate(56.5deg) translateX(180px);
          transform: rotate(56.5deg) translateX(180px);
  -webkit-transition: all 0.3s ease-in-out 0.6s;
  transition: all 0.3s ease-in-out 0.6s;
  -webkit-transform-origin: 0% 100%;
          transform-origin: 0% 100%;
}
.section8 .character-container .character-item:hover:before, .section8 .character-container .character-item:hover:after {
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}
.section8 .character-container .character-item:hover:before {
  -webkit-transform: rotate(56.5deg) translateX(1px);
          transform: rotate(56.5deg) translateX(1px);
}
.section8 .character-container .character-item:hover:after {
  -webkit-transform: rotate(56.5deg) translateX(-1px);
          transform: rotate(56.5deg) translateX(-1px);
}
.section8 .character-container .character-content {
  position: absolute;
  top: 0;
  background: rgba(0, 0, 0, 0.9);
  height: 0px;
  overflow: hidden;
  opacity: 0.5;
  width: 390px;
  -webkit-transform: rotate(-33.5deg) translate(-112px, 166px);
          transform: rotate(-33.5deg) translate(-112px, 166px);
  -webkit-transform-origin: 0% 100%;
          transform-origin: 0% 100%;
  -webkit-transition: all 0.4s ease-in-out 0.3s;
  transition: all 0.4s ease-in-out 0.3s;
  z-index: 1;
}
.section8 .character-container .character-content .character-title {
  color: white;
  margin-top: 5px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  text-transform: uppercase;
  text-align: center;
  font-size: 1rem;
  padding: 10px;
}
.section8 .character-container .character-content .character-p {
  color: white;
  font-style: italic;
  font-size: 12px;
  padding: 10px 20px 20px;
  text-align: center;
}
.section8 .character-container .character-item:hover .character-content {
  height: 120px;
  width: 300px;
  opacity: 0.9;
  top: 40px;
  -webkit-transform: rotate(0deg) translate(0, 0);
          transform: rotate(0deg) translate(0, 0);
}
.section8 .final-block {
  max-width: 700px;
  width: 100%;
  margin: 0 auto;
}
.section8 .final-block .final-img {
  width: 100%;
}
.section8 .character-overlay {
  max-width: 800px;
  width: 100%;
  position: absolute;
  top: 0%;
  left: 20%;
  height: 500px;
  padding: 20px;
  line-height: 25px;
  -webkit-animation: bagageCard 0.4s;
          animation: bagageCard 0.4s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  z-index: 2;
}
.section8 .character-overlay .character-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.section8 .character-overlay .character-header .character-text {
  background-color: #fff;
  max-width: 100px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
}
.section8 .character-overlay .character-header .character-video {
  background-color: rgb(255, 255, 255);
  max-width: 100px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: 3px;
  cursor: pointer;
}
.section8 .character-overlay .character-header .info-header-icon {
  margin-left: 556px;
  cursor: pointer;
}
.section8 .character-overlay .character-header .inActive {
  background-color: #889ca4;
}
.section8 .character-modal {
  max-width: 800px;
  width: 100%;
  height: 430px;
  background-color: #fff;
}
.section8 .character-modal .video-character {
  width: 100%;
  height: 100%;
}
.section8 .text-modal {
  padding: 15px;
  font-size: 13px;
}

.hidden {
  -webkit-transition: opacity 1s ease-in-out;
  transition: opacity 1s ease-in-out;
  opacity: 0;
}

.floating {
  -webkit-animation: floating 1.1s ease-in-out infinite;
          animation: floating 1.1s ease-in-out infinite;
}

@-webkit-keyframes floating {
  0%, 100% {
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }
  50% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes floating {
  0%, 100% {
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }
  50% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.upanimation {
  -webkit-animation: up 0.2s ease-out;
          animation: up 0.2s ease-out;
}

@-webkit-keyframes up {
  0% {
    -webkit-transform: translateY(80px);
            transform: translateY(80px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes up {
  0% {
    -webkit-transform: translateY(80px);
            transform: translateY(80px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.heightUp {
  -webkit-animation: heightUp 2.5s ease-in-out;
          animation: heightUp 2.5s ease-in-out;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

@-webkit-keyframes heightUp {
  0% {
    height: 0;
  }
  100% {
    height: 475px;
  }
}

@keyframes heightUp {
  0% {
    height: 0;
  }
  100% {
    height: 475px;
  }
}
@font-face {
  font-family: "Gentium Book Basic";
  src: url("../fonts/GentiumBookBasic.eot");
  src: url("../fonts/GentiumBookBasic.eot?#iefix") format("embedded-opentype"), url("../fonts/GentiumBookBasic.woff2") format("woff2"), url("../fonts/GentiumBookBasic.woff") format("woff"), url("../fonts/GentiumBookBasic.svg#GentiumBookBasic") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto Slab";
  src: url("../fonts/RobotoSlab-Regular.eot");
  src: url("../fonts/RobotoSlab-Regular.eot?#iefix") format("embedded-opentype"), url("../fonts/RobotoSlab-Regular.woff2") format("woff2"), url("../fonts/RobotoSlab-Regular.woff") format("woff"), url("../fonts/RobotoSlab-Regular.svg#RobotoSlab-Regular") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "BPG Nino Elite Exp";
  src: url("../fonts/bpg-nino-elite-exp-webfont.eot"); /* IE9 Compat Modes */
  src: url("../fonts/bpg-nino-elite-exp-webfont.eot?#iefix") format("embedded-opentype"), url("../fonts/bpg-nino-elite-exp-webfont.woff2") format("woff2"), url("../fonts/bpg-nino-elite-exp-webfont.woff") format("woff"), url("../fonts/bpg-nino-elite-exp-webfont.ttf") format("truetype"), url("../fonts/bpg-nino-elite-exp-webfont.svg#bpg_nino_elite_expregular") format("svg"); /* Legacy iOS */
}