@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap');

/*** 

====================================================================
  common css
====================================================================

 ***/

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
  font-family: 'Nunito', sans-serif;
  transition: all 0.3s;
}

:root {
  --dark-blue: #001955;
  --white: #ffffff;
  --btn-bg-blue: #001955;
  --btn-bg-white: #ffffff;
  --btn-text-white: #ffffff;
  --btn-text-blue: #001955;
  --h1-white: #ffffff;
  --h1-blue: #001955;
  --h2-blue: #001955;
  --h2-white: #ffffff;
  --h3-blue: #001955;
  --h3-white: #ffffff;
  --para-light-gray: #bebebe;
  --para-gray: #595F7A;
  --para-white: #ffffff;
  --para-blue: #001955;
  --sub-sec-head-white: #ffffff;
  --sub-sec-head-blue: #001955;
  --sub-sec-head-gray: #595F7A;
  --sec-arw-white: #ffffff;
  --sec-arw-blue: #001955;
  --text-white: #ffffff;
  --text-blue: #001955;
  --blue-border: #001955;
  --white-border: #ffffff;
  --gray-border: #595F7A;
  --green: #6a8626;
  /* --blue1:#0080fb;
  --blue2:#0567e1;
  --blue3:#0866ff;
  --blue4:#0050b3; */

  /* --blue: #0232a1;
  --green: #adce4a;
  --green-700: #6a8626;
  --black-500: #333333; */
}

html,
body {
  scroll-behavior: smooth !important;
}

body {
  overflow-x: hidden;
}

.container {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}

a {
  text-decoration: none;
}

span,
img,
a {
  display: inline-block;
}

button,
input {
  border: none;
  outline: none;
}

button {
  cursor: pointer;
}

ul {
  list-style-type: none;
}

h1 {
  font-size: 65px;
  line-height: 72px;
  font-weight: 600;
}

h2 {
  font-size: 55px;
  line-height: 62px;
  font-weight: 600;
}

h3 {
  font-size: 32px;
  line-height: 39px;
  font-weight: 600;
}

.h1-blue {
  color: var(--h2-blue);
}

.h1-white {
  color: var(--h2-white);
}

.h2-blue {
  color: var(--h2-blue);
}

.h2-white {
  color: var(--h2-white);
}

.h3-blue {
  color: var(--h2-blue);
}

.h3-white {
  color: var(--h2-white);
}

.para {
  font-size: 18px;
  line-height: 28px;
  font-weight: 500;
}

.para-white {
  color: var(--para-white);
}

.para-gray {
  color: var(--para-gray);
}

.para-blue {
  color: var(--para-blue);
}

.sub-sec-head {
  font-size: 24px;
  line-height: 31px;
  font-weight: 600;
}

.sub-sec-head-white {
  color: var(--sub-sec-head-white);
}

.sub-sec-head-blue {
  color: var(--sub-sec-head-blue);
}

.sub-sec-head-gray {
  color: var(--sub-sec-head-gray);
}

.sub-sec-head-green {
  color: var(--green);
}

.icon-circle {
  height: 80px;
  width: 80px;
  border-radius: 50%;
  background: var(--white);
  outline: 10px solid #BCC79D;
}

.icon-circle-3d {
  height: 100px;
  width: 100px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0px 50px 100px -20px rgba(50, 50, 93, 0.25), 0px 30px 60px -30px rgba(0, 0, 0, 0.3), inset 0px -2px 6px 0px rgba(10, 37, 64, 0.35);
}

.row {
  margin: 0;
}

.mt-60 {
  margin-top: 60px;
}

.py-100 {
  padding: 100px 0;
}

.pt-100 {
  padding-top: 100px;
}

.pb-100 {
  padding-bottom: 100px;
}

.p-100 {
  padding: 100px;
}

.mt-100 {
  margin-top: 100px !important;
}

.white-bg {
  background: var(--white);
}

.blue-bg {
  background: var(--dark-blue);
}

.border-radius-15 {
  border-radius: 15px;
}

.three-col-width {
  width: 435px;
}

.four-col-width {
  width: 315px;
}

.cust-btn-blue {
  --background: var(--btn-bg-blue);
  --text: var(--btn-text-white);
  --font-size: 19px;
  --duration: 0.20s;
  padding: 12px 24px;
  font-weight: 600;
  line-height: var(--font-size);
  border-radius: 30px;
  font-size: var(--font-size);
  letter-spacing: 0.5px;
  background: var(--background);
  color: var(--text);
  transition: transform var(--duration) ease, box-shadow var(--duration) ease;
}

