:root {
  --swiper-theme-color: #2A2C2E;
}

/*! Animated headline */
.cd-headline.type .cd-words-wrapper.selected::after, .cd-headline.type b {
  visibility: hidden;
}

.cd-headline.clip span, .cd-headline.loading-bar span, .cd-headline.slide span {
  padding: 0.2em 0;
  display: inline-block;
}

.cd-headline.clip .cd-words-wrapper, .cd-headline.loading-bar .cd-words-wrapper, .cd-headline.slide .cd-words-wrapper, .cd-headline.type .cd-words-wrapper {
  overflow: hidden;
  vertical-align: top;
}

.cd-words-wrapper {
  display: inline-block;
  position: relative;
  text-align: left;
}

.cd-words-wrapper b {
  display: inline-block;
  position: absolute;
  white-space: nowrap;
  left: 0;
  top: 0;
}

.cd-words-wrapper b.is-visible {
  position: relative;
}

.no-js .cd-words-wrapper b {
  opacity: 0;
}

.no-js .cd-words-wrapper b.is-visible {
  opacity: 1;
}

.cd-headline.rotate-1 .cd-words-wrapper {
  -webkit-perspective: 300px;
  -moz-perspective: 300px;
  perspective: 300px;
}

.cd-headline.rotate-1 b {
  opacity: 0;
  -webkit-transform-origin: 50% 100%;
  -moz-transform-origin: 50% 100%;
  -ms-transform-origin: 50% 100%;
  -o-transform-origin: 50% 100%;
  transform-origin: 50% 100%;
  -webkit-transform: rotateX(180deg);
  -moz-transform: rotateX(180deg);
  -ms-transform: rotateX(180deg);
  -o-transform: rotateX(180deg);
  transform: rotateX(180deg);
}

.cd-headline.rotate-1 b.is-visible {
  opacity: 1;
  -webkit-transform: rotateX(0);
  -moz-transform: rotateX(0);
  -ms-transform: rotateX(0);
  -o-transform: rotateX(0);
  transform: rotateX(0);
  -webkit-animation: cd-rotate-1-in 1.2s;
  -moz-animation: cd-rotate-1-in 1.2s;
  animation: cd-rotate-1-in 1.2s;
}

.cd-headline.rotate-1 b.is-hidden {
  -webkit-transform: rotateX(180deg);
  -moz-transform: rotateX(180deg);
  -ms-transform: rotateX(180deg);
  -o-transform: rotateX(180deg);
  transform: rotateX(180deg);
  -webkit-animation: cd-rotate-1-out 1.2s;
  -moz-animation: cd-rotate-1-out 1.2s;
  animation: cd-rotate-1-out 1.2s;
}

@-webkit-keyframes cd-rotate-1-in {
  0% {
    -webkit-transform: rotateX(180deg);
    opacity: 0;
  }
  35% {
    -webkit-transform: rotateX(120deg);
    opacity: 0;
  }
  65% {
    opacity: 0;
  }
  100% {
    -webkit-transform: rotateX(360deg);
    opacity: 1;
  }
}
@-moz-keyframes cd-rotate-1-in {
  0% {
    -moz-transform: rotateX(180deg);
    opacity: 0;
  }
  35% {
    -moz-transform: rotateX(120deg);
    opacity: 0;
  }
  65% {
    opacity: 0;
  }
  100% {
    -moz-transform: rotateX(360deg);
    opacity: 1;
  }
}
@keyframes cd-rotate-1-in {
  0% {
    -webkit-transform: rotateX(180deg);
    -moz-transform: rotateX(180deg);
    -ms-transform: rotateX(180deg);
    -o-transform: rotateX(180deg);
    transform: rotateX(180deg);
    opacity: 0;
  }
  35% {
    -webkit-transform: rotateX(120deg);
    -moz-transform: rotateX(120deg);
    -ms-transform: rotateX(120deg);
    -o-transform: rotateX(120deg);
    transform: rotateX(120deg);
    opacity: 0;
  }
  65% {
    opacity: 0;
  }
  100% {
    -webkit-transform: rotateX(360deg);
    -moz-transform: rotateX(360deg);
    -ms-transform: rotateX(360deg);
    -o-transform: rotateX(360deg);
    transform: rotateX(360deg);
    opacity: 1;
  }
}
@-webkit-keyframes cd-rotate-1-out {
  0% {
    -webkit-transform: rotateX(0);
    opacity: 1;
  }
  35% {
    -webkit-transform: rotateX(-40deg);
    opacity: 1;
  }
  65% {
    opacity: 0;
  }
  100% {
    -webkit-transform: rotateX(180deg);
    opacity: 0;
  }
}
@-moz-keyframes cd-rotate-1-out {
  0% {
    -moz-transform: rotateX(0);
    opacity: 1;
  }
  35% {
    -moz-transform: rotateX(-40deg);
    opacity: 1;
  }
  65% {
    opacity: 0;
  }
  100% {
    -moz-transform: rotateX(180deg);
    opacity: 0;
  }
}
@keyframes cd-rotate-1-out {
  0% {
    -webkit-transform: rotateX(0);
    -moz-transform: rotateX(0);
    -ms-transform: rotateX(0);
    -o-transform: rotateX(0);
    transform: rotateX(0);
    opacity: 1;
  }
  35% {
    -webkit-transform: rotateX(-40deg);
    -moz-transform: rotateX(-40deg);
    -ms-transform: rotateX(-40deg);
    -o-transform: rotateX(-40deg);
    transform: rotateX(-40deg);
    opacity: 1;
  }
  65% {
    opacity: 0;
  }
  100% {
    -webkit-transform: rotateX(180deg);
    -moz-transform: rotateX(180deg);
    -ms-transform: rotateX(180deg);
    -o-transform: rotateX(180deg);
    transform: rotateX(180deg);
    opacity: 0;
  }
}
.cd-headline.type .cd-words-wrapper::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  bottom: auto;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  height: 90%;
  width: 1px;
  background-color: #aebcb9;
}

.cd-headline.type .cd-words-wrapper.waiting::after {
  -webkit-animation: cd-pulse 1s infinite;
  -moz-animation: cd-pulse 1s infinite;
  animation: cd-pulse 1s infinite;
}

.cd-headline.type .cd-words-wrapper.selected {
  background-color: #aebcb9;
}

.cd-headline.type .cd-words-wrapper.selected b {
  color: #0d0d0d;
}

.cd-headline.type b.is-visible {
  visibility: visible;
}

.cd-headline.type i {
  position: absolute;
  visibility: hidden;
  font-style: normal;
}

.cd-headline.type i.in {
  position: relative;
  visibility: visible;
}

@-webkit-keyframes cd-pulse {
  0% {
    -webkit-transform: translateY(-50%) scale(1);
    opacity: 1;
  }
  40% {
    -webkit-transform: translateY(-50%) scale(0.9);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(-50%) scale(0);
    opacity: 0;
  }
}
@-moz-keyframes cd-pulse {
  0% {
    -moz-transform: translateY(-50%) scale(1);
    opacity: 1;
  }
  40% {
    -moz-transform: translateY(-50%) scale(0.9);
    opacity: 0;
  }
  100% {
    -moz-transform: translateY(-50%) scale(0);
    opacity: 0;
  }
}
@keyframes cd-pulse {
  0% {
    -webkit-transform: translateY(-50%) scale(1);
    -moz-transform: translateY(-50%) scale(1);
    -ms-transform: translateY(-50%) scale(1);
    -o-transform: translateY(-50%) scale(1);
    transform: translateY(-50%) scale(1);
    opacity: 1;
  }
  40% {
    -webkit-transform: translateY(-50%) scale(0.9);
    -moz-transform: translateY(-50%) scale(0.9);
    -ms-transform: translateY(-50%) scale(0.9);
    -o-transform: translateY(-50%) scale(0.9);
    transform: translateY(-50%) scale(0.9);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(-50%) scale(0);
    -moz-transform: translateY(-50%) scale(0);
    -ms-transform: translateY(-50%) scale(0);
    -o-transform: translateY(-50%) scale(0);
    transform: translateY(-50%) scale(0);
    opacity: 0;
  }
}
.cd-headline.rotate-2 .cd-words-wrapper {
  -webkit-perspective: 300px;
  -moz-perspective: 300px;
  perspective: 300px;
}

