:root {
  --col-padding: clamp(1.33em, 3vw, 3em);
}

/*Main Css */
::-moz-selection {
  background: #87ceeb;
  color: #fff;
  text-shadow: none;
}
::selection {
  background: #87ceeb;
  color: #fff;
  text-shadow: none;
}

::-webkit-scrollbar {
  width: 7px;
  background-color: rgba(24, 24, 24, 0);
}

::-webkit-scrollbar-button:start:decrement,
::-webkit-scrollbar-button:end:increment {
  display: none;
}

::-webkit-scrollbar-track-piece {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0);
  background-color: rgba(0, 0, 0, 0);
}

::-webkit-scrollbar-thumb:vertical {
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: #12abe5;
}

/* Tabbing CSS */
[class^=box-] {
  display: none;
}

[class^=box-].showfirst {
  display: block;
}

/* Accordion CSS */
.myaccordion li .faq-opt {
  display: none;
}

.myaccordion li.active .faq-opt {
  display: block;
}

.myaccordion li.active .faq-ang h4:before {
  content: "\f077";
}

body {
  font-family: "Shapiro 35 Feather";
  overflow-x: hidden;
  font-size: 16px;
  line-height: 1;
  color: #fff;
  background-color: #000;
  font-weight: 300;
}
body.ovr-hiddn {
  overflow: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  display: block;
  font-weight: normal;
}

*:hover,
*:focus,
* {
  outline: none !important;
}

img {
  max-width: 100%;
  height: auto;
}

a,
input[type=submit] {
  transition: all 0.4s ease-In-out;
  display: inline-block;
  cursor: pointer;
}

a:hover {
  color: #12abe5;
  text-decoration: none;
}

p,
a {
  font-size: 16px;
  font-weight: normal;
  color: #fff;
}

p {
  line-height: 26px;
  display: block;
}

span {
  display: inline-block;
}

/* Custom Slick Css */
.slick-list {
  margin: 0 -15px;
}

.slick-slide {
  margin: 0 15px;
}

ul.slick-dots {
  padding: 50px 0 0;
  text-align: center;
}

ul.slick-dots li {
  margin: 0 20px 0 0px;
  width: auto;
  display: inline-block;
  vertical-align: middle;
  overflow: hidden;
  padding: 0px;
  border: none;
}

.slick-dots li button:before,
.slick-dots li button:before {
  color: #FFF;
  opacity: 1;
  font-size: 20px;
}

.slick-dots li button {
  height: 8px;
  width: 8px;
  border-radius: 50%;
  padding: 0px;
  background: #d6d6d6;
  border: none;
  cursor: pointer;
  font-size: 0px;
  padding: 0px;
  transition: all 0.4s ease-In-out;
  box-sizing: border-box;
}

.slick-dots li.slick-active button {
  background: #26a9db;
  width: 11px;
  height: 11px;
}

span.arrows {
  width: 40px;
  height: 40px;
  border: none;
  position: absolute;
  top: 0px;
  bottom: 0px;
  margin: auto;
  z-index: 2;
  cursor: pointer;
  line-height: 39px;
  font-size: 12px;
  text-align: center;
  font-weight: 300;
  top: 0;
  border-radius: 0;
  background: #f7f7f7;
  color: #696969;
}

span.arrows.next {
  right: 1%;
}

textarea,
select,
input[type],
textarea,
select,
button {
  background: transparent;
  border: none;
  border-radius: 0px;
  font-family: "Shapiro 35 Feather";
  font-weight: 400;
}

::-webkit-input-placeholder {
  color: #a3a3a3;
  font-weight: 400;
}

::-moz-placeholder {
  color: #a3a3a3;
  font-weight: 400;
}

:-ms-input-placeholder {
  color: #a3a3a3;
  font-weight: 400;
}

:-moz-placeholder {
  color: #a3a3a3;
  font-weight: 400;
}

#loader {
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background-color: #000818;
}
#loader .dl {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: inline-block;
}
#loader .dl__square {
  display: block;
  width: 50px;
  height: 50px;
  background: #26a9db;
}
#loader .dl__container {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  transform-origin: 50% 50% 0;
  animation: dyinglight 1s ease infinite;
  backface-visibility: hidden;
}
#loader .dl__corner--top:before,
#loader .dl__corner--top:after,
#loader .dl__corner--bottom:before,
#loader .dl__corner--bottom:after {
  position: absolute;
  width: 17px;
  height: 17px;
  color: #26a9db;
  content: "";
}
#loader .dl__corner--top:before {
  border-left: 1px solid;
  border-top: 1px solid;
  top: -6px;
  left: -6px;
}
#loader .dl__corner--top:after {
  border-right: 1px solid;
  border-top: 1px solid;
  top: -6px;
  right: -6px;
}
#loader .dl__corner--bottom:before {
  border-left: 1px solid;
  border-bottom: 1px solid;
  bottom: -6px;
  left: -6px;
}
#loader .dl__corner--bottom:after {
  border-right: 1px solid;
  border-bottom: 1px solid;
  bottom: -6px;
  right: -6px;
}

@keyframes dyinglight {
  15% {
    transform: scale(1.6);
  }
  50% {
    transform: rotate(-89deg);
  }
  100% {
    transform: rotate(-90deg);
  }
}
/* Heading Classes */
.mn-hd h5 {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 22px;
  color: #fff;
  letter-spacing: 6px;
  text-transform: uppercase;
  padding-bottom: 15px;
  font-weight: 600;
  line-height: 1.2;
}
.mn-hd h5::before {
  content: "";
  width: 30px;
  height: 5px;
  background-color: #26a9db;
  border-radius: 50px;
}
.mn-hd.text-center h5 {
  justify-content: center;
}
.mn-hd h6 {
  font-size: 45px;
  color: #fff;
  line-height: 1.2;
  font-weight: 700;
  padding-bottom: 25px;
  letter-spacing: 0.8px;
}
.mn-hd .hd-pra {
  font-size: 22px;
}
.mn-hd p {
  color: #fff;
  font-size: 18px;
  line-height: 1.6;
  font-weight: 400;
  letter-spacing: 0.6px;
}

.mn-btn a {
  padding: 15px 35px;
  margin: 0;
  background-color: #26a9db;
  font-size: 18px;
  color: #000818;
  font-weight: 600;
  letter-spacing: 2px;
  border-radius: 100px;
  text-transform: capitalize;
  box-shadow: inset 0 0 0 0 rgba(0, 0, 0, 0);
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.mn-btn a path {
  transition: all 0.4s ease-in-out;
  fill: #000818;
}
.mn-btn a:hover {
  background-color: #1b1b1b;
  color: #fff;
  box-shadow: inset 0 -100px 0px 0px #1b1b1b;
  border-color: #1b1b1b;
}
.mn-btn a:hover path {
  fill: #fff;
}
.mn-btn a.outlineBtn {
  border-color: #fff;
  background-color: transparent;
  color: #fff;
}
.mn-btn a.outlineBtn path {
  fill: #fff;
}
.mn-btn a.outlineBtn:hover {
  background-color: #26a9db;
  color: #1b1b1b;
  box-shadow: inset 0 -100px 0px 0px #26a9db;
  border-color: #26a9db;
}
.mn-btn a.outlineBtn:hover path {
  fill: #1b1b1b;
}

section,
footer {
  background-color: #000;
}

.sec-pad {
  padding: 80px 0;
}

.hd-pad {
  padding-bottom: 60px;
}

.padX5 {
  padding-right: 5%;
  padding-left: 5%;
}

.padX8 {
  padding-right: 8%;
  padding-left: 8%;
}

.padX12 {
  padding-right: 12%;
  padding-left: 12%;
}

.padX15 {
  padding-right: 15%;
  padding-left: 15%;
}

.padX18 {
  padding-right: 18%;
  padding-left: 18%;
}

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

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

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

.sec-bg2 {
  background: rgb(0, 0, 0);
  background: linear-gradient(0deg, rgb(0, 0, 0) 0%, rgb(29, 29, 29) 50%, rgb(0, 0, 0) 100%);
}

.groupBtn {
  display: flex;
  align-items: center;
  gap: 15px;
}
.groupBtn.btn-center {
  justify-content: center;
}

.scrollStop {
  scroll-behavior: unset !important;
}

.workOverlay {
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 0.0901960784);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  width: 100%;
  height: 100%;
  z-index: 8;
  display: none;
}

.workPopup {
  height: 90vh;
  width: 767px;
  max-width: 90%;
  max-height: 90%;
  margin: auto;
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 9;
  overflow: hidden;
  overflow-y: auto;
  background-color: #202020;
  box-shadow: 0px 0px 15px 5px rgba(92, 92, 92, 0.28);
  padding: 0px 0px 30px 30px;
  border-radius: 10px;
  display: none;
}
.workPopup .workPopup-closed {
  position: sticky;
  top: 0;
  right: 0;
  margin: auto;
  text-align: right;
  cursor: pointer;
  color: #fff;
  font-size: 20px;
  padding-top: 20px;
  padding-bottom: 20px;
  padding-right: 30px;
}
.workPopup .workPopup-closed:hover {
  color: #12abe5;
}
.workPopup .workPopup-body {
  height: calc(100% - 61px);
  overflow-y: auto;
  padding-right: 30px;
}
.workPopup .workPopup-banner {
  border-radius: 5px;
  overflow: hidden;
}
.workPopup .workPopup-banner video {
  width: 100%;
}
.workPopup .workPopup-conte {
  padding-top: 20px;
}
.workPopup .workPopup-conte h6 {
  font-size: 32px;
  font-weight: 600;
  line-height: 1.2;
  padding-bottom: 15px;
  letter-spacing: 1.8px;
}
.workPopup .workPopup-conte p {
  font-size: 17px;
  font-weight: 500;
  line-height: 1.4;
  color: #fff;
  padding-bottom: 25px;
}
.workPopup .workPopup-conte span {
  font-size: 15px;
  display: block;
  padding-bottom: 10px;
  color: #bebebe;
}
.workPopup .workPopup-conte span b {
  font-weight: 700;
  padding-right: 5px;
}
.workPopup .workPopup-conte .divider {
  border-bottom: 1px solid rgba(190, 190, 190, 0.28);
  margin: 20px 0;
}
.workPopup .workPopup-conte h5 {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
  padding: 15px 0 20px;
}
.workPopup .workPopup-cardList {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -7.5px;
}
.workPopup .workPopup-cardList .workPopup-card {
  padding: 7.5px;
  max-width: 33.33%;
  flex: 0 0 33.33%;
}
.workPopup .workPopup-cardList .workPopup-card .img {
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease-in-out;
  font-size: 0;
  padding: 0;
  margin: 0;
  border: none;
}
.workPopup .workPopup-cardList .workPopup-card .img img {
  width: 100%;
  height: 170px;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.4s ease-in-out;
}
.workPopup .workPopup-cardList .workPopup-card .img::after {
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.4s ease-in-out;
  opacity: 0;
}
.workPopup .workPopup-cardList .workPopup-card .img:hover::after {
  opacity: 1;
}
.workPopup .workPopup-cardList .workPopup-card .img:hover img {
  transform: scale(1.02);
}