.cust-btn-blue.white-btn {
  background: var(--white) !important;
  color: var(--dark-blue) !important;
  animation: none;
}

.cust-btn-blue div {
  display: flex;
  overflow: hidden;
  text-shadow: 0 var(--font-size) 0 var(--text);
}

.cust-btn-blue.white-btn div {
  text-shadow: 0 var(--font-size) 0 var(--dark-blue);
}

.cust-btn-blue div span {
  display: block;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  font-style: normal;
  transition: transform var(--duration) ease;
  transform: translateY(var(--m)) translateZ(0);
}

.cust-btn-blue div span:nth-child(1) {
  transition-delay: 0.05s;
}

.cust-btn-blue div span:nth-child(2) {
  transition-delay: 0.1s;
}

.cust-btn-blue div span:nth-child(3) {
  transition-delay: 0.15s;
}

.cust-btn-blue div span:nth-child(4) {
  transition-delay: 0.2s;
}

.cust-btn-blue div span:nth-child(5) {
  transition-delay: 0.25s;
}

.cust-btn-blue div span:nth-child(6) {
  transition-delay: 0.3s;
}

.cust-btn-blue div span:nth-child(7) {
  transition-delay: 0.35s;
}

.cust-btn-blue div span:nth-child(8) {
  transition-delay: 0.4s;
}

.cust-btn-blue div span:nth-child(9) {
  transition-delay: 0.45s;
}

.cust-btn-blue div span:nth-child(10) {
  transition-delay: 0.5s;
}

.cust-btn-blue div span:nth-child(11) {
  transition-delay: 0.55s;
}

.cust-btn-blue div span:nth-child(12) {
  transition-delay: 0.6s;
}

.cust-btn-blue div span:nth-child(13) {
  transition-delay: 0.65s;
}

.cust-btn-blue div span:nth-child(14) {
  transition-delay: 0.7s;
}

.cust-btn-blue:hover span {
  --m: calc(var(--font-size) * -1);
}

.cust-btn-anim {
  animation: jittery 2s infinite;
}

@keyframes jittery {

  5%,
  50% {
    transform: scale(1);
  }

  10% {
    transform: scale(1);
  }

  15% {
    transform: scale(1);
  }

  20% {
    transform: scale(1) rotate(-7deg);
  }

  25% {
    transform: scale(1) rotate(7deg);
  }

  30% {
    transform: scale(1) rotate(-7deg);
  }

  35% {
    transform: scale(1) rotate(5deg);
  }

  40% {
    transform: scale(1) rotate(0);
  }
}

.arrow-btn {
  font-size: 18px;
  padding: 12px 65px 12px 24px;
  font-weight: 600;
  border-radius: 30px;
  position: relative;
  transition: all 0.3s ease-in-out;
}

.arrow-btn span {
  position: relative;
  z-index: 1;
}

.white-btn {
  background: var(--btn-bg-white);
  color: var(--btn-text-blue);
  border: 2px solid var(--white-border);
}

.white-btn:hover {
  color: var(--btn-text-white);
  background: var(--btn-bg-blue);
}

.blue-btn {
  background: var(--btn-bg-blue);
  color: var(--btn-text-white);
  border: 2px solid var(--blue-border);
}

.blue-btn:hover {
  color: var(--btn-text-blue);
  background: var(--btn-bg-white);
}

.arrow-btn::after {
  content: '';
  width: 45px;
  height: 45px;
  border-radius: 50px;
  position: absolute;
  top: 3px;
  right: 3px;
  transition: all 0.3s ease-in-out;
}

.white-btn::after {
  background: var(--sec-arw-blue) url(../image/white-arrow.svg) 0 0 no-repeat;
  background-size: 20px;
  background-position: center right 13px;
}

.blue-btn::after {
  background: var(--sec-arw-white) url(../image/blue-arrow.svg) 0 0 no-repeat;
  background-size: 20px;
  background-position: center right 13px;
}

.arrow-btn:hover::after {
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
}

.navigation-clr .company-logo.white-logo {
  display: none;
}

.navigation-clr .company-logo.color-logo {
  display: block;
}

.navigation-clr .nav-menu>li>a {
  color: var(--text-blue);
}

.background-alice-blue {
  background: #e4ecff;
}

.background-blue {
  background: var(--dark-blue);
}

.box-shadow {
  box-shadow: 0 0 5px rgba(0, 25, 85, 0.3);
}

/*** 

====================================================================
Hero Menu section 
====================================================================

***/


.hero-sec video {
  height: 100vh;
  left: 0;
  object-fit: cover;
  position: absolute;
  top: 0;
  width: 100%;
}

