

/* Start:/taktik-neo/styles.css?17378130885459*/
html,
body {
  height: 100%;
  font: 20px/1.2 sans-serif;
  color: black;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}
@keyframes fade-in-top {
  from {
    transform: translateY(-100px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.anim-fit {
  opacity: 0;
}
.anim-fit.anim--shown {
  animation: fade-in-top 1000ms ease 1;
  animation-fill-mode: forwards;
}
@keyframes fade-in-bottom {
  from {
    transform: translateY(100px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.anim-fib {
  opacity: 0;
}
.anim-fib.anim--shown {
  animation: fade-in-bottom 1000ms ease 1;
  animation-fill-mode: forwards;
}
@keyframes fade-in-left {
  from {
    transform: translateX(-100px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
.anim-fil {
  opacity: 0;
}
.anim-fil.anim--shown {
  animation: fade-in-left 1000ms ease 1;
  animation-fill-mode: forwards;
}
@keyframes fade-in-right {
  from {
    transform: translateX(100px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
.anim-fir {
  opacity: 0;
}
.anim-fir.anim--shown {
  animation: fade-in-right 1000ms ease 1;
  animation-fill-mode: forwards;
}
@keyframes fade-in-zoom {
  from {
    transform: scale(1.5);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
.anim-fiz {
  opacity: 0;
}
.anim-fiz.anim--shown {
  animation: fade-in-zoom 1000ms ease 1;
  animation-fill-mode: forwards;
}
.mxw {
  max-width: 800px !important;
}
.neo-feedback-btns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
}
.neo-section--bg {
  background: var(--light-grey-color);
}
.neo-section--pt {
  padding-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .neo-section--pt {
    padding-top: 4rem;
  }
}
.neo-section--pb {
  padding-bottom: 2.5rem;
}
@media screen and (min-width: 768px) {
  .neo-section--pb {
    padding-bottom: 4rem;
  }
}
.neo-banner {
  position: relative;
  padding-top: 0;
  background: black;
}
.neo-banner__shadow {
  position: absolute;
  z-index: 1;
  left: 0;
  right: 0;
  top: 0;
  height: 50%;
  background: linear-gradient(to bottom, black, rgba(0, 0, 0, 0.8) 10%, rgba(0, 0, 0, 0.5), transparent);
}
@keyframes blur-in {
  from {
    filter: blur(20px);
    opacity: 0;
  }
  to {
    filter: none;
    opacity: 1;
  }
}
.neo-banner__img {
  display: block;
  width: 100%;
  height: auto;
  min-height: 600px;
  max-height: 100vh;
  aspect-ratio: 2;
  object-fit: cover;
  animation: blur-in 1000ms ease 1;
  animation-fill-mode: forwards;
}
.neo-banner__heading {
  position: absolute;
  z-index: 2;
  width: 100%;
  top: 50px;
  font-family: var(--header-fonts-family), sans-serif;
  text-align: center;
  color: white;
  text-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}
.neo-banner__title {
  font-size: 80px;
  font-weight: bold;
  line-height: 1;
}
.neo-banner__subtitle {
  font-size: 32px;
  line-height: 1.1;
}
.neo-banner__btns {
  position: absolute;
  z-index: 2;
  width: 100%;
  bottom: 15%;
  text-align: center;
}
.neo-abstract {
  font-family: var(--header-fonts-family), sans-serif;
  font-size: 1.333rem;
  line-height: 1.333;
}
.neo-abstract p + p {
  margin: 0.5em 0 0;
}
.neo-abstract--centered {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .neo-abstract {
    font-size: 2rem;
  }
}
.neo-basics {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.neo-basics__item {
  box-sizing: border-box;
  width: 100%;
  padding: 1.5rem;
  line-height: 1;
  border-radius: 10px;
  background: var(--light-grey-color);
}
@media screen and (min-width: 576px) {
  .neo-basics__item {
    width: calc(50% - 0.5rem);
  }
}
.neo-basics__key {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: normal;
  font-size: 0.8rem;
  color: #666;
}
.neo-basics__value {
  display: block;
  font-style: normal;
  font-family: var(--header-fonts-family), sans-serif;
  font-size: 2em;
}
@media screen and (min-width: 768px) {
  .neo-basics__value {
    font-size: 2.5rem;
  }
}
.neo-photos-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2px;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}
.neo-photos-grid .ps0,
.neo-photos-grid .ps1,
.neo-photos-grid .ps2,
.neo-photos-grid .ps3,
.neo-photos-grid .ps4 {
  background: var(--light-grey-color);
}
.neo-photos-grid .ps0 {
  width: 100%;
}
.neo-photos-grid .ps1 {
  width: calc(50% - 1px);
}
.neo-photos-grid .ps2 {
  width: calc((9 * 100% - 18 * 1px) / 13);
}
.neo-photos-grid .ps3 {
  width: calc((4 * 100% - 8 * 1px) / 13);
}
.neo-photos-grid .ps4 {
  width: calc((100% - 4 * 1px) / 3);
}
.neo-photos-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.neo-chars {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}
.neo-chars__col {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .neo-chars__col {
    width: calc(50% - 1rem);
  }
}
.neo-chars__list {
  padding-left: 0;
  list-style-type: none;
}
.neo-chars__list li {
  position: relative;
  padding: 12px 0 12px 35px;
  border-bottom: 1px solid #ccc;
}
.neo-chars__list li::before {
  content: "\f00c";
  font-family: var(--header-fonts-icons);
  position: absolute;
  color: var(--orange-color);
  left: 8px;
  top: 8px;
  font-size: 20px;
}
.neo-contacts {
  margin-top: 2rem;
  text-align: center;
}
.neo-contacts .phone-link {
  font-size: 1.5rem;
}

/* End */
/* /taktik-neo/styles.css?17378130885459 */
