/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/

body {
  background: #fff;
  color: #444;
  font-family: "Open Sans", sans-serif;
}

a {
  color: #0A385C;
  transition: 0.5s;
  text-decoration: none;
}

a:hover,
a:active,
a:focus {
  color: #0b6bd3;
  outline: none;
  text-decoration: none;
}

p {
  padding: 0;
  margin: 0 0 30px 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  margin: 0 0 20px 0;
  padding: 0;
}

button:focus {
  outline: none;
}

.white-bg {
  background: #fff;
}

.dark-bg {
  background: #000;
}

/* Progress scroll to top  */
.progress-wrap {
  position: fixed;
  bottom: 30px;
  right: 30px;
  height: 46px;
  width: 46px;
  cursor: pointer;
  display: block;
  border-radius: 50px;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(20px);
  -ms-transform: translateY(20px);
  transform: translateY(20px);
  -webkit-transition: all 400ms linear;
  -o-transition: all 400ms linear;
  transition: all 400ms linear;
  border: 2px solid rgba(211, 34, 52, .7);
  background: #fff;
}

.progress-wrap.active-progress {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}

.progress-wrap span {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: inline-block;
  line-height: 1;
}

.progress-wrap span,
.progress-wrap span svg {
  color: rgba(211, 34, 52, .7);
}

.progress-wrap svg path {
  fill: none;
}

.progress-wrap svg.progress-circle path {
  stroke-width: 10;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 400ms linear;
  -o-transition: all 400ms linear;
  transition: all 400ms linear;
  stroke: rgba(211, 34, 52, .7);
}

.progress-wrap i {
  font-size: 26px;
  position: relative;
  top: 3px;
  animation: backToTop 2s linear infinite;
}

@keyframes backToTop {
  0% {
    transform: translateY(0);
  }

  50% {
    opacity: 0.5;
  }

  100% {
    transform: translateY(-10px);
    opacity: 0;
  }
}

/* Prelaoder */

#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #f2f2f2;
  border-top: 6px solid #0A385C;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

#header {
  height: 80px;
  z-index: 997;
  transition: all 0.5s ease;
  padding: 20px 0;
  background: #fff;
  position: absolute;
  top: 0;
  width: 100%;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.05);
}

#header.header-scrolled,
#header.header-pages {
  position: fixed;
  height: 60px;
  padding: 10px 0;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.3);
  transition: all 0.5s ease;
}

#header .logo h1 {
  font-size: 36px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
}

#header .logo h1 a,
#header .logo h1 a:hover {
  color: #0A385C;
  text-decoration: none;
}

#header .logo img {
  padding: 0;
  margin: 7px 0;
  max-height: 26px;
}

.main-pages {
  margin-top: 60px;
}

/*--------------------------------------------------------------
# Intro Section
--------------------------------------------------------------*/

#intro {
  width: 100%;
  position: relative;
  /* background: url("../img/intro-bg.png") no-repeat bottom center / contain;
  background-size: cover; */
  /* padding: 250px 0; */
  margin-top: 80px;
  height: 100vh;
  max-height: 830px;
  background: linear-gradient(180deg, #DCE6FE 50%, #fff);
  overflow: hidden;
}

#intro>svg {
  position: absolute;
  bottom: 0;
}

/* #intro .intro-img {
  width: 50%;
  float: right;
}

#intro .intro-info {
  width: 50%;
  float: left;
} */

.intro-img {
  position: relative;
}

.intro-img::before,
.intro-img::after {
  position: absolute;
  content: "";
  top: -20px;
  width: calc(100% + 30px);
  height: 580px;
  border: 2px solid #fff;
  border-radius: 62% 47% 82% 35% / 45% 45% 80% 66%;
  will-change: border-radius, transform, opacity;
  animation: bolb 5s linear infinite;
  display: block;
}

.intro-img::before {
  left: -25px;
}

.intro-img::after {
  right: -25px;
  border-color: #0A385C;
}

.intro-img img {
  width: 100%;
  border-radius: 62% 47% 82% 35% / 45% 45% 80% 66%;
  animation: bolb 5s linear infinite;
  height: 540px;
  object-fit: cover;
  object-position: right;
}

@keyframes bolb {

  0%,
  100% {
    border-radius: 42% 58% 70% 30% / 45% 45% 55% 55%;
    transform: translate3d(0, 0, 0) rotateY(-180deg) rotateZ(0.01deg);
  }

  33% {
    border-radius: 70% 30% 46% 54% / 30% 29% 71% 70%;
    transform: translate3d(0, 5px, 0) rotateY(-180deg) rotateZ(0.01deg);
  }

  50% {
    transform: translate3d(0, 0, 0) rotateY(-180deg) rotateZ(0.01deg);
  }

  67% {
    border-radius: 100% 60% 60% 100% / 100% 100% 60% 60%;
    transform: translate3d(0, -3px, 0) rotateY(-180deg) rotateZ(0.01deg);
  }
}

.diffAngle {
  transform: perspective(1000px) rotateY(-180deg);
}

.intro-info {
  position: relative;
  z-index: 3;
}

.intro-short-title {
  text-transform: uppercase;
  color: #333;
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 0.65px;
}

.intro-info h2 {
  color: #0A385C;
  margin-bottom: 40px;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.3;
  text-transform: capitalize;
}

.intro-info h2 span {
  font-weight: 800;
  font-size: 52px;
  color: transparent;
  background: url('../img/technology/sun.png') repeat center center / contain;
  background-clip: text;
  -webkit-background-clip: text;
  background-position: 400% 400%;
  animation: textAnim 15s linear infinite;
}

@keyframes textAnim {
  100% {
    background-position: 100% 100%;
  }
}

.action-btns {
  display: flex;
  align-items: center;
  gap: 15px;
}

.intro-info .btn-style-1,
.intro-info .btn-style-2 {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 32px;
  border-radius: 50px;
  transition: 0.5s;
  color: #fff;
  position: relative;
  overflow: hidden;
  border: 1px solid #0A385C;
}

.intro-info .btn-style-1:hover {
  color: #0A385C;
}

.intro-info .btn-style-1::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 101%;
  height: 101%;
  background: #0A385C;
  z-index: -1;
  transition: transform 0.5s;
  transition-timing-function: ease;
  transform-origin: 0 0;
  transition-timing-function: cubic-bezier(0.5, 1.6, 0.4, 0.7);
  transform: scaleX(1);
  border: 1px solid #0A385C;
  border-radius: 0;
}

.intro-info .btn-style-1:hover::before {
  transform: scaleX(0);
}

.intro-info .btn-style-2 {
  color: #0A385C;
}

.intro-info .btn-style-2::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 101%;
  height: 101%;
  background: #0A385C;
  z-index: -1;
  transition: transform 0.5s;
  transition-timing-function: ease;
  transform-origin: 0 0;
  transition-timing-function: cubic-bezier(0.5, 1.6, 0.4, 0.7);
  transform: scaleX(0);
  border: 1px solid transparent;
  border-radius: 0;
}

.intro-info .btn-style-2:hover {
  color: #fff;
}

.intro-info .btn-style-2:hover::before {
  transform: scaleX(1);
}

.ripple-background {
  position: absolute;
  top: 0;
}

.ripple-background .circle {
  position: absolute;
  border-radius: 50%;
  background: white;
  animation: ripple 15s infinite;
  box-shadow: 0px 0px 1px 0px #0A385C;
  z-index: 1;
}

