@charset "UTF-8";


/*!
Animate.css - http://daneden.me/animate
Licensed under the MIT license

Copyright (c) 2013 Daniel Eden

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/


.animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}


.animated.hinge {
  animation-duration: 2s;
}


@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(-30px);
  }

  60% {
    transform: translateY(-15px);
  }
}


.bounce {
  animation-name: bounce;
}


@keyframes flash {
  0%, 50%, 100% {
    opacity: 1;
  }

  25%, 75% {
    opacity: 0;
  }
}


.flash {
  animation-name: flash;
}


/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */


@keyframes pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }

  100% {
    transform: scale(1);
  }
}


.pulse {
  animation-name: pulse;
}


@keyframes shake {
  0%, 100% {
    transform: translateX(0);
  }

  10%, 30%, 50%, 70%, 90% {
    transform: translateX(-10px);
  }

  20%, 40%, 60%, 80% {
    transform: translateX(10px);
  }
}


.shake {
  animation-name: shake;
}


@keyframes swing {
  20% {
    transform: rotate(15deg);
  }

  40% {
    transform: rotate(-10deg);
  }

  60% {
    transform: rotate(5deg);
  }

  80% {
    transform: rotate(-5deg);
  }

  100% {
    transform: rotate(0deg);
  }
}


.swing {
  transform-origin: top center;
  animation-name: swing;
}


@keyframes tada {
  0% {
    transform: scale(1);
  }

  10%, 20% {
    transform: scale(0.9) rotate(-3deg);
  }

  30%, 50%, 70%, 90% {
    transform: scale(1.1) rotate(3deg);
  }

  40%, 60%, 80% {
    transform: scale(1.1) rotate(-3deg);
  }

  100% {
    transform: scale(1) rotate(0);
  }
}


.tada {
  animation-name: tada;
}


/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */


@keyframes wobble {
  0% {
    transform: translateX(0%);
  }

  15% {
    transform: translateX(-25%) rotate(-5deg);
  }

  30% {
    transform: translateX(20%) rotate(3deg);
  }

  45% {
    transform: translateX(-15%) rotate(-3deg);
  }

  60% {
    transform: translateX(10%) rotate(2deg);
  }

  75% {
    transform: translateX(-5%) rotate(-1deg);
  }

  100% {
    transform: translateX(0%);
  }
}


.wobble {
  animation-name: wobble;
}


@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(.3);
  }

  50% {
    opacity: 1;
    transform: scale(1.05);
  }

  70% {
    transform: scale(.9);
  }

  100% {
    transform: scale(1);
  }
}


.bounceIn {
  animation-name: bounceIn;
}


@keyframes bounceInDown {
  0% {
    opacity: 0;
    transform: translateY(-2000px);
  }

  60% {
    opacity: 1;
    transform: translateY(30px);
  }

  80% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0);
  }
}


.bounceInDown {
  animation-name: bounceInDown;
}


@keyframes bounceInLeft {
  0% {
    opacity: 0;
    transform: translateX(-2000px);
  }

  60% {
    opacity: 1;
    transform: translateX(30px);
  }

  80% {
    transform: translateX(-10px);
  }

  100% {
    transform: translateX(0);
  }
}


.bounceInLeft {
  animation-name: bounceInLeft;
}


@keyframes bounceInRight {
  0% {
    opacity: 0;
    transform: translateX(2000px);
  }

  60% {
    opacity: 1;
    transform: translateX(-30px);
  }

  80% {
    transform: translateX(10px);
  }

  100% {
    transform: translateX(0);
  }
}


.bounceInRight {
  animation-name: bounceInRight;
}


@keyframes bounceInUp {
  0% {
    opacity: 0;
    transform: translateY(2000px);
  }

  60% {
    opacity: 1;
    transform: translateY(-30px);
  }

  80% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(0);
  }
}


.bounceInUp {
  animation-name: bounceInUp;
}


@keyframes bounceOut {
  0% {
    transform: scale(1);
  }

  25% {
    transform: scale(.95);
  }

  50% {
    opacity: 1;
    transform: scale(1.1);
  }

  100% {
    opacity: 0;
    transform: scale(.3);
  }
}


.bounceOut {
  animation-name: bounceOut;
}


@keyframes bounceOutDown {
  0% {
    transform: translateY(0);
  }

  20% {
    opacity: 1;
    transform: translateY(-20px);
  }

  100% {
    opacity: 0;
    transform: translateY(2000px);
  }
}


.bounceOutDown {
  animation-name: bounceOutDown;
}


@keyframes bounceOutLeft {
  0% {
    transform: translateX(0);
  }

  20% {
    opacity: 1;
    transform: translateX(20px);
  }

  100% {
    opacity: 0;
    transform: translateX(-2000px);
  }
}


.bounceOutLeft {
  animation-name: bounceOutLeft;
}


@keyframes bounceOutRight {
  0% {
    transform: translateX(0);
  }

  20% {
    opacity: 1;
    transform: translateX(-20px);
  }

  100% {
    opacity: 0;
    transform: translateX(2000px);
  }
}


.bounceOutRight {
  animation-name: bounceOutRight;
}


@keyframes bounceOutUp {
  0% {
    transform: translateY(0);
  }

  20% {
    opacity: 1;
    transform: translateY(20px);
  }

  100% {
    opacity: 0;
    transform: translateY(-2000px);
  }
}


.bounceOutUp {
  animation-name: bounceOutUp;
}


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

  100% {
    opacity: 1;
  }
}


.fadeIn {
  animation-name: fadeIn;
}


@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}


.fadeInDown {
  animation-name: fadeInDown;
}


@keyframes fadeInDownBig {
  0% {
    opacity: 0;
    transform: translateY(-2000px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}


.fadeInDownBig {
  animation-name: fadeInDownBig;
}


@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(-20px);
  }

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


.fadeInLeft {
  animation-name: fadeInLeft;
}


@keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    transform: translateX(-2000px);
  }

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


.fadeInLeftBig {
  animation-name: fadeInLeftBig;
}


@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(20px);
  }

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


.fadeInRight {
  animation-name: fadeInRight;
}


@keyframes fadeInRightBig {
  0% {
    opacity: 0;
    transform: translateX(2000px);
  }

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


.fadeInRightBig {
  animation-name: fadeInRightBig;
}


@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}


.fadeInUp {
  animation-name: fadeInUp;
}


@keyframes fadeInUpBig {
  0% {
    opacity: 0;
    transform: translateY(2000px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}


.fadeInUpBig {
  animation-name: fadeInUpBig;
}


@keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}


.fadeOut {
  animation-name: fadeOut;
}


@keyframes fadeOutDown {
  0% {
    opacity: 1;
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    transform: translateY(20px);
  }
}


.fadeOutDown {
  animation-name: fadeOutDown;
}


@keyframes fadeOutDownBig {
  0% {
    opacity: 1;
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    transform: translateY(2000px);
  }
}


.fadeOutDownBig {
  animation-name: fadeOutDownBig;
}


@keyframes fadeOutLeft {
  0% {
    opacity: 1;
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    transform: translateX(-20px);
  }
}


.fadeOutLeft {
  animation-name: fadeOutLeft;
}


@keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    transform: translateX(-2000px);
  }
}


.fadeOutLeftBig {
  animation-name: fadeOutLeftBig;
}


@keyframes fadeOutRight {
  0% {
    opacity: 1;
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    transform: translateX(20px);
  }
}


.fadeOutRight {
  animation-name: fadeOutRight;
}


@keyframes fadeOutRightBig {
  0% {
    opacity: 1;
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    transform: translateX(2000px);
  }
}


.fadeOutRightBig {
  animation-name: fadeOutRightBig;
}


@keyframes fadeOutUp {
  0% {
    opacity: 1;
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    transform: translateY(-20px);
  }
}


.fadeOutUp {
  animation-name: fadeOutUp;
}


@keyframes fadeOutUpBig {
  0% {
    opacity: 1;
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    transform: translateY(-2000px);
  }
}


.fadeOutUpBig {
  animation-name: fadeOutUpBig;
}


@keyframes flip {
  0% {
    transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    animation-timing-function: ease-out;
  }

  40% {
    transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    animation-timing-function: ease-out;
  }

  50% {
    transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    animation-timing-function: ease-in;
  }

  80% {
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);
    animation-timing-function: ease-in;
  }

  100% {
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    animation-timing-function: ease-in;
  }
}


.animated.flip {
  backface-visibility: visible;
  animation-name: flip;
}


