* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  touch-action: manipulation;
}

html {
  width: 100%;
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  min-height: 100vh;
}

.fill-white {
  fill: rgb(255, 255, 255);
}

body {
  font-family: "Nunito Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  color: rgb(35, 24, 78);
  font-size: 1rem;
  font-variation-settings: "wdth" 100, "YTLC" 500;
}

.source-code {
  font-family: "Source Code Pro", monospace;
  font-optical-sizing: auto;
  font-style: normal;
}

.italic {
  font-style: italic;
}

.bold {
  font-weight: 800;
}

.ebold {
  font-weight: 900;
}

.upper-font {
  text-transform: uppercase;
}

h1 {
  font-weight: 700;
  font-size: 3rem;
  line-height: 1;
}

@media (min-width: 200px) and (max-width: 480px) {
  h1 {
    font-size: 2.2rem;
  }
}
h1, h2, h3 {
  font-weight: 700;
}

h2 {
  font-size: 2.4rem;
}

@media (min-width: 200px) and (max-width: 480px) {
  h2 {
    font-size: 1.8rem;
  }
}
h3 {
  font-size: 2.1rem;
}

@media (min-width: 200px) and (max-width: 480px) {
  h3 {
    font-size: 1.3rem;
  }
}
h4 {
  font-size: 1.6rem;
}

p {
  font-size: 1.1rem;
}

@media (min-width: 600px) {
  p {
    font-size: 1.4rem;
  }
}
p.macro {
  font-size: 1.3rem;
}

@media (min-width: 600px) {
  p.macro {
    font-size: 1.8rem;
  }
}
p.incr {
  font-size: 0.9rem;
}

@media (min-width: 600px) {
  p.incr {
    font-size: 1.1rem;
  }
}
p.bold {
  font-weight: 600;
}

.small {
  font-size: 0.9rem;
}

@media (min-width: 600px) {
  .small {
    font-size: 0.9rem;
  }
}
.micro {
  font-size: 0.7rem;
}

.light {
  color: rgb(244, 244, 244);
}

.yellow {
  color: yellow;
}

.text-center {
  text-align: center;
}

.lh1 {
  line-height: 1;
}

.lh12 {
  line-height: 1.2;
}

.lh13 {
  line-height: 1.3;
}

.mt-xs {
  margin-top: 0.4vh;
}

.mt-s {
  margin-top: 0.8vh;
}

.mt-m {
  margin-top: 1vh;
}

.mt-l {
  margin-top: 1.4vh;
}

.mt-xl {
  margin-top: 2vh;
}

.mt-xxl {
  margin-top: 3.8vh;
}

.ml-l {
  margin-left: 1.4vw;
}

.ml-xl {
  margin-left: 2vw;
}

.pt-l {
  padding-top: 1.4vh;
}

nav.top-nav {
  width: fit-content;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: 10vh;
  margin-right: 15px;
}
@media (min-width: 1000px) {
  nav.top-nav {
    margin-right: 5vw;
  }
}
nav.top-nav .menu {
  display: flex;
  flex-direction: row;
  list-style-type: none;
  font-weight: 500;
  margin: 0;
  padding: 0;
}
nav.top-nav .menu > li {
  margin: 0 0.6rem;
  overflow: hidden;
}
nav.top-nav .menu > li a {
  text-decoration: none;
  color: yellow;
}
nav.top-nav .menu > li a :visited {
  color: yellow;
}
nav.top-nav .menu-button-container {
  display: none;
  height: 100%;
  width: 50px;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
nav.top-nav #menu-toggle {
  display: none;
}
nav.top-nav .menu-button,
nav.top-nav .menu-button::before,
nav.top-nav .menu-button::after {
  display: block;
  background-color: yellow;
  position: absolute;
  width: 30px;
  height: 4px;
  transition: transform 400ms cubic-bezier(0.23, 1, 0.32, 1);
}
nav.top-nav .menu-button::before {
  content: "";
  margin-top: -8px;
}
nav.top-nav .menu-button::after {
  content: "";
  margin-top: 8px;
}
nav.top-nav #menu-toggle:checked + .menu-button-container .menu-button {
  background: rgba(255, 255, 255, 0);
}
nav.top-nav #menu-toggle:checked + .menu-button-container .menu-button::before {
  margin-top: 0;
  transform: rotate(45deg);
}
nav.top-nav #menu-toggle:checked + .menu-button-container .menu-button::after {
  margin-top: 0;
  transform: rotate(-45deg);
}
@media (max-width: 1200px) {
  nav.top-nav .menu-button-container {
    display: flex;
  }
  nav.top-nav .menu {
    z-index: 990;
    position: absolute;
    top: 0;
    left: 0;
    margin-top: 10vh;
    flex-direction: column;
    width: 100%;
    align-items: center;
    justify-content: center;
  }
  nav.top-nav #menu-toggle ~ .menu li {
    height: 0;
    margin: 0;
    padding: 0;
    border: 0;
    transition: height 400ms cubic-bezier(0.23, 1, 0.32, 1);
  }
  nav.top-nav #menu-toggle:checked ~ .menu li {
    height: 4.5rem;
    transition: height 400ms cubic-bezier(0.23, 1, 0.32, 1);
  }
  nav.top-nav .menu > li {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    background-color: rgb(22, 15, 55);
    color: yellow;
  }
}

