@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
ul, ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

a, img {
  text-decoration: none !important;
  transition: 0.3s all ease-in-out;
}

* {
  margin: 0;
  padding: 0;
}

:focus {
  outline: none !important;
}

:root {
  --marquee-width: 100%;
  --marquee-height: 120px;
  --marquee-elements-displayed: 6;
  --marquee-element-width: calc(var(--marquee-width) / var(--marquee-elements-displayed));
  --marquee-animation-duration: calc(var(--marquee-elements) * 3s);
}

p {
  line-height: 24px;
  font-size: 16px;
}

/* styling scroll bar*/
::-webkit-scrollbar {
  width: 5px;
  height: 6px;
}

::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px #fff;
}

::-webkit-scrollbar-thumb {
  background: #a1a1a1;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: #CCC;
}

body {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 400;
}

.p100 {
  padding: 100px 0px;
}

header {
  width: 100%;
  position: absolute;
  z-index: 999;
  padding: 10px 0px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.4s ease;
}
header.sticky {
  background-color: #030D26;
  position: fixed;
  left: 0;
  top: 0;
  padding: 6px 0px;
}
header .container {
  justify-content: space-between !important;
}
header .navbar-toggler {
  border: none;
}
header .navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}
header .navbar-toggler .navbar-toggler-icon {
  background-image: url(../images/nav-icon.svg);
}
header .navbar-collapse {
  flex-grow: 0;
}
header .nav-link {
  padding-left: 18px !important;
  padding-right: 18px !important;
  color: #FFF;
}
header .nav-link:hover {
  color: #F9EF3F;
}
header .nav-link.active {
  color: #F9EF3F !important;
}
header .get-quote .btn-link {
  padding: 12px 18px;
  border: 2px solid #F9EF3F;
  border-radius: 50px;
  color: #FFF;
  position: relative;
  transition: all 0.3s ease;
}
header .get-quote .btn-link:hover {
  background-color: #F9EF3F;
  color: #030D26;
  transform: scale(1.05);
  box-shadow: 0 0 0 5px #CEC74C;
}
header .mobile-view {
  padding: 12px 18px;
  border: 2px solid #F9EF3F;
  border-radius: 50px;
  color: #FFF;
  position: relative;
  transition: all 0.3s ease;
  display: inline-block;
}
header .mobile-view:hover {
  background-color: #F9EF3F;
  color: #030D26;
  transform: scale(1.05);
  box-shadow: 0 0 0 5px #CEC74C;
}
header .mobile-logo {
  display: none;
}
header .mb-nav {
  width: 50px;
  height: 50px;
  border: 1px solid #030D26;
  border-radius: 50%;
  display: none;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 9999;
}
header .mb-nav .menuBtn {
  height: 30px;
  width: 22px;
  position: absolute;
  right: 6px;
  top: 10px;
  z-index: 101;
}
header .mb-nav .menuBtn span {
  background-color: #030D26;
  border-radius: 1px;
  height: 2px;
  width: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  margin: -1px 0 0 -15px;
  transition: height 100ms;
}
header .mb-nav .menuBtn span::before, header .mb-nav .menuBtn span::after {
  content: "";
  background-color: #030D26;
  border-radius: 1px;
  height: 2px;
  width: 100%;
  position: absolute;
  left: 50%;
  margin-left: -15px;
  transition: all 200ms;
}
header .mb-nav .menuBtn span::after {
  top: -7px;
}
header .mb-nav .menuBtn span::before {
  bottom: -7px;
}
header .mb-nav .menuBtn.act span {
  height: 0;
  margin: -2px 0 0 -14px;
}
header .mb-nav .menuBtn.act span::before, header .mb-nav .menuBtn.act span::after {
  background-color: #F9EF3F;
  top: 1px;
}
header .mb-nav .menuBtn.act span::before {
  transform: rotate(-45deg);
}
header .mb-nav .menuBtn.act span::after {
  transform: rotate(45deg);
}
header .mainMenu {
  background-color: rgba(3, 13, 38, 0.9);
  position: fixed;
  left: 0;
  top: 0;
  z-index: 100;
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  text-align: center;
  flex-wrap: wrap;
  opacity: 0;
  transition: all 500ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transform: scale(0);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
}
header .mainMenu .nav-sec {
  width: 100%;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
header .mainMenu .mb-logo {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 25px;
}
header .mainMenu ul {
  display: table-cell;
  vertical-align: middle;
  width: 100%;
}
header .mainMenu.act {
  opacity: 1;
  transform: scale(1);
}
header .mainMenu.act ul li {
  opacity: 1;
  transform: translateX(0);
  margin-bottom: 10px;
}
header .mainMenu.act ul li a {
  color: #FFF;
  font-size: 20px;
  padding: 5px 0px;
  display: inline-block;
}
header .mainMenu.act ul li a.active {
  color: #F9EF3F;
}

.owl-dots {
  display: none;
}

.banner-area {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  position: relative;
}
.banner-area video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.banner-area .video-overlay {
  width: 100%;
  height: 100%;
  background-color: #000;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 9;
  opacity: 0.6;
}
.banner-area .banner_title {
  position: absolute;
  width: 100%;
  top: 50%;
  z-index: 99;
  left: 0;
  right: 0;
  margin: auto;
  color: #FFF;
  margin-top: -86px;
  display: flex;
  align-items: center;
}
.banner-area .banner_title h2 {
  font-size: 22px;
  font-weight: 400;
  display: flex;
  align-items: center;
}
.banner-area .banner_title h2 img {
  margin-right: 10px;
}
.banner-area .banner_title h1 {
  font-size: 50px;
}
.banner-area .banner_title h1 span {
  font-weight: 700;
}
.banner-area .brandicon {
  animation: rotating 20s linear infinite;
}
.banner-area .icon-sec {
  display: flex;
  align-items: center;
  justify-content: right;
  padding-right: 30px;
}
.banner-area .betweenit-icon {
  width: 200px;
  height: 200px;
  position: relative;
}
.banner-area .betweenit-icon img {
  width: 100%;
}
.banner-area .betweenit-icon .icon2 {
  width: 80px;
  height: 80px;
  position: absolute;
  left: 30%;
  top: 30%;
}
.banner-area .social-media {
  position: fixed;
  right: 20px;
  top: 39%;
  z-index: 999;
}
.banner-area .social-media a {
  width: 39px;
  height: 39px;
  border: 1px solid #F9EF3F;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  color: #F9EF3F;
  border-radius: 50%;
  margin-bottom: 6px;
  background-color: rgba(0, 0, 0, 0.3);
}
.banner-area .social-media a:hover {
  background-color: #F9EF3F;
  color: #030D26;
  transform: scale(1.2);
}

@keyframes rotating {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.btn-sec {
  padding: 12px 20px;
  border: 2px solid #F9EF3F;
  border-radius: 50px;
  color: #FFF;
  position: relative;
  transition: all 0.3s ease;
  display: inline-block;
  position: relative;
}
.btn-sec span {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  position: absolute;
  top: -2px;
  right: -61px;
  background-color: #F9EF3F;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s all ease-in-out;
}
.btn-sec:hover {
  background-color: #F9EF3F;
  color: #030D26;
}
.btn-sec:hover span {
  transform: rotate(45deg);
}

.solutions-scroll {
  width: 100%;
  background-color: #F9EF3F;
}
.solutions-scroll .marquee-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.solutions-scroll .marquee {
  width: var(--marquee-width);
  height: 80px;
  overflow: hidden;
  position: relative;
}
.solutions-scroll .marquee::before,
.solutions-scroll .marquee::after {
  position: absolute;
  top: 0;
  width: 10rem;
  height: 100%;
  content: "";
  z-index: 2;
  pointer-events: none;
}
.solutions-scroll .marquee::before {
  left: 0;
  background: linear-gradient(to right, #F9EF3F 0%, transparent 100%);
}
.solutions-scroll .marquee::after {
  right: 0;
  background: linear-gradient(to left, #F9EF3F 0%, transparent 100%);
}
.solutions-scroll .marquee-content {
  list-style: none;
  height: 80px;
  display: flex;
  align-items: center;
  animation: scrolling var(--marquee-animation-duration) linear infinite;
  padding: 0;
  margin: 0;
}
.solutions-scroll .marquee.reverse .marquee-content {
  animation: scrolling-reverse var(--marquee-animation-duration) linear infinite;
}
@keyframes scrolling {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-1 * var(--marquee-element-width) * var(--marquee-elements)));
  }
}
.solutions-scroll .marquee-content li {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  width: auto;
  height: 80px;
  padding: 1rem 2rem;
  font-size: 18px;
  font-weight: 700;
}

.hm-about {
  width: 100%;
  background-color: #030D26;
  position: relative;
  z-index: 99;
}
.hm-about .content {
  color: #FFF;
}
.hm-about .content h4 {
  font-size: 20px;
  display: flex;
  color: #FFF;
}
.hm-about .content h4 img {
  margin-right: 6px;
}
.hm-about .content h5 {
  font-size: 34px;
}
.hm-about .content h5 span {
  font-weight: 700;
}
.hm-about .content .about-count {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-bottom: 20px;
}
.hm-about .content .about-count .box {
  width: 260px;
  padding: 25px;
  background-color: #121D37;
  border: 1px solid #314061;
  border-radius: 10px;
}
.hm-about .content .about-count .box h6 {
  color: #F9EF3F;
  font-size: 28px;
}
.hm-about .content .about-count .box p {
  margin: 0;
}
.hm-about .about-img-sec {
  position: relative;
}
.hm-about .about-img-sec .img1 {
  width: 90%;
  height: 300px;
}
.hm-about .about-img-sec .img1 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
}
.hm-about .about-img-sec .img2 {
  width: 50%;
  height: 300px;
  position: absolute;
  right: 0px;
  bottom: -153px;
  background-color: #FFF;
  padding: 10px;
  border-radius: 10px;
  overflow: hidden;
}
.hm-about .about-img-sec .img2 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
}
.hm-about .about-img-sec .project-count {
  width: 300px;
  padding: 20px;
  background-color: #F9EF3F;
  border-radius: 100px;
  display: flex;
  align-items: center;
  animation: move 2s linear infinite;
  position: absolute;
  bottom: -120px;
}
.hm-about .about-img-sec .project-count .icon {
  width: 69px;
  height: 69px;
  background-color: #030D26;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hm-about .about-img-sec .project-count .txt-sec {
  padding-left: 20px;
}
.hm-about .about-img-sec .project-count .txt-sec h6 {
  font-size: 32px;
  font-weight: 700;
  margin: 0;
}
.hm-about .about-img-sec .project-count .txt-sec .txt {
  font-size: 16px;
  font-weight: 600;
}