@keyframes flipInX {
  0% {
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }

  40% {
    transform: perspective(400px) rotateX(-10deg);
  }

  70% {
    transform: perspective(400px) rotateX(10deg);
  }

  100% {
    transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
}


.flipInX {
  backface-visibility: visible !important;
  animation-name: flipInX;
}


@keyframes flipInY {
  0% {
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }

  40% {
    transform: perspective(400px) rotateY(-10deg);
  }

  70% {
    transform: perspective(400px) rotateY(10deg);
  }

  100% {
    transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }
}


.flipInY {
  backface-visibility: visible !important;
  animation-name: flipInY;
}


@keyframes flipOutX {
  0% {
    transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }

  100% {
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
}


.flipOutX {
  animation-name: flipOutX;
  backface-visibility: visible !important;
}


@keyframes flipOutY {
  0% {
    transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }

  100% {
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
}


.flipOutY {
  backface-visibility: visible !important;
  animation-name: flipOutY;
}


@keyframes lightSpeedIn {
  0% {
    transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }

  60% {
    transform: translateX(-20%) skewX(30deg);
    opacity: 1;
  }

  80% {
    transform: translateX(0%) skewX(-15deg);
    opacity: 1;
  }

  100% {
    transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }
}


.lightSpeedIn {
  animation-name: lightSpeedIn;
  animation-timing-function: ease-out;
}


@keyframes lightSpeedOut {
  0% {
    transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }

  100% {
    transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }
}


.lightSpeedOut {
  animation-name: lightSpeedOut;
  animation-timing-function: ease-in;
}


@keyframes rotateIn {
  0% {
    transform-origin: center center;
    transform: rotate(-200deg);
    opacity: 0;
  }

  100% {
    transform-origin: center center;
    transform: rotate(0);
    opacity: 1;
  }
}


.rotateIn {
  animation-name: rotateIn;
}


@keyframes rotateInDownLeft {
  0% {
    transform-origin: left bottom;
    transform: rotate(-90deg);
    opacity: 0;
  }

  100% {
    transform-origin: left bottom;
    transform: rotate(0);
    opacity: 1;
  }
}


.rotateInDownLeft {
  animation-name: rotateInDownLeft;
}


@keyframes rotateInDownRight {
  0% {
    transform-origin: right bottom;
    transform: rotate(90deg);
    opacity: 0;
  }

  100% {
    transform-origin: right bottom;
    transform: rotate(0);
    opacity: 1;
  }
}


.rotateInDownRight {
  animation-name: rotateInDownRight;
}


@keyframes rotateInUpLeft {
  0% {
    transform-origin: left bottom;
    transform: rotate(90deg);
    opacity: 0;
  }

  100% {
    transform-origin: left bottom;
    transform: rotate(0);
    opacity: 1;
  }
}


.rotateInUpLeft {
  animation-name: rotateInUpLeft;
}


@keyframes rotateInUpRight {
  0% {
    transform-origin: right bottom;
    transform: rotate(-90deg);
    opacity: 0;
  }

  100% {
    transform-origin: right bottom;
    transform: rotate(0);
    opacity: 1;
  }
}


.rotateInUpRight {
  animation-name: rotateInUpRight;
}


@keyframes rotateOut {
  0% {
    transform-origin: center center;
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    transform-origin: center center;
    transform: rotate(200deg);
    opacity: 0;
  }
}


.rotateOut {
  animation-name: rotateOut;
}


@keyframes rotateOutDownLeft {
  0% {
    transform-origin: left bottom;
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    transform-origin: left bottom;
    transform: rotate(90deg);
    opacity: 0;
  }
}


.rotateOutDownLeft {
  animation-name: rotateOutDownLeft;
}


@keyframes rotateOutDownRight {
  0% {
    transform-origin: right bottom;
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    transform-origin: right bottom;
    transform: rotate(-90deg);
    opacity: 0;
  }
}


.rotateOutDownRight {
  animation-name: rotateOutDownRight;
}


@keyframes rotateOutUpLeft {
  0% {
    transform-origin: left bottom;
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    transform-origin: left bottom;
    transform: rotate(-90deg);
    opacity: 0;
  }
}


.rotateOutUpLeft {
  animation-name: rotateOutUpLeft;
}


@keyframes rotateOutUpRight {
  0% {
    transform-origin: right bottom;
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    transform-origin: right bottom;
    transform: rotate(90deg);
    opacity: 0;
  }
}


.rotateOutUpRight {
  animation-name: rotateOutUpRight;
}


@keyframes slideInDown {
  0% {
    opacity: 0;
    transform: translateY(-2000px);
  }

  100% {
    transform: translateY(0);
  }
}


.slideInDown {
  animation-name: slideInDown;
}


@keyframes slideInLeft {
  0% {
    opacity: 0;
    transform: translateX(-2000px);
  }

  100% {
    transform: translateX(0);
  }
}


.slideInLeft {
  animation-name: slideInLeft;
}


@keyframes slideInRight {
  0% {
    opacity: 0;
    transform: translateX(2000px);
  }

  100% {
    transform: translateX(0);
  }
}


.slideInRight {
  animation-name: slideInRight;
}


@keyframes slideOutLeft {
  0% {
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    transform: translateX(-2000px);
  }
}


.slideOutLeft {
  animation-name: slideOutLeft;
}


@keyframes slideOutRight {
  0% {
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    transform: translateX(2000px);
  }
}


.slideOutRight {
  animation-name: slideOutRight;
}


@keyframes slideOutUp {
  0% {
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    transform: translateY(-2000px);
  }
}


.slideOutUp {
  animation-name: slideOutUp;
}


@keyframes hinge {
  0% {
    transform: rotate(0);
    transform-origin: top left;
    animation-timing-function: ease-in-out;
  }

  20%, 60% {
    transform: rotate(80deg);
    transform-origin: top left;
    animation-timing-function: ease-in-out;
  }

  40% {
    transform: rotate(60deg);
    transform-origin: top left;
    animation-timing-function: ease-in-out;
  }

  80% {
    transform: rotate(60deg) translateY(0);
    opacity: 1;
    transform-origin: top left;
    animation-timing-function: ease-in-out;
  }

  100% {
    transform: translateY(700px);
    opacity: 0;
  }
}


.hinge {
  animation-name: hinge;
}


/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */


@keyframes rollIn {
  0% {
    opacity: 0;
    transform: translateX(-100%) rotate(-120deg);
  }

  100% {
    opacity: 1;
    transform: translateX(0px) rotate(0deg);
  }
}


.rollIn {
  animation-name: rollIn;
}


/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */


@keyframes rollOut {
  0% {
    opacity: 1;
    transform: translateX(0px) rotate(0deg);
  }

  100% {
    opacity: 0;
    transform: translateX(100%) rotate(120deg);
  }
}


.rollOut {
  animation-name: rollOut;
}


/**
 * Swiper 10.0.3
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2023 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: July 3, 2023
 */


@font-face {
  font-family: "swiper-icons";
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA") format("woff");
  font-weight: 400;
  font-style: normal;
}


:root {
  --swiper-theme-color: #007aff;
  /*
  --swiper-preloader-color: var(--swiper-theme-color);
  --swiper-wrapper-transition-timing-function: initial;
  */
}


:host {
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}


.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  overflow: clip;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
  display: block;
}


.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}


.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  box-sizing: content-box;
}


.swiper-android .swiper-slide,
.swiper-ios .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}


.swiper-horizontal {
  touch-action: pan-y;
}


.swiper-vertical {
  touch-action: pan-x;
}


.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
  display: block;
}


.swiper-slide-invisible-blank {
  visibility: hidden;
}


/* Auto Height */


.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}


.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}


.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  backface-visibility: hidden;
}


/* 3D Effects */


.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}


.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}


.swiper-3d {
  perspective: 1200px;
}


.swiper-3d .swiper-slide,
.swiper-3d .swiper-cube-shadow {
  transform-style: preserve-3d;
}


/* CSS Mode */


.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none; /* For Firefox */
  -ms-overflow-style: none; /* For Internet Explorer and Edge */
}


.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}


.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}


.swiper-css-mode.swiper-horizontal > .swiper-wrapper {
  scroll-snap-type: x mandatory;
}


.swiper-css-mode.swiper-vertical > .swiper-wrapper {
  scroll-snap-type: y mandatory;
}


.swiper-css-mode.swiper-free-mode > .swiper-wrapper {
  scroll-snap-type: none;
}


.swiper-css-mode.swiper-free-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: none;
}


.swiper-css-mode.swiper-centered > .swiper-wrapper::before {
  content: "";
  flex-shrink: 0;
  order: 9999;
}


.swiper-css-mode.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
  scroll-snap-stop: always;
}


.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  -webkit-margin-start: var(--swiper-centered-offset-before);
          margin-inline-start: var(--swiper-centered-offset-before);
}


.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}


.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  -webkit-margin-before: var(--swiper-centered-offset-before);
          margin-block-start: var(--swiper-centered-offset-before);
}


.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}


/* Slide styles start */


/* 3D Shadows */


.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}


.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}


.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}


.swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}


.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}


.swiper-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}


.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}


.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader,
.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader {
  animation: swiper-preloader-spin 1s infinite linear;
}


.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}


.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}


@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}


/* Slide styles end */


.entry-content {
  overflow-y: hidden;
}


/*
* MOBILE MENU
*/


.mobile_menu {
  position: fixed;
  top: 0;
  max-width: 450px;
  width: 100%;
  height: 100vh;
  background: #ffffff;
  z-index: 9999;
  padding: 15px 25px;
  right: calc(-100% - 50px);
  transition: all 0.5s cubic-bezier(0.35, 0.17, 0.36, 1);
  -webkit-transition: all 0.5s cubic-bezier(0.35, 0.17, 0.36, 1);
  -moz-transition: all 0.5s cubic-bezier(0.35, 0.17, 0.36, 1);
  -ms-transition: all 0.5s cubic-bezier(0.35, 0.17, 0.36, 1);
  -o-transition: all 0.5s cubic-bezier(0.35, 0.17, 0.36, 1);
  opacity: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  flex-wrap: nowrap;
  border: 2px solid #1c1c1c;
  border-top-left-radius: 2.5rem;
  border-bottom-left-radius: 2.5rem;
  overflow: scroll;
}


.mobile_menu.show {
  right: 0;
  opacity: 1;
}


.mobile_menu .mobile_menu__top {
  display: flex;
  align-items: center;
  margin: 2.5rem 0 1rem;
  justify-content: space-between;
}


.mobile_menu .mobile_menu__top .mobile_menu__top_logo {
  font-size: 24px;
  font-family: "NeueMachina";
  margin: 0;
}


.mobile_menu .mobile_menu__top_close {
  position: relative;
  width: 60px;
  height: 60px;
  cursor: pointer;
}


.mobile_menu .mobile_menu__top_close span:nth-child(1) {
  position: absolute;
  width: 34px;
  height: 2px;
  background: #000000;
  top: 50%;
  right: 0;
  transform: translate(0, -50%) rotate(45deg);
  -webkit-transform: translate(0, -50%) rotate(45deg);
  -moz-transform: translate(0, -50%) rotate(45deg);
  -ms-transform: translate(0, -50%) rotate(45deg);
  -o-transform: translate(0, -50%) rotate(45deg);
}


.mobile_menu .mobile_menu__top_close span:nth-child(2) {
  position: absolute;
  width: 34px;
  height: 2px;
  background: #000000;
  top: 50%;
  right: 0;
  transform: translate(0, -50%) rotate(-45deg);
  -webkit-transform: translate(0, -50%) rotate(-45deg);
  -moz-transform: translate(0, -50%) rotate(-45deg);
  -ms-transform: translate(0, -50%) rotate(-45deg);
  -o-transform: translate(0, -50%) rotate(-45deg);
}


.mobile_menu .mobile_menu__wrapper {
  position: relative;
  margin: 24px 0;
}


.mobile_menu .mobile_menu__wrapper .menu_section {
  position: relative;
  margin: 12px 0 12px;
}


.mobile_menu .mobile_menu__wrapper .menu_section .menu_section__title {
  font-size: 18px;
  font-family: "NeueMachina";
  color: #9a9a9a;
  margin-bottom: 12px;
}


.mobile_menu .mobile_menu__wrapper .menu_section .menu_section__items .menu_item a {
  display: block;
  font-size: 18px;
  color: #1c1c1c;
  font-weight: 500;
  margin: 5px 0 5px;
}


.mobile_menu .mobile_menu__wrapper .menu_section .menu_item__primary a {
  display: block;
  color: #1c1c1c;
  font-size: 21px;
  font-family: "NeueMachina";
  display: flex;
  align-items: center;
  gap: 24px;
  justify-content: space-between;
}


.mobile_menu .mobile_menu__wrapper .menu_section .menu_section__address {
  font-weight: 300;
  font-size: 15px;
  max-width: 240px;
  margin-bottom: 12px;
}


.mobile_menu .mobile_menu__wrapper .menu_section .menu_section__phones a {
  display: block;
  font-size: 24px;
  font-weight: 700;
  color: #23d5ab;
  line-height: 1.3;
  font-family: "NeueMachina";
}


.mobile_menu .mobile_menu__wrapper .menu_section .menu_section__phones .phones_desc {
  font-weight: 300;
  font-size: 15px;
  margin-top: 12px;
  margin-bottom: 12px;
}


.mobile_menu .mobile_menu__wrapper .menu_section .menu_section__hours .hours_item {
  display: block;
  font-size: 24px;
  font-weight: 700;
  color: #23d5ab;
  line-height: 1.3;
  font-family: "NeueMachina";
  margin-top: 24px;
}


.mobile_menu .mobile_menu__wrapper .menu_section .menu_section__hours .hours_desc {
  font-weight: 300;
  font-size: 15px;
  margin-top: 12px;
  margin-bottom: 12px;
}


/*
* FOOTER
*/


footer {
  background: #1c1c1c;
  border-radius: 2.5rem 2.5rem 0 0;
}


footer .footer {
  border: 3px solid #1c1b18;
  border-left: 0px;
  border-right: 0px;
  border-bottom: none;
  border-radius: 2.5rem 2.5rem 0 0;
  padding: 80px 0 17px;
  background: #ffffff;
}


@media (max-width: 768px) {
  footer .footer .footer_column {
    margin-bottom: 24px;
  }
}


footer .footer .column_title {
  border-bottom: 2px solid #2b2b2a;
  font-family: "NeueMachina";
  font-size: 40px;
  font-weight: 700;
  line-height: 120%;
  margin-bottom: 12px;
  padding-bottom: 16px;
  text-transform: uppercase;
}


@media (max-width: 768px) {
  footer .footer .column_title {
    font-size: 24px;
  }
}


footer .footer .column_content .footer_menu {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
}


footer .footer .column_content .footer_menu li a {
  color: #000000;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: block;
  margin: 10px 0 0;
  font-weight: 500;
}


