@import url("https://fonts.googleapis.com/css2?family=Rajdhani:wght@300;400;500;600;700&display=swap");
ul, ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

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

.form-control {
  font-size: 16px;
  font-weight: 500;
}

* {
  margin: 0;
  padding: 0;
}

input:focus, textarea:focus {
  border-color: #1f8090 !important;
  box-shadow: 0 0 0 0.25rem #dafaff !important;
}

:focus {
  outline: none !important;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Rajdhani", sans-serif;
}

p {
  font-family: "Rajdhani", sans-serif;
  line-height: 24px;
  font-size: 18px;
  font-weight: 500;
}

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

html, body {
  overflow-x: clip;
}

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

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

::-webkit-scrollbar-thumb:hover {
  background: #2477B4;
}

: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);
}

body {
  font-family: "Rajdhani", sans-serif;
  font-size: 18px;
  font-weight: 600;
  background-color: #FFF;
  background-image: url(../images/bg-pattern.png);
  background-repeat: repeat;
}

.pushy a {
  font-size: 18px;
  text-transform: uppercase;
}

.pushy-content .mb-logo {
  padding: 15px;
  background-color: #FFF;
  margin-bottom: 10px;
}
.pushy-content .mb-logo img {
  width: 90px;
}
.pushy-content .media {
  position: absolute;
  left: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  padding: 6px 31px;
  gap: 5px;
}
.pushy-content .media a {
  width: 43px;
  height: 43px;
  display: flex;
  font-size: 18px;
  align-items: center;
  justify-content: center;
  border: 1px solid #2477B4;
  border-radius: 50%;
  color: #2477B4;
  padding: 0;
}

.p-90 {
  padding: 90px 0px;
}

.whiteHeader {
  background: #FFF;
  box-shadow: 2px 3px 12px rgba(0, 0, 0, 0.2);
  padding: 18px 0px;
}

.nav-up {
  top: 0px;
}

header {
  width: 100%;
  padding: 20px 0px;
  position: fixed;
  z-index: 999;
  transition: 0.3s all ease-in-out;
}
header .header-wrap {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header .header-wrap .logo img {
  filter: brightness(0) invert(1);
  width: 69px;
}
header .header-wrap .mb-nav {
  display: none;
}
header .header-wrap .mb-nav img {
  filter: brightness(0) invert(1);
}
header .header-wrap .d-nav {
  display: flex;
  align-items: center;
}
header .header-wrap .d-nav li a {
  padding: 0px 18px;
  color: #FFF;
  font-weight: 500;
  text-transform: uppercase;
}
header .header-wrap .d-nav li a:hover {
  color: #26c1ff;
}
header .header-wrap .d-nav li.active a {
  color: #26c1ff;
}
header .header-wrap .enquiry-btn .link-btn {
  background-color: #FFF;
  display: inline-block;
  padding: 10px 25px;
  color: #000;
  position: relative;
  border-radius: 6px;
}
header .header-wrap .enquiry-btn .link-btn::before {
  content: "";
  position: absolute;
  border: #FFF solid 2px;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  transition-duration: 0.2s;
  transition-property: top, right, bottom, left;
  border-radius: 6px;
}
header .header-wrap .enquiry-btn .link-btn:hover {
  background-color: #2477B4;
  color: #FFF;
}
header .header-wrap .enquiry-btn .link-btn:hover::before {
  top: -4px;
  right: -4px;
  bottom: -4px;
  left: -4px;
}

.whiteHeader .header-wrap .logo img {
  filter: brightness(1) invert(0) !important;
  width: 69px;
}
.whiteHeader .header-wrap .d-nav li a {
  color: #000;
}
.whiteHeader .header-wrap .d-nav li a:hover {
  color: #2477B4;
}
.whiteHeader .header-wrap .d-nav li.active a {
  color: #2477B4;
}
.whiteHeader .header-wrap .enquiry-btn .link-btn {
  background-color: #2477B4;
  color: #FFF;
}
.whiteHeader .header-wrap .enquiry-btn .link-btn::before {
  content: "";
  position: absolute;
  border: #2477B4 solid 2px;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  transition-duration: 0.2s;
  transition-property: top, right, bottom, left;
}
.whiteHeader .header-wrap .mb-nav img {
  filter: brightness(1) invert(0) !important;
}

.banner {
  width: 100%;
  height: 100vh;
  position: relative;
}
.banner video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.banner::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: linear-gradient(to bottom, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%);
}
.banner .mobile-mode {
  display: none;
}
.banner .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 .banner_title h6, .banner .banner_title h5 {
  font-size: 3.5vw;
  color: #FFF;
  animation-name: fadeInUp;
  animation-duration: 2.2s;
  animation-fill-mode: both;
  text-transform: uppercase;
  font-weight: 600;
}
.banner .banner_title p {
  font-weight: 400;
}
.banner .banner_title .icon-sec {
  display: flex;
  justify-content: end;
}
.banner .circle {
  position: relative;
  width: 200px;
  height: 200px;
  border-radius: 100vmax;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #FFF;
  padding: 12px;
}
.banner .icon-logo {
  position: absolute;
  width: 130px;
  height: 130px;
  background: url("../images/icon-logo.svg");
  background-repeat: no-repeat;
  background-size: 86px;
  border-radius: 100vmax;
  background-position: center;
  border: 1px solid #FFF;
  padding: 12px;
}
.banner .text {
  position: absolute;
  width: 100%;
  height: 100%;
  font-family: consolas;
  color: #FFF;
  font-size: 18px;
  animation: textRotation 8s linear infinite;
  text-transform: uppercase;
  letter-spacing: 10px;
}
@keyframes textRotation {
  to {
    transform: rotate(360deg);
  }
}
.banner .text span {
  position: absolute;
  left: 50%;
  font-size: 1.2em;
  transform-origin: 0 100px;
}

.our-testimonials-sec {
  width: 100%;
  background-color: #FFF;
}
.our-testimonials-sec .head-sec h6 {
  font-size: 35px;
  text-transform: uppercase;
  color: #000;
  font-weight: 300;
  text-align: center;
}
.our-testimonials-sec .box {
  width: 100%;
  height: 100%;
  border: 1px solid #cbcad3;
  padding: 30px;
  border-radius: 10px;
  transition: 0.3s all ease-in-out;
  position: relative;
  padding-bottom: 65px;
}
.our-testimonials-sec .box .content {
  width: 100%;
  background-image: url(../images/quote-icon.svg);
  background-repeat: no-repeat;
  background-position: 0px 0px;
  padding-top: 37px;
}
.our-testimonials-sec .box .author {
  width: 100%;
  display: flex;
  align-items: center;
  position: absolute;
  bottom: 12px;
  left: 30px;
}
.our-testimonials-sec .box .author .logo {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  overflow: hidden;
}
.our-testimonials-sec .box .author .logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.our-testimonials-sec .box .author .name {
  padding-left: 10px;
}
.our-testimonials-sec .box .author .name h4 {
  font-size: 18px;
  margin: 0;
}
.our-testimonials-sec .box .author .name p {
  margin: 0;
}
.our-testimonials-sec .box:hover {
  box-shadow: 0 10px 21px 0 rgba(206, 208, 218, 0.49);
}

.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: #2477B4;
}

.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: #FFF;
  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, #2477B4, #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 {
  filter: brightness(1);
}

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

