@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap");
* {
  box-sizing: border-box;
  outline: none;
}
html {
  scroll-behavior: smooth;
}
body {
  padding: 0;
  margin: 0;
  font-family: "Epilogue", sans-serif;
  color: #333;
  position: relative;
}
.bebas-font {
  font-family: "Bebas Neue", sans-serif;
}
.container {
  padding: 0 90px;
  width: 100%;
}
.row {
  display: flex;
}
.justify-content-space-between {
  justify-content: space-between;
}
.text-center {
  text-align: center;
}
.color-white {
  color: #ffffff;
}
.pad-tb80 {
  padding-top: 80px;
  padding-bottom: 80px;
}
.marg-t0 {
  margin-top: 0 !important;
}
.marg-b0 {
  margin-bottom: 0 !important;
}
.logo {
  position: relative;
  top: 2px;
}
.logo .default-logo {
  display: none;
}
header.active {
  top: 0;
  background-color: #ededed;
  transition: 0.3s ease;
  position: fixed;
  z-index: 9;
}
header.active .logo .white-logo {
  display: none;
}
header.active .logo .default-logo {
  display: block;
}

/* Navigation Styles */
.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
nav {
  position: relative;
}
header.dark nav {
  background-color: rgba(255, 255, 255, 0.5);
}
header.light nav {
  background-color: rgba(0, 0, 0, 0.5);
}

header.active ul.main-nav > li > a {
  color: #333;
}

ul.main-nav {
  list-style-type: none;
  padding: 0px;
  font-size: 0px;
  max-width: 1000px;
  margin: 0 auto;
}

ul.main-nav > li {
  display: inline-block;
  padding: 0;
}

ul.main-nav > li > a {
  display: block;
  padding: 20px 30px;
  position: relative;
  color: #fff;
  font-size: 15px;
  font-weight: 400;
  box-sizing: border-box;
  text-decoration: none;
  line-height: 1.43;
}

ul.main-nav > li:hover {
  background-color: #f9f9f9;
}
ul.main-nav > li:hover > a {
  color: #333;
  font-weight: 400;
}

ul.main-nav > li ul.sub-menu-lists {
  margin: 0px;
  padding: 0px;
  list-style-type: none;
  display: block;
}

ul.main-nav > li ul.sub-menu-lists > li {
  padding: 2px 0;
}

ul.main-nav > li ul.sub-menu-lists > li > a {
  font-size: 14px;
  width: 100%;
  padding: 12px 15px;
  text-decoration: none;
  /*    background-color: #f8f8f8;*/
  border-radius: 6px;
  display: flex;
  align-items: center;
  column-gap: 20px;
}
ul.main-nav > li ul.sub-menu-lists > li:hover {
  background-color: #f8f8f8;
  border-radius: 10px;
}

.ic {
  position: fixed;
  cursor: pointer;
  display: inline-block;
  right: 25px;
  width: 32px;
  height: 24px;
  text-align: center;
  top: 0px;
  outline: none;
}

.ic.close {
  opacity: 0;
  font-size: 0px;
  font-weight: 300;
  color: #333;
  top: 8px;
  height: 40px;
  display: block;
  outline: none;
}

/* Menu Icons for Devices*/
.ic.menu {
  top: 17px;
  z-index: 20;
}

.ic.menu .line {
  height: 4px;
  width: 100%;
  display: block;
  margin-bottom: 6px;
}
.ic.menu .line-last-child {
  margin-bottom: 0px;
}

.sub-menu-head {
  margin: 10px 0;
}
.banners-area {
  margin-top: 20px;
  padding-top: 15px;
}