@keyframes move {
  0% {
    left: 100px;
  }
  25% {
    right: -150px;
  }
  50% {
    left: 150px;
  }
  75% {
    right: -150px;
  }
  100% {
    left: 100px;
  }
}
.services-sec {
  width: 100%;
  background-color: #030D26;
}

.title-head {
  text-align: center;
  margin-bottom: 20px;
}
.title-head h4 {
  font-size: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #F9EF3F;
  text-align: center;
  text-transform: uppercase;
}
.title-head h4 img {
  margin-right: 10px;
}
.title-head h5 {
  font-size: 34px;
  color: #FFF;
  font-weight: 400;
}
.title-head h5 span {
  font-weight: 700;
}
.title-head p {
  color: #FFF;
}

.service-box {
  width: 100%;
  height: 100%;
  background-color: #121D37;
  border-radius: 10px;
  padding: 20px;
  border: 1px solid #1B2844;
  transition: 0.3s all ease-in-out;
}
.service-box .service-img {
  width: 100%;
  height: 212px;
  overflow: hidden;
  margin-bottom: 15px;
  position: relative;
}
.service-box .service-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
}
.service-box .service-img::before {
  position: absolute;
  top: 0;
  left: -75%;
  z-index: 2;
  display: block;
  content: "";
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
  transform: skewX(-25deg);
}
.service-box .content {
  width: 100%;
}
.service-box .content h3 {
  color: #FFF;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.service-box .content .txt-sec {
  width: 100%;
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}
.service-box .content .txt-sec .icon {
  width: 61px;
  height: 66px;
  background-color: #030D26;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  transition: 0.3s all ease-in-out;
}
.service-box .content .txt-sec .txt {
  width: 80%;
  padding-left: 15px;
  color: #FFF;
}
.service-box .content .txt-sec .txt p {
  margin: 0;
}
.service-box .link {
  width: 100%;
}
.service-box .link a {
  color: #FFF;
}
.service-box .link a img {
  transition: 0.3s all ease-in-out;
}
.service-box .link a:hover img {
  transform: rotate(45deg);
}
.service-box:hover {
  transform: translateY(-5px);
}
.service-box:hover .service-img::before {
  animation: shine 0.75s;
}
.service-box:hover .content .txt-sec .icon {
  background-color: #F9EF3F;
}
.service-box:hover .content .txt-sec .icon img {
  filter: brightness(0) invert(0);
}