/* header CSS */
header {
  transition: all 0.4s ease-In-out;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 7;
  padding: 15px 0;
}
header.sticky {
  position: fixed;
  padding: 8px 0;
  background-color: rgba(0, 0, 0, 0.9411764706);
}
header.sticky .logo img {
  width: 60px;
}

/* Dropdown CSS*/
.sticky.nav-up {
  transform: translateY(-100px);
}

.logo {
  display: inline-block;
  position: relative;
  z-index: 3;
}
.logo img {
  display: block;
  width: 110px;
}

/* Menu Css */
.menu {
  font-size: 0px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 35px;
}
.menu li {
  display: inline-block;
}
.menu li a {
  display: flex;
  font-size: 18px;
  color: #fff;
  font-weight: 300;
  letter-spacing: 1.2px;
  padding-bottom: 20px;
  margin-top: 20px;
  align-items: center;
  gap: 5px;
}
.menu li a i {
  font-size: 12px;
}
.menu li a:hover {
  color: #12abe5;
}
.menu li.active a {
  color: #26a9db;
  position: relative;
}
.menu li.active a::after {
  content: "";
  width: 50%;
  height: 4px;
  background-color: #26a9db;
  position: absolute;
  left: 0;
  bottom: 12px;
  border-radius: 50px;
}
.menu li.navBtn a {
  padding: 13px 20px;
  margin: 0;
  background-color: #26a9db;
  color: #000818;
  font-weight: 600;
  letter-spacing: 1.2px;
  border-radius: 30px;
  box-shadow: inset 0 0 0 0 rgba(0, 0, 0, 0);
  border: 1px solid transparent;
}
.menu li.navBtn a:hover {
  background-color: #1b1b1b;
  color: #fff;
  box-shadow: inset 0 -100px 0px 0px #1b1b1b;
  border-color: #1b1b1b;
}
.menu li.navBtn a::after {
  display: none;
}

/* Dropdown CSS*/
@keyframes btotreverse {
  0% {
    top: 75px;
    opacity: 1;
  }
  100% {
    top: 115px;
    opacity: 0;
  }
}
@keyframes btot {
  0% {
    top: 115px;
    opacity: 0;
  }
  100% {
    top: 55px;
    opacity: 1;
  }
}
.dropdown-nav {
  position: relative;
  overflow: hidden;
  vertical-align: middle;
}
.dropdown-nav:hover {
  overflow: visible;
}
.dropdown-nav:hover ul.dropdown {
  animation: btot 0.5s forwards;
  z-index: 9;
}

.dropdown {
  position: absolute;
  width: 270px;
  left: 0px;
  margin: auto;
  background: rgba(0, 0, 0, 0.9411764706);
  -webkit-backdrop-filter: blur(12px);
          backdrop-filter: blur(12px);
  text-align: left;
  border-radius: 2px;
  opacity: 0;
  animation: btotreverse 0.5s forwards;
}
.dropdown li {
  width: 100%;
  display: inline-block;
}
.dropdown li a {
  padding: 20px 20px;
  color: #fff !important;
  width: 100%;
  margin: 0px;
  font-weight: 600;
  background: transparent !important;
  width: 100%;
  font-size: 13px !important;
  justify-content: space-between;
}
.dropdown li a::after {
  display: none !important;
}
.dropdown li a:hover {
  color: #26a9db !important;
  background-color: #1b1b1b !important;
}
.dropdown li.last a {
  margin-bottom: 0px;
}

/* Dropdown CSS*/
@keyframes btotreverse2 {
  0% {
    left: calc(100% + 20px);
    opacity: 1;
  }
  100% {
    left: 100%;
    opacity: 0;
  }
}
@keyframes btot2 {
  0% {
    left: 115px;
    opacity: 0;
  }
  100% {
    left: calc(100% + 0px);
    opacity: 1;
  }
}
.subDropdown-nav {
  position: relative;
  overflow: hidden;
  vertical-align: middle;
}
.subDropdown-nav:hover {
  overflow: visible;
}
.subDropdown-nav:hover .subDropdown {
  animation: btot2 0.5s forwards;
  z-index: 9;
}

.subDropdown {
  position: absolute;
  width: 270px;
  top: 0px;
  margin: auto;
  background: rgba(0, 0, 0, 0.9411764706);
  -webkit-backdrop-filter: blur(12px);
          backdrop-filter: blur(12px);
  text-align: left;
  border-radius: 2px;
  opacity: 0;
  animation: btotreverse2 0.5s forwards;
}
.subDropdown li {
  width: 100%;
  display: inline-block;
}
.subDropdown li a {
  padding: 20px 20px;
  color: #fff !important;
  width: 100%;
  margin: 0px;
  font-weight: 600;
  background: transparent !important;
  width: 100%;
  font-size: 13px !important;
  justify-content: space-between;
}
.subDropdown li a::after {
  display: none !important;
}
.subDropdown li a:hover {
  color: #26a9db !important;
  background-color: #1b1b1b !important;
}
.subDropdown li.last a {
  margin-bottom: 0px;
}

/* Hamburger Menu */
.menu-Bar {
  width: 30px;
  height: 20px;
  cursor: pointer;
  position: absolute;
  right: 15px;
  top: 0;
  bottom: 0px;
  margin: auto;
  z-index: 22;
  display: none;
}
.menu-Bar span {
  display: block;
  height: 4px;
  width: 100%;
  background: #12abe5;
  position: absolute;
  transition: 0.6s all;
  border-radius: 100px;
}
.menu-Bar span:nth-child(1) {
  top: 0;
}
.menu-Bar span:nth-child(2) {
  top: 8px;
  transform-origin: left;
}
.menu-Bar span:nth-child(3) {
  top: 16px;
}
.menu-Bar.open span {
  background: white;
}
.menu-Bar.open span:nth-child(1) {
  transform: rotate(45deg);
  top: 12px;
  transform-origin: right-center;
}
.menu-Bar.open span:nth-child(2) {
  width: 0;
  opacity: 0;
}
.menu-Bar.open span:nth-child(3) {
  transform: rotate(-45deg);
  top: 12px;
  transform-origin: right-center;
}