.banners-area img {
  width: 150px;
}
.banner-cta {
  background-color: #fff;
  color: #054c8e;
  padding: 15px 25px;
  border-radius: 50px;
}
.banner-cta:hover {
  background-color: transparent;
  border: 1px solid #fff;
  color: #fff;
  text-decoration: none;
}
@media only screen and (max-width: 768px) {
  .sub-menu-head {
    color: orange;
  }
  .ic.menu {
    display: block;
  }
  header.dark .ic.menu .line {
    background-color: #fff;
  }
  header.light .ic.menu .line {
    background-color: #000;
  }
  .ic.menu .line {
    -webkit-transition: all 0.4s ease 0s;
    -o-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
    background-color: #333;
  }

  .main-nav.active ~ .line {
    background-color: #fff !important;
  }

  .ic.menu.whiteline .line:nth-child(1) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    background-color: #fff !important;
    position: relative;
    top: 10px;
  }

  .ic.menu.whiteline .line:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    background-color: #fff !important;
    position: relative;
    top: -10px;
  }

  .ic.menu.whiteline .line:nth-child(2) {
    transform: translateY(15px);
    background-color: #fff !important;
    opacity: 0;
  }

  .ic.menu.active {
    outline: none;
  }
  .ic.menu.active ~ .ic.close {
    opacity: 1;
    z-index: 21;
    outline: none;
  }
  .ic.menu:hover,
  .ic.menu.active {
    opacity: 1;
  }
  nav {
    background-color: transparent;
  }

  /* Main Menu for Handheld Devices  */
  ul.main-nav {
    z-index: 2;
    padding: 50px 0;
    position: fixed;
    right: 0px;
    top: 0px;
    width: 0px;
    background-color: rgba(0, 0, 0, 1);
    height: 100%;
    overflow: auto;
    /*CSS animation applied : Slide from Right*/
    -webkit-transition-property: background, width;
    -moz-transition-property: background, width;
    -o-transition-property: background, width;
    transition-property: background, width;
    -webkit-transition-duration: 0.6s;
    -moz-transition-duration: 0.6s;
    -o-transition-duration: 0.6s;
    transition-duration: 0.6s;
  }

  .main-nav.active {
    width: 100%;
    max-width: 400px;
    background-color: rgba(0, 0, 0, 1);
  }

  ul.main-nav > * {
    -webkit-transition-property: opacity;
    -moz-transition-property: opacity;
    -o-transition-property: opacity;
    transition-property: opacity;
    -webkit-transition-duration: 0.4s;
    -moz-transition-duration: 0.4s;
    -o-transition-duration: 0.4s;
    transition-duration: 0.4s;
    opacity: 0;
  }
  .main-nav.active > * {
    opacity: 1;
  }

  ul.main-nav > li > a:after {
    display: none;
  }
  ul.main-nav > li:first-child {
    border-radius: 0px;
  }
  ul.main-nav > li {
    display: block;
    border-bottom: 1px solid #444;
  }

  ul.main-nav > li > a {
    font-weight: 600;
  }

  ul.main-nav > li ul.sub-menu-lists > li a {
    color: #eee;
    font-size: 14px;
  }
  .sub-menu-head {
    font-size: 16px;
  }
  ul.main-nav > li:hover {
    background-color: transparent;
  }
  ul.main-nav > li:hover > a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
  }
  .ic.menu.active ~ ul.main-nav > li > div.sub-menu-block {
    border-left: 0px solid #ccc;
    border-right: 0px solid #ccc;
    border-bottom: 0px solid #ccc;
    position: relative;
    visibility: visible;
    opacity: 1;
  }

  .sub-menu-block {
    display: none;
  }

  .banners-area {
    padding-bottom: 0px;
  }
  .banners-area div {
    margin-bottom: 15px;
  }
  .banners-area {
    border-top: 1px solid #444;
  }
}
.flex-row {
  display: flex;
  align-items: flex-start;
}
.menu-col {
  width: 100%;
}
.nav-icons img {
  width: 30px;
  height: 30px;
  display: flex;
}
.navlist-title {
  font-size: 16px;
  line-height: 20px;
  margin-bottom: 5px;
  font-weight: 600;
}
@media only screen and (min-width: 769px) {
  .ic.menu {
    display: none;
  }
  /* Main Menu for Desktop Devices  */
  ul.main-nav {
    display: block;
    position: relative;
  }
  .sub-menu-block {
    padding: 15px;
  }

  /* Sub Menu */
  ul.main-nav > li > div.sub-menu-block {
    visibility: hidden;
    background-color: #f9f9f9;
    position: absolute;
    margin-top: 0px;
    width: 100%;
    color: #333;
    left: 0;
    box-sizing: border-box;
    z-index: 3;
    font-size: 16px;
    border-left: 1px solid #ccc;
    border-right: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    opacity: 0;

    /*CSS animation applied for sub menu : Slide from Top */
    -webkit-transition: all 0.4s ease 0s;
    -o-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
    -webkit-transform: rotateX(90deg);
    -moz-transform: rotateX(90deg);
    -ms-transform: rotateX(90deg);
    transform: rotateX(90deg);
    -webkit-transform-origin: top center;
    -ms-transform-origin: top center;
    transform-origin: top center;
  }

  ul.main-nav > li:hover > div.sub-menu-block {
    background-color: #fff;
    border-radius: 10px;
    visibility: visible;
    opacity: 1;
    -webkit-transform: rotateX(0deg);
    -moz-transform: rotateX(0deg);
    -ms-transform: rotateX(0deg);
    transform: rotateX(0deg);
  }

  ul.main-nav > li > div.sub-menu-block > * {
    -webkit-transition-property: opacity;
    -moz-transition-property: opacity;
    -o-transition-property: opacity;
    transition-property: opacity;
    -webkit-transition-duration: 0.4s;
    -moz-transition-duration: 0.4s;
    -o-transition-duration: 0.4s;
    transition-duration: 0.4s;
    opacity: 0;
  }

  ul.main-nav > li:hover > div.sub-menu-block > * {
    opacity: 1;
  }

  .sub-menu-head {
    font-size: 20px;
  }

  /* List Separator: Outer Border */
  header.dark ul.main-nav > li > a {
    border-right: 1px solid #bbb;
  }
  header.light ul.main-nav > li > a {
    border-right: 1px solid #666;
  }

  /* List Separator: Inner Border */
  ul.main-nav > li > a:after {
    content: "";
    width: 1px;
    height: 62px;
    position: absolute;
    right: 0px;
    top: 0px;
    z-index: 2;
  }
  header.dark ul.main-nav > li > a:after {
    background-color: #777;
  }
  header.light ul.main-nav > li > a:after {
    background-color: #999;
  }

  /* Drop Down/Up Arrow for Mega Menu */
  ul.main-nav > li > a.mega-menu > span {
    display: block;
    vertical-align: middle;
  }
  ul.main-nav > li > a.mega-menu > span:after {
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid #fff;
    content: "";
    background-color: transparent;
    display: inline-block;
    margin-left: 10px;
    vertical-align: middle;
  }
  .active ul.main-nav > li > a.mega-menu > span:after {
    border-top: 5px solid #333;
  }
  ul.main-nav > li:hover > a.mega-menu span:after {
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 0px solid transparent;
    border-bottom: 5px solid #666;
  }
  .banners-area {
    border-top: 1px solid #ccc;
  }
}
/*navigation*/
.banner {
  top: 0px;
  min-height: 100vh;
  position: relative;
  background: rgb(5 84 141);
  /*background-image: linear-gradient(90deg, rgba(7,169,122,1) 0%, #05548d 56%);
background-image: linear-gradient(90deg, rgba(255,255,255,0.9) 0%, rgba(7,169,122,1) 48%, rgba(5,84,141,1) 100%);*/
  overflow: hidden;
  background-image: url("./images/hero-2.jpg");
  background-size: cover;
  z-index: 0;
}
.banner-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  display: flex;
  align-items: center;
  width: 85%;
  gap: 30px;
  justify-content: space-between;
}
.banner-text {
  width: 50%;
  text-align: left;
}
.banner-hero {
  position: relative;
  top: 40px;
}
.banner-hero img {
  max-width: 76%;
  position: relative;
  animation: animate 2s alternate infinite;
}
.banner-content h1 {
  font-size: 44px;
  font-weight: bold;
  margin-bottom: 30px;
}
.banner-content p {
  font-size: 18px;
  line-height: 32px;
  font-weight: 300;
}
header {
  position: fixed;
  width: 100%;
  z-index: 1;
}
.logo img {
  max-width: 230px;
  display: flex;
}
@keyframes animate{
  from{
    bottom: 0;
  }
  to{
    bottom:20px;
  }
}
/*.banner-hero::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    z-index: -1;
    background-image: url(./images/hero-map.png);
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.4;
}*/