header {
  width: 100%;
  height: 10vh;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 999;
  background: rgb(22, 15, 55);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
header .logo-cntnr {
  margin: 1.6vh 0 0 2vw;
  overflow: clip;
  width: 200px;
}
header .logo-cntnr img.logo {
  width: 100%;
}
header .logo-cntnr img.tag {
  position: relative;
  width: 30%;
  left: 134px;
  top: -14px;
}

@media (min-width: 450px) {
  header {
    height: 12vh;
  }
  header .logo-cntnr {
    margin: 2vh 0 0 1.6vw;
    width: 286px;
  }
  header .logo-cntnr img.tag {
    width: 70px;
    left: 210px;
    top: -16px;
  }
  header nav {
    margin: 2.6vh 0 0 0;
  }
}
section#curact {
  width: 100%;
  min-height: 90vh;
  background: rgb(244, 244, 244);
  overflow: clip;
}
section#curact .curact-cntnr {
  width: 100%;
  height: 90vh;
}
section#curact .cact {
  width: 100%;
  height: 90vh;
}
section#curact .a-4 {
  width: 100%;
  height: 90vh;
  background: url(../../assets/img/actions/rabbits-pool/cloud-1.svg) top 28px left 20px/35% auto no-repeat, radial-gradient(circle, #3498db 50%, transparent 50%), rgb(1, 108, 180);
  position: relative;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
section#curact .a-4 .blk-1 {
  width: 60%;
  margin-bottom: 1vh;
}
section#curact .a-4 .blk-2 {
  width: 90%;
  margin-bottom: 1vh;
}
section#curact .a-4 .blk-2 img {
  width: 100%;
}
section#curact .a-4 .blk-3 {
  width: 80%;
  margin-bottom: 1vh;
}
section#curact .a-4 .blk-4 {
  width: 80%;
  margin-bottom: 3vh;
}
section#curact .a-4 .blk-5 {
  width: 60%;
}
@media only screen and (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  section#curact .a-4 {
    background: url(../../assets/img/actions/rabbits-pool/cloud-1.svg) top 48px left 20px/25% auto no-repeat, radial-gradient(circle, #3498db 50%, transparent 50%), rgb(1, 108, 180);
  }
  section#curact .a-4 .blk-1 {
    width: 40%;
    margin-bottom: 1vh;
  }
  section#curact .a-4 .blk-2 {
    width: 70%;
    margin-bottom: 1vh;
  }
  section#curact .a-4 .blk-3 {
    width: 70%;
    margin-bottom: 1vh;
  }
  section#curact .a-4 .blk-4 {
    width: 60%;
    margin-bottom: 3vh;
  }
  section#curact .a-4 .blk-5 {
    width: 40%;
  }
}
@media (min-width: 1200px) {
  section#curact .a-4 {
    background: url(../../assets/img/actions/rabbits-pool/cloud-1.svg) top 14% left 20px/25% auto no-repeat, radial-gradient(circle, #3498db 50%, transparent 50%), rgb(1, 108, 180);
  }
  section#curact .a-4 .blk-1 {
    width: 28%;
  }
  section#curact .a-4 .blk-2 {
    width: 28%;
  }
  section#curact .a-4 .blk-3 {
    width: 28%;
  }
  section#curact .a-4 .blk-4 {
    width: 28%;
  }
  section#curact .a-4 .blk-5 {
    width: 20%;
  }
}
section#curact .a-5 {
  width: 100%;
  height: 90vh;
  background: url("../../assets/img/actions/oktbrfest/beer-bg.webp") left -150px top/auto 70% no-repeat;
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: center;
}
section#curact .a-5 .cntnr {
  position: relative;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, transparent 70%, rgb(5, 79, 2) 70%, rgb(5, 79, 2) 100%), url("../../assets/img/actions/oktbrfest/an-jitl.webp") right 80px bottom 136px/auto 50% no-repeat, url("../../assets/img/actions/oktbrfest/kir-gan.webp") right 180px bottom 168px/auto 42% no-repeat, url("../../assets/img/actions/oktbrfest/vol-linn.webp") right 234px bottom 140px/auto 44% no-repeat, url("../../assets/img/actions/oktbrfest/ram-yang.webp") right 10px bottom 170px/auto 42% no-repeat, url("../../assets/img/actions/oktbrfest/ars-puch.webp") right -30px bottom 200px/auto 34% no-repeat;
}
section#curact .a-5 .cntnr p.pivo {
  position: absolute;
  bottom: 18%;
  left: 24%;
  color: yellow;
  font-weight: 700;
  font-variation-settings: "wdth" 75;
}
section#curact .a-5 .cntnr img.oct-logo {
  position: absolute;
  bottom: 20%;
  left: 5vw;
  width: 90%;
}
section#curact .a-5 .cntnr h3 {
  position: absolute;
  color: yellow;
  bottom: 8%;
  left: 27%;
  font-size: 1.6rem;
  text-align: center;
  line-height: 1.1;
}
section#curact .a-5 .cntnr .x2 {
  font-size: 2.2rem;
}
section#curact .a-5 .cntnr img.stnd {
  position: absolute;
  top: 3%;
  left: 12%;
  width: 76%;
}
section#curact .a-5 .cntnr p.main-h {
  display: none;
}
section#curact .a-5 .cntnr p.left-one {
  display: none;
}
section#curact .a-5 .cntnr p.left-two {
  display: none;
}
section#curact .a-5 .cntnr p.r-one {
  display: none;
}
section#curact .a-5 .cntnr p.r-two {
  display: none;
}
section#curact .a-5 .cntnr p.vhid {
  position: absolute;
  color: yellow;
  font-size: 1.8rem;
  left: 26%;
  bottom: 2%;
}
@media only screen and (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  section#curact .a-5 {
    background: url("../../assets/img/actions/oktbrfest/beer-bg.webp") left -50px top/135% auto no-repeat;
  }
  section#curact .a-5 .cntnr {
    background: linear-gradient(180deg, transparent 70%, rgb(5, 79, 2) 70%, rgb(5, 79, 2) 100%), url("../../assets/img/actions/oktbrfest/an-jitl.webp") right 250px bottom 166px/auto 58% no-repeat, url("../../assets/img/actions/oktbrfest/kir-gan.webp") right 470px bottom 220px/auto 46% no-repeat, url("../../assets/img/actions/oktbrfest/vol-linn.webp") right 590px bottom 200px/auto 46% no-repeat, url("../../assets/img/actions/oktbrfest/ram-yang.webp") right 80px bottom 220px/auto 48% no-repeat, url("../../assets/img/actions/oktbrfest/ars-puch.webp") right -20px bottom 258px/auto 38% no-repeat;
  }
  section#curact .a-5 .cntnr img.stnd {
    top: 2%;
    left: 25%;
    width: 50%;
  }
  section#curact .a-5 .cntnr p.pivo {
    bottom: 18%;
    left: 36%;
    font-size: 1.6rem;
  }
  section#curact .a-5 .cntnr img.oct-logo {
    bottom: 20%;
    left: 22%;
    width: 60%;
  }
  section#curact .a-5 .cntnr h3 {
    color: yellow;
    bottom: 8%;
    left: 38%;
    font-size: 2.2rem;
    text-align: center;
    line-height: 1;
  }
  section#curact .a-5 .cntnr .x2 {
    font-size: 3.6rem;
  }
  section#curact .a-5 .cntnr p.vhid {
    color: yellow;
    font-size: 2.8rem;
    left: 36%;
    bottom: 2%;
  }
}
@media (min-width: 1200px) {
  section#curact .a-5 {
    background: url("../../assets/img/actions/oktbrfest/beer-bg.webp") left top/100% auto no-repeat;
  }
  section#curact .a-5 .cntnr {
    position: relative;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 70%, rgb(5, 79, 2) 70%, rgb(5, 79, 2) 100%), url("../../assets/img/actions/oktbrfest/an-jitl.webp") right 350px bottom 196px/auto 66% no-repeat, url("../../assets/img/actions/oktbrfest/kir-gan.webp") right 570px bottom 260px/auto 54% no-repeat, url("../../assets/img/actions/oktbrfest/vol-linn.webp") right 710px bottom 240px/auto 54% no-repeat, url("../../assets/img/actions/oktbrfest/ram-yang.webp") right 180px bottom 260px/auto 56% no-repeat, url("../../assets/img/actions/oktbrfest/ars-puch.webp") right 80px bottom 288px/auto 46% no-repeat;
  }
  section#curact .a-5 .cntnr img.stnd {
    top: 20%;
    left: 12%;
    width: 27%;
  }
  section#curact .a-5 .cntnr p.pivo {
    position: absolute;
    bottom: 10%;
    left: 58%;
    color: yellow;
    font-weight: 700;
    font-size: 2.8rem;
  }
  section#curact .a-5 .cntnr img.oct-logo {
    position: absolute;
    bottom: 15%;
    left: 50%;
    width: 40%;
  }
  section#curact .a-5 .cntnr h3 {
    position: absolute;
    color: rgb(5, 79, 2);
    bottom: 36%;
    left: 17%;
    font-size: 2.8rem;
    text-align: center;
    line-height: 1.1;
  }
  section#curact .a-5 .cntnr .x2 {
    font-size: 4.2rem;
  }
  section#curact .a-5 .cntnr p.main-h {
    display: inline-block;
    position: absolute;
    bottom: 36%;
    right: 470px;
    font-size: 0.9rem;
    color: white;
  }
  section#curact .a-5 .cntnr p.left-one {
    display: inline-block;
    position: absolute;
    bottom: 36%;
    right: 660px;
    font-size: 0.9rem;
    color: white;
  }
  section#curact .a-5 .cntnr p.left-two {
    display: inline-block;
    position: absolute;
    bottom: 36%;
    right: 850px;
    font-size: 0.9rem;
    line-height: 1;
    color: white;
  }
  section#curact .a-5 .cntnr p.r-one {
    display: inline-block;
    position: absolute;
    bottom: 36%;
    right: 300px;
    font-size: 0.9rem;
    line-height: 1;
    color: white;
  }
  section#curact .a-5 .cntnr p.r-two {
    display: inline-block;
    position: absolute;
    bottom: 36%;
    right: 150px;
    font-size: 0.9rem;
    line-height: 1;
    color: white;
  }
  section#curact .a-5 .cntnr p.vhid {
    position: absolute;
    color: yellow;
    font-size: 2.8rem;
    left: 17%;
    bottom: 10%;
  }
}
section#curact .a-6 {
  width: 100%;
  height: 90vh;
  background: url("../../assets/img/actions/oktbrfest/beer-bg.webp") left -150px top/auto 70% no-repeat;
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: center;
}
section#curact .a-6 .cntnr {
  position: relative;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, transparent 70%, rgb(5, 79, 2) 70%, rgb(5, 79, 2) 100%), url("../../assets/img/actions/oktbrfest/luh.webp") right 100px bottom 124px/auto 52% no-repeat, url("../../assets/img/actions/oktbrfest/ggs.webp") right 260px bottom 120px/auto 44% no-repeat, url("../../assets/img/actions/oktbrfest/mblk.webp") right 196px bottom 214px/auto 32% no-repeat, url("../../assets/img/actions/oktbrfest/grb.webp") right -36px bottom 150px/auto 42% no-repeat, url("../../assets/img/actions/oktbrfest/gbj.webp") right 60px bottom 140px/auto 46% no-repeat;
}
section#curact .a-6 .cntnr img.voice {
  position: absolute;
  top: 10%;
  left: 2%;
  width: 96%;
}
section#curact .a-6 .cntnr p.pivo {
  position: absolute;
  bottom: 18%;
  left: 24%;
  color: yellow;
  font-weight: 700;
  font-variation-settings: "wdth" 75;
}
section#curact .a-6 .cntnr img.oct-logo {
  position: absolute;
  bottom: 20%;
  left: 5vw;
  width: 90%;
}
section#curact .a-6 .cntnr h3 {
  position: absolute;
  color: yellow;
  bottom: 8%;
  left: 27%;
  font-size: 1.6rem;
  text-align: center;
  line-height: 1.1;
}
section#curact .a-6 .cntnr .x2 {
  font-size: 2.2rem;
}
section#curact .a-6 .cntnr p.luh {
  display: none;
}
section#curact .a-6 .cntnr p.vhid {
  position: absolute;
  color: yellow;
  font-size: 1.8rem;
  left: 26%;
  bottom: 2%;
}
@media only screen and (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  section#curact .a-6 {
    background: url("../../assets/img/actions/oktbrfest/beer-bg.webp") left -50px top/135% auto no-repeat;
  }
  section#curact .a-6 .cntnr {
    background: linear-gradient(180deg, transparent 75%, rgb(5, 79, 2) 75%, rgb(5, 79, 2) 100%), url("../../assets/img/actions/oktbrfest/luh.webp") right 250px bottom 124px/auto 62% no-repeat, url("../../assets/img/actions/oktbrfest/ggs.webp") left 10px bottom 120px/auto 50% no-repeat, url("../../assets/img/actions/oktbrfest/mblk.webp") left 120px bottom 244px/auto 39% no-repeat, url("../../assets/img/actions/oktbrfest/grb.webp") right -16px bottom 150px/auto 50% no-repeat, url("../../assets/img/actions/oktbrfest/gbj.webp") right 140px bottom 20px/auto 64% no-repeat;
  }
  section#curact .a-6 .cntnr img.voice {
    top: 6%;
    left: 12%;
    width: 76%;
  }
  section#curact .a-6 .cntnr img.oct-logo {
    bottom: 20%;
    left: 22%;
    width: 60%;
  }
  section#curact .a-6 .cntnr p.pivo {
    bottom: 18%;
    left: 36%;
    font-size: 1.6rem;
  }
  section#curact .a-6 .cntnr h3 {
    color: yellow;
    bottom: 8%;
    left: 38%;
    font-size: 2.2rem;
    text-align: center;
    line-height: 1;
  }
  section#curact .a-6 .cntnr .x2 {
    font-size: 3.6rem;
  }
  section#curact .a-6 .cntnr p.vhid {
    color: yellow;
    font-size: 2.8rem;
    left: 36%;
    bottom: 2%;
  }
}
@media (min-width: 1200px) {
  section#curact .a-6 {
    background: url("../../assets/img/actions/oktbrfest/beer-bg.webp") left top/100% auto no-repeat;
  }
  section#curact .a-6 .cntnr {
    background: linear-gradient(180deg, transparent 75%, rgb(5, 79, 2) 75%, rgb(5, 79, 2) 100%), url("../../assets/img/actions/oktbrfest/luh.webp") right 370px bottom 140px/auto 70% no-repeat, url("../../assets/img/actions/oktbrfest/ggs.webp") right 740px bottom 60px/auto 68% no-repeat, url("../../assets/img/actions/oktbrfest/mblk.webp") right 580px bottom 220px/auto 50% no-repeat, url("../../assets/img/actions/oktbrfest/grb.webp") right 86px bottom 150px/auto 55% no-repeat, url("../../assets/img/actions/oktbrfest/gbj.webp") right 246px bottom 40px/auto 70% no-repeat;
  }
  section#curact .a-6 .cntnr img.voice {
    position: absolute;
    top: 26%;
    left: 6%;
    width: 36%;
  }
  section#curact .a-6 .cntnr p.pivo {
    position: absolute;
    bottom: 10%;
    left: 58%;
    color: yellow;
    font-weight: 700;
    font-size: 2.8rem;
    font-variation-settings: "wdth" 75;
  }
  section#curact .a-6 .cntnr img.oct-logo {
    position: absolute;
    bottom: 15%;
    left: 50%;
    width: 40%;
  }
  section#curact .a-6 .cntnr h3 {
    position: absolute;
    color: rgb(5, 79, 2);
    bottom: 36%;
    left: 17%;
    font-size: 2.8rem;
    text-align: center;
    line-height: 1.1;
  }
  section#curact .a-6 .cntnr .x2 {
    font-size: 4.2rem;
  }
  section#curact .a-6 .cntnr p.luh {
    position: absolute;
    display: inline-block;
    font-size: 0.9rem;
    color: white;
    line-height: 1;
    bottom: 36%;
    right: 470px;
  }
  section#curact .a-6 .cntnr p.vhid {
    position: absolute;
    color: yellow;
    font-size: 2.8rem;
    left: 17%;
    bottom: 10%;
  }
}

