@import url(https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,300;0,400;0,500;0,700;0,900;1,300;1,400;1,500;1,700;1,900&display=swap);
.lazy-load-image-background.blur {
  filter: blur(15px);
}

.lazy-load-image-background.blur.lazy-load-image-loaded {
  filter: blur(0);
  transition: filter .3s;
}

.lazy-load-image-background.blur > img {
  opacity: 0;
}

.lazy-load-image-background.blur.lazy-load-image-loaded > img {
  opacity: 1;
  transition: opacity .3s;
}

:root {
  --toastify-color-light: #fff;
  --toastify-color-dark: #121212;
  --toastify-color-info: #3498db;
  --toastify-color-success: #07bc0c;
  --toastify-color-warning: #f1c40f;
  --toastify-color-error: #e74c3c;
  --toastify-color-transparent: rgba(255, 255, 255, 0.7);
  --toastify-icon-color-info: var(--toastify-color-info);
  --toastify-icon-color-success: var(--toastify-color-success);
  --toastify-icon-color-warning: var(--toastify-color-warning);
  --toastify-icon-color-error: var(--toastify-color-error);
  --toastify-toast-width: 320px;
  --toastify-toast-background: #fff;
  --toastify-toast-min-height: 64px;
  --toastify-toast-max-height: 800px;
  --toastify-font-family: sans-serif;
  --toastify-z-index: 9999;
  --toastify-text-color-light: #757575;
  --toastify-text-color-dark: #fff;
  --toastify-text-color-info: #fff;
  --toastify-text-color-success: #fff;
  --toastify-text-color-warning: #fff;
  --toastify-text-color-error: #fff;
  --toastify-spinner-color: #616161;
  --toastify-spinner-color-empty-area: #e0e0e0;
  --toastify-color-progress-light: linear-gradient(
    to right,
    #4cd964,
    #5ac8fa,
    #007aff,
    #34aadc,
    #5856d6,
    #ff2d55
  );
  --toastify-color-progress-dark: #bb86fc;
  --toastify-color-progress-info: var(--toastify-color-info);
  --toastify-color-progress-success: var(--toastify-color-success);
  --toastify-color-progress-warning: var(--toastify-color-warning);
  --toastify-color-progress-error: var(--toastify-color-error);
}

.Toastify__toast-container {
  z-index: var(--toastify-z-index);
  -webkit-transform: translate3d(0, 0, var(--toastify-z-index));
  position: fixed;
  padding: 4px;
  width: var(--toastify-toast-width);
  box-sizing: border-box;
  color: #fff;
}
.Toastify__toast-container--top-left {
  top: 1em;
  left: 1em;
}
.Toastify__toast-container--top-center {
  top: 1em;
  left: 50%;
  transform: translateX(-50%);
}
.Toastify__toast-container--top-right {
  top: 1em;
  right: 1em;
}
.Toastify__toast-container--bottom-left {
  bottom: 1em;
  left: 1em;
}
.Toastify__toast-container--bottom-center {
  bottom: 1em;
  left: 50%;
  transform: translateX(-50%);
}
.Toastify__toast-container--bottom-right {
  bottom: 1em;
  right: 1em;
}

@media only screen and (max-width : 480px) {
  .Toastify__toast-container {
    width: 100vw;
    padding: 0;
    left: 0;
    margin: 0;
  }
  .Toastify__toast-container--top-left, .Toastify__toast-container--top-center, .Toastify__toast-container--top-right {
    top: 0;
    transform: translateX(0);
  }
  .Toastify__toast-container--bottom-left, .Toastify__toast-container--bottom-center, .Toastify__toast-container--bottom-right {
    bottom: 0;
    transform: translateX(0);
  }
  .Toastify__toast-container--rtl {
    right: 0;
    left: initial;
  }
}
.Toastify__toast {
  position: relative;
  min-height: var(--toastify-toast-min-height);
  box-sizing: border-box;
  margin-bottom: 1rem;
  padding: 8px;
  border-radius: 4px;
  box-shadow: 0 1px 10px 0 rgba(0, 0, 0, 0.1), 0 2px 15px 0 rgba(0, 0, 0, 0.05);
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  max-height: var(--toastify-toast-max-height);
  overflow: hidden;
  font-family: var(--toastify-font-family);
  cursor: default;
  direction: ltr;
  /* webkit only issue #791 */
  z-index: 0;
}
.Toastify__toast--rtl {
  direction: rtl;
}
.Toastify__toast--close-on-click {
  cursor: pointer;
}
.Toastify__toast-body {
  margin: auto 0;
  -ms-flex: 1 1 auto;
      flex: 1 1 auto;
  padding: 6px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
}
.Toastify__toast-body > div:last-child {
  word-break: break-word;
  -ms-flex: 1;
      flex: 1;
}
.Toastify__toast-icon {
  -webkit-margin-end: 10px;
          margin-inline-end: 10px;
  width: 20px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -ms-flexbox;
  display: flex;
}

.Toastify--animate {
  animation-fill-mode: both;
  animation-duration: 0.7s;
}

.Toastify--animate-icon {
  animation-fill-mode: both;
  animation-duration: 0.3s;
}

@media only screen and (max-width : 480px) {
  .Toastify__toast {
    margin-bottom: 0;
    border-radius: 0;
  }
}
.Toastify__toast-theme--dark {
  background: var(--toastify-color-dark);
  color: var(--toastify-text-color-dark);
}
.Toastify__toast-theme--light {
  background: var(--toastify-color-light);
  color: var(--toastify-text-color-light);
}
.Toastify__toast-theme--colored.Toastify__toast--default {
  background: var(--toastify-color-light);
  color: var(--toastify-text-color-light);
}
.Toastify__toast-theme--colored.Toastify__toast--info {
  color: var(--toastify-text-color-info);
  background: var(--toastify-color-info);
}
.Toastify__toast-theme--colored.Toastify__toast--success {
  color: var(--toastify-text-color-success);
  background: var(--toastify-color-success);
}
.Toastify__toast-theme--colored.Toastify__toast--warning {
  color: var(--toastify-text-color-warning);
  background: var(--toastify-color-warning);
}
.Toastify__toast-theme--colored.Toastify__toast--error {
  color: var(--toastify-text-color-error);
  background: var(--toastify-color-error);
}

.Toastify__progress-bar-theme--light {
  background: var(--toastify-color-progress-light);
}
.Toastify__progress-bar-theme--dark {
  background: var(--toastify-color-progress-dark);
}
.Toastify__progress-bar--info {
  background: var(--toastify-color-progress-info);
}
.Toastify__progress-bar--success {
  background: var(--toastify-color-progress-success);
}
.Toastify__progress-bar--warning {
  background: var(--toastify-color-progress-warning);
}
.Toastify__progress-bar--error {
  background: var(--toastify-color-progress-error);
}
.Toastify__progress-bar-theme--colored.Toastify__progress-bar--info, .Toastify__progress-bar-theme--colored.Toastify__progress-bar--success, .Toastify__progress-bar-theme--colored.Toastify__progress-bar--warning, .Toastify__progress-bar-theme--colored.Toastify__progress-bar--error {
  background: var(--toastify-color-transparent);
}

