#scroll-animate
{
  overflow: hidden;
}

#scroll-animate-main
{
  width: 100%;
  left: 0;
  position: fixed;
}

#heightPage,
#heightScroll
{
  width: 10px;
  top: 0;
  position: absolute;
  z-index: 99;
}

#heightPage
{
  left: 0;
}

#heightScroll
{
  right: 0;
}

header
{
  width: 100%;
  height: 100%;
  background: url('/assets/a/b1.png') no-repeat 50% 50%;
  top: 0;
  position: fixed;
  z-index: -1;
  background-size: cover;
  display: flex;
  flex-direction: column;
  align-content: flex-end;
  justify-content: flex-start;
  align-items: center;
  /* display: flex; */
}

footer
{
  width: 100%;
  height: 300px;
  background: gray;
  bottom: -300px;
  position: fixed;
  z-index: -1;
}

.content1
{
  height: 100vh;
  background: #ededed;
  position: relative;
  z-index: 1;
  background: url(/assets/a/b3.png);
  /* background: url(/assets/a/b4.png); */
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}
.content2
{
  height: 100vh;
  background: #ededed;
  position: relative;
  z-index: 2;
  background: url(/assets/a/b2.png);
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.content3
{
  height: 100vh;
  background: #ededed;
  position: relative;
  z-index: 3;
  background: url(/assets/a/b5.jpg);
  background-size: contain;
  background-repeat: no-repeat;
  background-color: #ccc;
  background-position: bottom center;
}

.wrapper-parallax {
  margin-top: 100%;
  margin-bottom: 300px;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.5);
}

h3{
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
  text-transform: uppercase;
  text-align: center;
  font-family: Helvetica;
  font-size: 150px;
  color: #fff;
  text-align: center;
}

header h1{}

.content h1{
  line-height: 1000px;
  color: #999;
}

footer h1
{
  line-height: 100px;
}

header,
footer,
#scroll-animate-main
{
  -webkit-transition-property: all;
     -moz-transition-property: all;
      transition-property: all;

  -webkit-transition-duration: 0.4s;
     -moz-transition-duration: 0.4s;
      transition-duration: 0.4s;

  -webkit-transition-timing-function: cubic-bezier(0, 0, 0, 1);
     -moz-transition-timing-function: cubic-bezier(0, 0, 0, 1);
      transition-timing-function: cubic-bezier(0, 0, 0, 1);
}

body {
    position: relative;
    padding: 0;
    margin: 0;
    background-size: cover;
}

.loader {
    position: absolute;
    z-index: 9999;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    backdrop-filter: blur(25px);
    transition: all 1s;
}

.spoiler {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('/assets/a/0.jpg');
    z-index: 10000;
    background-size: cover;
    display: none;
}


.loader.loaded {
    backdrop-filter: blur(0px);
}