footer .footer .column_content .menu_section__address {
  font-weight: 300;
  font-size: 15px;
  max-width: 240px;
  margin-bottom: 12px;
}


footer .footer .column_content .menu_section__phones a {
  display: block;
  font-size: 24px;
  font-weight: 700;
  color: #23d5ab;
  line-height: 1.3;
  font-family: "NeueMachina";
}


footer .footer .column_content .menu_section__phones .phones_desc {
  font-weight: 300;
  font-size: 15px;
  margin-top: 12px;
  margin-bottom: 12px;
}


footer .footer .column_content .menu_section__hours .hours_item {
  display: block;
  font-size: 24px;
  font-weight: 700;
  color: #23d5ab;
  line-height: 1.3;
  font-family: "NeueMachina";
  margin-top: 24px;
}


footer .footer .column_content .menu_section__hours .hours_desc {
  font-weight: 300;
  font-size: 15px;
  margin-top: 12px;
  margin-bottom: 12px;
}


footer .footer .copyright {
  border-top: 2px solid #2b2b2a;
  justify-content: space-between;
  margin-top: 40px;
  padding-top: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px;
}


footer iframe {
  padding: 0px !important;
  position: relative;
  border-bottom-left-radius: 120px;
  border-bottom-right-radius: 120px;
  padding-bottom: 40px !important;
}


.title-block-home,
.title_wrap {
  overflow: hidden;
}


/*
* DEVICES
*/


.archive .devices {
  overflow: hidden;
}


@media (max-width: 768px) {
  .archive .devices {
    margin-top: 24px;
    padding-top: 12px;
  }
}


.archive .devices_wrapper__title {
  position: relative;
}


.archive .devices_wrapper__title h1 {
  font-size: 79px;
  margin-bottom: 60px;
}


.archive .devices_wrapper__title h1 span {
  display: block;
}


@media (max-width: 768px) {
  .archive .devices_wrapper__title h1 {
    font-size: 36px;
  }
}


.archive .devices_wrapper__title .devices_wrapper__background {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(-50%, -50%);
}


@media (max-width: 768px) {
  .archive .devices_wrapper__title .devices_wrapper__background {
    top: 75%;
    right: -60%;
  }
}


@media (max-width: 520px) {
  .archive .devices_wrapper__title .devices_wrapper__background {
    top: 75%;
    right: -90%;
  }
}


.items_wrapper .tabs-devices {
  justify-content: center;
  gap: 10px;
  border: 0px;
  padding-top: 20px;
  margin-bottom: 55px;
}


.items_wrapper .tabs-devices .nav-link {
  border: 2px solid;
  border-color: #1c1c1c;
  border-radius: 30px;
  color: #1c1c1c;
  padding: 15px 30px;
  min-width: 150px;
  text-align: center;
}


.items_wrapper .tabs-devices .nav-link.active, .items_wrapper .tabs-devices .nav-link:hover {
  background: #1c1c1c;
  color: #ffffff;
  border-color: #1c1c1c;
}


.items_wrapper .devices_list {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 15px;
}


.items_wrapper .devices_list .devices_list__item {
  flex: 1 220px;
  border: 2px solid #1c1c1c;
  border-radius: 30px;
  padding: 15px 0;
  box-shadow: 0 5px 7px rgba(0, 0, 0, 0.1);
}


.items_wrapper .devices_list .devices_list__item .image img {
  -o-object-fit: contain;
     object-fit: contain;
  max-height: 210px;
  padding: 15px;
}


.items_wrapper .devices_list .devices_list__item a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #1c1c1c;
  padding: 0 15px;
}


.items_wrapper .devices_list .devices_list__item a h2 {
  text-align: center;
  margin-top: 20px;
  font-size: 16px;
  min-height: 36px;
}


.items_wrapper .devices_list .devices_list__item:hover {
  background: #ececec;
}


@media (max-width: 768px) {
  .items_wrapper .devices_list .devices_list__item {
    flex: 1 150px !important;
    padding: 0px !important;
  }
  .items_wrapper .devices_list .devices_list__item a img {
    padding: 0px !important;
  }
  .items_wrapper .devices_list .devices_list__item a h2 {
    margin-top: 0px !important;
    font-size: 13px !important;
  }
}


/*
* RELATED TITLE
*/


.related__section {
  margin-bottom: 80px;
}


.related__section .section_title {
  font-family: "NeueMachina";
  margin-bottom: 80px;
  font-size: 90px;
  font-weight: 900;
}


@media (max-width: 768px) {
  .related__section .section_title {
    font-size: 41px;
    margin-bottom: 24px;
  }
}


.related__section .category_post .category_post-item .item {
  position: relative;
  color: #000000;
  display: flex;
  padding: 10px 0px 20px;
  border-bottom: 1px solid #dadada;
  font-family: "NeueMachina";
  font-size: 21px;
}


.related__section .category_post .category_post-item .item .arrow-link-icon {
  position: absolute;
  content: "";
  right: 0px;
  width: 30px;
  height: 30px;
  background: url(/wp-content/themes/mstrn-blog/assets/images/arrow-link.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  top: 50%;
  transform: translate(-50%, -50%);
}


@media (max-width: 768px) {
  .related__section .category_post .category_post-item .item {
    font-size: 16px;
  }
  .related__section .category_post .category_post-item .item .name {
    max-width: calc(100% - 40px);
  }
}


/*
* WHY WE SECTION
*/


.why_we {
  position: relative;
  margin: 80px 0 120px;
  overflow-y: hidden;
}


.why_we .why_we__wrapper .section_title {
  font-family: "NeueMachina";
  margin-bottom: 80px;
  font-size: 90px;
  font-weight: 900;
}


@media (max-width: 768px) {
  .why_we .why_we__wrapper .section_title {
    font-size: 42px;
    margin-bottom: 24px;
  }
}


.why_we .why_we__wrapper .why_we__content {
  max-width: 820px;
}


.why_we .why_we__wrapper .why_we__content .swiper_benefits {
  overflow: visible;
}


.why_we .why_we__wrapper .why_we__content .swiper_benefits .item_wrap {
  margin-right: 40px;
  height: auto;
}


.why_we .why_we__wrapper .why_we__content .swiper_benefits .item_wrap .item_content {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 24px;
  height: 100%;
}


.why_we .why_we__wrapper .why_we__content .swiper_benefits .item_wrap .item_content .content_image {
  max-width: 370px;
}


@media (max-width: 768px) {
  .why_we .why_we__wrapper .why_we__content .swiper_benefits .item_wrap .item_content .content_image {
    display: none;
  }
}


.why_we .why_we__wrapper .why_we__content .swiper_benefits .item_wrap .item_content .content_text {
  position: relative;
  border: 2px solid #1c1c1c;
  border-radius: 30px;
  padding: 2.5rem;
}


@media (max-width: 768px) {
  .why_we .why_we__wrapper .why_we__content .swiper_benefits .item_wrap .item_content .content_text {
    padding: 1.5rem;
  }
}


.why_we .why_we__wrapper .why_we__content .swiper_benefits .item_wrap .item_content .content_text .title {
  font-size: 24px;
  font-family: "NeueMachina";
  margin-bottom: 20px;
}


.why_we .why_we__wrapper .why_we__content .swiper_benefits .item_wrap .item_content .content_text .description {
  font-size: 18px;
}


@media (max-width: 768px) {
  .why_we .why_we__wrapper .why_we__content .swiper_benefits .item_wrap .item_content .content_text .description {
    font-size: 14px;
  }
}


/* FAQ */


.faq_section {
  position: relative;
  margin-top: 40px;
  background: #1c1c1c;
  padding: 80px 0;
  border-radius: 2.5rem;
  color: #ffffff;
}


.faq_section .faq_wrap {
  display: flex;
  justify-content: space-between;
}


@media (max-width: 768px) {
  .faq_section .faq_wrap {
    flex-wrap: wrap;
  }
}


.faq_section .faq_wrap .section_title {
  font-family: "NeueMachina";
  margin-bottom: 80px;
  font-size: 90px;
  font-weight: 900;
  color: #ffffff;
}


@media (max-width: 768px) {
  .faq_section .faq_wrap .section_title {
    margin-bottom: 24px;
    font-size: 40px;
  }
}


.faq_section .faq_wrap .text_wrap {
  flex: 0 0 auto;
  padding-left: 10px;
  padding-right: 24px;
  width: 50%;
  font-size: 24px;
  font-weight: 400;
  line-height: 140%;
}


@media (max-width: 768px) {
  .faq_section .faq_wrap .text_wrap {
    width: 100%;
    font-size: 14px;
    margin-bottom: 24px;
  }
}


.faq_section .faq_inner .faq_inner-content-question-inner {
  font-family: "NeueMachina";
}


.faq_section .faq_inner .faq_inner-content {
  border-top: 2px solid rgba(255, 255, 255, 0.1);
}


.faq_section .faq_inner .faq_inner-content .faq_inner-content-question-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0px;
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 10px;
}


.faq_section .faq_inner .faq_inner-content:last-child {
  border-bottom: 0px;
}


.vallenato-header {
  overflow: hidden;
  margin-top: 5px;
}


.vallenato-header:hover {
  cursor: pointer;
}


.vallenato-content {
  overflow: hidden;
  padding: 10px 0 30px;
  display: none;
}


.faq_inner-content-question-inner {
  font-weight: 600;
}


.faq_inner-content-icon {
  position: relative;
  min-width: 50px;
  min-height: 50px;
  border: 2px solid #ffffff;
  border-radius: 50%;
}