/* .hero-sec {
  background: url(../image/Banner-img.jpg) no-repeat center;
  background-attachment: fixed;
  background-size: cover;
} */

.banner-shape img {
  width: 100%;
}

#floater {
  position: absolute;
  top: 100vh;
  right: 5px;
  width: 50px;
  height: 50px;
  -webkit-transition: all 2s ease-in-out;
  transition: all 1s;
  z-index: 2;
  border-radius: 50%;
  padding: 10px;
  background-color: var(--dark-blue);
  color: white;
  text-align: center;
  box-sizing: border-box;
  display: grid;
  place-items: center;
  box-shadow: inset 2px 2px 2px 0px rgba(153, 153, 153, 0.405), inset -2px -2px 2px 0 rgba(0, 0, 0, 0.7);
}

.scroll-btn-anim {
  position: absolute;
  bottom: 0;
  width: 100%;
}

#scrl-icon {
  --clr: var(--white);
  display: block;
  width: 18px;
  height: auto;
  overflow: visible;
  margin: 30px auto;
}

.scrl-body {
  fill: none;
  stroke: var(--clr);
  stroke-linecap: round;
  stroke-miterlimit: 10;
  stroke-width: 3.5;
  animation: scroll-parallax 1.5s cubic-bezier(.41, .07, .83, .67) infinite running
}

@keyframes scroll-parallax {
  25% {
    transform: translateY(0)
  }

  75% {
    transform: translateY(-20%)
  }
}

.scrl-wheel {
  fill: var(--clr);
  transform-origin: bottom;
  animation: scroll-animation 1.5s linear infinite running;
  will-change: transform;
}

@keyframes scroll-animation {
  0% {
    transform: translateY(-90%) scale(0.7, 0.1)
  }

  10% {
    transform: translateY(-90%) scaleY(0.3)
  }

  25% {
    transform: translateY(-20%) scaleY(1)
  }

  75% {
    transform: translateY(40%) scaleY(1)
  }

  100% {
    transform: translateY(20%) scale(0.8, 0.1);
  }
}



/*** 

====================================================================
Desktop Menu section 
====================================================================

***/

.header_area {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10000;
}

.header_area:hover {
  background-color: var(--white) !important;
}

.header_area.menufixed {
  background-color: var(--white) !important;
  box-shadow: 0 0 5px rgb(0, 25, 85, 0.2);
}

.logo-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}

.company-logo {
  max-width: 120px;
}

.company-logo.color-logo {
  display: none;
}

.menufixed .company-logo.white-logo,
.header_area:hover .company-logo.white-logo {
  display: none;
}

.menufixed .company-logo.color-logo,
.header_area:hover .company-logo.color-logo {
  display: block;
}

.nav-menu {
  margin-bottom: 0;
}

.navigation {
  width: 100%;
  height: 70px;
  position: relative;
  display: grid;
  grid-auto-flow: column;
  align-items: center;
  justify-content: space-between;
}

.nav-menus-wrapper-close-button {
  display: none;
}

.nav-menu>li {
  display: inline-block;
  text-align: left;
}

.nav-menu>li>a {
  padding: 0 30px 39px 30px;
  text-decoration: none;
  font-size: 18px;
  line-height: 25px;
  font-weight: 500;
  color: var();
  -webkit-transition: color 0.3s, background 0.3s;
  transition: color 0.3s, background 0.3s;
  color: var(--text-white);
  display: flex;
  align-items: center;
  display: initial;
  position: relative;
}

.menufixed .nav-menu>li>a,
.header_area:hover .nav-menu>li>a {
  color: var(--text-blue);
}

.nav-menu>li>a::after,
.footer-menu a::after {
  content: '';
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  border-radius: 5px;
  height: 3px;
  bottom: 0;
  left: 0;
  background: var(--green);
  transform-origin: bottom right;
  transition: transform 0.25s ease-out;
}

.nav-menu>li>a:hover::after,
.footer-menu a:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

.submenu-indicator {
  margin-left: 10px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  display: inline-block;
  position: relative;
  top: -2px;
}

.megamenu-panel {
  width: auto;
  display: none;
  position: absolute;
  font-size: 14px;
  z-index: 98;
  text-align: left;
  color: inherit;
  /* right: 0 !important; */
  border-radius: 5px;
  padding: 16px 32px;
  /* max-height: 400px; */
  overflow-y: auto;
  top: 86px;
  background: var(--white);
  box-shadow: 0 0 5px rgb(0, 25, 85, 0.2);
}

.megamenu-panel-wrapper {
  display: flex;
  justify-content: space-between;
}

.megamenu-lists {
  display: flex;
  justify-content: center;
}