@keyframes shine {
  100% {
    left: 125%;
  }
}
.works-sec {
  width: 100%;
  background-color: #030D26;
  padding-bottom: 20px;
}
.works-sec .mqs-item {
  position: relative;
  overflow: hidden;
  height: 300px;
  border-radius: 10px;
}
.works-sec .mqs-item img {
  width: 300px;
  height: 300px;
  border-radius: 10px;
  -o-object-fit: cover;
     object-fit: cover;
}
.works-sec .mqs-item .project-type {
  padding: 20px;
  background-color: rgba(249, 239, 63, 0.8);
  position: absolute;
  left: 0;
  bottom: -20px;
  width: 100%;
  transition: 0.3s all ease-in-out;
  opacity: 0;
}
.works-sec .mqs-item .project-type h6 {
  color: #000;
  margin-bottom: 6px;
  font-weight: 700;
}
.works-sec .mqs-item .project-type p {
  color: #030D26;
  margin: 0;
}
.works-sec .mqs-item:hover .project-type {
  opacity: 1;
  bottom: 0;
}

.more-services {
  width: 100%;
  background-color: #030D26;
}
.more-services .title-head {
  text-align: left;
}
.more-services .title-head h4 {
  justify-content: left;
}
.more-services .view-box {
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}
.more-services .view-box li {
  min-height: 90px;
  background-color: #121D37;
  margin-bottom: 3px;
  display: flex;
  align-items: center;
  padding: 20px 15px;
  transition: 0.3s all ease-in-out;
}
.more-services .view-box li .title {
  width: 190px;
  color: #FFF;
  font-weight: 700;
  position: relative;
  padding-right: 12px;
  transition: 0.3s all ease-in-out;
}
.more-services .view-box li .title::after {
  content: ":";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  transition: 0.3s all ease-in-out;
}
.more-services .view-box li .description {
  color: #FFF;
  padding-left: 20px;
  transition: 0.3s all ease-in-out;
}
.more-services .view-box li:hover {
  background-color: #F9EF3F;
}
.more-services .view-box li:hover .title, .more-services .view-box li:hover .description {
  color: #030D26;
}
.more-services .sticky-top {
  padding: 100px 0px;
  z-index: 9;
}

.testimonials {
  width: 100%;
  background-color: #030D26;
  padding-bottom: 60px;
}
.testimonials .marquee-slider {
  width: 100%;
  grid-column-gap: 1.6rem;
  grid-row-gap: 1.6rem;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: relative;
  overflow: hidden;
}
.testimonials .marquee-slider__list {
  grid-column-gap: 1.6rem;
  grid-row-gap: 1.6rem;
  flex: none;
  display: flex;
  flex-flow: row;
  align-items: stretch;
  justify-content: center;
  transition: transform 0.3s cubic-bezier(0.215, 0.61, 0.38, 1.399);
}
.testimonials .marquee-slider__list--item {
  color: #000;
  width: 100%;
  height: 100%;
  max-width: 364px;
  min-height: 313px;
  grid-column-gap: 1.6rem;
  border-radius: 0.8rem;
  flex: none;
  display: flex;
  padding: 20px;
  position: relative;
  align-items: center;
  grid-row-gap: 1.6rem;
  justify-content: center;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  background-color: #FFF;
}
.testimonials .marquee-slider__list--item .box {
  width: 100%;
  display: flex;
}
.testimonials .marquee-slider__list--item .box .wrap-sec {
  width: 100%;
}
.testimonials .marquee-slider__list--item .box .wrap-sec .content {
  width: 100%;
}
.testimonials .marquee-slider__list--item .box .wrap-sec .author-sec {
  width: 100%;
  display: flex;
  align-items: center;
}
.testimonials .marquee-slider__list--item .box .wrap-sec .author-sec .pic {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  overflow: hidden;
}
.testimonials .marquee-slider__list--item .box .wrap-sec .author-sec .pic img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.testimonials .marquee-slider__list--item .box .wrap-sec .author-sec .name-sec {
  padding-left: 12px;
}
.testimonials .marquee-slider__list--item .box .wrap-sec .author-sec .name-sec h5 {
  font-size: 16px;
  color: #030D26;
  font-weight: 600;
  margin: 0px;
}
.testimonials .marquee-slider__list--item .box .wrap-sec .author-sec .name-sec p {
  color: #030D26;
  margin: 0;
}

.progress-wrap {
  position: fixed;
  right: 10px;
  bottom: 50px;
  height: 46px;
  width: 46px;
  cursor: pointer;
  display: block;
  border-radius: 50px;
  box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.2);
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all 200ms linear;
  background-color: #F9EF3F;
}