.faq_inner-content-icon span {
  position: absolute;
  content: "";
  width: 16px;
  height: 2px;
  background: #ffffff;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}


.faq_inner-content-icon span:before {
  display: block;
  position: absolute;
  content: "";
  width: 2px;
  height: 15px;
  background: #ffffff;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}


.vallenato-active .faq_inner-content-icon span:before {
  display: none;
}


/*
  * SEO
  */


.seo_content {
  position: relative;
  border: 2px solid #ececec;
  border-radius: 2.5rem;
  padding: 2.5rem;
  max-height: 450px;
  overflow: scroll;
  margin: 40px 0 80px;
}


@media (max-width: 768px) {
  .seo_content {
    padding: 1.5rem;
  }
  .seo_content h1 {
    font-size: 24px;
  }
  .seo_content h2 {
    font-size: 21px;
  }
  .seo_content h3 {
    font-size: 18px;
  }
}


/*
* CALL TO ACTION BLOCK
*/


.cta_section {
  position: relative;
  margin: 80px 0 0;
  padding: 90px 0 50px;
  background: #1c1c1c;
  border-radius: 2.5rem;
  color: #ffffff;
  overflow: hidden;
}


.cta_section .divider {
  position: absolute;
  content: "";
  height: 300%;
  top: -50%;
  left: -50px;
  border-right: 1px solid #ffffff;
  opacity: 0.05;
}


.cta_section .section_title {
  font-family: "NeueMachina";
  margin-bottom: 80px;
  font-size: 90px;
  font-weight: 900;
  color: #ffffff;
}


@media (max-width: 768px) {
  .cta_section .section_title {
    font-size: 41px;
    margin-bottom: 24px;
  }
}


.cta_section form .form_group {
  background: transparent;
  margin-bottom: 20px;
}


.cta_section form .form_group .form_label {
  background: transparent;
  display: block;
  height: 100%;
  margin-bottom: 4px;
  position: relative;
  width: 100%;
}


.cta_section form .form_group .form_label .form-control {
  width: 100%;
  background: transparent;
  border: 1px solid #ffffff;
  box-shadow: none;
  outline: none;
  padding: 18px 0px 10px 24px;
  border-radius: 40px;
  color: #ffffff;
  position: relative;
  height: 100%;
  font-size: 18px;
  z-index: 10;
  height: 70px;
}


.cta_section form .form_group .form_label .form-control::-webkit-input-placeholder, .cta_section form .form_group .form_label .form-control::-moz-placeholder, .cta_section form .form_group .form_label .form-control:-moz-placeholder, .cta_section form .form_group .form_label .form-control:-ms-input-placeholder {
  font-weight: 500;
  font-size: 100%;
  line-height: 120%;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}


.cta_section form .form_group .form_label .form-control:focus, .cta_section form .form_group .form_label .form-control.focus {
  border-color: #23d5ab;
  outline: none;
  box-shadow: none;
  background: transparent;
}


.cta_section form .form_group .form_label .form-control:not(:-moz-placeholder-shown) ~ .form_label__text {
  top: 10px;
  font-size: 12px;
  line-height: 100%;
  text-transform: initial;
}


.cta_section form .form_group .form_label .form-control.focus-visible ~ .form_label__text, .cta_section form .form_group .form_label .form-control:focus ~ .form_label__text, .cta_section form .form_group .form_label .form-control:not(:placeholder-shown) ~ .form_label__text {
  top: 10px;
  font-size: 12px;
  line-height: 100%;
  text-transform: initial;
}


.cta_section form .form_group .form_label .form-control:-webkit-autofill ~ .form_label__text {
  top: 10px;
  font-size: 12px;
  line-height: 100%;
  z-index: 10;
  text-transform: initial;
}


.cta_section form .form_group .form_label .form-control:-webkit-autofill, .cta_section form .form_group .form_label .form-control:-webkit-autofill:focus, .cta_section form .form_group .form_label .form-control:-webkit-autofill:hover {
  border: none;
}


.cta_section form .form_group .form_label .form_label__text {
  color: #ffffff;
  font-size: 100%;
  font-weight: 500;
  left: 24px;
  letter-spacing: -0.02em;
  line-height: 120%;
  max-width: 100%;
  opacity: 0.5;
  overflow: hidden;
  position: absolute;
  text-overflow: ellipsis;
  top: 24px;
  transition: top 0.2s ease, color 0.2s ease, font-size 0.2s ease;
  white-space: nowrap;
  z-index: 5;
}


.cta_section form .form_group.submit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}


.cta_section form .form_group.submit .submit_description {
  flex: 1 360px;
  font-size: 16px;
  color: #ffffff;
  opacity: 0.5;
  letter-spacing: 0.2px;
  font-weight: 300;
  padding-right: 24px;
}


.cta_section form .form_group.submit .wpcf7-spinner {
  position: absolute;
  visibility: hidden;
  display: none;
}


.cta_section form .form_group.submit .wpcf7-submit {
  flex: 1 120px;
  border: 0px;
  padding: 14px 24px 12px;
  border-radius: 40px;
  background: #23d5ab;
  font-size: 18px;
  font-family: "NeueMachina";
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}


.cta_section form .form_group.submit .wpcf7-submit:hover {
  background: #e73c7e;
}


.cta_section .cta_info__inner_item {
  position: relative;
  display: block;
  margin: 0 0 24px;
}


.cta_section .cta_info__inner_item .item_content {
  font-size: 24px;
  font-weight: 700;
  color: #23d5ab;
  margin-bottom: 12px;
  line-height: 1.3;
  font-family: "NeueMachina";
}


.cta_section .cta_info__inner_item .item_description {
  font-weight: 300;
  font-size: 15px;
  opacity: 0.9;
}


.cta_section .cta_button__wrapper {
  position: relative;
  text-align: center;
  padding-top: 24px;
}


.cta_section .cta_button__wrapper a {
  position: relative;
  color: #ffffff;
  display: flex;
  border: 0.5px solid rgba(255, 255, 255, 0.5019607843);
  padding: 18px;
  border-radius: 50px;
  align-items: center;
  justify-content: center;
  gap: 24px;
  font-size: 16px;
  transition: all 1.15s slide;
  -webkit-transition: all 1.15s slide;
  -moz-transition: all 1.15s slide;
  -ms-transition: all 1.15s slide;
  -o-transition: all 1.15s slide;
}


.cta_section .cta_button__wrapper a:hover {
  background: #ffffff;
  color: #000000;
  text-decoration: none;
}


.cta_section .cta_button__wrapper a:hover svg {
  stroke: #000000;
}


/*
*
*/


.pricing_block {
  position: relative;
  margin-top: 40px;
  margin-bottom: 7rem;
}


.pricing_block .section_title {
  font-family: "NeueMachina";
  margin-bottom: 36px;
  font-size: 52px;
  font-weight: 900;
}


@media (max-width: 768px) {
  .pricing_block .section_title {
    font-size: 38px;
  }
}


.pricing_block .pricing_table__wrapper {
  width: 100%;
  max-height: 665px;
  overflow-y: scroll;
  box-shadow: 0 0.625rem 2.188rem rgba(0, 0, 0, 0.05);
  border: 2px solid #1c1c1c;
  border-radius: 30px;
}


@media (max-width: 768px) {
  .pricing_block .pricing_table__wrapper {
    max-height: 100%;
    overflow-y: hidden;
    margin-bottom: 24px;
  }
}


.pricing_block .pricing_table__wrapper .pricing_table {
  width: 100%;
}


.pricing_block .pricing_table__wrapper .pricing_table .pricing_table-head tr td {
  padding: 16px 24px;
  background: #e8edf1;
  position: sticky;
  top: 0;
  font-family: "NeueMachina";
}


.pricing_block .pricing_table__wrapper .pricing_table tbody tr td {
  padding: 8px 24px;
  border-bottom: 1px solid #e8edf1;
  font-size: 16px;
}


.pricing_block .pricing_table__wrapper .pricing_table tbody tr td .table_service_name {
  font-size: 16px;
  font-weight: 600;
}


.pricing_block .pricing_table__wrapper .pricing_table tbody tr td .table_service_desc {
  font-size: 14px;
  line-height: 1.3;
  margin-top: 2px;
  color: #767676;
}


.pricing_block .after_pricing_cta {
  position: relative;
  background: #1c1c1c;
  padding: 24px;
  border-radius: 2.5rem;
  color: #ffffff;
}


.pricing_block .after_pricing_cta .form_wrapper__title {
  margin: 24px 0;
}


.pricing_block .after_pricing_cta .form_wrapper__title h3 {
  color: #ffffff;
  text-align: center;
}


.pricing_block .after_pricing_cta .form_wrapper__subtitle {
  text-transform: uppercase;
  text-align: center;
  margin: 0 0 24px;
}


.pricing_block .after_pricing_cta .form_wrapper__contacts {
  margin-bottom: 24px;
}


.pricing_block .after_pricing_cta .form_wrapper__contacts a {
  color: #23d5ab;
  display: block;
  font-size: 24px;
  font-family: "NeueMachina";
  line-height: 1.3;
}


.pricing_block .after_pricing_cta .divider {
  text-align: center;
  position: relative;
  opacity: 0.6;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  background: #1c1c1c;
  margin-bottom: 24px;
}


.pricing_block .after_pricing_cta .divider:before {
  position: absolute;
  content: "";
  width: 110px;
  height: 1px;
  background: #ffffff;
  top: 50%;
  left: -80px;
  z-index: -1;
  transform: translate(-50%, -50%);
}


.pricing_block .after_pricing_cta .divider:after {
  position: absolute;
  content: "";
  width: 110px;
  height: 1px;
  background: #ffffff;
  top: 50%;
  left: 110px;
  z-index: -1;
  transform: translate(-50%, -50%);
}


.pricing_block .after_pricing_cta .form_content__title {
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 24px;
}


.pricing_block .after_pricing_cta form .form_group {
  background: transparent;
  margin-bottom: 20px;
}


.pricing_block .after_pricing_cta form .form_group .form_label {
  background: transparent;
  display: block;
  height: 100%;
  margin-bottom: 4px;
  position: relative;
  width: 100%;
}


.pricing_block .after_pricing_cta form .form_group .form_label .form-control {
  width: 100%;
  background: transparent;
  border: 1px solid #ffffff;
  box-shadow: none;
  outline: none;
  padding: 18px 0px 10px 24px;
  border-radius: 40px;
  color: #ffffff;
  position: relative;
  height: 100%;
  font-size: 18px;
  z-index: 10;
  height: 70px;
}


.pricing_block .after_pricing_cta form .form_group .form_label .form-control::-webkit-input-placeholder, .pricing_block .after_pricing_cta form .form_group .form_label .form-control::-moz-placeholder, .pricing_block .after_pricing_cta form .form_group .form_label .form-control:-moz-placeholder, .pricing_block .after_pricing_cta form .form_group .form_label .form-control:-ms-input-placeholder {
  font-weight: 500;
  font-size: 100%;
  line-height: 120%;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}


.pricing_block .after_pricing_cta form .form_group .form_label .form-control:focus, .pricing_block .after_pricing_cta form .form_group .form_label .form-control.focus {
  border-color: #23d5ab;
  outline: none;
  box-shadow: none;
  background: transparent;
}


.pricing_block .after_pricing_cta form .form_group .form_label .form-control:not(:-moz-placeholder-shown) ~ .form_label__text {
  top: 10px;
  font-size: 12px;
  line-height: 100%;
  text-transform: initial;
}


.pricing_block .after_pricing_cta form .form_group .form_label .form-control.focus-visible ~ .form_label__text, .pricing_block .after_pricing_cta form .form_group .form_label .form-control:focus ~ .form_label__text, .pricing_block .after_pricing_cta form .form_group .form_label .form-control:not(:placeholder-shown) ~ .form_label__text {
  top: 10px;
  font-size: 12px;
  line-height: 100%;
  text-transform: initial;
}


.pricing_block .after_pricing_cta form .form_group .form_label .form-control:-webkit-autofill ~ .form_label__text {
  top: 10px;
  font-size: 12px;
  line-height: 100%;
  z-index: 10;
  text-transform: initial;
}


.pricing_block .after_pricing_cta form .form_group .form_label .form-control:-webkit-autofill, .pricing_block .after_pricing_cta form .form_group .form_label .form-control:-webkit-autofill:focus, .pricing_block .after_pricing_cta form .form_group .form_label .form-control:-webkit-autofill:hover {
  border: none;
}


.pricing_block .after_pricing_cta form .form_group .form_label .form_label__text {
  color: #ffffff;
  font-size: 100%;
  font-weight: 500;
  left: 24px;
  letter-spacing: -0.02em;
  line-height: 120%;
  max-width: 100%;
  opacity: 0.5;
  overflow: hidden;
  position: absolute;
  text-overflow: ellipsis;
  top: 24px;
  transition: top 0.2s ease, color 0.2s ease, font-size 0.2s ease;
  white-space: nowrap;
  z-index: 5;
}


.pricing_block .after_pricing_cta form .form_group.submit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}


.pricing_block .after_pricing_cta form .form_group.submit .submit_description {
  flex: 1 360px;
  font-size: 16px;
  color: #ffffff;
  opacity: 0.5;
  letter-spacing: 0.2px;
  font-weight: 300;
  padding-right: 24px;
}


.pricing_block .after_pricing_cta form .form_group.submit .wpcf7-spinner {
  position: absolute;
  visibility: hidden;
  display: none;
}


.pricing_block .after_pricing_cta form .form_group.submit .wpcf7-submit {
  flex: 1 120px;
  border: 0px;
  padding: 14px 24px 12px;
  border-radius: 40px;
  background: #23d5ab;
  font-size: 18px;
  font-family: "NeueMachina";
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}


.pricing_block .after_pricing_cta form .form_group.submit .wpcf7-submit:hover {
  background: #e73c7e;
}