/*--------------------------Services---------------------*/
svg.services-svg {
  max-width: 170px;
  /*    height: 125px;*/
}
.services-block {
  max-width: 30%;
  text-align: center;
  line-height: 1.5;
}
.services-wrapper {
  display: flex;
  justify-content: space-between;
  margin: 60px 0 60px;
}
.services-icon {
  height: 150px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.services-block .services-content {
  text-align: left;
}
/*--------------------------Testimonials---------------------*/
section.testimonials {
  background-color: #05548d;
  position: relative;
  background-image: url(./images/test-image1.png);
  background-attachment: fixed;
  background-position: center;
}
#quote-carousel {
  padding: 0 10px 30px 10px;
  margin-top: 60px;
}
.carousel-inner {
  max-width: 84%;
  margin: 0 auto;
  color: #ffffff;
}
#quote-carousel .carousel-control {
  background: none;
  color: #cacaca;
  font-size: 2.3em;
  text-shadow: none;
  margin-top: 30px;
}
#quote-carousel .carousel-indicators {
  position: relative;
  right: 50%;
  top: auto;
  bottom: 0px;
  margin-top: 20px;
  margin-right: -19px;
  z-index: 3;
}
#quote-carousel .carousel-indicators li {
  width: 20px;
  height: 20px;
  cursor: pointer;
  border: 1px solid #ccc;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  opacity: 0.4;
  overflow: hidden;
  transition: all 0.4s ease-in;
  vertical-align: middle;
  background-color: #08a97a;
}
#quote-carousel .carousel-indicators .active {
  width: 28px;
  height: 28px;
  opacity: 1;
  transition: all 0.2s;
}
.item blockquote {
  border-left: none;
  margin: 0;
}
.item blockquote p:before {
  content: "\f10d";
  font-family: "Fontawesome";
  float: left;
  margin-right: 10px;
}
blockquote small {
  color: #e3e3e3;
}
/*.testimonials-shape1 {
    position: absolute;
    left: 10px;
    top: 40px;
}
.testimonials-shape1 img {
    width: 330px;
}
.testimonials-shape2 {
    position: absolute;
    left: 10px;
    top: 40px;
}
.testimonials-shape2 img {
    width: 300px;
}*/
/*-------------------------- Milestones ---------------------*/
section.milestone {
  background-color: #fafafa;
}
.milestone-first-block {
  display: flex;
  justify-content: space-between;
  gap: 50px;
  align-items: flex-end;
  margin-top: 80px;
  position: relative;
}
.milestone-shape1 {
  position: absolute;
  width: 380px;
  height: auto;
  left: -260px;
  z-index: -1;
  opacity: 0.1;
}
.milestone-image-wrapper svg {
  max-width: 440px;
  width: 100%;
}
.milestone-intro {
  width: 50%;
}
.milestone-intro p {
  font-size: 18px;
  line-height: 28px;
}
.milestone-image-wrapper {
  width: 50%;
  text-align: center;
}
.milestone-second-block > p {
  font-size: 16px;
  line-height: 24px;
}
.milestone-second-block {
  margin: 50px 0;
}
.steps .check-icon svg {
  max-width: 20px;
  display: flex;
}
.milestone-steps {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  /* justify-content: space-between; */
  max-width: 85%;
}
.milestone-steps .steps {
  display: flex;
  align-items: center;
  column-gap: 20px;
  border: 1px solid #ccc;
  padding: 10px 15px;
  max-width: 350px;
  width: 100%;
  border-radius: 5px;
}
/*-------------------------- Methodology ---------------------*/
section.methodologies {
  background-color: #06448d;
}
.methodologies .flow-image img {
  max-width: 100%;
}
.methodologies .flow-image {
  max-width: 90%;
  margin: 100px auto 0;
}
/*-------------------------- Industries ---------------------*/
/*section.industries {
    background-color: #05548d;
    color: #ffffff;
}*/
.industry-block {
  margin: 100px 0 0;
}
.industry {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.industry-image {
  width: 50%;
  text-align: center;
}
.industry-block .industry .industry-image svg.industry-icon {
  max-width: 400px;
}
.industry-text {
  width: 50%;
}
.industry-text h2 {
  margin-bottom: 30px;
}
.industry-text p {
  font-size: 16px;
  line-height: 24px;
}

/*--------------------------About Us Page---------------------*/
.about.banner {
  top: 0px;
  min-height: 60vh;
}
.h1-title-bluebg {
  font-size: 44px;
  color: #fff;
  font-weight: 600;
}
.banner .first-section {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 85%;
}
section.banner h2 {
  /*-webkit-text-fill-color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.5);*/
  font-size: 40px;
  color: #fff;
  font-family: "Bebas Neue", sans-serif;
}
.banner .first-section p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
}
h1.title {
  font-size: 44px;
}
.sub-title {
  text-align: center;
  font-size: 18px;
  line-height: 28px;
}
.about-company {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-top: 30px;
  gap: 50px;
}
.about-company .about-content {
  width: 50%;
}
.about-company .about-image {
  width: 40%;
}
.about-company .about-image img {
  /*    max-width: 300px;*/
  width: 100%;
}
.about-company .about-content h2 {
  font-size: 16px;
  line-height: 28px;
  font-weight: normal;
}
/*.mission .mission-text, .vision .vision-text, .values .values-text  {
    width: 40%;
}*/
.mission,
.values {
  background-color: aliceblue;
}
.vision {
  background-color: #054a8d;
  color: #fff;
}
.mvv-wrapper {
  display: flex;
}
.mvv-wrapper section {
  width: 33.3333%;
  position: relative;
  display: flex;
  align-items: center;
}
.mvv-image img {
  position: absolute;
  right: 30px;
  top: 30px;
  z-index: 1;
  width: 100%;
  max-width: 130px;
  max-height: 100px;
}
.mvv-text p {
  font-size: 16px;
}

