@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

*{
  padding: 0;
  box-sizing: border-box;
}
body {
  font-size: 18px;
  color: #787878;
  background: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
  font-family: "Poppins", sans-serif !important;
}

a {
  text-decoration: none !important;
  cursor: pointer;
  webkit-transition: 0.5s all ease-in-out;
  ms-transition: 0.5s all ease-in-out;
  o-transition: 0.5s all ease-in-out;
  moz-transition: 0.5s all ease-in-out;
  transition: 0.5s all ease-in-out;
  font-family: var(--bs-font-sans)
}

a:focus,
a:hover,
a:visited {
  text-decoration: none;
  outline: 0
}

a:hover {
  color: #0a58ca
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-family: "Poppins", sans-serif !important;
}

.text,
p {
  font-size: 16px;
  font-family: "Poppins", sans-serif !important;
}

button {
  outline: 0;
  cursor: pointer
}

p {
  line-height: 1.42857143;
  color: var(--color-text)
}

img,
svg {
  vertical-align: middle
}

img {
  max-width: 100%;
  display: inline-block;
  height: auto
}

ul {
  padding: 0 !important;
}

ul li {
  list-style-type: none;
}


.fs-40 {
  font-size: calc(26px + (40 - 26) * ((100vw - 300px) / (1920 - 300)))
}

.fs-38 {
  font-size: calc(24px + (38 - 24) * ((100vw - 300px) / (1920 - 300)))
}

.fs-34 {
  font-size: calc(24px + (34 - 24) * ((100vw - 300px) / (1920 - 300)))
}

.fs-32 {
  font-size: calc(24px + (34 - 24) * ((100vw - 300px) / (1920 - 300)))
}

.fs-30 {
  font-size: calc(24px + (30 - 24) * ((100vw - 300px) / (1920 - 300)))
}

.fs-24 {
  font-size: calc(20px + (24 - 20) * ((100vw - 300px) / (1920 - 300)))
}

.fs-20 {
  font-size: calc(18px + (20 - 18) * ((100vw - 300px) / (1920 - 300)))
}

.fs-18 {
  font-size: calc(16px + (18 - 16) * ((100vw - 300px) / (1920 - 300)))
}

.fs-17 {
  font-size: calc(16px + (17 - 16) * ((100vw - 300px) / (1920 - 300)))
}

.fs-16 {
  font-size: calc(16px + (16 - 16) * ((100vw - 300px) / (1920 - 300)))
}

.fs-14 {
  font-size: calc(14px + (14 - 14) * ((100vw - 300px) / (1920 - 300)))
}

.fw-extalight {
  font-weight: 200
}

.fw-light {
  font-weight: 300
}

.fw-regular {
  font-weight: 400
}

.fw-medium {
  font-weight: 500
}

.fw-semibold {
  font-weight: 600
}

.fw-bold {
  font-weight: 700
}

