.home-top_banner {
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: row;
  overflow: hidden;
  position: relative;
}
.home-top_banner-black {
  position: absolute;
  width: 100%;
  height: 100%;
  background: #222;
  top: 0;
  left: 0;
  opacity: 0.7;
}
.home-top_banner-content {
  margin: auto;
  overflow: hidden;
  max-width: 60%;
  text-align: center;
  z-index: 1;
}
@media (max-width: 1000px) {
  .home-top_banner-content {
    max-width: 90%;
  }
}
.home-top_banner-content h1 {
  font-size: calc(54px + 12 * (100vw - 300px) / 1300);
  line-height: calc(54px + 12 * (100vw - 300px) / 1300);
  color: #00c8f6;
  animation: slide-top 1s ease forwards;
}
@media (max-width: 600px) {
  .home-top_banner-content h1 {
    font-size: 44px;
  }
}
@media (max-width: 450px) {
  .home-top_banner-content h1 {
    font-size: 38px;
  }
}
@media (max-width: 400px) {
  .home-top_banner-content h1 {
    font-size: 32px;
    line-height: 120%;
  }
}
@keyframes slide-top {
  0% {
    transform: translateY(-350px);
  }
  100% {
    transform: translateY(0);
  }
}
.home-top_banner-content h3 {
  font-size: calc(19px + 12 * (100vw - 300px) / 1300);
  line-height: calc(19px + 12 * (100vw - 300px) / 1300);
  color: #fff;
  animation: slide-left 1.5s ease forwards;
}
@keyframes slide-left {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0);
  }
}
.home-top_banner-content a {
  margin-top: 50px;
  animation: slide-right 1.5s ease forwards;
}
@keyframes slide-right {
  0% {
    transform: translateY(100%);
  }
  100% {
    transform: translateY(0);
  }
}
.home-top_banner .arrow {
  z-index: 1;
  opacity: 0.5;
  position: absolute;
}
.home-top_banner .arrow--top {
  top: 0;
  left: -5em;
}
.home-top_banner .arrow--bottom {
  bottom: 0;
  right: 3em;
}
.home-top_banner .circle {
  transform: translate(50%, -50%) rotate(0deg);
  transform-origin: center;
}
.home-top_banner .circle--ltblue {
  height: 20em;
  width: 20em;
  border-radius: 20em;
  background: linear-gradient(#15e0ff, #00c8f6);
}
.home-top_banner .backdrop {
  position: absolute;
  width: 100vw;
  height: 100vh;
  display: block;
  background-color: pink;
}
.home-top_banner .dotted-circle {
  position: absolute;
  top: 0;
  right: 0;
  opacity: 0.3;
  animation: rotation 38s linear infinite;
}
.home-top_banner .draw-in {
  stroke-dasharray: 1000;
  stroke-dashoffset: 10;
  animation: draw 15s ease-in-out alternate infinite;
}
@keyframes draw {
  from {
    stroke-dashoffset: 1000;
  }
  to {
    stroke-dashoffset: 0;
  }
}
.home-top_banner .item-to {
  animation-duration: 10s;
  animation-iteration-count: infinite;
  transform-origin: bottom;
}
.home-top_banner .bounce-1 {
  animation-name: bounce-1;
  animation-timing-function: ease;
}
.home-top_banner .bounce-2 {
  animation-name: bounce-2;
  animation-timing-function: ease;
}
.home-top_banner .bounce-3 {
  animation-name: bounce-3;
  animation-timing-function: ease;
}
@keyframes bounce-1 {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(50px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes bounce-2 {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-30px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes bounce-3 {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(30px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes rotation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes gradient-fade {
  from {
    transform: translate(10%, -10%) rotate(0deg);
  }
  to {
    transform: translate(50%, -50%) rotate(360deg);
  }
}
@keyframes gradient-fade-alt {
  from {
    transform: translate(-20%, 20%) rotate(0deg);
  }
  to {
    transform: translate(-60%, 60%) rotate(360deg);
  }
}
.home-who {
  background: #fff;
}
.home-who-content {
  padding: 150px 0 150px 40px;
  position: relative;
}
@media (max-width: 1000px) {
  .home-who-content {
    padding: 150px 15px;
  }
}
@media (max-width: 600px) {
  .home-who-content {
    padding: 50px 15px;
  }
}
.home-who-content .line {
  position: absolute;
  width: 1px;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.1);
  overflow: hidden;
}
.home-who-content .line::after {
  content: "";
  display: block;
  position: absolute;
  height: 15vh;
  width: 100%;
  top: -50%;
  left: 0;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #000 75%, #000 100%);
  -webkit-animation: drop 7s 0s infinite;
  animation: drop 7s 0s infinite;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-timing-function: cubic-bezier(0.4, 0.26, 0, 0.97);
  animation-timing-function: cubic-bezier(0.4, 0.26, 0, 0.97);
}
.home-who-content .line:nth-child(1) {
  margin-right: 0;
}
.home-who-content .line:nth-child(1)::after {
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}
.home-who-content .line:nth-child(3) {
  margin-right: 0;
}
.home-who-content .line:nth-child(3)::after {
  -webkit-animation-delay: 2.5s;
  animation-delay: 2.5s;
}
@-webkit-keyframes drop {
  0% {
    top: -50%;
  }
  100% {
    top: 110%;
  }
}
@keyframes drop {
  0% {
    top: -50%;
  }
  100% {
    top: 110%;
  }
}
.home-who h4 {
  margin: 0;
  color: #222222;
  font-size: 48px;
  line-height: 56px;
}
.home-who h4 span {
  color: #00c8f6;
}
.home-who p {
  margin: 20px 0 0 0;
  color: #222222;
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
}
.home-services {
  background: #101014;
  color: #fff;
}
.home-services-content {
  max-width: 50%;
  margin: 0 auto;
  padding: 100px 0 0;
  text-align: center;
}
@media (max-width: 1150px) {
  .home-services-content {
    max-width: 90%;
  }
}
@media (max-width: 600px) {
  .home-services-content {
    padding: 50px 0;
  }
}
.home-services-content h2 {
  font-size: 30px;
  line-height: 43px;
  font-weight: 500;
  text-transform: uppercase;
}
.home-services-content h2 span {
  font-weight: 700;
  color: #00c8f6;
  font-size: 36px;
}
.home-services-slider {
  position: relative;
}
.home-services .hide {
  display: none !important;
}
.home-services .gallery-wrapper {
  position: relative;
  z-index: 1;
}
.home-services .gallery-wrapper .content {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100vh;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 3vh 0;
  background: #101014;
}
.home-services .gallery-wrapper .content .gallery.full {
  position: relative;
  display: flex;
  align-items: center;
}
.home-services .gallery-wrapper .content .gallery.full .swiper-container .swiper-wrapper {
  display: flex;
  height: 80vh;
  align-items: center;
}
.home-services .gallery-wrapper .content .gallery.full .swiper-container .swiper-wrapper .swiper-slide {
  position: relative;
  height: 50vh;
  transition: all 0.4s ease-out;
  box-sizing: border-box;
  width: auto;
  opacity: 0.25;
  overflow: hidden;
}
.home-services .gallery-wrapper .content .gallery.full .swiper-container .swiper-wrapper .swiper-slide.swiper-slide-prev, .home-services .gallery-wrapper .content .gallery.full .swiper-container .swiper-wrapper .swiper-slide.swiper-slide-next {
  width: 20% !important;
}
@media (max-width: 700px) {
  .home-services .gallery-wrapper .content .gallery.full .swiper-container .swiper-wrapper .swiper-slide.swiper-slide-prev, .home-services .gallery-wrapper .content .gallery.full .swiper-container .swiper-wrapper .swiper-slide.swiper-slide-next {
    width: 5% !important;
  }
}
.home-services .gallery-wrapper .content .gallery.full .swiper-container .swiper-wrapper .swiper-slide.swiper-slide-active {
  height: 80vh;
  width: 60% !important;
  opacity: 1;
}
@media (max-width: 700px) {
  .home-services .gallery-wrapper .content .gallery.full .swiper-container .swiper-wrapper .swiper-slide.swiper-slide-active {
    width: 90% !important;
  }
}
.home-services .gallery-wrapper .content .gallery.full .swiper-container .swiper-wrapper .swiper-slide.swiper-slide-active:hover .zoom {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}
.home-services .gallery-wrapper .content .gallery.full .swiper-container .swiper-wrapper .swiper-slide .image {
  width: 100%;
  height: 100%;
}
.home-services .gallery-wrapper .content .gallery.full .swiper-container .swiper-wrapper .swiper-slide .image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.home-services .gallery-wrapper .content .gallery.full .swiper-container .swiper-wrapper .swiper-slide .overlay {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
  width: 100%;
  height: auto;
  padding: 50px 50px 30px 50px;
  background: rgb(0, 0, 0);
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0) 100%);
  display: flex;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-out;
  box-sizing: border-box;
}
.home-services .gallery-wrapper .content .gallery.full .swiper-container .swiper-wrapper .swiper-slide .overlay.show {
  opacity: 1;
  visibility: visible;
}
.home-services .gallery-wrapper .content .gallery.full .swiper-container .swiper-wrapper .swiper-slide .overlay.show .text-wrap {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.home-services .gallery-wrapper .content .gallery.full .swiper-container .swiper-wrapper .swiper-slide .overlay .text-wrap {
  display: flex;
  flex-direction: column;
  max-width: 600px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(50px);
  transition: all 0.4s linear;
}
.home-services .gallery-wrapper .content .gallery.full .swiper-container .swiper-wrapper .swiper-slide .overlay .text-wrap .name span {
  font-size: 2.2em;
  font-weight: 700;
  color: #00c8f6;
}
@media (max-width: 700px) {
  .home-services .gallery-wrapper .content .gallery.full .swiper-container .swiper-wrapper .swiper-slide .overlay .text-wrap .name span {
    font-size: 1.5em;
  }
}
.home-services .gallery-wrapper .content .gallery.full .swiper-container .swiper-wrapper .swiper-slide .overlay .text-wrap .caption p {
  font-size: 1.16em;
  color: #fff;
  line-height: 1.7;
}
.home-services .gallery-wrapper .content .gallery.full .swiper-next-button,
.home-services .gallery-wrapper .content .gallery.full .swiper-prev-button {
  position: absolute;
  z-index: 99;
  outline: none;
  transition: all 0.3s linear;
  width: 20%;
  height: 50vh;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  cursor: pointer;
}
.home-services .gallery-wrapper .content .gallery.full .swiper-next-button.swiper-button-disabled,
.home-services .gallery-wrapper .content .gallery.full .swiper-prev-button.swiper-button-disabled {
  opacity: 0.2;
}
.home-services .gallery-wrapper .content .gallery.full .swiper-next-button img,
.home-services .gallery-wrapper .content .gallery.full .swiper-prev-button img {
  transition: 0.3s;
}
.home-services .gallery-wrapper .content .gallery.full .swiper-next-button {
  right: 0;
  padding-left: 5vw;
  justify-content: flex-start;
}
@media (max-width: 700px) {
  .home-services .gallery-wrapper .content .gallery.full .swiper-next-button {
    right: -7vw;
  }
}
.home-services .gallery-wrapper .content .gallery.full .swiper-prev-button {
  left: 0;
  padding-right: 5vw;
}
@media (max-width: 700px) {
  .home-services .gallery-wrapper .content .gallery.full .swiper-prev-button {
    left: -7vw;
  }
}
.home-services .gallery-wrapper .content .gallery.full .swiper-prev-button img {
  transform: scaleX(-1);
}
.home-services .gallery-wrapper .content .gallery.thumb {
  position: relative;
  width: 100%;
  max-width: 1020px;
  margin: -50px auto 0;
  display: flex;
  align-items: center;
}
.home-services .gallery-wrapper .content .gallery.thumb .swiper-container {
  width: 100%;
}
.home-services .gallery-wrapper .content .gallery.thumb .swiper-container .swiper-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 1000px) {
  .home-services .gallery-wrapper .content .gallery.thumb .swiper-container .swiper-wrapper {
    flex-wrap: wrap;
    padding-top: 50px;
  }
}
.home-services .gallery-wrapper .content .gallery.thumb .swiper-container .swiper-wrapper .swiper-slide {
  position: relative;
  height: 10vh;
  box-sizing: border-box;
  cursor: pointer;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-width: 215px;
}
@media (max-width: 1000px) {
  .home-services .gallery-wrapper .content .gallery.thumb .swiper-container .swiper-wrapper .swiper-slide {
    width: 100%;
  }
}
@media (max-width: 500px) {
  .home-services .gallery-wrapper .content .gallery.thumb .swiper-container .swiper-wrapper .swiper-slide {
    height: auto;
  }
}
.home-services .gallery-wrapper .content .gallery.thumb .swiper-container .swiper-wrapper .swiper-slide.swiper-slide-thumb-active p {
  --_p: 100% ;
}
.home-services .gallery-wrapper .content .gallery.thumb .swiper-container .swiper-wrapper .swiper-slide p {
  --s: 0.1em;
  --c: #00c8f6;
  font-size: 20px;
  font-weight: 600;
  width: auto;
  text-align: center;
  white-space: nowrap;
  color: white;
  padding-bottom: var(--s);
  background: linear-gradient(90deg, var(--c) 50%, white 0) calc(100% - var(--_p, 0%))/200% 100%, linear-gradient(var(--c) 0 0) 0% 100%/var(--_p, 0%) var(--s) no-repeat;
  -webkit-background-clip: text, padding-box;
  background-clip: text, padding-box;
  transition: 0.5s;
}
@media (max-width: 500px) {
  .home-services .gallery-wrapper .content .gallery.thumb .swiper-container .swiper-wrapper .swiper-slide p {
    margin: 5px 0;
    font-size: 14px;
  }
}
.home-services .gallery-wrapper .content .gallery.thumb .swiper-container .swiper-wrapper .swiper-slide p:hover {
  --_p: 100% ;
}
.home-services .gallery-wrapper .content .gallery.thumb .swiper-next-button {
  right: -15px;
}
.home-services .gallery-wrapper .content .gallery.thumb .swiper-prev-button {
  left: -5px;
}
.home-services .gallery-wrapper .content .gallery.thumb .swiper-next-button,
.home-services .gallery-wrapper .content .gallery.thumb .swiper-prev-button {
  display: none;
  position: absolute;
  z-index: 99;
  outline: none;
  transition: all 0.2s linear;
  width: 32px;
  height: 20px;
  background-color: #ed1b28;
  cursor: pointer;
}
.home-services .gallery-wrapper .content .gallery.thumb .swiper-next-button:hover,
.home-services .gallery-wrapper .content .gallery.thumb .swiper-prev-button:hover {
  background-color: #c5101b;
}
.home-services .gallery-wrapper .content .gallery.thumb .swiper-next-button.swiper-button-disabled,
.home-services .gallery-wrapper .content .gallery.thumb .swiper-prev-button.swiper-button-disabled {
  opacity: 0.2;
}
.home-story {
  background-size: contain;
  background-color: #000;
  background-position: left center;
  background-repeat: no-repeat;
  position: relative;
}
.home-story:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
}
.home-story-content {
  display: flex;
}
@media (max-width: 700px) {
  .home-story-content {
    flex-wrap: wrap;
  }
}
.home-story-content-left {
  width: 50%;
}
@media (max-width: 700px) {
  .home-story-content-left {
    width: 100%;
  }
}
.home-story-content-right {
  width: 40%;
  margin: 100px 0;
  border-bottom: 1px solid #00c8f6;
  border-right: 1px solid #00c8f6;
  z-index: 1;
}
@media (max-width: 700px) {
  .home-story-content-right {
    width: 90%;
    margin: 50px auto;
  }
}
.home-story-content-right h3 {
  font-size: 28px;
  line-height: 56px;
  text-transform: uppercase;
  color: #fff;
  font-weight: 400;
}
.home-story-content-right h3 span {
  color: #00c8f6;
  font-weight: 700;
}
.home-story-content-right p {
  color: #fff;
}
.home-story-content-right-form {
  width: 95%;
  padding: 40px 20px;
  background: rgba(0, 0, 0, 0.5);
  box-sizing: border-box;
  border-radius: 10px;
}
.home-story-content-right-form .forminator-row {
  margin-bottom: 0 !important;
}
.home-story-content-right-form .forminator-field {
  position: relative;
}
.home-story-content-right-form .forminator-field input, .home-story-content-right-form .forminator-field textarea {
  width: 100% !important;
  padding: 3px 0 !important;
  font-size: 16px !important;
  color: #fff !important;
  margin-bottom: 15px !important;
  border: none !important;
  border-bottom: 1px solid #fff !important;
  outline: none !important;
  background: transparent !important;
}
.home-story-content-right-form .forminator-field label {
  padding: 0 !important;
  font-size: 16px !important;
  color: #fff !important;
  pointer-events: none !important;
  transition: 0.5s !important;
}
.home-story-content-right-form .forminator-field input:focus ~ label,
.home-story-content-right-form .forminator-field input:valid ~ label,
.home-story-content-right-form .forminator-field textarea:focus ~ label {
  top: -20px;
  left: 0;
  color: #00c8f6;
  font-size: 12px;
}
.home-story-content-right-form form .forminator-button-submit, .home-story-content-right-form form .forminator-button-upload {
  position: relative !important;
  display: inline-block !important;
  padding: 10px 20px !important;
  color: #00c8f6 !important;
  font-size: 16px !important;
  text-decoration: none !important;
  text-transform: uppercase !important;
  overflow: hidden !important;
  transition: 0.5s !important;
  margin-top: 10px !important;
  background: transparent !important;
  border: 1px solid #00c8f6 !important;
}
.home-story-content-right-form .forminator-button-submit:hover {
  background: #00c8f6 !important;
  color: #fff !important;
}
.home-story-content-right-form .forminator-button-submit span {
  position: absolute;
  display: block;
}
.home-story-content-right-form .forminator-button-submit span:nth-child(1) {
  top: 0;
  left: -100%;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #00c8f6);
  animation: btn-anim1 1s linear infinite;
}
@keyframes btn-anim1 {
  0% {
    left: -100%;
  }
  50%, 100% {
    left: 100%;
  }
}
.home-story-content-right-form .forminator-button-submit span:nth-child(2) {
  top: -100%;
  right: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(180deg, transparent, #00c8f6);
  animation: btn-anim2 1s linear infinite;
  animation-delay: 0.25s;
}
@keyframes btn-anim2 {
  0% {
    top: -100%;
  }
  50%, 100% {
    top: 100%;
  }
}
.home-story-content-right-form .forminator-button-submit span:nth-child(3) {
  bottom: 0;
  right: -100%;
  width: 100%;
  height: 2px;
  background: linear-gradient(270deg, transparent, #00c8f6);
  animation: btn-anim3 1s linear infinite;
  animation-delay: 0.5s;
}
@keyframes btn-anim3 {
  0% {
    right: -100%;
  }
  50%, 100% {
    right: 100%;
  }
}
.home-story-content-right-form .forminator-button-submit span:nth-child(4) {
  bottom: -100%;
  left: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(360deg, transparent, #00c8f6);
  animation: btn-anim4 1s linear infinite;
  animation-delay: 0.75s;
}
@keyframes btn-anim4 {
  0% {
    bottom: -100%;
  }
  50%, 100% {
    bottom: 100%;
  }
}
.home-technologies {
  background: #000;
  color: #fff;
  text-align: center;
  padding: 150px 0;
}
@media (max-width: 700px) {
  .home-technologies {
    padding: 50px 15px;
  }
}
.home-technologies h3 {
  font-size: 30px;
  line-height: 43px;
  font-weight: 500;
  color: #fff;
  text-transform: uppercase;
}
.home-technologies h3 span {
  font-weight: 700;
  color: #00c8f6;
}
.home-technologies p {
  max-width: 70%;
  margin: 0 auto;
}
@media (max-width: 700px) {
  .home-technologies p {
    max-width: 90%;
  }
}
.home-technologies-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  margin-top: 50px;
}
.home-technologies-item {
  margin: 15px;
  padding: 5px;
  cursor: pointer;
  transition: 0.3s;
  width: 10%;
  position: relative;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
@media (max-width: 700px) {
  .home-technologies-item {
    width: 25%;
  }
}
@media (max-width: 400px) {
  .home-technologies-item {
    width: 50%;
  }
}
.home-technologies-item-image-container {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.home-technologies-item h5 {
  color: #989898;
  font-size: 16px;
  margin: 5px auto 0;
}
.home-technologies-item:hover {
  background: #fff;
}
.home-technologies-item:hover h5 {
  color: #222222;
}
.home-industries {
  background-image: url("../../img/map01.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-color: #000000;
  position: relative;
  padding-bottom: 250px;
}
.home-industries-content {
  text-align: center;
  padding-top: 50px;
}
.home-industries-content h3 {
  margin: 0;
  color: #fff;
  text-transform: uppercase;
  font-size: 30px;
  line-height: 43px;
  font-weight: 500;
}
.home-industries-content h3 span {
  font-size: 36px;
  font-weight: 700;
  color: #00c8f6;
}
.home-industries-slider {
  width: 100%;
  height: 100%;
  max-width: 1000px;
  margin: 50px auto;
}
@media (max-width: 1000px) {
  .home-industries-slider {
    width: 90%;
  }
}
.home-industries-slider-content-wrap {
  text-align: center;
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.home-industries-slider-content-wrap img {
  display: block;
  width: 100px;
  height: 100px;
  object-fit: cover;
  margin: auto;
}
.home-industries-slider-name {
  font-size: 25px;
  letter-spacing: 0;
  color: #ffffff;
  margin: 20px 0 0 0;
  width: 100%;
}
.home-industries-slider-message {
  font-size: 16px;
  line-height: 27px;
  letter-spacing: 0;
  color: #ffffff;
  margin-bottom: 40px;
  width: 100%;
}
.home-industries-slider .swiper-pagination .swiper-pagination-bullet {
  background: #ffffff;
}