.Toastify__close-button {
  color: #fff;
  background: transparent;
  outline: none;
  border: none;
  padding: 0;
  cursor: pointer;
  opacity: 0.7;
  transition: 0.3s ease;
  -ms-flex-item-align: start;
      align-self: flex-start;
}
.Toastify__close-button--light {
  color: #000;
  opacity: 0.3;
}
.Toastify__close-button > svg {
  fill: currentColor;
  height: 16px;
  width: 14px;
}
.Toastify__close-button:hover, .Toastify__close-button:focus {
  opacity: 1;
}

@keyframes Toastify__trackProgress {
  0% {
    transform: scaleX(1);
  }
  100% {
    transform: scaleX(0);
  }
}
.Toastify__progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  z-index: var(--toastify-z-index);
  opacity: 0.7;
  transform-origin: left;
}
.Toastify__progress-bar--animated {
  animation: Toastify__trackProgress linear 1 forwards;
}
.Toastify__progress-bar--controlled {
  transition: transform 0.2s;
}
.Toastify__progress-bar--rtl {
  right: 0;
  left: initial;
  transform-origin: right;
}

.Toastify__spinner {
  width: 20px;
  height: 20px;
  box-sizing: border-box;
  border: 2px solid;
  border-radius: 100%;
  border-color: var(--toastify-spinner-color-empty-area);
  border-right-color: var(--toastify-spinner-color);
  animation: Toastify__spin 0.65s linear infinite;
}