.progress-wrap.active-progress {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.progress-wrap::after {
  position: absolute;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f062";
  text-align: center;
  line-height: 46px;
  font-size: 18px;
  color: #030D26;
  left: 0;
  top: 0;
  height: 46px;
  width: 46px;
  cursor: pointer;
  display: block;
  z-index: 1;
  transition: all 200ms linear;
}

.lightScrollIcon::after {
  color: #ecedf3 !important;
}

.progress-wrap:hover::after {
  opacity: 0;
}

.progress-wrap::before {
  position: absolute;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f062";
  text-align: center;
  line-height: 46px;
  font-size: 18px;
  opacity: 0;
  background-image: linear-gradient(298deg, #F9EF3F, #C9A887);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  left: 0;
  top: 0;
  height: 46px;
  width: 46px;
  cursor: pointer;
  display: block;
  z-index: 2;
  transition: all 200ms linear;
}

.progress-wrap:hover::before {
  opacity: 1;
}

.progress-wrap svg path {
  fill: none;
}

.progress-wrap svg.progress-circle path {
  stroke: #FFF;
  stroke-width: 4;
  box-sizing: border-box;
  transition: all 200ms linear;
}

.blogs-sec {
  width: 100%;
  background-color: #FFF;
}
.blogs-sec .title-head h4, .blogs-sec .title-head h5 {
  color: #0E2562;
}

.item {
  padding: 20px 5px;
}

.blog-box {
  width: 100%;
  transition: 0.3s all ease-in-out;
  position: relative;
}
.blog-box .blog-img {
  width: 100%;
  height: 250px;
  overflow: hidden;
  position: relative;
}
.blog-box .blog-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
}
.blog-box .blog-img::before {
  position: absolute;
  top: 0;
  left: -75%;
  z-index: 2;
  display: block;
  content: "";
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
  transform: skewX(-25deg);
}
.blog-box .content {
  width: 100%;
  padding: 20px 0px;
  min-height: 90px;
  position: relative;
}
.blog-box .content .blog-category {
  position: absolute;
  top: -59px;
  left: 0;
  background-color: #F9EF3F;
  padding: 6px 12px;
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
}
.blog-box .content .blog-category::before {
  width: 11px;
  height: 41px;
  content: "";
  position: absolute;
  left: -11px;
  top: -5px;
  background-image: url(../images/tag.svg);
  background-repeat: no-repeat;
  background-size: 100%;
}
.blog-box .content h5 {
  font-size: 15px;
  font-weight: 400;
  background-image: url(../images/calander-icon.svg);
  background-repeat: no-repeat;
  background-position: 0px 1px;
  padding-left: 23px;
  margin-bottom: 10px;
}
.blog-box .content h6 {
  font-size: 18px;
  font-weight: 600;
}
.blog-box .content h6 a {
  color: #030D26;
}
.blog-box .link {
  width: 100%;
}
.blog-box .link a {
  padding: 10px 20px;
  border: 1px solid #030D26;
  display: inline-block;
  border-radius: 50px;
  color: #030D26;
}
.blog-box .link a:hover {
  background-color: #030D26;
  color: #F9EF3F;
}
.blog-box:hover {
  transform: translateY(-5px);
}
.blog-box:hover .blog-img::before {
  animation: shine 0.75s;
}

.blog-box-img {
  width: 100%;
  padding: 20px 0px;
}
.blog-box-img img {
  width: 100%;
}

.inner-banner {
  width: 100%;
  background-color: #030D26;
  padding: 160px 0px 90px;
  position: relative;
}
.inner-banner::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url(../images/inner-banner-bg.svg);
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0.5;
  left: 0;
  top: 0;
}
.inner-banner .container {
  position: relative;
  z-index: 9;
}
.inner-banner h1 {
  font-size: 48px;
  color: #FFF;
  font-weight: 700;
  text-align: center;
}
.inner-banner h1 span {
  font-weight: 400;
}
.inner-banner nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.inner-banner nav .breadcrumb {
  display: flex;
  justify-content: center;
}
.inner-banner nav .breadcrumb-item {
  color: #FFF;
  text-align: center;
}
.inner-banner nav .breadcrumb-item::before {
  color: #FFF;
}
.inner-banner nav .breadcrumb-item a {
  color: #FFF;
}
.inner-banner nav .breadcrumb-item.active {
  color: #F9EF3F;
}

.inner-about {
  background-color: #FFF;
}
.inner-about .content h4, .inner-about .content h5, .inner-about .content p {
  color: #030D26;
}
.inner-about .content .about-count .box {
  background-color: #F9EF3F;
  border: transparent;
}
.inner-about .content .about-count .box h6 {
  color: #030D26;
}
.inner-about .sub-head h4 {
  font-size: 21px;
  font-weight: 400;
}
.inner-about .sub-head h4 span {
  font-weight: 700;
}
.inner-about .box1 {
  width: 100%;
  background-color: #F9EF3F;
  padding: 20px;
  border-radius: 10px;
  display: flex;
  align-items: center;
}
.inner-about .box1 .icon {
  width: 65px;
}
.inner-about .box1 .icon img {
  width: 100%;
}
.inner-about .box1 .content {
  width: 88%;
  padding-left: 20px;
}
.inner-about .box1 .content h5 {
  font-size: 23px;
  font-weight: 700;
}
.inner-about .solutions-box {
  width: 100%;
  height: 100%;
  background-color: #030D26;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
}
.inner-about .solutions-box .icon {
  width: 100%;
  margin-bottom: 12px;
  text-align: center;
}
.inner-about .solutions-box .icon img {
  height: 60px;
}
.inner-about .solutions-box h5 {
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  color: #F9EF3F;
}
.inner-about .solutions-box p {
  color: #FFF;
}
.inner-about .solutions-box.active {
  background-color: #F9EF3F;
}
.inner-about .solutions-box.active h5, .inner-about .solutions-box.active p {
  color: #030D26;
}

hr {
  border-color: #c1c1c1;
}

.our-team {
  width: 100%;
  padding: 60px 0px;
}
.our-team .title-head h4, .our-team .title-head h5 {
  color: #030D26;
}
.our-team .team-box {
  width: 100%;
  text-align: center;
  padding: 0px 20px;
}
.our-team .team-box .img-sec {
  margin-bottom: 10px;
}
.our-team .team-box .description {
  width: 100%;
}
.our-team .team-box .description h6 {
  font-size: 20px;
  font-weight: 700;
  color: #030D26;
}
.our-team .team-box .description p {
  color: #030D26;
}

.inner-services {
  width: 100%;
  background-color: #FCFCFC;
}
.inner-services .title-head h4, .inner-services .title-head h5 {
  color: #030D26;
}
.inner-services .service-box {
  background-color: #FFF;
  border-color: #EFEFEF;
  box-shadow: 2px 3px 20px #f9f8f8;
}
.inner-services .service-box .content h3 {
  color: #030D26;
}
.inner-services .service-box .content .txt-sec .txt p {
  color: #030D26;
}
.inner-services .service-box .link a {
  color: #030D26;
}