.ripple-background .small {
  width: 200px;
  height: 200px;
  left: -100px;
  bottom: -100px;
  background: #fdfdfd;
}

.ripple-background .medium {
  width: 400px;
  height: 400px;
  left: -200px;
  bottom: -200px;
}

.ripple-background .large {
  width: 600px;
  height: 600px;
  left: -300px;
  bottom: -300px;
}

.ripple-background .xlarge {
  width: 800px;
  height: 800px;
  left: -400px;
  bottom: -400px;
}

.ripple-background .xxlarge {
  width: 1000px;
  height: 1000px;
  left: -500px;
  bottom: -500px;
}

.ripple-background .shade1 {
  opacity: 0.2;
}

.ripple-background .shade2 {
  opacity: 0.5;
}

.ripple-background .shade3 {
  opacity: 0.7;
}

.ripple-background .shade4 {
  opacity: 0.8;
}

.ripple-background .shade5 {
  opacity: 0.9;
}

@keyframes ripple {
  0% {
    transform: scale(0.8);
  }

  50% {
    transform: scale(1.2);
  }

  100% {
    transform: scale(0.8);
  }
}


/* Intro bottom animation  */

.custom-shape-divider-bottom-1704265231 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg);
}

.custom-shape-divider-bottom-1704265231 svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 150px;
}

.custom-shape-divider-bottom-1704265231 .shape-fill {
  fill: #FFFFFF;
}

.waves {
  height: 80px;
  width: 100%;
  margin-top: -30px;
  z-index: 0;
  position: relative;
}

.wave1 use {
  -webkit-animation: move-forever1 10s linear infinite;
  animation: move-forever1 10s linear infinite;
  -webkit-animation-delay: -2s;
  animation-delay: -2s;
}

.wave2 use {
  -webkit-animation: move-forever2 8s linear infinite;
  animation: move-forever2 8s linear infinite;
  -webkit-animation-delay: -2s;
  animation-delay: -2s;
}

.wave3 use {
  -webkit-animation: move-forever3 6s linear infinite;
  animation: move-forever3 6s linear infinite;
  -webkit-animation-delay: -2s;
  animation-delay: -2s;
}

@-webkit-keyframes move-forever1 {
  0% {
    transform: translate(85px, 0%);
  }

  100% {
    transform: translate(-90px, 0%);
  }
}

@keyframes move-forever1 {
  0% {
    transform: translate(85px, 0%);
  }

  100% {
    transform: translate(-90px, 0%);
  }
}

@-webkit-keyframes move-forever2 {
  0% {
    transform: translate(-90px, 0%);
  }

  100% {
    transform: translate(85px, 0%);
  }
}

@keyframes move-forever2 {
  0% {
    transform: translate(-90px, 0%);
  }

  100% {
    transform: translate(85px, 0%);
  }
}

@-webkit-keyframes move-forever3 {
  0% {
    transform: translate(-90px, 0%);
  }

  100% {
    transform: translate(85px, 0%);
  }
}

@keyframes move-forever3 {
  0% {
    transform: translate(-90px, 0%);
  }

  100% {
    transform: translate(85px, 0%);
  }
}


/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/

/* Desktop Navigation */

.main-nav,
.main-nav * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.main-nav>ul>li {
  position: relative;
  white-space: nowrap;
  float: left;
}

.main-nav>ul>li:nth-child(n + 2) {
  margin-left: 25px;
}

.main-nav a {
  display: block;
  position: relative;
  color: #333;
  padding: 10px 0;
  transition: 0.3s;
  font-size: 14px;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
}

.main-nav a::before {
  content: "";
  position: absolute;
  bottom: -20px;
  left: auto;
  right: 0;
  height: 2px;
  width: 0;
  background: rgba(211, 34, 52, .8);
  transition: all 0.3s ease;
}

.header-scrolled .main-nav a::before {
  bottom: -10px;
}

.main-nav a:hover,
.main-nav .active>a,
.main-nav li:hover>a {
  color: rgba(211, 34, 52, 1);
  text-decoration: none;
}

.main-nav a:hover::before,
.main-nav .active>a::before,
.main-nav li:hover>a::before {
  width: 100%;
  left: 0;
  right: auto;
}

.main-nav .drop-down ul {
  display: block;
  position: absolute;
  left: 0;
  top: calc(100% + 30px);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  padding: 10px 0;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: ease all 0.3s;
}

.main-nav .drop-down:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.main-nav .drop-down li {
  min-width: 180px;
  position: relative;
}

.main-nav .drop-down ul a {
  padding: 10px 20px;
  font-size: 13px;
  color: #004289;
}

.main-nav .drop-down ul a:hover,
.main-nav .drop-down ul .active>a,
.main-nav .drop-down ul li:hover>a {
  color: #0A385C;
}

.main-nav .drop-down>a:after {
  content: "\f107";
  font-family: FontAwesome;
  padding-left: 10px;
}

.main-nav .drop-down .drop-down ul {
  top: 0;
  left: calc(100% - 30px);
}

.main-nav .drop-down .drop-down:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
}

.main-nav .drop-down .drop-down>a {
  padding-right: 35px;
}

.main-nav .drop-down .drop-down>a:after {
  content: "\f105";
  position: absolute;
  right: 15px;
}

/* Mobile Navigation */

.mobile-nav {
  position: fixed;
  top: 0;
  bottom: 0;
  z-index: 9999;
  overflow-y: auto;
  left: -260px;
  width: 260px;
  padding-top: 18px;
  background: rgba(19, 39, 57, 0.8);
  transition: 0.4s;
}

.mobile-nav * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-nav a {
  display: block;
  position: relative;
  color: #fff;
  padding: 10px 20px;
  font-weight: 500;
}

.mobile-nav a:hover,
.mobile-nav .active>a,
.mobile-nav li:hover>a {
  color: #74b5fc;
  text-decoration: none;
}

.mobile-nav .drop-down>a:after {
  content: "\f078";
  font-family: FontAwesome;
  padding-left: 10px;
  position: absolute;
  right: 15px;
}

.mobile-nav .active.drop-down>a:after {
  content: "\f077";
}

.mobile-nav .drop-down>a {
  padding-right: 35px;
}

.mobile-nav .drop-down ul {
  display: none;
  overflow: hidden;
}

.mobile-nav .drop-down li {
  padding-left: 20px;
}

.mobile-nav-toggle {
  z-index: 9998;
  border: 0;
  background: none;
  font-size: 24px;
  transition: all 0.4s;
  outline: none !important;
  line-height: 1;
  cursor: pointer;
  text-align: right;
}

.mobile-nav-toggle i {
  margin: 0;
  color: #004289;
}

.mobile-nav-overly {
  width: 100%;
  height: 100%;
  z-index: 9997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(19, 39, 57, 0.8);
  overflow: hidden;
  display: none;
}

.mobile-nav-active {
  overflow: hidden;
}

.mobile-nav-active .mobile-nav {
  left: 0;
}

.mobile-nav-active .mobile-nav-toggle i {
  color: #fff;
}

/*--------------------------------------------------------------
# Sections
--------------------------------------------------------------*/

/* Sections Header
--------------------------------*/

.section-header h3 {
  font-size: 36px;
  color: #283d50;
  text-align: center;
  font-weight: 500;
  position: relative;
}

.dark-bg .section-header h3 {
  color: #fff;
}

