/* FONT IMPORT */

/* Google Font */
@import url("https://fonts.googleapis.com/css2?family=Barlow: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&display=swap");

:root {
  --white: #fff;
  --black: #000;
  --primary: #0b306e;
  --secondary: #0aa1d6;
}

html {
  scroll-behavior: smooth;
  height: 100%;
}

body {
  position: relative;
  background: #fff;
  overflow-x: hidden;
  height: 100%;
  font-family: "Barlow", serif;
}

section {
  position: relative;
  padding: 6rem 0;
}

p {
  font-size: 1rem;
  font-weight: 400;
  line-height: 2;
  color: #828282;
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #000;
  margin: 0;
}

.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;
}

/* Cursor Start */

.mouse-cursor {
  position: fixed;
  left: 0;
  top: 0;
  pointer-events: none;
  border-radius: 50%;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  visibility: hidden;
}

.cursor-inner {
  margin-left: 2px;
  margin-top: 2px;
  width: 7px;
  height: 7px;
  z-index: 10000001;
  background-color: var(--primary);
  -webkit-transition: width 0.3s ease-in-out, height 0.3s ease-in-out,
    margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
  -o-transition: width 0.3s ease-in-out, height 0.3s ease-in-out,
    margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
  transition: width 0.3s ease-in-out, height 0.3s ease-in-out,
    margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.cursor-inner.cursor-hover {
  margin-left: -0.625rem;
  margin-top: -0.625rem;
  width: 1.875rem;
  height: 1.875rem;
  background-color: var(--primary);
  opacity: 0.3;
}

/* Cursor End */

/* PRELOADER */

.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.black {
  background-color: #ECF1F8;
  z-index: 11113;
}

.preLoader.white {
  z-index: 11112;
  background-color: var(--primary);
}

/* PRELOADER */

/* GLOBAL CSS */

.themeBtn {
  background: #fa4949;
  font-size: 1rem;
  color: var(--white);
  text-transform: uppercase;
  font-weight: bold;
  display: inline-block;
  padding: 1.25rem 1.875rem;
  line-height: normal;
}

.themeBtn.borderBtn {
  background: transparent;
  border: 1px solid #fff;
  padding: 1.04em 2em;
}

/* NAV HEADER CSS */

header {
  margin: 0 auto;
  width: 100%;
  padding: 0;
  transition: 0.3s ease-in-out;
}

.navbar-brand {
  padding: 0;
  margin: 0;
}

.navbar-nav {
  align-items: center;
  gap: 1.5rem;
}

.navbar-nav .nav-item .nav-link {
  font-size: 1.125rem;
  color: #748196;
  text-transform: capitalize;
  font-weight: 600;
  padding: 0 0;
  display: inline-block;
}

/* !NAV HEADER CSS */

/* MAIN HERO SLIDER CSS */

.main-slider {
  height: 824px;
}

.homeSlider.swiper-container {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  overflow: hidden;
}

.homeSlider.swiper-container .swiper-slide {
  overflow: hidden;
}

.homeSlider .swiper-pagination {
  bottom: 8rem;
  width: fit-content;
  left: 18rem;
}

.homeSlider .swiper-button-prev,
.homeSlider .swiper-button-next {
  width: 4.35rem;
  height: 4.35rem;
  font-size: 1rem;
  color: #fff;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.28);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  transition: 0.3s ease-in-out;
  cursor: pointer;
}

.homeSlider .swiper-button-next {
  right: 1rem;
}

.homeSlider .swiper-button-prev {
  left: 1rem;
}

.homeSlider .swiper-button-next:hover,
.homeSlider .swiper-button-prev:hover {
  background: var(--white);
  color: var(--black);
}

.homeSlider .swiper-pagination-bullet {
  height: 12px;
  width: 12px;
  display: inline-block;
  margin: 0 0.5rem !important;
  opacity: 1;
  border: 1px solid var(--white);
  background: transparent;
}

.homeSlider .swiper-pagination-bullet-active {
  background: var(--white);
  position: relative;
}

.homeSlider .slide-inner {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
}

.main-slider h1 {
  margin: 0;
  color: var(--white);
  font-size: 5rem;
  line-height: 1.125;
  font-weight: bold;
  text-transform: capitalize;
}

.main-slider p {
  color: var(--white);
  font-weight: 500;
  line-height: 1.2;
  margin-top: 1rem;
  font-size: 1.5625rem;
}

/* !MAIN HERO SLIDER CSS */

/* Top-Bar Css Start */
.top-bar p {
  color: #fff;
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: capitalize;
}

.top-right {
  display: flex;
  align-items: center;
  gap: 90px;
  justify-content: end;
}

ul.top-social {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

ul.top-social li a i {
  color: #fff;
}

.top-bar {
  position: relative;
  /* clip-path: polygon(7% 0%, 94% 0%, 90% 100%, 7% 100%); */
  /* background: var(--primary); */
  padding: 0.3125rem 0;
}

.top-bar::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  background-color: var(--primary);
  clip-path: polygon(7% 0%, 96% 0%, 93% 100%, 7% 100%);
  left: -30%;
  top: 0;
}

.top-bar::after {
  position: absolute;
  content: "";
  height: 100%;
  width: 37%;
  background: var(--secondary);
  right: 0;
  clip-path: polygon(6% -1%, 100% 0%, 100% 95%, 0% 106%);
  top: 0;
  z-index: -1;
}

.top-right .themeBtn {
  background: var(--secondary);
  font-size: 0.875rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 17px 38px;
}

.nav-main {
  margin-left: 9rem;
}

.nav-main a {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-size: 1.125rem;
  font-weight: 400;
  color: var(--primary);
}

.nav-main a i {
  height: 3.5625rem;
  width: 3.5625rem;
  display: grid;
  place-items: center;
  background-color: #fa4949;
  border-radius: 50px;
  color: #fff;
  font-size: 1.2rem;
}

nav.navbar.navbar-expand-lg {
  padding: 1.0625rem 0;
}

.slideOne h3 {
  background: var(--primary);
  width: fit-content;
  margin: auto;
  padding: 1rem 1.25rem;
  color: #fff;
  line-height: 1;
  text-transform: math-auto;
  font-size: 1.75rem;
  border: 1px solid rgb(255 255 255 / 30%);
}

.slideOne .themeBtn {
  margin-top: 60px;
}

.homeSlider .slide-inner::before {
  position: absolute;
  content: "";
  inset: 0;
  background: rgb(11 48 110 / 60%);
}

/* Top-Bar Css End  */

/* About-Sec Css Start */

.imag-wrapp {
  background-color: #15a8dc;
  padding: 3.125rem 29px 3.125rem 3.125rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  position: relative;
}

.imag-content {
  flex: 1;
}

.imag-content h4 {
  font-size: 1.25rem;
  font-weight: bold;
  text-transform: capitalize;
  color: #ffff;
  line-height: 1.4;
}

.imag-content p {
  color: #fff;
  font-weight: 600;
  line-height: 1.5;
}

.imag-wrapp::before {
  position: absolute;
  content: "";
  height: 12px;
  width: 100%;
  background-color: #ffff;
  top: -12px;
  right: 0;
  left: 0;
  margin: auto;
  clip-path: polygon(5% 0%, 93% 0, 100% 100%, 0% 99%);
}

section.about-sec .col-md-4:nth-child(1) .imag-wrapp {
  background: #0aa1d6;
}

.about-left {
  position: relative;
}

figure.about-image {
  position: relative;
}

img.img-fluid.about-imag-2 {
  position: absolute;
  right: 0;
  bottom: -13%;
}

.left-cotn h3 {
  font-size: 1.375rem;
  font-weight: 600;
  color: #0b306e;
  /* white-space: nowrap; */
  line-height: 1.3;
}

.left-cotn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  padding-left: 1.5rem;
  position: absolute;
  gap: 1rem;
  top: 0;
  bottom: -87%;
  margin: auto;
  height: fit-content;
  box-shadow: 0 0.625rem 1.25rem 0 rgb(0 0 0 / 6%);
  right: 4rem;
}