.whatsapp-icon .btn-whatsapp-pulse {
  background: #25d366;
  color: white;
  position: fixed;
  bottom: 10px;
  right: 20px;
  font-size: 40px;
  display: flex;
  z-index: 99;
  justify-content: center;
  align-items: center;
  width: 0;
  height: 0;
  padding: 28px;
  text-decoration: none;
  border-radius: 50%;
  animation-name: pulse;
  animation-duration: 1.5s;
  animation-timing-function: ease-out;
  animation-iteration-count: infinite;
}
.whatsapp-icon .btn-whatsapp-pulse-border {
  bottom: 115px;
  right: 6px;
  animation-play-state: paused;
}
.whatsapp-icon .btn-whatsapp-pulse-border::before {
  content: "";
  position: absolute;
  border-radius: 50%;
  padding: 25px;
  border: 5px solid #25d366;
  opacity: 0.75;
  animation-name: pulse-border;
  animation-duration: 1.5s;
  animation-timing-function: ease-out;
  animation-iteration-count: infinite;
}
@keyframes pulse-border {
  0% {
    padding: 25px;
    opacity: 0.75;
  }
  75% {
    padding: 50px;
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

.our-sector {
  width: 100%;
  padding: 10px 0px 80px 0px;
}

.sector-wrap {
  width: 100%;
  display: flex;
  position: relative;
  padding-left: 370px;
}
.sector-wrap .img-sec {
  width: 366px;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0;
  z-index: 1;
  border-radius: 20px;
  border: 1px solid #2477B4;
  display: flex;
  justify-content: center;
  align-items: center;
}
.sector-wrap .img-sec img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px;
}
.sector-wrap .content {
  width: 100%;
  background-color: #2477B4;
  padding: 60px 40px;
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  border-radius: 20px;
}
.sector-wrap .content .headsec {
  width: 100%;
}
.sector-wrap .content .headsec h5 {
  font-size: 22px;
  text-transform: uppercase;
  color: #FFF;
  font-weight: 400;
}
.sector-wrap .content .headsec h6 {
  font-size: 35px;
  text-transform: uppercase;
  color: #FFF;
  font-weight: 600;
}
.sector-wrap .content .tab-sec {
  width: 100%;
  padding-left: 30px;
}
.sector-wrap .content .tab-sec .accordion-button {
  background-color: transparent;
  padding: 17px 0px;
  color: #FFF;
  text-transform: uppercase;
  box-shadow: none;
  font-size: 18px;
  font-weight: 600;
}
.sector-wrap .content .tab-sec .accordion-button::after {
  background-image: none;
  content: "+";
  font-size: 18px;
  display: flex;
  align-items: center;
}
.sector-wrap .content .tab-sec .accordion-button:not(.collapsed)::after {
  content: "-";
  transform: none;
}
.sector-wrap .content .tab-sec .accordion-button span {
  padding-right: 15px;
}
.sector-wrap .content .tab-sec .accordion-button:focus {
  outline: none;
  box-shadow: none;
}
.sector-wrap .content .tab-sec .accordion-item {
  background-color: transparent;
  border-bottom: 1px solid #4194CF;
}
.sector-wrap .content .tab-sec .accordion-item:first-child .accordion-button {
  border-top: 1px solid #4194CF;
}
.sector-wrap .content .tab-sec .accordion-item .accordion-body {
  color: #FFF;
  padding: 0px 35px 11px 35px;
}

.count-sec {
  width: 100%;
}
.count-sec .box {
  text-align: center;
  position: relative;
}
.count-sec .box h3 {
  font-size: 110px;
  font-weight: 700;
  color: #2477B4;
}
.count-sec .box .label {
  background-color: #FFF;
  padding: 3px 15px;
  text-transform: uppercase;
  font-weight: 600;
  position: absolute;
  margin: auto;
  top: 108px;
  right: 52px;
  font-size: 18px;
}

.solutions-scroll {
  width: 100%;
  background-color: #000;
}
.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, #000 0%, transparent 100%);
}
.solutions-scroll .marquee::after {
  right: 0;
  background: linear-gradient(to left, #000 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: 400;
  color: #FFF;
  background-image: url(../images/star.svg);
  background-repeat: no-repeat;
  background-position: 0px 26px;
}

.hm-services {
  width: 100%;
}
.hm-services .header-sec {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 20px;
}
.hm-services .header-sec .header-title {
  width: 40%;
}
.hm-services .header-sec .header-title h5 {
  font-size: 22px;
  text-transform: uppercase;
  color: #000;
  font-weight: 500;
}
.hm-services .header-sec .header-title h6 {
  font-size: 35px;
  text-transform: uppercase;
  color: #000;
  font-weight: 600;
}
.hm-services .header-sec .link {
  background-color: #2477B4;
  display: inline-block;
  padding: 13px 25px;
  color: #FFF;
  position: relative;
  border-radius: 6px;
}
.hm-services .header-sec .link::before {
  content: "";
  position: absolute;
  border: #2477B4 solid 2px;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  transition-duration: 0.2s;
  transition-property: top, right, bottom, left;
  border-radius: 6px;
}
.hm-services .header-sec .link:hover::before {
  top: -4px;
  right: -4px;
  bottom: -4px;
  left: -4px;
}
.hm-services .box-item {
  padding: 80px 60px;
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 15px;
}
.hm-services .box-item .head {
  font-size: 35px;
  font-weight: 600;
  color: #FFF;
}
.hm-services .box-item .head span {
  font-weight: 400;
  padding-right: 15px;
}
.hm-services .box-item .description-sec {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.hm-services .box-item .description-sec .content {
  width: 70%;
}
.hm-services .box-item .description-sec .content .txt-sec {
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 15px;
}
.hm-services .box-item .description-sec .content p {
  color: #FFF;
}
.hm-services .box-item .description-sec .content .more {
  margin-top: 10px;
  background-color: #FFF;
  display: inline-block;
  padding: 10px 25px;
  color: #000;
  position: relative;
  border-radius: 6px;
}
.hm-services .box-item .description-sec .content .more::before {
  content: "";
  position: absolute;
  border: #FFF solid 2px;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  transition-duration: 0.2s;
  transition-property: top, right, bottom, left;
  border-radius: 6px;
}
.hm-services .box-item .description-sec .content .more:hover::before {
  top: -4px;
  right: -4px;
  bottom: -4px;
  left: -4px;
}
.hm-services .box-item .description-sec .img-sec {
  position: relative;
  margin-top: -40px;
  width: 206px;
  height: 206px;
}
.hm-services .box-item .description-sec .img-sec img {
  width: 100%;
  height: 100%;
}
.hm-services .box-item:nth-child(1)::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  opacity: 0.9;
  background: linear-gradient(to right, rgb(0, 67, 118) 0%, rgb(0, 0, 0) 100%);
}
.hm-services .box-item:nth-child(2)::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  opacity: 0.8;
  background: linear-gradient(to right, rgb(0, 2, 90) 40%, rgb(0, 0, 0) 100%);
}
.hm-services .box-item:nth-child(3)::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  opacity: 0.8;
  background: linear-gradient(to right, rgb(0, 67, 118) 0%, rgb(0, 0, 0) 100%);
}
.hm-services .box-item:nth-child(4)::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  opacity: 0.8;
  background: linear-gradient(to right, rgb(0, 2, 90) 40%, rgb(0, 0, 0) 100%);
}
.hm-services .box-item:nth-child(5)::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  opacity: 0.8;
  background: linear-gradient(to right, rgb(0, 67, 118) 0%, rgb(0, 0, 0) 100%);
}
.hm-services .box-item:nth-child(6)::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  opacity: 0.8;
  background: linear-gradient(to right, rgb(0, 2, 90) 40%, rgb(0, 0, 0) 100%);
}
.hm-services .box-item:nth-child(7)::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  opacity: 0.8;
  background: linear-gradient(to right, rgb(0, 67, 118) 0%, rgb(0, 0, 0) 100%);
}
.hm-services .box-item:nth-child(8)::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  opacity: 0.8;
  background: linear-gradient(to right, rgb(0, 2, 90) 40%, rgb(0, 0, 0) 100%);
}
.hm-services .box-item:nth-child(9)::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  opacity: 0.8;
  background: linear-gradient(to right, rgb(0, 67, 118) 0%, rgb(0, 0, 0) 100%);
}
.hm-services .box-item:nth-child(10)::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  opacity: 0.8;
  background: linear-gradient(to right, rgb(0, 2, 90) 40%, rgb(0, 0, 0) 100%);
}
.hm-services .sticky {
  position: sticky;
  top: 90px;
}

.element1 {
  animation: spin 20s linear infinite;
}

.element2 {
  animation: spin 16s linear infinite;
}

.element3 {
  animation: spin 18s linear infinite;
}