.stages_wrapper {
  position: relative;
  margin-top: 40px;
}


.stages_wrapper .title-block-home {
  margin-bottom: 60px;
}


.stages_wrapper .title-block-home .section-title h2 {
  font-size: 90px;
  font-weight: 900;
}


@media (max-width: 768px) {
  .stages_wrapper .title-block-home .section-title h2 {
    font-size: 42px;
  }
}


@media (max-width: 768px) {
  .stages_wrapper .stage_items .stage_items__image {
    margin-bottom: 24px;
  }
}


.stages_wrapper .stage_items .stage-item {
  color: #1c1b18;
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  padding-left: 43px;
  position: relative;
  text-transform: uppercase;
}


@media (max-width: 768px) {
  .stages_wrapper .stage_items .stage-item {
    padding-left: 0px;
  }
}


.stages_wrapper .stage_items .stage-item .stages_content_wrapper {
  border-bottom: 2px solid #2b2b2a;
  margin-bottom: 30px;
  padding-bottom: 30px;
  padding-left: 0;
}


@media (max-width: 768px) {
  .stages_wrapper .stage_items .stage-item .stages_content_wrapper {
    padding-bottom: 12px;
    margin-bottom: 12px;
  }
}


.stages_wrapper .stage_items .stage-item .stage_title {
  font-family: "NeueMachina";
}


@media (max-width: 768px) {
  .stages_wrapper .stage_items .stage-item .stage_title {
    font-size: 24px;
    line-height: 1.3;
  }
}


.stages_wrapper .stage_items .stage-item .stage_description {
  display: block;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 27px;
  margin-top: 10px;
  text-transform: none;
}


@media (max-width: 768px) {
  .stages_wrapper .stage_items .stage-item .stage_description {
    font-size: 14px;
    line-height: 1.4;
  }
}


.related-items-category {
  position: relative;
  margin: 5rem 0 5rem;
  background: #1c1c1c;
  padding: 6rem 0 6rem;
  border-radius: 2.5rem;
  overflow: hidden;
}


.related-items-category .related_wrap {
  display: flex;
  justify-content: space-between;
}


@media (max-width: 768px) {
  .related-items-category .related_wrap {
    flex-wrap: wrap;
    gap: 24px;
  }
}


.related-items-category .related_wrap .section_title {
  font-family: "NeueMachina";
  margin-bottom: 80px;
  font-size: 52px;
  font-weight: 900;
  color: #ffffff;
}


@media (max-width: 768px) {
  .related-items-category .related_wrap .section_title {
    font-size: 36px;
    margin-bottom: 24px;
  }
}


.related-items-category .related_wrap .text_wrap {
  flex: 0 0 auto;
  padding-left: 10px;
  padding-right: 24px;
  width: 50%;
  font-size: 24px;
  font-weight: 400;
  line-height: 140%;
  color: #ffffff;
  max-width: 500px;
}


@media (max-width: 768px) {
  .related-items-category .related_wrap .text_wrap {
    width: 100%;
    font-size: 14px;
    margin-bottom: 24px;
  }
}


.related-items-category .single_slider {
  overflow: visible;
  margin: 0.5rem 0 3rem;
}


.related-items-category .single_slider .posts_archive-related .post-item a {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  border: 2px solid rgba(255, 255, 255, 0.1882352941);
  padding: 24px;
  border-radius: 2.5rem;
  background: rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}


.related-items-category .single_slider .posts_archive-related .post-item a .name {
  font-size: 16px;
  font-family: "NeueMachina";
  color: #ffffff;
}


.related-items-category .single_slider .posts_archive-related .post-item a .image img {
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
  height: 100%;
  display: block;
  max-height: 210px;
}


.related-items-category .single_slider .posts_archive-related .post-item a:hover {
  background: rgba(255, 255, 255, 0.25);
  text-decoration: none;
}


@media (max-width: 768px) {
  .related-items-category .single_slider .posts_archive-related .post-item a {
    padding: 14px;
    border-radius: 1.5rem;
  }
}


.single-android .before_title_wrap {
  padding-bottom: 0;
}


.single-android .models_list__wrapper {
  position: sticky;
  top: 15px;
  padding: 2.5rem;
  border: 2px solid #1c1c1c;
  border-radius: 2.4rem;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
}


@media (max-width: 768px) {
  .single-android .models_list__wrapper {
    margin-bottom: 40px;
  }
}


.single-android .models_list__wrapper .models_list__item {
  flex: 1 190px;
  font-size: 18px;
  font-family: "NeueMachina";
  margin: 0 0 12px;
}


.single-android .models_list__wrapper .models_list__item span {
  margin-right: 5px;
}


.single-android .stages_wrapper .stage_items .stage-item {
  font-size: 32px;
}


/*
* SINGLE POST
*/


.single-post .content-container .entry-content {
  overflow: visible;
}


.single-post .content-container .entry-content .main_content {
  position: relative;
  padding: 5rem 0;
  z-index: 1;
  overflow: clip;
}


@media (max-width: 768px) {
  .single-post .content-container .entry-content .main_content {
    padding: 2rem 0;
  }
}


.single-post .content-container .entry-content .main_content:before {
  position: absolute;
  content: "";
  width: 200%;
  height: 100%;
  left: -50%;
  top: 0;
  background: #f2f5f7;
  z-index: -1;
}


.single-post .content-container .entry-content .before_content_cta {
  position: relative;
  margin: 5rem 0;
  border-top: 1px solid rgba(28, 28, 28, 0.1254901961);
  padding: 3rem 0;
  overflow: clip;
}


@media (max-width: 768px) {
  .single-post .content-container .entry-content .before_content_cta {
    margin: 2rem 0 0;
    padding: 1rem 0 0;
  }
}


.single-post .content-container .entry-content .before_content_cta .button_content {
  position: sticky;
  top: 50px;
}


.single-post .content-container .entry-content .before_content_cta .button_content:before {
  position: absolute;
  content: "";
  width: 1px;
  height: 500%;
  background: rgba(28, 28, 28, 0.1254901961);
  right: 0;
  top: -80px;
}


@media (max-width: 768px) {
  .single-post .content-container .entry-content .before_content_cta .button_content:before {
    display: none;
  }
}


.single-post .content-container .entry-content .before_content_cta .button_content .button_content_desc {
  font-size: 15px;
  margin: 12px 0 0;
  line-height: 1.7;
}


.single-post .content-container .entry-content .before_content_cta .button_content .contact_modal {
  border: 0px;
  background: #1c1c1c;
  color: #ffffff;
  font-family: "NeueMachina";
  box-shadow: none;
  width: calc(100% - 30px);
  padding: 12px;
  border-radius: 30px;
  margin: 18px 0;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}


.single-post .content-container .entry-content .before_content_cta .button_content .contact_modal:hover {
  background: #23d5ab;
  color: #ffffff;
}


.single-post .content-container .entry-content .before_content_cta .button_content .contact_modal:hover svg {
  stroke: #ffffff;
}


.single-post .content-container .entry-content .before_content_cta .contact_content {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}


@media (max-width: 768px) {
  .single-post .content-container .entry-content .before_content_cta .contact_content .service_photo {
    display: none;
  }
}


.single-post .content-container .entry-content .before_content_cta .contact_content .service_photo,
.single-post .content-container .entry-content .before_content_cta .contact_content .contacts_info {
  flex: 1 300px;
}


.single-post .content-container .entry-content .before_content_cta .contact_content .service_photo img,
.single-post .content-container .entry-content .before_content_cta .contact_content .contacts_info img {
  border: 2px solid #1c1c1c;
  border-radius: 30px;
  max-width: 365px;
}


.single-post .content-container .entry-content .before_content_cta .contact_content .service_photo .contacts_info__item,
.single-post .content-container .entry-content .before_content_cta .contact_content .contacts_info .contacts_info__item {
  position: relative;
  padding: 1.5rem 0;
  border-top: 2px solid #24d5ab;
}


.single-post .content-container .entry-content .before_content_cta .contact_content .service_photo .contacts_info__item .item_title,
.single-post .content-container .entry-content .before_content_cta .contact_content .contacts_info .contacts_info__item .item_title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  font-size: 21px;
  font-family: "NeueMachina";
}


@media (max-width: 768px) {
  .single-post .content-container .entry-content .before_content_cta .contact_content .service_photo .contacts_info__item .item_title,
  .single-post .content-container .entry-content .before_content_cta .contact_content .contacts_info .contacts_info__item .item_title {
    font-size: 16px;
  }
}


.single-post .content-container .entry-content .before_content_cta .contact_content .service_photo .contacts_info__item .item_content a,
.single-post .content-container .entry-content .before_content_cta .contact_content .contacts_info .contacts_info__item .item_content a {
  display: block;
  font-size: 28px;
  font-family: "NeueMachina";
  color: #24d5ab;
}


.single-post .content-container .entry-content .before_content_cta .contact_content .service_photo .contacts_info__item .item_content .contact_element,
.single-post .content-container .entry-content .before_content_cta .contact_content .contacts_info .contacts_info__item .item_content .contact_element {
  display: block;
  font-size: 24px;
  font-family: "NeueMachina";
  color: #24d5ab;
}


@media (max-width: 768px) {
  .single-post .content-container .entry-content .before_content_cta .contact_content .service_photo .contacts_info__item .item_content .contact_element,
  .single-post .content-container .entry-content .before_content_cta .contact_content .contacts_info .contacts_info__item .item_content .contact_element {
    font-size: 18px;
  }
}


.single-post .content-container .entry-content .before_content_cta .contact_content .service_photo .contacts_info__item .item_desc,
.single-post .content-container .entry-content .before_content_cta .contact_content .contacts_info .contacts_info__item .item_desc {
  font-size: 14px;
  color: #6d6d6d;
  margin: 12px 0 24px;
}


.single-post .content-container .entry-content .content_wrapper #toc_container {
  display: none;
}


.single-post .content-container .entry-content .toc_widget {
  position: sticky;
  top: 50px;
  display: block;
  border: 2px solid #1c1c1c;
  border-radius: 30px;
  padding: 24px;
  background: #ffffff;
}


@media (max-width: 768px) {
  .single-post .content-container .entry-content .toc_widget {
    margin-bottom: 24px;
  }
}


.single-post .content-container .entry-content .toc_widget .widgettitle {
  display: block;
  font-size: 21px;
  font-family: "NeueMachina";
  margin-bottom: 12px;
}


.single-post .content-container .entry-content .toc_widget .toc_widget_list {
  position: relative;
  margin: 0;
  padding: 0;
  list-style: none;
}


.single-post .content-container .entry-content .toc_widget .toc_widget_list li a {
  color: #1c1c1c;
  margin-bottom: 12px;
  display: block;
  font-size: 15px;
  font-weight: 500;
}


.single-post .content-container .entry-content .toc_widget .toc_widget_list li a .toc_number {
  position: relative;
  margin-right: 5px;
}


.single-post .content-container .entry-content .toc_widget .toc_widget_list li a .toc_number:after {
  content: ".";
}


.single-post .content-container .entry-content.category {
  overflow: hidden;
}


.single-post .cta_section {
  position: relative;
  margin: 0;
  padding: 90px 0 50px;
  background: transparent;
  border-radius: 0;
  color: #1c1c1c;
  overflow: hidden;
}


.single-post .cta_section .section_title {
  color: #1c1c1c;
}


.single-post .cta_section form .form_group {
  background: transparent;
  margin-bottom: 20px;
}


.single-post .cta_section form .form_group .form_label {
  background: transparent;
  display: block;
  height: 100%;
  margin-bottom: 4px;
  position: relative;
  width: 100%;
}