.left-cotn a i {
  height: 100px;
  background: #fa4949;
  width: 70px;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 1.5rem;
}

img.img-fluid.about-imag-3 {
  position: absolute;
  bottom: -50%;
  left: -42%;
  z-index: 1;
}

section.about-sec {
  padding: 0 0 9rem;
  background: #ecf1f8;
}

section.about-sec .row+.row {
  padding: 5rem 0;
}

h3.subHead {
  font-size: 1.25rem;
  font-weight: 500;
  text-transform: capitalize;
  color: var(--secondary);
  line-height: 1.4;
}

.mainHead {
  font-size: 3.125rem;
  font-weight: bold;
  text-transform: capitalize;
  color: #000;
  line-height: 1.2;
}

.about-content h4 {
  font-size: 1.375rem;
  font-weight: 600;
  text-transform: math-auto;
  line-height: 1.5;
  color: #fa4949;
  margin: 1.25rem 0 1.575rem;
}

.about-content p {
  color: #748196;
  line-height: 1.8;
  font-size: 1.125rem;
  margin-bottom: 2.5rem;
}

.about-last h5 {
  font-size: 1.25rem;
  font-weight: 600;
  text-transform: math-auto;
  color: var(--primary);
  position: relative;
  line-height: 1.4;
}

.about-last h5::before {
  position: absolute;
  content: "";
  height: 1rem;
  width: 1rem;
  background: #fa4949;
  clip-path: polygon(100% 52%, 33% 0, 33% 100%);
  left: -22px;
  top: 1px;
  bottom: 0;
  margin: auto;
}