.megamenu-lists:nth-of-type(2),
.megamenu-lists:nth-of-type(3) {
  margin-top: 25px;
}

.megamenu-list {
  width: 100%;
  margin: 0 0 15px;
  padding: 0;
  display: inline-block;
  list-style: none;
}

.megamenu-list:last-child {
  margin: 0;
  border: none;
}

.megamenu-list>li>a {
  width: 100%;
  padding: 12px 0;
  display: flex;
  align-items: center;
  color: var(--para-gray);
  text-decoration: none;
  font-size: 18px;
  line-height: 28px;
  font-weight: 500;
}

.megamenu-list>li>a>img {
  margin-right: 16px;
}

.megamenu-list>li>a:hover {
  font-weight: 700;
}

.megamenu-list>li.megamenu-list-title>a {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  color: #343a40;
}

.megamenu-list>li.megamenu-list-title>a:hover {
  background-color: transparent;
}

/*** 

====================================================================
  Mobile Menu Section 
====================================================================

 ***/

#mobile-nav {
  display: none;
  box-shadow: 0 0 25px rgba(64, 132, 233, 0.25);
}

.mbl-logo {
  max-width: 240px;
  padding: 12px 24px;
}

.mbl-logo img {
  width: 100%;
}

.mbl-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 90px;
}

.menu-button {
  color: var(--dark-blue);
  cursor: pointer;
  font-size: 32px;
  padding: 12px 24.8px;
}

.open-menu {
  color: var(--dark-blue);
  cursor: pointer;
  font-size: 16px;
  padding: 20.8px;
  position: absolute;
  right: 0;
  top: 0;
  transition: transform 250ms ease;
}

.rotate {
  transform: rotate(135deg);
}

/* Generated Overflow Element */

.menu-overflow {
  margin-top: 5px;
  overflow-x: hidden;
  overflow-y: auto;
}

/* Menu Styles */

#mobile-nav {
  position: fixed;
  width: 100%;
  z-index: 10000;
  height: 90px;
  display: none;
  background-color: var(--white) !important;
}

#mobile-nav ul {
  /* background-color: rgba(0, 0, 0, 0.1); */
  display: none;
  margin: 0 16px;
  padding: 0;
  position: relative;
}

#mobile-nav ul:first-child {
  background-color: #ffffff;
  box-shadow: 0 0 5px rgb(0, 25, 85, 0.2);
}

#mobile-nav ul li:first-child {
  border-top: none;
}

#mobile-nav ul li {
  border-top: 1px solid rgba(0, 48, 113, 0.5);
  list-style: none;
  margin-bottom: 0;
  position: relative;
}

#mobile-nav .menu-overflow>ul>li>a {
  font-weight: bold;
  color: var(--dark-blue);
}

#mobile-nav .menu-overflow>ul>li.parent>ul>li>a {
  font-weight: bold;
}

#mobile-nav ul li a {
  color: var(--black-500);
  /* display: inline-block; */
  font-size: 16px;
  padding: 16px;
  text-decoration: none;
  width: 100%;
}

#mobile-nav ul li.parent>a {
  cursor: initial !important;
}

#mobile-nav ul li ul li>a {
  cursor: pointer !important;
}

#mobile-nav ul ul {
  margin: 0;
}

#mobile-nav ul ul li {
  border-top: none;
  padding-left: 16px;
}

#mobile-nav ul ul li:first-child>a {
  border-top: none;
}

#mobile-nav ul ul li a {
  border-top: 1px solid rgba(0, 48, 113, 0.5);
  display: flex;
  align-items: center;
}

#mobile-nav ul ul li a img {
  margin-right: 10px;
}

/*** 

====================================================================
  About Section 
====================================================================

 ***/