.single-post .cta_section form .form_group .form_label .form-control {
  width: 100%;
  background: transparent;
  border: 1px solid #1c1c1c;
  box-shadow: none;
  outline: none;
  padding: 18px 0px 10px 24px;
  border-radius: 40px;
  color: #1c1c1c;
  position: relative;
  height: 100%;
  font-size: 18px;
  z-index: 10;
  height: 70px;
}


.single-post .cta_section form .form_group .form_label .form-control::-webkit-input-placeholder, .single-post .cta_section form .form_group .form_label .form-control::-moz-placeholder, .single-post .cta_section form .form_group .form_label .form-control:-moz-placeholder, .single-post .cta_section form .form_group .form_label .form-control:-ms-input-placeholder {
  font-weight: 500;
  font-size: 100%;
  line-height: 120%;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}


.single-post .cta_section form .form_group .form_label .form-control:focus, .single-post .cta_section form .form_group .form_label .form-control.focus {
  border-color: #23d5ab;
  outline: none;
  box-shadow: none;
  background: transparent;
}


.single-post .cta_section form .form_group .form_label .form-control:not(:-moz-placeholder-shown) ~ .form_label__text {
  top: 10px;
  font-size: 12px;
  line-height: 100%;
  text-transform: initial;
}


.single-post .cta_section form .form_group .form_label .form-control.focus-visible ~ .form_label__text, .single-post .cta_section form .form_group .form_label .form-control:focus ~ .form_label__text, .single-post .cta_section form .form_group .form_label .form-control:not(:placeholder-shown) ~ .form_label__text {
  top: 10px;
  font-size: 12px;
  line-height: 100%;
  text-transform: initial;
}


.single-post .cta_section form .form_group .form_label .form-control:-webkit-autofill ~ .form_label__text {
  top: 10px;
  font-size: 12px;
  line-height: 100%;
  z-index: 10;
  text-transform: initial;
}


.single-post .cta_section form .form_group .form_label .form-control:-webkit-autofill, .single-post .cta_section form .form_group .form_label .form-control:-webkit-autofill:focus, .single-post .cta_section form .form_group .form_label .form-control:-webkit-autofill:hover {
  border: none;
}


.single-post .cta_section form .form_group .form_label .form_label__text {
  color: #1c1c1c;
  font-size: 100%;
  font-weight: 500;
  left: 24px;
  letter-spacing: -0.02em;
  line-height: 120%;
  max-width: 100%;
  opacity: 0.5;
  overflow: hidden;
  position: absolute;
  text-overflow: ellipsis;
  top: 24px;
  transition: top 0.2s ease, color 0.2s ease, font-size 0.2s ease;
  white-space: nowrap;
  z-index: 5;
}


.single-post .cta_section form .form_group.submit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}


.single-post .cta_section form .form_group.submit .submit_description {
  flex: 1 360px;
  font-size: 16px;
  color: #1c1c1c;
  opacity: 0.5;
  letter-spacing: 0.2px;
  font-weight: 300;
  padding-right: 24px;
}


.single-post .cta_section form .form_group.submit .wpcf7-spinner {
  position: absolute;
  visibility: hidden;
  display: none;
}


.single-post .cta_section form .form_group.submit .wpcf7-submit {
  flex: 1 120px;
  border: 0px;
  padding: 14px 24px 12px;
  border-radius: 40px;
  background: #23d5ab;
  font-size: 18px;
  font-family: "NeueMachina";
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}


.single-post .cta_section form .form_group.submit .wpcf7-submit:hover {
  background: #e73c7e;
}


.single-post .cta_section .cta_button__wrapper {
  position: relative;
  text-align: center;
  padding-top: 24px;
}


.single-post .cta_section .cta_button__wrapper a {
  position: relative;
  color: #1c1c1c;
  display: flex;
  border: 0.5px solid rgba(28, 28, 28, 0.5019607843);
  padding: 18px;
  border-radius: 50px;
  align-items: center;
  justify-content: center;
  gap: 24px;
  font-size: 16px;
  transition: all 1.15s slide;
  -webkit-transition: all 1.15s slide;
  -moz-transition: all 1.15s slide;
  -ms-transition: all 1.15s slide;
  -o-transition: all 1.15s slide;
}


.single-post .cta_section .cta_button__wrapper a:hover {
  background: #1c1c1c;
  color: #ffffff;
  text-decoration: none;
}


.single-post .cta_section .cta_button__wrapper a:hover svg {
  stroke: #ffffff;
}


.single-post .cta_section::before {
  position: absolute;
  content: "";
  width: 200%;
  top: 0;
  height: 1px;
  background: #1c1c1c;
  opacity: 0.1;
}


.single-post .cta_section .divider {
  position: absolute;
  content: "";
  height: 300%;
  top: -50%;
  left: -50px;
  border-right: 1px solid #1c1c1c;
  opacity: 0.1;
}


.single-post .modal.right .modal-dialog {
  position: fixed;
  margin: auto;
  width: 100%;
  max-width: 475px;
  height: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  border-radius: 2.5rem 0 0 2.5rem;
  overflow: hidden;
  border: 2px solid #1c1c1c;
}


.single-post .modal-open .modal:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1254901961);
  z-index: -1;
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
}


.single-post .modal.right .modal-content {
  height: 100%;
  overflow-y: auto;
}


.single-post .modal.right .modal-body {
  padding: 15px 15px 80px;
}


.single-post .modal.right.fade .modal-dialog {
  right: -320px;
  transition: opacity 0.3s linear, right 0.3s ease-out;
}


.single-post .modal.right.fade.show .modal-dialog {
  right: 0;
}


.single-post .modal-content .modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 2.5rem 1rem 1rem;
  border-bottom: 0px;
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
  font-family: "NeueMachina";
  font-size: 150%;
}


.single-post .modal-content .modal-header .close {
  position: absolute;
  right: 30px;
}


.single-post .modal-content .modal-body .modal-form-desc {
  font-size: 15px;
  margin: 12px 12px 24px;
}


.single-post .modal-content .modal-body .modal-form-desc .interest_phone .phone_text {
  font-size: 14px;
  color: #9a9a9a;
}


.single-post .modal-content .modal-body .modal-form-desc .interest_phone span {
  font-size: 16px;
  font-family: "NeueMachina";
}


.single-post .modal-content .modal-body form .form_group {
  background: transparent;
  margin-bottom: 20px;
}


.single-post .modal-content .modal-body form .form_group .form_label {
  background: transparent;
  display: block;
  height: 100%;
  margin-bottom: 4px;
  position: relative;
  width: 100%;
}


.single-post .modal-content .modal-body form .form_group .form_label .form-control {
  width: 100%;
  background: transparent;
  border: 1px solid #1c1c1c;
  box-shadow: none;
  outline: none;
  padding: 18px 0px 10px 24px;
  border-radius: 40px;
  color: #1c1c1c;
  position: relative;
  height: 100%;
  font-size: 18px;
  z-index: 10;
  height: 70px;
}


.single-post .modal-content .modal-body form .form_group .form_label .form-control::-webkit-input-placeholder, .single-post .modal-content .modal-body form .form_group .form_label .form-control::-moz-placeholder, .single-post .modal-content .modal-body form .form_group .form_label .form-control:-moz-placeholder, .single-post .modal-content .modal-body form .form_group .form_label .form-control:-ms-input-placeholder {
  font-weight: 500;
  font-size: 100%;
  line-height: 120%;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}


.single-post .modal-content .modal-body form .form_group .form_label .form-control:focus, .single-post .modal-content .modal-body form .form_group .form_label .form-control.focus {
  border-color: #23d5ab;
  outline: none;
  box-shadow: none;
  background: transparent;
}


.single-post .modal-content .modal-body form .form_group .form_label .form-control:not(:-moz-placeholder-shown) ~ .form_label__text {
  top: 10px;
  font-size: 12px;
  line-height: 100%;
  text-transform: initial;
}


.single-post .modal-content .modal-body form .form_group .form_label .form-control.focus-visible ~ .form_label__text, .single-post .modal-content .modal-body form .form_group .form_label .form-control:focus ~ .form_label__text, .single-post .modal-content .modal-body form .form_group .form_label .form-control:not(:placeholder-shown) ~ .form_label__text {
  top: 10px;
  font-size: 12px;
  line-height: 100%;
  text-transform: initial;
}


.single-post .modal-content .modal-body form .form_group .form_label .form-control:-webkit-autofill ~ .form_label__text {
  top: 10px;
  font-size: 12px;
  line-height: 100%;
  z-index: 10;
  text-transform: initial;
}


.single-post .modal-content .modal-body form .form_group .form_label .form-control:-webkit-autofill, .single-post .modal-content .modal-body form .form_group .form_label .form-control:-webkit-autofill:focus, .single-post .modal-content .modal-body form .form_group .form_label .form-control:-webkit-autofill:hover {
  border: none;
}


.single-post .modal-content .modal-body form .form_group .form_label .form_label__text {
  color: #1c1c1c;
  font-size: 100%;
  font-weight: 500;
  left: 24px;
  letter-spacing: -0.02em;
  line-height: 120%;
  max-width: 100%;
  opacity: 0.5;
  overflow: hidden;
  position: absolute;
  text-overflow: ellipsis;
  top: 24px;
  transition: top 0.2s ease, color 0.2s ease, font-size 0.2s ease;
  white-space: nowrap;
  z-index: 5;
}


.single-post .modal-content .modal-body form .form_group.submit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}


.single-post .modal-content .modal-body form .form_group.submit .submit_description {
  flex: 1 360px;
  font-size: 16px;
  color: #1c1c1c;
  opacity: 0.5;
  letter-spacing: 0.2px;
  font-weight: 300;
  padding-right: 24px;
}


.single-post .modal-content .modal-body form .form_group.submit .wpcf7-spinner {
  position: absolute;
  visibility: hidden;
  display: none;
}


.single-post .modal-content .modal-body form .form_group.submit .wpcf7-submit {
  flex: 1 120px;
  border: 0px;
  padding: 14px 24px 12px;
  border-radius: 40px;
  background: #23d5ab;
  font-size: 18px;
  font-family: "NeueMachina";
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}


.single-post .modal-content .modal-body form .form_group.submit .wpcf7-submit:hover {
  background: #e73c7e;
}


/*
* PAGE CATALOG
*/


.page_catalog_item_inner {
  position: relative;
  background: #ebebeb;
  margin-bottom: 24px;
  border-radius: 2.5rem;
  padding-bottom: 1.5rem;
}


.page_catalog_item_inner .section__lightGallery {
  position: relative;
  margin: 0px 0px 30px;
}


.page_catalog_item_inner .section__lightGallery .gallery-main-photo {
  position: relative;
  border: 3px solid #1c1c1c;
  border-radius: 2.5rem;
  overflow: hidden;
}


.page_catalog_item_inner .section__lightGallery .item-slick {
  max-width: 70px;
  margin-right: 12px;
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid #1c1c1c;
}


.page_catalog_item_inner .page_catalog_item_inner-content {
  position: relative;
  padding: 12px 24px;
}


.page_catalog_item_inner .page_catalog_item_inner-content .page_catalog_item-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}


@media (max-width: 520px) {
  .page_catalog_item_inner .page_catalog_item_inner-content .page_catalog_item-inner {
    flex-wrap: wrap;
  }
}


.page_catalog_item_inner .page_catalog_item_inner-content .page_catalog_item-inner .page_catalog_item-title {
  font-family: "NeueMachina";
}


.page_catalog_item_inner .page_catalog_item_inner-content .page_catalog_item-inner .page_catalog_item-price {
  display: flex;
  flex-direction: column;
  font-weight: 700;
}