.section-header p {
  text-align: center;
  margin: auto;
  font-size: 15px;
  padding-bottom: 60px;
  color: #556877;
  width: 50%;
}

.dark-bg .section-header p {
  color: #FAF9F6;
}

/* Section with background
--------------------------------*/

.section-bg {
  background: #ecf5ff;
}

/* About Us Section
--------------------------------*/

#about {
  background: #fff;
  padding: 60px 0;
  overflow: hidden;
}

#about .about-container .background {
  margin: 20px 0;
  padding-left: 20px;
}

#about .about-container .content {
  background: #fff;
  padding-right: 20px;
}

#about .about-container .title {
  color: #333;
  font-weight: 700;
  font-size: 32px;
}

#about .about-container p {
  line-height: 26px;
  text-align: justify;
}

#about .about-container p:last-child {
  margin-bottom: 0;
}

#about .about-container .icon-box {
  background: #fff;
  background-size: cover;
  padding: 0 0 25px 0;
  overflow: hidden;
}

#about .about-container .icon-box .icon {
  float: left;
  background: #fff;
  width: 64px;
  height: 64px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  text-align: center;
  border-radius: 50%;
  border: 2px solid #0A385C;
  transition: all 0.3s ease-in-out;
}

#about .about-container .icon-box .icon i {
  color: #0A385C;
  font-size: 24px;
  transition: all 0.3s ease-in-out;
}

#about .about-container .icon-box:hover .icon {
  background: #0A385C;
}

#about .about-container .icon-box:hover .icon i {
  color: #fff;
}

#about .about-container .icon-box .title {
  margin-left: 80px;
  font-weight: 600;
  margin-bottom: 5px;
  font-size: 18px;
}

#about .about-container .icon-box .title a {
  color: #283d50;
}

#about .about-container .icon-box .description {
  margin-left: 80px;
  line-height: 24px;
  font-size: 14px;
}

#about .about-extra {
  padding-top: 60px;
}

#about .about-extra h4 {
  font-weight: 600;
  font-size: 24px;
}

.about-us-images {
  display: flex;
  justify-content: center;
  height: 375px;
}

.about-us-images img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.aboutUsBusinessImg,
.aboutUsBrandValueImg,
.aboutUsBusinessGrowthImg {
  display: none;
}

.FeaturesShowing .aboutUsMainImg {
  display: none;
}

.typeOfBusiness .aboutUsBusinessImg {
  display: block;
}

.brandValue .aboutUsBrandValueImg {
  display: block;
}

.businessGrowth .aboutUsBusinessGrowthImg {
  display: block;
}

.about-us-images img.aboutUsBusinessImg,
.about-us-images img.aboutUsBusinessGrowthImg {
  object-fit: cover;
}


/* Mission & Vision */

.mission-vision-content {
  position: relative;
  margin-top: 30px;
  padding: 20px;
}

.mission-vision-content:before {
  content: '';
  background-color: #0A385C;
  border-radius: 4px;
  position: absolute;
  bottom: -10px;
  left: -10px;
  top: -10px;
  right: -10px;
}

.mission-vision-content:after {
  background: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 0.2) 46%, rgba(0, 0, 0, 0.5) 48%, rgba(0, 0, 0, 0.6) 50%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.2) 51%, transparent 100%);
  bottom: -10px;
  content: '';
  left: 50%;
  position: absolute;
  top: -10px;
  transform: translate(-50%, 0);
  width: 48px;
  z-index: 1;
}

.mission-vision-wrapper {
  position: relative;
  display: flex;
  gap: 15px;
}

.mission-vision-wrapper::before,
.mission-vision-wrapper::after {
  background: #0A385C none repeat scroll 0 0;
  border-radius: 3px;
  box-shadow: 0 7px #0A385C, 0 14px #0A385C;
  content: "";
  height: 2px;
  left: 50%;
  position: absolute;
  top: 20%;
  transform: translateX(-50%);
  width: 35px;
  z-index: 2;
}

.mission-vision-wrapper::after {
  top: auto;
  bottom: 20%;
  box-shadow: 0 -7px #0A385C, 0 -14px #0A385C;
}

.single-objective-info {
  overflow: hidden;
  padding: 0 10px;
  flex: 1;
  background: #f6f6f6 none repeat scroll 0 0;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 15px 25px, rgba(0, 0, 0, 0.05) 0px 5px 10px;
  position: relative;
}

.single-objective-info.vision-objectives {
  background: #F2EDE7;
}

.single-objective-info::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 0;
  background: linear-gradient(225deg, #0A385C 50%, #aaa 50%, #ccc 56%, #fff 80%);
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.5);
  transition: all 0.4s ease;
  /* transition-timing-function: cubic-bezier(0.5, 1.6, 0.4, 0.7); */
}

.single-objective-info:last-child:hover::before {
  width: 70px;
  height: 70px;
}

.objective-info-inner {
  padding: 50px 30px;
}

.objective-title {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 30px;
  text-align: center;
  color: #777;
}

.objective-title span {
  display: inline-block;
  position: relative;
  margin: 0 10px;
}

.objective-title span::before,
.objective-title span::after {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #ddd;
  width: 100px;
  height: 1px;
}

.objective-title span::after {
  left: 110%;
}

.objective-title span::before {
  right: 110%;
}

.objective-info-inner svg,
.objective-info-inner img {
  width: 100%;
  height: 350px;
}

.objective-info-inner p {
  text-align: justify;
  margin-top: 20px;
  margin-bottom: 0;
  line-height: 1.7;
  font-size: 16px;
}

.bigProgressBar {
  animation: move 1s linear infinite alternate;
}

@keyframes move {
  50% {
    transform: translateX(1px);
  }

  80% {
    transform: translateX(-1px);
  }

  100% {
    transform: translateX(0px);
  }
}


.smallProgressBar {
  animation: progress 3s linear infinite backwards;
  transform-origin: center center;
  transform-box: fill-box;
}

@keyframes progress {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(170px);
  }
}

.flowerTob {
  animation: circle 7s linear infinite alternate;
  transform-origin: center center;
  transform-box: fill-box;
}

@keyframes circle {
  100% {
    transform: rotateY(360deg);
  }
}

.page-number {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translate(-50%);
  margin: 0;
  font-size: 14px;
}




/* Services Section
--------------------------------*/

#services {
  padding: 60px 0 40px 0;
  box-shadow: inset 0px 0px 12px 0px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.services-content {
  display: grid;
  grid-template-columns: 3fr 2fr 3fr;
  gap: 80px;
  margin-top: 25px;
}

#services .box {
  padding: 0;
  position: relative;
  margin-bottom: 30px;
  background: transparent;
  transition: all 0.3s ease-in-out;
  z-index: 1;
}

#services .box span {
  position: absolute;
  left: 0;
  top: 10px;
  font-size: 62px;
  color: rgba(0, 0, 0, 0.1);
  z-index: -1;
  line-height: 1;
  letter-spacing: 1px;
}

#services .right-services-options .box span {
  left: auto;
  right: 0;
}

.services-message-content-wrapper {
  position: relative;
}

.services-message-content {
  position: relative;
  width: 340px;
  height: 400px;
  background: #ecf5ff;
  border-radius: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  outline: 5px solid #fff;
  outline-offset: -5px;
}

.services-message-content::after,
.services-message-content::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  animation: animate 10s linear infinite;
  z-index: 1;
}