.services-details {
  width: 100%;
}
.services-details .content {
  width: 100%;
}
.services-details .content h4 {
  font-size: 34px;
  font-weight: 400;
  color: #030D26;
}
.services-details .content h4 span {
  font-weight: 700;
}
.services-details .content h5 {
  font-size: 24px;
  font-weight: 600;
  color: #030D26;
  margin-top: 15px;
  margin-bottom: 10px;
}
.services-details .content h5 span {
  font-weight: 700;
}
.services-details .services-img {
  width: 100%;
}
.services-details .services-img img {
  width: 100%;
}
.services-details .what-we-do {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
.services-details .what-we-do .box {
  width: 31%;
  padding: 20px;
  border-radius: 10px;
  border: 1px dashed #030D26;
}
.services-details .what-we-do .box h6 {
  font-size: 18px;
  font-weight: 700;
  color: #030D26;
}
.services-details .what-we-do .box ul li {
  position: relative;
  padding-left: 18px;
}
.services-details .what-we-do .box ul li::before {
  content: "";
  left: 0;
  top: 11px;
  width: 10px;
  height: 3px;
  background-color: #030D26;
  position: absolute;
  border-radius: 10px;
}

.getquote-popup {
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}
.getquote-popup .modal-body {
  background-color: #F9EF3F;
  border-radius: 10px;
  display: flex;
  position: relative;
  padding: 40px;
  background-image: url(../images/logo-pattern.svg);
  background-position: center center;
  background-repeat: no-repeat;
}
.getquote-popup .modal-body .btn-close {
  position: absolute;
  right: 15px;
  top: 14px;
}
.getquote-popup .modal-body .quote-contact {
  width: 100%;
  display: flex;
  align-items: center;
  padding-right: 30px;
}
.getquote-popup .modal-body .quote-contact .text-box h5 {
  font-size: 24px;
  font-weight: 700;
  color: #030D26;
  text-align: left;
}
.getquote-popup .modal-body .quote-contact .text-box p {
  text-align: left;
}
.getquote-popup .modal-body .quote-contact .text-box ul li a {
  padding: 10px 10px 10px 29px;
  display: block;
  color: #030D26;
  font-size: 18px;
  font-weight: 600;
  background-repeat: no-repeat;
  background-position: 0px 15px;
  text-align: left;
}
.getquote-popup .modal-body .quote-contact .text-box ul li a:hover {
  background-color: rgba(225, 215, 61, 0.7);
  border-radius: 10px;
  padding: 10px 10px 10px 41px;
  background-position: 12px 15px;
}
.getquote-popup .modal-body .quote-contact .text-box ul li a.phone-icon {
  background-image: url(../images/phone-icon.svg);
}
.getquote-popup .modal-body .quote-contact .text-box ul li a.mail-icon {
  background-image: url(../images/mail-icon.svg);
}
.getquote-popup .modal-body .quote-form-sec {
  width: 100%;
}
.getquote-popup .modal-body .quote-form-sec .form-box {
  width: 100%;
  padding: 30px;
  background-color: #FFF;
  border-radius: 10px;
}
.getquote-popup .modal-body .quote-form-sec .form-box .form-control {
  width: 100%;
  height: 55px;
  margin-bottom: 6px;
}
.getquote-popup .modal-body .quote-form-sec .form-box .form-control.txt {
  height: 100px;
}
.getquote-popup .modal-body .quote-form-sec .form-box .btn-send {
  width: 100%;
  height: 55px;
  background-color: #030D26;
  border: none;
  border-radius: 6px;
  color: #F9EF3F;
}
.getquote-popup .modal-body .quote-contact {
  width: 100%;
}

.inner-works-sec {
  width: 100%;
}
.inner-works-sec .title-head h4, .inner-works-sec .title-head h5 {
  color: #030D26;
}
.inner-works-sec .filterbox {
  padding: 30px 108px;
}
.inner-works-sec .filter-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px 0 35px;
  margin-bottom: 20px;
}
.inner-works-sec .navigation {
  display: flex;
  justify-content: center;
  gap: 5px;
  flex-wrap: wrap;
}
.inner-works-sec .navigation a {
  padding: 12px 18px;
  text-decoration: none;
  border-radius: 50px;
  border: 1px solid #030D26;
  transition: all 0.5s;
  color: #030D26;
}
.inner-works-sec .navigation a:hover, .inner-works-sec .navigation a.active {
  background-color: #030D26;
  color: #F9EF3F;
}
.inner-works-sec .main-wrap.wrap-inner {
  padding: 0px;
}
.inner-works-sec .main-wrap {
  padding: 32px 0px 40px;
  width: 100%;
  box-sizing: border-box;
}
.inner-works-sec #content {
  position: relative;
  margin: 0 auto;
  padding: 0px;
  font-size: 14px;
}
.inner-works-sec #main.main-full {
  float: none;
  width: none;
  max-width: none;
}
.inner-works-sec ol.content {
  margin: 0 auto;
}
.inner-works-sec .content {
  display: grid;
  list-style: none;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 36px;
}
.inner-works-sec .work {
  position: relative;
  overflow: hidden;
  height: 300px;
  border-radius: 10px;
}
.inner-works-sec .work img {
  width: 300px;
  height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
}
.inner-works-sec .work .project-type {
  padding: 20px;
  background-color: rgba(249, 239, 63, 0.8);
  position: absolute;
  left: 0;
  bottom: -20px;
  width: 100%;
  transition: 0.3s all ease-in-out;
  opacity: 0;
}
.inner-works-sec .work .project-type h6 {
  color: #000;
  margin-bottom: 6px;
  font-weight: 700;
}
.inner-works-sec .work .project-type p {
  color: #030D26;
  margin: 0;
}
.inner-works-sec .work:hover .project-type {
  opacity: 1;
  bottom: 0;
}

.works-details {
  width: 100%;
}
.works-details .poster {
  width: 100%;
  margin-bottom: 30px;
}
.works-details .poster img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
}
.works-details h5 {
  font-size: 22px;
  font-weight: 700;
  color: #030D26;
}
.works-details .board-img {
  width: 100%;
}
.works-details .board-img img {
  width: 100%;
  border-radius: 10px;
}
.works-details .box {
  width: 100%;
  background-color: #FFF;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 2px 3px 16px #f3f3f3;
  border: 1px solid #f7f7f7;
  transition: 0.3s all ease-in-out;
}
.works-details .box h3 {
  font-size: 18px;
}
.works-details .box h4 {
  font-size: 30px;
  font-weight: 600;
}
.works-details .box ul li {
  margin-bottom: 10px;
}
.works-details .box ul li span {
  font-weight: 600;
}
.works-details .box a {
  padding: 15px 22px;
  border: 1px solid #030D26;
  border-radius: 50px;
  display: inline-block;
  color: #030D26;
  margin-top: 20px;
}
.works-details .box a:hover {
  background-color: #030D26;
  color: #F9EF3F;
}