.element4 {
  animation: spin 20s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.projects-sec {
  width: 100%;
  background: #003053;
}
.projects-sec .owl-dots {
  display: none;
}
.projects-sec .side-sec h5 {
  font-size: 22px;
  text-transform: uppercase;
  color: #FFF;
  font-weight: 500;
}
.projects-sec .side-sec h6 {
  font-size: 35px;
  text-transform: uppercase;
  color: #FFF;
  font-weight: 600;
}
.projects-sec .side-sec .link {
  margin-top: 10px;
  background-color: #FFF;
  display: inline-block;
  padding: 10px 25px;
  color: #000;
  position: relative;
  border-radius: 6px;
}
.projects-sec .side-sec .link::before {
  content: "";
  position: absolute;
  border: #FFF solid 2px;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  transition-duration: 0.2s;
  transition-property: top, right, bottom, left;
  border-radius: 6px;
}
.projects-sec .side-sec .link:hover::before {
  top: -4px;
  right: -4px;
  bottom: -4px;
  left: -4px;
}
.projects-sec .side-sec .nav {
  margin-top: 12px;
}
.projects-sec .side-sec .nav .nav-link {
  text-align: left;
  color: #FFF;
  padding-left: 0;
  font-weight: 400;
}
.projects-sec .side-sec .nav .nav-link span {
  padding-bottom: 6px;
  transition: 0.3s all ease-in-out;
}
.projects-sec .side-sec .nav .nav-link.active {
  background-color: transparent;
  color: #FFF;
  font-weight: 600;
}
.projects-sec .side-sec .nav .nav-link.active span {
  border-bottom: 2px solid #FFF;
}
.projects-sec .owl-item .item {
  padding: 20px;
  width: 100%;
}
.projects-sec .owl-item .item .box {
  position: relative;
}
.projects-sec .owl-item .item .box .img-sec {
  width: 100%;
  height: 330px;
  border-radius: 20px;
  overflow: hidden;
}
.projects-sec .owl-item .item .box .img-sec img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.projects-sec .owl-item .item .box .service-content {
  width: 80%;
  position: absolute;
  left: -20px;
  bottom: -30px;
  background-color: #FFF;
  padding: 30px;
  color: #000;
  opacity: 0;
  transition: 0.3s all ease-in-out;
  border-radius: 20px;
}
.projects-sec .owl-item .item .box .service-content h4 {
  font-size: 20px;
  font-weight: 500;
}
.projects-sec .owl-item .item .box .service-content h5 {
  font-weight: 500;
  font-size: 18px;
  color: #2477B4;
}
.projects-sec .owl-item .item:hover .service-content {
  bottom: -20px;
  opacity: 1;
}

.popup-enquiry {
  backdrop-filter: blur(10px);
}
.popup-enquiry .modal-content {
  border-radius: 20px;
  background: transparent;
  box-shadow: 0px 0px 30px rgba(14, 50, 78, 0.4);
}
.popup-enquiry .modal-body {
  background-color: #2477B4;
  background-image: url(../images/water-mark2.svg);
  background-position: right top;
  background-repeat: no-repeat;
  border-radius: 20px;
  padding: 0;
}
.popup-enquiry .modal-body .head-sec {
  width: 100%;
  position: relative;
  padding: 30px;
}
.popup-enquiry .modal-body .head-sec h5 {
  font-size: 26px;
  text-transform: uppercase;
  color: #FFF;
  font-weight: 600;
}
.popup-enquiry .modal-body .head-sec p {
  color: #c5e5ff;
  margin: 0;
}
.popup-enquiry .modal-body .head-sec .btn-close {
  position: absolute;
  right: 20px;
  top: 20px;
  filter: brightness(0) invert(1);
}
.popup-enquiry .modal-body .form-sec {
  width: 100%;
  padding: 30px;
  background-color: #FFF;
  border-radius: 20px;
}
.popup-enquiry .modal-body .form-sec .form-control {
  width: 100%;
  height: 54px;
  padding: 0px 23px;
}
.popup-enquiry .modal-body .form-sec .nice-select .current {
  margin-top: 0px;
}
.popup-enquiry .modal-body .form-sec .txt {
  width: 100%;
  height: 120px;
  padding: 18px 23px;
  resize: none;
}
.popup-enquiry .modal-body .form-sec .form-btn {
  width: 100%;
  background-color: #2477B4;
  display: inline-block;
  padding: 14px 25px;
  color: #FFF;
  position: relative;
  border-radius: 6px;
  transition: 0.3s all ease-in-out;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 18px;
}
.popup-enquiry .modal-body .form-sec .form-btn::before {
  content: "";
  position: absolute;
  border: #2477B4 solid 2px;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  transition-duration: 0.2s;
  transition-property: top, right, bottom, left;
  transition: 0.3s all ease-in-out;
  border-radius: 6px;
}
.popup-enquiry .modal-body .form-sec .form-btn:hover {
  background-color: #2477B4;
  color: #FFF;
}
.popup-enquiry .modal-body .form-sec .form-btn:hover::before {
  top: -4px;
  right: -4px;
  bottom: -4px;
  left: -4px;
}

.testimonials {
  width: 100%;
  background-color: #FFF;
}
.testimonials .owl-dots {
  display: none;
}
.testimonials .head-sec h5 {
  font-size: 22px;
  text-transform: uppercase;
  color: #000;
  font-weight: 500;
}
.testimonials .head-sec h6 {
  font-size: 35px;
  text-transform: uppercase;
  color: #000;
  font-weight: 600;
}
.testimonials .box {
  width: 100%;
  border: 1px solid #efefef;
  padding: 21px 21px 83px 21px;
  border-radius: 20px;
  height: 100%;
  position: relative;
  background-color: #f3f3f3;
}
.testimonials .box .content {
  width: 100%;
  background-image: url(../images/quote-icon.svg);
  background-repeat: no-repeat;
  background-position: 0px 0px;
  padding-top: 37px;
}
.testimonials .box .author {
  width: 100%;
  display: flex;
  align-items: center;
  position: absolute;
  left: 20px;
  bottom: 20px;
}
.testimonials .box .author .logo {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  overflow: hidden;
}
.testimonials .box .author .logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.testimonials .box .author .name {
  padding-left: 10px;
}
.testimonials .box .author .name h4 {
  font-size: 18px;
  margin: 0;
}
.testimonials .box .author .name p {
  margin: 0;
  font-size: 16px;
}
.testimonials .item {
  padding: 0px 10px;
}

.brands-sec {
  width: 100%;
  background: #003053;
}
.brands-sec .owl-dots {
  display: none;
}
.brands-sec .head-sec h5 {
  font-size: 22px;
  text-transform: uppercase;
  color: #FFF;
  font-weight: 500;
}
.brands-sec .head-sec h6 {
  font-size: 35px;
  text-transform: uppercase;
  color: #FFF;
  font-weight: 600;
}
.brands-sec .head-sec p {
  color: #FFF;
}
.brands-sec .head-sec a {
  padding: 12px 25px;
  background-color: #FFF;
  color: #000;
  display: inline-block;
  margin-top: 5px;
  position: relative;
  border-radius: 6px;
}
.brands-sec .head-sec a::before {
  content: "";
  position: absolute;
  border: #FFF solid 2px;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  transition-duration: 0.2s;
  transition-property: top, right, bottom, left;
  border-radius: 6px;
}
.brands-sec .head-sec a:hover::before {
  top: -4px;
  right: -4px;
  bottom: -4px;
  left: -4px;
}
.brands-sec .links-area {
  width: 100%;
  padding-top: 20px;
}
.brands-sec .links-area a {
  padding: 12px 25px;
  background-color: #FFF;
  color: #000;
  display: inline-block;
  margin-top: 5px;
  position: relative;
  border-radius: 6px;
}
.brands-sec .links-area a::before {
  content: "";
  position: absolute;
  border: #FFF solid 2px;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  transition-duration: 0.2s;
  transition-property: top, right, bottom, left;
  border-radius: 6px;
}
.brands-sec .links-area a:hover::before {
  top: -4px;
  right: -4px;
  bottom: -4px;
  left: -4px;
}
.brands-sec .brands-logos-sec {
  width: 100%;
}
.brands-sec .brands-logos-sec .item {
  width: 100%;
}
.brands-sec .brands-logos-sec .box {
  width: 100%;
  height: 100px;
  transition: 0.3s all ease-in-out;
  padding: 8px;
  background-color: rgba(255, 255, 255, 0.09);
  border-radius: 6px;
}
.brands-sec .brands-logos-sec .box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 6px;
}

