@import url('https://fonts.googleapis.com/css2?family=Arimo:ital,wght@0,400..700;1,400..700&display=swap');


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

:root {
    --color1: #654321; 
    --color2: #18c318;

    --color4: #111;
    --white: #fff;

    --bg1: rgb(55 60 12 / 92%);

    --rgb1:  rgb(23 94 6 / 50%);

  }

body{
    direction: ltr;
    font-family: 'Arimo', sans-serif !important;
    font-size: 17px;
    margin: 0;
    padding: 0px;
    line-height: 1.4;
    direction: ltr !important;
}


img{
  max-width: 100%;
}

ul{
  list-style: none;
  margin: 0;
  padding: 0;
}

li, p{
padding: 10px 0;
}

a {
  text-decoration: none;
}


.container{
  max-width: 1170px;
  margin: 0 auto;
  width: 100%;
}

.titleBlock{
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
}

.titleBlock h5{
  font-size: clamp(22px,5vw,35px);
  line-height: 40px;
  font-weight: 900;
  color: var(--color1);
  margin-top: -10px;
  text-transform: capitalize;
  filter: drop-shadow(2px 4px 6px var(--white));
  -webkit-filter: drop-shadow(2px 4px 6px var(--white));
}




.navig-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  position: absolute;
  z-index: 2;
}
.navig {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f8f9fa;
  border-radius: 51px;
  padding: 10px 33px;
  margin-top:  17px;
}
.navig ul {
  list-style-type: none;
  padding: 0;
  display: flex;
  flex-direction: row;
  margin: 0;
}
.navig ul li {
  margin: 0 10px;
}
.navig ul li a {
  text-decoration: none;
  color: var(--color1);
  padding: 10px 17px;
  border-radius: 51px;
  transition: all 0.2s ease;
}
.navig ul li a:hover {
  background-color: #e7e7e7;
  color: var(--color2);
}
.navig-toggler {
  display: none;
  background-color: transparent;
  border: none;
  outline: none;
}
.navig-toggler svg {
  width: 65px;
  transition: width 0.15s ease-in-out;
}
.navig-toggler.clicked svg {
  width: 75px;
}
.collapse {
  display: none;
  flex-direction: column;
  text-align: center;
}
.collapse.show {
  display: flex;
}

.navigMob{
  display: none !important;
}


.jungHero{
  position: relative;
  background: url(content/bg/bg-light-0684aee5c0b45b.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  padding: 134px 15px;
  animation: change-background 15s linear infinite;
}

.jungHero:after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  background: var(--rgb1);
}


@keyframes change-background {
  0% {
    background: url(content/bg/bg-light-1684aee5c0b4d3.jpg);
    background-repeat: no-repeat;
    background-size: cover;
  }

  100% {
    background: url(content/bg/bg-light-2684aee5c0b539.jpg);
    background-repeat: no-repeat;
    background-size: cover;
  }
}


.jungHero-main{
  display: flex;
  flex-direction: row;
  align-items: center;
  position: relative;
  z-index: 1;
  padding: 53px 0;
}