.mrgtop {
  top: 96px;
}

.inner-blogs {
  width: 100%;
}
.inner-blogs .title-head h4, .inner-blogs .title-head h5 {
  color: #030D26;
}
.inner-blogs .blog-content figure img {
  width: 100%;
  border-radius: 10px;
}
.inner-blogs .blog-content p {
  text-align: justify;
}
.inner-blogs .blog-content h4 {
  font-size: 24px;
  font-weight: 600;
  color: #030D26;
}
.inner-blogs .blog-content h2 {
  font-size: 34px;
  font-weight: 600;
  color: #030D26;
  text-align: center;
  margin-bottom: 15px;
}
.inner-blogs .blog-content .category-txt {
  width: 100%;
  font-size: 18px;
  text-align: center;
  font-weight: 600;
}
.inner-blogs .blog-content .category-txt span {
  margin: 0px 10px;
}
.inner-blogs .blog-content .blog-details-img {
  width: 100%;
  height: 400px;
}
.inner-blogs .blog-content .blog-details-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
}
.inner-blogs .blog-content h6 {
  font-size: 24px;
  font-weight: 600;
  color: #030D26;
}
.inner-blogs .blog-content ul {
  margin-bottom: 15px;
}
.inner-blogs .blog-content ul li {
  margin-bottom: 10px;
  background-image: url(../images/points.svg);
  background-repeat: no-repeat;
  background-position: 0px 1px;
  padding-left: 26px;
}

.contact-page {
  width: 100%;
}
.contact-page .first-sec {
  width: 100%;
  padding: 60px 0px;
  background-color: #F6F6F6;
}
.contact-page .first-sec .title-head h5, .contact-page .first-sec .title-head p {
  color: #030D26;
}
.contact-page .first-sec .box {
  width: 100%;
  height: 100%;
  background-color: #FFF;
  padding: 20px;
  border-radius: 10px;
}
.contact-page .first-sec .box h6 {
  font-size: 24px;
  font-weight: 600;
}
.contact-page .first-sec .box .address {
  width: 100%;
  background-image: url(../images/map-icon.svg);
  background-repeat: no-repeat;
  background-position: 0px 0px;
  padding-left: 30px;
}
.contact-page .first-sec .box .address p {
  margin: 0;
}
.contact-page .first-sec .box ul li {
  margin-bottom: 6px;
  padding-left: 30px;
}
.contact-page .first-sec .box ul li a {
  color: #030D26;
}
.contact-page .first-sec .box ul li.phone {
  background-image: url(../images/phone-icon.svg);
  background-repeat: no-repeat;
  background-position: 0px 4px;
}
.contact-page .first-sec .box ul li.mail {
  background-image: url(../images/mail-icon.svg);
  background-repeat: no-repeat;
  background-position: 0px 4px;
}
.contact-page .form-sec {
  width: 100%;
  background-color: #FFF;
}
.contact-page .form-sec .form-box {
  width: 100%;
  border-radius: 10px;
  padding: 35px;
  background-color: #F9EF3F;
}
.contact-page .form-sec .form-box .title-head {
  text-align: left;
}
.contact-page .form-sec .form-box .title-head h4 {
  text-align: left;
  justify-content: left;
  color: #030D26;
}
.contact-page .form-sec .form-box .title-head h5 {
  text-align: left;
  color: #030D26;
  font-size: 30px;
}
.contact-page .form-sec .form-box .form-wrapper .form-control {
  width: 100%;
  height: 60px;
  border-radius: 50px;
  padding: 20px 25px;
  border: none;
}
.contact-page .form-sec .form-box .form-wrapper .txt-sec {
  height: 170px;
  border-radius: 20px;
  resize: none;
}
.contact-page .form-sec .form-box .form-wrapper .send {
  padding: 15px 20px;
  border: 2px solid #030D26;
  border-radius: 50px;
  font-weight: 600;
}
.contact-page .form-sec .form-box .form-wrapper .send:hover {
  background-color: #030D26;
  color: #F9EF3F;
}
.contact-page .form-sec .contact-img {
  width: 100%;
  margin: 0 -50px;
}
.contact-page .form-sec .contact-img img {
  height: auto;
  max-width: 100%;
  vertical-align: top;
}
.contact-page .form-sec .contact-banner {
  padding: 40px 30px;
  color: #ffffff;
  background-color: #030D26;
  box-shadow: 0px 10px 20px 5px rgba(0, 0, 0, 0.05);
  border-radius: 30px;
}
.contact-page .form-sec .contact-banner .contact-banner-icon {
  margin-bottom: 10px;
}
.contact-page .form-sec .contact-banner .section-disc {
  width: 100%;
  text-align: center;
}
.contact-page .form-sec .contact-banner .section-disc a {
  border: 2px solid #F9EF3F;
  padding: 12px 22px;
  color: #F9EF3F;
  border-radius: 50px;
  display: inline-block;
  margin-top: 10px;
}
.contact-page .form-sec .contact-banner .section-disc a:hover {
  background-color: #F9EF3F;
  color: #030D26;
}

.whatsapp {
  width: 60px;
  height: 60px;
  position: fixed;
  z-index: 999;
  bottom: 46px;
  left: 20px;
  background-color: #068238;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.whatsapp img {
  width: 60%;
}
.whatsapp .wave {
  width: 60px;
  height: 60px;
  background: #068238;
  animation: sonarWave 2s linear infinite;
  opacity: 0;
  z-index: -1;
  pointer-events: none;
  position: absolute;
  border-radius: 50%;
  top: 0;
}
@keyframes sonarWave {
  from {
    opacity: 0.4;
  }
  to {
    transform: scale(3);
    opacity: 0;
  }
}