section#about {
  width: 100%;
  height: 98vh;
  overflow: clip;
  background: linear-gradient(to bottom, white 25%, rgba(255, 255, 255, 0) 75%), url("../../assets/img/chabany-trc-render-1.jpg") left -700px bottom -110px/auto 100% no-repeat;
  display: flex;
  flex-direction: column;
  align-items: center;
}
section#about .about-info-cntnr {
  margin: 3vh 3vw 1vh 4vw;
  width: 90%;
}
section#about button#toggleAbout {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  box-shadow: none;
  text-align: center;
  font-size: 0.9rem;
  color: rgb(22, 15, 55);
  cursor: pointer;
  padding: 1vh 4.2vw 1vh 4.2vw;
  background: rgba(255, 255, 255, 0.4);
  border: 1px solid rgb(22, 15, 55);
  border-radius: 10px;
  margin: 3vh 0 3vh 0;
}
section#about button#toggleAbout:active {
  box-shadow: none;
}
section#about .expandable {
  min-height: 0;
}
section#about .readmore {
  display: grid;
  overflow: hidden;
  transition: grid-template-rows 400ms;
  grid-template-rows: 0fr;
}
section#about .readmore.open {
  grid-template-rows: 1fr;
  background: linear-gradient(to top, rgba(255, 255, 255, 0.6) 25%, rgba(255, 255, 255, 0) 75%);
}
section#about .advantages {
  margin-top: 1vh;
  width: 40%;
}
section#about .advantage {
  width: 140px;
  height: 200px;
  border: 1px solid rgb(22, 15, 55);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  border-radius: 0 0 86px 86px;
}
section#about .advantage-info {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}
section#about .advantage-info p:nth-child(1) {
  padding: 0 0.6vw;
}
section#about .advantage-info p:nth-child(2) {
  display: none;
}
section#about object {
  width: 110px;
  height: auto;
  padding: 3px 1px 5px 1px;
}