/*Team Option1*/
/*.team-container {
    margin-top: 50px;
}
.team .team-container .team-block {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 50px;
    flex-wrap: wrap;
    margin-top: 70px;
}
.team-container .team-detail {
    font-size: 18px;
    text-align: center;
}
.team .team-block .member-img img {
    max-width: 200px;
    border-radius: 50%;
}
.team .team-block .member .desg{
	text-align: center;
}
.team .team-block .member .desg h3 {
    font-size: 20px;
    font-weight: 600;
}*/
/*Team Option1 End*/

.team .member-block {
  margin-top: 100px;
}
.team .member {
  display: flex;
  justify-content: center;
  column-gap: 100px;
  margin-bottom: 100px;
}
.team .member .member-img img {
  max-width: 300px;
}
.team .member .member-detail {
  width: 30%;
}
.team .member .member-detail .desg {
  margin-bottom: 24px;
}
.team .member .member-detail .desg h3 {
  color: #05548d;
  font-weight: 600;
  margin-top: 0;
}
.team .member .member-detail p {
  font-size: 18px;
  font-weight: 300;
}
.team .member .member-detail .desg p {
  font-size: 16px;
  font-weight: 500;
}

/*-------------------------- Contact Us ---------------------*/
.contact.banner {
  min-height: 60vh;
}
.contact-bg {
  background-color: aliceblue;
}
.contact-form {
  margin-top: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 100px;
}
.contact-hero-img {
  max-width: 550px;
  width: 100%;
}
.contact-form form {
  max-width: 40%;
  width: 100%;
}
.contact-form .input-element {
  margin-bottom: 16px;
  /*    max-width: 400px;*/
}
.contact-form .input-element input {
  width: 100%;
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #c8c8c8;
}
.contact-form .input-element textarea {
  width: 100%;
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #c8c8c8;
}
.input-element .mandatory-sign {
  color: red;
  margin-left: 2px;
}