.page_catalog_item_inner .page_catalog_item_inner-content .page_catalog_item-inner .page_catalog_item-price span {
  font-size: 12px;
  font-weight: 300;
}


.page_catalog_item_inner .page_catalog_item_inner-content .page_catalog_attr {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
}


.page_catalog_item_inner .page_catalog_item_inner-content .page_catalog_contacts {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 24px 0 0;
}


.page_catalog_item_inner .page_catalog_item_inner-content .page_catalog_contacts .page_catalog_contacts-textcf7 {
  padding: 5px 0 4px 16px;
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 2px solid #1c1c1c;
  border-radius: 30px;
  cursor: pointer;
  font-family: "NeueMachina";
}


@media (max-width: 520px) {
  .page_catalog_item_inner .page_catalog_item_inner-content .page_catalog_contacts .page_catalog_contacts-textcf7 {
    font-size: 14px;
  }
}


.page_catalog_item_inner .page_catalog_item_inner-content .page_catalog_contacts .page_catalog_contacts-textcf7 svg {
  background: #1c1c1c;
  margin-right: 6px;
  width: 34px;
  height: 34px;
  padding: 6px;
  border-radius: 50%;
}


.page_catalog_item_inner .page_catalog_item_inner-content .page_catalog_contacts .page_catalog_contacts-textcf7:hover {
  background: #1c1c1c;
  color: #ffffff;
}


.page_catalog_item_inner .page_catalog_item_inner-content .page_catalog_contacts .page_catalog_contacts-textcf7:hover svg {
  background: #ffffff;
  stroke: #23d5ab;
}


.page_catalog_item_inner .page_catalog_item_inner-content .page_catalog_contacts .callbackphone {
  background: #1c1c1c;
  padding: 10px;
  border-radius: 50%;
  display: block;
  width: 44px;
  height: 44px;
  text-align: center;
}


.page_catalog_item_inner .page_catalog_item_inner-content .page_catalog_contacts .callbackphone svg {
  width: 21px;
  height: 21px;
}


.page-template-page-catalog .modal.right .modal-dialog {
  position: fixed;
  margin: auto;
  width: 100%;
  max-width: 475px;
  height: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  border-radius: 2.5rem 0 0 2.5rem;
  overflow: hidden;
  border: 2px solid #1c1c1c;
}


.page-template-page-catalog .modal-open .modal:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1254901961);
  z-index: -1;
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
}


.page-template-page-catalog .modal.right .modal-content {
  height: 100%;
  overflow-y: auto;
}


.page-template-page-catalog .modal.right .modal-body {
  padding: 15px 15px 80px;
}


.page-template-page-catalog .modal.right.fade .modal-dialog {
  right: -320px;
  transition: opacity 0.3s linear, right 0.3s ease-out;
}


.page-template-page-catalog .modal.right.fade.show .modal-dialog {
  right: 0;
}


.page-template-page-catalog .modal-content .modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 2.5rem 1rem 1rem;
  border-bottom: 0px;
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
  font-family: "NeueMachina";
  font-size: 150%;
}


.page-template-page-catalog .modal-content .modal-header .close {
  position: absolute;
  top: 10px;
  right: 30px;
}


.page-template-page-catalog .modal-content .modal-body .modal-form-desc {
  font-size: 15px;
  margin: 12px 12px 24px;
}


.page-template-page-catalog .modal-content .modal-body .modal-form-desc .interest_phone .phone_text {
  font-size: 14px;
  color: #9a9a9a;
}


.page-template-page-catalog .modal-content .modal-body .modal-form-desc .interest_phone span {
  font-size: 16px;
  font-family: "NeueMachina";
}


.page-template-page-catalog .modal-content .modal-body form .form_group {
  background: transparent;
  margin-bottom: 20px;
}


.page-template-page-catalog .modal-content .modal-body form .form_group .form_label {
  background: transparent;
  display: block;
  height: 100%;
  margin-bottom: 4px;
  position: relative;
  width: 100%;
}


.page-template-page-catalog .modal-content .modal-body form .form_group .form_label .form-control {
  width: 100%;
  background: transparent;
  border: 1px solid #1c1c1c;
  box-shadow: none;
  outline: none;
  padding: 18px 0px 10px 24px;
  border-radius: 40px;
  color: #1c1c1c;
  position: relative;
  height: 100%;
  font-size: 18px;
  z-index: 10;
  height: 70px;
}


.page-template-page-catalog .modal-content .modal-body form .form_group .form_label .form-control::-webkit-input-placeholder, .page-template-page-catalog .modal-content .modal-body form .form_group .form_label .form-control::-moz-placeholder, .page-template-page-catalog .modal-content .modal-body form .form_group .form_label .form-control:-moz-placeholder, .page-template-page-catalog .modal-content .modal-body form .form_group .form_label .form-control:-ms-input-placeholder {
  font-weight: 500;
  font-size: 100%;
  line-height: 120%;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}


.page-template-page-catalog .modal-content .modal-body form .form_group .form_label .form-control:focus, .page-template-page-catalog .modal-content .modal-body form .form_group .form_label .form-control.focus {
  border-color: #23d5ab;
  outline: none;
  box-shadow: none;
  background: transparent;
}


.page-template-page-catalog .modal-content .modal-body form .form_group .form_label .form-control:not(:-moz-placeholder-shown) ~ .form_label__text {
  top: 10px;
  font-size: 12px;
  line-height: 100%;
  text-transform: initial;
}


.page-template-page-catalog .modal-content .modal-body form .form_group .form_label .form-control.focus-visible ~ .form_label__text, .page-template-page-catalog .modal-content .modal-body form .form_group .form_label .form-control:focus ~ .form_label__text, .page-template-page-catalog .modal-content .modal-body form .form_group .form_label .form-control:not(:placeholder-shown) ~ .form_label__text {
  top: 10px;
  font-size: 12px;
  line-height: 100%;
  text-transform: initial;
}


.page-template-page-catalog .modal-content .modal-body form .form_group .form_label .form-control:-webkit-autofill ~ .form_label__text {
  top: 10px;
  font-size: 12px;
  line-height: 100%;
  z-index: 10;
  text-transform: initial;
}


.page-template-page-catalog .modal-content .modal-body form .form_group .form_label .form-control:-webkit-autofill, .page-template-page-catalog .modal-content .modal-body form .form_group .form_label .form-control:-webkit-autofill:focus, .page-template-page-catalog .modal-content .modal-body form .form_group .form_label .form-control:-webkit-autofill:hover {
  border: none;
}


.page-template-page-catalog .modal-content .modal-body form .form_group .form_label .form_label__text {
  color: #1c1c1c;
  font-size: 100%;
  font-weight: 500;
  left: 24px;
  letter-spacing: -0.02em;
  line-height: 120%;
  max-width: 100%;
  opacity: 0.5;
  overflow: hidden;
  position: absolute;
  text-overflow: ellipsis;
  top: 24px;
  transition: top 0.2s ease, color 0.2s ease, font-size 0.2s ease;
  white-space: nowrap;
  z-index: 5;
}


.page-template-page-catalog .modal-content .modal-body form .form_group.submit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}


.page-template-page-catalog .modal-content .modal-body form .form_group.submit .submit_description {
  flex: 1 360px;
  font-size: 16px;
  color: #1c1c1c;
  opacity: 0.5;
  letter-spacing: 0.2px;
  font-weight: 300;
  padding-right: 24px;
}


.page-template-page-catalog .modal-content .modal-body form .form_group.submit .wpcf7-spinner {
  position: absolute;
  visibility: hidden;
  display: none;
}


.page-template-page-catalog .modal-content .modal-body form .form_group.submit .wpcf7-submit {
  flex: 1 120px;
  border: 0px;
  padding: 14px 24px 12px;
  border-radius: 40px;
  background: #23d5ab;
  font-size: 18px;
  font-family: "NeueMachina";
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}


.page-template-page-catalog .modal-content .modal-body form .form_group.submit .wpcf7-submit:hover {
  background: #e73c7e;
}


.slick-list {
  height: auto !important;
}


.slick-slider {
  position: unset !important;
}


.item-slick.slick-slide.slick-current.slick-active {
  outline: none !important;
}


.item-slick img {
  max-width: 100%;
  background-size: cover;
  background-position: center;
}


.slick-arrow {
  position: absolute;
  top: 45%;
  z-index: 50;
  margin-top: -12px;
  border: 0px !important;
  width: 40px;
  height: 40px;
  font-size: 26px;
  line-height: 0;
  transition: 0.4s ease-out;
  background: #242829;
  padding: 10px;
  border-radius: 10px;
  margin: 0px 10px;
}


.slick-arrow:focus,
.slick-arrow:hover {
  background: #242829;
  padding: 10px;
  border-radius: 10px;
  margin: 0px 10px;
}


.slick-prev {
  left: 0;
}


.slick-next {
  right: 0;
}


.swal-modal {
  border-radius: 2.5rem;
  border: 2px solid #1c1c1c;
  background: #ffffff;
  padding: 24px;
}


.swal-modal .swal-title {
  color: #1c1c1c;
  font-family: "NeueMachina";
}


.swal-modal .swal-text {
  color: #1c1c1c;
  text-align: center;
  line-height: 1.5;
  margin-bottom: 24px;
}


.swal-modal .swal-footer {
  display: none;
}


.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
  display: none;
}


.invalid-field {
  border-color: red !important;
  /* інші стилі */
}


.fixed_mobile {
  position: fixed;
  text-align: center;
  top: -75px;
  background: #23d5ab;
  width: 80vw;
  margin-left: -40vw;
  left: 50%;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
  transition: all 0.5s ease-out;
  z-index: 999;
}


.fixed_mobile .fixed_mobile__copy {
  padding: 5px 0 0;
  font-size: 14px;
  color: rgba(28, 28, 28, 0.5019607843);
  line-height: 1;
}


.fixed_mobile .fixed_mobile__phone a {
  display: block;
  color: #111417;
  font-size: 22px;
  line-height: 1;
  margin: 9px 0px 7px;
  font-family: "NeueMachina";
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}


.fixed_mobile.show {
  top: 0px;
}


.fixed_menu {
  display: none;
}


@media (max-width: 520px) {
  .fixed_menu {
    position: fixed;
    width: calc(100% - 20px);
    display: flex;
    align-items: center;
    background: #1c1c1c;
    bottom: 0px;
    padding: 5px 0 17px;
    z-index: 999;
    border-radius: 10px 10px 0px 0px;
  }
  .fixed_menu .fixed_menu__item {
    flex: 1 25%;
    text-align: center;
  }
  .fixed_menu .fixed_menu__item .item_content a {
    display: block;
    color: #ffffff;
    padding: 7px 0 0;
    font-family: "NeueMachina";
    font-size: 12px;
    display: flex;
    flex-direction: column;
    line-height: 1.1;
  }
  .fixed_menu .fixed_menu__item .item_content a img {
    margin-bottom: 0;
  }
  .fixed_menu .subitem_content {
    position: absolute;
    visibility: hidden;
    bottom: -300%;
    left: -3px;
    background: #ffffff;
    width: calc(100% + 5px);
    text-align: left;
    padding: 2.4rem 2.4rem 1rem;
    border-top-left-radius: 2.5rem;
    border-top-right-radius: 2.5rem;
    border: 2px solid #1c1c1c;
    transition: all 0.3s ease-in;
    -webkit-transition: all 0.3s ease-in;
    -moz-transition: all 0.3s ease-in;
    -ms-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    opacity: 0;
  }
  .fixed_menu .subitem_content.show {
    visibility: visible;
    bottom: 0;
    opacity: 1;
  }
  .fixed_menu .subitem_content .submenu_item a {
    color: #1c1c1c;
    font-size: 16px;
    font-family: "NeueMachina";
    display: block;
    margin-bottom: 12px;
  }
  .fixed_menu .subitem_content .close_submenu {
    position: absolute;
    top: 15px;
    right: 35px;
  }
}