@media (min-width: 600px) {
  section#about {
    height: 88vh;
    background: linear-gradient(to bottom, white 25%, rgba(255, 255, 255, 0) 75%), url("../../assets/img/chabany-trc-render-1.jpg") left -600px bottom -136px/auto 130% no-repeat;
    flex-direction: row;
    align-items: flex-start;
  }
  section#about .about-info-cntnr {
    margin: 8vh 0 0 4vw;
    width: 60%;
  }
  section#about .expandable {
    width: 90%;
  }
  section#about .advantages {
    margin: 4vh 0 0 6vw;
    width: 24%;
  }
  section#about .advantage {
    width: 180px;
    height: 240px;
    border: 1px solid rgb(22, 15, 55);
    border-radius: 0 0 86px 86px;
    padding-bottom: 8px;
    margin-top: 12vh;
  }
  section#about .advantage-info p:nth-child(2) {
    padding: 0 0.6vw;
    display: block;
  }
  section#about object {
    width: 140px;
    height: auto;
  }
}
@media (min-width: 1200px) {
  section#about {
    background: linear-gradient(to bottom, white 25%, rgba(255, 255, 255, 0) 75%), url("../../assets/img/chabany-trc-render-1.jpg") left -300px bottom -136px/auto 130% no-repeat;
  }
  section#about .about-info-cntnr {
    width: 56%;
  }
  section#about .advantages {
    margin: 4vh 0 0 12vw;
  }
}
section#shops {
  width: 100%;
  height: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  background: rgb(244, 244, 244);
  padding-bottom: 4vh;
}