.gradiant-color {
  background: linear-gradient(-26.546deg, #152C75 27%, #595F7A 100%);
}

/*** 

====================================================================
  service Section 
====================================================================

 ***/

.hrztl-sec {
  border: 2px solid var(--blue-border);
  border-radius: 15px;
  margin-bottom: 24px;
  position: relative;
}

.arrow-circle {
  height: 35px;
  width: 35px;
  border-radius: 50%;
  background: var(--sec-arw-blue) url(../image/white-arrow.svg) 0 0 no-repeat;
  background-size: 15px;
  background-position: center;
  transform: rotate(-40deg);
  position: absolute;
  top: 24px;
  right: 24px;
  border: 2px solid var(--blue-border);
}

.arrow-circle::before {
  content: ' ';
  height: 35px;
  width: 35px;
  border-radius: 50%;
  background: var(--sec-arw-white) url(../image/blue-arrow.svg) 0 0 no-repeat;
  background-size: 15px;
  background-position: center;
  position: absolute;
  top: -1.5px;
  right: -2px;
  border: 2px solid var(--blue-border);
  scale: 0;
  transition: all 0.2s;
}

.hrztl-sec:hover .arrow-circle::before {
  scale: 1;
}

.service-head {
  position: -webkit-sticky;
  position: sticky;
  top: 120px;
  max-height: max-content;
  min-height: auto;
}

.service-scroll {
  max-height: 1650px;
  min-height: auto;
}

/*** 

====================================================================
  CTA Section 
====================================================================

 ***/

.cta-sec {
  background: url(../image/cta-banner.jpg) no-repeat center;
  padding: 100px;
  background-size: cover;
}

/*** 

====================================================================
  Technology Section 
====================================================================

 ***/

.gradiant-circle {
  height: 100px;
  width: 100px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.vert-tab>div {
  margin-left: 2px;
  margin-right: 2px;
  width: 10%;
  cursor: pointer;
  height: 500px;
  transition: all 0.5s ease 0s;
  overflow: hidden;
}

.recr-content {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 36px 28px;
  border: 1px solid var(--white-border);
  border-radius: 15px;
}

.recr-content.active {
  justify-content: flex-start;
}

.recr-content h3 {
  text-align: left;
  white-space: nowrap;
  transform: rotate(269deg);
}

.work_items_content {
  display: none;
}

.vert_tab_image_wrrapeer {
  display: flex;
  align-items: center;
}

.recr-content.active {
  width: 100%;
}

.recr-content.active {
  border-color: var(--white-border);
}

.recr-content.active h3 {
  display: none;
}

.recr-content.active .work_items_content {
  display: block;
}

.recr-content:hover h3 {
  font-size: 35px;
}

.vert-tab {
  display: flex;
}

/*** 

====================================================================
  Industry Section 
====================================================================

 ***/

.industry-sec .section-wrap {
  gap: 25px;
}

.industry-wrap {
  width: 54%;
  gap: 25px;
}

.industry-img:hover {
  scale: 0.95;
}

.industry-img h3 {
  position: absolute;
  bottom: 24px;
  left: 24px;
}

.industry-img a::after {
  content: " ";
  width: 100%;
  height: 100%;
  position: absolute;
  background: #000;
  left: 0;
  top: 0;
  border-radius: 15px;
  opacity: 0;
  transition: all 0.3s;
}

.industry-img i {
  z-index: 1;
  position: absolute;
  top: 50%;
  left: 45%;
  transform: translate(-50%, -50%);
  font-size: 40px;
  color: #fff;
  opacity: 0;
}

.industry-img a:hover::after {
  opacity: 0.4;
}

.industry-img a:hover i {
  opacity: 1;
  left: 50%;
}

/*** 

====================================================================
  solution Section 
====================================================================

 ***/

.sqr-sec {
  border: 2px solid var(--blue-border);
  border-radius: 15px;
  margin-bottom: 0;
  position: relative;
}

.sqr-sec:hover {
  scale: 0.95;
}

/*** 

====================================================================
  portfolio slider Section 
====================================================================

 ***/

.portfolio-slider {
  width: 85%;
  position: relative;
  max-width: 1440px;
  margin: auto;
  background: #fff;
  box-shadow: 0px 14px 80px rgba(34, 35, 58, 0.2);
  padding: 25px;
  border-radius: 15px;
  height: 600px;
  transition: all 0.3s;
}

.portfolio-slider__item {
  display: flex;
  align-items: center;
  /* width: 100% !important; */
}

.portfolio-slider__item.swiper-slide-active .portfolio-slider__img img {
  opacity: 1;
  transition-delay: 0.3s;

}

.portfolio-slider__item.swiper-slide-active .portfolio-slider__content>* {
  opacity: 1;
  transform: none;
}

.portfolio-slider__item.swiper-slide-active .portfolio-slider__content>*:nth-child(1) {
  transition-delay: 0.3s;
}

.portfolio-slider__item.swiper-slide-active .portfolio-slider__content>*:nth-child(2) {
  transition-delay: 0.4s;
}

.portfolio-slider__item.swiper-slide-active .portfolio-slider__content>*:nth-child(3) {
  transition-delay: 0.5s;
}

.portfolio-slider__item.swiper-slide-active .portfolio-slider__content>*:nth-child(4) {
  transition-delay: 0.6s;
}

.portfolio-slider__img {
  width: 600px;
  flex-shrink: 0;
  height: 500px;
  background-image: radial-gradient(74.13% 139.48% at 74.13% 54.61%, #0f1c39 0, #060d1d 100%);
  border-radius: 20px;
  transform: translateX(-100px);
  overflow: hidden;
  box-shadow: 0 0 5px rgba(0, 25, 85, 0.3);
}

.portfolio-slider__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0;
  border-radius: 15px;
  transition: all 0.3s;
}

.portfolio-slider__content {
  transform: translateX(-50px);
}

.portfolio-slider__content>* {
  opacity: 0;
  transform: translateY(25px);
  transition: all 0.4s;
}

.portfolio-slider .swiper-container-horizontal>.swiper-pagination-bullets,
.portfolio-slider .swiper-pagination-custom,
.portfolio-slider .swiper-pagination-fraction {
  bottom: 10px;
  left: 0;
  width: 100%;
}

.portfolio-slider__pagination {
  position: absolute;
  z-index: 21;
  right: 20px;
  width: 11px !important;
  text-align: center;
  left: auto !important;
  top: 50% !important;
  bottom: auto !important;
  transform: translateY(-50%);
}

.portfolio-slider__pagination.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 8px 0;
}

.portfolio-slider__pagination .swiper-pagination-bullet {
  width: 11px;
  height: 11px;
  display: block;
  border-radius: 10px;
  background: var(--dark-blue);
  opacity: 0.2;
  transition: all 0.3s;
}

.portfolio-slider__pagination .swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--dark-blue);
  height: 30px;
}