@keyframes zoom {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.08);
  }
  100% {
    transform: scale(1);
  }
}
.our-blogs {
  width: 100%;
}
.our-blogs .header-sec {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 10px;
}
.our-blogs .header-sec .header-title {
  width: 40%;
}
.our-blogs .header-sec .header-title h5 {
  font-size: 22px;
  text-transform: uppercase;
  color: #000;
  font-weight: 500;
}
.our-blogs .header-sec .header-title h6 {
  font-size: 35px;
  text-transform: uppercase;
  color: #000;
  font-weight: 600;
}
.our-blogs .header-sec .link {
  background-color: #2477B4;
  display: inline-block;
  padding: 13px 25px;
  color: #FFF;
  position: relative;
  border-radius: 6px;
}
.our-blogs .header-sec .link::before {
  content: "";
  position: absolute;
  border: #2477B4 solid 2px;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  transition-duration: 0.2s;
  transition-property: top, right, bottom, left;
  border-radius: 6px;
}
.our-blogs .header-sec .link:hover::before {
  top: -4px;
  right: -4px;
  bottom: -4px;
  left: -4px;
}
.our-blogs .item {
  padding: 0px 8px;
  width: 100%;
}
.our-blogs .box-item {
  width: 100%;
}
.our-blogs .box-item a {
  width: 100%;
  height: 100%;
  display: block;
}
.our-blogs .box-item .img-sec {
  width: 100%;
  height: 250px;
  margin-bottom: 10px;
  overflow: hidden;
  border-radius: 20px;
}
.our-blogs .box-item .img-sec img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 1.5s all cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border-radius: 20px;
}
.our-blogs .box-item .content {
  width: 100%;
}
.our-blogs .box-item .content .date {
  width: 100%;
  font-size: 18px;
  margin-bottom: 10px;
}
.our-blogs .box-item .content h4 {
  font-size: 26px;
  font-weight: 600;
  text-transform: uppercase;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.our-blogs .box-item .content h4 a {
  color: #000;
}
.our-blogs .box-item:hover .img-sec img {
  scale: 1.1;
}
.our-blogs .box-item:hover .content h4 a {
  color: #2477B4;
}

.inner-banner {
  width: 100%;
  padding: 120px 0px 70px 0px;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  text-align: center;
}
.inner-banner::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: linear-gradient(to bottom, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%);
}
.inner-banner .container {
  position: relative;
  z-index: 1;
}
.inner-banner h1 {
  color: #FFF;
  font-size: 35px;
}
.inner-banner .breadcrumb {
  display: none;
  justify-content: center;
}
.inner-banner .breadcrumb .breadcrumb-item {
  color: #4fcdff;
}
.inner-banner .breadcrumb .breadcrumb-item::before {
  color: #FFF;
}
.inner-banner .breadcrumb .breadcrumb-item a {
  color: #FFF;
}

.inner-about {
  width: 100%;
}
.inner-about .about-sec {
  width: 100%;
  position: relative;
}
.inner-about .about-sec::before {
  content: "ICECUBE EVENTS";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  margin: auto;
  width: 100%;
  font-size: 7vw;
  text-align: center;
  font-weight: 700;
  z-index: 1;
  color: rgba(0, 0, 0, 0.02);
}
.inner-about .about-sec .container {
  position: relative;
  z-index: 2;
}
.inner-about .about-sec .left-sec {
  width: 100%;
}
.inner-about .about-sec .left-sec .img-sec {
  width: 100%;
}
.inner-about .about-sec .left-sec .img-sec img {
  width: 100%;
  border-radius: 20px;
}
.inner-about .about-sec .content h5 {
  font-size: 22px;
  text-transform: uppercase;
  color: #000;
  font-weight: 500;
}
.inner-about .about-sec .content h6 {
  font-size: 35px;
  text-transform: uppercase;
  color: #000;
  font-weight: 600;
}

.inner-sector {
  width: 100%;
  background: linear-gradient(to right, rgb(0, 67, 118) 0%, rgb(0, 0, 0) 100%);
}
.inner-sector h6 {
  color: #FFF;
  font-size: 35px;
  text-transform: uppercase;
  font-weight: 600;
  text-align: center;
}
.inner-sector .box {
  width: 100%;
  height: 100%;
  padding: 30px;
  border-radius: 20px;
  background-color: #FFF;
}
.inner-sector .box h2 {
  font-size: 22px;
  font-weight: 600;
}
.inner-sector .box h2 span {
  padding-right: 6px;
}
.inner-sector .sector-wrap .content {
  background-color: transparent;
}
.inner-sector .sector-wrap .content .headsec h5, .inner-sector .sector-wrap .content .headsec h6 {
  color: #000;
}
.inner-sector .sector-wrap .content .tab-sec .accordion-button {
  color: #000;
}
.inner-sector .sector-wrap .content .tab-sec .accordion-item {
  border-bottom: 1px solid #000;
}
.inner-sector .sector-wrap .content .tab-sec .accordion-item .accordion-body {
  color: #000;
}
.inner-sector .sector-wrap .content .tab-sec .accordion-item:first-child .accordion-button {
  border-top: 1px solid #000;
}

.whychoose-sec {
  width: 100%;
  background-color: #FFF;
}
.whychoose-sec .header-title {
  text-align: center;
}
.whychoose-sec .header-title h5 {
  font-size: 22px;
  text-transform: uppercase;
  color: #000;
  font-weight: 500;
}
.whychoose-sec .header-title h6 {
  font-size: 35px;
  text-transform: uppercase;
  color: #000;
  font-weight: 600;
}
.whychoose-sec .fullwidth {
  width: 100%;
  border-radius: 20px;
  padding: 60px;
  position: relative;
  background: hsl(9, 58%, 47%);
  background: linear-gradient(90deg, hsl(9, 58%, 47%) 0%, hsl(215, 76%, 41%) 100%);
}
.whychoose-sec .fullwidth .container {
  position: relative;
  z-index: 1;
}
.whychoose-sec .fullwidth::before {
  content: "";
  position: absolute;
  background-image: url(../images/water-mark.svg);
  background-repeat: no-repeat;
  background-position: 5% 5%;
  width: 245px;
  height: 233px;
  left: 30px;
  right: 30px;
  opacity: 0.04;
}
.whychoose-sec .fullwidth::after {
  content: "";
  position: absolute;
  background-image: url(../images/water-mark.svg);
  background-repeat: no-repeat;
  background-position: 5% 5%;
  width: 245px;
  height: 233px;
  right: 30px;
  bottom: 30px;
  opacity: 0.04;
}
.whychoose-sec .fullwidth ul li {
  color: #FFF;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px 0px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: 0.4s all ease-in-out;
}
.whychoose-sec .fullwidth ul li:last-child {
  border-bottom: none;
}
.whychoose-sec .fullwidth ul li .title {
  width: 30%;
  font-size: 34px;
  line-height: 32px;
  background-image: url(../images/why-shoose-arrow.svg);
  background-repeat: no-repeat;
  background-position: 0px 0px;
  padding-left: 54px;
}
.whychoose-sec .fullwidth ul li .title span {
  width: 100%;
  display: inline-block;
  font-size: 34px;
  line-height: 43px;
}
.whychoose-sec .fullwidth ul li .content {
  width: 70%;
  padding-left: 60px;
  padding-right: 20px;
}
.whychoose-sec .fullwidth ul li .content p {
  margin: 0;
  color: #FFF;
  transition: 0.3s all ease-in-out;
  font-weight: 400;
}
.whychoose-sec .fullwidth ul li:hover {
  background-color: rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid #daeefc;
  border-radius: 6px;
}
.whychoose-sec .fullwidth ul li:hover .content p {
  color: #FFF;
}

.mission-sec {
  width: 100%;
  position: relative;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
  background-size: cover;
}
.mission-sec::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-color: #000;
  opacity: 0.6;
}
.mission-sec .container {
  position: relative;
  z-index: 1;
}
.mission-sec .box {
  width: 100%;
  height: 100%;
  padding: 30px;
  text-align: center;
  background-color: rgba(225, 225, 225, 0.1);
  backdrop-filter: blur(5px);
  border-radius: 20px;
  border: 1px solid rgba(250, 253, 255, 0.2196078431);
}
.mission-sec .box .icon-sec {
  width: 100%;
  margin-bottom: 15px;
}
.mission-sec .box h4 {
  font-size: 26px;
  color: #FFF;
  font-weight: 600;
}
.mission-sec .box p {
  margin: 0;
  color: #FFF;
}