.contact-form .error-message {
    color: red;
    margin-top: 5px;
    font-size: 14px;
  }
  .contact-form .error-message-required {
    color: red;
    margin-top: -10px;
    margin-bottom: 7px;
    font-size: 10px;
  }
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin: 0;
}
.contact-form .input-element label {
  font-weight: 500;
}
.contact-img img {
  max-width: 100px;
  width: 100%;
}
.contact-info-block {
  display: flex;
  align-items: center;
  column-gap: 30px;
}
.contact-details {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.contact-map {
  margin-top: 70px;
}
button.contact-submit-btn {
  background-color: #05548d;
  border: navajowhite;
  padding: 10px;
  width: 100%;
  border-radius: 50px;
  color: #fff;
}
/*-------------------------- Case Study ---------------------*/
.case-study.banner {
  min-height: 60vh;
}

.copyright {
  background-color: #001124;
  color: #ededed;
  font-size: 12px;
  /* text-align: center; */
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/*-------------------------- Get in touch ---------------------*/
section.git {
  position: relative;
}
.get-in-touch {
  position: relative;
  width: 100%;
  height: auto;
  background-color: #f0f8ff;
  z-index: 3;
  bottom: -696px;
  transition: 0.6s ease;
}
.get-in-touch.git-open {
  bottom: 0;
  position: absolute;
  overflow-y: scroll;
  height: 100vh;
  z-index: 5;
  transition: 0.6s ease;
}
.get-in-touch.git-open .git-header {
  position: relative !important;
  transition: 0.6s ease;
}
body:has(.get-in-touch.git-open) {
  overflow: hidden;
}

.git-header {
  background-color: #07a97a;
  height: 50px;
  display: flex;
  align-items: center;
  position: fixed;
  bottom: 0;
  width: 100%;
  transition: 0.6s ease;
}
/* .get-in-touch.git-open .git-header {
    position: relative;
    transition: 0.3s ease;
} */
.git-header .git-btn {
  font-size: 20px;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  position: relative;
  z-index: 0;
}
.git-btn:before {
  content: "";
  background-color: #07a97a;
  position: absolute;
  width: 50px;
  height: 50px;
  top: -39px;
  transform: rotate(45deg);
  z-index: -1;
}
.git-btn:after {
  content: "";
  background-image: url("././images/pointer.svg");
  background-repeat: no-repeat;
  position: absolute;
  top: -36px;
  z-index: -1;
  width: 24px;
  height: 24px;
  left: 15px;
}
.get-in-touch.git-open .git-btn:before {
  top: 9px;
}
.get-in-touch.git-open .git-btn:after {
  top: 35px;
  transform: rotate(180deg);
}
.git-main .contact-form {
  justify-content: space-between;
}
.git-main .contact-form form {
  max-width: 50%;
  position: relative;
  /*     display: flex; */
  flex-wrap: wrap;
}
.git-main .contact-form form .input-element {
  /*max-width: 390px;
  width: 100%;
  display: flow;*/
  margin-right: 50px;
}
.git-main .contact-form form div {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.git-main .contact-form form .git-form-cta button {
  max-width: 190px;
  padding: 10px 30px;
}
.git-form-cta {
  margin-top: 15px;
}
.git-concent {
  font-size: 12px;
  margin-top: 40px;
  width: 65%;
}
.git-image {
    width: 50%;
    text-align: right;
}
.git-image img {
    max-width: 500px;
    width: 100%;
}
#thanksMsg {
  position: relative;
  font-size: 30px;
  font-weight: 700;
  /* display: flex; */
  align-items: center;
  gap: 20px;
}
#thanksMsg label {
  top: 10px;
  position: relative;
}
.visibility-hidden {
  visibility: hidden;
}
.visibility-visible {
  visibility: visible;
}
.display-none {
  display: none;
}
.display-block {
  display: block;
}
.display-flex {
  display: flex;
}
/* #thanksMsg{
    display: none;
} */
/*-------------------------- Success Stories ---------------------*/
.success-stories.banner {
  min-height: 60vh;
}
.story {
  display: flex;
  align-items: center;
  gap: 50px;
  padding-top: 80px;
  padding-bottom: 80px;
}
.story:nth-child(2n) {
  padding: 0;
}
.stories-content {
  width: 50%;
  line-height: 1.43;
  background-color: #f2f2f2;
  padding: 30px 50px;
}
.stories-image {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.prod-image {
  max-width: 500px;
  border: 1px solid #05548d;
  border-radius: 10px;
  display: block;
  position: relative;
  /* margin-right: auto; */
}
.prod-image:before {
  content: "";
  background-color: #ccc;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -1;
  left: 12px;
  top: 12px;
  border-radius: 10px;
}
.prod-image:nth-child(2n) {
  top: -90px;
}
.stories-image .prod-image img {
  width: 100%;
  border-radius: 10px;
}
.story-title {
  font-size: 28px;
  margin-bottom: 30px;
  font-weight: 600;
}
.stories-content p {
  font-size: 16px;
  line-height: 24px;
}

/*-------------------------- NCampaignSuite Product ---------------------*/
.product.banner {
  min-height: 60vh;
}
/*-------------------------- Services Page ---------------------*/
.service_page.banner {
  min-height: 60vh;
}
.page-services {
  display: flex;
  align-items: flex-start;
  gap: 50px;
  padding-top: 80px;
  padding-bottom: 80px;
}
/*.page-services:nth-child(2n){
    padding: 0;
}*/
.page-services-content {
  width: 50%;
  line-height: 1.43;
}
.page-services-image {
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.page-services-image .prod-image {
  max-width: 500px;
  border: 1px solid #05548d;
  border-radius: 10px;
  display: block;
  position: relative;
  /* margin-right: auto; */
  overflow: hidden;
  transition: 0.5s ease;
}
.page-services-image .prod-image img {
  transition: 0.5s ease;
}
.page-services-image .prod-image:hover img {
  transition: 0.5s ease;
  transform: scale(1.1);
}
.page-services-image .prod-image:before {
  content: "";
  background-color: #ccc;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -1;
  left: 12px;
  top: 12px;
  border-radius: 10px;
}
.page-services-image .prod-image:nth-child(2n) {
  top: -90px;
}
.page-services-image .prod-image img {
  width: 100%;
  border-radius: 10px;
}
.page-services-title {
  font-size: 34px;
  margin-bottom: 30px;
  font-weight: 600;
  margin-top: 0;
}
.page-services-content p {
  font-size: 16px;
  line-height: 24px;
}
/*-------------------------- Privacy Policy ---------------------*/
section.privacy-sec h2 {
    color: #05548d;
    font-size: 24px;
    margin: 35px 0 20px;
    /* width: calc(100% - 100px); */
    background-color: #ededed;
    padding: 15px 15px;
    /* color: #4c4c4c;*/
}
section.privacy-sec h1 {
    color: #05548d;
}
section.privacy-sec h3 {
    font-size: 18px;
}
section.privacy-sec ul li {
    margin-bottom: 5px;
}
/*-------------------------- Cookie ---------------------*/
.cookie-box {
  display: block;
  background-color: #464646;
  width: 80%;
  height: auto;
  padding: 40px 50px;
  border-radius: 10px;
  border: 1px solid #000;
  position: fixed;
  bottom: 10px;
  left: 10px;
  z-index: 99999;
}
.content {
  color: #fff;
  margin-right: 30px;
}
.cookie-box .cookie-flex .content h2 {
  margin: 0;
  font-size: 20px;
}
.cookie-box .cookie-flex .content h2:nth-child(2) {
  margin-bottom: 20px;
  margin-top: 5px;
}
.content p {
  font-size: 16px;
}
.cookie-flex {
  display: flex;
  align-items: center;
}
.cta-wrapper {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cookie-btn {
  background-color: #d93954;
  color: #fff;
  padding: 12px;
  display: inline-block;
  width: 200px;
  text-align: center;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s ease;
}
.cookie-btn:hover {
  background-color: #fff;
  color: #d93954;
  transition: 0.3s ease;
  transform: scale(1.08);
  text-decoration: none;
}
.cookie-btn:visited {
  text-decoration: none;
}
.cookie-overlay {
  position: absolute;
  background-color: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  top: 0;
  z-index: 10;
}
.cookie-side-overlay.open-side-cookie {
  position: absolute;
  background-color: rgba(0, 0, 0, 0.3);
  width: 100%;
  height: 100%;
  top: 0;
  z-index: 10;
}
.side-cookie-panel {
  position: fixed;
  bottom: 0;
  background-color: #464646;
  /*    padding: 15px 25px;*/
  max-width: 480px;
  right: -480px;
  top: 0;
  z-index: 11;
  transition: 0.5s ease;
}
.cookie-logo {
  padding: 20px 25px;
  border-bottom: 1px solid #fff;
}
.cookie-side-panel-section {
  padding: 20px 25px;
  color: #fff;
  /*    border-bottom: 1px solid #fff;*/
}
.cookie-logo img {
  max-width: 200px;
}
.cookie-side-panel-section p {
  font-size: 13px;
}
.cookie-side-panel-section h2 {
  font-weight: 600;
  font-size: 20px;
  margin-top: 0;
}
.cookie-side-panel-section h4 {
  font-size: 15px;
}
.cookie-side-panel-section a {
  color: #fff;
}
.cookie-type {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cookie-type .switchSmall {
  display: inline-block;
  margin-bottom: 0;
}
.cookie-type .switchSmall input {
  display: none;
}
.cookie-type .switchSmall small {
  display: inline-block;
  width: 32px;
  height: 16px;
  background: #333333;
  border-radius: 30px;
  position: relative;
  cursor: pointer;
  margin: 10px 0;
}
.cookie-type .switchSmall small:before {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  background: #fff;
  border-radius: 50%;
  top: 3px;
  left: 3px;
  transition: 0.3s;
  box-shadow: -3px 0 3px rgba(0, 0, 0, 0.1);
}
.cookie-type .switchSmall input:checked ~ small {
  background: #828282;
  transition: 0.3s;
}
.cookie-type .switchSmall input:checked ~ small:before {
  transform: translate(16px, 0px);
  transition: 0.3s;
}
.cookie-side-panel-section-scroll {
  overflow-y: scroll;
  height: 70vh;
  border-bottom: 1px solid #fff;
}
.cookie-side-panel-section-scroll::-webkit-scrollbar {
  width: 10px;
}

.cookie-side-panel-section-scroll::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

.cookie-side-panel-section-scroll::-webkit-scrollbar-thumb {
  background-color: darkgrey;
  outline: 1px solid slategrey;
}
.cookie-side-panel-section .cookie-btn {
  width: 100%;
  margin-bottom: 10px;
  transform: scale(1);
}
/*-------------------------- Industry ---------------------*/
.industry-wrapper {
  display: flex;
  margin: 80px 0;
  justify-content: center;
  align-items: center;
  position: relative;
}
.industry-page-image img {
  width: 100%;
  max-width: 350px;
}
.industry-page-image {
  display: flex;
  justify-content: center;
}
/*.industry-wrapper:before {
    content: '';
    background-image: url(./images/industry-bg.svg);
    position: absolute;
    width: 800px;
    height: 100%;
    z-index: -1;
    right: 0;
    bottom: -160px;
    opacity: 0.5;
}*/
/*-------------------------- Hover ---------------------*/
@media only screen and (min-width: 768px) and (hover: hover) {
  li.sub-nav:hover ul {
    display: block;
    height: max-content;
    transition: 0.3s ease;
    overflow-y: auto;
    list-style: none;
    padding-left: 0;
  }
  .nav > .nav-links > ul > li > a:hover {
    background-color: rgba(0, 0, 0, 0.3);
  }
  ul.submenu > li:hover {
    background-color: rgba(0, 0, 0, 0.1);
  }
  header.active li.sub-nav:hover ul {
    box-shadow: 0px 3px 5px 0px #b0b0b0;
  }
  .nav > .nav-links > ul > li:hover a span i {
    transform: rotate(180deg);
    transition: 0.3s ease;
  }
  .git-main .contact-form form .git-form-cta button:hover {
    background-color: #044371;
  }
}

/*-------------------------- Mobile ---------------------*/
@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }
  .logo .white-logo {
    display: none;
  }
  .logo .default-logo {
    display: block;
  }
  
  /*Navigation*/
  header {
    background-color: #fff;
    padding: 10px 0;
    z-index: 4;
  }
  ul.main-nav > li ul.sub-menu-lists > li:hover {
    background-color: #f8f8f8;
    border-radius: 10px;
  }
  ul.main-nav > li ul.sub-menu-lists > li:hover a {
    color: #333;
  }
  ul.main-nav > li ul.sub-menu-lists {
    margin-bottom: 10px;
  }
  ul.main-nav > li ul.sub-menu-lists > li {
    padding: 2px 0;
    margin: 0px 15px;
  }
  .mega-menu::before {
    content: "";
    position: absolute;
    right: 30px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    width: 8px;
    height: 8px;
    z-index: 1;
    transform: rotate(45deg);
    transition: 0.3s ease;
  }
  a.mega-menu.open::before {
    transform: rotate(225deg);
    transition: 0.3s ease;
  }
  .ic.menu.whiteline::before {
    content: "";
    position: absolute;
    background-color: #000;
    height: 35px;
    width: 35px;
    left: -1px;
    top: -4px;
  }
  .banner-content {
    flex-direction: column;
    width: 100%;
    padding: 0 20px;
    gap: 0px;
  }
  .banner-text {
    width: 100%;
    text-align: left;
  }
  .banner-content h1 {
    font-size: 28px;
  }
  .banner-content p {
    font-size: 16px;
    line-height: 24px;
  }
  .banner-hero img {
    max-width: 320px;
  }
  /*.banner-hero img {
	    display: none;
	}*/
  /*---------- Services ---------*/
  .services-wrapper {
    flex-direction: column;
    gap: 20px;
    margin: 30px 0 0;
  }
  .services-wrapper .services-block {
    max-width: 100%;
  }

  /*---------- MileStones ---------*/
  .milestone-first-block {
    flex-direction: column-reverse;
  }
  .milestone-intro {
    width: 100%;
  }
  .milestone-image-wrapper {
    width: 100%;
    text-align: center;
  }
  .milestone-steps {
    max-width: 100%;
  }

  /*---------- Industries ---------*/
  .industry {
    flex-direction: column;
  }
  .industry-text {
    width: 100%;
  }
  .industry.mobile-reverse {
    flex-direction: column-reverse;
  }
  .footer-wrapper {
    width: 100%;
  }
  .footer-intro-column {
    margin-bottom: 30px;
  }
  .footer-column {
    margin-bottom: 30px;
  }

  /*---------- About Us Page ---------*/
  .about.banner {
    top: 0px;
    min-height: 100vh;
  }
  .about-company {
    flex-direction: column-reverse;
  }
  .about-company .about-content {
    width: 100%;
  }
  .about-company .about-image {
    width: 80%;
  }
  .mvv-wrapper {
    flex-direction: column;
  }
  .mvv-wrapper section {
    width: 100%;
  }
  /*.team .team-block {
	    justify-content: center;
	}*/
  .team .member {
    flex-direction: column;
  }
  .team .member .member-detail {
    width: 100%;
  }
  .team .member .member-img img {
    max-width: 200px;
  }
  .team .member:nth-child(even) {
    flex-direction: column-reverse;
  }
  /*---------- About Us Page ---------*/
  .contact-hero-img {
    display: none;
  }
  .contact-details {
    flex-direction: column;
  }
  .contact-info-block {
    display: flex;
    align-items: center;
    column-gap: 30px;
    width: 100%;
  }
  .contact-info h3 {
    font-size: 14px;
  }
  .contact-form form {
    max-width: 100%;
    width: 100%;
  }
  .pad-t0-mbl {
    padding-top: 0;
  }

  /*---------- Cookie ---------*/
  .cookie-flex {
    flex-direction: column;
    align-items: flex-start;
  }
  .content {
    width: 100%;
    margin-right: 00px;
  }
  .cta-wrapper {
    width: 100%;
  }
  .cookie-btn {
    width: 100%;
  }
  .cta-wrapper div {
    display: flex;
  }
  .cookie-box {
    width: 95%;
  }
  /*---------- Get in touch ---------*/
  .git-main .contact-form {
    justify-content: left;
    flex-direction: column-reverse;
  }
  .git-main .contact-form form {
    max-width: 100%;
  }
  .git-main .contact-form form .input-element {
    margin-right: 0;
  }
  .git-concent {
    width: 100%;
  }
  .git-main .contact-form form .git-form-cta button {
    max-width: 100%;
  }
  /*---------- Success Stories ---------*/
  .story {
    flex-direction: column;
  }
  .story:nth-child(2n) {
    flex-direction: column-reverse;
  }
  .stories-content {
    width: 100%;
  }
  .stories-image {
    width: 100%;
  }
  .prod-image:nth-child(2n) {
    top: 20px;
  }
  /*---------- Service Page ---------*/
  .page-services {
    flex-direction: column;
  }
  .page-services:nth-child(2n) {
    flex-direction: column-reverse;
  }
  .page-services-content {
    width: 100%;
  }
  .page-services-image {
    width: 100%;
  }
  .page-services-image .prod-image:nth-child(2n) {
    top: 20px;
  }
}
