@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Oswald:wght@200..700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Wix+Madefor+Display:wght@400..800&family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap');
html {
  font-size: 16px;
}

body {
  position: relative;
  background: #fff;
  font-family: "Poppins", sans-serif;
}

:root {
  --white: #ffffff;
  --black: #000;
  --theme-color: #0693E3;
  --para-color: #5a5a5a;
  --gradient: linear-gradient(-95deg, #003f5a, #0591DF);
}

::selection {
  background: var(--theme-color);
  color: var(--white);
}

::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: rgb(0 0 0 / 0%);
}

::-webkit-scrollbar-thumb {
  background: rgb(0 0 0 / 0.5);
}

::-webkit-scrollbar-thumb:hover {
  background: rgb(0 0 0 / 0.8);
}

p {
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.67;
  margin-bottom: 2rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  
}

.img-auto {
  display: block;
  max-width: 100%;
  margin: 0 auto;
}

a,
button {
  text-decoration: none !important;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

a:hover,
button:hover {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

figure {
  margin: 0;
}

section {
  padding: 5rem 0;
  position: relative;
}

.swiper-button-next,
.swiper-button-prev {
  border: 1px solid #fff;
  width: 50px;
  height: 50px;
  border-radius: 100%;
}
.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 14px;
  color: var(--white);
}
.swiper-pagination-bullet {
  width: 15px;
  height: 15px;
  transition: all 0.3s ease;
  border-radius: 20px;
}
.swiper-pagination-bullet-active {
  width: 25px;
}
.swiper-slide-shadow-left {
  display: none;
}
.swiper-slide-shadow-right {
  display: none;
}
.swiper-pagination-bullet-active {
  background: var(--white);
}

/* loader */
.preLoader {
  width: 100%;
  height: 100%;
  z-index: 1111;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
}
.preLoader img {
  max-width: 350px;
}
.preLoader.black {
  background-color: #1B1B1B;
  z-index: 11113;
}
.preLoader.white {
  z-index: 11112;
  background: var(--gradient);
}
.loading-wave {
  width: 300px;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.loading-bar {
  width: 20px;
  height: 10px;
  margin: 0 5px;
  background-color: var(--theme-color);
  border-radius: 5px;
  animation: loading-wave-animation 1s ease-in-out infinite;
}

.loading-bar:nth-child(2) {
  animation-delay: 0.1s;
}

.loading-bar:nth-child(3) {
  animation-delay: 0.2s;
}

.loading-bar:nth-child(4) {
  animation-delay: 0.3s;
}

@keyframes loading-wave-animation {
  0% {
    height: 10px;
  }

  50% {
    height: 50px;
  }

  100% {
    height: 10px;
  }
}



/* loader */

/* Cursor Start */

.circle {
  position: fixed;
  background-color: var(--theme-color);
  width: 15px;
  height: 15px;
  left: -10px;
  top: -10px;
  border-radius: 100%;
  z-index: 1;
  user-select: none;
  pointer-events: none;
  z-index: 10000;
  transform: scale(1);
  &.active {
    opacity: 1;
    transform: scale(0);
  }
}

.circle-follow {
  position: fixed;
  border: 1px solid var(--theme-color);
  width: 50px;
  height: 50px;
  left: -21px;
  top: -21px;
  border-radius: 100%;
  z-index: 1;
  user-select: none;
  pointer-events: none;
  z-index: 10000;
  overflow: hidden;
  transform: scale(1);
  &.active {
    transform: scale(3);
  }
}

/* Cursor End */

/* btn css */

.themeBtn {
  background: var(--gradient);
  padding: 16px 2rem;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.63;
  color: var(--white);
  display: inline-block;
  border: none;
  transition: all 0.3s ease;
  border-radius: 50px;
  overflow: hidden;
  position: relative;
  z-index: 1;
  text-transform: capitalize;
}
.themeBtn:hover {
  color: var(--white);
}
.themeBtn:before {
  content: "";
  z-index: -1;
  position: absolute;
  top: -2px;
  right: -2px;
  bottom: -2px;
  left: -2px;
  background: #00507b;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#f4a21a',endColorStr='##ffde00',gradientType='1');
  transform-origin: right center;
  -webkit-transform-origin: right center;
  -webkit-transform: scale(0, 1);
  -khtml-transform: scale(0, 1);
  -moz-transform: scale(0, 1);
  -ms-transform: scale(0, 1);
  -o-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: transform 0.3s cubic-bezier(0.37, 0.31, 0.2, 0.85);
  -khtml-transition: transform 0.3s cubic-bezier(0.37, 0.31, 0.2, 0.85);
  -moz-transition: transform 0.3s cubic-bezier(0.37, 0.31, 0.2, 0.85);
  -ms-transition: transform 0.3s cubic-bezier(0.37, 0.31, 0.2, 0.85);
  -o-transition: transform 0.3s cubic-bezier(0.37, 0.31, 0.2, 0.85);
  transition: transform 0.3s cubic-bezier(0.37, 0.31, 0.2, 0.85);
}
.themeBtn:hover:before {
  transform-origin: left center;
  -webkit-transform-origin: left center;
  -webkit-transform: scale(1, 1);
  -khtml-transform: scale(1, 1);
  -moz-transform: scale(1, 1);
  -ms-transform: scale(1, 1);
  -o-transform: scale(1, 1);
  transform: scale(1, 1);
}
.themeBtn + .themeBtn {
  margin-left: 1rem;
}
.themeBtn i {
  padding: 0 5px;
  transition: all 0.5s ease;
}

.themeBtn:hover i {
  padding-left: 1rem;
}
/* btn css */

.reveal {
  visibility: hidden;
  position: relative;
  max-width: 700px;
  overflow: hidden;
}
.reveal img {
  width: 100%;
}

/* Begin: Header CSS */

header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  transition: ease all 0.5s;
  z-index: 10;
}

header .navbar {
  padding: 0;
  width: 100%;
}

header.sticky {
  background: rgb(0 0 0 / 0.5);
  padding-top: 10px;
}

header.sticky .navbar-brand img {
  width: 150px;
}

header .navbar .navbar-nav {
  gap: 1.5rem;
  align-items: center;
}
.navbar-collapse {
  justify-content: end;
}
header .navbar .navbar-nav .nav-item .nav-link {
  color: var(--black);
  font-size: 1rem;
  text-transform: capitalize;
  padding: 0;
  font-weight: 500;
}
.topBar {
  background: var(--gradient);
  padding: 10px 0;
}

.topBar ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.topBar ul li a {
  color: var(--white);
}
/* END: Header */

.main-Banner {
  
height: 90vh;
  
display: flex !important;
  
align-items: center;
  
padding-top: 11rem !important;
  
overflow: hidden;
}
.bannerContnt h2 {
  font-size: 4.375rem;
  color: var(--black);
  font-weight: 600;
}

.bannerContnt p {
  font-size: 1.875rem;
  color: #000;
  width: 70%;
}

.main-Banner figure {
  margin-right: -6rem;
  margin-top: 6rem;
  margin-left: -5rem;
}
.serviceSec {
  background: linear-gradient(-95deg, #0591DF, #003f5a);
  overflow-x: hidden;
}

h4 {
  font-size: 3.125rem;
  font-weight: 600;
  text-transform: capitalize;
}

.serviceSlider {
  padding: 3rem 0 6rem;
}
.whiteText * {
  color: var(--white);
}
h6 {
  font-size: 1.4rem;
  color: var(--theme-color);
}

.workBox {
  background: #F9F9F9;
  border: 1px solid #E9E9E9;
  padding: 3rem;
  border-radius: 10px;
  position: relative;
  transition: all 0.5s ease;
  height: 100%;
  margin-top: 2rem;
}

.workBox h3 {margin: 2rem 0 1rem;font-weight: 600;font-size: 26px;color: #032E42;}

.workBox p {
  margin-bottom: 0;
  color: #939393;
  font-size: 15px;
}

.workBox span {
  position: absolute;
  right: 3rem;
  font-size: 72px;
  font-weight: 600;
  top: 1rem;
  opacity: 0.1;
  color: #ff000070;
}

.workBox:hover {
  background: #fff;
  box-shadow: 0 0 30px #0000001f;
  transform: scale(1.05);
}

.ctaSec{
  background: url(../images/bg/1.png) bottom center / cover
  no-repeat;
  padding: 8rem 0;
}
.whiteText .themeBtn {
  margin-top: 1rem;
  border: 2px solid #fff;
}

/* Footer */
footer {
  background: #1B1B1B;
  padding-top: 4rem;
  padding-bottom: 2rem;
}

footer h3 {
  position: relative;
  font-size: 1.35rem;
  font-weight: 600;
  text-transform: uppercase;
  color: #fff;
  margin: 3rem 0 4rem;
}

footer h3::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--theme-color);
  height: 5px;
  width: 30%;
  border-radius: 10px;
  top: auto;
  bottom: -1rem;
}

footer ul li a {
  color: #fff;
  padding: 6px 0;
  display: inline-flex;
  gap: 8px;
  align-items: baseline;
}

footer form input {
  width: 100%;
  height: 3.5rem;
  border-radius: 50px;
  padding: 1rem;
  border: none;
  background: #000;
  margin-bottom: 1rem;
}

footer form button {
  width: 100%;
}

footer ul li a:hover {
  color: var(--theme-color);
}

footer p {
  color: #fff;
}

.copyRight p {
  text-align: center;
  margin: 0;
  font-size: 1rem;
}

.copyRight {
  border-top: 1px solid #ffffff38;
  margin-top: 3rem;
  padding: 1rem 0;
}


.serBox {
  position: relative;
  transition: all 0.5s ease;
  overflow: hidden;
}

.serBox .overlay {
  position: absolute;
  bottom: -12rem;
  margin: 0 1rem;
  transition: all 0.7s ease;
}
.serBox:hover .overlay{
  bottom: 0;
}
.serBox:before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(5deg, #001b26, transparent);
}

.serBox img {
  width: 100%;
}

.serBox .overlay * {
  color: #fff;
}

.serBox .overlay h3 {
  font-weight: 600;
  text-transform: capitalize;
}


.innerBanner {
  height: auto;
  padding: 12rem 0 5rem;
}

.whySec {
  background: linear-gradient(-95deg, #003f5a, #0591DF);
  padding: 8rem 0;
}

.whySec * {
  color: #fff;
}

.whySec h6 {
  font-size: 1.45rem;
  font-weight: 600;
  margin: 1.5rem 0;
}
.priceBox {
  background: #F5F5F5;
  padding: 5rem 3rem;
  border-radius: 20px;
}

.priceBox p  span {
  color: #000;
  font-weight: 500;
}

.priceBox h4 {
  margin-bottom: 1.5rem;
}
.socialLinks li a {
  font-size: 2rem;
}

.socialLinks {
  display: flex;
  gap: 2rem;
  justify-content: end;
  align-items: center;
}

.socialLinks li a:hover {
  color: var(--theme-color);
}

.links {
  display: flex;
  justify-content: space-between;
  margin: 2rem 0 0;
}


.diclaimer h6 {
  font-weight: 600;
  color: #fff;
  font-size: 1.25rem;
}

.diclaimer p {
  font-size: 13px;
  color: #fff;
  margin: 0;
}

.diclaimer {
  background: #2e2e2e;
  padding: 1rem 0;
}

.mobBtn{
  display: none;
}

/* .btnContnt {
  background: transparent;
  border: 1px solid var(--theme-color);
  color: var(--theme-color);
} */