.services-message-content::before {
  background: conic-gradient(transparent, transparent, transparent, #0A385C);
}

.services-message-content::after {
  background: conic-gradient(transparent, transparent, transparent, rgba(211, 34, 52, 1));
  animation-delay: -5s;
}

@keyframes animate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.services-meesage-inner-content {
  position: absolute;
  z-index: 2;
  background: #ecf5ff;
  inset: 5px;
  border-radius: 60px;
  display: grid;
  align-content: center;
}

.services-meesage-inner-content h2 {
  margin: 0;
  text-align: center;
  font-size: 26px;
  line-height: 1.4;
  font-weight: 500;
  color: rgba(211, 34, 52, 1);
}

.services-meesage-inner-content h2 span {
  display: block;
  color: #0A385C;
}

#services .icon {
  position: absolute;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  z-index: 3;
  width: 60px;
  height: 60px;
  display: grid;
  place-content: center;
  box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.05);
}

#services .icon.softwareDevelopment {
  left: -15px;
  top: -5px;
}

#services .icon.cloudService {
  left: -25px;
  top: 165px;
}

#services .icon.iot {
  left: -10px;
  bottom: 35px;
}

#services .icon.mobileApp {
  right: -15px;
  top: -5px;
}

#services .icon.webSite {
  right: -25px;
  top: 165px;
}

#services .icon.uiUx {
  right: -10px;
  bottom: 35px;
}

#services .icon i {
  font-size: 38px;
  line-height: 1;
  transition: 0.5s;
  color: rgb(10 56 92 / 80%);
  text-shadow: 0.001px 0 0 rgb(10 56 92 / 50%), -0.001px 0 0 rgb(10 56 92 / 50%), 0 0.001px 0 rgb(10 56 92 / 50%), 0 -0.001px 0 rgb(10 56 92 / 50%);
}

#services .icon img {
  position: absolute;
  opacity: 0.2;
  width: 100%;
}

.icon.softwareDevelopment img {
  left: -65px;
  transform: scaleX(-1) rotate(145deg) translateY(30px);
}

.icon.cloudService img {
  left: -60px;
  transform: scale(-1) rotate(3deg) translate(0px, -20px);
}

.icon.iot img {
  left: -65px;
  bottom: 0;
  transform: scaleY(-1) rotate(-135deg) translate(0px, 0px);
}

.icon.mobileApp img {
  right: -65px;
  transform: rotate(145deg) translateY(30px);
}

.icon.webSite img {
  right: -58px;
  transform: scaleY(-1) rotate(6deg) translate(0px, -20px);
}

.icon.uiUx img {
  right: -65px;
  bottom: 0;
  transform: rotate(45deg) translate(0px, 0);
}

.left-services-options .single-service:nth-child(2n) {
  display: none;
}

#services .left-services-options .icon {
  display: none;
}

.right-services-options .single-service {
  text-align: right;
}

#services .box:hover .title a {
  color: #0A385C;
}

#services .description {
  font-size: 14px;
  margin-left: 40px;
  line-height: 24px;
  margin-bottom: 0;
}

#services .description {
  margin-left: 0;
  line-height: 1.8;
}

#services .title {
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 10px;
  margin-left: 0;
  color: #0A385C;
}


/* Technology Section */

#technology {
  background: url('../img/technology/bg.png');
  position: relative;
}

#technology .section-header {
  position: relative;
  z-index: 1;
}

#technology {
  padding: 60px 0;
  overflow: hidden;
}

.technology-list {
  display: grid;
  place-content: center;
  margin-bottom: 0;
  height: 600px;
  width: 100%;
  position: relative;
  perspective: 1000px;
  transform-style: preserve-3d;
  transform: translateY(-60px);
}

.asteroidImg {
  animation: asteroid 200s linear infinite;
  position: absolute;
  top: -160px;
  left: 150px;
  opacity: 0.5;
  z-index: -1;
}

@keyframes asteroid {
  0% {
    transform: rotate(0);
  }

  100% {
    transform: rotate(360deg);
  }
}

.single-technology {
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transform: translate(-50%, -50%) rotateX(-145deg) rotateY(180deg) rotateZ(180deg);
  z-index: 6;
  transform-style: preserve-3d;
}

.technology-2 {
  z-index: 5;
}

.technology-3 {
  z-index: 4;
}

.technology-4 {
  z-index: 3;
}

.technology-5 {
  z-index: 2;
}

.technology-6 {
  z-index: 1;
}

.technology-inner {
  width: 220px;
  height: 220px;
  position: relative;
  transform-origin: center;
  transform-box: fill-box;
  border-radius: 50%;
  transform-style: preserve-3d;
  animation: technology 15s linear infinite;
}

@keyframes technology {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.technology-1 h4 {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transform: translate(-50%, -50%) rotateX(-45deg) rotateY(0deg) rotateZ(0deg);
  letter-spacing: 0.65px;
  font-size: 20px;
  text-align: center;
  display: inline-flex;
  font-weight: 600;
  margin: 0;
  color: #fff;
  background: linear-gradient(45deg, rgba(211, 34, 52, 1), #fff, rgba(211, 34, 52, 1), #DCE6FE);
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  background-size: 400% 400%;
  animation: gradient 15s ease infinite;
  line-height: 1.4;
}

.single-technology.technology-1::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: url('../img/technology/sun.png') no-repeat center center / cover;
  opacity: 0.5;
}

@keyframes gradient {
  0% {
    background-position: 0 0;
  }

  25% {
    background-position: 100% 0;
  }

  50% {
    background-position: 100% 100%;
  }

  75% {
    background-position: 0 100%;
  }

  100% {
    background-position: 0 0;
  }
}

.technology-2 .technology-inner {
  width: 300px;
  height: 300px;
  animation-delay: -1s;
  animation-duration: 20s;
}

.technology-3 .technology-inner {
  width: 400px;
  height: 400px;
  animation-delay: -1.5s;
  animation-duration: 25s;
}

.technology-4 .technology-inner {
  width: 500px;
  height: 500px;
  animation-delay: -2s;
  animation-duration: 30s;
}

.technology-5 .technology-inner {
  width: 600px;
  height: 600px;
  animation-delay: -2.5s;
  animation-duration: 35s;
}

.technology-6 .technology-inner {
  width: 700px;
  height: 700px;
  animation-delay: -3s;
  animation-duration: 40s;
}

.technology-inner img {
  width: 40px;
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translate(-50%, -50%);
  transform: translate(-50%, -50%) rotateX(135deg) rotateY(190deg) rotateZ(190deg);
  animation: counter-rotate 15s linear infinite;
  transform-origin: center;
  transform-style: preserve-3d;
}

.technology-1 .technology-inner img {
  width: 30px;
}

.technology-2 .technology-inner img {
  top: -20px;
  animation-delay: -1s;
  animation-duration: 20s;
}

.technology-2 .technology-inner .img2 {
  top: auto;
  bottom: -17px;
}

.technology-3 .technology-inner img {
  top: -10px;
  animation-delay: -1.5s;
  animation-duration: 25s;
}

.technology-3 .technology-inner .img2 {
  top: auto;
  bottom: -10px;
}

.technology-4 .technology-inner img {
  animation-delay: -2s;
  animation-duration: 30s;
}

.technology-4 .technology-inner .img2 {
  top: auto;
  bottom: -10px;
}

.technology-5 .technology-inner img {
  animation-delay: -2.5s;
  animation-duration: 35s;
  height: 30px;
  width: auto;
}

.technology-5 .technology-inner .img2 {
  top: auto;
  bottom: -15px;
}

.technology-6 .technology-inner img {
  top: -20px;
  animation-delay: -3s;
  animation-duration: 40s;
}

.technology-6 .technology-inner .img2 {
  top: auto;
  bottom: -15px;
}

.technology-inner .dot {
  position: absolute;
  left: 50%;
  transform: translate(-50%);
  bottom: -6px;
  width: 12px;
  height: 12px;
  background: conic-gradient(rgba(211, 34, 52, 1), #004289);
  border-radius: 50%;
}

.technology-2 .technology-inner .dot {
  background: #0A385C;
}

@keyframes counter-rotate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(-360deg);
    /* Reverse the rotation */
  }
}