.text-decor {
  background-image: linear-gradient(180deg, rgba(24, 95, 246, 1) 14.4%, rgba(27, 69, 166, 1) 90.8%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gradient-2 {
  background-image: linear-gradient(180deg, rgb(255 93 58) 14.4%, rgb(255 48 2) 90.8%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-contact {
  display: flex;
  align-items: center;
  justify-content: end;
  margin: 0;
  padding: 10px 0;
}

.topnavbar {
  background: #0d69fc;
  padding: 10px;
}

.contact-blink {

  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  width: 35px;
  position: relative;
  z-index: 1;
  margin: 0 8px 0 12px;

}

.contact-svg svg {
  height: 28px;
  width: 28px;
}

.wave {
  animation: waveIn 1.2s infinite ease-out;
  transform-origin: 50% 50%;
}

.wave-sm {
  animation-delay: .3s;
}

.wave-md {
  animation-delay: .45s;
}

.wave-lg {
  animation-delay: .6s;
}

@keyframes waveIn {
  from {
    opacity: 0;
    transform: scale(.3) translate(-20px, 10px);
  }

  50% {
    transform: translate(0, 0);
    opacity: 1;
  }
}

.bottom-nav {
  overflow: hidden;
}

.get-btn {
  background: transparent linear-gradient(270deg, #ff7758 0%, #fc3001 100%) 0% 0% no-repeat padding-box !important;
  border-radius: 50px;
  color: #fff;
  padding: 9px 22px;
  display: inline-block;
}

.getin-btn::after {

  content: "";
  top: 0;
  transform: translateX(100%);
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 0;
  animation: slide 2s infinite;
  background: linear-gradient(to right, rgba(64, 235, 241, 0) 0%, rgba(255, 254, 253, 56%) 50%, rgba(255, 254, 253, 28%) 99%, rgba(64, 235, 241, 0) 100%);

}

@keyframes slide {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(100%);
  }
}

/* Banner */
.home-banner {
  background: url(../images/dubai-landing-img/banner.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.home-banner:after {
  position: absolute;
  background: rgb(255 255 255 / 82%);
  height: 100%;
  width: 100%;
  /* opacity: 0.8; */
  top: 0;
  left: 0;
  content: "";
  z-index: -1;
}

.bnr-content h1 {
  font-size: 55px;
  line-height: 70px;
  font-weight: 500;
}

section.banner {
  padding: 25px 0 130px;
}

.bnr-content p {
  font-size: 20px;
  line-height: 1.3;
  color: #383838;

}

.content-part ul li {
  font-size: 16px;
}

/* banner Form Section 
========================*/
.banner-form {
  background: var(--bs-white);
  padding: 45px 25px;
  border-radius: 15px;
}

.banner-form-title {
  max-width: 300px;
  margin: 0 auto;
}

.form-title {
  font-weight: 600;
  color: var(--bs-black);
  margin-bottom: 10px;
}

.banner-form-title p span {
  color: var(--bs-theme-blue);
  font-weight: 500;
}

.banner-form-filds {
  margin-bottom: 30px;
  position: relative;
}

.banner-btn {
  overflow: hidden;
  display: inline-block;
}

.bnr-btn {
  background: transparent linear-gradient(270deg, #ff7758 0%, #fc3001 100%) 0% 0% no-repeat padding-box !important;
  color: #fff;
  border-radius: 50px;
  border: unset;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0px 2px 36px rgba(0, 0, 0, .06);
  font-size: 22px;
  font-weight: 300;
  position: relative;
  white-space: nowrap;
  transition: .8s;
  height: 55px;
  padding: 5px 60px 5px 25px;
  width: fit-content;
  cursor: pointer;
}

.get-btn svg {
  background: #fff;
  height: 40px;
  width: 40px;
  border-radius: 50%;
  padding: 10px;
  position: absolute;
  transition: .5s;
  right: 10px;
  animation: wobble 1s ease infinite;
}

@keyframes wobble {
  0% {
    transform: translateX(0%);
  }

  15% {
    transform: translateX(-12%) rotate(-5deg);
  }

  30% {
    transform: translateX(10%) rotate(3deg);
  }

  45% {
    transform: translateX(-8%) rotate(-3deg);
  }

  60% {
    transform: translateX(6%) rotate(2deg);
  }

  75% {
    transform: translateX(-3%) rotate(-1deg);
  }

  100% {
    transform: translateX(0%);
  }
}

.banner-form-filds input,
.contact-form-details input,
.contact-form-details textarea {
  position: relative;
  display: block;
  width: 100%;
  background-color: transparent;
  margin: 0px auto;
  padding: 6px 4px 4px 14px;
  height: 40px;
  outline: none !important;
  transition: all .2s ease-in-out;
  transition: 0.5s all ease-in-out;
}

.form-label {
  position: absolute;
  top: -8px;
  left: 12px;
  text-align: left;
  display: inline-block;
  padding: 0 4px;
  height: 14px;
  line-height: 14px;
  font-size: 14px;
  font-weight: 400;
  background: #fff;
  color: #404040;
  margin: 0px auto;
  cursor: text;
  transition: all .15s ease-in-out;
  z-index: 1;
}

.input-fild {
  border: 1px solid #8e8e8e !important;
}

.banner-form-filds .input-fild::placeholder,
.contact-form-details input::placeholder,
.contact-form-details textarea::placeholder {
  color: #b3b3b3 !important;
  opacity: 1;
}

.contery-fleg.banner-form-fleg {
  top: 10px;
  left: -10px;
  z-index: 1;
}

.banner-form-fleg #country {
  width: 100px;
  border: none;
  margin-top: 5px;
}

.input-fild-phone {
  padding-left: 110px !important;
}

.banner-form-filds.multi-filds label {
  left: 10px;
}

.floating-select {
  width: 100%;
  height: 36px;
  background: #fff;
  border-radius: 4px;
  box-sizing: border-box;
  width: 100%;
  min-height: 50px;
  padding: 3px 15px;
  color: var(--bs-black);
  outline: 0;
  transition: .5s;
  font-weight: 400;
  font-size: 16px;
  border: #C9C9C9 solid 1px;
}

.floating-select:focus {
  outline: none;
}

.contery-fleg.popup-contry-flag {
  left: -7px;
  top: 12px;
  z-index: 1;
}

.popup-contry-flag select {
  width: 100px;
}

select.floating-select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.development-form-section {
  background: #F2F9FF;
  padding: 140px 0 80px;
}

.contact-title {
  position: relative;
}

.contact-title::after {
  background: #C8C8C8;
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  content: "";
  width: 100%;
  height: 2px;
}

input[type="email"],
input[type="number"],
input[type="password"],
input[type="search"],
input[type="tel"],
input[type="text"],
input[type="select"],
input[type="url"] {
  width: 100%;
  min-height: 50px;
  padding: 3px 20px;
  color: var(--bs-black);
  outline: 0;
  transition: .5s;
  font-weight: 400;
  font-size: 16px
}

input[type="email"]::placeholder,
input[type="number"]::placeholder,
input[type="password"]::placeholder,
input[type="search"]::placeholder,
input[type="tel"]::placeholder,
input[type="text"]::placeholder,
input[type="url"]::placeholder {
  font-size: 14px;
  color: #c7c7c7
}

input[type="email"]:focus,
input[type="number"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="text"]:focus,
input[type="url"]:focus {
  border-color: var(--bs-blue);
  box-shadow: none;
  background: #f7f7f7;
  color: #343333;
}

textarea.form-control:focus {
  border-color: var(--bs-blue);
  box-shadow: none;
}

textarea::-moz-placeholder,
textarea::placeholder {
  font-size: 14px;
  color: #c7c7c7
}

textarea {
  width: 100%;
  padding: 10px 20px;
  border: 1px solid #8e8e8e !important;
  outline: 0;
  font-weight: 400;
  font-size: 16px;
  resize: none;
}

.contact-form-fild textarea {
  height: 104px;
}

.contact-form-fild {
  padding-bottom: 30px;
}

.contact-form-fild input,
.contact-form-fild textarea {
  border-radius: 5px;
}

.phone_number {
  padding-left: 103px !important;
}

.contery-fleg {
  position: absolute;
  top: 37px;
  left: 9px;
  padding: 0 10px 0;
}

.contery-fleg::after {
  position: absolute;
  top: 17px;
  right: -3px;
  font-size: 22px;
  min-width: 10px;
  clip-path: polygon(50% 78%, 0 0, 100% 0);
  content: "";
  height: 10px;
}

.contery-fleg::before {
  width: 1px;
  height: 40px;
  position: absolute;
  right: -11px;
  top: 0;
  content: "";
}

.opstion-choose {
  display: none;
}

.choose-list {
  height: 40px;
}

.budget-title {
  color: var(--bs-blue);
}

.contact_message_fild {
  resize: vertical;
}

.form-submit-btn {
  background: linear-gradient(180deg, rgba(24, 95, 246, 1) 14.4%, rgba(27, 69, 166, 1) 90.8%);
  padding: 5px 70px;
  border-radius: 10px;
  color: var(--bs-white);
  transition: 0.5s all ease-in-out;
  background-size: auto 200%;
  border: none;
}

.form-submit-btn:hover {
  background-position: bottom center;
}


/* reward */
.reward-wrap {
  background: #01142b 0% 0% no-repeat padding-box;
  box-shadow: 0px 29px 76px rgba(0, 0, 0, .06);
  border-radius: 25px;

  margin-top: -90px;
  position: relative;
  z-index: 11111;
  padding: 20px 35px;
}

.border-right {
  border-right: 2px solid white;
}




/* tabs */
ul.tabs {
  display: block;
  margin: 0 0 0 0;
  padding: 0;
  position: relative;
  background: #fff 0% 0% no-repeat padding-box;
  box-shadow: 7px 27px 48px rgba(0,0,0,.05);
  border-radius: 34px;
  padding: 25px 20px !important;
  z-index: 9999;
}
ul.tabs li {
  margin: 20px 0;
}

.tabs a.active {
  color: #fff;
  padding-top: 10px;
  background: linear-gradient(180deg, rgba(24, 95, 246, 1) 14.4%, rgba(27, 69, 166, 1) 90.8%);
  border-radius: 5px;
}
ul.tabs li a {
  display: block;
  color: #000000;
  font-weight: 600;
  margin: 0;
  padding: 10px 10px 10px 10px;
  border-radius: 5px 5px 0 0;
}
ul.tabs li a:hover {
  color: #739eff;
}
.tabContents {
  background-color: #fff;
  padding: 50px 20px;
  border-radius: 0 5px 5px 5px;
  background: #fff 0% 0% no-repeat padding-box;
  box-shadow: 7px 27px 48px rgba(0,0,0,.05);
  border-radius: 34px;
}




.points-dot {
  height: 10px;
  width: 10px;
  background: transparent linear-gradient(270deg, #ff7758 0%, #fc3001 100%) 0% 0% no-repeat padding-box !important;
  border-radius: 50%;
  position: absolute;
  top: 7px;
  left: -20px;
}

ul.point-box:after {
  position: absolute;
  content: "";
  background: #f3fbff 0% 0% no-repeat padding-box;
  border-radius: 34px;
  width: 910px;
  height: 345px;
  bottom: -152px;
  right: -100px;
  margin: auto;
  z-index: -1;
}

/* workflow */
span.watermark {
  position: absolute;
  top: -260%;
  font-size: 90px;
  font-weight: 800;
  left: -2%;
  color: #dbdbdb;
  z-index: -11;
}
.flow-wrap {
  padding: 20px;
}


 .industry-carousel,
  .industry-section {
    height: 700px
  }

  .homepage-industries-background .current.bg {
    opacity: 1
  }

  .industry-section .owl-stage-outer {
    height: 100%
  }

  .industry-carousel.owl-carousel .owl-stage {
    display: flex;
    height: 100%
  }

  .industry-carousel.owl-carousel .item {
    height: 100%;
    padding: 30px
  }

  .industry-carousel .item:before {
    background: linear-gradient(180deg, rgba(0, 0, 0, .32), rgba(0, 0, 0, .64));
    bottom: 0;
    content: "";
    left: 0;
    position: absolute;
    right: 0;
    top: 0
  }

  .industry-carousel .item:hover:before {
    background: linear-gradient(180deg, rgba(0, 0, 0, .4), rgba(0, 0, 0, .9))
  }

  .industry-wrapper {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    bottom: 40px
  }

  .industry-content {
    position: absolute;
    bottom: 0;
    color: var(--white)
  }

  .industry-content .section-sub-heading {
    font-size: 30px;
    line-height: 28px;
    margin-bottom: 24px;
    font-weight: 600
  }

  .industry-desc {
    height: 0;
    overflow: hidden;
    transition: all .6s ease-in-out
  }

  .industry-desc p {
    font-size: 14px;
    line-height: 22px
  }

  .industry-carousel.owl-carousel .active-box .industry-desc,
  .industry-carousel.owl-carousel .item:hover .industry-desc {
    height: 350px
  }

  .industry-desc .industry-link {
    padding-top: 20px
  }

  .industry-desc .industry-link a {
    color: var(--clrYellow);
    margin-left: 5px;
    font-weight: 600;
    font-size: 20px;
    text-transform: capitalize
  }

  .industry-section .owl-nav {
    position: absolute;
    width: 100%;
    top: 50%;
    transform: translateY(-50%)
  }

  .industry-section .industry-carousel .owl-nav .owl-next,
  .industry-section .industry-carousel .owl-nav .owl-prev {
    position: absolute;
    font-size: 30px;
    outline: 0;
    color: #a1a0a0
  }

  .industry-section .industry-carousel .owl-nav .owl-next {
    right: 50px
  }

  .industry-section .industry-carousel .owl-nav .owl-prev {
    left: 20px
  }

  .industry-section .heading {
    position: absolute;
    top: 40px;
    left: 100px;
    right: 100px;
    z-index: 2;
    color: #fff
  }

  @media (max-width: 768px) {
    .industry-section .heading {
      left: 10px;
      right: 10px
    }

    .industry-carousel.owl-carousel .active-box .industry-desc,
    .industry-carousel.owl-carousel .item:hover .industry-desc {
      height: auto
    }

    .industry-content .section-sub-heading {
      margin-bottom: 14px;
      font-size: 22px
    }

    .sub-heading p {
      font-size: 18px;
      line-height: 24px
    }

    .about-section .small-desc,
    .about-section .small-desc p {
      font-size: 16px;
      line-height: 24px
    }

    .clients-wall {
      margin-top: 50px
    }

    .industry-para {
      display: none
    }

    .industry-carousel,
    .industry-section {
      height: 500px
    }

    .award-carousel .award-logo {
      height: 90px
    }

    .award-carousel .owl-dots {
      margin-top: 6px
    }

    .awards-section .sub-heading {
      font-size: 18px
    }
  }



  .owl-carousel,
  .owl-carousel .owl-item {
    -webkit-tap-highlight-color: transparent;
    position: relative
  }

  .owl-carousel {
    display: none;
    width: 100%;
    z-index: 1
  }

  .owl-carousel .owl-stage {
    position: relative;
    -ms-touch-action: pan-Y;
    touch-action: manipulation;
    -moz-backface-visibility: hidden
  }

  .owl-carousel .owl-stage:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0
  }

  .owl-carousel .owl-stage-outer {
    position: relative;
    overflow: hidden;
    -webkit-transform: translate3d(0, 0, 0)
  }

  .owl-carousel .owl-item {
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0)
  }

  .owl-carousel .owl-item {
    min-height: 1px;
    float: left;
    -webkit-backface-visibility: hidden;
    -webkit-touch-callout: none
  }

  .owl-carousel .owl-item img {
    display: block;
    width: 100%
  }

  .owl-carousel .owl-dots.disabled,
  .owl-carousel .owl-nav.disabled {
    display: none
  }

  .no-js .owl-carousel,
  .owl-carousel.owl-loaded {
    display: block
  }

  .owl-carousel .owl-dot,
  .owl-carousel .owl-nav .owl-next,
  .owl-carousel .owl-nav .owl-prev {
    cursor: pointer;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
  }

  .owl-carousel .owl-nav button.owl-next,
  .owl-carousel .owl-nav button.owl-prev,
  .owl-carousel button.owl-dot {
    background: 0 0;
    color: inherit;
    border: none;
    padding: 0 !important;
    font: inherit
  }

  .owl-carousel.owl-loading {
    opacity: 0;
    display: block
  }

  .owl-carousel.owl-hidden {
    opacity: 0
  }

  .owl-carousel.owl-refresh .owl-item {
    visibility: hidden
  }

  .owl-carousel.owl-drag .owl-item {
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
  }

  .owl-carousel.owl-grab {
    cursor: move;
    cursor: grab
  }

  .owl-carousel.owl-rtl {
    direction: rtl
  }

  .owl-carousel.owl-rtl .owl-item {
    float: right
  }

  .owl-carousel .animated {
    animation-duration: 1s;
    animation-fill-mode: both
  }

  .owl-carousel .owl-animated-in {
    z-index: 0
  }

  .owl-carousel .owl-animated-out {
    z-index: 1
  }

  .owl-height {
    transition: height .5s ease-in-out
  }

  .owl-carousel .owl-item .owl-lazy {
    opacity: 0;
    transition: opacity .4s ease
  }

  .owl-carousel .owl-item .owl-lazy:not([src]),
  .owl-carousel .owl-item .owl-lazy[src^=""] {
    max-height: 0
  }

  .owl-carousel .owl-item img.owl-lazy {
    transform-style: preserve-3d
  }

  .owl-carousel .owl-video-wrapper {
    position: relative;
    height: 100%;
    background: #000
  }



  .owl-carousel .owl-video-play-icon:hover {
    -ms-transform: scale(1.3, 1.3);
    transform: scale(1.3, 1.3)
  }

  .owl-carousel .owl-video-playing .owl-video-play-icon,
  .owl-carousel .owl-video-playing .owl-video-tn {
    display: none
  }

  .owl-carousel .owl-video-tn {
    opacity: 0;
    height: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    transition: opacity .4s ease
  }

  .owl-carousel .owl-video-frame {
    position: relative;
    z-index: 1;
    height: 100%;
    width: 100%
  }

  .fa-arrow-left:before {
    content: "\f060"
  }

  .fa-arrow-right:before {
    content: "\f061"
  }

  .homepage-industries-background {
    bottom: 0;
    left: 0;
    position: absolute;
    right: 0;
    top: 0
  }

  .homepage-industries-background .bg {
    background-position: 50% 50%;
    background-size: cover;
    bottom: 0;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    transition: opacity .5s ease-out;
    opacity: 0
  }

  .industry-carousel,
  .industry-section {
    height: 700px
  }

  .homepage-industries-background .current.bg {
    opacity: 1
  }

.industry-point{

    padding: 0 0 0 25px  !important;

}
.industry-point li{
  list-style-type: disc;
  font-size: 15px;
}
ul.tech-img {
  display: flex;
  justify-content: space-around;
  padding: 30px 20px !important;
  background: aliceblue;
  border-radius: 0 0 10px 10px;
  box-shadow: 0px 0px 22px -15px #323232;
}
.tech-box {
  background: rgba( 255, 255, 255, 0.55 );
  backdrop-filter: blur( 20px );
  -webkit-backdrop-filter: blur( 20px );
  border-radius: 10px;
  overflow: hidden;
}
.tech-head {
  background: #0d69fc;
  color: white;
  padding: 10px;
}

/* whyus */
.why-us{
  overflow: hidden;
  background: aliceblue;
}
.why-point {
  padding: 20px;
  height: 100%;
  border-radius: 15px;
  background: white;
  box-shadow: 7px 27px 48px rgba(0,0,0,.05);
}

.cta-wrap{

border-radius: 20px;

padding: 50px 40px;

color: white;

background: #0d69fc;
}

/* Footer Section
==========================*/
.footer-section {
  background: url("../image/dubai-landing-img/foot-bg.webp");
  padding: 80px 0 0;
  background-position: top;
  background-size: cover;
  position: relative;
  z-index: 1;
}
.footer-section::after{
  position: absolute;
  background: #0d69fce0;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  /* opacity: 0.5; */
  z-index: -1;
  content: "";
  /* backdrop-filter: blur(123px); */
}
.row.contact-row {
  margin-bottom: 30px;
  border-bottom: 1px solid var(--bs-white);
}

.footer-contact-details {
  padding-bottom: 30px;
}

.footer-contact-icon {
  padding-bottom: 15px;
}

.details-contact a {
  color: #fff;
  transition: 0.5s all ease-in-out;
}

.details-contact a:hover,
.footer-about-arrow:hover {
  color: #06bbfe;
}

.footer-widget {
  padding-bottom: 35px;
}

.footer-logo {
  width: 140px;
  padding-bottom: 28px;
}

.footer-about p {
  margin-bottom: 30px;
}

.footer-social li {
  list-style: none;
  padding: 8px 0;
}

.footer-social li:last-child {
  padding-right: 0;
}

.footer-social li a img {
  transition: 0.5s all ease-in-out;
  width: 24px;
}

.footer-social a:hover {
  padding-left: 10px;
}

.footer-social li a span {
  padding-left: 10px;
  transition: 0.5s all ease-in-out;
}

.footer-social a span:hover {
  color: #06bbfe;
}





.footer-widget-block {
  width: 90%;
}

.footer-widget-title {
  font-size: 22px;
  color: #fff;
  font-weight: 500;
  padding-bottom: 10px;
  margin-bottom: 15px;
  position: relative;
  transition: 0.5s all ease-in-out;
}

.footer-widget-title::before {
  background: #fff;
  width: 50px;
  height: 2px;
  position: absolute;
  bottom: 8px;
  left: 0;
  content: "";
  transition: 0.5s all ease-in-out;
}

.footer-widget-title:hover::before {
  width: 30px;
}

.footer-links-listing ul {
  padding: 0;
}

.footer-links-listing li {
  list-style: none;
}

.footer-links-listing a {
  color: var(--bs-white);
  padding: 12px 0;
  display: block;
  margin-bottom: 5px;
  transition: 0.5s all ease-in-out;
}

.footer-links-listing a:hover {
  padding-left: 15px;
}

.copyright {
  border-top: 1px solid #CBE6FFA3;
  padding: 20px 0;
}

.copyright p {
  color: #ddd;
  margin: 0;
}

.copyright p span {
  color: var(--bs-white);
  border-bottom: 1px solid;
}

@media (min-width:992px) and (max-width:1199px) {
  .footer-social li a span {
    display: none;
  }
}



/* faq */
.feqs-multi-accordion {width: 100%;margin: auto}
.feqs-multi-accordion .feqs-label-title {cursor: pointer;border-bottom: 3px solid #c8ddff;display: block;padding: 20px;box-sizing: border-box;font-size: 20px;border-radius: 0;box-shadow: 1px 5px 5px 0px var(--bd-gray-border);background: var(--bs-white);position: relative;z-index: 1}
.feqs-multi-accordion input {display: none}
.feqs-multi-accordion .feqs-label-title::before {font-family: 'EzulixIcon';font-weight: bolder;float: right;content: "\ea3d"}
.feqs-multi-accordion input:checked + .feqs-label-title {box-shadow: 0px 5px 7px 1px var(--bs-shadow)}
.feqs-multi-accordion input:checked + .feqs-label-title:before {font-family: 'EzulixIcon';content: "\ea3e";transition: 0.5s}
.feqs-multi-accordion input:checked ~ .feqs-content {height: auto;padding: 45px 40px 40px 22px;transition: 0.5s;color: #000;font-size: 17px;border-radius: 0 0 15px 15px;box-shadow: 0px 5px 10px -2px var(--bd-gray-border);opacity: 1;background: aliceblue;}
.feqs-content {width: calc(100% - 0px);height: 0;color: rgba(0, 0, 0, 0);line-height: 22px;padding: 0 20px;box-sizing: border-box;transition: 0.5s;margin-top: -15px;opacity: 0;}
.feqs-list-points{display: none}
.feqs-btn:checked ~ .feqs-content .feqs-list-points {display: block;padding-top: 16px}
.feqs-list-points li {list-style: unset;color: var(--bs-white);padding: 5px 0;transition: 0.5s all ease-in-out}
ul.faq-point {
  padding-left: 20px !important;
}

ul.faq-point li {
  font-size: 14px;
  list-style-type: disc;
}
.service-section {
  overflow: hidden;
}
@media only screen and (max-width:991px){
  .banner{
    margin-top: 25px;
  }
  .banner-form {
    margin-top: 40px;
}
.border-right {
  border-right: 0;
  border-bottom: 2px solid white;
  padding: 10px 0;
}

}


@media only screen and (max-width:767px){
  ul.tech-img img {
    width: 35px;
  }
}



@media only screen and (max-width:576px){
  .bnr-btn {
   
    font-size: 15px;
   
}
.cta-wrap {
  border-radius: 20px;
  padding: 50px 15px;
  color: white;
  background: #0d69fc;
}
.feqs-multi-accordion .feqs-label-title {
  
  padding: 5px;
 
  font-size: 15px;
 
}
.feqs-multi-accordion input:checked ~ .feqs-content {
  
  padding: 45px 15px 30px 15px;
  
  font-size: 12px;
  
}
}

@media only screen and (max-width:320px){
  .logo img {
    width: 120px;
}
.bnr-content h1 {
  font-size: 40px;
  line-height: 40px;
  font-weight: 500;
}
.banner-form {
 
  padding: 15px 5px;
  
}
}

@media only screen and (max-width:480px){
  .topnavbar {
   
    display: none;
}
}