.our-team {
  width: 100%;
  background-color: #FFF;
}
.our-team .head-sec {
  text-align: center;
}
.our-team .head-sec h4 {
  font-size: 22px;
  text-transform: uppercase;
  color: #000;
  font-weight: 500;
}
.our-team .head-sec h5 {
  font-size: 35px;
  text-transform: uppercase;
  color: #000;
  font-weight: 600;
}
.our-team .item {
  padding: 0px 5px;
}
.our-team .box {
  width: 100%;
  position: relative;
  background-image: url(../images/team-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 10px;
  overflow: hidden;
}
.our-team .box .img-sec {
  width: 100%;
  height: 380px;
}
.our-team .box .img-sec img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 6px;
  mix-blend-mode: luminosity;
  transition: 0.3s all ease-in-out;
}
.our-team .box .description {
  width: 100%;
  padding: 23px 10px 10px 33px;
}
.our-team .box .description h3 {
  font-size: 22px;
  margin-bottom: 2px;
  font-weight: 700;
}
.our-team .box .description p {
  margin: 0;
}
.our-team .box:hover .img-sec img {
  mix-blend-mode: normal;
}
.our-team .owl-carousel .owl-item {
  display: block;
}

.quote-sec {
  width: 100%;
  background-color: #2477B4;
  text-align: center;
  padding: 30px 0px;
}
.quote-sec p {
  font-size: 24px;
  text-align: center;
  color: #FFF;
  line-height: 43px;
  font-weight: 300;
}

.our-Works-sec {
  width: 100%;
  background-color: #FFF;
}
.our-Works-sec .head-title {
  margin-bottom: 40px !important;
}
.our-Works-sec nav {
  margin-bottom: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.our-Works-sec nav .category {
  font-size: 26px;
  background-image: url(../images/arrow-right-icon.svg);
  background-repeat: no-repeat;
  background-position: right center;
  padding-right: 72px;
}
.our-Works-sec nav .nav-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1px;
  border: none;
  border-top: 1px solid #d9d9d9;
  border-bottom: 1px solid #d9d9d9;
}
.our-Works-sec nav .nav-tabs .nav-link {
  background-color: transparent;
  border-radius: 0px;
  border: none;
  color: #000;
  padding: 10px 12px;
}
.our-Works-sec nav .nav-tabs .nav-link.active, .our-Works-sec nav .nav-tabs .nav-link:hover {
  color: white;
  background-color: #2477B4;
}

.da-thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.da-thumbs li {
  width: 32.8%;
  height: 300px;
  overflow: hidden;
  position: relative;
  border-radius: 20px;
}
.da-thumbs li img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px;
}
.da-thumbs li .overlay {
  position: absolute;
  background: rgba(0, 0, 0, 0.8);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFF;
  border-radius: 20px;
  padding: 22px;
}
.da-thumbs li .overlay div {
  text-align: center;
}
.da-thumbs li .overlay span {
  width: 100%;
  text-align: center;
  color: #FFF;
}
.da-thumbs li .overlay h5 {
  text-align: center;
  font-size: 26px;
}
.da-thumbs li .overlay .play-btn {
  width: 100%;
  text-align: center;
  padding: 5px 0px;
}
.da-thumbs li .overlay .play-btn img {
  width: 60px;
}
.da-thumbs li .overlay .custom-hover-object {
  position: absolute;
  background: #333;
  background: rgba(255, 255, 255, 0.7);
  width: 100%;
  height: 100%;
}

.our-clients-sec {
  width: 100%;
}
.our-clients-sec .clients-box {
  width: 100%;
  background-color: #FFF;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 2px 3px 10px rgba(47, 121, 178, 0.0509803922);
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #d9d9d9;
}
.our-clients-sec .clients-box img {
  width: 100%;
}

.our-services-sec {
  width: 100%;
  background-color: #FFF;
}
.our-services-sec .box {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 60px 60px;
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  border-radius: 20px;
  overflow: hidden;
}
.our-services-sec .box .content {
  width: 80%;
  position: relative;
  z-index: 2;
  padding-right: 80px;
}
.our-services-sec .box .content h6 {
  font-size: 35px;
  color: #FFF;
  font-weight: 700;
}
.our-services-sec .box .content h6 span {
  font-weight: 700;
  padding-right: 10px;
}
.our-services-sec .box .content .txt-sec {
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 15px;
}
.our-services-sec .box .content p {
  color: #FFF;
}
.our-services-sec .box .content .more {
  margin-top: 10px;
  background-color: #FFF;
  display: inline-block;
  padding: 10px 25px;
  color: #000;
  position: relative;
  border-radius: 6px;
}
.our-services-sec .box .content .more::before {
  content: "";
  position: absolute;
  border: #FFF solid 2px;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  transition-duration: 0.2s;
  transition-property: top, right, bottom, left;
  border-radius: 6px;
}
.our-services-sec .box .content .more:hover::before {
  top: -4px;
  right: -4px;
  bottom: -4px;
  left: -4px;
}
.our-services-sec .box .img-sec {
  position: relative;
  width: 206px;
  height: 206px;
}
.our-services-sec .box .img-sec img {
  width: 100%;
  height: 100%;
}
.our-services-sec .col-lg-12:nth-child(1) .box::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  opacity: 0.9;
  background: linear-gradient(to right, rgb(0, 67, 118) 0%, rgb(0, 0, 0) 100%);
}
.our-services-sec .col-lg-12:nth-child(2) .box::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  opacity: 0.8;
  background: linear-gradient(to right, rgb(0, 2, 90) 40%, rgb(0, 0, 0) 100%);
}
.our-services-sec .col-lg-12:nth-child(3) .box::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  opacity: 0.8;
  background: linear-gradient(to right, rgb(0, 67, 118) 0%, rgb(0, 0, 0) 100%);
}
.our-services-sec .col-lg-12:nth-child(4) .box::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  opacity: 0.8;
  background: linear-gradient(to right, rgb(0, 2, 90) 40%, rgb(0, 0, 0) 100%);
}
.our-services-sec .col-lg-12:nth-child(5) .box::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  opacity: 0.8;
  background: linear-gradient(to right, rgb(0, 67, 118) 0%, rgb(0, 0, 0) 100%);
}
.our-services-sec .col-lg-12:nth-child(6) .box::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  opacity: 0.8;
  background: linear-gradient(to right, rgb(0, 2, 90) 40%, rgb(0, 0, 0) 100%);
}
.our-services-sec .col-lg-12:nth-child(7) .box::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  opacity: 0.8;
  background: linear-gradient(to right, rgb(0, 67, 118) 0%, rgb(0, 0, 0) 100%);
}
.our-services-sec .col-lg-12:nth-child(8) .box::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  opacity: 0.8;
  background: linear-gradient(to right, rgb(0, 2, 90) 40%, rgb(0, 0, 0) 100%);
}
.our-services-sec .col-lg-12:nth-child(9) .box::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  opacity: 0.8;
  background: linear-gradient(to right, rgb(0, 67, 118) 0%, rgb(0, 0, 0) 100%);
}
.our-services-sec .col-lg-12:nth-child(10) .box::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  opacity: 0.8;
  background: linear-gradient(to right, rgb(0, 2, 90) 40%, rgb(0, 0, 0) 100%);
}

.head-title h4 {
  font-size: 22px;
  text-transform: uppercase;
  color: #000;
  font-weight: 500;
}
.head-title h5 {
  font-size: 35px;
  text-transform: uppercase;
  color: #000;
  font-weight: 600;
}

.our-blogs-sec {
  width: 100%;
  background-color: #FFF;
}