/*** 

====================================================================
  testimonial Section 
====================================================================

 ***/

.testimonial-sec .section-wrap {
  display: grid;
  place-items: center;
  position: relative;
}

.test-container {
  width: 100%;
  overflow: hidden;
  height: fit-content;
  font-size: 50px;
  position: relative;
  text-align: center;
}

.swiper-slide.test-slide {
  width: auto;
  height: fit-content;
  display: flex;
  height: auto;
  border: 2px solid var(--blue-border);
  border-radius: 15px;
  overflow: hidden;
  align-items: flex-start;
  flex-direction: column;
  padding: 0px;
  background-color: var(--white);

}

.swiper-slide.test-slide .ImgHolder {
  background-color: var(--dark-blue);
  display: flex;
  width: 100%;
  height: auto;
  padding: 60px 0;
  border-bottom-left-radius: 20px;
  justify-content: center;
}

.swiper-slide.test-slide .ImgHolder img.icon-circle {
  height: 120px;
  width: 120px;
}

.ContentHolder::before {
  background-color: var(--dark-blue);
  content: '';
  width: 50px;
  height: 50px;
  position: absolute;
  top: -5px;
  z-index: -1;
  right: 0px;
}

.ContentHolder {
  position: relative;
  padding: 30px;
  background-color: var(--white);
  border-top-right-radius: 20px;
  text-align: center;
}

.test-pagination .swiper-pagination-bullet {
  height: 11px;
  width: 11px;
  color: var(--dark-blue);
  opacity: 0.2;
}

.test-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 30px;
  border-radius: 10px;
  opacity: 1;
  background: var(--dark-blue);
}

.testimonial-sec .swiper-notification {
  display: none;
}

/*** 

====================================================================
  footer Section 
====================================================================

 ***/

.contact-wrap {
  gap: 50px;
}

.cust-form input,
.cust-form textarea {
  background: none;
  border: 1px solid var(--white);
  border-radius: 15px;
  color: var(--white);
}

.cust-form label {
  color: var(--white);
  opacity: 0.5;
  font-size: 18px;
  line-height: 25px;
}

.cust-form input:focus,
.cust-form textarea:focus {
  border: 1px solid var(--white);
  background: none;
  box-shadow: none;
  color: var(--white);
}

.cust-form input:-webkit-autofill,
.cust-form input:-webkit-autofill:hover,
.cust-form input:-webkit-autofill:focus,
.cust-form input:-webkit-autofill:active {
  transition: background-color 5000s ease-in-out 0s !important;
  background-color: transparent !important;
  -webkit-text-fill-color: #fff !important;
  background: none !important;
}

.cust-form .form-floating>.form-control:focus~label,
.cust-form .form-floating>.form-control:-webkit-autofill~label,
.cust-form .form-floating>.form-control:not(:placeholder-shown)~label {
  color: var(--white);
}

.cust-form .form-floating>.form-control:focus~label::after,
.cust-form .form-floating>.form-control:not(:placeholder-shown)~label::after {
  background-color: transparent;
}

.cust-form textarea {
  height: 150px !important;
}

.contact-details .icon-circle {
  height: 60px;
  width: 60px;
  outline: 8px solid #BCC79D;
}