.map {
  width: 100%;
  border-top: 10px solid #030D26;
  display: flex;
}
.map .box {
  width: 50%;
  border: 4px solid #030D26;
  border-top: none;
}
.map iframe {
  width: 100%;
  height: 500px;
  display: block;
}

.careers-sec {
  width: 100%;
}
.careers-sec .title-head {
  margin-bottom: 20px;
}
.careers-sec .title-head h3 {
  text-align: left;
  font-size: 34px;
  color: #030D26;
  font-weight: 400;
}
.careers-sec .careers-box {
  width: 100%;
  height: 100%;
  background-color: #F9EF3F;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 1px 3px 10px #f3f3f3;
  border: 1px solid #FFF;
}
.careers-sec .careers-box .icon {
  margin-bottom: 15px;
}
.careers-sec .careers-box .icon img {
  height: 60px;
}
.careers-sec .careers-box h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}
.careers-sec .careers-box p {
  text-align: justify;
  margin: 0;
}
.careers-sec .opening-box {
  width: 100%;
  padding: 20px;
  border-radius: 6px;
  box-shadow: 5px 2px 17px #f3f3f3;
  border: 1px solid #efefef;
  transition: 0.3s all ease-in-out;
}
.careers-sec .opening-box:hover {
  box-shadow: 5px 2px 17px rgba(4, 14, 37, 0.2);
}
.careers-sec .opening-box h5 {
  font-size: 22px;
  position: relative;
  padding-right: 90px;
}
.careers-sec .opening-box h5 span {
  background-color: #F9EF3F;
  padding: 3px 6px;
  font-size: 14px;
  position: absolute;
  right: 0;
  top: 0;
}
.careers-sec .opening-box p {
  color: #030D26;
  font-weight: 400;
}
.careers-sec .opening-box p a {
  color: #030D26;
  font-weight: 600;
}
.careers-sec .career-popup .modal-body {
  position: relative;
  padding: 30px;
}
.careers-sec .career-popup .modal-body .btn-close {
  position: absolute;
  right: 20px;
  top: 20px;
}
.careers-sec .career-popup .modal-body .career-contact h5 {
  font-size: 24px;
  margin-bottom: 20px;
}
.careers-sec .career-popup .modal-body .career-contact .form-control {
  width: 100%;
  height: 60px;
}
.careers-sec .career-popup .modal-body .career-contact .form-control.textarea {
  width: 100%;
  height: 100px;
}
.careers-sec .career-popup .modal-body .career-contact .apply-btn {
  border: 1px solid #030D26;
  padding: 9px 23px;
  border-radius: 50px;
  color: #030D26;
  display: inline-block;
}
.careers-sec .career-popup .modal-body .career-contact .apply-btn:hover {
  background-color: #030D26;
  color: #F9EF3F;
}
.careers-sec .career-popup .modal-body .career-contact .fileupload {
  width: 100%;
  height: 60px;
  border: 1px solid #dee2e6;
  border-radius: 6px;
  display: flex;
  align-items: center;
  padding: 10px;
  position: relative;
}
.careers-sec .career-popup .modal-body .career-contact .fileupload .icon {
  width: 34px;
}
.careers-sec .career-popup .modal-body .career-contact .fileupload .icon img {
  width: 100%;
}
.careers-sec .career-popup .modal-body .career-contact .fileupload .txt {
  width: 90%;
  padding-left: 15px;
}
.careers-sec .career-popup .modal-body .career-contact .fileupload .upload {
  width: 100%;
  position: absolute;
  left: 0;
  opacity: 0;
}

.faq-sec {
  width: 100%;
  padding: 60px 0px;
}
.faq-sec h2 {
  font-size: 34px;
  color: #030D26;
  font-weight: 600;
  margin-bottom: 15px;
}
.faq-sec h3 {
  font-size: 18px;
  color: #030D26;
  font-weight: 600;
  margin-bottom: 15px;
}
.faq-sec h4 {
  font-size: 24px;
  color: #030D26;
  font-weight: 600;
  margin-top: 30px;
  margin-bottom: 15px;
}
.faq-sec .accordion-header {
  margin-bottom: 0px;
}
.faq-sec .accordion {
  margin-bottom: 30px;
}
.faq-sec .accordion-button {
  font-size: 18px;
  color: #030D26;
  font-weight: 600;
}
.faq-sec .accordion-button:focus {
  box-shadow: none;
}
.faq-sec .accordion-button:not(.collapsed) {
  background-color: #F9EF3F;
}

.f-social-media {
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 5px;
  padding-bottom: 20px;
}
.f-social-media a {
  width: 39px;
  height: 39px;
  border: 1px solid #F9EF3F;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  color: #F9EF3F;
  border-radius: 50%;
  margin-bottom: 6px;
}
.f-social-media a:hover {
  background-color: #F9EF3F;
  color: #030D26;
  transform: scale(1.2);
}

footer {
  width: 100%;
  background-color: #030D26;
  padding-top: 60px;
  background-image: url(../images/footer-bg.png);
  background-position: center 0px;
  background-repeat: no-repeat;
  text-align: center;
  position: relative;
}
footer h5 {
  text-align: center;
  font-size: 22px;
  font-weight: 600;
  color: #F9EF3F;
}
footer h6 {
  font-size: 124px;
  font-weight: 700;
  color: #FFF;
}
footer .get-toch {
  width: 100%;
  text-align: center;
  position: relative;
}
footer .get-toch a {
  width: 117px;
  height: 117px;
  border-radius: 50%;
  background-color: #F9EF3F;
  display: inline-block;
  font-weight: 600;
  color: #030D26;
  padding-top: 24px;
  font-size: 16px;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  top: -219px;
}
footer .get-toch a span {
  width: 100%;
  display: block;
}
footer .get-toch a:hover {
  transform: scale(1.2);
}
footer .f-nav {
  width: 100%;
  padding: 30px 0px;
}
footer .f-nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
footer .f-nav ul li {
  padding: 10px 10px;
}
footer .f-nav ul li a {
  color: #8892AF;
  font-weight: 600;
}
footer .f-nav ul li a:hover {
  color: #F9EF3F;
}
footer .f-contact {
  width: 100%;
  display: flex;
  justify-content: center;
}
footer .f-contact ul {
  width: auto;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  border: 1px dashed #F9EF3F;
  background-color: #151D27;
  border-radius: 10px;
  padding: 20px;
}
footer .f-contact ul li {
  color: #F9EF3F;
  padding: 7px 15px;
}
footer .f-contact ul li a {
  color: #F9EF3F;
}
footer .f-contact ul li a:hover {
  color: #FFF;
}
footer .copyright {
  text-align: center;
  padding: 30px;
}
footer .copyright p {
  margin: 0;
  color: #8892AF;
}