.flex-cntnr {
  width: 96%;
  height: fit-content;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
}
.flex-cntnr .item {
  width: 100px;
  width: 100px;
  margin: 1%;
  aspect-ratio: 1/1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: rgb(255, 255, 255);
}
.flex-cntnr .item object {
  width: 90%;
}

@media (min-width: 500px) {
  .flex-cntnr {
    width: 94%;
    margin-left: 2vw;
  }
  .flex-cntnr .item {
    width: 140px;
    height: 140px;
  }
}
section#rests {
  width: 100%;
  height: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  background: rgb(244, 244, 244);
  padding-bottom: 4vh;
}

section#fun {
  width: 100%;
  height: fit-content;
  background: rgb(35, 24, 78);
}
section#fun .epiland-info-cntnr {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding-bottom: 3vh;
}
section#fun .epl-logo {
  margin-left: 4vw;
}
section#fun .epl-logo object {
  width: 100%;
  margin: 4vh 0 0 -2vw;
}
section#fun .epl-info {
  margin: 0 4vw;
}
section#fun .epiland-show {
  width: 100%;
  height: 280px;
  margin-top: 3vh;
}
section#fun .epl-slide {
  width: 100%;
  height: 280px;
}
section#fun .esl-1 {
  background: url("../../assets/img/epiland/epiland-1.jpg") center center/auto 100% no-repeat;
}
section#fun .esl-2 {
  background: url("../../assets/img/epiland/epiland-2.jpg") center center/auto 100% no-repeat;
}
section#fun .esl-3 {
  background: url("../../assets/img/epiland/epiland-3.jpg") center center/auto 100% no-repeat;
}
section#fun .esl-4 {
  background: url("../../assets/img/epiland/epiland-4.jpg") center center/auto 100% no-repeat;
}
section#fun .esl-5 {
  background: url("../../assets/img/epiland/epiland-5.jpg") center center/auto 100% no-repeat;
}