.wpcf7 form.sent .wpcf7-response-output {
  display: none;
}


/*
* CATEGORY
*/


.category .devices_wrapper__title {
  margin: 50px 0;
  padding: 50px 0 0;
}


.category .devices_wrapper__title h1 {
  max-width: 1200px;
}


@media (max-width: 768px) {
  .category .devices_wrapper__title h1 {
    font-size: 41px;
  }
}


.category .blogs_wrapper {
  position: relative;
  padding-bottom: 80px;
}


@media (max-width: 768px) {
  .category .blogs_wrapper {
    padding-bottom: 24px;
  }
}


.category .blogs_wrapper .title-block-home {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 60px;
}


.category .blogs_wrapper .title-block-home .section-title h2 {
  font-size: 90px;
  font-weight: 900;
}


@media (max-width: 768px) {
  .category .blogs_wrapper .title-block-home .section-title h2 {
    font-size: 40px;
  }
}


.category .blogs_wrapper .title-block-home .button_all a {
  color: #000000;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}


.category .blogs_wrapper .title-block-home .button_all a svg {
  transform: rotate(-45deg);
}


.category .blogs_wrapper .archive_home {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}


.category .blogs_wrapper .archive_home .latest_posts-list {
  flex: 1 1 360px;
}


.category .blogs_wrapper .archive_home .latest_posts-list a {
  text-decoration: none;
}


.category .blogs_wrapper .archive_home .latest_posts-list .item_thumbnail {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
  border-radius: 15px;
  margin-bottom: 30px;
}


.category .blogs_wrapper .archive_home .latest_posts-list .item_thumbnail img {
  width: 100%;
  height: 270px;
  overflow: hidden;
  border-radius: 15px;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}


.category .blogs_wrapper .archive_home .latest_posts-list .latest_posts-list-item {
  font-size: 22px;
  font-family: "NeueMachina";
  color: #1c1c1c;
  line-height: 1.2;
  margin-top: 15px;
}


.category .blogs_wrapper .archive_home .latest_posts-list .item_info {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}


.category .blogs_wrapper .archive_home .latest_posts-list .item_info .category {
  background: #1c1c1c;
  width: -moz-fit-content;
  width: fit-content;
  padding: 7px 15px;
  border-radius: 10px;
  color: #ffffff;
  font-size: 14px;
  text-decoration: none !important;
}


.category .blogs_wrapper .archive_home .latest_posts-list .item_info .date {
  color: #787878;
  font-weight: 300;
  text-decoration: none !important;
  font-size: 14px;
}


.category .blogs_wrapper .archive_home .latest_posts-list:hover .item_thumbnail img {
  transform: scale(1.15);
  -webkit-transform: scale(1.15);
  -moz-transform: scale(1.15);
  -ms-transform: scale(1.15);
  -o-transform: scale(1.15);
}


.pagination {
  display: flex;
  padding-left: 0;
  list-style: none;
  border-radius: 30px;
  justify-content: center;
  margin: 0 auto 24px;
  border: 2px solid #1c1c1c;
  width: -moz-fit-content;
  width: fit-content;
  border-right: 0;
  border-left: 0;
}


.pagination .page-numbers {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 24px;
  font-family: "NeueMachina";
  color: #1c1c1c;
}


.pagination .page-numbers li a,
.pagination .page-numbers li span {
  position: relative;
  display: block;
  padding: 13px;
  border: 2px solid #1c1c1c;
  width: 44px;
  height: 44px;
  line-height: 1;
  text-align: center;
  border-radius: 50%;
  transition: all 0.3s ease-in;
  -webkit-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  -ms-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
}


.pagination .page-numbers li a svg,
.pagination .page-numbers li span svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}


.pagination .page-numbers li a:hover,
.pagination .page-numbers li span:hover {
  background: #1c1c1c;
  color: #ffffff;
}


.pagination .page-numbers li a:hover svg,
.pagination .page-numbers li span:hover svg {
  stroke: #ffffff;
}


.pagination .page-numbers li a.current,
.pagination .page-numbers li span.current {
  border-color: #23d5ab;
  color: #23d5ab;
}


@media (max-width: 768px) {
  #chatra.chatra--pos-left {
    bottom: 80px;
    z-index: 998 !important;
  }
}


/*
** CALLBACK FORM BLOCK
*/


.cons_callback {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #000000;
  padding: 0 0 3px 20px;
  border-radius: 100px;
  color: #ffffff;
  line-height: 1;
  font-size: 14px;
  font-weight: 400;
  cursor: pointer;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  -ms-border-radius: 100px;
  -o-border-radius: 100px;
}


@media (max-width: 768px) {
  .cons_callback {
    bottom: 80px;
  }
}


.cons_callback:before {
  position: absolute;
  content: "";
  width: calc(100% + 10px);
  height: calc(100% + 10px);
  top: -5px;
  left: -5px;
  border-radius: 100px;
  border: 2px solid #000000;
}


.cons_callback-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  padding: 0px 10px;
  gap: 10px;
}


.cons_callback-inner-text span {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
  display: block;
  font-family: "NeueMachina";
}


.cons_callback-inner-icon {
  max-width: 40px;
  margin: 5px 5px;
}


.cons_callback-form {
  position: fixed;
  max-width: 350px;
  bottom: 20px;
  right: 20px;
  background: #000000;
  border-top-left-radius: 50px;
  border-top-right-radius: 50px;
  border-bottom-left-radius: 70px;
  padding: 25px 30px;
  color: #ffffff;
  font-size: 14px;
  transform: scale(0);
  transform-origin: right bottom;
  transition: 0.2s ease-out;
  z-index: 99999;
}


.cons_callback-form:before {
  position: absolute;
  content: "";
  width: calc(100% + 10px);
  height: calc(100% + 10px);
  top: -5px;
  left: -5px;
  border-top-left-radius: 50px;
  border-top-right-radius: 50px;
  border-bottom-left-radius: 70px;
  border: 2px solid #000000;
  z-index: -1;
}


.cons_callback-form.visible {
  transform: scale(1);
}


.cons_callback-form_header {
  position: relative;
  font-size: 1.2rem;
  line-height: 1;
  margin-bottom: 10px;
  font-family: "NeueMachina";
}


#close_cons_callback-form {
  position: absolute;
  max-width: 60px;
  padding: 20px;
  right: -10px;
  top: -25px;
  z-index: 1;
}


.cons_callback-form-content span {
  border-bottom: 1px solid #ffffff;
}


.cons_callback-form-contacts {
  margin: 5px 0px;
}


.cons_callback-form-contacts .cons_callback__address {
  font-size: 14px;
  max-width: 200px;
  margin: 10px 0 24px;
}


.cons_callback-form-contacts .cons_callback__phones a {
  font-size: 18px;
  display: block;
  font-family: "NeueMachina";
  margin-bottom: 5px;
}


.cons_callback-form-contacts .cons_callback__phones .phones_desc {
  font-size: 14px;
  opacity: 0.5;
}


.cons_callback-form-contacts a {
  color: #ffffff;
}


.cons_callback-form-form form .form_group {
  background: transparent;
  margin-bottom: 20px;
}


.cons_callback-form-form form .form_group .form_label {
  background: transparent;
  display: block;
  height: 100%;
  margin-bottom: 4px;
  position: relative;
  width: 100%;
}


.cons_callback-form-form form .form_group .form_label .form-control {
  width: 100%;
  background: transparent;
  border: 1px solid #ffffff;
  box-shadow: none;
  outline: none;
  padding: 18px 0px 10px 24px;
  border-radius: 40px;
  color: #ffffff;
  position: relative;
  height: 100%;
  font-size: 18px;
  z-index: 10;
  height: 70px;
}


.cons_callback-form-form form .form_group .form_label .form-control::-webkit-input-placeholder, .cons_callback-form-form form .form_group .form_label .form-control::-moz-placeholder, .cons_callback-form-form form .form_group .form_label .form-control:-moz-placeholder, .cons_callback-form-form form .form_group .form_label .form-control:-ms-input-placeholder {
  font-weight: 500;
  font-size: 100%;
  line-height: 120%;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}


.cons_callback-form-form form .form_group .form_label .form-control:focus, .cons_callback-form-form form .form_group .form_label .form-control.focus {
  border-color: #23d5ab;
  outline: none;
  box-shadow: none;
  background: transparent;
}


.cons_callback-form-form form .form_group .form_label .form-control:not(:-moz-placeholder-shown) ~ .form_label__text {
  top: 10px;
  font-size: 12px;
  line-height: 100%;
  text-transform: initial;
}


.cons_callback-form-form form .form_group .form_label .form-control.focus-visible ~ .form_label__text, .cons_callback-form-form form .form_group .form_label .form-control:focus ~ .form_label__text, .cons_callback-form-form form .form_group .form_label .form-control:not(:placeholder-shown) ~ .form_label__text {
  top: 10px;
  font-size: 12px;
  line-height: 100%;
  text-transform: initial;
}


.cons_callback-form-form form .form_group .form_label .form-control:-webkit-autofill ~ .form_label__text {
  top: 10px;
  font-size: 12px;
  line-height: 100%;
  z-index: 10;
  text-transform: initial;
}


.cons_callback-form-form form .form_group .form_label .form-control:-webkit-autofill, .cons_callback-form-form form .form_group .form_label .form-control:-webkit-autofill:focus, .cons_callback-form-form form .form_group .form_label .form-control:-webkit-autofill:hover {
  border: none;
}


.cons_callback-form-form form .form_group .form_label .form_label__text {
  color: #ffffff;
  font-size: 100%;
  font-weight: 500;
  left: 24px;
  letter-spacing: -0.02em;
  line-height: 120%;
  max-width: 100%;
  opacity: 0.5;
  overflow: hidden;
  position: absolute;
  text-overflow: ellipsis;
  top: 24px;
  transition: top 0.2s ease, color 0.2s ease, font-size 0.2s ease;
  white-space: nowrap;
  z-index: 5;
}


.cons_callback-form-form form .form_group.submit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}


.cons_callback-form-form form .form_group.submit .submit_description {
  flex: 1 360px;
  font-size: 16px;
  color: #ffffff;
  opacity: 0.5;
  letter-spacing: 0.2px;
  font-weight: 300;
  padding-right: 24px;
}


.cons_callback-form-form form .form_group.submit .wpcf7-spinner {
  position: absolute;
  visibility: hidden;
  display: none;
}


.cons_callback-form-form form .form_group.submit .wpcf7-submit {
  flex: 1 120px;
  border: 0px;
  padding: 14px 24px 12px;
  border-radius: 40px;
  background: #23d5ab;
  font-size: 18px;
  font-family: "NeueMachina";
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}


.cons_callback-form-form form .form_group.submit .wpcf7-submit:hover {
  background: #e73c7e;
}


.cons_callback-form-form input.callbackSubmit {
  background: #ffffff;
  color: #000000;
}


.swal-overlay {
  z-index: 99999;
}


.cons_callback-form .sent .callback_form,
.cons_callback-form .sent .wpcf7-response-output {
  display: none;
}


/* END Callback Form */


.swiper-pagination {
  display: none;
}


@media (max-width: 820px) {
  .swiper-pagination {
    position: relative;
    height: -moz-fit-content;
    height: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 24px 0 0;
  }
  .swiper-pagination .swiper-pagination-bullet {
    display: block;
    width: 20px;
    height: 10px;
    background: transparent;
    border-radius: 10px;
    border: 2px solid #1c1c1c;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
  }
  .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    width: 40px;
    background: #1c1c1c;
  }
}