@media (max-width: 1200px) {
  header .nav-link {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }
  header .navbar-brand {
    width: 196px;
  }
  :root {
    --marquee-elements-displayed: 4;
  }
}
@media (max-width: 991px) {
  .p100 {
    padding: 30px 0px;
  }
  header .get-quote {
    display: none;
  }
  header .nav-item {
    text-align: center;
  }
  header .navbar-collapse {
    margin-top: 12px;
  }
  header {
    position: relative;
    background-color: #FFF;
    padding: 10px 0px;
  }
  header .desktop-logo {
    display: none;
  }
  header .mobile-logo {
    display: block;
  }
  .banner-area .banner_title h3 {
    font-size: 17px;
  }
  .banner-area .banner_title h4 {
    font-size: 34px;
  }
  .banner-area .betweenit-icon {
    width: 165px;
    height: 165px;
  }
  .banner-area .betweenit-icon .icon2 {
    left: 26%;
    top: 25%;
  }
  .navbar-nav {
    background: #102761;
    padding: 22px;
    border-radius: 10px;
  }
  :root {
    --marquee-elements-displayed: 3;
  }
  footer h6 {
    font-size: 70px;
  }
  footer .get-toch a {
    position: relative;
    top: 0;
  }
  .hm-about .about-img-sec .img2 {
    display: none;
  }
  .hm-about .about-img-sec .img1 {
    width: 100%;
    margin-bottom: 30px;
  }
  .hm-about .content .about-count {
    flex-wrap: initial;
  }
  .hm-about .content .about-count .box {
    width: 100%;
  }
  .hm-about .about-img-sec .project-count {
    bottom: 20px;
  }
  .inner-banner {
    padding: 60px 0px 60px;
  }
  .inner-banner h1 {
    font-size: 30px;
  }
  .contact-page .form-sec .contact-img {
    text-align: center;
    padding-top: 30px;
  }
  .contact-page .form-sec .contact-banner {
    margin-bottom: 20px;
  }
  header .mb-nav {
    display: block;
  }
  .navbar-toggler {
    display: none;
  }
  .getquote-popup .modal-body {
    display: block;
  }
  .getquote-popup .modal-body {
    padding: 20px;
  }
  .careers-sec .career-popup .modal-body {
    padding: 22px;
  }
  .banner-area .banner_title {
    top: 120px;
    text-align: center;
    padding: 0px 80px;
  }
  .banner-area .icon-sec {
    justify-content: center;
    margin-bottom: 20px;
  }
  .banner-area .banner_title h2, .banner-area .banner_title h1 {
    justify-content: center;
  }
  header.sticky {
    position: relative;
    background-color: #FFF;
  }
  .services-details .what-we-do .box {
    width: 100%;
  }
  .faq-sec h2, .faq-sec h4 {
    font-size: 24px;
  }
  .faq-sec .accordion-button {
    font-size: 16px;
  }
  .more-services .sticky-top {
    padding: 30px 0px;
  }
}
@media (max-width: 768px) {
  .p100 {
    padding: 40px 0px;
  }
  .banner-area .banner_title {
    top: 0;
    bottom: 0;
    margin-top: 0px;
  }
  .banner-area .icon-sec {
    justify-content: center;
    margin-bottom: 12px;
    padding-right: 15px;
  }
  .banner-area {
    text-align: center;
  }
  .banner-area .banner_title h3 {
    justify-content: center;
  }
  :root {
    --marquee-elements-displayed: 2;
  }
  footer h6 {
    font-size: 41px;
  }
  .hm-about .about-img-sec .project-count {
    display: none;
  }
  .hm-about .content h5 {
    font-size: 28px;
  }
  .more-services .view-box li {
    display: block;
  }
  .more-services .view-box li .title {
    width: 100%;
    padding-right: 0px;
  }
  .more-services .view-box li .title::after {
    display: none;
  }
  .more-services .view-box li .description {
    padding-left: 0px;
  }
  .more-services .sticky-top {
    padding-bottom: 0px;
  }
  .hm-about .content .about-count {
    display: block;
  }
  .hm-about .content .about-count .box {
    margin-bottom: 10px;
  }
  .inner-about .box1 {
    display: block;
  }
  .inner-about .box1 .icon {
    width: 100%;
    text-align: center;
    margin-bottom: 10px;
  }
  .inner-about .box1 .icon img {
    width: 64px;
  }
  .inner-about .box1 .content {
    width: 100%;
    text-align: center;
    padding-left: 0px;
  }
  .services-details .what-we-do {
    display: block;
  }
  .services-details .what-we-do .box {
    margin-bottom: 10px;
  }
  .services-details .content h4, .inner-banner h1, .title-head h5, .inner-blogs .blog-content h2, .careers-sec .title-head h3 {
    font-size: 24px;
  }
  .inner-works-sec .work {
    height: auto;
  }
  .inner-banner h1 {
    font-weight: 400;
  }
  .inner-works-sec .work img {
    width: 100%;
    height: 100%;
  }
  .contact-page .form-sec .form-box {
    padding: 20px;
  }
  .contact-page .form-sec .contact-img {
    margin: 0 0px;
  }
  .contact-page .first-sec {
    padding: 30px 0px;
  }
  .banner-area .banner_title h1 {
    font-size: 30px;
  }
}
@media (max-width: 576px) {
  .banner-area .social-media {
    display: none;
  }
  :root {
    --marquee-elements-displayed: 1;
  }
  .works-sec .mqs-item .project-type {
    bottom: 0;
    opacity: 1;
  }
  .contact-page .form-sec .contact-banner {
    border-bottom-right-radius: 30px;
    border-bottom-left-radius: 30px;
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
  }
  .banner-area .banner_title {
    padding: 0px 0px;
  }
}/*# sourceMappingURL=main.css.map */