<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@500&amp;display=swap");
.lazy[src="/local/templates/index_new/loader.gif"] {
  width: 100% !important;
  height: 100% !important;
  margin: 0 auto;
  display: block;
  object-fit: cover !important;
  object-position: center;
}

@keyframes loadborder {
  0% {
    width: 1px;
  }

  25% {
    width: 25%;
  }

  50% {
    width: 50%;
  }

  75% {
    width: 75%;
  }

  100% {
    width: 100%;
  }
}

.top-block .border-loader {
  display: block;
  position: absolute;
  z-index: 999;
  background: none;
  border-color: #96e2fe;
  border-width: 1px;
  border-style: solid;
  height: 1px;
  width: 0%;
  bottom: 0;
  left: 0;
  right: 0;
  animation: loadborder 3s infinite;
}


.loading-container {
  width: 100%;
  max-width: 520px;
  text-align: center;
  color: #444444;
  position: relative;
  margin: 0 32px;
}

.loading-container:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 3px;
  background-color: #444444;
  bottom: 0;
  left: 0;
  border-radius: 10px;
  -webkit-animation: movingLine 2.4s infinite ease-in-out;
  animation: movingLine 2.4s infinite ease-in-out;
}

@-webkit-keyframes movingLine {
  0% {
    opacity: 0;
    width: 0;
  }

  33.3%,
  66% {
    opacity: 0.8;
    width: 100%;
  }

  85% {
    width: 0;
    left: initial;
    right: 0;
    opacity: 1;
  }

  100% {
    opacity: 0;
    width: 0;
  }
}

@keyframes movingLine {
  0% {
    opacity: 0;
    width: 0;
  }

  33.3%,
  66% {
    opacity: 0.8;
    width: 100%;
  }

  85% {
    width: 0;
    left: initial;
    right: 0;
    opacity: 1;
  }

  100% {
    opacity: 0;
    width: 0;
  }
}

.loading-text {
  font-size: 5vw;
  line-height: 64px;
  letter-spacing: 10px;
  margin-bottom: 32px;
  display: flex;
  justify-content: space-evenly;
}

.loading-text span {
  -webkit-animation: moveLetters 2.4s infinite ease-in-out;
  animation: moveLetters 2.4s infinite ease-in-out;
  transform: translatex(0);
  position: relative;
  display: inline-block;
  opacity: 0;
  text-shadow: 0px 2px 10px rgba(46, 74, 81, 0.3);
}

.loading-text span:nth-child(1) {
  -webkit-animation-delay: 0.1s;
  animation-delay: 0.1s;
}

.loading-text span:nth-child(2) {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}

.loading-text span:nth-child(3) {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}

.loading-text span:nth-child(4) {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
}

.loading-text span:nth-child(5) {
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}

.loading-text span:nth-child(6) {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
}

.loading-text span:nth-child(7) {
  -webkit-animation-delay: 0.7s;
  animation-delay: 0.7s;
}

@-webkit-keyframes moveLetters {
  0% {
    transform: translateX(-15vw);
    opacity: 0;
  }

  33.3%,
  66% {
    transform: translateX(0);
    opacity: 1;
  }

  100% {
    transform: translateX(15vw);
    opacity: 0;
  }
}

@keyframes moveLetters {
  0% {
    transform: translateX(-15vw);
    opacity: 0;
  }

  33.3%,
  66% {
    transform: translateX(0);
    opacity: 1;
  }

  100% {
    transform: translateX(15vw);
    opacity: 0;
  }
}

.preloader {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  position: fixed;
  z-index: 9999999;
  transition: all ease-in-out .3s;
}

.preloader .wrapper-preloader {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #96e2fe;
}

.preloader .wrapper-preloader .logo-preloader {
  max-width: 320px;
  max-height: 320px;
}

.banners {
  display: none;
}

.banners.active {
  display: block;
}

.banner-close {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  width: 32px;
  height: 32px;
  z-index: 999;
  right: 50px;
  top: 30px;
  background-color: #fff;
  color: #000;
  cursor: pointer;
  transition: all ease-in-out .3s;
  font-size: 18px;
  line-height: 1;
  border-radius: 50%;
  text-align: center;
}

.banner-close:hover {
  background-color: #96e2fe;
  color: #000;
}

.wrapper-banner {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  position: relative;
  flex-wrap: wrap;
  top: calc(35%);
  width: calc(50%);
  height: auto;
  background: #fff;
  color: #000;
  margin: 0 auto;
  border-radius: 15px;
  padding: 15px;
}

.wrapper-banner .banner {
  position: relative;
  width: 125px;
  height: auto;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  height: auto;
  background: #fff;
  color: #000;
  font-weight: bold;
  border: 1px solid #a8a8a8;
  border-radius: 5px;
  transition: all ease-in-out .2s;
  cursor: pointer;
  margin: 10px;
}

.banners.banners-main {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
  z-index: 99999;
}

.banners-main .wrapper-banner {
  width: 100%;
  align-items: flex-start;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  max-height: 500px;
}

.banners .logo-banner {
  width: 100%;
  max-width: 150px;
  height: auto;
  margin: 10px auto;
}

.banners .logo-banner img {
  width: 100%;
  height: auto;
  display: block;
}

.wrapper-banner .banner:hover {
  background: #96e2fe;
  opacity: 1;
}

.banner-title {
  width: 100%;
  text-align: center;
  padding: 10px;
  height: auto;
  font-weight: bold;
}

.wrapper-banner .banner a {
  color: #000;
  width: 100%;
  height: 100%;
  font-size: 32px;
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
  font-weight: bolder;
  line-height: 1.45;
  text-decoration: none;
  outline: none;
  transition: all ease-in-out .2s;
  z-index: 4;
}

.wrapper-banner .banner .wrap-img {
  width: 100%;
  height: 100%;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: all ease-in-out .2s;
  background-color: #fff;
  color: #000;
  z-index: 1;
  margin: 0;
}

.wrapper-banner .banner:hover .wrap-img {
  background-color: #96e2fe;
}

.wrapper-banner .banner:hover img {
  filter: none;
}

.wrapper-banner .banner:hover a {
  color: #000;
}

.wrapper-banner .banner img {
  max-width: 135px;
  max-height: 150px;
  height: auto;
  width: 100%;
  margin: auto;
  display: block;
  filter: grayscale(100%);
  transition: all ease-in-out .2s;
}

.banners {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
}

.catalog-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  width: 100%;
}

.catalog-links a {
  width: calc(45% - 30px);
  margin: 0 10px;
  display: block;
  padding: 0;
  font-size: 16px;
  font-weight: normal;
}


@media (max-width: 991px) {
  .wrapper-banner .banner .wrap-img {
    width: 100%;
    max-width: 160px;
    max-height: 160px;
    margin: 10px auto;
  }
}

@media (max-width: 475px) {
  .wrapper-banner {
    flex-wrap: wrap;
  }

  .wrapper-banner .banner:hover .wrap-img {
    margin: 0;
  }

  .catalog-links h3 {
    margin: 0;
  }

  .wrapper-banner .banner {
    width: 100%;
    max-width: 100px;
    height: auto;
  }
}</pre></body></html>