* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: linear-gradient(180deg, #ff8023 0%, #0f96cf 100%);
}
::-webkit-scrollbar-thumb {
  width: 2px;
  background-color: white;
  border-radius: 10px;
}
.preloader {
  background: #ffffff url(/assets/loader.gif) center center no-repeat;
  height: 100vh;
  width: 100%;
  position: fixed;
  z-index: 9999999;
  display: block;
  background-size: 50%;
}
.preloader #logoLoader {
  width: 100%;
  height: 200px;
  background-color: white;
}
body {
  font-family: "Montserrat", sans-serif;
  background-color: rgb(243, 243, 243);
  /* overflow-x: hidden; */
  position: relative;
  scrollbar-color: white linear-gradient(180deg, #ff8023 0%, #0f96cf 100%);
  scrollbar-width: 10px;
}
.nav-box {
  z-index: 99999;
  position: absolute;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;

  height: 80px;
}
.nav-box .container {
  width: 100%;
  border-radius: 0 0 10px 10px;
  background-color: white;
}
.nav-box .container a {
  outline: none;
}
.container {
  min-width: 255px;
  height: 100%;
  position: relative;
}
.disabled {
  background: transparent;
  position: relative;
  overflow: visible;
  width: 100%;
}
.disabled::before {
  content: "";
  position: absolute;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  overflow: visible;
  background: url(/assets/tba.svg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 9999;
  width: 90px;
  height: 20px;
}
.rounded {
  border-radius: 10px;
}
.inline-flex {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
}
.nav-container {
  min-width: 412px;
  display: none;
  height: calc(100vh - 90px);
  max-height: 600px;
  background-color: white;
  position: absolute;
  right: 0;
  top: 90px;
  border-radius: 10px;
  flex-direction: column;
  box-shadow: 0px 0px 30px 5px rgba(0, 0, 0, 0.16);
}
.nav-container ul {
  display: flex;
  width: 100%;
  height: 100%;
  list-style: none;
  justify-content: space-around;
  align-items: center;
  flex-direction: column;
  margin: 0;
  padding: 0;
}
.nav-link {
  position: relative;
  color: black;
  text-decoration: none;
  font-size: 24px;
  font-weight: bold;
  display: inline-block;
  font-weight: 500;
  text-transform: uppercase;
  transition: all 1s;
}
.nav-container.display {
  display: flex;
}
.active::after {
  content: "";
  width: 100% !important;
  height: 4px;
  position: absolute;
  top: 40px;
  left: 0;
  background: linear-gradient(90deg, #0f96cf 0%, #ff8023 100%);
  border-radius: 2px;
}
.nav-link::after {
  content: "";
  width: 0%;
  height: 4px;
  position: absolute;
  top: 40px;
  left: 0;
  background: linear-gradient(90deg, #0f96cf 0%, #ff8023 100%);
  border-radius: 2px;
  transition: width 1s;
}
.nav-link:hover::after {
  content: "";
  width: 100%;
  height: 4px;
  position: absolute;
  top: 40px;
  left: 0;
  background: linear-gradient(90deg, #0f96cf 0%, #ff8023 100%);
  border-radius: 2px;
}
.nav-shadow {
  box-shadow: 0px 0px 30px 5px rgba(0, 0, 0, 0.16);
}
.hamburger {
  width: 80px;
  height: 80px;
  background-color: white;
  border-radius: 10px;
  border: none;
  position: relative;
  display: flex;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}
.hamburger:hover {
  background-color: #ff8023;
}

.hamburger:hover .ham {
  background-color: white;
}

.hamburger:hover .ham::after,
.hamburger:hover .ham::before {
  background-color: white;
  width: 40px;
}

.ham {
  width: 40px;
  height: 3px;
  background-color: #ff8023;
}
.ham::before,
.ham::after {
  content: "";
  width: 30px;
  height: 3px;
  position: absolute;
  margin: auto 0;
  background-color: #ff8023;
  transition: width 1s ease;
}
.ham::before {
  transform: translateY(-10px);
}
.ham::after {
  transform: translateY(10px);
}
.hero {
  background-color: black;
  width: 100%;
  height: 600px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.product-grid {
  width: auto;
  display: grid;
  grid-gap: 40px;
  grid-template-columns: 1fr;
  margin-bottom: 100px;
}
.product {
  width: 100%;
  height: auto;
  display: grid;
  gap: 20px;
  position: relative;
  grid-template-columns: 1fr;
  border-bottom: 1px solid #5a5a5a;
}
.product-col {
  width: 360px;
  height: auto;
}
.hero-main {
  color: white;
  font-family: Lucida Bright, Georgia, serif;
  font-weight: 400;
  font-size: 24px;
  text-align: center;
  text-transform: capitalize;
  display: block;
}
.image-slider-container {
  width: 100%;
  height: 600px;
  object-fit: cover;
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
}
/* NEXT & Previous Button */
.prev,
.next {
  cursor: pointer;
  position: absolute;
  bottom: 10%;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background-color: rgba(255, 255, 255, 0.288);
  margin-top: -22px;
  color: black;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 50px;
  user-select: none;
}
.next {
  right: 10px;
}
.prev {
  left: 10px;
}
.prev:hover,
.next:hover {
  background-color: rgba(0, 0, 0, 0.589);
  color: white;
  border: solid 1px white;
}
.live {
  background-color: #ff8023 !important;
}

/* Fading animation */
.fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 2s;
  animation-name: fade;
  animation-duration: 2s;
}

@-webkit-keyframes fade {
  from {
    opacity: 0.2;
  }
  to {
    opacity: 1;
  }
}

@keyframes fade {
  from {
    opacity: 0.2;
  }
  to {
    opacity: 1;
  }
}
.slider-image-one {
  width: 100%;
  height: 100%;
  /* display: none; */
}
/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 4px;
  width: 20px;
  margin: 0 2px;
  background-color: #ffffff;
  display: block;
  transition: background-color 0.6s ease;
}
.hero-txt {
  position: absolute;
  display: flex;
  top: 50%;
  width: 100%;
  left: 50%;
  transform: translate(-50%, -50%);
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.hero-image {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.hero-submain {
  color: rgb(199, 199, 199);
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-style: normal;
  margin-top: 10px;
  font-weight: 500;
  text-align: center;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.scroll-down-link {
  text-decoration: none;
  display: flex;
  position: absolute;
  bottom: 20px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.section-one {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  margin: 0;
}
.industry-alpha {
  width: 100vw;
  position: absolute;
  bottom: -50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Form */

input[type="text"],
input[type="number"],
textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #5a5a5a;
  background-color: transparent;
  border-radius: 4px;
  box-sizing: border-box;
  margin-top: 6px;
  margin-bottom: 16px;
  resize: vertical;
}
input[type="text"]:focus,
input[type="number"]:focus,
textarea:focus {
  outline: #255399;
}
label {
  font-size: 18px;
  font-weight: 400;
  font-family: "Montserrat", sans-serif;
  text-transform: capitalize;
  color: #5a5a5a;
}
.cloud-one,
.cloud-two {
  width: 200px;
  position: absolute;
  top: 80px;
}
.cloud-one {
  left: 20%;
}
.cloud-two {
  right: 20%;
}
.section-bg {
  background-image: url(/assets/leader-section-photo.png);
  background-size: cover;
  background-position: center;
}
.paper-plane {
  width: 100px;
  position: absolute;
  top: 50%;
  left: 0;
  z-index: 999;
  display: none;
}
.grid-container {
  display: grid;
  grid-column-gap: 20px;
  grid-template-columns: 1fr;
}
.flex-container {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}
.text-col {
  margin-top: 10px;
  padding: 0;
  width: 260px;
  height: auto;
  position: relative;
}
.sub-heading {
  font-size: 18px;
  margin-top: 70px;
  width: 100%;
  margin-bottom: 20px;
  text-transform: capitalize;
  font-family: Lucida Bright, Georgia, serif;
}
.bold-txt {
  text-align: center;
  font-weight: bold !important;
  padding: 0 40px;
  font-size: 14px !important;
  font-family: Lucida Bright, Georgia, serif !important;
  margin-bottom: 14px;
}
.contact-title {
  font-family: Montserrat, sans-serif;
  font-weight: 600;
  font-size: 14px;
  text-transform: capitalize;
  margin: 10px 0;
}
.text-col-para {
  font-size: 18px;
  font-family: "Montserrat", sans-serif;
  text-transform: capitalize;
  font-weight: 500;
  color: #5a5a5a;
}
.industry-txt-col {
  height: auto !important;
}
.sub-heading-two {
  color: black;
  font-size: 18px;
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  font-weight: 600;
  margin-top: 50px;
}
.sub-heading-two ~ .text-col-para {
  margin-bottom: 70px;
}
.section-blue {
  background: linear-gradient(180deg, #1d4684 0%, #006db4 58.65%, #0f96cf 100%);
}
.sub-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: relative;
}
.section-title {
  margin-top: 70px;
  color: white;
  text-align: center;
}
.service-list {
  width: auto;
  height: auto;
  margin-bottom: 90px;
  margin-top: 60px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.service-items {
  position: relative;
  overflow: hidden;
  width: 255px;
  height: 330px;
  background-color: white;
  box-shadow: 0px 5px 20px 3px rgba(0, 0, 0, 0.25);
  padding: 20px 24px;
}

.item-heading {
  color: black;
  font-family: Lucida Bright, Georgia, serif;
  font-size: 18px;
  text-transform: capitalize;
}
.leader-list {
  margin: 50px 0;
  width: auto;
  height: auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.leader-image {
  width: 255px;
  height: 255px;
  overflow: hidden;
}
.leader-image img {
  width: 255px;
  height: 255px;
}

.leader-item {
  background-color: white;
  width: 255px;
  height: 335px !important;
  overflow: hidden;
  position: relative;
  height: auto;
  box-shadow: 0px 5px 20px 3px rgba(0, 0, 0, 0.25);
}
.leader-item:hover .leader-txt-one,
.leader-item:focus .leader-txt-one {
  transform: translateY(-255px);
}

.para-hide {
  opacity: 0;
  transition: opacity 2s ease;
}
.leader-item:hover .para-hide {
  opacity: 1;
}
.leader-txt-one {
  background-color: white;
  width: 100%;
  height: 335px;
  padding: 0 20px;
  transition: all 1s ease;
  transform: translateY(0);
  position: relative;
}
.leader-name {
  height: 80px;
  width: 100%;
  display: flex;
  align-items: center;
}
.service-items p {
  font-size: 14px !important;
  margin-top: 12px;
}
.read-btn {
  width: 215px;
  height: 50px;
  border: none;
  border-radius: 10px;
  font-family: Montserrat;
  font-style: normal;
  font-weight: bold;
  font-size: 14px;
  text-transform: capitalize;
  color: white;
  position: absolute;
  bottom: 24px;
  transition: box-shadow 450ms;
}
.submit {
  position: relative;
  margin-top: 26px;
  width: 255px;
}
.btn-orange:hover {
  box-shadow: 0px 0px 0px 4px rgba(242, 168, 24, 0.4);
  cursor: pointer;
}
.btn-blue:hover {
  box-shadow: 0px 0px 0px 3px rgba(37, 83, 153, 0.4);
  cursor: pointer;
}
.btn-orange {
  background: #f2a818;
}
.btn-blue {
  background-color: #255399;
}
.section-photo {
  margin: 0;
  background-color: #000000;
  width: 100%;
  height: 440px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.section-photo img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.section-orange {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    180deg,
    #f2a818 6.56%,
    rgba(250, 150, 40, 0.77) 50.83%,
    #fa9367 100%
  );
}
.product-list {
  width: auto;
  height: auto;
  margin-top: 90px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 90px;
  margin-bottom: 90px;
}
.product-items {
  background-color: white;
  width: 255px;
  height: 340px;
  box-shadow: 0px 5px 20px 3px rgba(0, 0, 0, 0.25);
  padding: 20px 24px;
  position: relative;
}
.product-items p {
  font-size: 14px !important;
  margin-top: 12px;
}
.product-items h4 {
  margin-top: 40px;
}

.product-image {
  position: absolute;
  top: -45px;
  left: 82px;
  transform: translateX(-50%, -50%);
  width: 90px;
  overflow: hidden;
  height: 90px;
  box-sizing: border-box;
  box-shadow: 0px 2px 10px 1px rgba(0, 0, 0, 0.25);
  border-radius: 45px;
}
.domain-section {
  height: auto;
  background-image: url("/assets/domain-section.png");
  background-repeat: repeat;
}

.heading-dark {
  color: #000000 !important;
}
.domain-list {
  width: auto;
  height: auto;
  margin-top: 60px;
  margin-bottom: 155px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.domain-items {
  width: 255px;
  height: 255px;
  background-color: white;
  box-shadow: 0px 5px 20px 3px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  cursor: pointer;
}
.text-col-para span {
  font-weight: bold;
}
.domain-img {
  width: 255px;
  height: 200px;
  background-color: black;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.domain-img img {
  width: 255px;
  height: 200px;
  transition: width 1s, height 1s;
}
.domain-txt {
  width: 100%;
  height: 55px;
  padding: 0 20px;
  display: flex;
  align-items: center;
}
.domain-items .domain-img img:hover {
  width: 298px;
  height: 234px;
}
.testimonial-section {
  height: auto;
  position: relative;
  background: linear-gradient(180deg, #1d4684 0%, #1670ac 52.92%, #0f96cf 100%);
}
.quote-img:nth-child(1) {
  position: absolute;
  top: 0;
  left: 0;
}
.quote-img:nth-child(2) {
  position: absolute;
  right: 0;
  bottom: 0;
}
.testimonial-list {
  width: auto;
  margin-top: 90px;
  height: auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 140px;
}

.testimonial-items {
  width: 100%;
  overflow: hidden;
  min-height: 255px;
  padding: 20px 32px;
  background-color: white;
  position: relative;
  display: flex;
  flex-direction: column;
  box-shadow: 0px 5px 20px 3px rgba(0, 0, 0, 0.25);
}
.testimonial-items:nth-child(1),
.testimonial-items:nth-child(3),
.testimonial-items:nth-child(5) {
  grid-column: auto;
}
.font-lucida {
  font-family: Lucida Bright, Georgia, serif;
  height: 56px;
  margin-top: 24px;
  font-size: 24px;
  text-transform: capitalize;
}
.testimonial-items p {
  margin-top: 10px;
  font-size: 18px !important;
  font-style: italic;
}
.client-section {
  width: 100%;
  height: auto;
  flex-direction: column;
  overflow: hidden;
}
.client-list {
  margin-top: 50px;
  margin-bottom: 125px;
  /* width: calc(270px * 8); */
  width: auto;
  height: auto;
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(4, 1fr);
  animation: scroll 20s linear infinite;
}
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc((-265px * 4)));
  }
}
.clients {
  width: 255px;
  height: 150px;
  background-color: white;
  box-shadow: 0px 4px 20px 2px rgba(0, 0, 0, 0.25);
  border-radius: 10px;
  overflow: hidden;
}
.slider {
  background: rgb(243, 243, 243);
  /* box-shadow: 0px 4px 20px 2px rgba(0, 0, 0, 0.25); */
  height: auto;
  /* display: flex;
  align-items: center;
  justify-content: center; */
  overflow: hidden;
  width: 100%;
}
.sub-footer {
  width: 100%;
  height: 80px;
  float: left;
  display: flex;
  background-color: #343434;
  align-items: center;
  justify-content: center;
  border-top: 1px solid white;
}
.sub-footer-para {
  font-size: 14px;
  font-weight: 400;
  color: white;
}
.footer {
  width: 100%;
  height: auto;
  flex-direction: column;
  position: relative;
  background-color: #343434;
}
.footer-grid {
  min-width: 255px;
  display: grid;
  gap: 20px;
  align-items: center;
  display: flex;

  flex-direction: column;
  grid-template-columns: 1fr;
  margin: 80px 0;
}
.address-link {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.address {
  color: white;
  font-size: 18px;
  text-align: center;
  font-weight: 500;
  margin-bottom: 10px;
}
.sub-address {
  color: white;
  font-size: 18px;
  font-weight: 200;
}
.site-link {
  width: auto;
  height: auto;
  text-align: center;
}
.social-links .address {
  text-align: center;
}
.site-link-l {
  list-style: none;
  margin-bottom: 10px;
}
.site-link-a {
  font-size: 18px;
  font-weight: 500;
  color: white;
  text-decoration: none;
}
.site-link-a:hover {
  text-decoration: underline;
}

.social-media-links {
  margin-top: 10px;
  display: grid;
  width: auto;

  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  gap: 12px;
}
.social-media {
  width: 40px;
  height: 40px;
  border-radius: 5px;
  overflow: hidden;
}
.social-media:hover {
  background-color: #f2a818;
}
.leader-social {
  position: absolute;
  bottom: 20px;
  width: 215px;
  height: 80px;
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}
.leader-social .social-media:hover {
  background-color: white;
  box-shadow: 0px 12px 15px -5px rgba(0, 0, 0, 0.45),
    0px 0px 0px 3px rgba(0, 0, 0, 0.25);
}
.go-top-link {
  width: auto;
  height: auto;
  position: fixed;
  right: 0;
  text-decoration: none;
  overflow: hidden;
  color: white;
  display: block;
  bottom: 79px;
  transition: all 1s;
  z-index: 99999;
}
#top {
  transition: all 1s;
}
.margin-bottom {
  margin-bottom: 70px;
}
.go-top {
  width: 100px;
  height: 100px;
  background-color: #343434;
  border: 1px solid white;
  display: flex;
  overflow: hidden;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.go-top-txt {
  margin-top: 10px;
  font-size: 14px;
  font-weight: 400;
  color: white;
  text-decoration: none;
  text-transform: uppercase;
}
.hide {
  visibility: hidden;
  opacity: 0;
}
.show {
  visibility: visible;
  opacity: 1;
}
.list-style {
  grid-template-columns: 1fr !important;
  width: auto !important;
}
@media screen and (min-width: 412px) {
  .text-col {
    width: 360px;
  }
}
@media screen and (min-width: 744px) {
  .hamburger {
    border: 2px solid #ff8023;
  }
  .nav-box .container {
    border-radius: 10px;
    width: 740px;
  }

  .list-width {
    width: 530px !important;
  }
  .paper-plane {
    display: block;
  }
  .container {
    width: 740px;
  }
  .service-one {
    height: 240px !important;
  }
  .text-col {
    margin: 70px 0;
    width: 360px;
    height: 360px;
  }
  .grid-container {
    grid-template-columns: 1fr 1fr;
  }
  .leader-list {
    grid-template-columns: 1fr 1fr;
  }
  .flex-container {
    flex-direction: row;
  }
  .sub-heading {
    margin: 0;
    margin-bottom: 20px;
  }
  .section-title {
    margin-top: 70px;
  }
  .industry-alpha {
    width: 50vw;
  }
  .service-list,
  .product-list,
  .domain-list {
    grid-template-columns: 1fr 1fr;
    column-gap: 20px;
  }
  .go-top-link {
    bottom: 50px;
    right: 8%;
  }
}
@media screen and (min-width: 1124px) {
  .container,
  .nav-box .container {
    width: 1080px;
  }
  .service-one {
    height: 150px !important;
  }
  .hero-main {
    font-size: 30px;
  }
  .sub-heading {
    font-size: 24px;
  }
  .list-style {
    grid-template-columns: 1fr 1fr !important;
  }
  .social-links .address {
    text-align: justify;
  }
  .text-col {
    width: 520px;
    height: 260px;
  }
  .grid-container {
    gap: 40px;
  }
  .service-list,
  .product-list,
  .domain-list {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
  .product {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .product-col {
    width: 520px;
  }
  .product-grid {
    grid-gap: 50px;
    margin-top: 40px;
  }
  .client-list {
    grid-template-columns: repeat(8, 1fr);
  }
  .testimonial-list {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
  .slider {
    width: 1080px;
  }
  .testimonial-items:nth-child(1) {
    grid-column: span 2;
  }
  .testimonial-items:nth-child(3) {
    grid-row: span 2;
  }
  .testimonial-items:nth-child(5) {
    grid-column: span 2;
  }
  .sub-footer-para {
    font-size: 18px;
  }
  .footer-grid {
    width: 1080px;
    grid-template-columns: auto auto auto auto;
    flex-direction: row;
  }
  .address-link {
    width: 400px;
  }
}
@media screen and (min-width: 1200px) {
  .nav-container {
    min-width: 1000px;
    display: flex;
    position: relative;
    height: 100%;
    top: 0;
    background-color: transparent;
    left: 0;
    border-radius: 0;
    box-shadow: none;
  }
  .disabled::before {
    top: 14px;
  }
  .next,
  .prev {
    top: 50%;
  }
  .hero-main {
    font-size: 36px;
  }
  .nav-container ul {
    width: 100%;
    height: 100%;
    flex-direction: row;
    justify-content: space-around;
    flex-wrap: wrap;
    align-items: center;
  }
  .nav-link {
    font-size: 14px;
    color: black;
  }
  .hamburger {
    display: none;
  }
}