@media (min-width: 600px) {
  section#fun .epiland-info-cntnr {
    flex-direction: row;
  }
  section#fun .epl-logo {
    width: 50%;
    flex-grow: 1;
  }
  section#fun .epl-logo object {
    width: 50%;
    margin: 5vh 0 0 -1vw;
  }
  section#fun .epl-info {
    width: 60%;
    flex-grow: 4;
    margin: 3vh 5vw 0 0;
  }
  section#fun .epiland-show {
    height: 300px;
  }
  section#fun .epl-slide {
    height: 300px;
  }
}
section#epc-shp {
  width: 100%;
  height: fit-content;
  padding: 4vh 0 4vh 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  background: rgb(244, 244, 244);
  overflow: clip;
}
section#epc-shp .epc-show {
  padding-top: 4vh;
  width: 100%;
  height: 280px;
}
section#epc-shp .epc-slide {
  width: 100%;
  height: 280px;
}
section#epc-shp .epsl-1 {
  background: url("../../assets/img/cbfoto/01-fasad0.JPG") center center/auto 100% no-repeat;
}
section#epc-shp .epsl-2 {
  background: url("../../assets/img/cbfoto/02-fasad1.JPG") center center/auto 100% no-repeat;
}
section#epc-shp .epsl-3 {
  background: url("../../assets/img/cbfoto/03-park2.JPG") center center/auto 100% no-repeat;
}
section#epc-shp .epsl-4 {
  background: url("../../assets/img/cbfoto/04-ozero1.JPG") center center/auto 100% no-repeat;
}
section#epc-shp .epsl-5 {
  background: url("../../assets/img/cbfoto/05-dream1.JPG") center center/auto 100% no-repeat;
}
section#epc-shp .epsl-6 {
  background: url("../../assets/img/cbfoto/06-dream2.JPG") center center/auto 100% no-repeat;
}
section#epc-shp .epsl-7 {
  background: url("../../assets/img/cbfoto/08-food1.JPG") center center/auto 100% no-repeat;
}
section#epc-shp .epsl-8 {
  background: url("../../assets/img/cbfoto/09-food2.JPG") center center/auto 100% no-repeat;
}
section#epc-shp .epsl-9 {
  background: url("../../assets/img/cbfoto/10-intrsp.JPG") center center/auto 100% no-repeat;
}
section#epc-shp .epsl-10 {
  background: url("../../assets/img/cbfoto/11-deko.JPG") center center/auto 100% no-repeat;
}
section#epc-shp .epsl-11 {
  background: url("../../assets/img/cbfoto/12-trav.JPG") center center/auto 100% no-repeat;
}