.about-last p {
  margin-bottom: 1.875rem;
  width: 79%;
}

.about-main {
  display: flex;
  align-items: center;
}

figure.about-sub {
  flex: 1;
  text-align: center;
  background: #ecf1f8;
  height: 13.125rem;
  width: 15.3125rem;
  margin: auto;
  padding: 2rem 2.5rem;
}

figure.about-sub h5 {
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--primary);
  line-height: 1;
}

figure.about-sub h5 span {
  display: block;
  font-size: 1.125rem;
  font-weight: 600;
  text-transform: capitalize;
  color: #748196;
  margin-top: 0.625rem;
}

.about-last {
  padding-left: 2.5rem;
}

/* About-Sec Css End */

/* Expert-Sec Css Start */
.expert-sec {
  background: url(../images/expert-imag.png) center/cover no-repeat;
}

.expert-content p {
  line-height: 1.8;
  font-size: 1.125rem;
  color: #748196;
  font-weight: 600;
  width: 89%;
}

.expert-content {
  display: flex;
  gap: 2.1875rem;
  margin-top: 1.875rem;
}

ul.expert-list li {
  list-style: disc;
  color: #0aa1d6;
  font-size: 1.125rem;
}

ul.expert-list li a {
  color: var(--primary);
  font-size: 1.125rem;
  font-weight: 600;
}

/* Expert-Sec Css End */

/* Services-Sec Css Start */

section.services-sec::before {
  position: absolute;
  content: "";
  height: 450px;
  width: 100%;
  background: url(../images/services-bg.png) center/cover no-repeat;
  top: 0;
}

.services-sec::after {
  position: absolute;
  content: "";
  height: 450px;
  width: 1000%;
  background: var(--primary);
  top: 0;
  z-index: -1;
}

.services-wrapp {
  background: #fff;
  padding: 1.25rem 1.25rem 1.875rem;
  box-shadow: 0 0.625rem 1.875rem 0 rgb(0 0 0 / 8%);
}

figure.services-imag {
  text-align: center;
}

.services-content h3 {
  font-size: 1.5rem;
  font-weight: bold;
  text-transform: capitalize;
  color: var(--primary);
  line-height: 1.3;
}

.services-content p {
  color: #748196;
  line-height: 1.8;
  font-size: 1.125rem;
  font-weight: 500;
  margin: 0.625rem 0;
}