.bubbly-button {
  font-family: "Helvetica", "Arial", sans-serif;
  display: inline-block;
  font-size: 1em;
  padding: 1em 2em;
  margin-top: 40px; 
  margin-bottom: 60px;
  -webkit-appearance: none;
  appearance: none;
  background-color: #ff0081;
  color: #fff;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  position: relative;
  transition: transform ease-in 0.1s, box-shadow ease-in 0.25s;
  box-shadow: 0 2px 25px rgba(255, 0, 130, 0.5);
}
.bubbly-button:focus {
  outline: 0;
}
.bubbly-button:before, .bubbly-button:after {
  position: absolute;
  content: "";
  display: block;
  width: 140%;
  height: 100%;
  left: -20%;
  z-index: -1000;
  transition: all ease-in-out 0.5s;
  background-repeat: no-repeat;
}
.bubbly-button:before {
  display: none;
  top: -75%;
  background-image: radial-gradient(circle, #ff0081 20%, transparent 20%), radial-gradient(circle, transparent 20%, #ff0081 20%, transparent 30%), radial-gradient(circle, #ff0081 20%, transparent 20%), radial-gradient(circle, #ff0081 20%, transparent 20%), radial-gradient(circle, transparent 10%, #ff0081 15%, transparent 20%), radial-gradient(circle, #ff0081 20%, transparent 20%), radial-gradient(circle, #ff0081 20%, transparent 20%), radial-gradient(circle, #ff0081 20%, transparent 20%), radial-gradient(circle, #ff0081 20%, transparent 20%);
  background-size: 10% 10%, 20% 20%, 15% 15%, 20% 20%, 18% 18%, 10% 10%, 15% 15%, 10% 10%, 18% 18%;
}
.bubbly-button:after {
  display: none;
  bottom: -75%;
  background-image: radial-gradient(circle, #ff0081 20%, transparent 20%), radial-gradient(circle, #ff0081 20%, transparent 20%), radial-gradient(circle, transparent 10%, #ff0081 15%, transparent 20%), radial-gradient(circle, #ff0081 20%, transparent 20%), radial-gradient(circle, #ff0081 20%, transparent 20%), radial-gradient(circle, #ff0081 20%, transparent 20%), radial-gradient(circle, #ff0081 20%, transparent 20%);
  background-size: 15% 15%, 20% 20%, 18% 18%, 20% 20%, 15% 15%, 10% 10%, 20% 20%;
}
.bubbly-button:active {
  transform: scale(0.9);
  background-color: #e60074;
  box-shadow: 0 2px 25px rgba(255, 0, 130, 0.2);
}
.bubbly-button.animate:before {
  display: block;
  animation: topBubbles ease-in-out 0.75s forwards;
}
.bubbly-button.animate:after {
  display: block;
  animation: bottomBubbles ease-in-out 0.75s forwards;
}

@keyframes topBubbles {
  0% {
    background-position: 5% 90%, 10% 90%, 10% 90%, 15% 90%, 25% 90%, 25% 90%, 40% 90%, 55% 90%, 70% 90%;
  }
  50% {
    background-position: 0% 80%, 0% 20%, 10% 40%, 20% 0%, 30% 30%, 22% 50%, 50% 50%, 65% 20%, 90% 30%;
  }
  100% {
    background-position: 0% 70%, 0% 10%, 10% 30%, 20% -10%, 30% 20%, 22% 40%, 50% 40%, 65% 10%, 90% 20%;
    background-size: 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%;
  }
}
@keyframes bottomBubbles {
  0% {
    background-position: 10% -10%, 30% 10%, 55% -10%, 70% -10%, 85% -10%, 70% -10%, 70% 0%;
  }
  50% {
    background-position: 0% 80%, 20% 80%, 45% 60%, 60% 100%, 75% 70%, 95% 60%, 105% 0%;
  }
  100% {
    background-position: 0% 90%, 20% 90%, 45% 70%, 60% 110%, 75% 80%, 95% 70%, 110% 10%;
    background-size: 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%;
  }
}

.spoiler {
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: flex-start;
}

div#spf1 {
    flex: 10 1 auto;
}

div#spf2 {
    flex: 1 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

div#spf3 {
    flex: 5 1 auto;
}


span.m {
  color: #faebd7;
  text-shadow: 0 0 0 #faebd7;
  -webkit-animation: mloading 1s ease-in-out infinite alternate;
}

@-webkit-keyframes mloading {
  to {
    text-shadow: 20px 0 70px #ff0266;
    color: #ff0266;
  }
}
span.m:nth-child(2) {
  -webkit-animation-delay: 0.1s;
}
span.m:nth-child(3) {
  -webkit-animation-delay: 0.2s;
}
span.m:nth-child(4) {
  -webkit-animation-delay: 0.3s;
}
span.m:nth-child(5) {
  -webkit-animation-delay: 0.4s;
}
span.m:nth-child(6) {
  -webkit-animation-delay: 0.5s;
}
span.m:nth-child(7) {
  -webkit-animation-delay: 0.6s;
}
span.m:nth-child(8) {
  -webkit-animation-delay: 0.7s;
}
span.m:nth-child(9) {
  -webkit-animation-delay: 0.8s;
}

span.m:nth-child(10) {
  -webkit-animation-delay: 0.9s;
}
span.m:nth-child(11) {
  -webkit-animation-delay: 1s;
}
span.m:nth-child(12) {
  -webkit-animation-delay: 1.1s;
}
span.m:nth-child(13) {
  -webkit-animation-delay: 1.2s;
}
span.m:nth-child(14) {
  -webkit-animation-delay: 1.3s;
}
span.m:nth-child(15) {
  -webkit-animation-delay: 1.4s;
}
span.m:nth-child(16) {
  -webkit-animation-delay: 1.5s;
}
span.m:nth-child(17) {
  -webkit-animation-delay: 1.6s;
}
span.m:nth-child(18) {
  -webkit-animation-delay: 1.7s;
}
span.m:nth-child(19) {
  -webkit-animation-delay: 1.8s;
}
span.m:nth-child(20) {
  -webkit-animation-delay: 1.9s;
}
span.m:nth-child(21) {
  -webkit-animation-delay: 2s;
}
span.m:nth-child(22) {
  -webkit-animation-delay: 2.1s;
}

.g1 {
    background: url(/assets/a/s2.png);
    /* margin: 10vw; */
    background-size: contain;
    background-repeat: no-repeat;
    min-width: 80vw;
    /* height: 100%; */
    background-position: center;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-content: center;
    align-items: center;
    justify-content: center;
    position: relative;
    /* top: -15%; */
    flex: 4 1 auto;
}