.star {
  position: absolute;
  background-color: #f0f0f0;
  border-radius: 50%;
  animation: glow 1s linear infinite;
  animation-delay: 0.005s;
}

@keyframes glow {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0.5;
  }
}



/* Why choose us section */

#why-us {
  padding: 60px 0;
  background: #0A385C;
  overflow: hidden;
}

#why-us .section-header h3,
#why-us .section-header p {
  color: #fff;
}

#why-us .card {
  background: transparent;
  border: medium none;
  border-radius: 10px;
  margin: 0 15px;
  padding: 15px 0;
  text-align: center;
  color: #fff;
  transition: 0.3s ease-in-out;
  height: 100%;
  /* filter: blur(10px); */
  backdrop-filter: blur(10px);
  box-shadow: inset 0px 0px 15px rgba(255, 255, 255, .5);
}

#why-us .card:hover {
  transform: translateY(-10px);
}

#why-us .card>i {
  font-size: 48px;
  padding-top: 15px;
  color: #bfddfe;
}

#why-us .card h5 {
  font-size: 22px;
  font-weight: 600;
}

#why-us .card p {
  font-size: 15px;
  color: #d8eafe;
}

#why-us .card .readmore {
  color: #fff;
  font-weight: 600;
  display: inline-flex;
  transition: 0.3s ease-in-out;
  align-items: center;
  gap: 5px;
}

#why-us .card .readmore:hover {
  gap: 10px;
}

#why-us .counters {
  padding-top: 40px;
}

#why-us .counters span {
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
  font-size: 48px;
  color: #fff;
}

#why-us .counters p {
  padding: 0;
  margin: 0 0 20px 0;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  color: #cce5ff;
}

.dots {
  overflow: hidden;
  position: relative;
}

.dots canvas {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

/* Portfolio Section
--------------------------------*/

#portfolio {
  padding: 60px 0;
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.1);
}

#portfolio-flters {
  padding: 0;
  margin: 5px 0 35px 0;
  list-style: none;
  text-align: center;
}

#portfolio-flters li {
  cursor: pointer;
  margin: 15px 15px 15px 0;
  display: inline-block;
  padding: 6px 25px;
  font-size: 14px;
  line-height: 20px;
  color: #0A385C;
  border-radius: 50px;
  text-transform: capitalize;
  background: #ecf5ff;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
  overflow: hidden;
}

#portfolio-flters li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 101%;
  height: 101%;
  background: #0A385C;
  z-index: -1;
  transition: transform 0.5s;
  transition-timing-function: ease;
  transform-origin: 0 0;
  transition-timing-function: cubic-bezier(0.5, 1.6, 0.4, 0.7);
  transform: scaleX(0);
  border: 1px solid transparent;
  border-radius: 0;
}

#portfolio-flters li:hover,
#portfolio-flters li.filter-active {
  color: #fff;
}

#portfolio-flters li:hover::before,
#portfolio-flters li.filter-active::before {
  transform: scaleX(1);
}

#portfolio-flters li:last-child {
  margin-right: 0;
}

.portfolio-item {
  position: relative;
  margin-bottom: 30px;
}

.portfolio-wrap {
  overflow: hidden;
  position: relative;
  border-radius: 6px;
  margin: 0;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  padding: 3px;
  transition: all 0.3s ease;
}

.portfolio-img {
  position: relative;
  background: #fff;
  height: 200px;
}

.portfolio-img::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
  transition: all 0.3s ease;
}

.portfolio-wrap:hover .portfolio-img::after {
  background: rgba(0, 0, 0, 0.2);
}

.portfolio-img img {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  z-index: 1;
  border-radius: 2px;
}

.portfolio-wrap::before {
  background: radial-gradient(300px circle at var(--x) var(--y), #c33764 0, #6171fe 80%, transparent 100%);
  border-radius: 6px;
  bottom: -1px;
  contain: size;
  content: "";
  height: calc(100% + 2px);
  left: -1px;
  pointer-events: none;
  position: absolute;
  right: -1px;
  top: -1px;
  transition: background .2s;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  width: calc(100% + 2px);
  will-change: background;
  z-index: -1;
}

.portfolio-wrap .portfolio-info {
  text-align: center;
  background: #fff;
  padding: 15px 0;
}

.portfolio-wrap .portfolio-info h4 {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 5px;
  padding-bottom: 0;
}

.portfolio-wrap .portfolio-info h4 a {
  color: #0A385C;
}

.portfolio-wrap .portfolio-info h4 a:hover {
  color: rgba(211, 34, 52, 1);
}

.portfolio-wrap .portfolio-info p {
  padding: 0;
  margin-bottom: 7px;
  color: #555;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 1.5px;
}

.portfolio-wrap .portfolio-info .link-preview,
.portfolio-wrap .portfolio-info .link-details {
  display: inline-block;
  text-align: center;
  width: 30px;
  height: 29px;
  background: #0A385C;
  border-radius: 50%;
  line-height: 28px;
}

.portfolio-wrap .portfolio-info .link-preview i,
.portfolio-wrap .portfolio-info .link-details i {
  padding-top: 0;
  font-size: 14px;
  color: #fff;
}

.portfolio-wrap .portfolio-info .link-preview:hover,
.portfolio-wrap .portfolio-info .link-details:hover {
  background: rgba(211, 34, 52, 1);
}

.portfolio-wrap .portfolio-info .link-preview:hover i,
.portfolio-wrap .portfolio-info .link-details:hover i {
  color: #fff;
}

.portfolio-action-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}


/* Message from chairman & director */

.chairman-director-msg-section {
  background: #0A385C;
  padding: 60px 0 80px;
  overflow: hidden;
}

.chairman-director-msg-section .section-header {
  margin-bottom: 65px;
}

.chairman-director-msg-section .section-header h3 {
  color: #fff;
}

.chairman-director-msg-wrapper {
  display: flex;
  gap: 30px;
}

.chairman-director-img {
  flex: 1;
}

.chairman-director-img img {
  border-radius: 50%;
  border: 10px solid rgba(255, 255, 255, .4);
  width: 300px;
  height: 300px;
  object-fit: cover;
  object-position: top;
}

.chairman-director-msg {
  max-width: 400px;
  background: rgba(10, 56, 92, .3);
  height: fit-content;
  padding: 15px;
  border-radius: 10px;
  position: relative;
  backdrop-filter: blur(10px);
  box-shadow: inset 0px 0px 15px rgba(255, 255, 255, .5);
  color: #ddd;
  position: relative;
  top: -15px;
}

.director-msg .chairman-director-msg {
  top: 15px;
}

.chairman-director-msg::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -20px;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border-color: transparent rgba(255, 255, 255, .3) transparent transparent;
  border-width: 10px;
  border-style: solid;
}