@media (min-width: 600px) {
  section#epc-shp .epc-show {
    height: 300px;
  }
  section#epc-shp .epc-slide {
    height: 300px;
  }
}
.bright {
  color: #f4f4f4;
}

.comforter {
  font-family: "Comforter", cursive;
  font-weight: 400;
  font-style: normal;
}

a.button-s {
  display: inline-block;
  border: 1px solid;
  border-color: rgb(35, 24, 78);
  padding: 8px 16px 10px 16px;
  border-radius: 20px;
  text-decoration: none;
  background: transparent;
  font-size: 0.9rem;
  color: rgb(22, 15, 55);
}

a.button-s:hover {
  background: rgb(22, 15, 55);
  color: yellow;
}

section#plan {
  width: 100%;
  height: fit-content;
  background: linear-gradient(180deg, #160f37 0%, #160f37 100%);
  overflow: hidden;
}
section#plan .container {
  position: relative;
  top: 0;
  left: 0;
  height: 55vh;
  margin-top: 20px;
  transition: all 0.5 ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: clip;
}
section#plan .svg-wrapper {
  position: absolute;
  cursor: pointer;
  width: 86vw;
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: clip;
}
section#plan .svg-wrapper:nth-child(1) {
  z-index: 20;
  transform: translateY(-64%);
}
section#plan .svg-wrapper:nth-child(2) {
  z-index: 19;
  transform: translateY(1%);
}
section#plan .svg-wrapper:nth-child(3) {
  z-index: 18;
  width: 78%;
  transform: translateY(76%) translateX(4%);
}
section#plan .svg-wrapper.selected {
  width: 90vw !important;
  transform: translateY(0);
  z-index: 21;
}
section#plan .svg-wrapper:nth-child(1).selected,
section#plan .svg-wrapper:nth-child(2).selected,
section#plan .svg-wrapper:nth-child(3).selected {
  height: 25vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
section#plan .svg-wrapper:nth-child(1).selected {
  background: url("../../assets/img/plan/but-2-floor.svg") top 0 left/13% auto no-repeat;
}
section#plan .svg-wrapper:nth-child(2).selected {
  background: url("../../assets/img/plan/but-1-floor.svg") top 0 left/13% auto no-repeat;
}
section#plan .svg-wrapper:nth-child(3).selected {
  background: url("../../assets/img/plan/but-0-floor.svg") top 0 left/11% auto no-repeat;
}
section#plan .svg-wrapper.faded {
  opacity: 0;
  pointer-events: none;
  transform: scale(0.8);
}
section#plan .controls {
  position: fixed;
  top: 0;
  right: 5vw;
  transform: translateY(12vh);
  padding: 5px;
  z-index: 22;
  flex-direction: column;
  gap: 18px;
  display: none;
}
section#plan .controls.visible {
  display: flex;
}
section#plan .control-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  aspect-ratio: 1/1;
  alignment-baseline: middle;
  background: rgba(255, 255, 255, 0.2);
  border: 0;
  color: yellow;
  padding: 10px;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
}
section#plan .control-btn:hover {
  background: rgba(255, 255, 255, 0.4);
  transform: scale(1.1);
}
section#plan .reset-btn {
  position: fixed;
  bottom: 30vh;
  left: 46%;
  display: none;
  align-items: center;
  justify-content: center;
  border: none;
  background: rgba(255, 255, 255, 0.2);
  color: yellow;
  font-size: 1.2rem;
  font-weight: bold;
  padding: 10px 16px;
  border-radius: 10px;
  alignment-baseline: middle;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 23;
  backdrop-filter: blur(10px);
}
section#plan .reset-btn.visible {
  display: inline-flex;
}
section#plan .reset-btn:hover {
  background: rgba(255, 255, 255, 0.4);
  transform: scale(1.1);
}