.servicesw-last {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.servicesw-last a {
  font-size: 1.125rem;
  font-weight: 500;
  text-transform: capitalize;
  color: var(--primary);
}

figure.services-sub {
  height: 5.125rem;
  width: 5.125rem;
  display: grid;
  place-items: center;
  background: var(--secondary);
}

section.services-sec .row+.row {
  padding: 3.75rem 0;
}

section.services-sec .mainHead {
  color: var(--white);
}

.services-content {
  padding-top: 1.075rem;
}

.services-Btn {
  display: flex;
}

.services-Btn .themeBtn {
  font-size: 0.875rem;
  background: #0aa1d6;
  position: relative;
}

.services-Btn .secondBtn {
  background: #ffff;
  color: #0b306e;
}

.services-Btn .themeBtn::before {
  position: absolute;
  content: "";
  height: 0.375rem;
  width: 0.375rem;
  background: #fff;
  left: 18px;
  top: 0;
  bottom: 0;
  margin: auto;
  border-radius: 50px;
}

.services-Btn .secondBtn::before {
  background: var(--primary);
}

/* Services-Sec Css End  */

/* Images-Sec  Css Start  */
.imag-sec {
  background: url(../images/img.png) center/cover no-repeat;
  padding: 7.5rem 0;
}

/* Images-Sec  Css End   */

/* Customer-Sec Css Start */

.cutomer-left p {
  line-height: 1.7;
  font-size: 1.5rem;
  font-weight: 500;
  font-style: italic;
  margin: 0.625rem 0 2rem;
}

figure.customer-imag {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

figure.customer-imag h5 {
  font-size: 1.25rem;
  font-weight: 600;
  text-transform: capitalize;
  color: #0aa1d6;
}

figure.customer-imag h5 span {
  display: block;
  color: #748196;
  font-size: 1rem;
}

.cutomer-left {
  padding: 3.125rem 5rem 5rem;
  box-shadow: 0 0.625rem 1.875rem 0 rgb(0 0 0 / 8%);
  background: url(../images/cust-s-bg.png) center/cover no-repeat;
  background-color: #ffff;
}

.customer-slider .swiper-pagination {
  bottom: 24%;
  left: inherit;
  right: -30%;
}

.customer-slider .swiper-pagination-bullet {
  height: 0.8125rem;
  width: 0.8125rem;
  background: var(--secondary);
}

.customer-right {
  position: relative;
  padding-left: 3rem;
}

img.img-fliud.custo-1 {
  position: absolute;
  top: -8%;
  left: -10%;
}

figure.customer-img a {
  position: absolute;
  bottom: 0;
  right: -161px;
}

figure.customer-img a i {
  height: 8.125rem;
  width: 8.125rem;
  background: #0aa1d6;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 1.6rem;
}

.custo-right-last {
  padding-left: 3rem;
  margin-top: 1.875rem;
  margin-right: -10rem;
}

.custo-right-last figure {
  background: #fa4949;
  height: 17.0625rem;
  width: 16.875rem;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.custo-right-last figure h5 {
  font-size: 1.5rem;
  font-weight: 600;
  width: 60%;
  text-align: center;
  margin-top: 14px;
  color: #fff;
}

.custo-right-last figure::before {
  position: absolute;
  content: "";
  height: 170px;
  width: 170px;
  background: rgb(255 255 255 / 10%);
  right: 0;
  bottom: 0;
  clip-path: polygon(100% 100%, 100% 0, 0 100%);
}

.c-right-main {
  display: flex;
  align-items: center;
  gap: 51px;
}

.custo-right-last .c-right-main figure:nth-child(2) {
  background: #0b306e;
}

section.customer-sec::before {
  position: absolute;
  content: "";
  height: 690px;
  width: 100%;
  top: 0;
  background: #ecf1f8;
}

/* Customer-Sec Css End  */

/* Number-Sec Css Start */

.number-sec {
  background: url(../images/number-bg.png) center/cover no-repeat;
  background-color: var(--secondary);
}

.number-main {
  text-align: center;
}

.number-main h5 {
  font-size: 3.75rem;
  font-weight: bold;
  color: #fff;
}

.number-main span {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  text-transform: capitalize;
  line-height: 1.8;
}

.number-main::before {
  position: absolute;
  content: "";
  height: 205px;
  width: 2px;
  background: rgb(255 255 255 / 20%);
  right: 0;
  top: -95%;
}

section.number-sec .col-md-3:nth-child(4) .number-main::before {
  position: initial;
}

/* Number-Sec Css End  */

/* Sesaon-Sec Css Start */
.season-sec {
  background: url(../images/season-bg.png) center/cover no-repeat;
  background-position: left, top;
  background-size: 40%;
}

.season-imag {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.season-img-ct h4 {
  font-size: 1.25rem;
  font-weight: bold;
  text-transform: capitalize;
  color: var(--primary);
  line-height: 1.4;
}

.season-img-ct p {
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.6;
  margin: 0;
}

.season-img-ct {
  margin: 2.5rem 0;
}

ul.season-list li a {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 18px;
  font-weight: 600;
  text-transform: math-auto;
  color: #0b306e;
}

ul.season-list {
  display: flex;
  flex-flow: column wrap;
  max-height: 70px;
  margin-bottom: 1.875rem;
  gap: 0.625rem;
}

ul.season-list li a i {
  color: #f34848;
}

.season-content p {
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.6;
}

section.season-sec h5 {
  position: absolute;
  left: -14%;
  writing-mode: sideways-lr;
  white-space: nowrap;
  bottom: 0;
  background: #f34848;
  padding: 5rem 1.25rem;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  text-transform: capitalize;
  top: 0;
  margin: auto;
  text-align: center;
}

/* Sesaon-Sec Css End  */

/* Gallery-Sec Css Start */
section.gallery-sec figure img {
  border: 3px solid #fff;
}

section.gallery-sec {
  padding: 6rem 0 0;
}

section.gallery-sec .mainHead {
  margin-bottom: 2.5rem;
}

section.map-sec {
  padding: 0;
}

/* Gallery-Sec Css End  */

/* Free-Sec Css Start */
.free-main h3 {
  font-size: 1.875rem;
  font-weight: 500;
  text-transform: capitalize;
  line-height: 1.3;
  color: #0b306e;
}

.free-main p {
  font-weight: 500;
  color: #748196;
  line-height: 2;
}

.free-main {
  background: #fff;
  padding: 1.25rem;
  box-shadow: 0 0.625rem 1.875rem rgb(0 0 0 / 8%);
  margin-top: -120px;
}

section.free-sec {
  padding: 0 0 6rem;
}

figure.free-imag {
  position: relative;
}

figure.free-imag::before {
  position: absolute;
  content: "";
  height: 195px;
  width: 9px;
  background: #0aa1d6;
  right: 0;
}

/* Free-Sec Css End  */

/* Blog-Sec Css Start */
figure.blog-imag {
  position: relative;
}

figure.blog-imag::before {
  position: absolute;
  content: "";
  background: linear-gradient(7deg, rgb(11 48 110 / 78%), transparent);
  inset: 0;
}

ul.blog-list {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

ul.blog-list li a {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 1rem;
  font-weight: 600;
  text-transform: capitalize;
  color: #fff;
}

ul.blog-list li a i {
  color: #0aa1d6;
}

.blog-ctn h3 {
  font-size: 1.875rem;
  font-weight: bold;
  line-height: 1.3;
  text-transform: math-auto;
  color: #fff;
}

.blog-wrapp {
  position: relative;
}

.blog-ctn {
  position: absolute;
  bottom: 3.125rem;
  left: 1.875rem;
}

figure.blog-img {
  position: relative;
}

figure.blog-img h5 {
  background: #f34848;
  color: #fff;
  font-size: 0.9375rem;
  font-weight: bold;
  padding: 0.625rem 2.25rem;
  position: absolute;
  bottom: 0;
  clip-path: polygon(0% 0%, 100% 0%, 90% 100%, 0% 100%);
}

.blog-content h4 {
  font-size: 1.5rem;
  font-weight: bold;
  text-transform: math-auto;
  color: var(--primary);
  margin: 1.25rem 0 0.625rem;
  line-height: 1.25;
}

.blog-content p {
  color: #748196;
  font-weight: 500;
  line-height: inherit;
  border-bottom: 1px solid #e2e8f0;
  padding-bottom: 1.875rem;
}

.blog-content ul.blog-list {
  margin-top: 0.625rem;
}

.blog-content ul.blog-list li a {
  color: #748196;
}

/* Blog-Sec Css End  */

/* Footer-Sec Css Start */
ul.fooetr-list {
  display: flex;
  align-items: center;
  gap: 2rem;
  justify-content: end;
}

ul.fooetr-list li a {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-left: 1.25rem;
}

ul.fooetr-list li a h5 {
  font-size: 14px;
  font-weight: 500;
  text-transform: capitalize;
  color: #8d9cb5;
}

ul.fooetr-list li a h5 span {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  text-transform: math-auto;
  color: #fff;
}

ul.fooetr-list li a i {
  color: #f34848;
  font-size: 1.5rem;
}

footer {
  position: relative;
  background: url(../images/footer-bg.png) center/cover no-repeat;
  background-color: var(--primary);
  /* padding: 6rem; */
}

footer h2 {
  font-size: 1.375rem;
  font-weight: bold;
  text-transform: capitalize;
  color: #ffff;
  line-height: 1.3;
  margin-bottom: 2.25rem;
}

footer p {
  font-size: 1.125rem;
  line-height: 1.8;
  font-weight: 500;
  color: #8d9cb5;
  margin-bottom: 1.5rem;
}

.footer-form .form-control {
  outline: unset;
  box-shadow: unset;
  background: #0b2c64;
  height: 70px;
  border: unset;
  border-radius: unset;
  backdrop-filter: blur(1.875rem);
  position: relative;
}

.footer-form button {
  position: absolute;
  right: 2.5rem;
  top: 1.25rem;
  bottom: 0;
  margin: auto;
}

.footer-form a i {
  color: var(--secondary);
}

ul.footer-link li a {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 1.125rem;
  font-weight: 500;
  text-transform: capitalize;
  color: #8d9cb5;
}

ul.footer-link li a:hover {
  transform: translate(0.625rem);
  transition: 0.6s ease;
}

ul.footer-link li+li {
  margin: 1.2rem 0 0;
}

figure.footer-imag {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

figure.footer-imag h5 {
  color: var(--secondary);
  line-height: 1.4;
  font-weight: 600;
  font-size: 0.875rem;
}

figure.footer-imag h5 span {
  display: block;
  text-transform: capitalize;
  color: #fff;
  font-size: 1.125rem;
  margin: 8px 0 0;
}

figure.footer-imag+figure.footer-imag {
  margin: 2rem 0 0;
}

.footer-top {
  margin-bottom: 4rem;
  padding: 1.875rem 0;
  position: relative;
}

footer::before {
  position: absolute;
  content: "";
  height: 115px;
  width: 46%;
  background: #0b2c64;
  clip-path: polygon(7% 0%, 96% 0%, 93% 100%, 7% 100%);
  left: -8%;
}

ul.fooetr-list li+li {
  border-left: 1px solid rgb(255 255 255 / 11%);
}

footer::after {
  position: absolute;
  content: "";
  height: 2px;
  width: 65%;
  background: rgb(255 255 255 / 10%);
  top: 18%;
  right: 4px;
}

.footer-form .form-control::placeholder {
  font-size: 1rem;
  font-weight: 500;
  color: #8d9cb5;
}

.footer-bottom ul.top-social {
  justify-content: end;
}

.footer-bottom {
  background: #0b2c64;
  position: relative;
  padding: 1.5rem 0;
  margin: 5rem 0 0;
}

.footer-bottom p {
  font-size: 1rem;
  color: #8d9cb5;
  font-weight: 600;
  margin: 0;
}

.arrow {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 3.4375rem;
  height: 3.4375rem;
  background: #f34848;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--white);
}

/* Footer-Sec Css End   */


.about-sec::before {
  position: absolute;
  content: "";
  background: #fff;
  width: 80%;
  height: 90%;
  left: 0;
  right: 0;
  margin: auto;
}

/* progress bar css  */

.progress-container {
  width: 100%;
  margin: 20px auto;
}

.progress-item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  position: relative;
}

.progress-label {
  flex: 1;
  font-weight: bold;
  position: absolute;
  top: 0;
  font-size: 1.125rem;
  color: #0B306E;
  margin: 0;
}

.progress-bar-background {
  flex: 4;
  background-color: #f0eadf;

  overflow: hidden;
  margin: 2.3rem 0 0;
  height: 8px;
}

.progress-bar {
  height: 100%;
  background-color: #FA4949;
  width: 0;
  transition: width 1s ease;
}

.progress-percent {
  flex: 1;
  text-align: right;
  color: #fff;
  position: absolute;
  right: 0;
  top: 0;
  font-size: 14px;
  font-weight: 600;
  background: #FA4949;
  padding: 3px;
}



/* progress bar css  */


.customer-sec .mainHead {
  margin-bottom: 2rem;
}


/* / Inner Pages Css Start / */
.inner-bann {
  position: relative;
}

.inner-bann .overlay {
  position: absolute;
  display: flex;
  align-items: center;
  inset: 0;
  justify-content: center;
  text-align: center;
}

.overlay h2 {
  font-size: 5rem;
  font-weight: bold;
  text-transform: capitalize;
  color: #fff;
}

section.about-sec .col-md-4:nth-child(3) .imag-wrapp {
  background: #1db2e7;
}

section.free-sec.about-free {
  padding-bottom: 120px;
}

section.gallery-sec.about-gallery .mainHead {
  margin-bottom: 5rem;
}

/* / Inner Pages Css End / */

/* Book-Sec Css Start */
section.book-sec {
  background: var(--primary);
}

form.book-form input {
  height: 50px;
  border: 1px solid rgb(221 232 221 / 50%);
  width: 100%;
  border-radius: 50px;
  background: transparent !important;
  outline: unset !important;
  box-shadow: unset !important;
  color: #fff !important;

}

section.book-sec .main-head {
  margin-bottom: 15px;
  font-size: 48px;
  font-weight: 600;
  color: #fff;
}

.book-form span {
  position: relative;
}

.book-form span i {
  position: absolute;
  right: 25px;
  color: #dde8dd;
  top: 1rem;
}

.book-form select {
  height: 50px;
  border: 1px solid rgb(221 232 221 / 50%);
  width: 100%;
  border-radius: 50px;
  background: transparent !important;
  outline: unset !important;
  box-shadow: unset !important;
  color: #DDE8DD;
}

.book-form::placeholder {
  color: #dde8dd;
}

.book-form textarea {
  height: 155px;
  width: 100%;
  background-color: transparent !important;
  border-radius: 24px;
  outline: unset !important;
  box-shadow: unset !important;
  color: #fff;
}

.book-form textarea::placeholder {
  font-size: 14px;
  font-weight: 400;
  font-family: "Inter", serif;
  color: #dde8dd;
  padding: 10px;
  text-transform: capitalize;
}

.book-form select::placeholder {
  font-size: 14px;
  font-weight: 400;
  font-family: "Inter", serif;
  text-transform: capitalize;
  color: #dde8dd;
  padding: 10px;
}

.book-form input::placeholder {
  font-size: 14px;
  font-weight: 400;
  font-family: "Inter", serif;
  color: #dde8dd;
  padding: 10px;
  text-transform: capitalize;
}



.book-form button {
  border: 1px solid #ffff;
  margin-top: 35px;
  background: transparent;
  border-radius: 50px;
  text-transform: capitalize;
  font-weight: 400;
}

figure.book-Imag img {
  border-radius: 28px;
}

figure.book-Imag {
  margin-bottom: -12rem;
}

section.mapsec {
  padding: 10rem 0 0 0;
}

section.mapsec iframe {
  filter: grayscale(1);
  display: block;
}

form.book-form button i {
  margin-left: 10px;
}

/* Book-Sec Css End  */

.navbar-nav .nav-item .nav-link:hover {
  color: #fa4949;
}

.themeBtn:hover {
  background: #000;
  color: #fff;
}

section.map-sec iframe {
  filter: grayscale(1);
}

/* / Service-Page Css Start /  */
.service-img {
  position: relative;
}

figure.service-sub {
  position: absolute;
  right: 0;
  bottom: 0;
  background: #0aa1d6;
  height: 5rem;
  width: 5rem;
  display: grid;
  place-items: center;
}

.services-m {
  background: #fff;
  padding: 1.25rem;
}

.service-ct h3 {
  font-size: 1.5rem;
  font-weight: bold;
  text-transform: capitalize;
  color: var(--primary);
  margin: 1rem 0 1.5rem;
}

.service-ct p {
  color: #748196;
  font-weight: 500;
  line-height: 1.8;
}

section.servces-sec {
  background: var(--primary);
}

.service-ct .themeBtn {
  margin: 1.25rem 0;
}

.service-ct {
  padding: 0 30px;
}

section.servces-sec .col-md-4:nth-child(2) .services-m {
  margin-top: 9rem;
}

/* / Service-Page Css End / */

.blog-detail .mainHead {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.blogs-wrap {
  margin-bottom: 3rem;
}

.blogs-wrap h3 {
  font-size: 1.5rem;
}

.blogs-wrap figure img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.blogs-wrap figure {
  margin-bottom: 1rem;
}

.privacywrap h2 {
  font-size: 2rem;
  font-weight: bold;
  color: var(--primary);
}

.privacywrap h3 {
  font-size: 1.5rem;
  font-weight: bold;
}

.privacywrap ul {
  list-style: disc;
  margin-bottom: 1rem;
}

.privacywrap ul li+li {
  margin-top: 10px;
}