.director-msg {
  flex-direction: row-reverse;
  align-items: center;
}

.director-msg .chairman-director-msg::before {
  left: auto;
  right: -20px;
  border-color: transparent transparent transparent rgba(255, 255, 255, .3);
}

.chairman-director-msg p {
  font-size: 14px;
  font-style: italic;
  letter-spacing: 0.65px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.chairman-director-msg h6 {
  margin-bottom: 0;
  font-size: 18px;
  letter-spacing: 0.65px;
  font-weight: 500;
}

.chairman-director-msg p.designation {
  margin-bottom: 0;
}


/* Testimonials Section
--------------------------------*/

#testimonials {
  padding: 60px 0;
  box-shadow: inset 0px 0px 12px 0px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

#testimonials .section-header {
  margin-bottom: 40px;
}

#testimonials .testimonial-item .testimonial-img {
  width: 120px;
  border-radius: 50%;
  border: 4px solid #fff;
  float: left;
}

#testimonials .testimonial-item h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #333;
  margin-left: 140px;
}

#testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #333;
  margin: 0 0 15px 0;
  margin-left: 140px;
}

#testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 0 15px 140px;
  color: #333;
  margin-bottom: 0;
}

#testimonials .owl-nav,
#testimonials .owl-dots {
  margin-top: 5px;
  text-align: center;
}

#testimonials .owl-dot {
  display: inline-block;
  margin: 0 5px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ddd;
}

#testimonials .owl-dot.active {
  background-color: #0A385C;
}

/* Team Section
--------------------------------*/

#team {
  background: #fff;
  padding: 60px 0;
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

#team .member {
  text-align: center;
  position: relative;
  overflow: hidden;
}

.member-img {
  position: relative;
}

.member-img::before {
  border-right: 40vh solid #fff;
  border-top: 60px solid transparent;
  bottom: 0;
  content: "";
  height: 0;
  position: absolute;
  right: 0;
  width: 0;
  z-index: 0;
  transition: all .3s ease 0.3s;
  border-radius: 4px 4px 0 0;
}

#team .member:hover .member-img::before {
  border-top: 0 solid transparent;
}

.member-img::after {
  background: rgba(0, 0, 0, 0.5);
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 0;
  opacity: 0;
  transition: all .5s ease 0.1s;
  border-radius: 4px 4px 0 0;
}

#team .member:hover .member-img::after {
  opacity: 1;
  width: 100%;
  height: 100%;
  right: 0;
  bottom: 0;
}

#team .member img {
  object-fit: cover;
  object-position: top;
  background: rgba(0, 0, 0, 0.05);
  border-radius: 4px 4px 0 0;
}

#team .member .member-info {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  transition: 0.2s;
  padding: 15px 0;
  border-bottom: 2px solid rgba(0, 62, 128, 0.7);
}

#team .member .member-info-content {
  transition: margin 0.2s;
}

#team .member:hover .member-info-content {
  margin-top: 0;
  transition: margin 0.4s;
}

#team .member h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 18px;
  color: #333;
}

#team .member span {
  font-style: italic;
  display: block;
  font-size: 14px;
  color: rgba(0, 62, 128, 0.7);
}

#team .member .social {
  text-align: center;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  z-index: 2;
  opacity: 0;
  margin-bottom: 0;
  transition: all 0.3s ease 0s;
}

#team .member:hover .social {
  opacity: 1;
}

#team .member .social a {
  transition: all 0.3s ease 0.3s;
  color: #fff;
  position: relative;
  top: -15px;
}

#team .member:hover .social a {
  top: 0;
}

#team .member .social a.twitter {
  transition: all 0.1s ease 0.3s;
}

#team .member .social a.facebook {
  transition: all 0.3s ease 0.4s;
}

#team .member .social a.googlePLus {
  transition: all 0.4s ease 0.5s;
}

#team .member .social a.linkedin {
  transition: all 0.5s ease 0.6s;
}

#team .member .social a i {
  transition: all 0.3s ease;
  font-size: 18px;
  margin: 0 5px;
}

#team .member .social a:hover i {
  color: rgba(211, 34, 52, 1);
}



/* Clients Section
--------------------------------*/

#clients {
  padding: 60px 0;
  box-shadow: inset 0px 0px 12px 0px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

#clients .clients-wrap {
  margin-bottom: 30px;
}

.col-lg-3:nth-child(n + 5) .client-logo {
  margin-top: 30px;
}

#clients .client-logo {
  padding: 64px;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-right: 1px solid #d6eaff;
  border-bottom: 1px solid #d6eaff;
  overflow: hidden;
  background: #fff;
  height: 160px;
  transition: all 0.3s ease-in-out;
}

#clients .client-logo:hover {
  transform: scale(.8);
}

#clients .client-logo:hover img {
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}

#clients img {
  transition: all 0.4s ease-in-out 0s;
}

/* Contact Section
--------------------------------*/

#contact {
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.1);
  padding: 60px 0;
  overflow: hidden;
}

#contact .section-header {
  padding-bottom: 30px;
}

#contact .contact-about h3 {
  font-size: 36px;
  margin: 0 0 10px 0;
  padding: 0;
  line-height: 1;
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #0A385C;
}

#contact .contact-about p {
  font-size: 14px;
  line-height: 24px;
  font-family: "Montserrat", sans-serif;
  color: #888;
}

#contact .social-links {
  padding-bottom: 20px;
}

#contact .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #fff;
  color: #0A385C;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
  border: 1px solid #0A385C;
}

#contact .social-links a:hover {
  background: #0A385C;
  color: #fff;
}

#contact .info {
  color: #283d50;
}

#contact .info i {
  font-size: 32px;
  color: #0A385C;
  float: left;
  line-height: 1;
}

#contact .info p {
  padding: 0 0 10px 36px;
  line-height: 28px;
  font-size: 14px;
}

#contact .form #sendmessage {
  color: #0A385C;
  border: 1px solid #0A385C;
  display: none;
  text-align: center;
  padding: 15px;
  font-weight: 600;
  margin-bottom: 15px;
}

#contact .form #errormessage {
  color: red;
  display: none;
  border: 1px solid red;
  text-align: center;
  padding: 15px;
  font-weight: 600;
  margin-bottom: 15px;
}

#contact .form #sendmessage.show,
#contact .form #errormessage.show,
#contact .form .show {
  display: block;
}

#contact .form .validation {
  color: red;
  display: none;
  margin: 0 0 20px;
  font-weight: 400;
  font-size: 13px;
}

#contact .form input,
#contact .form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
}

#contact .form input,
#contact .form textarea {
  border-radius: 4px;
}

#contact .form input:focus,
#contact .form textarea:focus {
  border-color: #0A385C;
}

.form .submit-btn {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 32px;
  border-radius: 50px;
  transition: 0.5s;
  color: #fff;
  position: relative;
  overflow: hidden;
  border: 1px solid transparent;
  background: transparent;
}

.form .submit-btn::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 101%;
  height: 101%;
  background: #0A385C;
  z-index: -1;
  transition: transform 0.5s;
  transition-timing-function: ease;
  transform-origin: 0 0;
  transition-timing-function: cubic-bezier(0.5, 1.6, 0.4, 0.7);
  transform: scaleX(1);
  /* border: 1px solid #0A385C; */
  border-radius: 0;
}

.form .submit-btn:hover {
  color: #0A385C;
  border-color: #0A385C;
}