@media (min-width: 700px) {
  section#plan .container {
    height: 75vh;
  }
  section#plan .svg-wrapper:nth-child(1).selected,
  section#plan .svg-wrapper:nth-child(2).selected,
  section#plan .svg-wrapper:nth-child(3).selected {
    height: 50vh;
  }
  section#plan .controls {
    top: 4vh;
    right: 5.4vw;
  }
  section#plan .control-btn {
    font-size: 1.4rem;
    padding: 20px;
  }
  section#plan .control-btn:last-child {
    font-size: 1.8rem;
  }
  section#plan .reset-btn {
    bottom: 12vh;
    left: 48%;
    font-size: 1.6rem;
    padding: 12px 20px;
  }
}
@media (min-width: 1200px) {
  section#plan .container {
    height: 90vh;
  }
  section#plan .svg-wrapper {
    width: 78vw;
  }
  section#plan .svg-wrapper:nth-child(3) {
    width: 68vw;
  }
}
section#contacts {
  width: 100%;
  height: 80vh;
  background: linear-gradient(180deg, white 10%, rgba(255, 255, 255, 0.1) 50%) repeat-x, url("../../assets/img/fake-map-1.jpg") bottom -100px left -240px/240% auto no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}
section#contacts .contct-cntnr {
  width: 90vw;
  height: fit-content;
  background: yellow;
  padding: 3vh 1vw 3vh 1vw;
}
section#contacts .flex-cntct {
  display: flex;
  flex-direction: column;
}
section#contacts .cntct1, section#contacts .cntct2, section#contacts .cntct3 {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
section#contacts a.tel {
  text-decoration: none;
  color: rgb(22, 15, 55);
}

@media (min-width: 600px) {
  section#contacts {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.8) 5%, rgba(255, 255, 255, 0) 40%) repeat-x, url("../../assets/img/fake-map-1.jpg") bottom -40px left -200px/130% auto no-repeat, rgb(244, 244, 244);
    display: flex;
    align-items: flex-end;
    justify-content: center;
  }
  section#contacts .contct-cntnr {
    width: 84vw;
    height: 40vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  section#contacts .flex-cntct {
    flex-direction: row;
    width: 90%;
  }
  section#contacts .cntct1, section#contacts .cntct2, section#contacts .cntct3 {
    padding: 1%;
    align-items: flex-start;
    justify-content: flex-start;
  }
}
@media (min-width: 1000px) {
  section#contacts {
    align-items: center;
    justify-content: flex-end;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.8) 5%, rgba(255, 255, 255, 0) 40%) repeat-x, url("../../assets/img/fake-map-1.jpg") bottom -560px left -300px/130% auto no-repeat, rgb(244, 244, 244);
  }
  section#contacts .contct-cntnr {
    width: 60vw;
  }
}
footer {
  width: 100%;
  height: 34vh;
  background: linear-gradient(to bottom, rgba(35, 24, 78, 0.6) 0%, rgba(22, 15, 55, 0.6) 100%), url("../../assets/img/plan-neon-strips-bg.jpg") left -150px bottom 0/auto 100% no-repeat;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
footer .logo-cntnr {
  width: 210px;
  height: fit-content;
  position: relative;
  top: 0;
  left: 0;
}
footer #epc-logo-foot {
  width: 100%;
  position: relative;
  top: 10px;
  left: 0;
}
footer #chabany-tag-foot {
  width: 68px;
  position: relative;
  left: 134px;
  top: -10px;
}
footer ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 8vw;
}
footer ul > li {
  text-align: center;
  margin: 0;
}
footer #legal-foot {
  margin-top: 2vh;
}

@media (min-width: 500px) {
  footer {
    height: 26vh;
    background: linear-gradient(to bottom, rgba(35, 24, 78, 0.6) 0%, rgba(22, 15, 55, 0.6) 100%), url("../../assets/img/plan-neon-strips-bg.jpg") left -50px top -100px/120% auto no-repeat;
    flex-direction: row;
    justify-content: space-between;
  }
  footer .logo-cntnr {
    width: 240px;
    margin-left: 1vw;
  }
  footer #epc-logo-foot {
    width: 100%;
    position: relative;
    top: 12px;
    left: 0;
  }
  footer #chabany-tag-foot {
    width: 62px;
    position: relative;
    left: 142px;
    top: -10px;
  }
  footer #legal-foot {
    margin-right: 1vw;
  }
  footer ul {
    display: block;
    margin: 1%;
  }
  footer ul > li {
    text-align: left;
  }
}
@media (min-width: 1260px) {
  footer .logo-cntnr {
    width: 260px;
    margin-left: 2vw;
  }
  footer #chabany-tag-foot {
    width: 62px;
    position: relative;
    left: 186px;
    top: -12px;
  }
  footer #legal-foot {
    margin-right: 4vw;
  }
}
a {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}

ul {
  list-style-type: none;
}

ul > li {
  margin-bottom: 0.4vh;
}

/*# sourceMappingURL=styles-a.css.map */