.inner-blogs {
  width: 100%;
  background-color: #FFF;
}
.inner-blogs .blog-content h2 {
  font-size: 34px;
}
.inner-blogs .blog-content .category-txt {
  width: 100%;
  color: #2477B4;
  font-size: 18px;
  font-weight: 500;
}
.inner-blogs .blog-content .category-txt span {
  margin: 0px 10px;
  color: #a1a1a1;
}
.inner-blogs .blog-content .blog-details-img {
  width: 100%;
  height: 450px;
}
.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 p {
  text-align: justify;
}
.inner-blogs .td-blog-sidebar-wrapper {
  padding-left: 35px;
  border-left: 1px solid #dfdfdf;
}
.inner-blogs .td-blog-sidebar-wrapper .blog-sidebar-search {
  width: 100%;
  margin-bottom: 37px;
}
.inner-blogs .td-blog-sidebar-wrapper .blog-sidebar-search h3 {
  font-size: 24px;
  position: relative;
  margin-bottom: 17px;
  padding-bottom: 12px;
  font-weight: 600;
}
.inner-blogs .td-blog-sidebar-wrapper .blog-sidebar-search h3::before {
  content: "";
  width: 35px;
  height: 6px;
  border-radius: 6px;
  background-color: #2477B4;
  position: absolute;
  left: 0;
  bottom: 0;
}
.inner-blogs .td-blog-sidebar-wrapper .blog-sidebar-search form {
  position: relative;
}
.inner-blogs .td-blog-sidebar-wrapper .blog-sidebar-search form input {
  border: 1px solid #c2c2c2;
  border-radius: 6px;
  width: 100%;
  height: 50px;
  font-size: 16px;
  color: #444;
  padding: 5px 50px 5px 20px;
  font-weight: 500;
}
.inner-blogs .td-blog-sidebar-wrapper .blog-sidebar-search form button {
  font-size: 20px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 17px;
  line-height: 1;
  border: none;
  background: transparent;
  color: #2477B4;
}
.inner-blogs .td-blog-sidebar-wrapper .td-product-categories-list {
  width: 100%;
  margin-bottom: 37px;
}
.inner-blogs .td-blog-sidebar-wrapper .td-product-categories-list h3 {
  font-size: 24px;
  position: relative;
  margin-bottom: 17px;
  padding-bottom: 12px;
}
.inner-blogs .td-blog-sidebar-wrapper .td-product-categories-list h3::before {
  content: "";
  width: 35px;
  height: 6px;
  border-radius: 6px;
  background-color: #2477B4;
  position: absolute;
  left: 0;
  bottom: 0;
}
.inner-blogs .td-blog-sidebar-wrapper .td-product-categories-list ul {
  margin: 0;
}
.inner-blogs .td-blog-sidebar-wrapper .td-product-categories-list ul li {
  width: 100%;
  margin-bottom: 9px;
  border-bottom: 1px solid #efefef;
  padding-bottom: 10px;
}
.inner-blogs .td-blog-sidebar-wrapper .td-product-categories-list ul li a {
  font-size: 18px;
  color: #000;
  display: inline-block;
}
.inner-blogs .td-blog-sidebar-wrapper .td-product-categories-list ul li a span {
  margin-left: 3px;
  display: inline-block;
  color: #2477B4;
}
.inner-blogs .td-blog-sidebar-wrapper .td-product-categories-list ul li a:hover {
  color: #2477B4;
}
.inner-blogs .td-blog-sidebar-wrapper .recent-blogs {
  width: 100%;
  margin-bottom: 37px;
}
.inner-blogs .td-blog-sidebar-wrapper .recent-blogs h3 {
  font-size: 24px;
  position: relative;
  margin-bottom: 17px;
  padding-bottom: 12px;
}
.inner-blogs .td-blog-sidebar-wrapper .recent-blogs h3::before {
  content: "";
  width: 35px;
  height: 6px;
  border-radius: 6px;
  background-color: #2477B4;
  position: absolute;
  left: 0;
  bottom: 0;
}
.inner-blogs .td-blog-sidebar-wrapper .recent-blogs ul li {
  width: 100%;
  margin-bottom: 15px;
}
.inner-blogs .td-blog-sidebar-wrapper .recent-blogs ul li a {
  display: flex;
  align-items: center;
  color: #000;
}
.inner-blogs .td-blog-sidebar-wrapper .recent-blogs ul li .recent-blog-img img {
  width: 80px;
  height: 80px;
  border-radius: 6px;
}
.inner-blogs .td-blog-sidebar-wrapper .recent-blogs ul li .recent-blog-content {
  padding-left: 10px;
}
.inner-blogs .td-blog-sidebar-wrapper .recent-blogs ul li .recent-blog-content h4 {
  font-size: 18px;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 3px;
  font-weight: 600;
}
.inner-blogs .td-blog-sidebar-wrapper .recent-blogs ul li .recent-blog-content p {
  font-size: 15px;
  margin-bottom: 0px;
  color: #2477B4;
}
.inner-blogs .td-blog-sidebar-wrapper .tags {
  width: 100%;
  margin-bottom: 37px;
}
.inner-blogs .td-blog-sidebar-wrapper .tags h3 {
  font-size: 24px;
  position: relative;
  margin-bottom: 17px;
  padding-bottom: 12px;
}
.inner-blogs .td-blog-sidebar-wrapper .tags h3::before {
  content: "";
  width: 35px;
  height: 6px;
  border-radius: 6px;
  background-color: #2477B4;
  position: absolute;
  left: 0;
  bottom: 0;
}
.inner-blogs .td-blog-sidebar-wrapper .tags ul {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.inner-blogs .td-blog-sidebar-wrapper .tags ul li a {
  color: #2477B4;
  font-size: 16px;
  font-weight: 500;
  background-color: #cfebff;
  padding: 8px 11px;
  border-radius: 6px;
  display: inline-block;
}
.inner-blogs .td-blog-sidebar-wrapper .tags ul li a:hover {
  background-color: #2477B4;
  color: #FFF;
}

.pl-30 {
  padding-left: 30px;
}

.service-details {
  width: 100%;
  background-color: #FFF;
}
.service-details .service-img {
  width: 100%;
  height: 390px;
}
.service-details .service-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
}
.service-details h5 {
  font-size: 34px;
  font-weight: 600;
  text-transform: uppercase;
}
.service-details .content {
  width: 100%;
}
.service-details h6 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 18px;
}
.service-details .include-sec {
  width: 100%;
  display: flex;
}
.service-details .include-sec .list {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  border-radius: 18px;
  padding-right: 30px;
}
.service-details .include-sec .list li {
  padding: 12px 14px;
  background-size: 24px;
  background-color: #e6f1f9;
  color: #2477B4;
  border-radius: 6px;
  font-weight: 500;
}
.service-details .gallery-img {
  width: 100%;
  height: 250px;
  overflow: hidden;
  position: relative;
  border-radius: 10px;
}
.service-details .gallery-img figure {
  width: 100%;
  height: 100%;
  margin: 0;
}
.service-details .gallery-img figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.service-details .gallery-img .caption {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 3em 3em;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.service-details .gallery-img .caption::before {
  position: absolute;
  top: 50%;
  right: 30px;
  bottom: 50%;
  left: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.8);
  border-bottom: 1px solid rgba(255, 255, 255, 0.8);
  content: "";
  opacity: 0;
  background-color: #ffffff;
  transition: all 0.3s;
  transition-delay: 0.3s;
}
.service-details .gallery-img .caption h4 {
  color: #FFF;
  font-weight: 600;
  text-transform: uppercase;
  transform: translate3d(0%, 50%, 0);
  transition-delay: 0.3s;
  margin: 0 0 5px;
  opacity: 0;
  transition: opacity 0.35s, transform 0.35s;
  text-align: center;
}
.service-details .gallery-img:hover .caption h4 {
  transform: translate3d(0%, 0%, 0);
  transition-delay: 0.3s;
  opacity: 1;
}
.service-details .gallery-img:hover .caption::before {
  background: rgba(0, 0, 0, 0.6);
  top: 30px;
  bottom: 30px;
  opacity: 1;
  transition-delay: 0s;
}
.service-details .service-list {
  width: 100%;
}
.service-details .service-list ul li {
  margin-bottom: 3px;
}
.service-details .service-list ul li a {
  display: block;
  background-color: #e6ebf4;
  font-size: 18px;
  color: #000917;
  font-weight: 500;
  padding: 14px 25px;
  position: relative;
}
.service-details .service-list ul li a::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
  height: 0;
  background-color: #66baf7;
  transition: 0.3s cubic-bezier(0.24, 0.74, 0.58, 1);
  width: 4px;
}
.service-details .service-list ul li a:hover, .service-details .service-list ul li a.active {
  background-color: #2477B4;
  color: white;
  padding-left: 33px;
}
.service-details .service-list ul li a:hover::after, .service-details .service-list ul li a.active::after {
  height: 100%;
}
.service-details .service-list ul li a:hover::before, .service-details .service-list ul li a.active::before {
  content: "-";
  margin-right: 4px;
}
.service-details .c-box {
  width: 100%;
  padding: 30px 20px;
  background-color: #2477B4;
  background-image: url(../images/water-mark.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  text-align: center;
  color: #FFF;
}
.service-details .c-box h3 {
  font-size: 15px;
  text-transform: uppercase;
  font-weight: 400;
}
.service-details .c-box h4 {
  font-size: 28px;
  text-transform: uppercase;
  font-weight: 400;
}
.service-details .c-box .number {
  width: 100%;
  text-align: center;
}
.service-details .c-box .number a {
  color: #FFF;
  font-size: 30px;
  text-transform: uppercase;
  font-weight: 500;
}
.service-details .c-box .link {
  background-color: #FFF;
  display: inline-block;
  padding: 10px 25px;
  color: #000;
  position: relative;
}
.service-details .c-box .link::before {
  content: "";
  position: absolute;
  border: #FFF solid 2px;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  transition-duration: 0.2s;
  transition-property: top, right, bottom, left;
}
.service-details .c-box .link:hover {
  background-color: #FFF;
  color: #2477B4;
}
.service-details .c-box .link:hover::before {
  top: -4px;
  right: -4px;
  bottom: -4px;
  left: -4px;
}
.service-details .c-box .d-form {
  width: 100%;
}
.service-details .c-box .d-form .form-head h4 {
  font-size: 23px;
  text-align: left;
  font-weight: 600;
}
.service-details .c-box .d-form .form-control {
  width: 100%;
  height: 54px;
  padding: 0px 23px;
  font-weight: 500;
}
.service-details .c-box .d-form .txt {
  width: 100%;
  height: 120px;
  padding: 18px 23px;
  resize: none;
}
.service-details .c-box .d-form .form-btn {
  width: 100%;
  background-color: #000;
  display: inline-block;
  padding: 14px 25px;
  color: #FFF;
  position: relative;
  border-radius: 6px;
  transition: 0.3s all ease-in-out;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 20px;
}
.service-details .c-box .d-form .form-btn::before {
  content: "";
  position: absolute;
  border: #000 solid 2px;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  transition-duration: 0.2s;
  transition-property: top, right, bottom, left;
  transition: 0.3s all ease-in-out;
  border-radius: 6px;
}
.service-details .c-box .d-form .form-btn:hover {
  background-color: #000;
  color: #FFF;
}
.service-details .c-box .d-form .form-btn:hover::before {
  top: -4px;
  right: -4px;
  bottom: -4px;
  left: -4px;
}

.contact-sec {
  width: 100%;
  background-color: #FFF;
}
.contact-sec .head-title {
  text-align: center;
}
.contact-sec .head-title h3 {
  font-size: 24px;
  color: #2477B4;
  font-weight: 500;
}
.contact-sec .head-title h4 {
  font-size: 34px;
  font-weight: 600;
}
.contact-sec .c-first-sec {
  width: 100%;
  background-color: #f9f9f9;
}
.contact-sec .c-first-sec .c-box {
  width: 100%;
  height: 100%;
  padding: 20px;
  border-radius: 10px;
  background-color: #FFF;
}
.contact-sec .c-first-sec .c-box h6 {
  font-size: 26px;
  margin-bottom: 10px;
  background-image: url(../images/location-icon.svg);
  background-repeat: no-repeat;
  background-position: 0px 0px;
  background-size: 30px;
  padding-left: 44px;
  font-weight: 600;
}
.contact-sec .c-first-sec .c-box ul li {
  margin-bottom: 6px;
  font-weight: 500;
}
.contact-sec .c-first-sec .c-box ul li a {
  color: #000;
  background-repeat: no-repeat;
  background-position: 0px 3px;
  padding-left: 23px;
}
.contact-sec .c-first-sec .c-box ul li a:hover {
  color: #2477B4;
}
.contact-sec .c-first-sec .c-box ul li a.mail {
  background-image: url(../images/envelope-icon1.svg);
}
.contact-sec .c-first-sec .c-box ul li a.phone {
  background-image: url(../images/phone-icon1.svg);
}
.contact-sec .contact-form-sec h5 {
  font-size: 34px;
  text-align: center;
  margin-bottom: 20px;
}
.contact-sec .contact-form-sec .form-control {
  width: 100%;
  height: 60px;
  padding: 0px 22px;
  box-shadow: 2px 3px 5px #f1f1f1;
}
.contact-sec .contact-form-sec .txt {
  height: 150px;
  resize: none;
  padding: 10px 22px;
}
.contact-sec .contact-form-sec .form-btn {
  background-color: #2477B4;
  display: inline-block;
  padding: 14px 25px;
  color: #FFF;
  font-weight: 600;
  text-transform: uppercase;
  position: relative;
  border-radius: 6px;
  margin-top: 10px;
  font-size: 20px;
}
.contact-sec .contact-form-sec .form-btn::before {
  content: "";
  position: absolute;
  border: #2477B4 solid 2px;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  transition-duration: 0.2s;
  transition-property: top, right, bottom, left;
  border-radius: 6px;
}
.contact-sec .contact-form-sec .form-btn:hover {
  background-color: #2477B4;
  color: #FFF;
}
.contact-sec .contact-form-sec .form-btn:hover::before {
  top: -4px;
  right: -4px;
  bottom: -4px;
  left: -4px;
}
.contact-sec .map {
  width: 100%;
}
.contact-sec .map iframe {
  width: 100%;
  height: 550px;
}

footer {
  width: 100%;
}
footer .f-first-sec {
  width: 100%;
  padding: 40px 0px;
  background-image: url(../images/footer-bg.svg);
  background-repeat: repeat-x;
  background-size: cover;
}
footer .f-first-sec .box {
  width: 100%;
}
footer .f-first-sec .box h5 {
  color: #FFF;
  font-size: 20px;
  text-transform: uppercase;
  margin-bottom: 15px;
  font-weight: 600;
}
footer .f-first-sec .box .f-link li a {
  font-size: 18px;
  color: #FFF;
  display: inline-block;
  padding: 3px 0px;
  transition: 0.3s all ease-in-out;
  font-weight: 400;
}
footer .f-first-sec .box .f-link li a:hover {
  color: #7ef8ff;
}
footer .f-first-sec .box .f-address {
  width: 100%;
}
footer .f-first-sec .box .f-address p {
  color: #FFF;
}
footer .f-first-sec .box .click-sec li {
  margin-bottom: 5px;
  background-position: 0px 6px;
  background-repeat: no-repeat;
  padding-left: 25px;
  color: #FFF;
}
footer .f-first-sec .box .click-sec li.mail {
  background-image: url(../images/envelope-icon.svg);
}
footer .f-first-sec .box .click-sec li.phone {
  background-image: url(../images/phone-icon.svg);
}
footer .f-first-sec .box .click-sec li a {
  color: #FFF;
  display: inline-block;
}
footer .f-first-sec .box .click-sec li a:hover {
  color: #7ef8ff;
}
footer .f-first-sec .f-get-in-touch {
  width: 100%;
}
footer .f-first-sec .f-get-in-touch h6 {
  color: #FFF;
  font-size: 18px;
  text-transform: uppercase;
  margin-bottom: 15px;
}
footer .f-first-sec .f-get-in-touch .link-btn {
  background-color: #FFF;
  display: inline-block;
  padding: 10px 25px;
  color: #000;
  position: relative;
  border-radius: 6px;
}
footer .f-first-sec .f-get-in-touch .link-btn::before {
  content: "";
  position: absolute;
  border: #FFF solid 2px;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  transition-duration: 0.2s;
  transition-property: top, right, bottom, left;
  border-radius: 6px;
}
footer .f-first-sec .f-get-in-touch .link-btn:hover {
  background-color: #2477B4;
  color: #FFF;
}
footer .f-first-sec .f-get-in-touch .link-btn:hover::before {
  top: -4px;
  right: -4px;
  bottom: -4px;
  left: -4px;
}
footer .copyright {
  width: 100%;
  padding: 15px 0px;
  background-color: #000b21;
  color: #FFF;
}
footer .copyright .f-logo a img {
  filter: brightness(0) invert(1);
  width: 69px;
}
footer .copyright p {
  text-align: center;
  margin: 0;
  color: white;
}
footer .copyright .f-first {
  display: flex;
  justify-content: end;
}
footer .copyright .f-first .f-media {
  display: flex;
  gap: 5px;
}
footer .copyright .f-first .f-media a {
  width: 40px;
  height: 40px;
  border: 1px solid #FFF;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #FFF;
}
footer .copyright .f-first .f-media a:hover {
  background-color: #FFF;
  color: #2477B4;
}

.mfp-img {
  max-width: 100%;
  max-height: 90vh; /* fits inside viewport */
  -o-object-fit: contain;
     object-fit: contain; /* keeps aspect ratio */
}

.mfp-figure {
  display: flex;
  align-items: center;
  justify-content: center;
}

.mfp-content {
  max-width: 90%;
  margin: auto;
}

.mfp-iframe img {
  width: 100%;
}

.mfp-container {
  backdrop-filter: blur(18px) !important;
}

@media (max-width: 1400px) {
  .da-thumbs li {
    width: 32.7%;
  }
}
@media (max-width: 1300px) {
  .count-sec .box h3 {
    font-size: 100px;
  }
}
@media (max-width: 1200px) {
  header .header-wrap .d-nav li a {
    padding: 0px 12px;
  }
  header .header-wrap .enquiry-btn .link-btn {
    padding: 10px 19px;
  }
  .da-thumbs li {
    width: 32.6%;
  }
}
@media (max-width: 991px) {
  header .header-wrap .d-nav, header .enquiry-btn {
    display: none;
  }
  header .header-wrap .mb-nav {
    display: block;
  }
  .banner .banner_title .icon-sec {
    justify-content: center;
    margin-bottom: 10px;
  }
  .banner .banner_title h6, .banner .banner_title h5, .banner .banner_title p {
    text-align: center;
  }
  .banner .banner_title {
    top: 30%;
  }
  .sector-wrap .img-sec {
    display: none;
  }
  .sector-wrap {
    padding-left: 0px;
  }
  .sector-wrap .content {
    padding: 30px 30px;
  }
  .our-sector {
    padding: 10px 0px 60px 0px;
  }
  .count-sec .box {
    border: 1px solid #000;
    border-radius: 20px;
  }
  .hm-services .header-sec .header-title {
    width: 100%;
  }
  .hm-services .header-sec {
    display: block;
    padding-bottom: 15px;
  }
  .hm-services .box-item .description-sec {
    display: block;
  }
  .hm-services .box-item .description-sec .content {
    width: 100%;
  }
  .hm-services .box-item .description-sec .content p {
    text-align: justify;
  }
  .hm-services .box-item .description-sec .img-sec {
    margin-top: 15px;
  }
  .p-90 {
    padding: 30px 0px;
  }
  .projects-sec .owl-item .item .box .service-content {
    opacity: 1;
    position: relative;
    left: inherit;
    bottom: inherit;
    width: 100%;
  }
  .projects-sec .owl-item .item {
    padding: 0;
  }
  .projects-sec .side-sec {
    margin-bottom: 20px;
    text-align: center;
  }
  .projects-sec .side-sec .nav .nav-link {
    text-align: center;
    padding-left: 0;
    padding-right: 0;
  }
  .projects-sec .side-sec .nav {
    margin-right: 0px !important;
  }
  .brands-sec .brands-logos-sec {
    padding-top: 30px;
    justify-content: center;
  }
  .brands-sec, .head-sec {
    width: 100%;
    text-align: center;
  }
  .our-blogs .header-sec {
    display: block;
    text-align: center;
  }
  .our-blogs .header-sec .header-title {
    width: 100%;
    text-align: center;
  }
  .whychoose-sec .list {
    padding-left: 0px;
    padding-top: 10px;
  }
  .our-services-sec .box {
    padding: 30px;
    display: block;
  }
  .our-services-sec .box .content {
    width: 100%;
    padding-right: 0px;
    text-align: center;
  }
  .our-services-sec .box .img-sec {
    text-align: center;
    margin: auto;
    margin-top: 30px;
  }
  .contact-sec .c-first-sec .c-box {
    height: auto;
    margin-bottom: 10px;
  }
  .contact-sec .map iframe {
    height: 400px;
  }
  .our-Works-sec nav {
    display: block;
  }
  .our-Works-sec nav .category {
    background: none;
    padding-right: 0;
    text-align: center;
    margin-bottom: 10px;
  }
  .our-Works-sec .head-title {
    margin-bottom: 17px !important;
  }
  .inner-blogs .td-blog-sidebar-wrapper {
    padding-left: 0px;
    border-left: none;
    padding-top: 30px;
    border-top: 1px solid #dfdfdf;
    margin-top: 30px;
  }
  .da-thumbs li {
    width: 49%;
  }
  .pl-30 {
    padding-left: 0px;
  }
  .testimonials .box {
    height: auto;
  }
  .copyright .f-logo {
    text-align: center;
    margin-bottom: 15px;
  }
  footer .copyright .f-first {
    justify-content: center;
    padding-top: 15px;
  }
}
@media (max-width: 768px) {
  .banner .banner_title h6, .banner .banner_title h5 {
    font-size: 35px;
  }
  .sector-wrap .content {
    display: block;
  }
  .sector-wrap .content .headsec h5 {
    font-size: 18px;
  }
  .sector-wrap .content .headsec h6 {
    font-size: 24px;
    margin-bottom: 25px;
  }
  .sector-wrap .content .tab-sec {
    padding-left: 0;
  }
  .sector-wrap .content {
    padding: 20px 20px;
  }
  .our-sector {
    padding: 30px 0px 30px 0px;
  }
  .count-sec .box .label {
    background-color: transparent;
    padding: 3px 15px;
    position: relative;
    top: inherit;
    right: inherit;
    font-size: 18px;
  }
  .count-sec .box {
    padding-bottom: 10px;
  }
  .count-sec .box h3 {
    font-size: 52px;
  }
  .hm-services .sticky {
    position: relative;
    top: 10px;
  }
  .hm-services .box-item {
    padding: 30px 30px;
  }
  .quote-sec p {
    font-size: 20px;
    line-height: 30px;
  }
  .our-services-sec .box {
    padding: 20px;
  }
  .our-services-sec .box .content h6 {
    font-size: 24px;
  }
  .contact-sec .map iframe {
    height: 350px;
  }
  .our-team .box .img-sec {
    height: 276px;
  }
  .our-team .box .img-sec img {
    -o-object-fit: contain;
       object-fit: contain;
  }
  .our-team .box .description {
    padding: 23px 18px 10px 18px;
    text-align: center;
  }
  .our-testimonials-sec .box {
    padding-bottom: 30px;
  }
  .our-testimonials-sec .box .author {
    position: relative;
    bottom: 0;
    left: 0;
    display: block;
    margin-bottom: 10px;
  }
  .our-testimonials-sec .box .author .name {
    padding-left: 0px;
  }
  footer .f-first-sec .box {
    background-color: rgba(47, 121, 178, 0.4);
    border-radius: 20px;
    padding: 30px;
  }
  footer .f-first-sec .f-get-in-touch {
    text-align: center;
  }
  .popup-enquiry .modal-body .form-sec .form-btn {
    width: 100%;
  }
  .popup-enquiry .modal-body .head-sec .btn-close {
    right: 10px;
    top: 10px;
  }
  .whychoose-sec .fullwidth ul li {
    display: block;
  }
  .whychoose-sec .fullwidth {
    padding: 10px;
  }
  .whychoose-sec .fullwidth ul li .content {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
  .whychoose-sec .fullwidth ul li .title {
    width: 100%;
    margin-bottom: 15px;
  }
}
@media (max-width: 576px) {
  .hm-services .header-sec .header-title h6, .hm-services .box-item .head, .projects-sec .side-sec h6, .testimonials .head-sec h6, .whychoose-sec .left-sec h6, .inner-about .about-sec .left-sec h6, .our-team .head-sec h5, .what-we-offer .left-sec h6, .head-title h5, .contact-sec .head-title h4, .contact-sec .contact-form-sec h5, .service-details h5, .inner-banner h1 {
    font-size: 28px;
  }
  .our-services-sec .box .content p {
    text-align: justify;
  }
  .our-services-sec .box .content h6 span {
    font-weight: 400;
    padding-right: 2px;
  }
  .banner .circle {
    display: none;
  }
  .banner .banner_title {
    top: 50%;
  }
  .da-thumbs li {
    width: 100%;
    margin-bottom: 5px;
  }
  .banner .mobile-mode {
    display: block;
  }
  .banner .desktop-mode {
    display: none;
  }
  .whychoose-sec .fullwidth ul li .title span {
    font-size: 28px;
    line-height: 29px;
  }
  .brands-logos-sec .box:nth-child(7), .brands-logos-sec .box:nth-child(8), .brands-logos-sec .box:nth-child(9), .brands-logos-sec .box:nth-child(10), .brands-logos-sec .box:nth-child(11), .brands-logos-sec .box:nth-child(12) {
    display: none;
  }
}/*# sourceMappingURL=main.css.map */