.contact-details .icon-circle img {
  width: 30px;
}

.address-details .sub-sec-head::before {
  content: "";
  width: 125px;
  height: 2px;
  background: var(--white);
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
}

/*** 

====================================================================
  contact Section 
====================================================================

 ***/

.contact-form textarea {
  height: 100px !important;
}

.date .form-control {
  padding: 16px 12px;
}

.contact-form form {
  border-radius: 15px;
  box-shadow: 0 0 10px rgba(0, 25, 85, 0.5);
  background-color: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(5px);
}

.contact-form form input,
.contact-form form textarea,
.contact-form form select {
  background-color: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

.contact-form label {
  color: var(--para-gray);
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
  border-color: var(--dark-blue);
  box-shadow: 0 0 0 4px rgb(0, 25, 85, 0.25);
}

.note span {
  height: 15px;
  width: 15px;
  border-radius: 50%;
  background: var(--dark-blue);
  margin-bottom: 2px;
}

.contact-form .form-floating>.form-select~label::after,
.contact-form .form-floating>.form-control:focus~label::after,
.contact-form .form-floating>.form-control:not(:placeholder-shown)~label::after {
  background-color: transparent;
}

/*** 

====================================================================
  contact-info Section 
====================================================================

 ***/

.contact-info-wrap {
  background: rgba(0, 0, 0, 0) linear-gradient(110deg, #001955 0%, #595F7A 100%) 0% 0% no-repeat padding-box;
}

.contact-info-wrap .row>div {
  background: var(--white);
}

/*** 

====================================================================
  about_us Section 
====================================================================

 ***/

.about-page {
  background: url(../image/about-bg-banner1.jpg) no-repeat center;
  background-attachment: fixed;
  background-size: cover;
}


/*** 

====================================================================
  director Section 
====================================================================

 ***/

.director-wrap {
  background: #e4ecff;
}

/*** 

====================================================================
  portfolio Page Section 
====================================================================

 ***/

.portfolio-div {
  width: 500px;
}

.portfolio-div:nth-child(even) {
  margin-top: 100px;
}

.portfolio-div:last-child {
  visibility: hidden;
}

.img-div {
  max-width: 500px;
  max-height: 500px;
  box-shadow: 0 0 4px rgb(0, 25, 85, 0.2);
}

.img-div img {
  scale: 1;
}

.portfolio-wrap a:hover .img-div img {
  scale: 1.2;
}

.cust-round-pill {
  padding: 2px 10px;
  border: 1px solid var(--gray-border);
}

/*** 

====================================================================
 service banner section 
====================================================================

 ***/

.about-company-service .four-col-width {
  background: rgb(255, 255, 255, 0.8);
  min-height: 235px;
  backdrop-filter: blur(5px);
  box-shadow: 0 0 10px rgba(0, 25, 85, 0.5);
}

.about-company-service .four-col-width:nth-child(even) {
  margin-top: 60px;
}

/*** 

====================================================================
 casestudy Section 
====================================================================

 ***/
.casestudy-div-wrap {
  display: flex;
}

.casestudy-div {
  width: 30%;
}

.casestudy-div img {
  box-shadow: 0 0 10px rgba(0, 25, 85, 0.5);
}

.casestudy-div:hover,
.blog-div:hover {
  scale: 0.95;
}

/*** 

====================================================================
 industry Section 
====================================================================

 ***/

.industry-div {
  padding: 40px 50px;
  border: 1px solid var(--blue-border);
  border-radius: 15px;
}

.industry-div .gradiant-circle {
  margin: 0 60px;
}

/*** 

====================================================================
 why choose Section 
====================================================================

 ***/

.list li {
  padding-left: 32px;
}

.list li::before {
  content: "";
  background: url(../image/circle-check-blue.svg) no-repeat;
  background-size: cover;
  width: 16px;
  height: 16px;
  position: absolute;
  left: 0;
  top: 4px;
}

/*** 

====================================================================
service-technology Section 
====================================================================

 ***/

.service-tech-div {
  border: 1px solid var(--blue-border);
}

/*** 

====================================================================
model Section 
====================================================================

 ***/

.model-div {
  background: var(--white);
  box-shadow: 0 0 10px rgba(0, 25, 85, 0.5);
  width: 32%;
}

.time-wrap>div {
  width: 49%;
}

/*** 

====================================================================
develper provide
====================================================================

 ***/

.developer .hire-developer-icon>div {
  width: 18%;
}

/*** 

====================================================================
page-404
====================================================================

 ***/

.page-404 .banner-content .container {
  bottom: 50px;
}

.img-404 {
  margin-top: 150px;
}

/*** 

====================================================================
Thank you
====================================================================

 ***/

.thank-you-head {
  font-size: 150px;
  background: -webkit-linear-gradient(-45deg, #3a6fed 5%, #001955 60%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: normal;
  font-weight: 800;
}

/*** 

====================================================================
blog
====================================================================

 ***/

.blog-div>a p {
  display: -webkit-box;
  max-width: 100%;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.social-menu .share:hover.right>i,
.social-menu .share li:hover i {
  color: var(--dark-blue);
}

.social-menu .submenu {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.social-menu .submenu li {
  transition: all ease-in-out 0.5s;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  opacity: 0;
  height: auto;
  width: 50px;
  text-align: center;
}

.social-menu .submenu li:nth-child(1) {
  transform: rotateX(45deg);
}

.social-menu .submenu li:nth-child(2) {
  transform: rotateX(90deg);
}

.social-menu .submenu li:nth-child(3) {
  transform: rotateX(135deg);
}

.social-menu .submenu li:nth-child(4) {
  transform: rotateX(180deg);
}

.social-menu .share:hover.right .submenu li {
  opacity: 1;
  transform: rotate(0deg);
  border-left: 1px dashed #cccccc;
  z-index: 1;
}

.social-menu .share:hover.right .submenu li:nth-child(1) {
  left: 40px;
  transition-delay: 0.08s;
}

.social-menu .share:hover.right .submenu li:nth-child(2) {
  left: 90px;
  transition-delay: 0.16s;
}

.social-menu .share:hover.right .submenu li:nth-child(3) {
  left: 140px;
  transition-delay: 0.24s;
}

.social-menu .share:hover.right .submenu li:nth-child(4) {
  left: 190px;
  transition-delay: 0.32s;
}

.contact-form.search-form form {
  border-radius: 0;
  box-shadow: none;
  background-color: transparent;
  backdrop-filter: none;
}

.contact-form.search-form form input {
  background-color: #ffffff;
  backdrop-filter: none;
}

.search-btn {
  width: 50px;
  height: 50px;
  background: var(--dark-blue);
  border-radius: 50%;
  color: #ffffff;
}

.category-list li::before {
  content: "";
  display: block;
  height: 1px;
  width: 100%;
  top: 0;
  background: var(--gray-border);
  opacity: 0.2;
  position: absolute;
}

.category-list li:hover a {
  font-size: 20px;
}

.subscribe form a>.cust-btn-blue div {
  justify-content: center;
}

/*** 

====================================================================
results-achieved
====================================================================

 ***/
.circle-info {
  width: 250px;
  height: 250px;
  border-radius: 50%;
}

.sqr-info {
  width: 250px;
  height: 250px;
  border-right: 1px solid rgba(89, 95, 122, 0.3);
}

.sqr-info h3,
.sqr-info p {
  height: 50px;
}

.sqr-info:last-child {
  border: none;
}

.contact-form form input.form-check-input {
  background-color: var(--white);
  border: 1px solid var(--blue-border);
}

.contact-form form input.form-check-input:focus {
  box-shadow: none;
}

.contact-form form input.form-check-input:checked {
  background-color: var(--dark-blue)
}

/*** 

====================================================================
all-bg-img
====================================================================

 ***/

.service-page {
  background: url(../image/service-bg.jpg) no-repeat center;
}

.service-inner-page {
  background: url(../image/service-inner-bg.jpg) no-repeat center;
}

.solution {
  background: url(../image/solution-bg.jpg) no-repeat center;
}

.industries {
  background: url(../image/industry-bg.jpg) no-repeat center;
}

.technology {
  background: url(../image/technology-bg.jpg) no-repeat center;
}

.hire-developer {
  background: url(../image/hire-developer.jpg) no-repeat center;
}

.page-404 {
  background: url(../image/404-bg.jpg) no-repeat center;
}

.privacy-bg {
  background: url(../image/privacy-bg.jpg) no-repeat center;
}

.blog-bg {
  background: url(../image/blog-bg.jpg) no-repeat center;
}

.contact-page {
  background: url(../image/contact-bg.jpg) no-repeat center;
}

.casestudy-banner {
  background: url(../image/casestudy-bg.jpg) no-repeat center;
}

.career {
  background: url(../image/career-bg.jpg) no-repeat center;
}

.service-page,
.service-inner-page,
.solution,
.industries,
.technology,
.hire-developer,
.page-404,
.privacy-bg,
.blog-bg,
.contact-page,
.casestudy-banner,
.career {
  background-attachment: fixed;
  background-size: cover;
}