@keyframes Toastify__bounceInRight {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    transform: translate3d(10px, 0, 0);
  }
  90% {
    transform: translate3d(-5px, 0, 0);
  }
  to {
    transform: none;
  }
}
@keyframes Toastify__bounceOutRight {
  20% {
    opacity: 1;
    transform: translate3d(-20px, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}
@keyframes Toastify__bounceInLeft {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(25px, 0, 0);
  }
  75% {
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    transform: translate3d(5px, 0, 0);
  }
  to {
    transform: none;
  }
}
@keyframes Toastify__bounceOutLeft {
  20% {
    opacity: 1;
    transform: translate3d(20px, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}
@keyframes Toastify__bounceInUp {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  75% {
    transform: translate3d(0, 10px, 0);
  }
  90% {
    transform: translate3d(0, -5px, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes Toastify__bounceOutUp {
  20% {
    transform: translate3d(0, -10px, 0);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}
@keyframes Toastify__bounceInDown {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, 25px, 0);
  }
  75% {
    transform: translate3d(0, -10px, 0);
  }
  90% {
    transform: translate3d(0, 5px, 0);
  }
  to {
    transform: none;
  }
}
@keyframes Toastify__bounceOutDown {
  20% {
    transform: translate3d(0, 10px, 0);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}
.Toastify__bounce-enter--top-left, .Toastify__bounce-enter--bottom-left {
  animation-name: Toastify__bounceInLeft;
}
.Toastify__bounce-enter--top-right, .Toastify__bounce-enter--bottom-right {
  animation-name: Toastify__bounceInRight;
}
.Toastify__bounce-enter--top-center {
  animation-name: Toastify__bounceInDown;
}
.Toastify__bounce-enter--bottom-center {
  animation-name: Toastify__bounceInUp;
}

.Toastify__bounce-exit--top-left, .Toastify__bounce-exit--bottom-left {
  animation-name: Toastify__bounceOutLeft;
}
.Toastify__bounce-exit--top-right, .Toastify__bounce-exit--bottom-right {
  animation-name: Toastify__bounceOutRight;
}
.Toastify__bounce-exit--top-center {
  animation-name: Toastify__bounceOutUp;
}
.Toastify__bounce-exit--bottom-center {
  animation-name: Toastify__bounceOutDown;
}

@keyframes Toastify__zoomIn {
  from {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
@keyframes Toastify__zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
.Toastify__zoom-enter {
  animation-name: Toastify__zoomIn;
}

.Toastify__zoom-exit {
  animation-name: Toastify__zoomOut;
}

@keyframes Toastify__flipIn {
  from {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    transform: perspective(400px);
  }
}
@keyframes Toastify__flipOut {
  from {
    transform: perspective(400px);
  }
  30% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
.Toastify__flip-enter {
  animation-name: Toastify__flipIn;
}

.Toastify__flip-exit {
  animation-name: Toastify__flipOut;
}

@keyframes Toastify__slideInRight {
  from {
    transform: translate3d(110%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes Toastify__slideInLeft {
  from {
    transform: translate3d(-110%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes Toastify__slideInUp {
  from {
    transform: translate3d(0, 110%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes Toastify__slideInDown {
  from {
    transform: translate3d(0, -110%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes Toastify__slideOutRight {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(110%, 0, 0);
  }
}
@keyframes Toastify__slideOutLeft {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(-110%, 0, 0);
  }
}
@keyframes Toastify__slideOutDown {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, 500px, 0);
  }
}
@keyframes Toastify__slideOutUp {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, -500px, 0);
  }
}
.Toastify__slide-enter--top-left, .Toastify__slide-enter--bottom-left {
  animation-name: Toastify__slideInLeft;
}
.Toastify__slide-enter--top-right, .Toastify__slide-enter--bottom-right {
  animation-name: Toastify__slideInRight;
}
.Toastify__slide-enter--top-center {
  animation-name: Toastify__slideInDown;
}
.Toastify__slide-enter--bottom-center {
  animation-name: Toastify__slideInUp;
}

.Toastify__slide-exit--top-left, .Toastify__slide-exit--bottom-left {
  animation-name: Toastify__slideOutLeft;
}
.Toastify__slide-exit--top-right, .Toastify__slide-exit--bottom-right {
  animation-name: Toastify__slideOutRight;
}
.Toastify__slide-exit--top-center {
  animation-name: Toastify__slideOutUp;
}
.Toastify__slide-exit--bottom-center {
  animation-name: Toastify__slideOutDown;
}

@keyframes Toastify__spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.header{position:sticky;top:0;left:0;width:100%;background-color:#242582;opacity:.95;z-index:50}.header:before{content:"";position:absolute;top:0;left:0;width:100%;height:100%;background-color:#242582;z-index:2}.header__container{display:flex;align-items:center;height:70px;position:relative;justify-content:space-between}.header__logo{width:130px;z-index:5}.header__logo__link{z-index:5}.header__menu{margin-left:auto}.menu__list{list-style:none;display:flex;flex-wrap:wrap;position:relative;z-index:3;height:min-content}.menu__item{height:fit-content}.menu__item svg{fill:#f5fbfe}@media(hover: hover){.menu__item:hover a{color:#cd7f32;transition:.6s}.menu__item:hover svg{fill:#cd7f32}}.menu__item{margin:0px 0px 0px 21px;font-size:20px;transition:.6s}.header__burger{display:none}.active{color:#cd7f32;text-transform:uppercase;font-weight:500;text-decoration:none}.default{color:#f5fbfe;text-transform:uppercase;font-weight:500;text-decoration:none;transition:.4s}.line{z-index:1;width:80%;height:4px;background:#cd7f32;top:70px;position:sticky;margin:auto;transition:1s;border-radius:3px;opacity:.95}.line_after{z-index:1;width:100%;height:4px;background:#cd7f32;top:70px;position:sticky;margin:auto;transition:1s;opacity:.95}.phone{font-weight:300;font-size:16px}.phone a{display:flex;align-items:center}.number__link{text-decoration:none;color:#f5fbfe}.powered-by{color:#f5fbfe}@media screen and (max-width: 990px){.menu__list li:nth-last-child(-n+5){display:none}}@media screen and (max-width: 700px){body.lock{overflow-y:hidden}.line{top:50px}.line_after{top:50px}.menu__list li:nth-last-child(-n+3){display:block}.line{width:60%}.header__burger{display:block;position:relative;width:30px;height:20px;z-index:3}.header__burger span{position:absolute;background-color:#f5fbfe;left:0;top:9px;height:2px;width:100%;transition:all .3s ease 0s}.header__burger:before,.header__burger:after{content:"";background-color:#f5fbfe;position:absolute;width:100%;height:2px;left:0;transition:all .3s ease 0s}.header__burger:before{top:0}.header__burger:after{bottom:0}.header__burger.active:before{transform:rotate(45deg);top:9px}.header__burger.active:after{transform:rotate(-45deg);bottom:9px}.header__burger.active span{transform:scale(0)}.header__menu{position:fixed;top:-100%;left:0;width:100%;height:100%;background-color:#000;opacity:.95;padding:70px 0px 0px 0px;transition:all .8s ease 0s;overflow-y:auto;overflow-x:hidden}.header__menu.active{top:0}.header__container{height:50px}.header__logo{width:90px}.menu__list{display:block}.menu__list li{font-size:15px;margin-bottom:30px;text-align:center}}.main{display:flex;justify-content:space-between}.main_page_background{position:absolute;top:0;width:100%;height:700px;background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.221), #242582),url(/bc8aaa1cceed29d630e6.jpg);background-size:cover;z-index:-1}.description{margin-top:100px;width:50%;float:left;color:#f5fbfe;font-weight:600;font-size:40px;text-shadow:4px 4px 8px #000;margin-right:55px}.images{margin-top:50px;display:flex;width:500px}.images img{width:150px;object-fit:contain}.first_block{margin-top:170px;width:100%;background:#242582;padding-bottom:20px;padding-top:20px}.first_block_content{width:50%;margin-left:auto;margin-right:auto;display:flex;justify-content:space-around}.item{list-style:none;text-align:center;width:45%;height:max-content;font-size:18px;color:#f5fbfe}.item img{width:150px;height:150px}.item p{text-align:left;overflow-wrap:break-word;word-wrap:break-word;-webkit-hyphens:auto;-ms-hyphens:auto;-moz-hyphens:auto;hyphens:auto}.item h5{text-align:left}.horizontal{display:flex;justify-content:space-between}.goods__block{margin-left:auto;margin-right:auto;display:flex;justify-content:space-around}.goods__item{list-style:none;text-align:center;width:25%;height:350px;font-size:18px;color:#000}.goods__item hr{margin-top:10px;width:0px;float:left;color:#fdcf08;background:#fdcf08;height:2px;border:none;-webkit-transition:all .5s ease-in-out;-moz-transition:all .5s ease-in-out;transition:all .5s ease-in-out}.goods__item img{width:150px;height:150px}.goods__item p{text-align:left;overflow-wrap:break-word;word-wrap:break-word;-webkit-hyphens:auto;-ms-hyphens:auto;-moz-hyphens:auto;hyphens:auto}.goods__item h5{text-align:left}.goods__title{text-transform:uppercase;font-weight:600;font-size:30px;text-align:center;color:#cd7f32;padding-top:20px;padding-bottom:40px}.Toastify__toast-container--top-right{height:0px}.Toastify__toast-container{height:0px}.toast-youtube{border-radius:10px;top:70px;margin:0 auto;right:25px;width:max-content;font-size:16px;color:#000}.toast-youtube div{display:flex;align-items:center;gap:10px;right:0px}.banner__image{padding-top:10px;background-image:url(/a2cff3ba3f1df65c94ea.png);width:900px;background-size:cover;height:500px;color:#fff;border-radius:20px}.banner__image__inner{margin-top:10px;display:flex;flex-direction:column;gap:40px;justify-content:center;align-items:flex-end;text-align:right;padding-right:60px}.banner__title{color:#ffe400;font-size:50px}.banner__gifts{display:flex;flex-direction:column;gap:8px;font-weight:500;font-size:20px}.banner__terms{display:flex;flex-direction:column;gap:8px;font-weight:300}@media(max-width: 950px){.banner__image__inner{padding-right:30px}.banner__image{width:600px;height:400px}.banner__title{font-size:30px}.banner__gifts{font-size:14px}.banner__terms{font-size:12px}}@media(max-width: 650px){.banner__image__inner{padding-right:0}.banner__image{padding-top:10px;width:300px;height:420px;background-position:right;padding-right:0}.banner__title{text-align:center;padding:0 20px}.banner__gifts{text-align:center;padding:0 20px}.banner__terms{text-align:center;padding:0 20px}}@media(max-width: 700px){.toast-youtube{top:40px;left:0}}@media(max-width: 480px){.toast-youtube{width:80%;left:0;top:60px;margin-left:auto;margin-right:auto}}@media(hover: hover){.goods__item:hover hr{width:100%}}@media(hover: none){.goods__item hr{width:100%}}@media screen and (max-width: 1200px){.first_block{margin-top:170px}}@media screen and (max-width: 990px){.first_block_content{width:100%}.description{margin-right:0;width:60%;font-size:35px}.first_block{margin-top:150px}.horizontal{display:block}.goods__item{width:40%}.images{margin-top:140px}}@media screen and (max-width: 700px){.main{display:block;justify-self:unset;width:100%}.description{width:100%;padding-top:30px;float:none;text-align:center;margin:auto;font-size:30px}.images{width:300px;margin-top:20px;margin-left:auto;margin-right:auto}.images img{width:33%}.item p{font-size:15px}.first_block{margin-top:0}.main_page_background{height:530px}}@media screen and (max-width: 530px){.main_page_background{height:480px}.first_block_content{display:block}.goods__block{display:block}.item{margin-left:auto;margin-right:auto;width:50%}.item img{margin-left:auto;margin-right:auto}.item p{font-size:15px}.goods__item{margin-left:auto;margin-right:auto;width:50%}}@media screen and (max-width: 360px){.first_block{padding-bottom:20px}.images{width:230px}.item img{width:120px;height:120px}.goods__item{height:400px;width:60%}}@media screen and (max-width: 360px){.main_page_background{height:530px}}@media screen and (max-width: 295px){.main_page_background{height:530px}}.footer{background-color:#101141;width:100%;color:#fff}.footer__menu{display:grid}.footer__list{color:#f5fbfe;margin-top:50px;display:flex;margin-left:auto;margin-right:auto}@media(hover: hover){.footer__list a:hover{color:#cd7f32;transition:all .5s}.footer__list svg:hover{fill:#cd7f32}}.footer__list__item:nth-last-child(n+2){padding-right:150px}.footer__list__item{list-style:none;text-align:left;font-size:20px}.footer__list__item ul{list-style:none;padding-top:20px}.footer__list__item li{padding-bottom:20px;font-size:15px}.footer__list__item li a{text-decoration:none;color:#f5fbfe}.footer__list__item li a svg{fill:#f5fbfe}.footer__description{text-align:center;font-size:14px;padding-bottom:7px}.footer__images{text-align:center;display:flex;justify-content:space-between;width:20%;margin-left:auto;margin-right:auto;margin-top:20px;margin-bottom:30px}.footer__images img{height:50px}@media screen and (max-width: 990px){.footer__list__item:nth-last-child(n+2){padding-right:80px}.footer__images{width:30%}}@media screen and (max-width: 640px){.footer__list__item:nth-last-child(n+2){padding-right:30px}.footer__images{width:40%}}@media screen and (max-width: 520px){.footer__list{display:block}.footer__list__item:nth-last-child(n+2){padding-right:0px}.footer__list__item{text-align:center;padding-bottom:50px}.footer__images{width:170px}}.slideshow{margin-top:50px;overflow:hidden;width:650px;margin-left:auto;margin-right:auto}.slideshowSlider{white-space:nowrap;transition:ease 1000ms}.slide{display:inline-block;width:100%}.slide img{margin-left:auto;margin-right:auto}.img{height:400px;display:flex;margin:auto}@media screen and (max-width: 990px){.slideshow{margin-top:40px}.img{height:300px}}@media screen and (max-width: 700px){.slideshow{margin:auto;width:250px}.slide{height:250px}.img{height:250px}}@media screen and (max-width: 530px){.slide{height:200px}.img{height:200px}}.catalog{margin-top:20px}.nav_catalog{display:flex;justify-content:space-around}.nav__item{transition:.5s;text-align:center;width:125px}.nav__item img{height:120px;transition:.5s}.nav__item p{color:#000;font-weight:500;font-size:15px}.catalog__active{text-decoration:none;transition:.5s;opacity:.5;pointer-events:none}.catalog__default{opacity:1;text-decoration:none;transition:.5s}@media(hover: hover){.catalog__default:hover img{opacity:1;transition:.5s;scale:.9}.products__filter__button__goldmaster:hover:not([disabled]){scale:1.07;transition:.4s}.product__elem:hover{transform:scale(1.04)}}.products__filter{margin-right:auto;margin-left:auto;display:flex;justify-content:center;align-items:center}.products__filter__img{width:130px;margin-right:30px;transition:.5s;pointer-events:all;object-fit:contain;cursor:pointer}.products__filter__img.activebutton{opacity:.7;cursor:auto}.products__filter__img.activebutton:active{scale:none;transition:none}.products__filter__button__goldmaster{background-color:#ef7f1a;color:#fff;border:3px solid #fbfbfb;border-radius:30px;font-size:15px;text-transform:uppercase;width:160px;padding:9px;font-weight:600;cursor:pointer;transition:.4s;-webkit-box-shadow:0px 0px 6px 0px rgba(0,0,0,.75);-moz-box-shadow:0px 0px 6px 0px rgba(0,0,0,.75);box-shadow:0px 0px 6px 0px rgba(0,0,0,.75)}.products__filter__button__goldmaster:active:not([disabled]){scale:1;transition:.4s;border:3px solid #ffdd1c}.products__filter__button__goldmaster.activebutton{background-color:#f0c8a6;pointer-events:none}.products__filter__button__goldmaster:disabled{cursor:auto}.products__filter__goldmaster{margin-top:40px;width:60%;margin-right:auto;margin-left:auto;display:flex;justify-content:space-around}.products__list{padding-top:30px;list-style:none;display:grid;grid-template-columns:repeat(auto-fit, minmax(200px, 1fr));grid-gap:45px;margin:auto;padding-left:0;width:95%}.product__elem{margin-bottom:40px;display:block;flex-direction:column;background-color:#fff;border-radius:25px;text-align:center;box-shadow:0 16px 24px 2px #d4d4d4;transition:transform .3s}.product__elem a{text-decoration:none}.product__name{font-size:23px;color:#000;padding-top:20px;width:90%;margin-left:auto;margin-right:auto}.product__img{display:block;margin:auto;width:90%;height:270px;object-fit:contain}@media screen and (max-width: 990px){.products__filter__goldmaster{width:70%}.products__filter__button__goldmaster{font-size:12px;width:130px;padding:8px}.nav__item{width:100px}.nav__item img{height:80px}.nav__item p{color:#000;font-weight:500;font-size:12px}.products__filter__img{width:110px}.nav_catalog{width:80%;justify-content:space-between;white-space:nowrap;overflow-x:auto;-webkit-overflow-scrolling:touch;-ms-overflow-style:-ms-autohiding-scrollbar;overflow-y:hidden}.nav_catalog::-webkit-scrollbar{display:none}.nav__item{width:100px;white-space:pre-line}.nav__item img{height:70px}.nav__item p{white-space:pre-line;font-size:11px}}@media screen and (max-width: 700px){.products__filter__goldmaster{justify-content:unset;width:60%;height:60px;padding-top:7px;padding-bottom:10px;padding-left:10px;padding-right:10px;overflow-x:auto;overflow-y:hidden;-webkit-overflow-scrolling:touch;-ms-overflow-style:-ms-autohiding-scrollbar;justify-content:left}.products__filter__goldmaster::-webkit-scrollbar{display:none}.products__filter__button__goldmaster{width:120px;padding-left:10px;padding-right:10px;font-size:11px;padding-top:5px;padding-bottom:5px;margin-right:10px;margin-left:10px}.products__filter::-webkit-scrollbar{display:none}.products__filter{justify-content:unset;width:60%;text-align:left;white-space:nowrap;overflow-x:auto;overflow-y:hidden;-webkit-overflow-scrolling:touch;-ms-overflow-style:-ms-autohiding-scrollbar}.products__filter__img{margin-right:15px}.nav_catalog{width:90%}}.map{height:300px;width:300px}.map__info{display:flex;background-color:#fff;padding:10px;border-radius:8px;box-shadow:0 2px 6px rgba(0,0,0,.3);font-size:14px;width:200px}.contacts__block{margin-top:10px;display:flex;justify-content:space-around;margin-bottom:30px;background-color:#fff;box-shadow:rgba(100,100,111,.2) 0px 7px 29px 0px;align-items:center}.contacts__text{font-size:20px}.contacts__text h1{font-size:30px}.contacts__map{padding-top:10px;padding-bottom:10px}.lds-ring{margin-left:auto;margin-right:auto;height:400px;width:300px;margin-top:50px}.lds-ring div{box-sizing:border-box;display:block;position:absolute;width:300px;height:300px;margin:8px;border:10px solid #242582;border-radius:50%;animation:lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;border-color:#242582 rgba(0,0,0,0) rgba(0,0,0,0) rgba(0,0,0,0)}.lds-ring div:nth-child(1){animation-delay:-0.45s}.lds-ring div:nth-child(2){animation-delay:-0.3s}.lds-ring div:nth-child(3){animation-delay:-0.15s}@keyframes lds-ring{0%{transform:rotate(0deg)}100%{transform:rotate(360deg)}}@media screen and (max-width: 990px){.contacts__text{padding-left:30px;font-size:16px}.contacts__text h1{font-size:25px}.contacts__map{padding-right:30px}.map{height:200px;width:200px}.map p{font-size:10px}.lds-ring{height:400px;width:200px;margin-top:50px}.lds-ring div{width:200px;height:200px}}@media screen and (max-width: 500px){.contacts__block{display:block}.contacts__text{text-align:center;padding:10px 0 20px 0}.map{margin-left:auto;margin-right:auto}.contacts__map{padding:0 0 20px 0}.lds-ring{height:400px;width:150px;margin-top:50px}.lds-ring div{width:150px;height:150px}}.error{text-align:center}.error__title{padding-top:60px;color:#242582}.button-9{appearance:button;backface-visibility:hidden;background-color:#405cf5;border-radius:6px;border-width:0;box-shadow:rgba(50,50,93,.1) 0 0 0 1px inset,rgba(50,50,93,.1) 0 2px 5px 0,rgba(0,0,0,.07) 0 1px 1px 0;box-sizing:border-box;color:#fff;cursor:pointer;font-family:-apple-system,system-ui,"Segoe UI",Roboto,"Helvetica Neue",Ubuntu,sans-serif;font-size:100%;height:44px;line-height:1.15;margin:12px 0 0;outline:none;overflow:hidden;padding:0 25px;position:relative;text-align:center;text-transform:none;transform:translateZ(0);transition:all .2s,box-shadow .08s ease-in;user-select:none;-webkit-user-select:none;touch-action:manipulation;width:300px;transition:.6s}.button-9:disabled{cursor:default}.button-9:focus{box-shadow:rgba(50,50,93,.1) 0 0 0 1px inset,rgba(50,50,93,.2) 0 6px 15px 0,rgba(0,0,0,.1) 0 2px 2px 0,rgba(50,151,211,.3) 0 0 0 4px}.error__img{width:400px}@media(hover: hover){.button-9:hover{transition:.6s;scale:1.1}}@media screen and (max-width: 700px){.error__img{width:250px}.error__title{padding-top:30px;color:#242582;font-size:25px}.button-9{width:200px}}.dealers{text-align:center}.dealers__map{width:100%;height:650px;margin-left:auto;margin-right:auto}.dealers__title{margin-top:5px;position:absolute;z-index:10;margin-left:20px;background-color:#fff;border-radius:6px;width:200px;height:50px;display:flex;justify-content:center}.dealers__title p{color:#242582;font-size:30px;margin-top:auto;margin-bottom:auto;font-weight:900}.dealers__logo{height:150px;width:150px;object-fit:contain}.dealers__street{color:#242582}.dealers__name{color:#242582}.dealers__phone{color:#242582}.dealers__info{text-align:center}.dealers__list{padding-top:30px;padding-bottom:30px;list-style:none;display:grid;grid-template-columns:repeat(auto-fit, minmax(280px, 1fr));grid-gap:45px;margin:auto;padding-left:0;width:95%}.dealers__elem{display:block;flex-direction:column;background-color:#fff;text-align:left;box-shadow:0 16px 24px 2px #d4d4d4}.dealers__elem h1{margin-top:40px;margin-left:20px;font-size:25px}.dealers__elem p{margin-right:10px}.dealers__elem p a{color:#000;text-decoration:none}.dealers__elem img{width:50px;float:right;margin-right:15px}.dealers__elem__street{display:flex;margin-left:20px}.dealers__elem__street p{margin-left:10px;margin-bottom:10px}.dealers__elem__phone{margin-bottom:30px;display:flex;margin-left:20px}.dealers__elem__phone p{margin-left:10px;margin-bottom:10px}.dealers__elem__name{margin-left:20px;margin-bottom:20px;font-size:12px}.dealers__elem__phone__phones{display:block}@media screen and (max-width: 1200px){.dealers__map{height:700px}}@media screen and (max-width: 990px){.dealers__map{height:500px}.dealers__title{width:150px;height:40px}.dealers__title p{font-size:20px}.dealers__list{grid-template-columns:repeat(auto-fit, minmax(250px, 1fr))}}@media screen and (max-width: 650px){.dealers__map{height:395px}.dealers__logo{height:90px}}@media screen and (max-width: 500px){.dealers__map{height:250px}.dealers__title{width:85px;height:20px;margin-left:5px}.dealers__title p{font-size:11px}}@media screen and (max-width: 374px){.dealers__map{height:200px}.dealers__title{width:55px;height:20px;margin-left:5px;margin-top:1px}.dealers__title p{font-size:11px}.dealets__title_img{display:none}}.product{width:80%}.product__imageblock{display:block;text-align:center}.product__content{display:flex;background-color:#fff;border-radius:25px;margin-bottom:20px;margin-top:20px;border:1px solid;border-color:#d3d3d3}.product__image{height:400px;width:400px}.product__title{margin-top:50px;font-weight:500;font-size:40px;font-family:"Roboto",sans-serif;overflow-wrap:break-word;word-wrap:break-word;-webkit-hyphens:auto;-ms-hyphens:auto;-moz-hyphens:auto;hyphens:auto;padding-right:10px}.product__line{margin-bottom:50px;height:2px;background-color:#d3d3d3;border:0;width:95%}.product__description{padding-top:5px;font-weight:400;font-size:20px;overflow-wrap:break-word;word-wrap:break-word;-webkit-hyphens:auto;-ms-hyphens:auto;-moz-hyphens:auto;hyphens:auto;white-space:pre-wrap;white-space:-moz-pre-wrap;white-space:-pre-wrap;white-space:-o-pre-wrap;line-height:28px;padding-right:10px;font-family:"Roboto",sans-serif}.product__buttonprint{z-index:5;padding-right:20px}.css-mf1cb5-MuiButtonBase-root-MuiIconButton-root{padding-right:0}.product__buttons__mobilewidth{display:none}.product__documentation__computerwidth{margin-top:10px}.product__documentation__mobilewidth{display:none}.product__dealerslink{text-decoration:none}.product__dealers{margin-top:20px;margin-bottom:20px;text-decoration:none;align-items:center;background-color:#0a66c2;border:0;border-radius:100px;box-sizing:border-box;color:#fff;cursor:pointer;display:inline-flex;font-family:-apple-system,system-ui,system-ui,"Segoe UI",Roboto,"Helvetica Neue","Fira Sans",Ubuntu,Oxygen,"Oxygen Sans",Cantarell,"Droid Sans","Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Lucida Grande",Helvetica,Arial,sans-serif;font-size:16px;font-weight:600;justify-content:center;line-height:20px;max-width:480px;min-height:40px;min-width:0px;overflow:hidden;padding:0px;padding-left:20px;padding-right:20px;text-align:center;touch-action:manipulation;transition:background-color .167s cubic-bezier(0.4, 0, 0.2, 1) 0s,box-shadow .167s cubic-bezier(0.4, 0, 0.2, 1) 0s,color .167s cubic-bezier(0.4, 0, 0.2, 1) 0s;user-select:none;-webkit-user-select:none;vertical-align:middle;transition:all .3s}.product__button{margin-bottom:5px;width:65px;margin-right:5px;margin-left:3px;background-color:#fff;border:2px solid;border-color:#9c9c9c;outline:border;font-size:17px;font-family:"Roboto",sans-serif;transition:all .4s;cursor:pointer;border-radius:15px;color:#000}.product__button:disabled{border-color:#d3d3d3;color:#d3d3d3;pointer-events:none}@media(hover: hover){.product__dealers:hover,.product__dealers:focus{color:#fff;transform:translateY(-3px);transition:all .3s;box-shadow:0 10px 20px rgba(0,0,0,.2)}.product__dealers:active{transform:translateY(1px);color:rgba(255,255,255,.7);transition:all .3s}.product__dealers:disabled{cursor:not-allowed;background:rgba(0,0,0,.08);color:rgba(0,0,0,.3)}.product__button:hover:enabled{box-shadow:0px 5px 15px -5px #000;transform:scale(1.03)}.product__button:active:enabled{box-shadow:0px 4px 8px #000;transform:scale(0.9)}}@media screen and (max-width: 990px){.product__image{height:250px;width:250px}.product__title{font-size:30px}.product__description{font-size:15px}}@media screen and (max-width: 600px){.product__image{height:200px;width:200px}.product__content{display:block;text-align:center}.product__buttons__mobilewidth{display:block}.product__buttons__computerwidth{display:none}.product__title{font-size:25px;margin-top:10px;margin-left:10px;margin-right:10px}.product__documentation__computerwidth{display:none}.product__documentation__mobilewidth{margin-top:10px;display:block}.product__button{font-size:15px}.product__line{margin-left:auto;margin-right:auto}.product__description{margin-left:10px}}.product__video{margin-top:50px;margin-bottom:50px;width:80%}.product__video-wrapper{background-color:#fff;border-radius:25px;padding:30px;border:1px solid #d3d3d3;margin-bottom:50px}.product__video-title{font-family:"Roboto",sans-serif;font-size:32px;font-weight:500;color:#333;text-align:center;margin-bottom:30px;margin-top:0}.product__video-frame{position:relative;padding-bottom:56.25%;height:0;overflow:hidden;border-radius:15px;box-shadow:0 4px 15px rgba(0,0,0,.1)}.product__video-frame iframe{position:absolute;top:0;left:0;width:100%;height:100%;border-radius:15px}@media screen and (max-width: 990px){.product__video{width:90%;margin-top:30px;margin-bottom:30px}.product__video-wrapper{padding:20px}.product__video-title{font-size:28px;margin-bottom:20px}}@media screen and (max-width: 600px){.product__video{width:95%;margin-top:20px;margin-bottom:20px}.product__video-wrapper{padding:15px;border-radius:15px;margin-bottom:15px}.product__video-title{font-size:22px;margin-bottom:15px}.product__video-frame{border-radius:10px}.product__video-frame iframe{border-radius:10px}}.about__title{font-size:28px}.left{width:43%}.right{width:55%}.about__background{position:absolute;top:0;width:100%;height:1030px;opacity:.7;background-image:linear-gradient(to bottom, rgb(238, 245, 253) 0%, rgba(238, 245, 253, 0.9) 10%, rgba(238, 245, 253, 0.6) 30%, rgba(205, 128, 50, 0.4274509804) 100%),url(/bc8aaa1cceed29d630e6.jpg);background-size:cover;z-index:-1}.about__first_block{display:flex;justify-content:space-between;position:relative}.about__first_block__title{width:450px;margin-left:auto;color:#242582;font-weight:600;font-size:40px;text-shadow:4px 4px 8px #909090}.about__first_block__paragraph{margin-left:auto;width:450px;color:#242582;font-weight:600;text-shadow:4px 4px 8px #909090}.about__first_block__zavod{margin-top:30px;color:#242582;max-width:370px;margin-left:auto;background-color:#fff;-webkit-box-shadow:6px 7px 5px 0px rgba(0,0,0,.75);-moz-box-shadow:6px 7px 5px 0px rgba(0,0,0,.75);box-shadow:6px 7px 5px 0px rgba(0,0,0,.75);border-radius:10px}.about__first_block__zavod__title{padding-top:30px;margin-left:30px;margin-right:30px;margin-bottom:30px;font-size:22px}.about__first_block__zavod__list{list-style:none;margin-left:30px;margin-right:30px;padding-bottom:10px}.about__first_block__zavod__item{margin-bottom:20px}.about__first_block__imex{margin-top:10px;margin-right:auto;color:#242582;max-width:400px;background-color:#fff;-webkit-box-shadow:6px 7px 5px 0px rgba(0,0,0,.75);-moz-box-shadow:6px 7px 5px 0px rgba(0,0,0,.75);box-shadow:6px 7px 5px 0px rgba(0,0,0,.75);border-radius:10px;margin-bottom:20px}.about__first_block__imex__title{padding-top:30px;margin-left:30px;margin-right:30px;margin-bottom:30px;font-size:22px}.about__first_block__imex__list{list-style:none;margin-left:30px;margin-right:30px;padding-bottom:10px}.about__first_block__imex__item{margin-bottom:20px}.about__first_block__rewards{margin-top:10px;margin-right:auto;color:#242582;max-width:500px;background-color:#fff;-webkit-box-shadow:6px 7px 5px 0px rgba(0,0,0,.75);-moz-box-shadow:6px 7px 5px 0px rgba(0,0,0,.75);box-shadow:6px 7px 5px 0px rgba(0,0,0,.75);border-radius:10px;margin-bottom:23px}.about__first_block__rewards__title{padding-top:30px;margin-left:30px;margin-right:30px;margin-bottom:30px;font-size:22px}.about__first_block__rewards__list{list-style:none;margin-left:30px;margin-right:30px;padding-bottom:10px;display:flex;justify-content:space-around}.rewards__item__photo{width:100px}.about__blueblock{width:100%;background:#242582;padding-bottom:20px;border-bottom:2px solid #fff}.about__blueblock__content{width:50%;margin-left:auto;margin-right:auto;display:flex;justify-content:space-around}.about__blueblock__content__item{list-style:none;text-align:center;width:45%;height:max-content;font-size:18px;color:#f5fbfe}.about__blueblock__content__item img{width:150px;height:150px}.about__blueblock__content__item p{text-align:left;overflow-wrap:break-word;word-wrap:break-word;-webkit-hyphens:auto;-ms-hyphens:auto;-moz-hyphens:auto;hyphens:auto}.about__blueblock__content__item h5{text-align:left}.about__row{display:flex;justify-content:space-between}.about__gallery{height:auto}.about__gallery__background{position:absolute;z-index:-1;background-size:cover;background-repeat:no-repeat;background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.54), rgba(205, 128, 50, 0.4274509804)),url(/bc8aaa1cceed29d630e6.jpg);width:100%;height:100%;-webkit-filter:blur(10px);-moz-filter:blur(10px);-o-filter:blur(10px);-ms-filter:blur(10px);filter:blur(10px)}.about__gallery__wrapper{padding-top:50px;padding-bottom:50px}.about__video{background-color:#242582;height:600px;width:100%;display:flex;align-items:center;justify-content:center}.about__video__iframe{width:800px;height:500px}.lds-ring-about{position:absolute;height:400px;width:300px;margin-top:50px}.lds-ring-about div{box-sizing:border-box;display:block;position:absolute;width:300px;height:300px;margin:8px;border:10px solid #fff;border-radius:50%;animation:lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;border-color:#fff rgba(0,0,0,0) rgba(0,0,0,0) rgba(0,0,0,0)}.lds-ring-about div:nth-child(1){animation-delay:-0.45s}.lds-ring-about div:nth-child(2){animation-delay:-0.3s}.lds-ring-about div:nth-child(3){animation-delay:-0.15s}@keyframes lds-ring-about{0%{transform:rotate(0deg)}100%{transform:rotate(360deg)}}@media screen and (max-width: 990px){.about__first_block__title{width:fit-content}.about__blueblock__content{width:100%}.about__row{display:block}.about__video{height:500px}.about__video__iframe{width:650px;height:400px}}@media screen and (max-width: 700px){.about__first_block__paragraph{width:auto;margin:0}.about__first_block__title{margin:0}.about__background{height:1550px}.about__first_block{display:block;text-align:center}.left{width:100%}.right{width:100%}.about__first_block__rewards{max-width:90%;margin-left:auto;margin-right:auto;text-align:left}.about__first_block__imex{max-width:90%;margin-left:auto;margin-right:auto;text-align:left}.about__first_block__zavod{max-width:90%;margin-left:auto;margin-right:auto;margin-bottom:20px;text-align:left}.about__video{height:400px}.about__video__iframe{width:500px;height:300px}.lds-ring-about{height:400px;width:200px;margin-top:150px}.lds-ring-about div{width:200px;height:200px}}@media screen and (max-width: 530px){.about__blueblock__content{display:block}.about__blueblock__content__item{margin-left:auto;margin-right:auto;width:50%}.about__blueblock__content__item img{margin-left:auto;margin-right:auto}.about__blueblock__content__item p{font-size:15px}.about__background{height:1950px}.about__video{height:350px}.about__video__iframe{width:90%;height:250px}.lds-ring-about{height:400px;width:150px;margin-top:200px}.lds-ring-about div{width:150px;height:150px}}@media screen and (max-width: 370px){.about__background{height:3000px}.about__first_block__rewards__list{display:block}.about__first_block__rewards__item{text-align:center}}.container-slider{max-width:810px;height:540px;margin-left:auto;margin-right:auto;position:relative;overflow:hidden;border-radius:20px;-webkit-box-shadow:0px 0px 29px 14px rgba(0,0,0,.75);-moz-box-shadow:0px 0px 29px 14px rgba(0,0,0,.75);box-shadow:0px 0px 29px 14px rgba(0,0,0,.75)}.slideSlider{width:100%;height:100%;position:absolute;opacity:0;border-radius:20px;transition:opacity ease-in-out .4s}.slideSlider img{width:100%;border-radius:20px;height:100%;object-fit:cover}.active-anim{opacity:1}.btn-slide{width:40px;height:40px;border-radius:50%;background:rgba(0,0,0,.3254901961);border:none;position:absolute;display:flex;justify-content:center;align-items:center;cursor:pointer}.prev{top:50%;left:10px;transform:translateY(-60%)}.next{top:50%;right:10px;transform:translateY(-60%)}.container-dots{position:absolute;bottom:10px;left:50%;transform:translateX(-50%);display:flex}.dot{width:20px;height:20px;border-radius:50%;border:3px solid #f1f1f1;margin:0 5px;background:#f1f1f1}.dot.active{background:#202020}@media screen and (max-width: 990px){.container-slider{max-width:600px;height:400px}}@media screen and (max-width: 700px){.container-slider{max-width:450px;height:300px}}@media screen and (max-width: 500px){.container-slider{max-width:390px;height:260px}}@media screen and (max-width: 389px){.container-slider{max-width:280px;height:170px}}*{margin:0;padding:0;box-sizing:border-box}img{-webkit-user-select:none;-moz-user-select:none;user-select:none;pointer-events:none}body{background-color:#f1faff;font-family:"Roboto",sans-serif;height:100%}._container{max-width:1230px;margin:0px auto;padding:0px 15px}.loading-bar{position:absolute;top:15%}.canvas-wrapper{width:100%;height:100%}.canvas-wrapper canvas{border-radius:4px}@media screen and (max-width: 1200px){._container{max-width:1030px}}@media screen and (max-width: 990px){._container{max-width:800px}.loading-bar{top:25%}}@media(max-width: 768px){.loading-bar{top:35%}}
:root{--glass-bg-light: rgba(255, 255, 255, 0.1);--glass-bg-dark: rgba(0, 0, 0, 0.1);--glass-bg-primary: rgba(36, 37, 130, 0.15);--glass-border: rgba(255, 255, 255, 0.2);--glass-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);--glass-shadow-hover: 0 8px 24px rgba(0, 0, 0, 0.15);--glass-blur: 12px;--glass-blur-strong: 20px}.liquid-glass{backdrop-filter:blur(var(--glass-blur));-webkit-backdrop-filter:blur(var(--glass-blur));border:1px solid var(--glass-border);border-radius:20px;box-shadow:var(--glass-shadow);position:relative;overflow:hidden;transition:transform .2s ease,box-shadow .2s ease,border-color .2s ease;will-change:transform;background:var(--glass-bg-light)}.liquid-glass::before{content:"";position:absolute;top:0;left:0;right:0;bottom:0;background:linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 50%, rgba(255, 255, 255, 0.02) 100%);pointer-events:none;z-index:1}.liquid-glass::after{content:"";position:absolute;top:-1px;left:-1px;right:-1px;bottom:-1px;background:linear-gradient(45deg, rgba(255, 255, 255, 0.08), transparent, rgba(255, 255, 255, 0.08));border-radius:21px;z-index:-1;opacity:0;transition:opacity .2s ease}.liquid-glass:hover{transform:translateY(-1px);box-shadow:var(--glass-shadow-hover);border-color:rgba(255,255,255,.25)}.liquid-glass:hover::after{opacity:1}.liquid-glass--dark{background:var(--glass-bg-dark);border-color:rgba(255,255,255,.1)}.liquid-glass--primary{background:var(--glass-bg-primary);border-color:rgba(36,37,130,.3)}.liquid-glass--primary::before{background:linear-gradient(135deg, rgba(36, 37, 130, 0.2) 0%, rgba(36, 37, 130, 0.1) 50%, rgba(36, 37, 130, 0.05) 100%)}.liquid-glass--strong{backdrop-filter:blur(var(--glass-blur-strong));-webkit-backdrop-filter:blur(var(--glass-blur-strong));background:rgba(255,255,255,.15)}.liquid-glass--card{border-radius:16px;padding:24px}.liquid-glass--card::before{border-radius:16px}.liquid-glass--button{border-radius:12px;padding:12px 24px;display:inline-flex;align-items:center;justify-content:center;cursor:pointer;user-select:none}.liquid-glass--button:active{transform:translateY(0) scale(0.99)}.liquid-glass--header{border-radius:0;border-left:none;border-right:none;border-top:none;backdrop-filter:blur(16px);-webkit-backdrop-filter:blur(16px)}.liquid-glass--modal{border-radius:24px;background:rgba(255,255,255,.08);backdrop-filter:blur(20px);-webkit-backdrop-filter:blur(20px)}.liquid-glass-animated{backdrop-filter:blur(var(--glass-blur));-webkit-backdrop-filter:blur(var(--glass-blur));border:1px solid var(--glass-border);border-radius:20px;box-shadow:var(--glass-shadow);position:relative;overflow:hidden;transition:transform .2s ease,box-shadow .2s ease,border-color .2s ease;will-change:transform;background:var(--glass-bg-light)}.liquid-glass-animated::before{content:"";position:absolute;top:0;left:0;right:0;bottom:0;background:linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 50%, rgba(255, 255, 255, 0.02) 100%);pointer-events:none;z-index:1}.liquid-glass-animated::after{content:"";position:absolute;top:-1px;left:-1px;right:-1px;bottom:-1px;background:linear-gradient(45deg, rgba(255, 255, 255, 0.08), transparent, rgba(255, 255, 255, 0.08));border-radius:21px;z-index:-1;opacity:0;transition:opacity .2s ease}.liquid-glass-animated:hover{transform:translateY(-1px);box-shadow:var(--glass-shadow-hover);border-color:rgba(255,255,255,.25)}.liquid-glass-animated:hover::after{opacity:1}.liquid-glass-animated::before{background:linear-gradient(-45deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));background-size:200% 200%;animation:liquidFlow 12s ease-in-out infinite;will-change:background-position}@keyframes liquidFlow{0%,100%{background-position:0% 50%}50%{background-position:100% 50%}}.liquid-glass-float{backdrop-filter:blur(var(--glass-blur));-webkit-backdrop-filter:blur(var(--glass-blur));border:1px solid var(--glass-border);border-radius:20px;box-shadow:var(--glass-shadow);position:relative;overflow:hidden;transition:transform .2s ease,box-shadow .2s ease,border-color .2s ease;will-change:transform;background:var(--glass-bg-light);animation:float 8s ease-in-out infinite;will-change:transform}.liquid-glass-float::before{content:"";position:absolute;top:0;left:0;right:0;bottom:0;background:linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 50%, rgba(255, 255, 255, 0.02) 100%);pointer-events:none;z-index:1}.liquid-glass-float::after{content:"";position:absolute;top:-1px;left:-1px;right:-1px;bottom:-1px;background:linear-gradient(45deg, rgba(255, 255, 255, 0.08), transparent, rgba(255, 255, 255, 0.08));border-radius:21px;z-index:-1;opacity:0;transition:opacity .2s ease}.liquid-glass-float:hover{transform:translateY(-1px);box-shadow:var(--glass-shadow-hover);border-color:rgba(255,255,255,.25)}.liquid-glass-float:hover::after{opacity:1}.liquid-glass-float:hover{animation-play-state:paused}@keyframes float{0%,100%{transform:translateY(0px)}50%{transform:translateY(-5px)}}.liquid-glass-ripple{backdrop-filter:blur(var(--glass-blur));-webkit-backdrop-filter:blur(var(--glass-blur));border:1px solid var(--glass-border);border-radius:20px;box-shadow:var(--glass-shadow);position:relative;overflow:hidden;transition:transform .2s ease,box-shadow .2s ease,border-color .2s ease;will-change:transform;background:var(--glass-bg-light);position:relative;overflow:hidden}.liquid-glass-ripple::before{content:"";position:absolute;top:0;left:0;right:0;bottom:0;background:linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 50%, rgba(255, 255, 255, 0.02) 100%);pointer-events:none;z-index:1}.liquid-glass-ripple::after{content:"";position:absolute;top:-1px;left:-1px;right:-1px;bottom:-1px;background:linear-gradient(45deg, rgba(255, 255, 255, 0.08), transparent, rgba(255, 255, 255, 0.08));border-radius:21px;z-index:-1;opacity:0;transition:opacity .2s ease}.liquid-glass-ripple:hover{transform:translateY(-1px);box-shadow:var(--glass-shadow-hover);border-color:rgba(255,255,255,.25)}.liquid-glass-ripple:hover::after{opacity:1}.liquid-glass-ripple::after{content:"";position:absolute;top:50%;left:50%;width:0;height:0;border-radius:50%;background:rgba(255,255,255,.2);transform:translate(-50%, -50%);transition:width .4s ease-out,height .4s ease-out;will-change:width,height}.liquid-glass-ripple:active::after{width:200px;height:200px}.liquid-glass-morph{backdrop-filter:blur(var(--glass-blur));-webkit-backdrop-filter:blur(var(--glass-blur));border:1px solid var(--glass-border);border-radius:20px;box-shadow:var(--glass-shadow);position:relative;overflow:hidden;transition:transform .2s ease,box-shadow .2s ease,border-color .2s ease;will-change:transform;background:var(--glass-bg-light);border-radius:20px;transition:border-radius .4s ease,transform .4s ease;will-change:border-radius,transform}.liquid-glass-morph::before{content:"";position:absolute;top:0;left:0;right:0;bottom:0;background:linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 50%, rgba(255, 255, 255, 0.02) 100%);pointer-events:none;z-index:1}.liquid-glass-morph::after{content:"";position:absolute;top:-1px;left:-1px;right:-1px;bottom:-1px;background:linear-gradient(45deg, rgba(255, 255, 255, 0.08), transparent, rgba(255, 255, 255, 0.08));border-radius:21px;z-index:-1;opacity:0;transition:opacity .2s ease}.liquid-glass-morph:hover{transform:translateY(-1px);box-shadow:var(--glass-shadow-hover);border-color:rgba(255,255,255,.25)}.liquid-glass-morph:hover::after{opacity:1}.liquid-glass-morph:hover{border-radius:30px;transform:scale(1.01)}.glass-text{background:linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.4));-webkit-background-clip:text;background-clip:text;-webkit-text-fill-color:rgba(0,0,0,0);text-shadow:0 2px 4px rgba(0,0,0,.1);font-weight:600}.liquid-nav{backdrop-filter:blur(var(--glass-blur));-webkit-backdrop-filter:blur(var(--glass-blur));border:1px solid var(--glass-border);border-radius:20px;box-shadow:var(--glass-shadow);position:relative;overflow:hidden;transition:transform .2s ease,box-shadow .2s ease,border-color .2s ease;will-change:transform;background:rgba(255,255,255,.08);backdrop-filter:blur(16px);-webkit-backdrop-filter:blur(16px);border-radius:50px;padding:8px;display:flex;gap:8px}.liquid-nav::before{content:"";position:absolute;top:0;left:0;right:0;bottom:0;background:linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 50%, rgba(255, 255, 255, 0.02) 100%);pointer-events:none;z-index:1}.liquid-nav::after{content:"";position:absolute;top:-1px;left:-1px;right:-1px;bottom:-1px;background:linear-gradient(45deg, rgba(255, 255, 255, 0.08), transparent, rgba(255, 255, 255, 0.08));border-radius:21px;z-index:-1;opacity:0;transition:opacity .2s ease}.liquid-nav:hover{transform:translateY(-1px);box-shadow:var(--glass-shadow-hover);border-color:rgba(255,255,255,.25)}.liquid-nav:hover::after{opacity:1}.liquid-nav .nav-tab{padding:12px 20px;border-radius:40px;transition:background .2s ease;cursor:pointer}.liquid-nav .nav-tab:hover,.liquid-nav .nav-tab.tab-active{background:rgba(255,255,255,.15);backdrop-filter:blur(12px);-webkit-backdrop-filter:blur(12px)}@media(max-width: 768px){.liquid-glass{backdrop-filter:blur(8px);-webkit-backdrop-filter:blur(8px)}.liquid-glass--strong{backdrop-filter:blur(12px);-webkit-backdrop-filter:blur(12px)}.liquid-glass-animated,.liquid-glass-float{animation:none}}@media(prefers-contrast: high){.liquid-glass{border-width:2px;border-color:rgba(255,255,255,.4)}}.liquid-glass,.liquid-glass-animated,.liquid-glass-float,.liquid-glass-ripple,.liquid-glass-morph{contain:layout style;transform:translateZ(0)}@media(prefers-reduced-motion: reduce){.liquid-glass-animated,.liquid-glass-float,.liquid-glass-ripple{animation:none}.liquid-glass,.liquid-glass-morph{transition:none}}@media(max-width: 480px){.liquid-glass-animated::before{animation:none}.liquid-glass-float{animation:none}}