.innerg1 {
    line-height: normal;
    font-size: 50px;
    background: rgba(0,0,0,.7);
    padding: 12px 24px;
    border-radius: 12px;
    position: relative;
    top: 25%;
    font-size: 6vw;
    max-width: 500px;
}

a.phone1 {
    background:url(/assets/a/t1.png);
}
a.phone2 {
    background:url(/assets/a/t2.png);
}
a.phone3 {
    background:url(/assets/a/t3.png);
}
a.phone4 {
    background:url(/assets/a/t4.png);
}

.ffone a {
    width: 260px;
    height: 260px;
    display: block;
    background-size: contain;
    background-position: right bottom;
    background-repeat: no-repeat;
    max-width: 35vw;
    max-height: 30vh;
    z-index: 9999999;
}

.ffone {
    position: fixed;
    bottom: 0;
    right: 0;
    z-index: 9;
}

.ffoneline {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgb(0 0 0 / 54%);
    padding: 8px;
    text-align: center;
    font-weight: bold;
    letter-spacing: 2px;
    font-family: monospace;
    z-index: 10;
}

.ffoneline a {
    font-size: 16px;
    text-decoration: none;
    color: #fff;
}


a.float.whatsuptoggler>svg {
    width: 22px!important;
    height: 22px!important;
    margin-top: 10px;
    fill: #fff;
    margin-left: 3px;
}

a.float.telegramtoggler {
    position: fixed;
    width: 40px;
    height: 40px;
    bottom: 10px;
    left: 40px;
    background-color: #2196F3;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 90;
}

footer {
    font-size: 5vw;
    color: #faebd7;
    text-shadow: 0 0 0 #faebd7;
    display: flex;
    flex-direction: column;
    align-content: center;
    align-items: center;
    justify-content: center;
    background: url(/assets/a/b5.jpg);
    background-size: contain;
    background-repeat: no-repeat;
    background-color: #ccc;
    background-position: bottom center;
}
footer>h2{
    margin:40px auto;
    -webkit-animation: mloading 1s ease-in-out infinite alternate;
}
.g>a {
    margin: 0;
    max-width: 70vw;
    /* display: block; */
    width: 100%;
    text-align: center;
    text-decoration: none;
    font-size: 3vw;
    text-transform: uppercase;
    font-family: monospace;
    letter-spacing: 13px;
    padding: 1em 0;
}

.g {
    flex: 2 1 auto;
    /* background: url(/assets/a/g.png); */
    background-size: cover;
    background-position: bottom center;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-content: center;
    width: 70vw;
    background-repeat: no-repeat;
    background-size: contain;
}

.bvc {
    flex: 1 1 auto;
    /* min-height: 10px; */
}


@media (min-width: 1080px) {
  .innerg1, footer h2 {
     font-size: 64px;
  }
}

.maxw {
    max-width: 700px;
}

.rows.flex-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    align-content: stretch;
}

.flex-xl-3.flex-lg-4.flex-md-6.flex-sm-6.p-relative {
    display: flex;
    position: relative;
    max-width: 350px;
    min-width: 270px;
    /* width: 39vw; */
    margin: 12px 0;
}

.catalog-item.js-catalog-item {
    display: flex;
    position: relative;
    width: 100%;
    padding: 145% 0 0 0;
    box-sizing: border-box;
    margin: 20px 0;
}