.jungHero-blockText, .jungHero-block-logo{
  flex: 1;
  margin: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.jungHero-blockText h4{
  color: var(--color1);
  -webkit-text-stroke: 0.1rem var(--color2);
  font-size: clamp(20px, 5vw, 35px);
}

.jungHero-btn{
  padding-top: 19px;
}

.jungHero-block-logo a{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 17px;
}

.jungHero-block-logo a h2{
  font-size: clamp(17px, 2.5vw, 25px);
  font-weight: 900;
  transition: .5s;
  display: flex;
  flex-direction: column;
}

.jungHero-block-logo a h2:hover{
  color: var(--color2);
}

.jungHero-block-logo a img{
  width: 149px;
  height: 149px;
  object-fit: contain;
}



.jungAbouts{
  position: relative;
  padding:  49px 17px;
  background: radial-gradient(circle, var(--color2) 0%, var(--color1) 100%);
}

.jungAbouts-ovs{
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
}

.jungAbouts-ovs img{
  height: 316px;
  width: 100%;
  object-fit: contain;
}

.jungAbouts-main{
  display: flex;
  align-items: center;
  position: relative;
  flex-direction: row;
  padding-bottom: 17px;
}

.jungAbouts-img,.jungAbouts-text{
  flex: 1;
  margin: 17px;
}


.jungAbouts-img-inner{
  position: relative;
  display: block;
  height: 316px;
  margin: auto;
  z-index: 1;
  filter: drop-shadow(2px 4px 6px var(--color4));
  -webkit-filter: drop-shadow(2px 4px 6px var(--color4));
}

.jungAbouts-img-inner::after {
  content: "";
  position: absolute;
  top: -10px;
  right: -10px;
  height: 200px;
  width: 200px;
  background: var(--color1);
  z-index: -1;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.jungAbouts-img-inner::before {
  content: "";
  position: absolute;
  bottom: -10px;
  left: -10px;
  height: 200px;
  width: 200px;
  background: var(--color1);
  z-index: -1;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}

.jungAbouts-img-inner:hover::after {
  right: -15px;
  top: -15px;
  background: var(--color1);
}
.jungAbouts-img-inner:hover::before {
  left: -15px;
  bottom: -15px;
  background: var(--color1);
}

.jungAbouts-img-inner img {
  width: 100%;
  height: 100%;
  display: block;
  margin: 0 auto;
  position: relative;
  object-fit: cover;
}

.jungAbouts-text p{
  font-size: clamp(15px, 2.5vw, 17px);
  color: var(--white);
  font-weight: 400;
  filter: drop-shadow(2px 4px 6px var(--color4));
  -webkit-filter: drop-shadow(2px 4px 6px var(--color4));
}

.jungAbouts-stat{
  display: flex;
  flex-wrap: wrap;
  gap: 31px;
}

.jungAbouts-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  gap: 10px;
  background: var(--color1);
  padding: 15px  19px;
  border-radius: 0px;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
  filter: drop-shadow(2px 4px 6px var(--color4));
  -webkit-filter: drop-shadow(2px 4px 6px var(--color4));
  padding-top: 19px;
}

.jungAbouts-block:hover {
   transform: translateY(-5px);
}

.jungAbouts-block h2 {
  color: var(--color1);
  -webkit-text-stroke: 0.1rem var(--white);
  font-size: clamp(20px, 5vw, 35px);
}

.jungAbouts-block img{
  width: 149px;
  height: 55px;
  object-fit: contain;
}

.jungAbouts-block p{
  font-size: clamp(17px, 2.5vw, 19px);
  color: var(--color2);
  font-weight: 900;
  padding: 0;
  text-transform: uppercase;
}


.jungPlayS{
  padding:  49px 17px;
  position: relative;
  background: url(content/bg/bg-light-3684aee5c0b594.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.jungPlayS:after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  background: var(--rgb1);
}

.jungPlayS-main{
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 31px;
}

.jungPlayS-block{
  filter: drop-shadow(2px 4px 6px var(--color4));
  -webkit-filter: drop-shadow(2px 4px 6px var(--color4));
}

.jungPlayS-box {
  background: var(--color1);
  border-radius: 8px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
  transition: 0.2s linear;
}

.jungPlayS-box .jungPlayS-image {
  position: relative;
  overflow: hidden;
  transition: 0.2s linear;
  height: 316px;
}

.jungPlayS-box:hover {
  box-shadow: 0px 28px 40px rgba(14, 30, 53, 0.2);
}

.jungPlayS-box .jungPlayS-image img {
  transition: all 1s;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.jungPlayS-box:hover .jungPlayS-image img {
  transform: scale(1.3) rotate(5deg);
}


.jungPlayS-box .jungPlayS-content {
  padding: 17px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.jungPlayS-box .jungPlayS-content h4 {
  font-size: clamp(17px, 2.5vw, 19px);
  font-weight: 900;
  transition: .5s;
  text-transform: uppercase;
}

.jungPlayS-box .jungPlayS-content h4 a {
  transition: 0.2s linear;
  color: var(--color2);
}

.jungPlayS-box:hover .jungPlayS-content h4 a {
  color: var(--white);
}


.jungPlayS-box .jungPlayS-content p {
  line-height: 22px;
  margin-bottom: 28px;
  text-transform: capitalize;
}

.jungPlayS-box .jungPlayS-btn a {
  font-size: 17px;
  color: var(--white);
  display: inline-block;
  font-weight: 400;
  line-height: 24px;
  text-transform: uppercase;
  transition: 0.2s linear;
  position: relative;
}
.jungPlayS-box .jungPlayS-btn a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 2px;
  width: 0;
  background: var(--color2);
  transition: 0.2s linear;
}
.jungPlayS-box .jungPlayS-btn a:hover::after {
  width: 100%;
}

.jungPlayS-box:hover .jungPlayS-btn a::after {
  width: 100%;
}

.jungPlayS-rating{
  display: flex;
  align-items: center;
  gap: 10px;
}

.jungPlayS-rating svg{
  fill: rgb(185, 185, 63);
  width: 27px;
  height: 27px;
}

.jungPlayS-rating  span{
  font-size: clamp(17px, 2.5vw, 19px);
  font-weight: 400;
  color: var(--white);
}



.jungPlaySTwoV{
  padding:  49px 17px;
  position: relative;
  background: url(content/bg/bg-light-3684aee5c0b594.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.jungPlaySTwoV:after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  background: var(--rgb1);
}

.jungPlaySTwoV-main{
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 31px;
}

.jungPlaySTwoV-block {
  position: relative;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.8);
}

.jungPlaySTwoV-block .jungPlaySTwoV-img {
  position: relative;
  height: 316px;
}

.jungPlaySTwoV-block .jungPlaySTwoV-img img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.jungPlaySTwoV-block .jungPlaySTwoV-overlay {
  position: absolute;
  background-color: rgb(101 67 33 / 80%);
  display: grid;
  place-content: center;
  text-align: center;
  justify-items: center;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  transition: 0.2s linear;
}

.jungPlaySTwoV-block .jungPlaySTwoV-overlay h4 a {
  display: block;
  text-align: center;
  color: #fff;
  text-transform: uppercase;
  transition: 0.2s linear;
}

.jungPlaySTwoV-block .jungPlaySTwoV-overlay h4 a:hover {
  color: var(--color2);
}

.jungPlaySTwoV-block:hover .jungPlaySTwoV-overlay {
  visibility: visible;
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.jungPlaySTwoV-overlay h4{
  font-size: clamp(17px, 2.5vw, 19px);
  font-weight: 900;
  transition: .5s;
  text-transform: uppercase;
}

.jungPlaySTwoV-overlay h4 a{
  color: var(--color2);
  transition: 0.2s linear;
}

.jungPlaySTwoV-overlay h4 a:hover{
  color: var(--white);
}

.jungPlaySTwoV-rating{
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 10px;
}

.jungPlaySTwoV-rating svg{
  fill: rgb(185, 185, 63);
  width: 27px;
  height: 27px;
}

.jungPlaySTwoV-rating  span{
  font-size: clamp(17px, 2.5vw, 19px);
  font-weight: 400;
  color: var(--white);
}

.jungPlaySTwoV-btn{
  padding-top: 19px;
}


.jung-say{
  padding:  49px 17px;
  background: radial-gradient(circle, var(--color2) 0%, var(--color1) 100%);
  position: relative;
}

.jung-say-Ovs{
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
}

.jung-say-Ovs img{
  height: 316px;
  width: 100%;
  object-fit: contain;
}

.jung-say-container{
  width: 100%;
  overflow: hidden;
  padding: 70px 0;
  position: relative;
}
.jung-say-block{
  display: flex;
  justify-content: space-evenly;
  width: 200%;
  transition: 1s;
}
#two:checked ~ .jung-say-block{
  margin-left: -100%;
}
 .jung-say-block .jung-say-blocks{
  width: calc(100% / 1 - 10px);
  display: flex;
  flex-wrap: wrap;
  margin: 0 19px;
  justify-content: space-between;
}
.jung-say-block .jung-say-blocks .jung-say-box{
  width: calc(100% / 4 - 10px);
  background: var(--rgb1);
  border-radius: 13px;
  padding: 25px;
  box-shadow: 0 5px 10px var(--color2);
  transition: all 0.5s ease;
}
.jung-say-block .jung-say-blocks .jung-say-box:hover{
  transform: translateY(-15px);
}
.jung-say-blocks .jung-say-box .jung-say-contents{
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.jung-say-blocks .jung-say-box .jung-say-contents .jung-say-img{
  height: 149px;
  width: 149px;
  border-radius: 50%;
  padding: 3px;
  background: var(--color2);
  margin-bottom:  13px;
}
.jung-say-box .jung-say-contents .jung-say-img img{
  height: 100%;
  width: 100%;
  border: 2px solid #ffff;
  border-radius: 50%;
  object-fit: cover;
}
.jung-say-box .jung-say-contents .jung-say-name{
  font-size: clamp(18px, 2.5vw, 20px);
  color: var(--color2);
  font-weight: 900;
  text-transform: uppercase;
}
.jung-say-name {
  color: #fff;
}
.jung-say-box .jung-say-contents .jung-say-tx{
  font-size: clamp(15px, 2.5vw, 17px);
  color: var(--white);
  font-weight: 400;
  font-style: italic;
}

 .jung-say-container .button{
  width: 100%;
  display: flex;
  justify-content: center;
  margin: 19px auto;
}
.jung-say-container .button label{
  height: 15px;
  width: 15px;
  border-radius: 19px;
  background: #fff;
  margin: 0 4px;
  cursor: pointer;
  transition: all 0.5s ease;
}
.jung-say-container.button label.active{
  width: 35px;
}

.jung-say-container input[type="radio"]{
  display: none !important;
}

.jung-say-container #three,
.jung-say-container #four{
  display: none;
}

.jung-say-container .three,
.jung-say-container .four{
  display: none;
}


.jing-ga{
  padding:  49px 17px;
  background: radial-gradient(circle, var(--color2) 0%, var(--color1) 100%);
  position: relative;
}

.jing-ga-Ovs{
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
}

.jing-ga-Ovs img{
  height: 316px;
  width: 100%;
  object-fit: contain;
}

.jing-ga-main {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  position: relative;
  padding: 48px 0;
  filter: drop-shadow(2px 4px 6px var(--color4));
  -webkit-filter: drop-shadow(2px 4px 6px var(--color4));
}

.jing-ga-list {
  flex-basis: calc((100% - 10px) / 2);
}

.jing-gas-img {
  width: 100%;
  height: 316px;
  margin: 2px;
  object-fit: cover;
  cursor: pointer;
}

.modal {
  display: none;
  background-color: var(--rgb1);
  position: fixed;
  z-index: 99;
  left: 0;
  top: 0;

  width: 100%;
  height: 100%;
}

.modal-item {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  max-width: 600px;
  max-height: 400px;
  width: 100%;
  height: 100%;
}

.modal-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.modal-close {
  width: 30px;
  height: 30px;
  position: absolute;
  right: 5px;
  top: -35px;
  cursor: pointer;
}

.modal-item svg path {
  stroke: var(--white);
}

.jing-gas-img:hover {
  transform: scale(1.01);
}

.jing-gas-img {
  transition: all 150ms ease-in-out;
}

.modal-image {
  transition: all 150ms ease-in-out;
}

@keyframes animation {
  from {
    opacity: 0.3;
  }
  to {
    opacity: 1;
  }
}

.modal-image {
  animation: animation 0.2s ease-in-out;
}


.jung-st{
  padding:  49px 17px;
  position: relative;
  background: url(content/bg/bg-light-5684aee5c0b5f1.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.jung-st:after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  background: var(--rgb1);
}

.jung-st-Ovs{
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
}

.jung-st-Ovs img{
  height: 214px;
  width: 100%;
  object-fit: contain;
}

.jung-st-mcd{
  display: flex;
  align-items: center;
  flex-direction: row;
}

.jung-st-main, .jung-st-img-block{
  flex: 1;
  margin: 17px;
}

.jung-st-main{
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.jung-st-block{
  display: flex;
}

 .jung-st-box {
  display: flex;
  background: var(--rgb1);
  filter: drop-shadow(2px 4px 6px var(--color2));
  -webkit-filter: drop-shadow(2px 4px 6px var(--color2));
  padding: 17px;
  border-radius: 0px;
  align-items: center;
  gap: 7px;
}

.jung-st-img{
  width: 25%;
}

 .jung-st-box .jung-st-img img {
  object-fit: contain;
  width: 149px;
  height: 149px;
  display: block;
  margin: 0 auto;
  transition: 0.2s linear;
}

 .jung-st-box .jung-st-content {
  margin-top: 10px;
  width: 75%;
}

 .jung-st-box .jung-st-content h4  {
  font-size: clamp(15px, 2.5vw, 17px);
  color: var(--white);
  font-weight: 400;
  font-style: italic;
}

 .jung-st-box:hover .jung-st-img img {
  transform: rotateY(360deg) scale(1.1);
}

 .jung-st-box:hover .jung-st-content h4  {
  color: var(--color2);
}


.jung-st-img-block{
  position: relative;
  display: block;
  height: 433px;
  z-index: 1;
  filter: drop-shadow(2px 4px 6px var(--color4));
  -webkit-filter: drop-shadow(2px 4px 6px var(--color4));
}

.jung-st-img-block::after {
  content: "";
  position: absolute;
  top: -10px;
  right: -10px;
  height: 200px;
  width: 200px;
  background: var(--color1);
  z-index: -1;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.jung-st-img-block::before {
  content: "";
  position: absolute;
  bottom: -10px;
  left: -10px;
  height: 200px;
  width: 200px;
  background: var(--color1);
  z-index: -1;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}

.jung-st-img-block:hover::after {
  right: -15px;
  top: -15px;
  background: var(--color1);
}
.jung-st-img-block:hover::before {
  left: -15px;
  bottom: -15px;
  background: var(--color1);
}

.jung-st-img-block img {
  width: 100%;
  height: 100%;
  display: block;
  margin: 0 auto;
  position: relative;
  object-fit: cover;
}


.jung-otprav{
  position: relative;
  padding:  49px 17px;
  background: radial-gradient(circle, var(--color2) 0%, var(--color1) 100%);
  position: relative;
}

.jung-otprav-main{
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: row;
}

.jung-otprav-block, .jung-otprav-img{
  flex: 1;
  margin: 17px;
}


.jung-otprav-block{
  position: relative;
  background: url(content/bg/bg-light-6684aee5c0b64e.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  filter: drop-shadow(2px 4px 6px var(--color2));
  -webkit-filter: drop-shadow(2px 4px 6px var(--color2));
  width: 100%;
}

.jung-otprav-block:after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  background: var(--rgb1);
}

.jung-otprav-block .form{
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 18px;
  position: relative;
  z-index: 1;
}

.jung-otprav-block-fields label{
  color: var(--white);
}

.jung-otprav-block-fields .input-btnelement_component{
  display: block;
  width: 100%;
  padding: 10px 15px;
  height: 40px;
  border-radius: 10px;
  box-shadow: unset !important;
  color: var(--white);
  background-color: var(--color4);
  font-weight: 400;
  outline: none;
  border: 2px dashed var(--color2);
  margin: 15px 0;
}


.jung-otprav-block-fields .input-btnelement_component::placeholder, .jung-otprav-block-fields .textarea-btnelement_component::placeholder{
  color: var(--white);
}


.jung-otprav-block-fields  .textarea-btnelement_component{
  display: block;
  width: 100%;
  padding: 10px 15px;
  height: 40px;
  border-radius: 10px;
  box-shadow: unset !important;
  color: var(--white);
  background-color: var(--color4);
  font-weight: 400;
  outline: none;
  border: 2px dashed var(--color2);
  margin: 15px 0;
}


.jung-otprav-block-check{
  display: flex;
  gap: 15px;
  padding-top: 10px;
  color: var(--white);
}

.jung-otprav-block-check a{
  text-decoration: underline;
  color: var(--color2);
}

.jung-otprav-block-btn{
  display: inline-block;
  padding: 17px 0;
}

.jung-otprav-block-btn button{
  border: none;
}


.jung-otprav-img img{
  width: 100%;
  object-fit: contain;
  height: 433px;
}



.jung-niz{
  padding:  21px 17px;
  background: var(--color1);
}

.jung-niz .titleBlock{
  padding-bottom: 15px;
}

.jung-niz-main{
  display: flex;
  align-items: center;
  flex-direction: row;
}

.jung-niz-discla, .jung-niz-menu{
  flex: 1;
  margin: 17px;
}

.jung-niz-menu{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 17px;
}

.jung-niz-menu-inner{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.jung-niz-menu a img{
  width: 149px;
  height: 149px;
  object-fit: contain;
  filter: drop-shadow(2px 4px 6px var(--color2));
  -webkit-filter: drop-shadow(2px 4px 6px var(--color2));
}

.jung-niz-discla{
  background: var(--color2);
  padding: 18px;
  margin: 15px 0 0 0;
  border-radius: 0px;
}

.jung-niz-discla-text p{
  font-size: clamp(15px, 2.5vw, 17px);
  color: var(--white);
  font-weight: 400;
  font-style: italic;
  padding: 0;
}

.jung-niz-copyB{
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
  padding: 17px 0;
}

.jung-niz-info-pol{
  padding-top: 19px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.jung-niz-info-pol a, .jung-niz-menu-inner a{
  font-size: clamp(15px, 2.5vw, 17px);
  text-decoration: none;
  color: var(--white);
  padding: 10px 15px;
  transition: color .5s ease-in-out;
}

.jung-niz-info-pol a:hover, .jung-niz-menu-inner a:hover{
  color: var(--color2);
}

.jung-niz-copyB-title{
  display: flex;
  gap: 10px;
}

.jung-niz-discla-img img{
  object-fit: contain;
  width: 69px;
  height: 69px;
}

.jung-niz-copyB-title span{
  font-size: clamp(15px, 2.5vw, 16px);
  font-weight: 400 !important;
  color: var(--white) !important;
}

.jung-niz-copyB-title h2{
  font-size: clamp(15px, 2.5vw, 16px);
  font-weight: 900;
  color: var(--color2) !important;
}


.jung-AboutD{
  position: relative;
  padding:  49px 17px;
  background: radial-gradient(circle, var(--color2) 0%, var(--color1) 100%);
}

.jung-AboutD-cd{
  display: flex;
  flex-direction: column-reverse;
}

.jung-AboutD-main{
  display: flex;
  align-items: center;
  position: relative;
  flex-direction: row;
  padding-bottom: 17px;
}

.jung-AboutD-text,.jung-AboutD-image{
  flex: 1;
  margin: 17px;
}

.jung-AboutD-text p{
  font-size: clamp(15px, 2.5vw, 17px);
  color: var(--white);
  font-weight: 400;
}

.jung-AboutD-image img{
  width: 100%;
  object-fit: contain;
  height: 433px;
}

.jung-AboutD-video video {
  width: 100%;
  height: 433px;
  object-fit: cover;
}

.jungPlaySTwoV1, .jungPlayS1{
  position: relative;
  padding:  49px 17px;
  background: radial-gradient(circle, var(--color2) 0%, var(--color1) 100%);
}

.jungPlayS-mainT, .jungPlaySTwoV-mainT{
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 31px;
}

.jung-igra{
  position: relative;
  padding:  109px 17px;
  background: radial-gradient(circle, var(--color2) 0%, var(--color1) 100%);
}

.jung-igra-main {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column-reverse;
  gap: 48px;
  padding: 23px 0;
}

.jung-igra-main-inner{
  padding: 25px;
  border-radius: 0px;
}

.jung-igra-main-inner img{
  position: relative;
  z-index: 2;
  border-radius: 16px;
  width: 40%;
  margin: 48px;
}

.jung-igra-content {
  color: var(--white);
  font-size: clamp(15px,2.5vw,16px);
}

.jung-igra-fram {
  width: 100%;
  padding: 25px;
  border-radius: 0px;
}

.jung-igra-fram iframe{
  position: relative;
  z-index: 1;
  width: 100%;
  height: 633px;
}

.jung-getT{
  position: relative;
  padding:  49px 17px;
  background: radial-gradient(circle, var(--color2) 0%, var(--color1) 100%);
}


.jung-getT-bl{
  position: relative;
  background: url(content/bg/bg-light-6684aee5c0b64e.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  filter: drop-shadow(2px 4px 6px var(--color2));
  -webkit-filter: drop-shadow(2px 4px 6px var(--color2));
}

.jung-getT-bl:after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  background: var(--rgb1);
}

.jung-getT-form{
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 18px;
  position: relative;
  z-index: 1;
}

.jung-getT-field label{
  color: var(--white);
}

.jung-getT-field input{
  display: block;
  width: 100%;
  padding: 10px 15px;
  height: 40px;
  border-radius: 10px;
  box-shadow: unset !important;
  color: var(--white);
  background-color: var(--color4);
  font-weight: 400;
  outline: none;
  border: 2px dashed var(--color2);
  margin: 15px 0;
}


.jung-getT-field input::placeholder, .jung-getT-field textarea::placeholder{
  color: var(--white);
}


.jung-getT-field  textarea{
  display: block;
  width: 100%;
  padding: 10px 15px;
  height: 40px;
  border-radius: 10px;
  box-shadow: unset !important;
  color: var(--white);
  background-color: var(--color4);
  font-weight: 400;
  outline: none;
  border: 2px dashed var(--color2);
  margin: 15px 0;
}


.jung-getT-check{
  display: flex;
  gap: 15px;
  padding-top: 10px;
  color: var(--white);
}

.jung-getT-check a{
  text-decoration: underline;
  color: var(--color2);
}

.jung-getT-check-btn{
  display: inline-block;
  padding: 17px 0;
}

.jung-getT-check button{
  border: none;
}




.jung-getT-adres{
  padding:  49px 17px;
  position: relative;
  background: url(content/bg/bg-light-3684aee5c0b594.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.jung-getT-adres:after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  background: var(--rgb1);
}


.jung-getT-adres-main{
  display: flex;
  align-items: center;
  flex-direction: row;
  position: relative;
  z-index: 1;
}

.jung-getT-adres-block, .jung-getT-image{
  flex: 1;
  margin: 17px;
}

.jung-getT-adres-block{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 17px;
}

.jung-getT-adress svg{
  fill: var(--color2);
  width: 55;
  height: 55;
  filter: drop-shadow(2px 4px 6px var(--color4));
  -webkit-filter: drop-shadow(2px 4px 6px var(--color4));
}

.jung-getT-adres-content div, .jung-getT-adres-content a{
  font-size: clamp(15px, 2.5vw, 17px);
  color: var(--white);
  font-weight: 900;
  font-style: italic;
  transition: .5s;
  word-break: break-all;
}

.jung-getT-adres-content a:hover{
  color: var(--color2);
}

.jung-getT-adres-colum{
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.jung-getT-image img{
  width: 100%;
  object-fit: contain;
  height: 433px;
}

.jung-getT-adress{
  width: 100%;
  background: var(--rgb1);
  filter: drop-shadow(2px 4px 6px var(--color2));
  -webkit-filter: drop-shadow(2px 4px 6px var(--color2));
  padding: 18px;
  border-radius: 0px;
}

.jung-getT-adress-chTwo{
  display: flex;
  width: 100%;
  gap: 15px;
}

.chTone, .chTwo{
  flex: 1;
  background: var(--rgb1);
  filter: drop-shadow(2px 4px 6px var(--color2));
  -webkit-filter: drop-shadow(2px 4px 6px var(--color2));
  padding: 18px;
  border-radius: 0px;
}


.jung-posmotr{
  padding: 98px 98px;
  color: var(--white);
  overflow: hidden;
  position: relative;
  background: radial-gradient(circle, var(--color2) 0%, var(--color1) 100%);
}

.jung-posmotr-main{
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 49px;
  position: relative;
}

.jung-posmotr h1.jung-posmotr-title{
  font-size: clamp(22px,5vw,35px);
  line-height: 40px;
  font-weight: 900;
  color: var(--color1);
  margin-top: -10px;
  margin-bottom: 16px;
  text-transform: capitalize;
  filter: drop-shadow(2px 4px 6px var(--white));
  -webkit-filter: drop-shadow(2px 4px 6px var(--white));
}

.jung-posmotr h1.jung-posmotr-title::after{
  content: "";
  background-image: url(content/assets/liana-0684aee5c0bbd9.svg);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  display: block;
  height: 15px;
  padding: 19px 0 0;
  margin: 17px auto 0;
}

.jung-posmotr h1,h2,h3{
    font-size: 19px;
    font-weight: 900;
    color: var(--white);
}

.jung-posmotr  a{
    text-decoration: underline;
    color: var(--white) !important;
    word-break: break-all;
}

.jung-posmotr ol li {
    color: var(--white) !important;
}

.jung-posmotr ul{
    list-style: disc !important;
    text-align: left;
    margin: 15px;
}


.button-1 {
  text-decoration: none;
  display: inline-block; 
  padding: 10px 17px;
  position: relative;
  border-radius: 0px;
  border: 2px solid var(--color1);
  color: var(--white);
  transition: .5s;
  background-color: var(--color2);
  }
  .button-1:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    margin: auto;
    border: 2px solid rgba(0, 0, 0, 0);
    transition: .5s;
  }
  .button-1:hover:after {
    border-color: var(--white);
    border: 2px solid;
    border-radius: 0px;
  }

  .button-2{
    display: inline-block;
    padding: 10px 15px;
    background: var(--color2);
    color: var(--white) !important;
    font-size: 17px;
    font-weight: 400;
    position: relative;
    overflow: hidden;
}

.button-2:before {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    content: "";
    display: inline-block;
    background: linear-gradient(to bottom,rgba(255,255,255,0) 0,rgba(255,255,255,1) 50%,rgba(255,255,255,0) 100%);
    transform: translate(0,100%);
    transition: all .6s ease-in-out;
    opacity: 0;
}

.button-2:hover:before {
    opacity: 1;
    transform: translate( 0,-100%);
}

.button-3 {
  padding: 17px 19px;
  border-radius: 51px;
  border: 0;
  background-color: var(--color1);
  color: var(--white);
  box-shadow: rgb(0 0 0 / 5%) 0 0 8px;
  font-size: 16px;
  transition: all .5s ease;
  border: 2px solid var(--color2);
  display: inline-block;
}

.button-3:hover {
  letter-spacing: 3px;
  background-color: var(--color2);
  color: hsl(0, 0%, 100%);
  box-shadow: var(--color2) 0px 7px 29px 0px;
}

.button-3:active {
  letter-spacing: 3px;
  background-color: var(--color2);
  color: hsl(0, 0%, 100%);
  box-shadow: var(--color2) 0px 7px 29px 0px;
  transform: translateY(10px);
  transition: 100ms;
}

.button-4 {
  background: var(--color2);
  border: 0;
  border-radius: 13px;
  color: var(--white);
  cursor: pointer;
  display: inline-block;
  font-size: 17px;
  font-weight: 400;
  outline: transparent;
  padding: 14px 5px;
  text-align: center;
  text-decoration: none;
  transition: box-shadow .2s ease-in-out;
  user-select: none;
  touch-action: manipulation;
}


.button-4:hover {
  color: var(--white);
  text-decoration: none;
  box-shadow: 0 0 15px var(--color2);
}

.button-5 {
  border: 1.5px solid var(--color2);
  padding: 14px;
  font-size:  16px;
  color: var(--white);
  background-color: var(--color1);
  box-shadow: 3px 3px 6px var(--color4);
  transition: transform 0.2s ease-in-out;
}

.button-5:hover {
  background-color: var(--color2);
  color: var(--white);
  transform: scale(1.2);
}
  


@media (max-width: 992px){
  .navig{
    flex-direction: column;
  }

  .navig ul {
      display: none;
  }
  .navig-toggler {
      display: inline-block;
  }
  .navigMob{
    display: block !important;
  }

  .jungHero-main{
    flex-direction: column !important;
  }

  .jungAbouts-main{
    flex-direction: column !important;
  }

  .jungAbouts-stat{
    flex-direction: column !important;
  }

  .jungPlayS-main{
    grid-template-columns: repeat(2,1fr) !important;
  }

  .jungPlaySTwoV-block .jungPlaySTwoV-overlay {
      visibility: visible;
      opacity: 1;
      transform: translate(-50%, -50%) scale(1) !important;
  }

  .jungPlaySTwoV-main, .jungPlayS-mainT, .jungPlaySTwoV-mainT{
    grid-template-columns: repeat(2,1fr) !important;
  }

  .jung-st-mcd{
    flex-direction: column !important;
  }

  .jung-st-img-block{
    flex: auto;
  }

  .jung-otprav-main{
    flex-direction: column !important;
  }

  .jung-niz-main{
    flex-direction: column !important;
  }

  .jung-AboutD-main{
    flex-direction: column !important;
  }

  .jung-getT-adres-main{
    flex-direction: column !important;
  }

  .jung-getT-adress-chTwo{
    flex-direction: column !important;
  }
}

@media (max-width: 768px){
  .jungPlayS-main{
    grid-template-columns: repeat(1,1fr) !important;
  }

  .jungPlaySTwoV-main, .jungPlayS-mainT, .jungPlaySTwoV-mainT{
    grid-template-columns: repeat(1,1fr) !important;
  }

  .jung-say-block .jung-say-blocks .jung-say-box{
    margin: 20px 0 10px 0;
    width: calc(100% / 4 - 10px);
  }

  .jung-igra-main-inner img{
    width: 100%;
    margin: 0;
    margin-bottom:  28px;
    height: auto;
  }

}

@media screen and (max-width: 620px) {
  .jing-ga-list {
    flex-basis: calc((100% - 10px) / 1);
  }

  .modal-item {
    max-width: 90%;
  }
}


@media (max-width: 600px){
      .jung-posmotr{
        padding: 49px 49px;
    }

    .jung-say-block {
      width: 400%; 
      transition: 1s;
    }
  
    #one:checked ~ .jung-say-block {
      margin-left: 0;
    }
    #two:checked ~ .jung-say-block {
      margin-left: -100%;
    }
    #three:checked ~ .jung-say-block {
      margin-left: -200%;
    }
    #four:checked ~ .jung-say-block {
      margin-left: -300%;
    }
  
    .jung-say-container #three,
    .jung-say-container #four {
      display: block;
    }
  
    .jung-say-container .three,
    .jung-say-container .four {
      display: block;
    }

    .jung-st-box{
      flex-direction: column !important;
    }

    .jung-st-img, .jung-st-content{
      width: 100% !important;
    }
    
   
}

@media (max-width: 575px){
          
    button{
        width: 100%;
    }
    
    .jungAbouts-img-inner{
      height: auto;
    }

    .jungAbouts-img-inner{
      aspect-ratio: 4 / 5;
    }

    .jungPlayS-box .jungPlayS-image{
      height: auto;
    }

    .jung-st-img-block{
      height: auto;
    }

    .jung-niz-menu{
      flex-direction: column !important;
    }

    .jung-AboutD-image img{
      height: auto;
    }

    .jung-AboutD-video video{
      height: auto;
    }

    .jung-otprav-img img{
      height: auto;
    }

    .jung-getT-image img{
      height: auto;
    }
   
}