.cd-headline.rotate-2 em, .cd-headline.rotate-2 i {
  display: inline-block;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.cd-headline.rotate-2 b {
  opacity: 0;
}

.cd-headline.rotate-2 i {
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  -ms-transform-style: preserve-3d;
  -o-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-transform: translateZ(-20px) rotateX(90deg);
  -moz-transform: translateZ(-20px) rotateX(90deg);
  -ms-transform: translateZ(-20px) rotateX(90deg);
  -o-transform: translateZ(-20px) rotateX(90deg);
  transform: translateZ(-20px) rotateX(90deg);
  opacity: 0;
}

.is-visible .cd-headline.rotate-2 i {
  opacity: 1;
}

.cd-headline.rotate-2 i.in {
  -webkit-animation: cd-rotate-2-in 0.4s forwards;
  -moz-animation: cd-rotate-2-in 0.4s forwards;
  animation: cd-rotate-2-in 0.4s forwards;
}

.cd-headline.rotate-2 i.out {
  -webkit-animation: cd-rotate-2-out 0.4s forwards;
  -moz-animation: cd-rotate-2-out 0.4s forwards;
  animation: cd-rotate-2-out 0.4s forwards;
}

.cd-headline.rotate-2 em {
  -webkit-transform: translateZ(20px);
  -moz-transform: translateZ(20px);
  -ms-transform: translateZ(20px);
  -o-transform: translateZ(20px);
  transform: translateZ(20px);
}

.no-csstransitions .cd-headline.rotate-2 i {
  -webkit-transform: rotateX(0);
  -moz-transform: rotateX(0);
  -ms-transform: rotateX(0);
  -o-transform: rotateX(0);
  transform: rotateX(0);
  opacity: 0;
}

.no-csstransitions .cd-headline.rotate-2 i em {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}

.no-csstransitions .cd-headline.rotate-2 .is-visible i {
  opacity: 1;
}

@-webkit-keyframes cd-rotate-2-in {
  0% {
    opacity: 0;
    -webkit-transform: translateZ(-20px) rotateX(90deg);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateZ(-20px) rotateX(-10deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateZ(-20px) rotateX(0);
  }
}
@-moz-keyframes cd-rotate-2-in {
  0% {
    opacity: 0;
    -moz-transform: translateZ(-20px) rotateX(90deg);
  }
  60% {
    opacity: 1;
    -moz-transform: translateZ(-20px) rotateX(-10deg);
  }
  100% {
    opacity: 1;
    -moz-transform: translateZ(-20px) rotateX(0);
  }
}
@keyframes cd-rotate-2-in {
  0% {
    opacity: 0;
    -webkit-transform: translateZ(-20px) rotateX(90deg);
    -moz-transform: translateZ(-20px) rotateX(90deg);
    -ms-transform: translateZ(-20px) rotateX(90deg);
    -o-transform: translateZ(-20px) rotateX(90deg);
    transform: translateZ(-20px) rotateX(90deg);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateZ(-20px) rotateX(-10deg);
    -moz-transform: translateZ(-20px) rotateX(-10deg);
    -ms-transform: translateZ(-20px) rotateX(-10deg);
    -o-transform: translateZ(-20px) rotateX(-10deg);
    transform: translateZ(-20px) rotateX(-10deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateZ(-20px) rotateX(0);
    -moz-transform: translateZ(-20px) rotateX(0);
    -ms-transform: translateZ(-20px) rotateX(0);
    -o-transform: translateZ(-20px) rotateX(0);
    transform: translateZ(-20px) rotateX(0);
  }
}
@-webkit-keyframes cd-rotate-2-out {
  0% {
    opacity: 1;
    -webkit-transform: translateZ(-20px) rotateX(0);
  }
  60% {
    opacity: 0;
    -webkit-transform: translateZ(-20px) rotateX(-100deg);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateZ(-20px) rotateX(-90deg);
  }
}
@-moz-keyframes cd-rotate-2-out {
  0% {
    opacity: 1;
    -moz-transform: translateZ(-20px) rotateX(0);
  }
  60% {
    opacity: 0;
    -moz-transform: translateZ(-20px) rotateX(-100deg);
  }
  100% {
    opacity: 0;
    -moz-transform: translateZ(-20px) rotateX(-90deg);
  }
}
@keyframes cd-rotate-2-out {
  0% {
    opacity: 1;
    -webkit-transform: translateZ(-20px) rotateX(0);
    -moz-transform: translateZ(-20px) rotateX(0);
    -ms-transform: translateZ(-20px) rotateX(0);
    -o-transform: translateZ(-20px) rotateX(0);
    transform: translateZ(-20px) rotateX(0);
  }
  60% {
    opacity: 0;
    -webkit-transform: translateZ(-20px) rotateX(-100deg);
    -moz-transform: translateZ(-20px) rotateX(-100deg);
    -ms-transform: translateZ(-20px) rotateX(-100deg);
    -o-transform: translateZ(-20px) rotateX(-100deg);
    transform: translateZ(-20px) rotateX(-100deg);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateZ(-20px) rotateX(-90deg);
    -moz-transform: translateZ(-20px) rotateX(-90deg);
    -ms-transform: translateZ(-20px) rotateX(-90deg);
    -o-transform: translateZ(-20px) rotateX(-90deg);
    transform: translateZ(-20px) rotateX(-90deg);
  }
}
.cd-headline.loading-bar .cd-words-wrapper::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 0;
  background: #0096a7;
  z-index: 2;
  -webkit-transition: width 0.3s -0.1s;
  -moz-transition: width 0.3s -0.1s;
  transition: width 0.3s -0.1s;
}

.cd-headline.loading-bar .cd-words-wrapper.is-loading::after {
  width: 100%;
  -webkit-transition: width 3s;
  -moz-transition: width 3s;
  transition: width 3s;
}

.cd-headline.loading-bar b {
  top: 0.2em;
  opacity: 0;
  -webkit-transition: opacity 0.3s;
  -moz-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.cd-headline.loading-bar b.is-visible {
  opacity: 1;
  top: 0;
}

.cd-headline.slide b {
  opacity: 0;
  top: 0.2em;
}

.cd-headline.slide b.is-visible {
  top: 0;
  opacity: 1;
  -webkit-animation: slide-in 0.6s;
  -moz-animation: slide-in 0.6s;
  animation: slide-in 0.6s;
}

.cd-headline.slide b.is-hidden {
  -webkit-animation: slide-out 0.6s;
  -moz-animation: slide-out 0.6s;
  animation: slide-out 0.6s;
}

@-webkit-keyframes slide-in {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-100%);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateY(20%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}
@-moz-keyframes slide-in {
  0% {
    opacity: 0;
    -moz-transform: translateY(-100%);
  }
  60% {
    opacity: 1;
    -moz-transform: translateY(20%);
  }
  100% {
    opacity: 1;
    -moz-transform: translateY(0);
  }
}
@keyframes slide-in {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-100%);
    -moz-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    -o-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateY(20%);
    -moz-transform: translateY(20%);
    -ms-transform: translateY(20%);
    -o-transform: translateY(20%);
    transform: translateY(20%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
  }
}
@-webkit-keyframes slide-out {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
  60% {
    opacity: 0;
    -webkit-transform: translateY(120%);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(100%);
  }
}
@-moz-keyframes slide-out {
  0% {
    opacity: 1;
    -moz-transform: translateY(0);
  }
  60% {
    opacity: 0;
    -moz-transform: translateY(120%);
  }
  100% {
    opacity: 0;
    -moz-transform: translateY(100%);
  }
}
@keyframes slide-out {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
  }
  60% {
    opacity: 0;
    -webkit-transform: translateY(120%);
    -moz-transform: translateY(120%);
    -ms-transform: translateY(120%);
    -o-transform: translateY(120%);
    transform: translateY(120%);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(100%);
    -moz-transform: translateY(100%);
    -ms-transform: translateY(100%);
    -o-transform: translateY(100%);
    transform: translateY(100%);
  }
}
.cd-headline.clip .cd-words-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 2px;
  height: 100%;
  background-color: #aebcb9;
}

.cd-headline.clip b {
  opacity: 0;
}

.cd-headline.clip b.is-visible {
  opacity: 1;
}

.cd-headline.zoom .cd-words-wrapper {
  -webkit-perspective: 300px;
  -moz-perspective: 300px;
  perspective: 300px;
}

.cd-headline.zoom b {
  opacity: 0;
}

.cd-headline.zoom b.is-visible {
  opacity: 1;
  -webkit-animation: zoom-in 0.8s;
  -moz-animation: zoom-in 0.8s;
  animation: zoom-in 0.8s;
}

.cd-headline.zoom b.is-hidden {
  -webkit-animation: zoom-out 0.8s;
  -moz-animation: zoom-out 0.8s;
  animation: zoom-out 0.8s;
}

