.hero-section {
  background: linear-gradient(45deg, #1a0b2e, #2b1055);
  position: relative;
  padding: 130px 0 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.hero-section .service-p {
  line-height: 1.6;
}
.hero-section .hdg-lg-d,
.hero-section .service-p {
  color: #fff;
  margin-bottom: 15px;
}
.hero-section .network-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed !important;
  opacity: 0.5;
}
.hero-section .container {
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 40px;
  position: relative;
  z-index: 1;
}
.hero-section .content {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  max-width: 600px;
}
.hero-section .features {
  list-style: none;
  margin-bottom: 20px;
  padding-left: 0;
}
.hero-section .features li {
  color: #fff;
  margin-bottom: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.hero-section .features li img {
  margin-right: 10px;
  height: 20px;
}
.hero-section .award .v-logo {
  height: 40px;
  width: 30px;
}
.hero-section .cta-button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #014051;
  color: #fff;
  padding: 0 0 0 15px;
  border-radius: 6px !important;
  border: none;
  text-decoration: none;
  font-weight: 700;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
  gap: 10px;
  font-weight: 500;
  font-size: 15px;
}
.hero-section .cta-button:hover {
  background-color: #014051;
}
.hero-section .cta-button .text {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  text-align: center;
}
.hero-section .cta-button .icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: #333;
  width: 50px;
  height: 50px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}
.hero-section .cta-button .icon:before {
  content: "";
  border: solid #fff;
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 4px;
  margin-left: -6px;
  -webkit-transform: rotate(316deg);
  transform: rotate(316deg);
}
.hero-section .scroll-indicator {
  position: absolute;
  bottom: -64px;
  border: 2px solid #fff;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 50px;
  height: 50px;
  background-color: #014051;
  border-radius: 50%;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-animation: pulse 2s infinite;
  animation: pulse 2s infinite;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.hero-section .scroll-indicator:active {
  border: 1px solid #fff;
}
@-webkit-keyframes pulse {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 77, 77, 0.7);
    box-shadow: 0 0 0 0 rgba(255, 77, 77, 0.7);
  }
  70% {
    -webkit-box-shadow: 0 0 0 10px rgba(255, 77, 77, 0);
    box-shadow: 0 0 0 10px rgba(255, 77, 77, 0);
  }
  to {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 77, 77, 0);
    box-shadow: 0 0 0 0 rgba(255, 77, 77, 0);
  }
}
@keyframes pulse {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 77, 77, 0.7);
    box-shadow: 0 0 0 0 rgba(255, 77, 77, 0.7);
  }
  70% {
    -webkit-box-shadow: 0 0 0 10px rgba(255, 77, 77, 0);
    box-shadow: 0 0 0 10px rgba(255, 77, 77, 0);
  }
  to {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 77, 77, 0);
    box-shadow: 0 0 0 0 rgba(255, 77, 77, 0);
  }
}
.hero-section .scroll-arrow {
  border: solid #fff;
  border-width: 0 3px 3px 0;
  margin-top: -8px;
  display: inline-block;
  padding: 6px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-animation: arrowBounce 1s infinite;
  animation: arrowBounce 1s infinite;
  position: relative;
}
@-webkit-keyframes arrowBounce {
  0%,
  to {
    top: -2px;
  }
  50% {
    top: 2px;
  }
}
@keyframes arrowBounce {
  0%,
  to {
    top: -2px;
  }
  50% {
    top: 2px;
  }
}
.hero-section .slider {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  max-width: 600px;
  position: relative;
  margin-top: -110px;
}
.hero-section .slides {
  position: relative;
  height: 360px;
  width: 100%;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  pointer-events: none;
}
.hero-section .slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  -webkit-transition: opacity 0.5s ease-in-out;
  transition: opacity 0.5s ease-in-out;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.hero-section .slide.active {
  opacity: 1;
}
.hero-section .slide img {
  max-width: 100%;
  height: auto;
}
.hero-section .dots {
  position: absolute;
  bottom: -30px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
.hero-section .dot {
  width: 30px;
  height: 4px;
  background: hsla(0, 0%, 100%, 0.3);
  cursor: pointer;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
}
.hero-section .dot.active {
  background: #014051;
}
.hero-section .awards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 16px;
}
.hero-section .award .line {
  height: 40px;
  border: 1px solid #a9a9a9;
}
.hero-section .award img {
  margin-top: 8px;
  height: 100%;
  max-width: 100%;
  width: 200px;
}
.hero-section .award {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  color: #fff;
}
.hero-section .award span {
  font-size: 13px;
}
.hero-section .award .aw-cnt {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.hero-section .award .aw-cnt,
.hero-section .tag {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.hero-section .tag {
  background-color: #014051;
  color: #fff;
  padding: 8px 16px;
  border-radius: 4px;
  margin-bottom: 20px;
  font-size: 14px;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  gap: 10px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.hero-section .tag .dot {
  background: #fff;
  height: 8px;
  width: 8px;
  border-radius: 50%;
}
@media (max-width: 1024px) {
  .hero-section .slide img {
    width: 345px;
    height: 300px;
    -o-object-fit: contain;
    object-fit: contain;
    max-width: none;
  }
  .hero-section .slider {
    margin-top: 10px;
  }
  .hero-section .container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: center;
  }
  .hero-section .features li {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .hero-section .slider {
    max-width: 100%;
  }
  .hero-section .awards {
    position: relative;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 40px;
  }
}
@media (max-width: 768px) {
  .hero-section {
    padding: 100px 0 40px;
  }
  .textCentered {
    text-align: center;
  }
  .marginAuto {
    margin: auto;
  }
  .width80 {
    max-width: 80%;
    margin: auto;
  }
  .hero-section .content {
    text-align: left;
  }
  .hero-section .features li {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
  .hero-section .slides {
    height: 260px;
  }
}