.img-wrapper.js-img-get-color {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.img-wrapper.js-img-get-color a {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.img-wrapper.js-img-get-color a img {
    /* width: 100%; */
}

.catalog-item__details {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    background: #000;
    height: 60px;
}

h3.catalog-item__title {
    font-size: 32px;
    text-align: right;
    padding: 12px;
    box-sizing: border-box;
}

body>.innerg1 {
    border-radius: 0;
    width: 100%;
    margin: 0;
    max-width: none;
    padding: 0;
    text-align: center;
}

h1.page__title {
    background: #cccccc42;
    text-shadow: -4px -3px 3px #9C27B0;
    padding: 12px;
}

@property --rotate {
  syntax: "<angle>";
  initial-value: 132deg;
  inherits: false;
}

:root {
  /* --card-height: 65vh; */
  /* --card-width: calc(var(--card-height) / 1.5); */
}


.dcard>div{
  opacity:1;
}
.dcard {
  background: #191c29;
  /* width: var(--card-width); */
  /* height: var(--card-height); */
  /* padding: 3px; */
  /* position: relative; */
  border-radius: 6px;
  /* justify-content: center; */
  /* align-items: center; */
  /* text-align: center; */
  /* display: flex; */
  /* font-size: 1.5em; */
  /* color: rgb(88 199 250 / 0%); */
  /* cursor: pointer; */
  /* font-family: cursive; */
}

.dcard:hover {
  color: rgb(88 199 250 / 100%);
  transition: color 1s;
}
.dcard:hover:before, .card:hover:after {
  animation: none;
  opacity: 0;
}


.dcard::before {
  content: "";
  width: 104%;
  height: 102%;
  border-radius: 8px;
  background-image: linear-gradient(
    var(--rotate)
    , #5ddcff, #3c67e3 43%, #4e00c2);
  position: absolute;
  z-index: -1;
  top: -1%;
  left: -2%;
  animation: spin 2.5s linear infinite;
}

.dcard::after {
  position: absolute;
  /* content: ""; */
  /* top: calc(var(--card-height) / 6); */
  left: 0;
  right: 0;
  z-index: -1;
  height: 100%;
  width: 100%;
  margin: 0 auto;
  transform: scale(0.8);
  filter: blur(calc(var(--card-height) / 6));
  background-image: linear-gradient(
    var(--rotate)
    , #5ddcff, #3c67e3 43%, #4e00c2);
  opacity: 1;
  transition: opacity .5s;
  animation: spin 2.5s linear infinite;
}

@keyframes spin {
  0% {
    --rotate: 0deg;
  }
  100% {
    --rotate: 360deg;
  }
}


span.price:after {
    content: 'p.';
    display: inline-block;
}

span.price {
    color: red;
    font-size: 16px;
    font-family: monospace;
    padding: 10px;
    margin: 5px;
    display: none;
}

section.catalog-card {
    padding: 24px 12px;
}

.catalog-card__gallery.flex-container {
    display: flex;
    padding: 24px 12px;
    background: #0d6abc61;
    flex-wrap: wrap;
    justify-content: space-around;
}

.cardr {
    background: #fff;
    border-radius: 12px;
    padding: 15px 12px;
}

a.main-button--wish.fav-id-4591.ord {
    display: flex;
    border-radius: 24px;
    margin: 12px 0;
    text-align: center;
    padding: 19px;
    flex-direction: row;
    align-content: stretch;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    font-weight: bold;
    font-family: monospace;
}

.flex-xl-4.flex-md-6.flex-sm-12 {
    min-width: 500px;
    max-width: 80vw;
    margin: 0 30px 0 0;
} 



.g2 {
    display: flex;
    background: #9c27b0ad;
    flex-wrap: nowrap;
    padding:20px;
    color:#fff;
    font-weight:bold;
    font-family:monospace;
    font-size:1.2em;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    align-content: stretch;
    min-width: 80vw;
    max-width: 700px;
}

.g2 .inner2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    align-content: flex-start;
    justify-content: center;
    flex: 1 1 auto;
    width: 60%;
}

.g2 h3{
    font-size:45px;
    text-align:left
}

.g2 p{
  display:inline-block;
}

.g2 .inner {
    flex: 1 1 40%;
    /* min-width: 100px; */
    height: 100%;
    /* min-width: 20vw; */
    background: url(/assets/a/gg1.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    margin: 0 20px 0 0px;
    width: 40%;
    display: flex;
    flex-direction: column;
    align-content: stretch;
    justify-content: center;
    align-items: stretch;
    padding: 50% 0 0 0;
    box-sizing: border-box;
    background-position: center;
}

section.content2 img {
    width: 100%;
    max-width: 700px;
}

.m.tte.maxw {
    font-size: 42px;
    text-align: center;
    color: #fff;
    background: #03a9f470;
}

.flex-xl-8.flex-md-6.flex-sm-12 {
    min-width: 400px;
    width: 50vw;
}

.catalog-card__characteristics-list.flex-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    justify-content: space-around;
    align-items: center;
}

label.title.col-6.col-xl-8.text-right.text-md-left {
    font-size: 24px;
    font-weight: bold;
    font-family: monospace;
}

.col-6.col-xl-4.value {
    font-size: 24px;
    text-align: center;
}

.cardr p {
    font-size: 1.4em;
}


ul.catalog-card__services-list * {
    list-style: none;
    color: #000;
    text-decoration: none;
}

.flex-container.flex-horizontal-start {
    display: flex;
    flex-direction: row;
    align-content: flex-start;
    flex-wrap: wrap;
    justify-content: space-around;
}

ul.catalog-card__services-list {
    padding: 0 20px 0 0;
}

ul.catalog-card__services-list li {
    margin-bottom:6px;
}

.flex-xl-4.flex-sm-6 {
    min-width: 35vw;
}

h5.catalog-card__services-title {
    font-size: 22px;
    margin: 0;
    border-top: 2px solid;
    border-bottom: 2px solid;
}