@import url('https://fonts.googleapis.com/css2?family=Gruppo&display=swap');


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

:root {


    --color1: #4DC0B5;
    --pink-2: #F66D9B;
    --indigo-3: #7886D7;

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

    --rgb1: rgb(92 18 83 / 50%);
  
    --path: path('M 0 0 C 100 200 100 100 100 200 C 100 200 100 200 100 200 C 100 100 100 200 200 0 C 100 200 100 200 0 0');
    --path2: path('M 0 0 C 50 100 50 100 100 200 C 100 200 100 200 100 200 C 150 100 150 100 200 0 C 133.3333 0 66.6667 0 0 0');
    --path3: path('M 0 0 C 0 66.6667 0 133.3333 0 200 C 100 200 100 200 200 200 C 200 133.3333 200 66.6667 200 0 C 133.3333 0 66.6667 0 0 0');

    --disks1: #f56a3e;
  }


  
body{
    direction: ltr;
    font-family: 'Gruppo', sans-serif !important;
    font-size: 18px;
    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: 7px 0;
}

a {
  text-decoration: none;
}


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

.dkyVsegoTitla{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-bottom: 41px;
  position: relative;
  z-index: 1;
}

.dkyVsegoTitla h5{
  font-size: clamp( 22px,5vw,35px);
  line-height: 40px;
  font-weight: 900;
  color: var(--white);
  text-transform: capitalize;
  text-shadow: 5px 5px 5px var(--color4);
  animation: fadeIn 1.5s ease-out forwards;
}

@keyframes fadeIn {
  0% {
      opacity: 0;
  }
  100% {
      opacity: 1;
  }
}


.mobile-nav {
  background: #333;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  width: 100vw;
  height: 100vh;
  transform: translateY(100%);
  z-index: 999;
  transition: transform .3s ease-in .7s;
  display: none;
}
.mobile-open .mobile-nav {
  transform: translateY(0);
  transition: transform .3s ease-out;
}
.mobile-nav .links {
  width: 100%;
  height: 100%;
  text-align: center;
}
.mobile-nav .links a {
  position: absolute;
  left: 50%;
  color: #FFF;
  font-size: clamp(15px,2.5vw,17px);
}
.mobile-nav .links a:nth-child(1) {
  transform: translate(-50%, 30vh);
}
.mobile-nav .links a:nth-child(2) {
  transform: translate(-50%, 40vh);
}
.mobile-nav .links a:nth-child(3) {
  transform: translate(-50%, 50vh);
}
.mobile-nav .links a:nth-child(4) {
  transform: translate(-50%, 60vh);
}
nav {
  position: fixed;
  width: 100%;
  background: #F1F5F8;
  padding: 18px;
  border-bottom: solid  2px #CCC;
  z-index: 9999;
}
nav .container {
  display: flex;
  position: relative;
  flex-direction: row-reverse;
  width: 100%;
}

.na-logo{
  flex: 1;
  display: flex;
  justify-content: space-around;
}

.na-logo a{
  display: flex;
  align-items: center;
  gap: 7px;
}

.na-logo img{
  width: 55px;
  height: 55px;
}

.na-logo h2{
  font-size: clamp(17px,2.5vw,18px);
  font-weight: 900;
  color: var(--color4);
  transition: .5s ease-in-out;
}


.na-logo h2:hover {
  transition: .5s ease-in-out;
  color: var(--color1);
}