.form .submit-btn:hover::before {
  transform: scaleX(0);
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

#footer {
  color: #eee;
  font-size: 14px;
}

.footer-logo {
  margin-bottom: 15px;
  display: block;
  margin-left: -3px;
}

#footer .footer-top {
  background: rgba(10, 56, 92, .9);
  padding: 60px 0 30px 0;
  position: relative;
}


.footer-bottom {
  background: rgba(10, 56, 92, 1);
}

#footer .footer-top .footer-info {
  margin-bottom: 30px;
}

#footer .footer-top .footer-info h3 {
  font-size: 34px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-family: "Montserrat", sans-serif;
  color: #fff;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
}

#footer .footer-top .footer-info p {
  font-size: 13px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Montserrat", sans-serif;
  color: #ecf5ff;
}

#footer .footer-top .social-links a {
  font-size: 16px;
  display: inline-flex;
  background: #0A385C;
  color: #fff;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
  align-items: center;
  justify-content: center;
}

#footer .footer-top .social-links a:hover {
  background: rgba(211, 34, 52, 1);
  color: #fff;
}

#footer .footer-top h4 {
  font-size: 14px;
  font-weight: bold;
  color: #fff;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 10px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul li {
  padding: 8px 0;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #ecf5ff;
}

#footer .footer-top .footer-links ul a:hover {
  color: #74b5fc;
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top .footer-contact p {
  line-height: 26px;
}

#footer .footer-top .footer-newsletter {
  margin-bottom: 30px;
}

#footer .footer-top .footer-newsletter input[type="email"] {
  border: 0;
  padding: 10px 10px 10px 15px;
  width: 65%;
  border-radius: 30px 0 0 30px;
}

#footer .footer-top .footer-newsletter input[type="email"]:focus {
  border: medium none;
  box-shadow: none;
  outline: none;
}

#footer .footer-top .footer-newsletter input[type="submit"] {
  background: #0A385C;
  border: 0;
  width: 35%;
  padding: 10px 0;
  text-align: center;
  color: #fff;
  transition: 0.3s;
  cursor: pointer;
  border-radius: 0 30px 30px 0;
}

#footer .copyright {
  text-align: center;
  padding: 20px 0;
}

#footer .credits {
  text-align: center;
  font-size: 13px;
  color: #f1f7ff;
}

#footer .credits a {
  color: #bfddfe;
}

#footer .credits a:hover {
  color: #f1f7ff;
}

/*--------------------------------------------------------------
# Responsive Media Queries
--------------------------------------------------------------*/

@media (max-width: 1199.98px) {
  .services-content {
    grid-template-columns: 1fr;
  }
  .services-message-content-wrapper,
  .right-services-options {
    display: none;
  }
  .left-services-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  .left-services-options .single-service {
    margin-bottom: 0;
    padding: 20px 15px 20px 60px;
    background: #fff;
    overflow: hidden;
    position: relative;
  }
  .left-services-options .single-service:nth-child(2n) {
    display: block;
  }
  #services .left-services-options .icon {
    display: grid;
    left: -5px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    box-shadow: none;
    width: auto;
    height: auto;
  }
  #services .icon i {
    font-size: 48px;
    opacity: 0.7;
  }
  #services .box {
    margin-bottom: 0;
    padding: 0;
    position: unset;
  }
  #services .box span {
    display: none;
  }

  #header .logo img {
    max-height: 24px;
    margin: 0;
  }

}

@media (min-width: 992px) and (max-width: 1199px) {
  .section-header h3 {
    font-size: 32px;
  }

  .intro-img img {
    height: 400px;
  }

  .intro-img::before,
  .intro-img::after {
    height: 440px;
  }

  .chairman-director-msg-wrapper {
    align-items: center;
    justify-content: center;
  }

  .chairman-director-img {
    flex: 0;
  }

  #contact .info p {
    margin-bottom: 0;
  }
}

@media (min-width: 992px) {
  #testimonials .testimonial-item p {
    width: 80%;
  }
}


@media (max-width: 991.98px) {
  #header {
    height: auto;
    padding: 0;
  }

  #header.header-scrolled, #header.header-pages {
    padding: 0;
  }

  #header .logo h1 {
    font-size: 28px;
    padding: 8px 0;
  }

  #intro {
    padding: 140px 0 60px 0;
  }

  #intro .intro-img {
    width: 80%;
    float: none;
    margin: 0 auto 25px auto;
  }

  #intro .intro-info {
    width: 80%;
    float: none;
    margin: auto;
    text-align: center;
  }

  #why-us .card {
    margin: 0;
  }

  .section-header h3 {
    font-size: 28px;
  }

  #intro {
    padding: 0;
    margin-top: 60px;
  }

  /* #intro .row {
    flex-direction: column-reverse;
  } */

  /* #intro .intro-img {
    width: 100%;
  } */

  .intro-img img {
    height: auto;
  }

  .intro-img::before,
  .intro-img::after {
    height: calc(100% + 25px);
    top: -10px;
    width: calc(100% + 25px);
  }

  .intro-img::before {
    left: -20px;
  }

  .intro-img::after {
    right: -15px;
  }

  .action-btns {
    justify-content: center;
  }

  #intro .intro-info .btn-get-started,
  #intro .intro-info .btn-style-2 {
    padding: 8px 25px;
    margin: 0;
  }

  #intro {
    padding: 70px 0 0;
    margin-top: 60px;
    height: auto;
  }

  #intro .intro-info {
    padding: 20px 0 45px;
  }

  .mission-vision-wrapper {
    flex-direction: column;
    min-height: 780px;
    perspective: 1000px;
    transform-style: preserve-3d;
  }

  .mission-vision-wrapper::before,
  .mission-vision-wrapper::after,
  .mission-vision-content:after {
    display: none;
  }

  .single-objective-info {
    padding: 0;
  }

  .single-objective-info {
    position: absolute;
    height: 100%;
    transition: all 1s ease;
    transform-style: preserve-3d;
    transform-origin: left;       
    perspective: 1000px;
  }

  .single-objective-info:first-child {
    z-index: 1;
  }

  .objective-info-inner {
    padding: 30px 20px;
    height: 100%;
  }

  .page-number {
    bottom: 10px;
  }

  .objective-title {
    margin-bottom: 20px;
    font-size: 20px;
  }

  .single-objective-info::before {
    width: 70px;
    height: 70px;
    background: linear-gradient(225deg, transparent 50%, #aaa 50%, #ccc 56%, #fff 80%);
    z-index: 2;
    transition: all 0.3s ease;
  }
  .single-objective-info:last-child::before {
    display: none;
  }

  .removerPageBreaker.single-objective-info::before {
    width: 0;
    height: 0;
  }

  .objective-info-inner p {
    margin-top: 15px;
    line-height: 1.6;
    font-size: 14px;
    letter-spacing: 0.5px;
  }

  .mission-vision-content {
    margin-top: 20px;
    padding: 10px;
  }

  .flip.single-objective-info {
    transform: rotateX(0deg) rotateY(-90deg) rotateZ(0deg);
  }

  .pageChange {
    position: absolute;
    right: 0;
    top: 0;
    width:70px;
    height: 70px;
    z-index: 2;
  }

  .header-wrapper {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: space-between;
    padding: 17px 0;
  }

}