/* Main Banner CSS */
.mainBanner {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  min-height: 100vh;
  position: relative;
  padding: 200px 0 80px 0;
  overflow: hidden;
  background-color: transparent;
}
.mainBanner::after {
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7215686275);
  opacity: 1;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
}
.mainBanner .container {
  z-index: 2;
}
.mainBanner .videoBg {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  overflow: hidden;
  z-index: -1;
}
.mainBanner .videoBg::after {
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.75);
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  -webkit-backdrop-filter: blur(3px);
          backdrop-filter: blur(3px);
}
.mainBanner .videoBg video {
  width: 100%;
}
.mainBanner .mainBanner-cont h2 {
  font-family: "Shapiro 25 Super Fly Text";
  font-size: 24px;
  color: #fff;
  line-height: 1.2;
  font-weight: 600;
  text-transform: uppercase;
  position: relative;
  letter-spacing: 8px;
  padding-bottom: 25px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.mainBanner .mainBanner-cont h2::before {
  content: "";
  width: 50px;
  height: 5px;
  border-radius: 50px;
  background-color: #12abe5;
}
.mainBanner .mainBanner-cont h1 {
  font-size: 76px;
  font-weight: 600;
  line-height: 1.1;
  padding-bottom: 30px;
  letter-spacing: 3px;
}
.mainBanner .mainBanner-cont p {
  color: #fff;
  line-height: 1.4;
  font-size: 30px;
  letter-spacing: 0.6px;
}
.mainBanner .mainBanner-cont p b {
  color: #12abe5;
}
.mainBanner .mainBanner-cont .mn-btn {
  padding-top: 25px;
}
.mainBanner .mainBanner-socialIcon {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  position: absolute;
  bottom: 20px;
  right: 12%;
}
.mainBanner .mainBanner-socialIcon b {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 6px;
}
.mainBanner .mainBanner-socialIcon em {
  width: 30px;
  height: 2px;
  background-color: #12abe5;
  border-radius: 5px;
}
.mainBanner .mainBanner-socialIcon ul {
  display: flex;
  align-items: center;
  padding-left: 10px;
  gap: 15px;
}
.mainBanner .mainBanner-socialIcon ul li a {
  color: #fff;
}
.mainBanner .mainBanner-socialIcon ul li a:hover {
  color: #26a9db;
}
.mainBanner .shape-polygon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: calc(100% - clamp(1.33em, 3vw, 3em) * 6);
  aspect-ratio: 816/1000;
  clip-path: polygon(24% 0, 67% 0, 86% 11%, 100% 100%, 19% 100%, 0 88%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
}
.mainBanner .shape-polygon .inner {
  position: absolute;
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  padding: 200px 0 80px 0;
}
.mainBanner .shape-polygon .inner h2,
.mainBanner .shape-polygon .inner h1,
.mainBanner .shape-polygon .inner p {
  color: #26a9db;
}
.mainBanner .shape-polygon .inner::after {
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
}
.mainBanner .shape-polygon .inner .container {
  z-index: 99;
}
.mainBanner .shape-polygon .inner .single {
  transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  --aspect-ratio-w: 16;
  --aspect-ratio-h: 9;
  --parent-height: 100;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(var(--parent-height) * 1vh);
  overflow: hidden;
  background: var(--color-dark);
  transform: translateZ(0);
  isolation: isolate;
  pointer-events: none;
  border-radius: 0 0 calc(var(--border-radius) * 1.5) calc(var(--border-radius) * 1.5);
  border-radius: calc(var(--border-radius) * 1.5);
}
.mainBanner .shape-polygon .inner .single video {
  width: 100vw;
  height: calc(var(--aspect-ratio-h) / var(--aspect-ratio-w) * var(--parent-height) * 1vw);
  min-height: calc(var(--parent-height) * 1vh);
  min-width: calc(var(--aspect-ratio-w) / var(--aspect-ratio-h) * var(--parent-height) * 1vh);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Custom CSS Styling */
.homeSection1 {
  width: 100%;
}
.homeSection1 .hSec1-bottom {
  padding-top: 60px;
}
.homeSection1 .hSec1-cont .mn-btn {
  padding-top: 20px;
}
.homeSection1 .hSec1-cont h6 {
  padding-bottom: 20px;
}
.homeSection1 .hSec1-cont h5 {
  padding: 20px 0 20px;
}
.homeSection1 .hSec1-cont ul li {
  display: flex;
  gap: 8px;
  flex-direction: column;
  padding-bottom: 25px;
  color: #999;
  font-size: 16px;
  line-height: 1.3;
}
.homeSection1 .hSec1-cont ul li b {
  flex-shrink: 0;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.2;
  color: #ffffff;
}

.beforeAfterFrame {
  font-size: 0;
}
.beforeAfterFrame video {
  height: 400px !important;
  width: auto !important;
}
.beforeAfterFrame i {
  margin-top: 11px;
}

.beforeAfter {
  padding-left: 30px;
}

.brandIcon-main {
  display: flex;
  align-items: center;
  gap: 30px;
}
.brandIcon-main .brandIcon img {
  filter: brightness(100);
}

.innerFAQSection {
  position: relative;
}
.innerFAQSection::before {
  content: "";
  width: 110px;
  height: 140px;
  background-image: url(../images/section-after-before/idea1.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 100px;
  right: 8%;
  pointer-events: none;
}

.innerFAQSec-accordion {
  position: relative;
  z-index: 1;
}
.innerFAQSec-accordion .accordion {
  list-style: none;
  padding: 0;
  margin: 0;
}
.innerFAQSec-accordion .accordion li {
  background-color: #1b1b1b;
  -webkit-backdrop-filter: opacity(0.8);
          backdrop-filter: opacity(0.8);
  border-top: 1px solid transparent;
  border-bottom: 1px solid #dfdfdf;
  will-change: border;
  transition: all 0.4s ease-in-out;
}
.innerFAQSec-accordion .accordion li.last {
  border-bottom-color: transparent;
}
.innerFAQSec-accordion .accordion li.active i {
  transform: rotate(360deg);
  color: #26a9db;
}
.innerFAQSec-accordion .accordion li.active i:before {
  content: "\f068";
  color: #26a9db;
}
.innerFAQSec-accordion .accordion li.active .acc_title {
  color: #26a9db;
  padding-bottom: 0;
}
.innerFAQSec-accordion .accordion li .acc_title {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  cursor: pointer;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 400;
  color: #fff;
  padding: 20px 15px 20px;
  transition: all 0.4s ease-in-out;
}
.innerFAQSec-accordion .accordion li .acc_title i {
  color: #fff;
  padding: 0 15px;
  transition: 0.35s ease-out;
}
.innerFAQSec-accordion .accordion li .acc_desc {
  padding: 15px 60px 20px 10px;
}
.innerFAQSec-accordion .accordion li .acc_desc *:nth-last-child(1) {
  padding-bottom: 0 !important;
}
.innerFAQSec-accordion .accordion li .acc_desc p {
  padding-bottom: 0;
  margin-bottom: 0;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: #303A42;
  transition: all 0.4s ease-in-out;
  color: #bebebe;
  padding-bottom: 15px;
}
.innerFAQSec-accordion .accordion li .acc_desc p b {
  display: inline-block;
  padding-bottom: 0;
  color: #fff;
}
.innerFAQSec-accordion .accordion li .acc_desc b {
  display: inline-block;
  font-weight: 700;
  padding-bottom: 15px;
  letter-spacing: 0.8px;
}
.innerFAQSec-accordion .accordion li .acc_desc ul {
  padding-bottom: 15px;
}
.innerFAQSec-accordion .accordion li .acc_desc ul li {
  background-color: transparent;
  border-top: 0px solid transparent;
  border-bottom: 0px solid #dfdfdf;
  will-change: border;
  transition: all 0.4s ease-in-out;
  padding-bottom: 10px;
  margin-bottom: 0;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.4;
  padding-left: 15px;
  color: #bebebe;
  position: relative;
}
.innerFAQSec-accordion .accordion li .acc_desc ul li::before {
  content: "";
  width: 5px;
  height: 5px;
  background-color: #bebebe;
  position: absolute;
  top: 9px;
  left: 0;
  border-radius: 50%;
}

.ctaSection1 {
  background-image: url(../images/sec-bg1.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
.ctaSection1::before {
  content: "";
  width: 450px;
  height: 400px;
  background-image: url(../images/section-after-before/after1.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: -150px;
  left: -70px;
  pointer-events: none;
}
.ctaSection1 .ctaSec1-hd h5 {
  padding-bottom: 10px;
}
.ctaSection1 .ctaSec1-hd h6 {
  padding-bottom: 20px;
}
.ctaSection1 .ctaSec1-hd p {
  font-size: 22px;
  padding-bottom: 40px;
}
.ctaSection1 .ctaSec1-hd p a {
  font-size: 22px;
  color: #12abe5;
}
.ctaSection1 .ctaSec1-hd p a:hover {
  color: #fff;
}

.reviewSection .reviewSec-hd h5 {
  padding-bottom: 8px;
}
.reviewSection .reviewSec-hd h6 {
  padding-bottom: 10px;
}

.review-slider .slick-slide {
  margin: 0;
  padding: 20px;
}
.review-slider ul.slick-dots {
  padding: 20px 0 0;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.review-slider ul.slick-dots li {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.review-slider ul.slick-dots li button {
  width: 13px;
  height: 13px;
  background-color: #1b1b1b;
  border: 3px solid #bebebe;
}
.review-slider ul.slick-dots li.slick-active button {
  width: 13px;
  height: 13px;
  background-color: transparent;
  border-color: #26a9db;
}

.reviewCard {
  width: 100%;
  height: 100%;
  position: relative;
  padding: 25px;
  border-radius: 10px;
  background-color: #1b1b1b;
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: space-between;
  box-shadow: 0px 0px 35px 5px rgba(156, 156, 156, 0);
  transition: all 0.4s ease-in-out;
}
.reviewCard:hover {
  box-shadow: 0px 0px 35px 5px rgba(156, 156, 156, 0.3);
}
.reviewCard .reviewCard-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 20px;
}
.reviewCard .reviewCard-header .reviewCard-userDetail {
  display: flex;
  align-items: center;
  gap: 10px;
}
.reviewCard .reviewCard-header .reviewCard-userDetail .reviewCard-userImg {
  flex-shrink: 0;
}
.reviewCard .reviewCard-header .reviewCard-userDetail .reviewCard-userImg img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}
.reviewCard .reviewCard-header .reviewCard-userDetail .reviewCard-userData h6 {
  font-family: "Shapiro 35 Feather Text";
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.9px;
  padding-bottom: 3px;
}
.reviewCard .reviewCard-header .reviewCard-userDetail .reviewCard-userData span,
.reviewCard .reviewCard-header .reviewCard-userDetail .reviewCard-userData p {
  color: #bebebe;
  font-size: 11px;
  line-height: 1.3;
}
.reviewCard .reviewCard-header .reviewCard-rate {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 2px;
}
.reviewCard .reviewCard-header .reviewCard-rate i {
  font-size: 11px;
  color: #26a9db;
}
.reviewCard .reviewCard-body p {
  font-size: 16px;
  font-weight: normal;
  line-height: 1.4;
  color: #fff;
  letter-spacing: 0.3px;
}
.reviewCard .reviewCard-footer span {
  color: #bebebe;
  font-style: italic;
  letter-spacing: 1px;
  font-size: 12px;
}

.stacked-card {
  background: #1b1b1b;
  padding: 2rem;
  border-radius: 5px;
  top: 130px;
  position: sticky;
  margin-bottom: 40px;
  box-shadow: 0px 0px 15px rgba(77, 77, 77, 0.36);
}
.stacked-card .content h5 {
  font-size: 18px;
  gap: 10px;
  letter-spacing: 5px;
  padding-bottom: 5px;
}
.stacked-card .content h6 {
  font-size: 38px;
  padding-bottom: 20px;
}
.stacked-card .content p {
  padding-bottom: 20px;
  color: #bebebe;
}
.stacked-card .content ul {
  display: flex;
  flex-wrap: wrap;
  padding-bottom: 30px;
}
.stacked-card .content ul li {
  max-width: 50%;
  flex: 0 0 50%;
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 0 7.5px 15px 0;
  position: relative;
  font-size: 18px;
  color: #bebebe;
}
.stacked-card .content ul li:nth-child(2n) {
  padding-right: 0;
  padding-left: 7.5px;
}
.stacked-card .content ul li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #bebebe;
}
.stacked-card .row {
  align-items: center;
}
.stacked-card:last-child {
  margin-bottom: 0;
}
.stacked-card.not-sticky {
  position: relative;
  top: 0 !important;
}
.stacked-card img {
  width: 100%;
}
.stacked-card:nth-child(1n) {
  top: 120px;
}
.stacked-card:nth-child(2n) {
  top: 140px;
}
.stacked-card:nth-child(3n) {
  top: 160px;
}
.stacked-card:nth-child(4n) {
  top: 180px;
}
.stacked-card:nth-child(5n) {
  top: 200px;
}
.stacked-card:nth-child(6n) {
  top: 220px;
}
.stacked-card:nth-child(7n) {
  top: 240px;
}
.stacked-card:nth-child(8n) {
  top: 260px;
}

.proceSec-cont ul li {
  position: relative;
  display: flex;
  padding-bottom: 40px;
  overflow: hidden;
  opacity: 0;
  transition: 0.4s ease;
}
.proceSec-cont ul li::after {
  content: "";
  width: 0px;
  height: 0%;
  position: absolute;
  top: 10px;
  left: 17px;
  border-left: 6px dotted #bebebe;
  transition: all 1.2s ease-in-out;
}
.proceSec-cont ul li.last::after {
  display: none;
}
.proceSec-cont ul li span {
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #2b2b2b;
  display: grid;
  place-items: center;
  font-size: 24px;
  font-weight: 500;
  color: #fff;
  padding-top: 3px;
  z-index: 1;
  transition: all 1.4s ease-in-out;
}
.proceSec-cont ul li.active::after {
  height: 90%;
}
.proceSec-cont ul li.active span {
  transition: all 0.4s ease-in-out;
  background-color: #26a9db;
}
.proceSec-cont ul li.active div {
  animation-name: fadeInUp;
  animation-duration: 0.8s;
  animation-fill-mode: both;
}
.proceSec-cont ul li:hover span {
  transition: all 0.2s ease;
  background-color: #2b2b2b;
}
.proceSec-cont ul li div {
  padding-left: 50px;
  padding-right: 30px;
}
.proceSec-cont ul li div h6 {
  padding-bottom: 10px;
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.1;
}
.proceSec-cont ul li div p {
  font-weight: 400;
  font-size: 18px;
  line-height: 1.4;
  color: #bebebe;
}

.proceSection-img {
  filter: invert(1) contrast(2) brightness(1);
}

.blogSection {
  padding: 150px 0 160px;
}

.blogListing {
  row-gap: 24px;
}

.blog-card {
  border-radius: 6px;
  background-color: #1d1e22;
  box-shadow: 0 5px 18px 0 rgba(167, 167, 167, 0.12);
  height: 100%;
  transition: all 0.4s ease-in-out;
  filter: grayscale(1);
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  filter: grayscale(0%);
}
.blog-card .blogCadr-img {
  margin-bottom: 55px;
  position: relative;
  flex-shrink: 0;
}
.blog-card .blogCadr-img img {
  border-radius: 6px 6px 0 0;
}
.blog-card .blogCadr-img .blogCard-date {
  border-radius: 4px;
  background-color: #12abe5;
  position: absolute;
  left: 35px;
  bottom: -35px;
  width: 78px;
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.blog-card .blogCadr-img .blogCard-date h6 {
  font-size: 30px;
  line-height: 0.933;
  color: #1b1b1b;
  font-weight: 700;
  padding-bottom: 5px;
}
.blog-card .blogCadr-img .blogCard-date span {
  font-size: 14px;
  color: #1b1b1b;
  font-weight: 400;
}
.blog-card .blogCard-card {
  padding: 0 25px 25px;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  height: 100%;
}
.blog-card .blogCard-card h4 {
  font-size: 20px;
  color: #fff;
  line-height: 1.2;
  font-weight: 600;
  padding-bottom: 12px;
  min-height: 65px;
  letter-spacing: 1px;
}
.blog-card .blogCard-card p {
  font-size: 16px;
  color: #bebebe;
  line-height: 1.4;
  font-weight: 300;
  padding-bottom: 35px;
  letter-spacing: 0.6px;
}
.blog-card .blogCard-card a {
  font-size: 14px;
  color: #fff;
  line-height: 1.2;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.blog-card .blogCard-card a:hover {
  color: #26a9db;
}

.innerBlogSection {
  width: 100%;
  height: auto;
  padding: 120px 0;
  position: relative;
}

.art,
ul.share li {
  margin: 0 0 0 auto;
}

.auth-img,
.author {
  align-items: center;
  display: inline-flex;
}

footer {
  border-top: 1px solid rgba(54, 54, 54, 0.7803921569);
  padding: 90px 0;
}
footer .widget-about h6 {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
  color: #fff;
  padding-bottom: 20px;
}
footer .widget-about ul li {
  padding-bottom: 15px;
}
footer .widget-about ul li a {
  color: #a8a8a8;
  line-height: 1.4;
  display: inline-flex;
  gap: 5px;
}
footer .widget-about ul li a i {
  width: 20px;
  flex: 0 0 20px;
  color: #26a9db;
  margin-top: 3px;
}
footer .widget-about ul li a:hover {
  color: #fff;
}
footer .widget-about ul li a:hover i {
  color: #12abe5;
}
footer .widget-about .footer-socialIcon {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 15px;
}
footer .widget-about .footer-socialIcon b {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 4px;
}
footer .widget-about .footer-socialIcon em {
  width: 30px;
  height: 2px;
  background-color: #12abe5;
  border-radius: 30px;
}
footer .widget-about ol {
  display: flex;
  gap: 15px;
}
footer .widget.padleft {
  padding-left: 50px;
}
footer .widget h6 {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
  color: #fff;
  padding-bottom: 20px;
  letter-spacing: 2px;
}
footer .widget ul li {
  padding-bottom: 20px;
}
footer .widget ul li.last {
  padding-bottom: 0;
}
footer .widget ul li a {
  font-size: 16px;
  color: #a8a8a8;
}
footer .widget ul li a:hover {
  color: #26a9db;
}

.footer-logo {
  width: 120px;
}

.copyright {
  background-color: #101010;
  padding: 8px 0 10px;
  border-top: 1px solid #242424;
}
.copyright p {
  font-size: 13px;
  font-size: 600;
  letter-spacing: 0.8px;
}
.copyright .cont {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}
.copyright .cont a {
  font-size: 13px;
}
.copyright .cont span {
  color: #26a9db;
}

.innerBanner {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 180px 0 60px;
  position: relative;
  min-height: 450px;
  background-color: rgb(25, 27, 29);
}
.innerBanner .col-md-4 {
  text-align: right;
}
.innerBanner::before {
  content: "";
  width: 100%;
  height: 100%;
  background: rgb(25, 27, 29);
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.8;
}
.innerBanner::after {
  content: "";
  width: 100%;
  height: 100%;
  background: rgb(25, 27, 29);
  background: linear-gradient(180deg, rgba(25, 27, 29, 0) 0%, rgb(0, 0, 0) 100%);
  position: absolute;
  top: 0;
  left: 0;
}
.innerBanner .container {
  position: relative;
  z-index: 2;
}
.innerBanner .innerBanner-cont {
  position: relative;
  z-index: 1;
}
.innerBanner .innerBanner-cont h1 {
  font-size: 55px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 1.4px;
  line-height: 1.2;
  padding-bottom: 10px;
}

.breadcrumb .breadcrumb-item {
  position: relative;
  margin: 0px 2px;
}
.breadcrumb .breadcrumb-item a {
  font-size: 18px;
  font-weight: 400;
  color: #cecece;
}
.breadcrumb .breadcrumb-item a:hover {
  color: #fff;
}
.breadcrumb .breadcrumb-item.active {
  font-size: 18px;
  font-weight: 400;
  color: #12abe5;
}

.breadcrumb-item + .breadcrumb-item::before {
  float: left;
  padding-right: 0.5rem;
  content: "";
  position: absolute;
  left: -10px;
  top: 6px;
  height: 4px;
  width: 10px;
  background-color: #12abe5;
  border-radius: 40px;
}

.circel-tex-area1 {
  max-width: 120px;
  max-height: 120px;
  z-index: 10;
  position: relative;
}

.circel-tex-area1 img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.rounded-text {
  width: 120px;
  height: 120px;
  text-transform: uppercase;
  transform: rotate(-103deg);
  color: #fff;
  font-weight: bold;
  letter-spacing: 15px;
  z-index: -1;
  font-family: var(--font-outfit);
  animation: rotating 12s linear infinite;
}
.rounded-text.widget {
  letter-spacing: 7px;
}
@keyframes rotating {
  from {
    transform: rotate(360deg);
  }
  to {
    transform: rotate(0deg);
  }
}
.rounded-text svg {
  fill: #fff;
}
.rounded-text svg g {
  font-size: 20px;
}

.aboutSection1 {
  position: relative;
}
.aboutSection1 .aboutSec1-img {
  overflow: hidden;
  border-radius: 50% 50% 0 0;
}
.aboutSection1 .aboutSec1-img img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.aboutSection1 .aboutSec1-cont {
  padding-left: 80px;
}

.water-text-two h1 {
  font-size: 115px;
  font-weight: 600;
  color: rgba(167, 167, 167, 0.431372549);
  opacity: 0.25;
}

.water-text-two {
  text-align: center;
}

.aboutSection2 .aboutSec2-cont ul {
  padding: 30px 0 60px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: 0 -15px;
  row-gap: 30px;
}
.aboutSection2 .aboutSec2-cont ul li {
  padding: 0 15px;
  width: 33.33%;
  flex: 0 0 33.33%;
}
.aboutSection2 .aboutSec2-cont ul li .aboutSec2-card {
  padding: 25px 10px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  text-align: center;
}
.aboutSection2 .aboutSec2-cont ul li h6 {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.2;
  padding-bottom: 10px;
  text-transform: capitalize;
  color: #bebebe;
}
.aboutSection2 .aboutSec2-cont ul li h5 {
  font-size: 46px;
  line-height: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.aboutSection2 .aboutSec2-cont ul li h5 span {
  font-size: 16px;
  line-height: 1.7;
  color: #bebebe;
}
.aboutSection2 .aboutSec2-awward {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 30px;
  padding-top: 40px;
}
.aboutSection2 .aboutSec2-right {
  padding-left: 40px;
}

.skills-bar-container {
  position: relative;
  width: 100%;
  list-style: none;
  padding: 0;
  margin-top: 40px;
  margin-bottom: 0px;
}
.skills-bar-container li {
  position: relative;
  width: 100%;
  padding: 0;
  margin-bottom: 40px;
}
.skills-bar-container li:last-child {
  margin-bottom: 0px;
}
.skills-bar-container li .progressbar-title {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  padding-bottom: 10px;
}
.skills-bar-container li .progressbar-title .percent {
  position: absolute;
  right: 0;
  top: 0px;
  transition: 0.3s;
  display: flex;
  gap: 3px;
}
.skills-bar-container li .progressbar-title .percent::after {
  content: "%";
}
.skills-bar-container li .bar-container {
  background-color: rgba(172, 172, 172, 0.5);
  position: relative;
  width: 100%;
  height: 3px;
  margin-top: 5px;
  display: block;
}
.skills-bar-container li .bar-container .progressbar {
  position: absolute;
  width: 0%;
  height: 100%;
  background-color: #fff;
  animation-duration: 2s;
  animation-timing-function: ease-out;
}

.processSection1 {
  padding: 0;
}

.proSec1-head {
  padding: 70px 0 72px;
  background-color: #000;
  display: flex;
  justify-content: center;
}
.proSec1-head .fixed-product {
  transition: all 0.4s ease-in-out;
  box-shadow: 3px 8px 20px rgba(204, 204, 204, 0);
  will-change: box-shadow;
}
.proSec1-head .fixed-product.sticky-product {
  position: fixed;
  width: auto;
  display: inline-flex;
  z-index: 2;
  bottom: 20px;
  box-shadow: 0px 0px 9px 1px rgba(222, 222, 222, 0.37);
  background-color: rgba(36, 36, 36, 0.75);
  padding: 15px 30px 12px;
  -webkit-backdrop-filter: blur(14px);
          backdrop-filter: blur(14px);
  border-radius: 200px;
}
.proSec1-head .fixed-product.sticky-product ul {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
}
.proSec1-head .fixed-product.sticky-product ul li {
  display: flex;
  align-items: center;
  gap: 1px;
}
.proSec1-head .fixed-product.sticky-product ul li.current a {
  color: #12abe5;
}
.proSec1-head .fixed-product.sticky-product ul li.current a:hover {
  color: #12abe5;
}
.proSec1-head .fixed-product.sticky-product ul li a {
  font-weight: 700;
  font-size: 18px;
  line-height: 1;
  color: #bebebe;
}
.proSec1-head .fixed-product.sticky-product ul li a:hover {
  color: #fff;
}
.proSec1-head ul {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 35px;
}
.proSec1-head ul li {
  display: flex;
  align-items: center;
  gap: 1px;
}
.proSec1-head ul li.current a {
  color: #12abe5;
}
.proSec1-head ul li.current a:hover {
  color: #12abe5;
}
.proSec1-head ul li a {
  font-weight: 700;
  font-size: 28px;
  line-height: 1.2;
  color: #bebebe;
}
.proSec1-head ul li a:hover {
  color: #fff;
}

.processSec1-main {
  padding-top: 62px;
  padding-bottom: 62px;
}
.processSec1-main.right .processSec1-mainImg {
  text-align: right;
}
.processSec1-main .processSec1-mainCont p {
  font-weight: 500;
  padding-bottom: 20px;
  line-height: 1.4;
  color: #bebebe;
}
.processSec1-main .processSec1-mainCont ul li {
  position: relative;
  padding-bottom: 20px;
  padding-left: 25px;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.42;
  color: #bebebe;
}
.processSec1-main .processSec1-mainCont ul li span {
  font-weight: 700;
  color: #12abe5;
}
.processSec1-main .processSec1-mainCont ul li::after {
  content: "";
  width: 8px;
  height: 8px;
  transform: rotate(45deg);
  background-color: #fff;
  position: absolute;
  top: 7px;
  left: 0px;
}

.contactSection1 {
  position: relative;
}
.contactSection1 .container {
  position: relative;
  z-index: 2;
}
.contactSection1::before {
  content: "";
  width: 50%;
  height: 100%;
  background: rgb(0, 0, 0);
  background: linear-gradient(0deg, rgb(0, 0, 0) 0%, rgb(32, 32, 32) 20%, rgb(48, 48, 48) 35%, rgb(54, 54, 54) 50%, rgb(48, 48, 48) 65%, rgb(32, 32, 32) 80%, rgb(0, 0, 0) 100%);
  position: absolute;
  right: 0;
  top: 0;
}
.contactSection1 .contactSec1-left {
  padding-right: 30px;
}
.contactSection1 .contactSec1-hd {
  padding-bottom: 35px;
}
.contactSection1 .contactSec1-form input,
.contactSection1 .contactSec1-form textarea {
  border: 1px solid #999;
  box-shadow: none;
}
.contactSection1 .contactSec1-form .contactf-Feild {
  padding-bottom: 15px;
}
.contactSection1 .contactSec1-form .contactf-Feild input,
.contactSection1 .contactSec1-form .contactf-Feild textarea {
  width: 100%;
  height: 45px;
  border-radius: 5px;
  padding: 10px;
  color: #fff;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.2;
}
.contactSection1 .contactSec1-form .contactf-Feild textarea {
  height: 90px;
}
.contactSection1 .contactSec1-form .form-check {
  display: flex;
  align-items: center;
  gap: 15px;
}
.contactSection1 .contactSec1-form .form-check input {
  flex-shrink: 0;
}
.contactSection1 .contactSec1-form .contactf-btn {
  padding-top: 30px;
}
.contactSection1 .contactSec1-form .contactf-btn button {
  padding: 15px 35px;
  margin: 0;
  background-color: #DEA712;
  font-size: 18px;
  color: #000818;
  font-weight: 600;
  letter-spacing: 2px;
  border-radius: 100px;
  text-transform: capitalize;
  box-shadow: inset 0 0 0 0 rgba(0, 0, 0, 0);
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.4s ease-in-out;
}
.contactSection1 .contactSec1-form .contactf-btn button path {
  transition: all 0.4s ease-in-out;
  fill: #000818;
}
.contactSection1 .contactSec1-form .contactf-btn button:hover {
  background-color: #1b1b1b;
  color: #fff;
  box-shadow: inset 0 -100px 0px 0px #1b1b1b;
  border-color: #1b1b1b;
}
.contactSection1 .contactSec1-form .contactf-btn button:hover path {
  fill: #fff;
}
.contactSection1 .contactSec1-right {
  padding: 0;
  margin: 0;
  font-size: 0;
}
.contactSection1 .contactSec1-right iframe {
  filter: grayscale(100%) invert(92%) contrast(83%);
  width: 100%;
  height: 550px;
}
.contactSection1 .contactSec1-right .contactSec1-card {
  background-color: #282B32;
}
.contactSection1 .contactSec1-right .contactSec1-social {
  font-size: 16px;
  padding: 40px 30px;
}
.contactSection1 .contactSec1-right .contactSec1-social ul {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.contactSection1 .contactSec1-right .contactSec1-social ul li {
  text-align: center;
}
.contactSection1 .contactSec1-right .contactSec1-social ul li .icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid #12abe5;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #26a9db;
  font-size: 22px;
  margin: auto;
}
.contactSection1 .contactSec1-right .contactSec1-social ul li h6 {
  font-size: 20px;
  color: #fff;
  line-height: 1.2;
  padding: 20px 0 5px;
  font-weight: 700;
}
.contactSection1 .contactSec1-right .contactSec1-social ul li a,
.contactSection1 .contactSec1-right .contactSec1-social ul li p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  color: #bebebe;
}

.workSec1-panel {
  position: relative;
  padding: 30px 0;
}
.workSec1-panel .owl-nav {
  display: flex;
  gap: 20px;
  position: absolute;
  right: 0;
  top: -55px;
}
.workSec1-panel .owl-nav button {
  font-size: 0;
  padding: 0;
  margin: 0;
}
.workSec1-panel .owl-nav button span {
  color: #fff;
  font-size: 40px;
  transition: all 0.4s ease-in-out;
}
.workSec1-panel .owl-nav button:hover span {
  color: #12abe5;
}
.workSec1-panel .owl-stage-outer {
  overflow: hidden;
}
.workSec1-panel .owl-stage-outer .owl-stage {
  display: flex;
}
.workSec1-panel .workSec1-card {
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.workSec1-panel .workSec1-card a {
  width: 100%;
}
.workSec1-panel .workSec1-card img {
  width: 100%;
  height: 260px;
  -o-object-fit: cover;
     object-fit: cover;
  transform: scale(1);
  transition: all 0.4s ease-in-out;
}
.workSec1-panel .workSec1-card::after {
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.4s ease-in-out;
  opacity: 0;
}
.workSec1-panel .workSec1-card:hover::after {
  opacity: 1;
}
.workSec1-panel .workSec1-card:hover img {
  transform: scale(1.02);
}

#text-anim div {
  display: inline-block;
}

.serviceSection1 .serSec1-count {
  text-align: center;
  position: relative;
}
.serviceSection1 .serSec1-count b {
  display: inline-block;
  width: 3px;
  height: 370px;
  background-color: #333;
  position: absolute;
  top: 55px;
  right: 0;
  left: 0;
  margin: auto;
}
.serviceSection1 .serSec1-count b em {
  display: inline-block;
  width: 3px;
  height: 0%;
  background-color: #fff;
  position: absolute;
  right: 0;
  left: 0;
  margin: auto;
  z-index: 1;
}
.serviceSection1 .serSec1-count span {
  border: 2px solid #fff;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  display: inline-flex;
  border-radius: 6px;
  background-color: #000;
  font-size: 22px;
  font-weight: 600;
  line-height: 1;
  transition: all 0.2s ease-in-out;
}
.serviceSection1 .serSec1-main .serSec1-mainBox:nth-last-child(1) .serSec1-count b {
  display: none;
}
.serviceSection1 .serSec1-mainBox {
  padding: 20px 0;
  transition: all 0.2s ease-in-out;
  opacity: 0.2;
}
.serviceSection1 .serSec1-card {
  height: 400px;
  border: 2px solid #fff;
  border-radius: 15px;
  justify-content: space-between;
  overflow: hidden;
  align-items: center;
  display: flex;
}
.serviceSection1 .serSec1-card .serSec1-cardCont {
  padding: 24px 30px;
  background-color: #000;
  max-width: calc(100% - 320px);
  flex: calc(100% - 320px);
}
.serviceSection1 .serSec1-card .serSec1-cardCont h5 {
  font-size: 16px;
  gap: 10px;
  letter-spacing: 2.5;
  padding-bottom: 10px;
}
.serviceSection1 .serSec1-card .serSec1-cardCont h6 {
  font-size: 36px;
}
.serviceSection1 .serSec1-card .serSec1-cardCont p {
  padding-bottom: 35px;
}
.serviceSection1 .serSec1-card .serSec1-cardLink {
  height: 400px;
  padding: 24px 24px;
  border-left: 1px solid #fff;
  background-color: #000818;
  background-image: url(../images/service/black-bg.jpg);
  max-width: 320px;
  flex: 0 0 320px;
}
.serviceSection1 .serSec1-card .serSec1-cardLink h6 {
  font-size: 22px;
  color: #fff;
  letter-spacing: 0.4px;
  padding-bottom: 25px;
  font-weight: 600;
  line-height: 1.2;
}
.serviceSection1 .serSec1-card .serSec1-cardLink ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.serviceSection2.processSection .proceSection-img {
  filter: none;
}
.serviceSection2.processSection .proceSec-cont ul li::after {
  display: none;
}
.serviceSection2.processSection .proceSec-cont ul li.active div {
  padding-left: 0;
}

.serviceSection3 .serSec2-main {
  font-size: 0;
}
.serviceSection3 .serSec2-main .serSec2-mainBox {
  padding: 30px 0;
  position: sticky;
  top: 70px;
}
.serviceSection3 .serSec2-main [class^=col-md-] {
  padding-right: 0;
  padding-left: 0;
}
.serviceSection3 .serSec2-main .row .row {
  margin: 0;
}
.serviceSection3 .serSec2-main .serSec2-mainService {
  border: 1px solid #bebebe;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 35px 30px;
  background-color: #000;
}
.serviceSection3 .serSec2-main .serSec2-mainSubCont {
  border: 1px solid #bebebe;
  height: 100%;
  padding: 20px 15px;
  text-align: center;
  background-color: #000;
  cursor: pointer;
  transition: all 0.4s ease-in-out;
}
.serviceSection3 .serSec2-main .serSec2-mainSubCont:hover {
  background-color: #1b1b1b;
}
.serviceSection3 .serSec2-main .serSec2-mainSubCont .icon {
  width: 50px;
  height: 50px;
  margin: auto;
}
.serviceSection3 .serSec2-main .serSec2-mainSubCont h5 {
  padding-top: 25px;
  font-size: 22px;
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: 1px;
}

@media (max-width: 1440px) {
  .menu {
    gap: 25px;
  }
  .menu li a {
    font-size: 16px;
  }
  .menu li.navBtn a {
    padding: 10px 20px;
  }
  .mainBanner .videoBg video {
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    height: 100%;
  }
  .mainBanner .mainBanner-cont {
    padding-right: 150px;
  }
  .mainBanner .mainBanner-cont h2 {
    font-size: 18px;
    letter-spacing: 3.5px;
    padding-bottom: 15px;
  }
  .mainBanner .mainBanner-cont h2::before {
    width: 30px;
    height: 3px;
  }
  .mainBanner .mainBanner-cont h1 {
    font-size: 46px;
    line-height: 1.2;
    letter-spacing: 0.5px;
  }
  .mainBanner .mainBanner-cont p {
    font-size: 22px;
    letter-spacing: 0;
    padding-bottom: 30px;
    line-height: 1.3;
  }
  .mn-hd h6 {
    font-size: 30px;
    letter-spacing: 0.4px;
  }
  .mn-hd p {
    font-size: 16px;
    line-height: 1.4;
    letter-spacing: 0.3px;
  }
  .mn-hd h5 {
    gap: 10px;
    font-size: 20px;
    letter-spacing: 3.5px;
  }
  .mn-hd h5::before {
    width: 30px;
    height: 3px;
  }
  .mn-btn a {
    font-size: 16px;
    letter-spacing: 1px;
  }
  .stacked-card .content h5 {
    font-size: 15px;
    padding-bottom: 5px;
    letter-spacing: 1.5px;
  }
  .stacked-card .content h6 {
    font-size: 28px;
  }
  .proceSec-cont ul li div h6 {
    font-size: 20px;
  }
  .proceSec-cont ul li div p {
    font-size: 16px;
  }
  .blog-card .blogCard-card h4 {
    font-size: 18px;
  }
  .blog-card .blogCard-card p {
    font-size: 14px;
  }
  .innerFAQSec-accordion .accordion li .acc_title {
    font-size: 17px;
    padding: 15px 10px 15px;
  }
  .ctaSection1 .ctaSec1-hd p {
    font-size: 18px;
    padding-bottom: 40px;
  }
  .ctaSection1 .ctaSec1-hd p a {
    font-size: 18px;
  }
  footer .widget-about h6,
  footer .widget h6 {
    font-size: 18px;
  }
  footer .widget-about ul li a,
  footer .widget ul li a {
    font-size: 14px;
  }
  .proSec1-head ul li a {
    font-size: 22px;
  }
  .contactSection1 .contactSec1-right .contactSec1-social {
    font-size: 0;
    padding: 37px 15px;
  }
}
@media (max-width: 1200px) {
  .menu {
    gap: 20px;
  }
  .mainBanner {
    padding-top: 150px;
  }
  .mainBanner .mainBanner-cont {
    padding-right: 0;
  }
  .proceSection-img {
    margin-left: -40px;
  }
  .proceSection-img video {
    width: 110%;
  }
  .reviewCard .reviewCard-body p {
    font-size: 14px;
  }
  .aboutSection1 .aboutSec1-cont {
    padding-left: 0px;
  }
  .aboutSection2 .aboutSec2-cont ul li {
    padding: 0 10px;
  }
  .aboutSection2 .aboutSec2-cont ul {
    padding: 20px 0;
  }
  .aboutSection2 .aboutSec2-awward {
    padding-top: 30px;
  }
  .proSec1-head ul li a {
    font-size: 18px;
  }
  .serviceSection1 .serSec1-card .serSec1-cardLink {
    padding: 20px 20px;
    max-width: 280px;
    flex: 0 0 280px;
  }
  .serviceSection1 .serSec1-card .serSec1-cardCont {
    padding: 20px 24px;
    max-width: calc(100% - 280px);
    flex: calc(100% - 280px);
  }
  .serviceSection1 .serSec1-card .serSec1-cardCont h5 {
    font-size: 12px;
  }
  .serviceSection1 .serSec1-card .serSec1-cardCont h6 {
    font-size: 30px;
  }
  .ctaSection1 .ctaSec1-hd h6 br {
    display: none;
  }
  .padX8 {
    padding-right: 3%;
    padding-left: 3%;
  }
  .menu li a i {
    font-size: 7px;
  }
  .dropdown, .subDropdown {
    width: 200px;
  }
  .dropdown li a, .subDropdown li a {
    padding: 10px 12px;
    font-size: 10px !important;
  }
}
@media (max-width: 992px) {
  .menu {
    gap: 10px;
  }
  .menu li a {
    font-size: 12px;
  }
  .menu li.navBtn a {
    padding: 6px 12px;
    font-size: 12px;
  }
  .logo img {
    display: block;
    width: 70px;
  }
  .mainBanner {
    padding-top: 130px;
    padding-bottom: 120px;
    min-height: 1px;
  }
  .sec-pad {
    padding: 40px 0;
  }
  .pt-160 {
    padding-top: 80px;
  }
  .homeSection1 .hSec1-bottom {
    padding-top: 40px;
  }
  .padX12 {
    padding-right: 3%;
    padding-left: 3%;
  }
  .hd-pad {
    padding-bottom: 25px;
  }
  .stacked-card .row {
    row-gap: 20px;
  }
  .mn-btn a {
    font-size: 14px;
    letter-spacing: 1px;
  }
  .proceSec-cont ul li div {
    padding-left: 10px;
    padding-right: 0px;
  }
  .proceSec-cont ul li span {
    flex: 0 0 25px;
    width: 25px;
    height: 25px;
    font-size: 15px;
    font-weight: 500;
    padding-top: 2px;
  }
  .proceSec-cont ul li::after {
    content: "";
    width: 0px;
    height: 0%;
    position: absolute;
    top: 30px;
    left: 10px;
    border-left: 4px dotted #bebebe;
    transition: all 1.2s ease-in-out;
  }
  .proceSec-cont ul li {
    padding-bottom: 20px;
  }
  .proceSec-cont ul li div h6 {
    font-size: 18px;
    padding-bottom: 5px;
    padding-top: 5px;
  }
  .proceSec-cont ul li div p {
    font-size: 13px;
  }
  .padX18 {
    padding-right: 5%;
    padding-left: 5%;
  }
  .blog-card .blogCard-card {
    padding: 0 15px 15px;
  }
  .blog-card .blogCadr-img {
    margin-bottom: 35px;
  }
  .blog-card .blogCadr-img .blogCard-date {
    border-radius: 2px;
    left: 15px;
    bottom: -15px;
    width: 50px;
    height: 40px;
  }
  .blog-card .blogCadr-img .blogCard-date span {
    font-size: 9px;
    font-weight: 600;
  }
  .blog-card .blogCadr-img .blogCard-date h6 {
    font-size: 17px;
  }
  .blog-card .blogCard-card h4 {
    font-size: 16px;
    letter-spacing: 0;
    font-weight: 400;
  }
  .mn-hd h5 {
    gap: 8px;
    font-size: 15px;
    letter-spacing: 2.5px;
    padding-bottom: 10px;
  }
  .mn-hd h5::before {
    width: 20px;
    height: 2px;
  }
  .mn-hd h6 {
    font-size: 24px;
    letter-spacing: 0.4px;
    padding-bottom: 15px;
  }
  .mn-hd p {
    font-size: 14px;
  }
  .contactSection1 .contactSec1-left {
    padding-right: 0px;
  }
  .contactSection1 .contactSec1-form .form-check {
    font-size: 12px;
    gap: 10px;
    align-items: flex-end;
  }
  .contactSec1-card .row {
    flex-direction: column;
  }
  .contactSec1-card .row .col-md-5, .contactSec1-card .row .col-md-7 {
    width: 100%;
  }
  .contactSection1 .contactSec1-right iframe {
    height: 300px;
  }
  .contactSection1 .contactSec1-right .contactSec1-social {
    padding: 20px 15px;
  }
  .contactSection1 .contactSec1-right .contactSec1-social ul {
    gap: 10px;
  }
  .contactSection1 .contactSec1-right .contactSec1-social ul li .icon {
    width: 35px;
    height: 35px;
    font-size: 14px;
  }
  .contactSection1 .contactSec1-right .contactSec1-social ul li h6 {
    font-size: 16px;
    padding: 10px 0 5px;
  }
  .contactSection1 .contactSec1-right .contactSec1-social ul li a, .contactSection1 .contactSec1-right .contactSec1-social ul li p {
    font-size: 12px;
  }
  .proSec1-head ul {
    gap: 15px;
  }
  .proSec1-head ul .proSec1-head ul {
    font-size: 16px;
  }
  .processSec1-main {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .water-text-two h1 {
    font-size: 40px;
  }
  .proSec1-head .fixed-product.sticky-product ul {
    gap: 15px;
  }
  .proSec1-head .fixed-product.sticky-product ul li a {
    font-size: 14px;
  }
  .aboutSection2 .aboutSec2-cont ul li h6 {
    font-size: 12px;
  }
  .aboutSection2 .aboutSec2-cont ul li h5 {
    font-size: 28px;
  }
  .aboutSection2 .aboutSec2-cont ul li h5 span {
    font-size: 12px;
  }
  .aboutSection2 .aboutSec2-right {
    padding-left: 0;
  }
  .skills-bar-container li .progressbar-title {
    font-size: 16px;
  }
  .padX8 {
    padding-right: 0%;
    padding-left: 0%;
  }
  .serviceSection1 .serSec1-card .serSec1-cardLink {
    padding: 20px 20px;
    max-width: 180px;
    flex: 0 0 180px;
  }
  .serviceSection1 .serSec1-card .serSec1-cardCont {
    padding: 20px 24px;
    max-width: calc(100% - 180px);
    flex: calc(100% - 180px);
  }
  .serviceSection2.processSection .proceSection-img {
    margin: 0;
  }
  .serviceSection3 .serSec2-main .serSec2-mainService {
    padding: 30px 10px;
  }
  .mn-btn a {
    padding: 12px 20px;
  }
  .serviceSection3 .serSec2-main .serSec2-mainSubCont {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .serviceSection3 .serSec2-main .serSec2-mainSubCont h5 {
    padding-top: 15px;
    font-size: 16px;
  }
  .serviceSection3 .serSec2-main .serSec2-mainSubCont .icon {
    width: 40px;
    height: 40px;
  }
  .innerFAQSec-accordion .accordion li .acc_title {
    font-size: 15px;
    padding: 15px 10px 15px;
  }
  .innerFAQSec-accordion .accordion li .acc_desc {
    padding: 15px 10px 20px 10px;
  }
  .innerFAQSec-accordion .accordion li .acc_desc p {
    font-size: 14px;
  }
  .ctaSection1 .ctaSec1-hd p, .ctaSection1 .ctaSec1-hd a {
    font-size: 16px;
  }
  footer .widget-about .footer-socialIcon b {
    font-size: 12px;
  }
  footer .widget-about h6, footer .widget h6 {
    font-size: 16px;
  }
  footer .widget-about .footer-socialIcon em {
    width: 15px;
  }
  footer .widget-about ol {
    gap: 10px;
  }
  footer .widget-about ol a {
    font-size: 12px;
  }
  .workSec1-panel .workSec1-card img {
    height: 200px;
  }
  .menu li.active a::after {
    height: 1px;
    left: -1px;
    bottom: 17px;
  }
}
@media (max-width: 767px) {
  img {
    max-width: 100%;
    height: auto;
  }
  .menu-Bar {
    display: block;
    top: 0px;
  }
  .menuWrap.open {
    display: flex;
    left: 0px;
  }
  .menuWrap {
    position: fixed;
    left: -210%;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    background: rgba(0, 0, 0, 0.9019607843);
    -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    transition: all 0.4s ease;
    z-index: 3;
    width: 250px;
    margin-left: 0;
  }
  ul.menu li {
    display: block;
  }
  ul.menu li a {
    margin-bottom: 10px;
    padding: 0;
    display: block;
    text-align: center;
    margin-bottom: 15px;
    padding-right: 0px;
    margin-right: 0px;
    color: #fff;
    font-size: 15px;
    text-transform: capitalize;
  }
  .logo img {
    max-width: 50%;
  }
  .container {
    position: relative;
  }
  header .header-top {
    display: none;
  }
  header .main-header ul.menu > li {
    display: block;
    padding: 0px;
  }
  header .main-header ul.menu > li a {
    color: #fff;
    padding: 0px;
  }
  header .main-header ul.menu > li a:before {
    display: none;
  }
  .mainBanner .mainBanner-cont h2 {
    font-size: 12px;
    letter-spacing: 2.5px;
  }
  .mainBanner .mainBanner-cont h2::before {
    width: 20px;
  }
  .mainBanner .mainBanner-cont h1 {
    font-size: 30px;
    line-height: 1.3;
    letter-spacing: 1.5px;
    padding-bottom: 15px;
  }
  .mainBanner .mainBanner-cont p {
    font-size: 16px;
    padding-bottom: 10px;
    line-height: 1.35;
  }
  .logo img {
    width: 100px;
  }
  .mn-btn a {
    font-size: 12px;
    letter-spacing: 1px;
    padding: 12px 20px;
  }
  .mn-btn a span.svg {
    font-size: 0;
  }
  .mn-btn a span.svg svg {
    width: 7px;
    height: 7px;
  }
  .mainBanner .mainBanner-socialIcon {
    gap: 8px;
    bottom: 10px;
    right: 5%;
  }
  .mainBanner .mainBanner-socialIcon b {
    font-size: 10px;
    letter-spacing: 3.5px;
  }
  .mainBanner .mainBanner-socialIcon em {
    width: 15px;
    height: 2px;
  }
  .mainBanner .mainBanner-socialIcon ul li a {
    font-size: 12px;
  }
  .pt-160 {
    padding-top: 60px;
  }
  .sec-pad {
    padding: 30px 0;
  }
  .homeSection1 .hSec1-cont .mn-btn {
    padding-top: 0;
    padding-bottom: 25px;
  }
  .beforeAfter {
    padding-left: 0;
  }
  .homeSection1 .hSec1-bottom {
    padding-top: 20px;
  }
  .brandIcon-main {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .brandIcon-main .brandIcon {
    width: 25%;
    text-align: center;
  }
  .mn-hd h5 {
    gap: 7px;
    font-size: 13px;
    letter-spacing: 2px;
  }
  .mn-hd h5::before {
    width: 20px;
    height: 2px;
    margin-bottom: 3px;
  }
  .mn-hd h6 {
    font-size: 22px;
    letter-spacing: 1px;
  }
  .stacked-card {
    padding: 20px 15px;
  }
  .stacked-card .content h5 {
    font-size: 12px;
    padding-bottom: 10px;
    letter-spacing: 3px;
  }
  .stacked-card .content h6 {
    font-size: 20px;
    padding-bottom: 15px;
  }
  .padX18,
  .padX15,
  .padX12 {
    padding-right: 0%;
    padding-left: 0%;
  }
  br {
    display: none;
  }
  .review-slider .slick-slide {
    /* margin: 0; */
    padding: 0 0px 0 30px;
  }
  .ctaSection1 .ctaSec1-hd h5::before {
    display: none;
  }
  footer {
    padding: 40px 0 20px;
  }
  .widget-about {
    align-items: flex-start !important;
  }
  .footer-logo {
    width: 80px;
  }
  footer .widget-about h6,
  footer .widget h6 {
    font-size: 16px;
    letter-spacing: 1.7px;
    padding-bottom: 15px;
  }
  .footer-logo {
    width: 80px;
    padding-top: 40px;
  }
  footer .widget-about .footer-socialIcon {
    display: flex;
    align-items: center;
    gap: 5px;
    padding-top: 3px;
    padding-bottom: 20px;
  }
  footer .widget-about .footer-socialIcon b {
    font-size: 11px;
    letter-spacing: 2px;
  }
  footer .widget-about .footer-socialIcon em {
    width: 15px;
    height: 2px;
    border-radius: 30px;
  }
  footer .widget-about .footer-socialIcon ol li a {
    font-size: 12px;
  }
  footer .widget.padleft {
    padding-left: 0;
  }
  footer .col-md-3 {
    width: 50%;
  }
  footer .col-md-3 .widget {
    padding-left: 20px;
  }
  footer .widget ul li {
    padding-bottom: 15px;
  }
  footer .widget-about ul li {
    padding-bottom: 10px;
  }
  .copyright {
    text-align: center;
  }
  .copyright .row {
    row-gap: 7px;
  }
  .copyright .cont {
    text-align: center !important;
    justify-content: center;
  }
  .ctaSection1 .ctaSec1-hd p {
    font-size: 15px;
    padding-bottom: 30px;
  }
  .ctaSection1 .ctaSec1-hd p a {
    font-size: 15px;
  }
  header {
    padding: 5px 0;
  }
  .menuWrap {
    align-items: flex-start;
    flex-direction: row;
    justify-content: flex-start;
  }
  .menu {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 5px;
    padding: 20px 15px 70px;
    width: 100%;
    height: 100%;
    overflow: auto;
    position: relative;
    z-index: 2;
  }
  header .main-header ul.menu > li a {
    padding: 0;
    margin: 0;
  }
  header .main-header ul.menu > li a {
    padding: 10px 0;
    margin: 0;
    font-size: 20px;
    letter-spacing: 4px;
    width: 100%;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  header .main-header ul.menu > li a i {
    font-size: 14px;
    position: relative;
    z-index: 2;
  }
  header .main-header .menu li {
    width: 100%;
  }
  header .main-header .menu li.navBtn {
    position: absolute;
    bottom: 20px;
    left: 20px;
    width: calc(100% - 40px);
  }
  .menu li.active a::after {
    width: 30px;
    height: 2px;
    bottom: 7px;
  }
  .menuWrap:before {
    content: "";
    width: 100vw;
    position: absolute;
    background-color: rgba(222, 167, 18, 0.1882352941);
    height: 100%;
    -webkit-backdrop-filter: blur(5px);
            backdrop-filter: blur(5px);
    opacity: 0;
    transition: all 0.4s ease-in-out;
  }
  .menuWrap.open:before {
    opacity: 1;
  }
  .menuWrap:after {
    content: "";
    width: 100%;
    position: absolute;
    background-color: rgba(0, 0, 0, 0.662745098);
    height: 100%;
    -webkit-backdrop-filter: blur(20px);
            backdrop-filter: blur(20px);
  }
  header .main-header ul.menu li.navBtn a {
    padding: 15px 20px;
    width: 100%;
    max-width: 100%;
    font-size: 14px;
    text-align: center;
    justify-content: center;
    color: #000;
  }
  .mn-hd .hd-pra {
    font-size: 15px;
  }
  .workSec1-panel .owl-nav {
    top: -45px;
  }
  .menuWrap.open ul.menu li {
    animation-name: fadeInDown;
    animation-duration: 1.25s;
    animation-fill-mode: both;
  }
  .workSec1-panel .workSec1-card img {
    height: 100px;
  }
  .workSec1-main .owl-item {
    margin: 0;
  }
  .workSec1-main .owl-dots {
    display: none;
  }
  .workSec1-panel {
    padding: 15px 0px;
  }
  .blog-card .blogCard-card a {
    font-size: 12px;
    gap: 8px;
    letter-spacing: 2px;
  }
  .blog-card .blogCard-card p {
    padding-bottom: 20px;
  }
  .blog-card .blogCard-card h4 {
    min-height: 1px;
  }
  .innerFAQSec-accordion .accordion li .acc_title {
    font-size: 16px;
  }
  .innerFAQSec-accordion .accordion li .acc_desc {
    padding: 10px 10px 10px 10px;
  }
  .innerFAQSec-accordion .accordion li .acc_desc p {
    font-size: 14px;
    line-height: 1.4;
  }
  .stacked-card .row .col-lg-6:nth-child(2) {
    display: none;
  }
  .innerBanner {
    padding: 90px 0 30px;
    min-height: 10px;
  }
  .innerBanner .innerBanner-cont h1 {
    font-size: 32px;
    padding-bottom: 0px;
    letter-spacing: 1px;
    line-height: 1.1;
  }
  section.innerBanner .row .col-md-8 {
    width: calc(100% - 100px);
  }
  section.innerBanner .row .col-md-4 {
    width: 100px;
  }
  .circel-tex-area1 {
    max-width: 40px;
    max-height: 40px;
    z-index: 10;
    position: relative;
  }
  .rounded-text {
    width: 40px;
    height: 40px;
  }
  .circel-tex-area1 img {
    width: 20px;
    height: 20px;
  }
  .breadcrumb .breadcrumb-item a, .breadcrumb .breadcrumb-item.active {
    font-size: 14px;
    line-height: 14px;
  }
  .breadcrumb .breadcrumb-item.active {
    padding-top: 2px;
  }
  .water-text-two h1 {
    font-size: 25px;
  }
  .aboutSection1 .aboutSec1-cont {
    padding-left: 0;
    background-color: rgba(0, 0, 0, 0.7490196078);
    transform: translateY(-150px);
    width: 95%;
    margin: auto;
    padding: 10px 15px 0 15px;
    border-radius: 5px;
    margin-bottom: -150px;
  }
  .mn-hd p {
    font-size: 14px;
    line-height: 1.4;
    letter-spacing: 0.3px;
  }
  .mn-hd h6 {
    padding-bottom: 15px;
  }
  .mn-hd h5 {
    padding-bottom: 6px;
  }
  .pt-60 {
    padding-top: 30px;
  }
  .aboutSection2 .aboutSec2-cont ul {
    padding: 20px 0 30px;
    row-gap: 15px;
    margin: 0 -7px;
  }
  .aboutSection2 .aboutSec2-cont ul li {
    padding: 0 7px;
    width: 100%;
    flex: 0 0 100%;
  }
  .aboutSection2 .aboutSec2-cont ul li .aboutSec2-card {
    padding: 10px 10px;
  }
  .aboutSection2 .aboutSec2-cont ul li h6 {
    font-size: 14px;
    padding-bottom: 5px;
    letter-spacing: 1px;
  }
  .aboutSection2 .aboutSec2-cont ul li h5 {
    font-size: 30px;
    gap: 5px;
  }
  .aboutSection2 .aboutSec2-cont ul li h5 span {
    font-size: 12px;
  }
  .aboutSection2 .aboutSec2-awward {
    gap: 5px;
    padding-top: 10px;
    padding-bottom: 25px;
  }
  .aboutSection2 .aboutSec2-right {
    padding-left: 0;
  }
  .skills-bar-container {
    margin-top: 20px;
  }
  .skills-bar-container li {
    margin-bottom: 25px;
  }
  .skills-bar-container li .progressbar-title {
    font-size: 14px;
    padding-bottom: 3px;
  }
  .proSec1-head {
    padding: 30px 0 10px;
  }
  .proSec1-head ul {
    gap: 8px;
    overflow-x: auto;
    width: 100%;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 0 10px;
  }
  .proSec1-head ul li a {
    font-weight: 400;
    font-size: 8px;
    white-space: nowrap;
  }
  .processSec1-main.right .row {
    flex-direction: column-reverse;
  }
  .processSec1-main {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .processSec1-mainImg {
    padding-bottom: 25px;
  }
  .processSec1-main .processSec1-mainCont ul li {
    padding-bottom: 10px;
    padding-left: 15px;
    font-size: 14px;
  }
  .processSec1-main .processSec1-mainCont ul li::after {
    width: 6px;
    height: 6px;
    top: 5px;
  }
  .proSec1-head .fixed-product.sticky-product {
    bottom: 10px;
    padding: 10px 12px;
  }
  .proSec1-head .fixed-product.sticky-product ul {
    gap: 8px;
  }
  .proSec1-head .fixed-product.sticky-product ul li a {
    font-weight: 700;
    font-size: 7px;
    line-height: 1;
    color: #bebebe;
  }
  .contactSection1 .row.align-items-center {
    flex-direction: column-reverse;
    row-gap: 40px;
  }
  .contactSection1::before {
    width: 100%;
    height: 100%;
    right: 0;
    bottom: 0;
  }
  .contactSection1 .contactSec1-hd {
    padding-bottom: 15px;
  }
  .contactSection1 .contactSec1-form .form-check {
    align-items: flex-end;
    gap: 10px;
    line-height: 0.7 !important;
    font-size: 13px;
  }
  .contactSection1 .contactSec1-form .contactf-btn button {
    padding: 12px 20px;
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1.5px;
    gap: 7px;
  }
  .contactSection1 .contactSec1-form .contactf-btn {
    padding-top: 20px;
  }
  .contactSection1 .contactSec1-left {
    padding-right: 0;
  }
  .ctaSection1::before {
    width: 350px;
    height: 300px;
    top: 0px;
    left: -50px;
  }
  .contactSection1 .contactSec1-right iframe {
    height: 300px;
  }
  .contactSection1 .contactSec1-right .contactSec1-social {
    font-size: 0;
    padding: 15px 10px 25px;
  }
  .contactSection1 .contactSec1-right .contactSec1-social ul {
    gap: 10px;
  }
  .contactSection1 .contactSec1-right .contactSec1-social ul li .icon {
    width: 25px;
    height: 25px;
    border: 1px solid #F4BB06;
    font-size: 10px;
  }
  .contactSection1 .contactSec1-right .contactSec1-social ul li h6 {
    font-size: 14px;
    padding: 12px 0 4px;
    letter-spacing: 1.2px;
  }
  .contactSection1 .contactSec1-right .contactSec1-social ul li p {
    font-size: 14px;
  }
  .serviceSection1 .serSec1-count span {
    width: 30px;
    height: 30px;
    font-size: 15px;
  }
  .serviceSection1 .serSec1-count b {
    height: 220px;
    top: 40px;
  }
  .serviceSection1 .serSec1-mainBox {
    padding: 10px 0;
  }
  .serviceSection1 .serSec1-card {
    flex-direction: column;
    overflow-y: auto;
    border-radius: 3px;
    height: -moz-fit-content;
    height: fit-content;
    min-height: 250px;
  }
  .serviceSection1 .serSec1-card .serSec1-cardCont {
    padding: 15px 10px;
    max-width: -moz-fit-content;
    max-width: fit-content;
    flex: auto;
  }
  .serviceSection1 .serSec1-card .serSec1-cardCont h6 {
    font-size: 20px;
    padding-bottom: 10px;
  }
  .serviceSection1 .serSec1-card .serSec1-cardCont p {
    padding-bottom: 15px;
  }
  .serviceSection1 .serSec1-card .serSec1-cardLink {
    display: none;
    padding: 15px 15px;
    max-width: 100%;
    flex: 0 0 auto;
    width: 100%;
    height: auto;
    border: none;
  }
  .serviceSection1 .serSec1-card .serSec1-cardLink h6 {
    font-size: 16px;
    letter-spacing: 0.4px;
    padding-bottom: 15px;
  }
  .serviceSection1 .serSec1-card .serSec1-cardLink ul {
    gap: 10px;
  }
  section.processSection.serviceSection2.sec-pad .proceSection-img.wow.fadeIn.center {
    margin: 0;
  }
  .serviceSection3 .serSec2-main .serSec2-mainBox {
    padding: 0px 15px 40px;
    position: sticky;
    top: 70px;
  }
  .serviceSection3 .serSec2-main .serSec2-mainService {
    padding: 15px 15px;
    text-align: center;
  }
  .serviceSection3 .serSec2-main .serSec2-mainSubCont {
    padding: 12px 15px;
  }
  .serviceSection3 .serSec2-main .serSec2-mainSubCont h5 {
    padding-top: 15px;
    font-size: 14px;
    letter-spacing: 0.5px;
  }
  .serviceSection3 .serSec2-main .serSec2-mainSubCont .icon {
    width: 35px;
    height: 35px;
    margin: auto;
  }
  .serviceSection3 .serSec2-main .serSec2-mainBox:nth-child(2n) > .row {
    flex-direction: column-reverse;
  }
  .ctaSection1 .ctaSec1-hd p, .ctaSection1 .ctaSec1-hd a {
    font-size: 12px;
  }
  footer .widget-about ul li a, footer .widget ul li a {
    font-size: 12px;
  }
}
@media (max-width: 768px) {
  .dropdown-nav {
    overflow: hidden !important;
  }
  .openDropdown.dropdown-nav, .openDropdown .subDropdown-nav {
    overflow: visible !important;
  }
  .dropdown-nav:hover ul.dropdown, .subDropdown-nav:hover ul.subDropdown {
    animation: none !important;
    z-index: 1;
    opacity: 1;
  }
  .dropdown-nav ul.dropdown, .subDropdown-nav ul.subDropdown {
    animation: none !important;
    opacity: 1;
  }
  li.openDropdown > a > i {
    transform: rotate(180deg);
  }
  li .dropdown-nav a, li .subDropdown-nav a {
    padding: 10px 12px;
    font-size: 12px !important;
    letter-spacing: 0.3px !important;
    font-weight: 400 !important;
  }
  li .dropdown-nav a i, li .subDropdown-nav a i {
    display: none;
  }
  li .dropdown-nav .dropdown, li .dropdown-nav .subDropdown, li .subDropdown-nav .dropdown, li .subDropdown-nav .subDropdown {
    width: 100%;
    position: relative;
    background-color: transparent;
  }
  li.dropdown-nav.serviceDropdown.openDropdown > a {
    font-size: 15px;
    letter-spacing: 0.6px;
  }
  li .subDropdown-nav > a {
    font-size: 14px !important;
    letter-spacing: 0.2px !important;
    border-bottom: 1px solid #555;
    color: #12abe5 !important;
  }
  header .main-header ul.subDropdown {
    padding: 5px 0 15px;
  }
  header .main-header ul.subDropdown > li a {
    padding: 8px 0;
    color: #bebebe !important;
  }
  header .main-header ul.subDropdown > li a:hover {
    color: #fff !important;
  }
  .dropdown, .subDropdown {
    width: 100%;
    background-color: transparent;
  }
  .menu::-webkit-scrollbar {
    width: 4px;
    background-color: rgba(24, 24, 24, 0);
  }
}/*# sourceMappingURL=style.css.map */