@-webkit-keyframes zoom-in {
  0% {
    opacity: 0;
    -webkit-transform: translateZ(100px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateZ(0);
  }
}
@-moz-keyframes zoom-in {
  0% {
    opacity: 0;
    -moz-transform: translateZ(100px);
  }
  100% {
    opacity: 1;
    -moz-transform: translateZ(0);
  }
}
@keyframes zoom-in {
  0% {
    opacity: 0;
    -webkit-transform: translateZ(100px);
    -moz-transform: translateZ(100px);
    -ms-transform: translateZ(100px);
    -o-transform: translateZ(100px);
    transform: translateZ(100px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    -o-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@-webkit-keyframes zoom-out {
  0% {
    opacity: 1;
    -webkit-transform: translateZ(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateZ(-100px);
  }
}
@-moz-keyframes zoom-out {
  0% {
    opacity: 1;
    -moz-transform: translateZ(0);
  }
  100% {
    opacity: 0;
    -moz-transform: translateZ(-100px);
  }
}
@keyframes zoom-out {
  0% {
    opacity: 1;
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    -o-transform: translateZ(0);
    transform: translateZ(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateZ(-100px);
    -moz-transform: translateZ(-100px);
    -ms-transform: translateZ(-100px);
    -o-transform: translateZ(-100px);
    transform: translateZ(-100px);
  }
}
.cd-headline.rotate-3 .cd-words-wrapper {
  -webkit-perspective: 300px;
  -moz-perspective: 300px;
  perspective: 300px;
}

.cd-headline.rotate-3 b {
  opacity: 0;
}

.cd-headline.rotate-3 i {
  display: inline-block;
  -webkit-transform: rotateY(180deg);
  -moz-transform: rotateY(180deg);
  -ms-transform: rotateY(180deg);
  -o-transform: rotateY(180deg);
  transform: rotateY(180deg);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.is-visible .cd-headline.rotate-3 i {
  -webkit-transform: rotateY(0);
  -moz-transform: rotateY(0);
  -ms-transform: rotateY(0);
  -o-transform: rotateY(0);
  transform: rotateY(0);
}

.cd-headline.rotate-3 i.in {
  -webkit-animation: cd-rotate-3-in 0.6s forwards;
  -moz-animation: cd-rotate-3-in 0.6s forwards;
  animation: cd-rotate-3-in 0.6s forwards;
}

.cd-headline.rotate-3 i.out {
  -webkit-animation: cd-rotate-3-out 0.6s forwards;
  -moz-animation: cd-rotate-3-out 0.6s forwards;
  animation: cd-rotate-3-out 0.6s forwards;
}

.no-csstransitions .cd-headline.rotate-3 i {
  -webkit-transform: rotateY(0);
  -moz-transform: rotateY(0);
  -ms-transform: rotateY(0);
  -o-transform: rotateY(0);
  transform: rotateY(0);
  opacity: 0;
}

.no-csstransitions .cd-headline.rotate-3 .is-visible i {
  opacity: 1;
}

@-webkit-keyframes cd-rotate-3-in {
  0% {
    -webkit-transform: rotateY(180deg);
  }
  100% {
    -webkit-transform: rotateY(0);
  }
}
@-moz-keyframes cd-rotate-3-in {
  0% {
    -moz-transform: rotateY(180deg);
  }
  100% {
    -moz-transform: rotateY(0);
  }
}
@keyframes cd-rotate-3-in {
  0% {
    -webkit-transform: rotateY(180deg);
    -moz-transform: rotateY(180deg);
    -ms-transform: rotateY(180deg);
    -o-transform: rotateY(180deg);
    transform: rotateY(180deg);
  }
  100% {
    -webkit-transform: rotateY(0);
    -moz-transform: rotateY(0);
    -ms-transform: rotateY(0);
    -o-transform: rotateY(0);
    transform: rotateY(0);
  }
}
@-webkit-keyframes cd-rotate-3-out {
  0% {
    -webkit-transform: rotateY(0);
  }
  100% {
    -webkit-transform: rotateY(-180deg);
  }
}
@-moz-keyframes cd-rotate-3-out {
  0% {
    -moz-transform: rotateY(0);
  }
  100% {
    -moz-transform: rotateY(-180deg);
  }
}
@keyframes cd-rotate-3-out {
  0% {
    -webkit-transform: rotateY(0);
    -moz-transform: rotateY(0);
    -ms-transform: rotateY(0);
    -o-transform: rotateY(0);
    transform: rotateY(0);
  }
  100% {
    -webkit-transform: rotateY(-180deg);
    -moz-transform: rotateY(-180deg);
    -ms-transform: rotateY(-180deg);
    -o-transform: rotateY(-180deg);
    transform: rotateY(-180deg);
  }
}
.cd-headline.scale b {
  opacity: 0;
}

.cd-headline.scale i {
  display: inline-block;
  opacity: 0;
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);
}

.is-visible .cd-headline.scale i {
  opacity: 1;
}

.cd-headline.scale i.in {
  -webkit-animation: scale-up 0.6s forwards;
  -moz-animation: scale-up 0.6s forwards;
  animation: scale-up 0.6s forwards;
}

.cd-headline.scale i.out {
  -webkit-animation: scale-down 0.6s forwards;
  -moz-animation: scale-down 0.6s forwards;
  animation: scale-down 0.6s forwards;
}

.no-csstransitions .cd-headline.scale i {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  opacity: 0;
}

.no-csstransitions .cd-headline.scale .is-visible i {
  opacity: 1;
}

@-webkit-keyframes scale-up {
  0% {
    -webkit-transform: scale(0);
    opacity: 0;
  }
  60% {
    -webkit-transform: scale(1.2);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1);
    opacity: 1;
  }
}
@-moz-keyframes scale-up {
  0% {
    -moz-transform: scale(0);
    opacity: 0;
  }
  60% {
    -moz-transform: scale(1.2);
    opacity: 1;
  }
  100% {
    -moz-transform: scale(1);
    opacity: 1;
  }
}
@keyframes scale-up {
  0% {
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
    opacity: 0;
  }
  60% {
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
    transform: scale(1.2);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@-webkit-keyframes scale-down {
  0% {
    -webkit-transform: scale(1);
    opacity: 1;
  }
  60% {
    -webkit-transform: scale(0);
    opacity: 0;
  }
}
@-moz-keyframes scale-down {
  0% {
    -moz-transform: scale(1);
    opacity: 1;
  }
  60% {
    -moz-transform: scale(0);
    opacity: 0;
  }
}
@keyframes scale-down {
  0% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  60% {
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
    opacity: 0;
  }
}
.cd-headline.push b {
  opacity: 0;
}

.cd-headline.push b.is-visible {
  opacity: 1;
  -webkit-animation: push-in 0.6s;
  -moz-animation: push-in 0.6s;
  animation: push-in 0.6s;
}

.cd-headline.push b.is-hidden {
  -webkit-animation: push-out 0.6s;
  -moz-animation: push-out 0.6s;
  animation: push-out 0.6s;
}

@-webkit-keyframes push-in {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100%);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateX(10%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
}
@-moz-keyframes push-in {
  0% {
    opacity: 0;
    -moz-transform: translateX(-100%);
  }
  60% {
    opacity: 1;
    -moz-transform: translateX(10%);
  }
  100% {
    opacity: 1;
    -moz-transform: translateX(0);
  }
}
@keyframes push-in {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100%);
    -moz-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    -o-transform: translateX(-100%);
    transform: translateX(-100%);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateX(10%);
    -moz-transform: translateX(10%);
    -ms-transform: translateX(10%);
    -o-transform: translateX(10%);
    transform: translateX(10%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
  }
}
@-webkit-keyframes push-out {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
  60% {
    opacity: 0;
    -webkit-transform: translateX(110%);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(100%);
  }
}
@-moz-keyframes push-out {
  0% {
    opacity: 1;
    -moz-transform: translateX(0);
  }
  60% {
    opacity: 0;
    -moz-transform: translateX(110%);
  }
  100% {
    opacity: 0;
    -moz-transform: translateX(100%);
  }
}
@keyframes push-out {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
  }
  60% {
    opacity: 0;
    -webkit-transform: translateX(110%);
    -moz-transform: translateX(110%);
    -ms-transform: translateX(110%);
    -o-transform: translateX(110%);
    transform: translateX(110%);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(100%);
    -moz-transform: translateX(100%);
    -ms-transform: translateX(100%);
    -o-transform: translateX(100%);
    transform: translateX(100%);
  }
}
.tag {
  background: #E9EBFB;
  border-radius: 8px;
  color: #152F4E;
  padding: 0 16px;
  font-weight: bold;
  margin: 0 8px 8px 0;
  display: inline-block;
}
.tag--big {
  font-size: 32px;
}
.tag--medium {
  font-size: 24px;
}
.tag--small {
  font-size: 16px;
}

:root {
  --swiper-theme-color: #2A2C2E;
}

.container {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
}
@media (min-width: 768px) {
  .container {
    width: 750px;
  }
}
@media (min-width: 992px) {
  .container {
    width: 970px;
  }
}
@media (min-width: 1200px) {
  .container {
    width: calc(100% - 100px);
  }
}
@media (min-width: 1500px) {
  .container {
    width: calc(100% - 200px);
  }
}
@media (min-width: 1920px) {
  .container {
    width: 1640px;
  }
}

@media (min-width: 1200px) {
  .inner-padding {
    padding: 0 120px;
  }
}
@media (min-width: 1920px) {
  .inner-padding {
    padding: 0 150px;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.dropbtn {
  padding: 16px;
  font-size: 16px;
  border: none;
  cursor: pointer;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: white;
  overflow: auto;
  width: 75px;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
  border-radius: 8px;
  z-index: 1;
  top: -12px;
}

.dropdown-content a {
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  font-size: 16px;
  color: #152F4E;
  font-weight: bold;
}

.show {
  display: block;
}

.subtitle {
  font-size: 31px;
  margin-bottom: 25px;
}
@media (min-width: 768px) {
  .subtitle {
    font-size: 40px;
  }
}
@media (min-width: 1200px) {
  .subtitle {
    font-size: 48px;
  }
}

.swiper-pagination-bullets .swiper-pagination-bullet {
  width: 16px;
  height: 16px;
  margin: 0 !important;
}
.swiper-pagination-bullets .swiper-pagination-bullet:not(:last-child) {
  margin-right: 10px !important;
}
.swiper-pagination-bullets .swiper-pagination-bullet-active {
  background: #2A2C2E;
}

@font-face {
  font-family: "Livvic";
  src: url("../fonts/Livvic-BlackItalic.woff2") format("woff2"), url("../fonts/Livvic-BlackItalic.woff") format("woff");
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Livvic";
  src: url("../fonts/Livvic-BoldItalic.woff2") format("woff2"), url("../fonts/Livvic-BoldItalic.woff") format("woff");
  font-weight: bold;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Livvic";
  src: url("../fonts/Livvic-Bold.woff2") format("woff2"), url("../fonts/Livvic-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Livvic";
  src: url("../fonts/Livvic-ExtraLightItalic.woff2") format("woff2"), url("../fonts/Livvic-ExtraLightItalic.woff") format("woff");
  font-weight: 200;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Livvic";
  src: url("../fonts/Livvic-Medium.woff2") format("woff2"), url("../fonts/Livvic-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Livvic";
  src: url("../fonts/Livvic-Light.woff2") format("woff2"), url("../fonts/Livvic-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Livvic";
  src: url("../fonts/Livvic-Italic.woff2") format("woff2"), url("../fonts/Livvic-Italic.woff") format("woff");
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Livvic";
  src: url("../fonts/Livvic-LightItalic.woff2") format("woff2"), url("../fonts/Livvic-LightItalic.woff") format("woff");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Livvic";
  src: url("../fonts/Livvic-ExtraLight.woff2") format("woff2"), url("../fonts/Livvic-ExtraLight.woff") format("woff");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Livvic";
  src: url("../fonts/Livvic-Black.woff2") format("woff2"), url("../fonts/Livvic-Black.woff") format("woff");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Livvic";
  src: url("../fonts/Livvic-MediumItalic.woff2") format("woff2"), url("../fonts/Livvic-MediumItalic.woff") format("woff");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Livvic";
  src: url("../fonts/Livvic-ThinItalic.woff2") format("woff2"), url("../fonts/Livvic-ThinItalic.woff") format("woff");
  font-weight: 100;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Livvic";
  src: url("../fonts/Livvic-SemiBoldItalic.woff2") format("woff2"), url("../fonts/Livvic-SemiBoldItalic.woff") format("woff");
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Livvic";
  src: url("../fonts/Livvic-Thin.woff2") format("woff2"), url("../fonts/Livvic-Thin.woff") format("woff");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Livvic";
  src: url("../fonts/Livvic-Regular.woff2") format("woff2"), url("../fonts/Livvic-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Livvic";
  src: url("../fonts/Livvic-SemiBold.woff2") format("woff2"), url("../fonts/Livvic-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
.navbar {
  background: #fff;
  padding: 14px 0;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 99999;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
@media (min-width: 1200px) {
  .navbar {
    padding: 29px 0;
  }
  .navbar.affix {
    padding: 14px 0;
  }
}
.navbar.affix {
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}
.navbar .container {
  position: relative;
  min-height: 40px;
}
@media (min-width: 1200px) {
  .navbar .container {
    display: flex;
    justify-content: space-between;
  }
}
.navbar-header {
  display: flex;
  justify-content: space-between;
}
.navbar-brand {
  padding: 0 15px;
  height: auto;
}
.navbar-brand img {
  max-height: 50px;
}
.navbar-toggle {
  transition: all 0.5s ease;
  position: relative;
  margin-right: 15px;
  padding: 9px 10px;
  margin-top: 8px;
  margin-bottom: 8px;
  background-color: transparent;
  background-image: none;
  border-radius: 4px;
}
.navbar-toggle .icon-bar {
  background: #152F4E;
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 1px;
}
.navbar-toggle .icon-bar + .icon-bar {
  margin-top: 4px;
}
.navbar-toggle:hover .icon-bar {
  background: #152F4E;
}
@media (min-width: 1200px) {
  .navbar-toggle {
    display: none;
  }
}
.navbar-desktop {
  display: none;
}
@media (min-width: 1200px) {
  .navbar-desktop {
    display: block;
  }
}
.navbar-mobile {
  display: block;
}
@media (min-width: 1200px) {
  .navbar-mobile {
    display: none;
  }
}
.navbar-mobile__close {
  font-size: 40px;
  position: absolute;
  top: 20px;
  right: 30px;
  width: 40px;
  height: 40px;
  font-weight: bold;
}
.navbar-mobile__close .close-x {
  stroke: black;
  fill: transparent;
  stroke-linecap: round;
  stroke-width: 3;
}
.navbar-mobile__container {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: white;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.5s ease-in;
  opacity: 0;
  visibility: hidden;
}
.navbar-mobile__container--show {
  visibility: visible;
  opacity: 0.9;
}
.navbar-mobile__links {
  list-style: none;
  text-align: center;
}
.navbar-mobile__links li {
  margin-bottom: 24px;
}
.navbar-mobile__link {
  font-size: 28px;
  color: black;
  text-decoration: none;
  font-weight: bold;
}
.navbar-nav {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
.navbar-nav > li:not(:last-child) {
  margin-right: 16px;
}
.navbar-nav .current-active .nav-item {
  border-bottom: 2px solid #FFB74A;
}
.navbar-nav .nav-item {
  font-size: 16px;
  color: #152F4E;
  padding: 8px 16px;
  text-decoration: none;
  font-weight: bold;
}

.disable-scroll-mobile {
  overflow: hidden !important;
}
@media (min-width: 1200px) {
  .disable-scroll-mobile {
    overflow: visible !important;
  }
}

.home {
  padding-top: 100px;
  position: relative;
  color: white;
  background-color: #ffffff;
  background-image: url(../images/gfv_triangles.webp), -o-linear-gradient(180deg, #0033F9 0, #007BFC 100%);
  background-image: url(../images/gfv_triangles.webp), linear-gradient(180deg, #0033F9 0, #007BFC 100%);
  background-repeat: no-repeat, repeat;
  background-position: left top, center;
}
@media (min-width: 992px) {
  .home {
    padding-top: 82px;
  }
}
@media (min-width: 1250px) {
  .home {
    height: 100vh;
  }
}
@media (max-height: 877px) {
  .home {
    background-size: auto 90%, auto;
  }
}
@media (min-width: 1180px) {
  .home {
    background-image: url(../images/gfx_triangles2.webp), url(../images/gfv_triangles.webp), -o-linear-gradient(180deg, #0033F9 0, #007BFC 100%);
    background-image: url(../images/gfx_triangles2.webp), url(../images/gfv_triangles.webp), linear-gradient(180deg, #0033F9 0, #007BFC 100%);
    background-repeat: no-repeat, no-repeat, repeat;
    background-position: right top, left top, center;
  }
}
@media (min-width: 1180px) and (max-height: 877px) {
  .home {
    background-size: auto, auto 90%, auto;
  }
}
@media (min-width: 1180px) and (max-height: 500px) {
  .home {
    background-size: auto 90%, auto 90%, auto;
  }
}
@media (min-width: 992px) {
  .home {
    padding-top: 132px;
  }
}
.home__container {
  height: 100%;
}
.home__social {
  display: flex;
  justify-content: flex-start;
  height: 40px;
}
.home__social > a:not(:last-child) {
  margin-right: 24px;
}
.home__social > a:not(:last-child) .x {
  width: 28px;
}
.home__inner-container {
  display: flex;
  height: 100%;
  flex-direction: column;
}
@media (min-width: 1250px) {
  .home__inner-container {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
.home__texts {
  width: 600px;
  max-width: 100%;
}
@media (min-width: 1600px) {
  .home__texts {
    width: 800px;
  }
}
.home__image {
  width: 600px;
  max-width: 100%;
  margin: 20px 0 0 0;
  display: block;
}
@media (min-width: 1250px) {
  .home__image {
    width: calc(100% - 620px);
    max-height: 90%;
    margin: -20px 0 0 0;
  }
}
@media (min-width: 1600px) {
  .home__image {
    width: calc(100% - 850px);
    margin: -20px 0 0 0;
  }
}
.home__title {
  font-size: 42px;
  font-weight: bold;
  margin-bottom: 24px;
  display: none;
}
@media (min-width: 768px) {
  .home__title {
    display: block;
  }
}
@media (min-width: 1500px) {
  .home__title {
    font-size: 50px;
  }
}
@media (min-width: 1920px) {
  .home__title {
    font-size: 60px;
  }
}
.home__title-mobile {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 18px;
}
@media (min-width: 768px) {
  .home__title-mobile {
    display: none;
  }
}
.home__sub-title {
  font-size: 20px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.home__description {
  font-size: 20px;
  margin-bottom: 15px;
}
@media (min-width: 1250px) {
  .home__description {
    margin-bottom: 40px;
  }
}

.feature-boxes {
  background-image: url(../images/img_1.webp);
  background-position: top center;
  background-repeat: no-repeat;
  margin-bottom: 30px;
}
@media (min-width: 992px) {
  .feature-boxes {
    margin-bottom: 40px;
  }
}
@media (min-width: 1200px) {
  .feature-boxes {
    margin-bottom: 60px;
  }
}
@media (min-width: 1920px) {
  .feature-boxes {
    margin-bottom: 80px;
  }
}
.feature-boxes__container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.feature-boxes__texts {
  width: 678px;
  max-width: 100%;
  text-align: center;
  color: white;
  margin-top: 150px;
  margin-bottom: 52px;
}
.feature-boxes__title {
  font-size: 26px;
  font-weight: bold;
  margin-bottom: 8px;
}
@media (min-width: 1200px) {
  .feature-boxes__title {
    font-size: 42px;
  }
}
@media (min-width: 1920px) {
  .feature-boxes__title {
    font-size: 80px;
  }
}
.feature-boxes__description {
  font-size: 24px;
}
.feature-boxes__boxes {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 576px) {
  .feature-boxes__boxes {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 992px) {
  .feature-boxes__boxes {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}
.feature-boxes__box {
  border-radius: 24px;
  background: white;
  width: 100%;
  box-shadow: 0 1px 32px rgba(2, 36, 91, 0.2);
  padding: 14px 2px 24px 16px;
  margin-bottom: 16px;
  height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  align-items: flex-start;
}
.feature-boxes__box:nth-child(1):after {
  z-index: 1;
  position: absolute;
  content: "1";
  top: 27px;
  right: 27px;
  color: #B3C4D6;
  font-size: 72px;
  font-weight: bold;
}
.feature-boxes__box:nth-child(2):after {
  z-index: 1;
  position: absolute;
  content: "2";
  top: 27px;
  right: 27px;
  color: #B3C4D6;
  font-size: 72px;
  font-weight: bold;
}
.feature-boxes__box:nth-child(3):after {
  z-index: 1;
  position: absolute;
  content: "3";
  top: 27px;
  right: 27px;
  color: #B3C4D6;
  font-size: 72px;
  font-weight: bold;
}
.feature-boxes__box:nth-child(4):after {
  z-index: 1;
  position: absolute;
  content: "4";
  top: 27px;
  right: 27px;
  color: #B3C4D6;
  font-size: 72px;
  font-weight: bold;
}
.feature-boxes__box__icon {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 134px;
}
.feature-boxes__box__label {
  text-transform: uppercase;
  font-size: 24px;
  font-weight: 600;
  color: #152F4E;
}
@media (min-width: 768px) {
  .feature-boxes__box__label {
    font-size: 20px;
  }
}
@media (min-width: 992px) {
  .feature-boxes__box__label {
    font-size: 18px;
  }
}
@media (min-width: 1200px) {
  .feature-boxes__box__label {
    font-size: 23px;
  }
}
@media (min-width: 1500px) {
  .feature-boxes__box__label {
    font-size: 24px;
  }
}

.development__title {
  display: flex;
  position: relative;
  align-items: center;
  margin-bottom: 40px;
}
.development__title:before {
  content: "";
  background: url(../images/ic_development.svg) no-repeat;
  background-size: 100%;
  background-position: center;
  width: 80px;
  height: 120px;
  margin-right: 16px;
}
.development__title__label {
  font-size: 40px;
}
.development__title--blue {
  color: #007BFC;
}
@media (min-width: 576px) {
  .development__title__label {
    font-size: 50px;
  }
}
@media (min-width: 768px) {
  .development__title__label {
    font-size: 60px;
  }
}
@media (min-width: 1200px) {
  .development__title:before {
    width: 122px;
    height: 150px;
  }
  .development__title__label {
    font-size: 68px;
  }
}
@media (min-width: 1920px) {
  .development__title__label {
    font-size: 80px;
  }
}
.development__key-services__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 60px;
}
@media (min-width: 992px) {
  .development__key-services__grid {
    margin-bottom: 80px;
  }
}
@media (min-width: 1200px) {
  .development__key-services__grid {
    margin-bottom: 100px;
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1920px) {
  .development__key-services__grid {
    margin-bottom: 120px;
  }
}
.development__key-services__item {
  background: #FFFFFF;
  box-shadow: 0 1px 32px rgba(2, 36, 91, 0.2);
  border-radius: 24px;
  padding: 26px 17px 39px 17px;
  display: flex;
  flex-direction: column;
}
.development__key-services__item__header {
  display: flex;
  align-items: center;
  width: 100%;
  margin-right: 8px;
  margin-bottom: 16px;
}
.development__key-services__item__icon {
  width: 64px;
  height: 64px;
  min-height: 64px;
  min-width: 64px;
  border-radius: 50%;
  background: #007BFC;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 24px;
}
.development__key-services__item__icon--warning {
  background: #FFB74A;
}
.development__key-services__item__icon--warning img {
  width: 35px;
  height: 43px;
}
.development__key-services__item__title {
  color: #152F4E;
  font-size: 19px;
  font-weight: bold;
  text-transform: uppercase;
}
.development__key-services__item__content {
  width: 100%;
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .development__key-services__item__content {
    width: 100%;
  }
}
.development__key-services__item__description {
  font-size: 18px;
  margin-bottom: 24px;
}
.development__key-services__item__read-more {
  margin-left: auto;
  display: flex;
  align-items: center;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  color: #152F4E;
}
.development__team-structure {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 40px;
  padding-bottom: 10px;
  border-bottom: 1px solid #B3C4D6;
}
.development__team-structure .grid-item {
  width: 50%;
}
@media (min-width: 768px) {
  .development__team-structure {
    margin-bottom: 70px;
    padding-bottom: 40px;
  }
  .development__team-structure .grid-item {
    width: 33.3333333333%;
  }
}
@media (min-width: 992px) {
  .development__team-structure {
    margin-bottom: 100px;
    padding-bottom: 60px;
  }
  .development__team-structure .grid-item {
    width: 25%;
  }
}
.development .grid-item {
  margin-bottom: 48px;
  padding-right: 24px;
}
.development .grid-item__icon {
  height: 88px;
  margin-bottom: 8px;
}
.development .grid-item__name {
  font-size: 26px;
  font-weight: bold;
  margin-bottom: 24px;
}
.development .grid-item__tags {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 20px;
  font-weight: bold;
  display: block;
}
.development .grid-item__tag {
  display: inline-block;
  background: #E9EBFB;
  border-radius: 8px;
  padding: 0 16px;
  margin-bottom: 8px;
  font-size: 14px;
}
.development .grid-item__tag:not(:last-child) {
  margin-right: 8px;
}
@media (min-width: 768px) {
  .development .grid-item__name {
    font-size: 40px;
  }
  .development .grid-item__tag {
    font-size: 20px;
  }
}
.development__split-view {
  display: grid;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .development__split-view {
    grid-template-columns: 1fr 1fr;
  }
}
.development__technologies__description {
  margin-bottom: 48px;
}
.development__technologies__list {
  display: flex;
  flex-wrap: wrap;
}
.development__technologies__list .grid-item {
  width: 50%;
}
.development__techniques-and-platforms__description {
  margin-bottom: 48px;
}
.development__techniques-and-platforms__list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.development__techniques-and-platforms__list > li {
  border-radius: 8px;
  background: #E9EBFB;
  font-size: 14px;
  font-weight: 600;
  color: #152F4E;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  padding: 3px 24px;
  position: relative;
  flex-wrap: wrap;
}
@media (min-width: 992px) {
  .development__techniques-and-platforms__list > li {
    font-size: 18px;
  }
}
@media (min-width: 1200px) {
  .development__techniques-and-platforms__list > li {
    font-size: 24px;
  }
}
.development__techniques-and-platforms__list > li span {
  color: #007BFC;
}
.development__techniques-and-platforms__list > li::after {
  left: 9px;
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #007BFC;
  top: 50%;
  transform: translateY(-50%);
}

.certified {
  background: #E9EBFB;
  background-image: url(../images/certified-background.svg);
  background-repeat: no-repeat;
  background-position: top right;
  padding-bottom: 30px;
  padding-top: 100px;
}
@media (min-width: 768px) {
  .certified {
    padding-top: 170px;
  }
}
@media (min-width: 992px) {
  .certified {
    padding-top: 250px;
    background-position: top left;
  }
}
.certified__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
}
@media (min-width: 1200px) {
  .certified__content {
    padding: 0;
    width: 1100px;
    margin-left: auto;
  }
}
@media (min-width: 1920px) {
  .certified__content {
    padding: 0;
    width: 1300px;
  }
}
@media (min-width: 1400px) {
  .certified__content::after {
    content: "";
    background: url(../images/img_certifield.svg);
    background-size: 100%;
    width: 411px;
    height: 411px;
    position: absolute;
    top: -120px;
    left: -300px;
  }
}
@media (min-width: 1400px) {
  .certified__texts {
    padding-left: 180px;
  }
}
.certified__title {
  margin-bottom: 16px;
}
.certified__description {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 48px;
}
@media (min-width: 768px) {
  .certified__description {
    font-size: 28px;
  }
}
@media (min-width: 992px) {
  .certified__description {
    font-size: 32px;
  }
}
.certified .certified-swiper {
  width: 100%;
  margin-bottom: 20px;
}
.certified .certified-swiper__pagination {
  margin: 0 auto;
  width: auto !important;
}
.certified .certified-swiper__item {
  background: white;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1607843137);
  border-radius: 24px;
  height: 530px;
  margin: 8px 8px 32px 8px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 24px;
}
.certified .certified-swiper__item__image {
  margin-bottom: 20px;
  height: 135px;
  display: flex;
  align-items: center;
}
.certified .certified-swiper__item__image img {
  object-fit: contain;
}
@media (min-width: 992px) {
  .certified .certified-swiper__item__image {
    margin-bottom: 50px;
  }
}
.certified .certified-swiper__item__title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
}
.certified .certified-swiper__item__description {
  font-size: 18px;
  margin-bottom: 60px;
}
.certified .certified-swiper__item__link {
  margin-left: auto;
}

.about {
  background: #2A2C2E;
  background-image: url(../images/wave-top-black.svg);
  background-repeat: no-repeat;
  background-position: top left;
  padding-top: 80px;
}
@media (min-width: 768px) {
  .about {
    padding-top: 240px;
  }
}
.about__container {
  display: flex;
  flex-wrap: wrap;
}
.about__left {
  width: 100%;
}
.about__left__image {
  margin-bottom: 40px;
}
.about__left__image img {
  max-width: calc(100% - 32px);
}
@media (min-width: 768px) {
  .about__left__image {
    margin-bottom: 0;
  }
}
.about__right {
  width: 100%;
}
.about__title {
  display: flex;
  position: relative;
  align-items: center;
  color: white;
  margin-bottom: 50px;
  margin-top: 20px;
}
.about__title__label {
  font-size: 40px;
}
.about__title--blue {
  color: #007BFC;
}
@media (min-width: 576px) {
  .about__title__label {
    font-size: 50px;
  }
}
@media (min-width: 768px) {
  .about__title__label {
    font-size: 60px;
  }
}
@media (min-width: 1200px) {
  .about__title:before {
    width: 122px;
    height: 150px;
  }
  .about__title__label {
    font-size: 68px;
  }
}
@media (min-width: 1920px) {
  .about__title__label {
    font-size: 80px;
  }
}
@media (min-width: 1200px) {
  .about__title {
    margin-bottom: 100px;
  }
}
.about__title__label {
  margin: 0 auto;
}
.about__profile {
  color: white;
}
.about__profile__title {
  margin-bottom: 54px;
}
.about__profile__subtitle {
  font-size: 32px;
  margin-bottom: 48px;
}
.about__profile__description {
  font-size: 21px;
  margin-bottom: 48px;
}
.about__profile__buttons a {
  color: #2A2C2E;
}
@media (min-width: 992px) {
  .about__left {
    width: 50%;
  }
  .about__right {
    width: 50%;
  }
}

.our-advantages {
  background-image: url(../images/img_advanteges.svg);
  background-position: top left;
  background-repeat: no-repeat;
  margin-bottom: 20px;
}
.our-advantages__top {
  padding-top: 300px;
  height: 722px;
}
@media (min-width: 768px) {
  .our-advantages__top {
    margin-bottom: 70px;
  }
}
.our-advantages__title {
  color: white;
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 8px;
}
.our-advantages__content__title {
  font-size: 32px;
  font-weight: bold;
  display: block;
  width: 997px;
  position: relative;
  margin-bottom: 80px;
  max-width: 100%;
}
.our-advantages__list {
  display: flex;
  flex-wrap: wrap;
}
.our-advantages__item {
  width: 100%;
  position: relative;
  display: flex;
  z-index: 2;
  margin-bottom: 50px;
}
@media (min-width: 768px) {
  .our-advantages__item {
    margin-bottom: 100px;
  }
}
.our-advantages__item__img {
  margin-right: 20px;
  width: 72px;
  height: 72px;
}
.our-advantages__item__texts {
  position: relative;
  z-index: 2;
}
.our-advantages__item__texts h5 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 8px;
}
.our-advantages__item__texts p {
  font-size: 18px;
}
.our-advantages__item:nth-child(1):after {
  z-index: 1;
  position: absolute;
  content: "1";
  right: 10px;
  top: 0;
  font-size: 120px;
  color: #EEF3F9;
  font-weight: bold;
  line-height: 80px;
}
@media (min-width: 768px) {
  .our-advantages__item:nth-child(1):after {
    right: 50px;
  }
}
.our-advantages__item:nth-child(2):after {
  z-index: 1;
  position: absolute;
  content: "2";
  right: 10px;
  top: 0;
  font-size: 120px;
  color: #EEF3F9;
  font-weight: bold;
  line-height: 80px;
}
@media (min-width: 768px) {
  .our-advantages__item:nth-child(2):after {
    right: 50px;
  }
}
.our-advantages__item:nth-child(3):after {
  z-index: 1;
  position: absolute;
  content: "3";
  right: 10px;
  top: 0;
  font-size: 120px;
  color: #EEF3F9;
  font-weight: bold;
  line-height: 80px;
}
@media (min-width: 768px) {
  .our-advantages__item:nth-child(3):after {
    right: 50px;
  }
}
.our-advantages__item:nth-child(4):after {
  z-index: 1;
  position: absolute;
  content: "4";
  right: 10px;
  top: 0;
  font-size: 120px;
  color: #EEF3F9;
  font-weight: bold;
  line-height: 80px;
}
@media (min-width: 768px) {
  .our-advantages__item:nth-child(4):after {
    right: 50px;
  }
}
.our-advantages__item:nth-child(5):after {
  z-index: 1;
  position: absolute;
  content: "5";
  right: 10px;
  top: 0;
  font-size: 120px;
  color: #EEF3F9;
  font-weight: bold;
  line-height: 80px;
}
@media (min-width: 768px) {
  .our-advantages__item:nth-child(5):after {
    right: 50px;
  }
}
.our-advantages__item:nth-child(6):after {
  z-index: 1;
  position: absolute;
  content: "6";
  right: 10px;
  top: 0;
  font-size: 120px;
  color: #EEF3F9;
  font-weight: bold;
  line-height: 80px;
}
@media (min-width: 768px) {
  .our-advantages__item:nth-child(6):after {
    right: 50px;
  }
}
@media (min-width: 1200px) {
  .our-advantages {
    background-image: url(../images/img_our_advantages2.svg), url(../images/img_advanteges.svg);
    background-position: 90% 370px, top left;
    background-repeat: no-repeat;
    background-size: 540px, auto;
  }
  .our-advantages__item {
    width: 50%;
    padding-right: 50px;
  }
  .our-advantages__item__img {
    margin-right: 42px;
  }
  .our-advantages__content__title {
    width: 50%;
    max-width: 620px;
  }
}
@media (min-width: 1920px) {
  .our-advantages {
    background-position: 90% 150px, top left;
    background-repeat: no-repeat;
    background-size: auto, auto;
  }
}

.how-we-work {
  background: #2A2C2E;
  background-image: url(../images/frame_wave.svg), url(../images/frame_wave2.svg);
  background-repeat: no-repeat;
  background-position: top, bottom;
  padding-top: 100px;
  margin-bottom: 20px;
  padding-bottom: 160px;
}
@media (min-width: 768px) {
  .how-we-work {
    margin-bottom: 60px;
    padding-top: 130px;
  }
}
@media (min-width: 1200px) {
  .how-we-work {
    margin-bottom: 60px;
    padding-top: 160px;
  }
}
@media (min-width: 1920px) {
  .how-we-work {
    margin-bottom: 100px;
  }
}
.how-we-work__title {
  display: flex;
  position: relative;
  align-items: center;
  color: white;
}
.how-we-work__title:before {
  content: "";
  background: url(../images/ic_light_bulb.svg) no-repeat;
  background-size: 100%;
  background-position: center;
  width: 80px;
  height: 120px;
  margin-right: 16px;
}
.how-we-work__title__label {
  font-size: 40px;
}
.how-we-work__title--blue {
  color: #007BFC;
}
@media (min-width: 576px) {
  .how-we-work__title__label {
    font-size: 50px;
  }
}
@media (min-width: 768px) {
  .how-we-work__title__label {
    font-size: 60px;
  }
}
@media (min-width: 1200px) {
  .how-we-work__title:before {
    width: 122px;
    height: 150px;
  }
  .how-we-work__title__label {
    font-size: 68px;
  }
}
@media (min-width: 1920px) {
  .how-we-work__title__label {
    font-size: 80px;
  }
}
.how-we-work__video-wrapper {
  margin-top: 50px;
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
}
.how-we-work__video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.we-specialized-in-iot {
  margin-bottom: 16px;
}
@media (min-width: 1200px) {
  .we-specialized-in-iot {
    margin-bottom: 100px;
  }
}
.we-specialized-in-iot__container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 70px;
}
.we-specialized-in-iot__title {
  padding-top: 20px;
  display: flex;
  position: relative;
  align-items: center;
  margin-bottom: 40px;
  display: flex;
  justify-content: center;
}
.we-specialized-in-iot__title:before {
  content: "";
  background: url(../images/ic_industry.svg) no-repeat;
  background-size: 100%;
  background-position: center;
  width: 80px;
  height: 120px;
  margin-right: 16px;
}
.we-specialized-in-iot__title__label {
  font-size: 40px;
}
.we-specialized-in-iot__title--blue {
  color: #007BFC;
}
@media (min-width: 576px) {
  .we-specialized-in-iot__title__label {
    font-size: 50px;
  }
}
@media (min-width: 768px) {
  .we-specialized-in-iot__title__label {
    font-size: 60px;
  }
}
@media (min-width: 1200px) {
  .we-specialized-in-iot__title:before {
    width: 122px;
    height: 150px;
  }
  .we-specialized-in-iot__title__label {
    font-size: 68px;
  }
}
@media (min-width: 1920px) {
  .we-specialized-in-iot__title__label {
    font-size: 80px;
  }
}
.we-specialized-in-iot__subtitle {
  margin-bottom: 40px;
}
.we-specialized-in-iot__subtitle span {
  color: #007BFC;
}
.we-specialized-in-iot__cybermatic-logo {
  margin-bottom: 40px;
  max-width: 100%;
}
.we-specialized-in-iot__left {
  width: 100%;
  margin-bottom: 40px;
}
.we-specialized-in-iot__right {
  width: 100%;
  position: relative;
}
.we-specialized-in-iot__right img {
  width: 100%;
}
.we-specialized-in-iot__text {
  font-size: 18px;
  color: #152F4E;
  margin-bottom: 40px;
}
@media (min-width: 1200px) {
  .we-specialized-in-iot__left {
    width: calc(50% - 16px);
    margin-bottom: 0;
  }
  .we-specialized-in-iot__right {
    width: calc(50% - 16px);
  }
}
.we-specialized-in-iot__swiper {
  width: 100%;
}
.we-specialized-in-iot__swiper.swiper {
  margin: 0 -8px 30px -8px;
}
.we-specialized-in-iot__swiper .swiper-slide {
  padding: 8px;
  height: auto;
}
.we-specialized-in-iot__swiper__pagination {
  display: flex;
  justify-content: center;
  width: 100%;
  max-width: 100%;
  margin-bottom: 65px;
}
.we-specialized-in-iot__swiper__item {
  background: white;
  padding: 32px 26px 22px 26px;
  display: flex;
  flex-direction: column;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1607843137);
  height: 100%;
}
.we-specialized-in-iot__swiper__header {
  display: flex;
  align-items: center;
  margin-bottom: 32px;
}
.we-specialized-in-iot__swiper__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #007BFC;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 24px;
}
.we-specialized-in-iot__swiper__icon--orange {
  background: #FFB74A;
}
.we-specialized-in-iot__swiper__icon--image {
  width: 60px;
  height: 60px;
}
.we-specialized-in-iot__swiper__icon--single {
  background: none;
}
.we-specialized-in-iot__swiper__read-more {
  margin-left: auto;
  display: flex;
  align-items: center;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  color: #152F4E;
}
.we-specialized-in-iot__swiper__title {
  font-size: 24px;
  font-weight: 600;
}
.we-specialized-in-iot__swiper__description {
  font-size: 21px;
  margin-bottom: 26px;
}
.we-specialized-in-iot__grid {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .we-specialized-in-iot__grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1200px) {
  .we-specialized-in-iot__grid {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}
.we-specialized-in-iot__grid__item {
  background: white;
  border-radius: 24px;
  box-shadow: 0 1px 32px rgba(2, 36, 91, 0.2);
  padding: 32px 26px 22px 26px;
  display: flex;
  flex-direction: column;
}
.we-specialized-in-iot__grid__header {
  display: flex;
  align-items: center;
  margin-bottom: 32px;
}
.we-specialized-in-iot__grid__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #007BFC;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 24px;
}
.we-specialized-in-iot__grid__icon--orange {
  background: #FFB74A;
}
.we-specialized-in-iot__grid__read-more {
  margin-left: auto;
  display: flex;
  align-items: center;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  color: #152F4E;
}
.we-specialized-in-iot__grid__title {
  font-size: 24px;
  font-weight: 600;
}
.we-specialized-in-iot__grid__description {
  font-size: 21px;
  margin-bottom: 26px;
}

.working-method {
  margin-bottom: 100px;
}
.working-method__container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.working-method__bottom-container {
  display: flex;
  flex-direction: column-reverse;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
}
.working-method__bottom-container > div {
  width: 100%;
}
.working-method__bottom__image {
  margin-top: 80px;
  display: flex;
  justify-content: center;
}
.working-method__bottom__image img {
  width: 370px;
  max-width: 90%;
}
.working-method__bottom__item {
  box-shadow: 0 1px 6px rgba(2, 36, 91, 0.2);
  border-radius: 16px;
  opacity: 1;
  padding: 26px;
  display: flex;
  align-items: center;
}
.working-method__bottom__item h5 {
  font-size: 18px;
  margin-bottom: 8px;
}
.working-method__bottom__icon {
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 16px;
}
.working-method__bottom__icon img {
  width: 60px;
}
.working-method__title {
  display: flex;
  position: relative;
  align-items: center;
  margin-bottom: 40px;
}
.working-method__title:before {
  content: "";
  background: url(../images/ic_working.svg) no-repeat;
  background-size: 100%;
  background-position: center;
  width: 80px;
  height: 120px;
  margin-right: 16px;
}
.working-method__title__label {
  font-size: 40px;
}
.working-method__title--blue {
  color: #007BFC;
}
@media (min-width: 576px) {
  .working-method__title__label {
    font-size: 50px;
  }
}
@media (min-width: 768px) {
  .working-method__title__label {
    font-size: 60px;
  }
}
@media (min-width: 1200px) {
  .working-method__title:before {
    width: 122px;
    height: 150px;
  }
  .working-method__title__label {
    font-size: 68px;
  }
}
@media (min-width: 1920px) {
  .working-method__title__label {
    font-size: 80px;
  }
}
.working-method__left {
  width: 100%;
}
.working-method__right {
  width: 100%;
  position: relative;
}
.working-method__right img {
  width: 100%;
}
.working-method__text {
  font-size: 18px;
  color: #152F4E;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .working-method__bottom__item h5 {
    font-size: 24px;
  }
  .working-method__bottom__icon {
    width: 80px;
    height: 80px;
  }
  .working-method__bottom__icon img {
    width: 80px;
  }
}
@media (min-width: 1200px) {
  .working-method__bottom__image {
    justify-content: flex-start;
    margin-top: 0;
  }
  .working-method__left {
    width: calc(50% - 16px);
    margin-bottom: 0;
  }
  .working-method__right {
    width: calc(50% - 16px);
  }
  .working-method__bottom-container {
    padding-right: 0;
    flex-direction: row;
  }
  .working-method__bottom-container > div:first-child {
    width: calc(50% - 90px);
  }
  .working-method__bottom-container > div:last-child {
    width: calc(50% + 90px);
  }
}
@media (min-width: 1920px) {
  .working-method__bottom-container > div:first-child {
    width: calc(50% - 130px);
  }
  .working-method__bottom-container > div:last-child {
    width: calc(50% + 130px);
  }
}

.articles__container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 100%;
}
.articles__title {
  display: flex;
  position: relative;
  align-items: center;
  margin-bottom: 40px;
}
.articles__title:before {
  content: "";
  background: url(../images/ic_articles.svg) no-repeat;
  background-size: 100%;
  background-position: center;
  width: 80px;
  height: 120px;
  margin-right: 16px;
}
.articles__title__label {
  font-size: 40px;
}
.articles__title--blue {
  color: #007BFC;
}
@media (min-width: 576px) {
  .articles__title__label {
    font-size: 50px;
  }
}
@media (min-width: 768px) {
  .articles__title__label {
    font-size: 60px;
  }
}
@media (min-width: 1200px) {
  .articles__title:before {
    width: 122px;
    height: 150px;
  }
  .articles__title__label {
    font-size: 68px;
  }
}
@media (min-width: 1920px) {
  .articles__title__label {
    font-size: 80px;
  }
}
@media (min-width: 1200px) {
  .articles__title {
    margin-left: -138px;
  }
}
.articles__text {
  font-size: 18px;
  margin-bottom: 70px;
}
.articles__left {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.articles__go-to-blog-button {
  margin-left: auto;
}
.articles__cloud {
  width: 100%;
  margin-bottom: 80px;
}
.articles__cloud .cloud {
  margin: 0 auto;
  position: static;
  font-size: 45px;
}
.articles__blogs {
  width: 100%;
  background: white;
  margin-bottom: 8px;
  display: flex;
  flex-direction: column;
}
.articles__swiper {
  width: 100%;
}
.articles__swiper.swiper {
  margin: 0 -8px 30px -8px;
}
@media (min-width: 768px) {
  .articles__swiper.swiper {
    margin: 0 0 0 8px;
  }
}
.articles__swiper .swiper-slide {
  padding: 8px;
  height: auto;
}
.articles__swiper__pagination {
  display: flex;
  justify-content: center;
  width: 100%;
  max-width: 100%;
  margin-bottom: 30px;
}
.articles__swiper__item {
  display: flex;
  justify-content: space-between;
  opacity: 1;
  margin-bottom: 16px;
  border-radius: 24px;
  flex-direction: column-reverse;
  background: white;
  overflow: hidden;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1607843137);
  height: 100%;
}
@media (min-width: 576px) {
  .articles__swiper__item {
    flex-direction: row;
    height: 235px;
  }
}
.articles__swiper__item-content {
  padding: 8px;
  display: flex;
  flex-direction: column;
}
.articles__swiper__item-image {
  height: 100%;
  min-width: 235px;
  width: 100%;
  border-radius: 24px;
  overflow: hidden;
}
@media (min-width: 576px) {
  .articles__swiper__item-image {
    width: 235px;
  }
}
.articles__swiper__item-image img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.articles__swiper__item-header {
  display: flex;
  align-items: center;
  height: 82px;
}
.articles__swiper__item-meta {
  display: flex;
  flex-direction: column;
  margin-left: 18px;
  font-size: 16px;
}
.articles__swiper__item-meta span {
  margin-bottom: 8px;
}
.articles__swiper__item-meta h5 {
  font-size: 24px;
}
.articles__swiper__item-link {
  display: flex;
  margin-top: auto;
  margin-left: auto;
}
.articles__swiper__item-link a {
  display: flex;
  align-items: center;
  color: #152F4E;
  font-weight: bold;
  font-size: 16px;
  text-decoration: none;
}
.articles__swiper__item-link a span {
  margin-right: 8px;
}
.articles__swiper__item-avatar {
  border-radius: 50%;
  width: 82px;
  height: 82px;
  overflow: hidden;
}
.articles__swiper__item-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.articles__swiper__item-text {
  padding: 8px 16px 8px 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
  font-size: 16px;
  color: #3C5661;
}
@media (min-width: 1200px) {
  .articles__left {
    width: 330px;
    padding-right: 32px;
  }
  .articles__blogs {
    width: calc(100% - 330px);
  }
}
@media (min-width: 1500px) {
  .articles__left {
    width: 450px;
    padding-right: 32px;
  }
  .articles__blogs {
    width: calc(100% - 450px);
  }
}

.use-cases {
  background: #E9EBFB;
  background-image: url(../images/uc_wave.svg), url(../images/wave-bottom-gray.svg);
  background-position: top, bottom right;
  background-repeat: no-repeat;
  padding-top: 120px;
  padding-bottom: 130px;
  margin-top: -100px;
}
@media (min-width: 576px) {
  .use-cases {
    padding-bottom: 180px;
  }
}
@media (min-width: 768px) {
  .use-cases {
    margin-top: -50px;
  }
}
@media (min-width: 1200px) {
  .use-cases {
    background-position: top, bottom left;
    margin-top: 0;
    padding-bottom: 220px;
  }
}
.use-cases__title {
  display: flex;
  position: relative;
  align-items: center;
  margin-bottom: 40px;
  display: flex;
  align-items: flex-start;
  margin-right: auto;
}
.use-cases__title:before {
  content: "";
  background: url(../images/ic_use_case.svg) no-repeat;
  background-size: 100%;
  background-position: center;
  width: 80px;
  height: 120px;
  margin-right: 16px;
}
.use-cases__title__label {
  font-size: 40px;
}
.use-cases__title--blue {
  color: #007BFC;
}
@media (min-width: 576px) {
  .use-cases__title__label {
    font-size: 50px;
  }
}
@media (min-width: 768px) {
  .use-cases__title__label {
    font-size: 60px;
  }
}
@media (min-width: 1200px) {
  .use-cases__title:before {
    width: 122px;
    height: 150px;
  }
  .use-cases__title__label {
    font-size: 68px;
  }
}
@media (min-width: 1920px) {
  .use-cases__title__label {
    font-size: 80px;
  }
}
.use-cases__title > div {
  display: flex;
  flex-direction: column;
}
.use-cases__title p {
  font-size: 40px;
  font-weight: bold;
}
@media (min-width: 1200px) {
  .use-cases__title {
    margin-left: -138px;
  }
}
.use-cases__image {
  display: none;
}
@media (min-width: 1200px) {
  .use-cases__image {
    display: block;
    position: relative;
    top: -90px;
  }
}
.use-cases__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 100%;
}
.use-cases__content {
  position: relative;
  margin-bottom: 40px;
  margin-right: auto;
}
.use-cases__content .tags {
  position: relative;
  z-index: 2;
}
.use-cases__content .tags .tag {
  background: white;
}
@media (min-width: 1200px) {
  .use-cases__content {
    width: calc(100% - 327px);
    padding-right: 10px;
    margin-bottom: 55px;
  }
  .use-cases__content::after {
    content: "";
    background: url(../images/img_usecases.svg);
    width: 515px;
    height: 515px;
    position: absolute;
    right: -400px;
    bottom: -100px;
  }
}
@media (min-width: 1920px) {
  .use-cases__content::after {
    right: -515px;
  }
}
.use-cases__swiper {
  width: 100%;
}
.use-cases__swiper.swiper {
  margin: 0 -8px 30px -8px;
}
.use-cases__swiper .swiper-slide {
  padding: 8px;
  height: auto;
}
.use-cases__swiper__pagination {
  display: flex;
  justify-content: center;
  width: 100%;
  max-width: 100%;
  margin-bottom: 65px;
}
.use-cases__swiper__item {
  background: white;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1607843137);
  height: 100%;
}
.use-cases__swiper__item__image {
  height: 400px;
}
.use-cases__swiper__item__image img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}
.use-cases__swiper__item__content {
  padding: 16px;
  display: flex;
  flex-direction: column;
  height: calc(100% - 400px);
}
.use-cases__swiper__item__title {
  font-size: 20px;
  margin-bottom: 30px;
}
.use-cases__swiper__item__description {
  font-size: 16px;
  margin-bottom: 50px;
}
.use-cases__swiper__item__link {
  font-weight: bold;
  font-size: 16px;
  margin-left: auto;
  margin-top: auto;
  color: #152F4E;
  display: flex;
  justify-content: flex-end;
  text-decoration: none;
}
.use-cases__swiper__item__link span {
  margin-right: 8px;
}
.use-cases__get-use-cases-button {
  margin: 0 auto 65px auto;
}
.use-cases__references {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin-bottom: 70px;
}
.use-cases__references__title {
  margin-bottom: 45px;
}
.use-cases__references-swiper {
  width: 100%;
}
.use-cases__references-swiper.swiper {
  margin: 0 -8px 30px -8px;
}
.use-cases__references-swiper .swiper-slide {
  padding: 8px;
  height: auto;
}
.use-cases__references-swiper__pagination {
  display: flex;
  justify-content: center;
  width: 100%;
  max-width: 100%;
}
.use-cases__references-swiper__item {
  background: white;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1607843137);
  height: 100%;
}
.use-cases__references-swiper__item__image {
  height: 400px;
}
.use-cases__references-swiper__item__image img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}
.use-cases__references-swiper__item__logo {
  width: 120px;
}
.use-cases__references-swiper__item__bottom {
  display: flex;
}
.use-cases__references-swiper__item__header {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}
.use-cases__references-swiper__item__content {
  padding: 16px;
}
.use-cases__references-swiper__item__title {
  font-size: 21px;
}
.use-cases__references-swiper__item__category {
  color: #007BFC;
  font-size: 24px;
}
.use-cases__references-swiper__item__description {
  font-size: 16px;
  margin-bottom: 16px;
  color: #3C5661;
}
.use-cases__references-swiper__item__link {
  font-weight: bold;
  font-size: 16px;
  margin-left: auto;
  color: #152F4E;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  white-space: nowrap;
}
.use-cases__references-swiper__item__link span {
  margin-right: 8px;
}
.use-cases__testimonials {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.use-cases__testimonials__title {
  width: 100%;
}
@media (min-width: 1200px) {
  .use-cases__testimonials__title {
    width: 450px;
  }
}
.use-cases__testimonials__content {
  width: 100%;
}
@media (min-width: 1200px) {
  .use-cases__testimonials__content {
    width: calc(100% - 450px);
  }
}
.use-cases__testimonials-swiper__item {
  padding-bottom: 16px;
}
.use-cases__testimonials-swiper__item__title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 16px;
}
.use-cases__testimonials-swiper__item__description {
  font-size: 16px;
  color: #3C5661;
  font-style: italic;
  font-weight: 500;
  margin-bottom: 8px;
}
.use-cases__testimonials-swiper__item__category {
  color: #007BFC;
  font-size: 18px;
  margin-left: auto;
  text-align: right;
}

.lets-talk {
  padding-top: 20px;
  min-height: 550px;
  background: url("../images/img_map.webp") #2A2C2E;
  background-repeat: no-repeat;
}
@media (min-width: 768px) {
  .lets-talk {
    margin-top: 40px;
  }
}
.lets-talk__title {
  display: flex;
  position: relative;
  align-items: center;
  margin-bottom: 40px;
  color: white;
}
.lets-talk__title:before {
  content: "";
  background: url(../images/ic_contact_support-1.svg) no-repeat;
  background-size: 100%;
  background-position: center;
  width: 80px;
  height: 120px;
  margin-right: 16px;
}
.lets-talk__title__label {
  font-size: 40px;
}
.lets-talk__title--blue {
  color: #007BFC;
}
@media (min-width: 576px) {
  .lets-talk__title__label {
    font-size: 50px;
  }
}
@media (min-width: 768px) {
  .lets-talk__title__label {
    font-size: 60px;
  }
}
@media (min-width: 1200px) {
  .lets-talk__title:before {
    width: 122px;
    height: 150px;
  }
  .lets-talk__title__label {
    font-size: 68px;
  }
}
@media (min-width: 1920px) {
  .lets-talk__title__label {
    font-size: 80px;
  }
}
.lets-talk__content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.lets-talk__content > div {
  width: 100%;
  margin-bottom: 16px;
}
.lets-talk__text {
  display: flex;
  flex-direction: column;
  padding: 8px 28px;
}
.lets-talk__description {
  font-size: 18px;
  color: white;
  margin-bottom: 16px;
}
.lets-talk__schedule-a-meeting {
  margin-top: auto;
  margin-bottom: 24px;
  font-size: 24px;
  font-weight: bold;
  text-decoration: underline;
  color: #FFB74A;
}
.lets-talk__join-us {
  font-size: 21px;
  font-weight: bold;
  text-decoration: underline;
  color: #FFB74A;
}
@media (min-width: 1200px) {
  .lets-talk__triangles1:after {
    content: "";
    width: 225px;
    height: 233px;
    background: url("../images/gfx_triangles_textures1.svg");
    background-repeat: no-repeat;
    background-size: 100%;
    position: absolute;
    top: 12px;
    right: 0;
    transform: translateY(-50%);
  }
  .lets-talk__triangles2 {
    position: relative;
    z-index: 2;
  }
  .lets-talk__triangles2:after {
    content: "";
    width: 448px;
    height: 517px;
    background: url("../images/gfx_triangles_textures2.svg");
    background-repeat: no-repeat;
    background-size: 100%;
    position: absolute;
    z-index: 1;
    top: -84px;
    right: 0;
    transform: translateY(-50%);
  }
  .lets-talk__triangles3:after {
    content: "";
    width: 143px;
    height: 137px;
    background: url("../images/gfx_triangles_textures3.svg");
    background-repeat: no-repeat;
    background-size: 100%;
    position: absolute;
    bottom: -70px;
    right: 0;
  }
}
.lets-talk__location {
  position: relative;
  z-index: 2;
  border-radius: 16px;
  background: white;
  padding: 24px 28px;
}
.lets-talk__location__country {
  display: inline-block;
  font-size: 24px;
  margin-bottom: 16px;
  position: relative;
}
.lets-talk__location__country:after {
  content: "";
  width: 100%;
  position: absolute;
  top: -24px;
  left: 0;
  height: 4px;
  background: #007BFC;
}
.lets-talk__location__address {
  font-size: 18px;
  margin-bottom: 8px;
}
.lets-talk__location__phone {
  font-size: 24px;
  font-weight: bold;
}
.lets-talk__location__email {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 16px;
}
.lets-talk__location__view-on-map {
  color: #007BFC;
  font-size: 18px;
}
@media (min-width: 1200px) {
  .lets-talk__title {
    margin-bottom: 120px;
  }
  .lets-talk__content > div {
    width: calc(50% - 8px);
  }
}
@media (min-width: 1920px) {
  .lets-talk__content > div {
    width: calc(25% - 12px);
  }
}

.footer {
  background: #152F4E;
  padding: 48px 0;
}
.footer__top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 24px;
}
.footer__social {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  height: 60px;
}
.footer__social > a:not(:last-child) {
  margin-right: 24px;
}
.footer__social > a:not(:last-child) .x {
  width: 28px;
}
.footer__info {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  color: white;
}
.footer__item {
  width: 100%;
  margin-bottom: 24px;
}
.footer__header {
  font-size: 20px;
  margin-bottom: 30px;
}
.footer__description {
  font-size: 18px;
  max-width: 287px;
}
.footer__bottom {
  display: flex;
  flex-direction: column-reverse;
  justify-content: space-between;
  align-items: center;
  color: white;
}
.footer__bottom p {
  font-weight: bold;
  margin: 16px 0;
}
.footer__links {
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .footer__item {
    width: calc(50% - 8px);
  }
  .footer__bottom {
    flex-direction: row;
  }
}
@media (min-width: 1200px) {
  .footer__item {
    width: calc(25% - 16px);
  }
}

.youtube-player {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
  background: #000;
  margin: 5px;
}

.youtube-player iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 100;
  background: transparent;
}

.youtube-player img {
  object-fit: cover;
  display: block;
  left: 0;
  bottom: 0;
  margin: auto;
  max-width: 100%;
  width: 100%;
  position: absolute;
  right: 0;
  top: 0;
  border: none;
  height: auto;
  cursor: pointer;
  -webkit-transition: 0.4s all;
  -moz-transition: 0.4s all;
  transition: 0.4s all;
}

.youtube-player img:hover {
  -webkit-filter: brightness(75%);
}

.youtube-player .play {
  height: 72px;
  width: 72px;
  left: 50%;
  top: 50%;
  margin-left: -36px;
  margin-top: -36px;
  position: absolute;
  background: url("//i.imgur.com/TxzC70f.png") no-repeat;
  cursor: pointer;
}

body {
  font-size: 16px;
  margin: 0;
  font-family: "Livvic", sans-serif;
  color: #152F4E;
}
@media (min-width: 1921px) {
  body {
    max-width: 1920px;
    margin: auto;
  }
}

.overflow-scroll {
  overflow: hidden !important;
  overflow-y: scroll !important;
}

#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #fff;
  z-index: 99999999;
}

#status {
  width: 100px;
  height: 100px;
  position: absolute;
  left: 50%;
  top: 50%;
  background-image: url(../images/loading.gif);
  background-position: center;
  background-size: 38px auto;
  background-repeat: no-repeat;
  margin: -50px 0 0 -50px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
  background: 0 0;
}

.buttons {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
}
.buttons > * {
  margin: 8px 0;
}
.buttons > *:not(:last-child) {
  margin-right: 16px;
}

.button {
  font-size: 1em;
  font-weight: 700;
  line-height: 3.125em;
  border: none;
  border-radius: 8px;
  padding: 0 24px;
  color: #fff;
  text-align: center;
  background: #007BFC;
  transition: all 0.5s ease;
  display: inline-flex;
  text-decoration: none;
}
@media (max-width: 576px) {
  .button {
    padding: 0 12px;
  }
}
.button img {
  margin-right: 8px;
}
.button__primary {
  background: #007BFC;
}
.button__secondary {
  background: #152F4E;
}
.button__warning {
  background: #FFB74A;
  color: #152F4E;
}

.blue-color {
  color: #007BFC;
}

a {
  color: #007BFC;
}

.cloud {
  width: 260px;
  height: 260px;
  background: url("../images/speech-bubble.webp") no-repeat;
  background-size: 100%;
  position: absolute;
  top: -240px;
  right: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  font-size: 40px;
  font-weight: bold;
  padding-right: 16px;
}

#home::before {
  content: "";
  display: block;
  height: 70px;
  margin-top: -70px;
  visibility: hidden;
}

#development::before {
  content: "";
  display: block;
  height: 80px;
  margin-top: -80px;
  visibility: hidden;
}

#industries::before {
  content: "";
  display: block;
  height: 70px;
  margin-top: -70px;
  visibility: hidden;
}

#contact::before {
  content: "";
  display: block;
  height: 70px;
  margin-top: -70px;
  visibility: hidden;
}

#case-studies::before {
  content: "";
  display: block;
  height: 110px;
  margin-top: -110px;
  visibility: hidden;
}

#about::before {
  content: "";
  display: block;
  height: 90px;
  margin-top: -90px;
  visibility: hidden;
}

.go-to-top {
  position: fixed;
  bottom: 20px;
  left: 20px;
  width: 56px;
  height: 56px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 100;
}

/*# sourceMappingURL=style.css.map */