nav .burger {
  position: absolute;
  right: 0;
  top: calc(50% - 15px);
  height: 30px;
  width: 35px;
  cursor: pointer;
  display: none;
}
nav .burger .menu, nav .burger .close {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
nav .burger .menu {
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
nav .burger .close {
  z-index: 1;
}
nav .burger .line {
  height: 3px;
  transform-origin: right;
  background: #222;
  margin-top: 5px;
}
nav .burger .close .line {
  transform-origin: center;
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  opacity: 0;
  transition: all .4s ease-in;
}
.mobile-open nav .burger .close .line:first-child {
  transform: rotate(225deg);
  opacity: 1;
  transition: all .6s ease-in 1s;
}
.mobile-open nav .burger .close .line:last-child {
  transform: rotate(-225deg);
  opacity: 1;
  transition: all .6s ease-in 1s;
}
nav .burger .menu .line:nth-child(1) {
  background: var(--color1);
  animation: 1s ease-out backwards returnLine1;
}
.mobile-open .burger .menu .line:nth-child(1) {
  animation: .8s ease-in forwards moveLine1;
}
nav .burger .menu .line:nth-child(2) {
  background: var(--color1);
  animation: 1s ease-out .2s backwards returnLine2;
}
.mobile-open .burger .menu .line:nth-child(2) {
  animation: .8s ease-in .15s forwards moveLine2;
}
nav .burger .menu .line:nth-child(3) {
  background: var(--color1);
  animation: 1s ease-out .4s backwards returnLine3;
}
.mobile-open .burger .menu .line:nth-child(3) {
  animation: .8s ease-in .3s forwards moveLine3;
}
nav .burger .menu .line:nth-child(4) {
  background: var(--color1);
  animation: 1s ease-out .6s backwards returnLine4;
}
.mobile-open .burger .menu .line:nth-child(4) {
  animation: .8s ease-in .45s forwards moveLine4;
}
.na-anim nav .burger .line {
  animation: none !important;
}
nav .links {
  flex: 1;
  display: flex;
  justify-content: space-around;
  gap: 14px;
}
.link {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
.link a {
  display: block;
  font-size: clamp(17px, 2.5vw, 18px);
  transition: color .25s ease-out;
  color: var(--color4);
  font-weight:  900;
}
.link .underline {
  width: 100%;
  display: flex;
  position: absolute;
  bottom: 5px;
}
.link .underline .part {
  height: 4px;
  flex: 0 0 25%;
  transform: translateY(20px);
  opacity: 0;
  transition: all .2s ease-out;
}
.underline .part:nth-child(1) {
  transition-delay: 0s;
}
.underline .part:nth-child(2) {
  transition-delay: .075s;
}
.underline .part:nth-child(3) {
  transition-delay: .15s;
}
.underline .part:nth-child(4) {
  transition-delay: .225s;
}

.link.teal .part:nth-child(1) {
  background: var(--color1);
}
.link.teal .part:nth-child(2) {
  background: linear-gradient(90deg, var(--color1), var(--color1));
}
.link.teal .part:nth-child(3) {
  background: linear-gradient(90deg, var(--color1), var(--color1));
}
.link.teal .part:nth-child(4) {
  background: linear-gradient(90deg, var(--color1), var(--color1));
}


.link.teal a:hover {
  color: var(--color1);
}

.link a:hover + .underline .part {
  opacity: 1;
  transform: translateY(0);
}


@keyframes moveLine1 {
  5% {
    transform: translate(0, -3px) rotate(0deg);
  }
  60% {
    transform: translate(-4vw, 27vh) rotate(180deg);
  }
  100% {
    transform: translate(calc(1rem - 50vw), calc(30vh + 4px)) rotate(180deg);
    background: var(--color1);
  }
}

@keyframes moveLine2 {
  5% {
    transform: translate(0, -3px) rotate(0deg);
  }
  60% {
    transform: translate(-4vw, 37vh) rotate(180deg);
  }
  100% {
    transform: translate(calc(1rem - 50vw), calc(40vh - 4px)) rotate(180deg);
    background: var(--color1);
  }
}

@keyframes moveLine3 {
  5% {
    transform: translate(0, -3px) rotate(0deg);
  }
  60% {
    transform: translate(-4vw, 47vh) rotate(180deg);
  }
  100% {
    transform: translate(calc(1rem - 50vw), calc(50vh - 12px)) rotate(180deg);
    background: var(--color1);
  }
}

@keyframes moveLine4 {
  5% {
    transform: translate(0, -3px) rotate(0deg);
  }
  60% {
    transform: translate(-4vw, 57vh) rotate(180deg);
  }
  100% {
    transform: translate(calc(1rem - 50vw), calc(60vh - 20px)) rotate(180deg);
    background: var(--color1);
  }
}

@keyframes returnLine1 {
  0% {
    transform: translate(calc(3.2rem - 50vw), calc(30vh + 4px));
    background: var(--color1);
  }
  5% {
    transform: translate(calc(3rem - 50vw), calc(30vh + 4px));
  }
  40% {
    transform: translate(20vw, calc(30vh + 4px));
  }
  60% {
    transform: translate(20vw, 0);
    background: var(--color1);
  }
}

@keyframes returnLine2 {
  0% {
    transform: translate(calc(3.2rem - 50vw), calc(40vh - 4px));
    background: var(--color1);
  }
  5% {
    transform: translate(calc(3rem - 50vw), calc(40vh - 4px));
  }
  40% {
    transform: translate(20vw, calc(40vh - 4px));
  }
  60% {
    transform: translate(20vw, 0);
    background: var(--color1);
  }
}

@keyframes returnLine3 {
  0% {
    transform: translate(calc(3.2rem - 50vw), calc(50vh - 12px));
    background: var(--color1);
  }
  5% {
    transform: translate(calc(3rem - 50vw), calc(50vh - 12px));
  }
  40% {
    transform: translate(20vw, calc(50vh - 12px));
  }
  60% {
    transform: translate(20vw, 0);
    background: var(--color1);
  }
}

@keyframes returnLine4 {
  0% {
    transform: translate(calc(3.2rem - 50vw), calc(60vh - 20px));
    background: var(--color1);
  }
  5% {
    transform: translate(calc(3rem - 50vw), calc(60vh - 20px));
  }
  40% {
    transform: translate(20vw, calc(60vh - 20px));
  }
  60% {
    transform: translate(20vw, 0);
    background: var(--color1);
  }
}



.fru-h{
  padding: 132px 18px;
  background: url(artisticstorage/dir-bg/bg-all-0688a298e3ab5a.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  position: relative;
  overflow: hidden;
}

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

.fru-h-main{
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
  flex-direction: row-reverse;
}

.fru-h-block-text, .fru-h-block2{
  margin: 18px;
}

.fru-h-block-text{
  flex: 2;
}

.fru-h-block2{
  flex: 1;
}


.fru-h-block-text{
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.fru-h-block-text h4{
  font-size: clamp(22px, 5vw, 35px);
  text-shadow: var(--color1) 3px 2px 5px, var(--color1) 3px 2px 5px, var(--color1) 3px 2px 5px;
  color: var(--white);
  display: flex;
  flex-direction: column-reverse;
}

.fru-h-block2{
  position: relative;
  width: 100%;
}

.fru-h-block2 img:nth-child(1){
  position: absolute;
  border-top-left-radius: 50px;
  bottom: 0;
  right: 0;
  width: 15rem;
  height: 10rem;
  filter: drop-shadow(2px 4px 20px var(--color1));
  -webkit-filter: drop-shadow(2px 4px 20px var(--color1));
  z-index: 1;
  animation: up-down linear 4s;
  animation-iteration-count: infinite;
  transform-origin: 50% 50%;
}

@keyframes up-down{
  0% {
    transform:  translate(1px,20px);
  }
  24% {
    transform:  translate(1px,30px);
  }
  50% {
    transform:  translate(1px,12px);
  }
  74% {
    transform:  translate(1px,22px);
  }
  100% {
    transform:  translate(1px,22px);
  }
}


.fru-h-block2 img{
  border-top-right-radius: 100px;
  border-bottom-left-radius: 100px;
  object-fit: cover;
  width: 100%;
  height: 300px;
  filter: drop-shadow(2px 4px 20px var(--color1));
  -webkit-filter: drop-shadow(2px 4px 20px var(--color1));
}

.fru-h-btn{
  padding-top:  19px;
}


.fru-ons{
  position: relative;
  overflow: hidden;
  padding:  41px 18px;
  background: url(artisticstorage/dir-bg/opacity_bg-0688a298e3ac0c.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-color: var(--rgb1);
  border-top: 2px solid var(--color4);
  border-bottom: 2px solid var(--color4);
}


.fru-ons-main{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row-reverse;
}

.fru-ons-text, .fru-ons-block-img{
  flex: 1;
  margin: 18px;
}
.fru-ons-text{
 color: var(--white);
 font-size: clamp(15px, 2.5vw, 17px);
  font-weight: 700;
}

.fru-ons-text p{ 
  text-indent: 2ch;
}
.fru-ons-text ul li,
.fru-ons-text ol li {
  margin-bottom: 5px;
}
.fru-ons-text ul,
.fru-ons-text ol {
  margin-bottom: 13px;
  padding-left:  19px;
  list-style: inside;
}
.fru-ons-text a,.fru-ons-text table{
color: inherit;
}

@property --bP {
  syntax: "<length>";
  inherits: false;
  initial-value: 0px;
}
@property --tY {
  syntax: "<length>";
  inherits: false;
  initial-value: 0px;
}
@property --rLeft {
  syntax: "<angle>";
  inherits: false;
  initial-value: 45deg;
}
@property --rRight {
  syntax: "<angle>";
  inherits: false;
  initial-value: -45deg;
}

.fru-ons-block-img {
  width: 100%;
  max-width: calc(200px * sqrt(9));
  display: grid;
  place-items: center;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: calc(100px * sqrt(1));
  margin: auto;
}

.fru-ons-boxI {
  position: relative;
  width: 200px;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(2px 4px 20px var(--color1));
  -webkit-filter: drop-shadow(2px 4px 20px var(--color1));
}

.fru-ons-boxI img {
  animation: image 1.4s linear infinite alternate;
}

.fri-ons-innerI {
  position: absolute;
  width: 200px;
  aspect-ratio: 1;
  display: block;
  transform: rotate(-45deg);
}

.fri-ons-innerI::before,
.fri-ons-innerI::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
  transform-origin: bottom left;
}

.fri-ons-innerI::before {
  transform: rotate(var(--rLeft));
  background: var(--color1);
  clip-path: path('M 200 0 L 0 0 L 0 200');
  animation: openLeft 1.4s linear infinite alternate;
}

.fri-ons-innerI::after {
  transform: rotate(var(--rRight));
  background: var(--color1);
  clip-path: path('M 200 0 L 200 200 L 0 200');
  animation: openRight 1.4s linear infinite alternate;
}

.fri-ons-innerI img {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 100%;
  height: 0%;
  object-fit: contain;
  clip-path: var(--path);
  transform: rotate(45deg) translateY(var(--tY));
  filter: drop-shadow(2px 4px 20px var(--color1));
  -webkit-filter: drop-shadow(2px 4px 20px var(--color1));
}

@keyframes glow {
  0% {
    --bP: -200px;
  }
  5% {
    --bP: 0px;
  }
  10% {
    --bP: 200px;
  }
  100% {
    --bP: 200px;
  }
}

@keyframes openLeft {
  0% {
    --rLeft: 0deg;
    animation-timing-function: ease-out;
  }
  20% {
    --rLeft: -45deg;
    animation-timing-function: ease-in;
  }
  40% {
    --rLeft: -40deg;
    animation-timing-function: ease-out;
  }
  100% {
    --rLeft: -45deg;
    animation-timing-function: ease-in;
  }
}

@keyframes openRight {
  0% {
    --rRight: 0deg;
    animation-timing-function: ease-out;
  }
  20% {
    --rRight: 45deg;
    animation-timing-function: ease-in;
  }
  40% {
    --rRight: 40deg;
    animation-timing-function: ease-out;
  }
  100% {
    --rRight: 45deg;
    animation-timing-function: ease-in;
  }
}

@keyframes image {
  0% {
    height: 0%;
    --tY: 0px;
    clip-path: var(--path);
  }
  50% {
    height: 100%;
    clip-path: var(--path2);
  }
  90%, 100% {
    height: 100%;
    --tY: -80px;
    clip-path: var(--path3);
  }
}

@keyframes imageout {
  0% {
    height: 100%;
    --tY: -80px;
    clip-path: var(--path3);
  }
  30% {
    height: 100%;
    clip-path: var(--path2);
  }
  90%, 100% {
    height: 0%;
    --tY: 0px;
    clip-path: var(--path);
  }
}

.fru-hwp{
  padding:  41px 18px;
  background: url(artisticstorage/dir-bg/bg-all-0688a298e3ab5a.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  position: relative;
  overflow: hidden;
}

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


.fru-hwp-main{
  display: flex;
  flex-direction: column;
  gap:  30px;
  counter-reset: fru-hwp;
}


.fru-hwp-block {
  width: 65%;
  margin: 0 auto;
  position: relative;
}


.fru-hwp-block:nth-child(1):after {
  content: '';
  position: absolute;
  background-image: url(artisticstorage/vector/vitamins-mag-0688a298e3aea5.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 61px;
  height: 61px;
  top: 0%;
  left: 105%;
  z-index: 1;
  transform: translate(-15%, 0%);
  animation: image 1.4s linear infinite alternate;
}

.fru-hwp-block:nth-child(2):after {
  content: '';
  position: absolute;
  background-image: url(artisticstorage/vector/vitamins-mag-1688a298e3aec7.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 61px;
  height: 61px;
  top: 0%;
  left: 105%;
  z-index: 1;
  transform: translate(-15%, 0%);
  animation: image 1.4s linear infinite alternate;
}

.fru-hwp-block:nth-child(3):after {
  content: '';
  position: absolute;
  background-image: url(artisticstorage/vector/vitamins-mag-2688a298e3aee8.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 61px;
  height: 61px;
  top: 0%;
  left: 105%;
  z-index: 1;
  transform: translate(-15%, 0%);
  animation: image 1.4s linear infinite alternate;
}

.fru-hwp-block:nth-child(4):after {
  content: '';
  position: absolute;
  background-image: url(artisticstorage/vector/vitamins-mag-3688a298e3af09.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 61px;
  height: 61px;
  top: 0%;
  left: 105%;
  z-index: 1;
  transform: translate(-15%, 0%);
  animation: image 1.4s linear infinite alternate;
}

.fru-hwp-block p {
	position: relative;
  padding:  19px 13px;
  background: var(--color1);
  font-size: clamp(15px, 2.5vw, 17px);
  color: var(--white);
  font-weight:  700;
  counter-increment: fru-hwp;
  box-shadow: 0 1px 1px rgba(51, 51, 51, 0.72);
}


.fru-hwp-block p::before,
.fru-hwp-block p::after {
  transition: all .3s ease-out;
}
.fru-hwp-block p::before {
	content: counter(fru-hwp);
  position: absolute;
  top: 50%;
   transform: translateY(-50%);
  left: -20%;
  color: #fdfafa;
  font-size: 1.5em;
  background: var(--color1);
  width:  50px;
  height:  50px;
  line-height: 50px;
  text-align: center;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  filter: drop-shadow(2px 4px 6px var(--color4));
  -webkit-filter: drop-shadow(2px 4px 6px var(--color4));
}

.fru-hwp-block p::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 20%;
  height: 7px;
  background: var(--color1);
  right: 100%;
}



.fru-hwp-block p:hover::after {
  width: 10%;
}

.fru-hwp-block p:hover::before {
  left: -10%;
}


.fru-gms{
  position: relative;
  overflow: hidden;
  padding:  41px 18px;
  background: url(artisticstorage/dir-bg/opacity_bg-0688a298e3ac0c.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-color: var(--rgb1);
  border-top:2px solid var(--color4);
  border-bottom:2px solid var(--color4);
}

.fru-gms-main{
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap:  30px;
}

.fru-gms-block{
  position: relative;
  transition: 0.5s ease-in-out;
  filter: drop-shadow(2px 4px 15px var(--color1));
  -webkit-filter: drop-shadow(2px 4px 15px var(--color1));
}

.fru-gms-block img{
  width: 100%;
  object-fit: cover;
  height: 400px;
  border-radius: 48% 52% 0% 100% / 100% 100% 0% 0%;
}

.fru-gms-content{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom:  19px;
  z-index: 2;
}

.fru-gms-content a{
  font-size: clamp( 18px, 5vw, 22px);
  color: var(--white);
  filter: drop-shadow(2px 4px 6px var(--color4));
  -webkit-filter: drop-shadow(2px 4px 6px var(--color4));
}


.fru-gms-box {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: scaleX(-1);
  z-index: 1;
}

.fru-gms-box svg {
  position: relative;
    display: block;
    height:  134px;
}

.fru-gms-box .shape-fill {
  fill: var(--color1);;
}

.fru-gms-overlay{
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  object-fit: cover;
  height: 300px;
  opacity: 0;
  transition: 0.5s ease-in-out;
  z-index: 0;
  display: flex;
  flex-direction: column;
  border-radius: 48% 52% 0% 100% / 100% 100% 0% 0%;
}

.fru-gms-block:hover .fru-gms-overlay{
  opacity:0.8;
  background-color: var(--rgb1);
}
 

.fru-gms-overlay a{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: relative;
  top: 50%;
  width: max-content;
  margin: 0 auto;
}


.fru-gmsV2{
  position: relative;
  padding:  41px 18px;
  background: url(artisticstorage/dir-bg/opacity_bg-0688a298e3ac0c.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-color: var(--rgb1);
  border-top:  2px solid var(--color4);
  border-bottom:  2px solid var(--color4);
}

.fru-gmsV2-main{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap:  30px;
  position: relative;
}


 .fru-gmsV2-block {
  height: 300px;
  transition: background-color 0.25s ease;
  filter: drop-shadow(2px 4px 20px var(--color1));
  -webkit-filter: drop-shadow(2px 4px 20px var(--color1));
}


 .fru-gmsV2-block .fru-gmsV2-inner {
  position: relative;
  width: 100%;
  height: 300px;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  transition: transform 0.25s ease;
}

.fru-gmsV2-inner:hover .fru-gmsV2-inner {
  transform: translateX(-50%) translateY(-50%);
}

 .fru-gmsV2-block .fru-gmsV2-inner img {
  width: 100%;
  height: 100%;
  transition: transform 0.25s ease;
  object-fit: cover;
  border-radius: 48% 52% 44% 56% / 53% 50% 50% 47%;
}


 .fru-gmsV2-block .fru-gmsV2-inner .fru-gmsV2-title {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}
 .fru-gmsV2-block .fru-gmsV2-inner .transparent-back {
  position: absolute;
  background-color: #000000;
  width: 100%;
  height: 100%;
  top: 50%;
  left: 50%;
  opacity: 0;
  transform: translateX(-50%) translateY(-50%);
  border-radius: 48% 52% 44% 56% / 53% 50% 50% 47%;
}
 .fru-gmsV2-block .fru-gmsV2-inner:hover .transparent-back {
  opacity: 0;
  animation: 0.25s fade-back forwards ease;
}
@keyframes fade-back {
  0% { opacity: 0; }
  100% { opacity: 0.5; }
}
.fru-gmsV2-title .fru-gmsV2-text  a h2 {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100%;
  font-size: clamp(18px, 5vw, 22px);
  color: var(--white);
  filter: drop-shadow(2px 4px 6px var(--color4));
  -webkit-filter: drop-shadow(2px 4px 6px var(--color4));
  pointer-events: none;
  transform: translateX(-50%) translateY(-500%);
  color: #ffffff;
  opacity: 0;
  text-align: center;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.fru-gmsV2-inner:hover .fru-gmsV2-title .fru-gmsV2-text  a h2 {
  transform: translateX(-50%) translateY(-60%);
  opacity: 1;
}

.fru-gmsV2-inner:hover .fru-gmsV2-btn{
  opacity: 1;
}

.fru-gmsV2-btn{
  position: absolute;
  opacity: 0;
  left: 50%;
  top: 70%;
  width: 100%;
  display: flex;
  justify-content: center;
  transform: translateX(-50%) translateY(-60%);
}



.fru-bnfa{
  padding:  41px 18px;
  background: url(artisticstorage/dir-bg/bg-all-0688a298e3ab5a.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  position: relative;
  overflow: hidden;
}

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


.fru-bnfa-main{
  position: relative;
}

.fru-bnfa-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 19px;
  gap: 19px;
  box-shadow: 2px 2px 14px var(--color4);
  backdrop-filter: brightness(0.5);
  filter: drop-shadow(2px 4px 2px var(--color1));
  padding: 19px 0;
}

.fru-bnfa-img-right {
  flex-direction: row-reverse;
}

  .fru-bnfa-image {
    position: relative;
    height: 134px;
    width: 173px;
    margin: 0 14px;
    clip-path: polygon(0% 100%, 50% 0%, 100% 100%);
    filter: drop-shadow(2px 0px 10px var(--color1));
    -webkit-filter: drop-shadow(2px 0px 10px var(--color1));
  }


  @keyframes rota{
    0%{
      clip-path: polygon(100% 100%, 0% 100%, 50% 0%);
    }

    50%{
      clip-path: polygon(0% 100%, 50% 0%, 100% 100%);
    }

    100%{
      clip-path: polygon(100% 100%, 0% 100%, 50% 0%);
    }
  }

  .fru-bnfa-image img {
    width: 100%;
    position: relative;
    height: 100%;
    z-index: 1;
    transition: 0.5s ease;
    clip-path: polygon(100% 100%, 0% 100%, 50% 0%);
    object-fit: cover;  
    animation: rota linear 4s;
    animation-iteration-count: infinite;
  }

  .fru-bnfa-description {
    margin: 0 14px;
    font-size: clamp(15px, 2.5vw, 17px);
    color: var(--white);
    font-weight: 700;
  }



  .fru-galers{
    position: relative;
    overflow: hidden;
    padding:  41px 18px;
    background: url(artisticstorage/dir-bg/opacity_bg-0688a298e3ac0c.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-color: var(--rgb1);
    border-top: 2px solid var(--color4);
    border-bottom: 2px solid var(--color4);
  }

  .fru-galers-block, .fru-galers-block2{
    flex: 1;
    margin:  19px;
    width: 100%;
  }

  .fru-galers-block2{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap:  30px;
  }

  .fru-galers-main {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    border-radius: 7px;
    margin: auto;
    box-shadow: 2px 2px 14px var(--color4);
    backdrop-filter: brightness(0.5);
    filter: drop-shadow(2px 4px 2px var(--color1));
    padding: 14px;
  }

  #fru-galers-current {
    border-radius: 5px;
    width: 100%;
    height: 508px;
    margin: auto;
    object-fit: cover;
  }

  .fru-galers-img {
    border-radius: 5px;
    width: 100%;
    height: 134px;
    margin: auto;
    display: inline-block;
    object-fit: cover;
    cursor: pointer;
  }


  .fru-acco{
    position: relative;
    overflow: hidden;
    padding:  41px 18px;
    background: url(artisticstorage/dir-bg/opacity_bg-0688a298e3ac0c.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-color: var(--rgb1);
    border-top:  2px solid var(--color4);
    border-bottom:  2px solid var(--color4);
  }

  .fru-acco-main{
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
  }
  .fru-ons-btn{
    margin-bottom: 19px;
  }

  .fru-acco-block, .fru-aco-video{
    flex: 1;
    margin: 19px;
  }


  .fru-aco-video video {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 48% 52% 0% 100% / 100% 100% 0% 0%;
    filter: drop-shadow(2px 4px 15px var(--color1));
    -webkit-filter: drop-shadow(2px 4px 15px var(--color1));
  }

 

  .fru-acco-box {
    margin-bottom: 18px;
    overflow: hidden;
    transition: border-color .5s ease;
    box-shadow: 2px 2px 14px var(--color4);
    backdrop-filter: brightness(0.5);
    -webkit-backdrop-filter: brightness(0.5);
  }
  
 
  
  .fru-acco-box__header {
    cursor: pointer;
    font-weight: 700;
    font-size: clamp(16px, 2.5vw, 18px);
    display: flex;
    align-items: center;
    position: relative;
    padding: 17px;
    color: var(--white);
  
  }

  .fru-acco-box__header:after {
    transform: rotate(90deg);
  }
  
  .fru-acco-box:has(input:checked) .fru-acco-box__header {
    color: var(--white);
  }
  
  .fru-acco-box__content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
  }
  
  .fru-acco-box input {
    display: none;
  }
  
  .fru-acco-box:has(input:checked) {
    color: var(--color1);
  }
  
  .fru-acco-box input:checked ~ .fru-acco-box__header:before {
      transform: rotate(270deg) !important;
      background-color: var(--color1);
   }
  
  .fru-acco-box input:checked ~ .fru-acco-box__header:after {
      transform: rotate(270deg) !important;
      background-color: var(--color1);
   }
  
  .fru-acco-box input:checked ~ .fru-acco-box__content {
      max-height: 1000px; 
  }

  .fru-acco-box__content p{
    padding: 14px;
    font-size: clamp(15px, 2.5vw, 16px);
  }
  


  .fru-frms{
    position: relative;
    overflow: hidden;
    padding:  41px 18px;
    background: url(artisticstorage/dir-bg/opacity_bg-5688a298e3ac3c.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-color: rgb(1 1 1 / 90%);
    border-top:  2px solid var(--color4);
    border-bottom:  2px solid var(--color4);
  }


  .fru-frms-main{
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
  }

  .fru-frms-block, .fru-frms-img{
    flex: 1;
    margin: 19px;
    width: 100%;
  }

  .fru-frms-block{
    box-shadow: 2px 2px 14px var(--color4);
    backdrop-filter: brightness(0.5);
    -webkit-backdrop-filter: brightness(0.5);
    padding: 14px;
    filter: drop-shadow(2px 4px 6px var(--color1));
    -webkit-filter: drop-shadow(2px 4px 6px var(--color1));
  }

  .fru-frms-block-fields{
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .fru-frms-block-fields label{
    color: var(--white);
  }
  
  .fru-frms-block-fields .input-btnlayout__control{
    height: 43px;
    outline: none;
    border: 2px solid var(--color1);
    background: transparent;
    padding: 19px 7px;
    border-radius: 4px;
    transition: .5s;
    color: white;
    font-size:  18px;
  }
  
  
  .fru-frms-block-fields .input-btnlayout__control::placeholder, .fru-frms-block-fields .textarea-btnlayout__control::placeholder{
    color: var(--white);
  }

  .fru-frms-block-fields .input-btnlayout__control:focus, .fru-frms-block-fields .textarea-btnlayout__control:focus  {
    background: var(--color1);
  }
  
  
  .fru-frms-block-fields  .textarea-btnlayout__control{
    height: auto;
    outline: none;
    border:  2px solid var(--color1);
    background: transparent;
    padding: 14px;
    border-radius: 4px;
    transition: .5s;
    color: white;
    font-size: 18pxpx;
  }
  
  
  .fru-frms-block-check{
    display: flex;
    gap: 14px;
    padding-top: 7px;
    color: var(--white);
  }
  
  .fru-frms-block-check a{
    text-decoration: underline;
    color: var(--color1);
  }
  
  .fru-frms-block-btn{
    display: inline-block;
    padding: 18px 0;
  }
  
  .fru-frms-block-btn button{
    border: none;
  }
  
  .fru-frms-img img{
    width: 100%;
    object-fit: contain;
    height: 300px;
    filter: drop-shadow(2px 4px  14px var(--color1));
    -webkit-filter: drop-shadow(2px 4px  14px var(--color1));
    animation: up-down linear 4s;
    animation-iteration-count: infinite;
  }



.fru-nz{
  padding:  25px 18px;
  backdrop-filter: brightness(0.5);
  background: url(artisticstorage/dir-bg/opacity_bg-5688a298e3ac3c.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-color: var(--rgb1);
}

.fru-nz .dkyVsegoTitla{
  padding-bottom:  14px;
}


.fru-nz-main{
  display: flex;
  align-items: center;
}

.fru-nz-links, .fru-nz-logo, .fru-nz-lnks{
  flex: 1;
  margin:  19px;
}

.fru-nz-discla{
  padding:  25px;
  background: var(--color1);
  border-radius: 5px;
  filter: drop-shadow(2px 4px 20px var(--color1));
  -webkit-filter: drop-shadow(2px 4px 20px var(--color1));
  margin-bottom: 20px;
}

.fru-nz-text div{
  font-size: clamp(15px, 2.5vw, 17px);
  color: var(--white);
  font-weight:  700;
}


.fru-nz-links, .fru-nz-lnks{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 7px;
}


.fru-nz-logo a{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap:  14px;
}

.fru-nz-links a, .fru-nz-logo h2, .fru-nz-lnks a{
  font-size: clamp(17px,2.5vw,18px);
  font-weight: 900;
  color: var(--white);
  transition: .5s ease-in-out;
}


.fru-nz-logo h2:hover, .fru-nz-links a:hover ,.fru-nz-lnks a:hover{
  transition: .5s ease-in-out;
  color: var(--color1);
}

.fru-nz-logo a img{
  width: 134px;
  height: 134px;
  object-fit: contain;
}

.fru-nz-img{
  display: flex;
  justify-content: center;
  padding-bottom:  7px;
}

.fru-nz-img img{
  width: 61px;
  height: 61px;
}



.pfru-nz-cop{
  padding: 14px 0;
}

.fru-nz-cop-text{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  color: var(--white);
}

.fru-nz-cop-text h2{
  color: var(--color1);
}

.fru-gmsDp{
  position: relative;
  padding:  41px 18px;
  background: url(artisticstorage/dir-bg/opacity_bg-0688a298e3ac0c.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-color: var(--rgb1);
  border-top: 2px solid var(--color4);
  border-bottom: 2px solid var(--color4);
}


.fru-gmsDpV2{
  position: relative;
  padding:  41px 18px;
  background: url(artisticstorage/dir-bg/opacity_bg-0688a298e3ac0c.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-color: var(--rgb1);
  border-top: 2px solid var(--color4);
  border-bottom: 2px solid var(--color4);
}



.fru-gms-mainDp{
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap:  30px;
}


.fru-gmsDpV2-main{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap:  30px;
  position: relative;
}



.fru-otdel-igr{
  position: relative;
  overflow: hidden;
  padding:  41px 18px;
  background: url(artisticstorage/dir-bg/opacity_bg-0688a298e3ac0c.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-color: var(--rgb1);
  border-top: 2px solid var(--color4);
  border-bottom: 2px solid var(--color4);
}

.fru-otdel-igr-main {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 44px;
  padding: 50px 0;
}

.fru-otdel-igr-main-inner{
  padding: 26px;
  border-radius: 5px;
  box-shadow: 2px 2px  14px var(--color4);
  backdrop-filter: brightness(0.5);
  -webkit-backdrop-filter: brightness(0.5);
}

.fru-otdel-igr-main-inner img{
  position: relative;
  z-index: 2;
  border-radius:  14px;
  width: 40%;
  margin: 49px;
  filter: drop-shadow(2px 4px 20px var(--color1));
  -webkit-filter: drop-shadow(2px 4px 20px var(--color1));
}

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

.fru-otdel-igr-fram {
  width: 100%;
  padding: 27px;
  border-radius: 5px;
}

.fru-otdel-igr-fram iframe{
  position: relative;
  z-index: 1;
  width: 100%;
  height: 708px;
  animation: blame ease-out 5s infinite;
}


.fru-otdel-igr-box{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.fru-otdel-igr-rating svg{
  fill: var(--color1);
  width: 33px;
  height: 33px;
}

.fru-otdel-igr-st1 span{
  font-size: clamp(18px, 5vw, 22px);
    line-height: 40px;
    font-weight: 900;
    color: var(--white);
    text-shadow: 5px 5px 5px var(--color4);
}

.fru-otdel-igr-st2{
  display: flex;
  gap: 14px;
  text-shadow: 5px 5px 5px var(--color4);
}


.fru-otdel-igr-st2 span{
  font-size: clamp(15px, 5vw, 18px);
  font-weight:900;
  color: var(--white);
  text-transform: capitalize;
}

.fru-otdel-igr-st2 h2{
  font-size: clamp(15px, 5vw, 18px);
  font-weight: 900;
  color: var(--white);
}



.fru-getiT{
  position: relative;
  overflow: hidden;
  padding:  41px 18px;
  background: url(artisticstorage/dir-bg/opacity_bg-0688a298e3ac0c.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-color: var(--rgb1);
  border-top: 2px solid var(--color4);
  border-bottom: 2px solid var(--color4);
}


.fru-getiT-main{
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
}

.fru-getiT-block, .fru-getiT-img{
  flex: 1;
  margin:  19px;
  width: 100%;
}

.fru-getiT-block{
  box-shadow: 2px 2px 14px var(--color4);
  backdrop-filter: brightness(0.5);
  -webkit-backdrop-filter: brightness(0.5);
  padding: 14px;
  filter: drop-shadow(2px 4px 6px var(--color1));
  -webkit-filter: drop-shadow(2px 4px 6px var(--color1));
}

.fru-getiT-form{
  display: flex;
  flex-direction: column;
  gap:  19px;
}

.fru-getiT-field{
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.fru-getiT-field label{
  color: var(--white);
}

.fru-getiT-field input{
  height: 43px;
  outline: none;
  border: 2px solid var(--color1);
  background: transparent;
  padding: 19px 14px;
  border-radius: 4px;
  transition: .5s;
  color: white;
  font-size: 17px;
}


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

.fru-getiT-field input:focus, .fru-getiT-field textarea:focus  {
  background: var(--color1);
}


.fru-getiT-field textarea{
  height: auto;
  outline: none;
  border:2px solid var(--color1);
  background: transparent;
  padding: 19px 14px;
  border-radius: 4px;
  transition: .5s;
  color: white;
  font-size: 17px;
}


.fru-getiT-check{
  display: flex;
  gap: 14px;
  padding-top: 7px;
  color: var(--white);
}

.fru-getiT-check a{
  text-decoration: underline;
  color: var(--color1);
}

.fru-getiT-btn{
  display: inline-block;
  padding:  18px 0;
}

.fru-getiT-btn button{
  border: none;
}

.fru-getiT-img img{
  width: 100%;
  object-fit: contain;
  height: 300px;
  filter: drop-shadow(2px 4px 10px var(--color1));
  -webkit-filter: drop-shadow(2px 4px 10px var(--color1));
  animation: up-down linear 4s;
  animation-iteration-count: infinite;
}



.fru-getiT-adr{
  padding:  41px 18px;
  background: url(artisticstorage/dir-bg/bg-all-0688a298e3ab5a.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  position: relative;
  overflow: hidden;
  border-bottom: 2px solid var(--color4);
}

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

.fru-getiT-adres-main{
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
}

.fru-getiT-adres-image, .fru-getiT-ad-main-inner{
  flex: 1;
  margin: 19px;
}

.fru-getiT-ad-main-inner{
  display: flex;
  flex-direction: column;
  gap: 18px;
}


.fru-getiT-adress{
  box-shadow: 2px 2px 14px var(--color4);
  backdrop-filter: brightness(0.5);
  -webkit-backdrop-filter: brightness(0.5);
  padding: 14px;
  text-align: center;
}



.fru-getiT-adres-image img{
  width: 100%;
  object-fit: contain;
  height: 300px;
  filter: drop-shadow(2px 4px 10px var(--color1));
  -webkit-filter: drop-shadow(2px 4px 10px var(--color1));
  animation: up-down linear 4s;
  animation-iteration-count: infinite;
}



.fru-getiT-adres-content a, .fru-getiT-adres-content div{
  font-size: clamp(17px, 5vw, 19px);
  font-weight:900;
  color: var(--white);
  transition: .5s ease-in-out;
}

.fru-getiT-adres-content a:hover{
  color: var(--color1);
}




.fru-znan-pol{
  padding: 74px 74px;
  color: var(--white);
  overflow: hidden;
  position: relative;
  background: url(artisticstorage/dir-bg/opacity_bg-0688a298e3ac0c.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-color: var(--rgb1);
  border-top: 2px solid var(--color4);
  border-bottom: 2px solid var(--color4);
}

.fru-znan-pol-main{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-bottom: 41px;
  position: relat
}

.fru-znan-pol h1.fru-znan-pol-title{
  font-size: clamp(22px,5vw,35px);
  line-height: 40px;
  font-weight:900;
  color: var(--white);
  margin-top: -10px;
  margin-bottom: 18px;
  text-transform: capitalize;
}


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

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

.fru-znan-pol ol li {
    color: var(--white) !important;
}

.fru-znan-pol ul{
    list-style: disc !important;
    text-align: left;
    margin: 14px;
}


.policy-block{
word-break: break-word;
}
.policy-block ul li,
.policy-block ol li {
  margin-bottom: 5px;
}
.policy-block ul,
.policy-block ol {
  margin-bottom: 13px;
  padding-left:  19px;
  list-style: inside;
}
.policy-block a,.policy-block table{
color: inherit;
}
.policy-block p{
margin-bottom:  7px;
text-indent: 2ch;
}
.sectionFlexREw{
  display: flex;
  flex-direction:  column;
}

.button-1 {
  padding: 13px;
  font-size:  18px;
  color: var(--white);
  font-weight:700;
  transition: all .2s;
  position: relative;
  border: none;
  background: var(--color4);
  border-radius: 5px;
}

.button-1:before,.button:after {
  content: "";
  position: absolute;
  top: 50%;
  background: var(--rgb1);
  height: 108%;
  width: 0;
  z-index: -1;
  transition: all .7s;
  transform: translateY(-50%);
  border-radius: 5px;
}

.button-1:before {
  left: 0%;
}

.button-1:after {
  right: 0%;
}

.button-1:hover {
  color: var(--white);
  box-shadow: var(--color1) 0 30px 60px -12px inset,var(--color1) 0 18px 36px -18px inset;
  z-index: 2;
}

.button-1:hover::before {
  width: 100%;
}

.button-1:hover::after {
  width: 50%;
  right: 50%;
}

.button-2 {
  position: relative;
  padding: 18px;
  float: left;
  border-radius: 5px;
  font-size:  17px;
  color: var(--white);
  text-decoration: none;
  background-color: var(--color1);
  border: none;
  border-bottom: 2px solid var(--rgb1);
  text-shadow: 0px -2px var(--rgb1);
  transition: all 0.1s;
 }
 
 .button-2:hover, .button-2:active {
  transform: translate(0px,5px);
  border-bottom: 2px solid var(--color1);
 }

 .button-3 {
  padding: 18px;
  font-size: 17px;
  font-weight:700;
  color: var(--color4)!important;
  background-color: var(--white);
  border: none;
  border-radius: 5px;
  box-shadow: 0px 8px 13px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease 0s;
  cursor: pointer;
  outline: none;
}

.button-3:hover {
  background-color: var(--color1);
  box-shadow: 0px 13px 20px var(--rgb1);
  color:  var(--white);
  transform: translateY(-7px);
}

.button-3:active {
  transform: translateY(-1px);
}

.button-4 {
  position: relative;
  padding: 18px;
  border-radius: 5px;
  border: 2px solid var(--rgb1);
  font-size:  17px;
  font-weight: 700;
  background: var(--color1);
  color: var(--white);
  overflow: hidden;
  transition: all 0.2s ease-in;
}

.button-4:hover {
  background: var(--color1);
  box-shadow: 0 0 30px 5px var(--rgb1);
  transition: all 0.2s ease-out;
}

.button-4::before {
  content: '';
  display: block;
  width: 0px;
  height: 86%;
  position: absolute;
  top: 7%;
  left: 0%;
  opacity: 0;
  background: var(--white);
  box-shadow: 0 0 50px 30px var(--white);
  transform: skewX(-20deg);
}

.button-4:hover::before {
  animation: sh02 0.5s 0s linear;
}

.button-5 {
  border-radius: 5px;
  padding:18px;
  font-size: 17px;
  font-weight: 900;
  color: var(--white);
  background-color: var(--color1);
  display: inline-block;
  color: var(--white);
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease-in-out;
  z-index: 1;
}
.button-5:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}
.button-5:before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 100%;
  width: 100%;
  height: 100%;
  background-color: var(--rgb1);
  transition: all 0.6s;
  z-index: -1;
}
.button-5:hover {
  color: var(--white);
}
.button-5:hover:before {
  bottom: 0;
  left: 0;
}



@media (max-width: 992px) {
  .mobile-nav {
    display: initial;
  }
  nav {
    padding: 13px 27px;
  }
  nav .burger {
    display: flex;
  }
  nav .links {
    display: none;
  }

  .na-logo{
    justify-content: normal;
  }

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

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

  .fru-ons-block-img {
    margin-top: 100px;
  }

  .fru-hwp-block {
    width: 70%;
  }

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

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

  .fru-gms-mainDp{
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .fru-gmsDpV2-main{
    grid-template-columns: repeat(2, 1fr) !important;
  }
  
  .fru-gmsV2-inner .fru-gmsV2-inner {
    transform: translateX(-50%) translateY(-50%);
  }

  .fru-gmsV2-inner .fru-gmsV2-title .fru-gmsV2-text  a h2 {
    transform: translateX(-50%) translateY(-60%);
    opacity: 1;
  }

  .fru-gmsV2-inner .fru-gmsV2-btn{
    opacity: 1;
  }

  .fru-gmsV2-block .fru-gmsV2-inner .transparent-back {
    opacity: 0;
    animation: 0.25s fade-back forwards ease;
  }

  .fru-gms-block .fru-gms-overlay{
    opacity:0.8;
    background-color: var(--rgb1);
  }

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

  .fru-galers-img{
    width: 240px;
  }

  #fru-galers-current {
    height: 300px;
  }

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

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

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

  .fru-nz-img{
    justify-content: center;
  }

  .fru-nz-cop-text{
    justify-content: center;
  }

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

  .fru-getiT-adres-main{
    flex-direction: column !important;
  }

}




@media (max-width: 768px){

  .fru-hwp-block {
    width: 100%;
  }

  .fru-hwp-block p {
    margin: 44px 0;
    padding: 32px  13px;
  }

  .fru-hwp-block p::after {
    display: none;
  }
  
  .fru-hwp-block p::before {
  	top: 0;
    left: 0;
  }

  .fru-hwp-block:nth-child(1):after,
  .fru-hwp-block:nth-child(2):after,
  .fru-hwp-block:nth-child(3):after,
  .fru-hwp-block:nth-child(4):after{
    bottom: 0;
    right: 0;
    transform: translate(0%, 0%);
    top: auto;
    left: auto;
  }

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

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

  .fru-gms-mainDp{
    grid-template-columns: repeat(1, 1fr) !important;
  }

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

  .fru-gms-box svg{
    height: 100px;
  }

  .fru-bnfa-block, .fru-bnfa-img-right{
    flex-direction: column !important;
  }

  .fru-galers-block2 {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .fru-galers-img{
    width: 213px;
  }

  .fru-otdel-igr-main-inner img{
    width: 100%;
    margin: 0;
    margin-bottom:  26px;
    height: auto;
  }

  .fru-nz-cop-text{
    flex-direction: column-reverse;
  }
}



@media (max-width: 600px){
      .fru-znan-pol{
        padding: 41px 41px;
    }

}


@media (max-width: 575px){
          
    button{
        width: 100%;
    }
    .na-logo{
      margin-right: 43px;
    }

    .fru-galers-block2{
      grid-template-columns: repeat(1, 1fr) !important;
    }

    .fru-galers-img{
      width: 100%;
    }

    .fru-aco-video video {
      height: auto;
    }

    .fru-getiT-img img{
      height: auto;
    }

    .fru-getiT-adres-image img{
      height: auto;
    }

    .fru-gmsV2-block .fru-gmsV2-inner .transparent-back, .fru-gmsV2-block .fru-gmsV2-inner img{
      border-radius: 40% 54% 28% 56% / 112% 91% 50% 65%;
    }

    nav{
      padding: 14px  26px;
    }
    
}