@media (min-width: 768px) and (max-width: 991.98px) {
  #intro .intro-img {
    width: 100%;
    text-align: center;
  }

  #intro {
    padding: 70px 0 0;
    margin-top: 60px;
    height: auto;
  }

  #intro .row {
    flex-direction: column-reverse;
    height: auto;
  }

  #intro .intro-img {
    width: 500px;
    text-align: center;
  }

  #intro .intro-info h2 {
    margin-bottom: 30px;
    font-size: 42px;
  }

  #intro .intro-info {
    padding-bottom: 45px;
  }

  .contactForm .row .form-group:last-child {
    margin-top: 15px;
  }

  .col-lg-3:nth-child(n + 4) .client-logo {
    margin-top: 30px;
  }
}

@media (max-width: 768px) {
  .back-to-top {
    bottom: 15px;
  }
}

@media (max-width: 767.98px) {
  #intro .intro-info {
    width: 100%;
    padding: 0;
  }

  #intro .row {
    place-content: center;
  }

  #intro {
    padding: 0;
    margin-top: 60px;
    height: 60vh;
  }

  #intro .intro-img {
    display: none;
  }


  #intro .intro-info h2 {
    font-size: 34px;
    margin-bottom: 30px;
  }

  .section-header h3 {
    font-size: 26px;
    margin-bottom: 10px;
  }

  .section-header p {
    width: 100%;
    font-size: 14px;
    padding-bottom: 30px;
    letter-spacing: 0.5px;
    color: #000;
  }

  #about .about-container .content {
    padding-right: 15px;
  }

  #about .about-container p {
    line-height: 24px;
    font-size: 14px;
    color: #000;
  }

  #about .about-container .icon-box {
    padding: 0 0 20px 0;
  }

  #about .about-container .icon-box .icon {
    width: 58px;
    height: 58px;
  }

  #about .about-container .icon-box .icon i {
    font-size: 20px;
  }

  #about .about-container .icon-box .title {
    margin-left: 75px;
    font-size: 16px;
  }

  #about .about-container .icon-box .description {
    margin-left: 75px;
  }

  #services .title {
    font-size: 16px;
    margin-bottom: 7px;
  }

  .left-services-options .single-service {
    padding: 15px 15px 15px 55px;
  }

  #services .icon i {
    font-size: 44px;
  }














  #testimonials .testimonial-item {
    text-align: center;
  }

  #testimonials .testimonial-item .testimonial-img {
    float: none;
    margin: auto;
  }

  #testimonials .testimonial-item h3,
  #testimonials .testimonial-item h4,
  #testimonials .testimonial-item p {
    margin-left: 0;
  }

  .chairman-director-msg-section {
    padding: 50px 0 60px;
  }

  .chairman-director-msg-section .section-header {
    margin-bottom: 45px;
  }

  .chairman-director-msg-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .chairman-director-img img {
    width: 250px;
    height: 250px;
  }

  .chairman-director-msg {
    top: -10px;
  }

  .chairman-director-msg::before {
    left: 50%;
    top: -20px;
    transform: translateX(-50%);
    border-color: transparent transparent rgba(255, 255, 255, .3) transparent;
  }

  .director-msg {
    flex-direction: column;
    margin-top: 35px;
  }

  .director-msg .chairman-director-msg {
    top: -10px;
  }

  .director-msg .chairman-director-msg::before {
    left: 50%;
    right: auto;
    border-color: transparent transparent rgba(255, 255, 255, .3) transparent;
  }

  .contactForm .row .form-group:last-child {
    margin-top: 15px;
  }

  .footer-newsletter form {
    display: flex;
    width: 90%;
    max-width: 400px;
  }

  #footer .footer-top .footer-newsletter input[type="email"] {
    width: auto;
    flex: 1;
  }

  #footer .footer-top .footer-newsletter input[type="submit"] {
    width: auto;
    padding: 10px 20px;
  }

  .left-services-options {
    grid-template-columns: repeat(1, 1fr);
  }

  .asteroidImg {
    top: 0;
    left: 0;
    object-fit: contain;
    width: 100%;
    height: 100%;
    z-index: 2;
  }

  .technology-list {
    height: 450px;
    transform: translateY(-50px) scale(.8);
  }
  .single-technology {
    border: 1px solid rgba(255, 255, 255, 0.2);
  }
  .technology-inner {
    width: 200px;
    height: 200px;
  }
  .technology-inner img {
    width: 35px;
  }
  .technology-1 .technology-inner img {
    width: 25px;
    z-index: 3;
  }
  .technology-5 .technology-inner img {
    height: 25px;
    width: auto;
  }
  .technology-6 .technology-inner img {
    width: 30px;
  }
  .technology-2 .technology-inner {
    width: 280px;
    height: 280px;
  }
  .technology-3 .technology-inner {
    width: 380px;
    height: 380px;
  }
  .technology-4 .technology-inner {
    width: 480px;
    height: 480px;
  }
  .technology-5 .technology-inner {
    width: 580px;
    height: 580px;
  }
  .technology-6 .technology-inner {
    width: 680px;
    height: 680px;
  }
  .single-technology.technology-1::before {
    top: 50%;
    left: 50%;
    width: 90%;
    height: 90%;
    transform: translate(-50%, -50%);
  }
  .technology-1 h4 {
    font-size: 22px;
  } 

  #about .about-container .background {
    margin: 0;
    padding-left: 0;
  }




}


@media (min-width: 576px) and (max-width: 767.98px) {
  .col-lg-3:nth-child(n + 3) .client-logo {
    margin-top: 30px;
  }

  #contact .info p {
    margin-bottom: 10px;
  }

  #team .member {
    border-radius: 0;
  }
}

@media (max-width: 575.98px) {

  .action-btns {
    flex-direction: column;
    justify-content: center;
  }
  #intro .intro-info .btn-style-2 {
    margin: 0;
  }

  .section-header h3 {
    font-size: 24px;
  }

  #why-us .card>i {
    font-size: 32px;
    padding-top: 10px;
  }

  #why-us .card-body {
    padding-bottom: 7px;
  }

  #why-us .card h5 {
    font-size: 20px;
    line-height: 1.5;
  }

  #why-us .card p {
    font-size: 14px;
  }

  #why-us .counters {
    padding-top: 20px;
  }

  #technology .box {
    margin: 0 10px 30px 10px;
  }

  #why-us .counters span {
    font-size: 38px;
  }

  #why-us .counters .col-6:nth-child(n + 3) p {
    margin: 0;
  }

  #team .member .member-info {
    padding: 10px 0;
  }

  .member-img::before {
    border-right: 20vh solid #fff;
  }

  #team .member h4 {
    font-size: 16px;
  }

  #team .member img {
    width: auto;
  }

  #clients .client-logo {
    padding: 15px;
    height: 140px;
  }

  .col-lg-3:nth-child(n + 3) .client-logo {
    margin-top: 25px;
  }

  .contactForm {
    margin-top: 10px;
  }

  #contact .info p {
    margin-bottom: 15px;
  }

  .progress-wrap {
    bottom: 39px;
  }

  #clients img {
    width: 150px;
  }

  .objective-info-inner svg, .objective-info-inner img {
    height: 280px;
  }

  .mission-vision-wrapper {
    min-height: 640px;
  }

  .objective-info-inner {
    padding: 25px 20px;
  }

  .objective-title {
    margin-bottom: 0px;
    font-size: 18px;
  }

  .page-number {
    bottom: 5px;
    color: #777;
  }

  .objective-info-inner p {
    margin-top: 10px;
    line-height: 1.5;
  }

  #header .logo img {
    max-height: 20px;
  }







}





