/* FONT IMPORT */

/* Google Font */

@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");

/* Local Font */
/* @font-face {
	font-family: "Font Name";
	src: url("../fonts/fontpath.ttf");
  } */

:root {
  --white: #fff;
  --black: #000;
  --primary: #2b74a6;
  --secondary: #333333;
}

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

body {
  position: relative;
  background: #fff;
  overflow-x: hidden;
  height: 100%;
  font-family: "Roboto", sans-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;
}

.img {
  perspective: none;
  overflow: hidden;
  transform-style: preserve-3d;
}

.img img {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  will-change: transform, box-shadow;
  display: block;
}

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: -10px;
  margin-top: -10px;
  width: 30px;
  height: 30px;
  background-color: var(--primary);
  opacity: 0.3;
} */

/* Cursor End */

/* PRELOADER */

body.loading {
  overflow: hidden;
  height: 100vh;
}

.preLoader {
  width: 100%;
  height: 100%;
  z-index: 1111;
  display: flex;
  flex-direction: column;
  align-items: end;
  justify-content: start;
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 11113;
}

.preLoader .counter {
  color: var(--white);
  font-size: 15rem;
  font-family: var(--font-heading);
  font-weight: 700;
  position: absolute;
  bottom: 0rem;
  right: 5rem;
}

.preLoader .bar {
  height: 20%;
  width: 100vw;
  background-color: var(--primary);
}

/* PRELOADER */

/* GLOBAL CSS */

.themeBtn {
  background-color: transparent;
  font-size: 1.125rem;
  color: var(--primary);
  text-transform: uppercase;
  font-weight: 500;
  display: inline-block;
  padding: 1.125rem 2.1rem;
  line-height: normal;
  border: 1px solid var(--white);
}

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

/* NAV HEADER CSS */

header {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 111;
  top: 0;
  width: 100%;
  padding: 1rem 0;
  transition: 0.3s ease-in-out;
}

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

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

.navbar-nav .nav-item .nav-link {
  font-size: 1.125rem;
  color: var(--black);
  text-transform: capitalize;
  font-weight: 500;
  padding: 0 0;
  display: inline-block;
  position: relative;
}

@keyframes bounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

.bounce:hover img {
  animation: bounce 0.6s ease infinite;
}

/* !NAV HEADER CSS */

/* Main Banner Css Start */

.form-inline a {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 1.875rem;
  font-weight: bold;
  color: var(--primary);
}

.main-banner {
  padding: 10.9375rem 0 0;
}

.main-wrapp {
  position: relative;
}

.main-wrapp::before {
  position: absolute;
  content: "";
  inset: 0;
  background-color: rgb(8 17 23 / 60%);
}

.main-content {
  position: absolute;
  bottom: 13rem;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 1;
}

.main-content h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--white);
  text-transform: capitalize;
  line-height: 1.3;
  margin-bottom: 0.625rem;
}

.main-content .themeBtn {
  opacity: 0;
  border: 1px solid var(--white);
  color: var(--white);
}

.main-wrapp:hover .main-content .themeBtn {
  opacity: 1;
  transition: 0.6s ease;
}

.main-wrapp:hover::before {
  background-color: rgb(43 116 166 / 60%);
  transition: 0.6s ease;
}

/* Main Banner Css End  */

/* marquee Sec Css Start */

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-100%);
  }
}

.marquee {
  display: flex;
  align-items: center;
  overflow: hidden;
  gap: 11rem;
}

.marquee span {
  text-transform: uppercase;
  animation: marquee 24s linear infinite;
  font-size: 21.25rem;
  font-weight: 900;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 1px #d2d2d2;
  white-space: nowrap;
  line-height: 1;
}

section.marquee-sec {
  padding: 3.5rem 0 0;
}

/* marquee Sec Css End  */

/* About Sec Css Start */

.about-sec {
  padding: 0 0 38rem;
}

.aboutimg1 {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}

.aboutimg2 {
  position: absolute;
  right: 0;
  bottom: -2rem;
  z-index: -1;
}

.about-content p {
  font-size: 1.2rem;
  /* text-transform: revert-layer; */
  color: #484848;
  line-height: 1.8;
  width: 98%;
  margin: auto;
}

.about-content span {
  font-size: 2.8125rem;
  text-transform: capitalize;
  color: var(--white);
  background-color: var(--primary);
  padding: 0.4375rem 0.75rem 0.375rem 0.75rem;
  border-radius: 10px;
  font-weight: 700;
}

/* About Sec Css End  */

/* Services Sec Css Start */

.services-sec {
  background-color: #292d46;
}

.mainHead {
  font-size: 3rem;
  font-weight: 800;
  text-transform: capitalize;
  line-height: 2;
}

.services-sec .mainHead {
  /* margin-bottom: 2.23rem; */
}

.services-overlay {
  background-color: #efefef;
}

.services-content h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #282727;
  text-transform: capitalize;
}

.services-sec .services-content p {
  font-size: 1.25rem;
  color: #484848 !important;
  width: 83%;
  margin: 0.625rem 0 2.2rem;
  line-height: 1.7;
}

.services-content {
  padding-left: 3.5rem;
}

.services-content .themeBtn {
  border: 1px solid var(--primary);
}

.secondBtn {
  color: var(--white);
  margin-top: 3.95rem;
}

/* Services Sec Css End  */

/* Porject Sec Css Start */

.project-sec {
  background: url(../images/projectbg.webp) center/cover no-repeat;
  height: 935px;
  padding: 5rem 0 6rem;
}

.project-content h3 {
  color: var(--white);
  text-transform: uppercase;
  font-size: 5.125rem;
  text-align: center;
  line-height: 1;
  font-weight: 800;
}

/* Porject Sec Css End  */

/* Choose Sec Css Start */

.choose-wrapp h3 {
  font-size: 2.0625rem;
  font-weight: 600;
  text-transform: capitalize;
  color: #292d46;
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.choose-wrapp p {
  /* text-transform: capitalize; */
  color: #484848;
  font-size: 1.25rem;
  line-height: 1.7;
  margin: 0.225rem 0 0.625rem 1.125rem;
}

.choose-sec .row+.row:nth-child(odd) .col-md-6 .choose-wrapp {
  text-align: end;
}

.choose-sec .row+.row:nth-child(odd) .col-md-6 .choose-wrapp h3 {
  justify-content: end;
}

.choose-wrapp {
  padding-left: 1.85rem;
  position: relative;
}

.choose-sec {
  z-index: 1;
  padding: 4rem 0 11rem;
}

.choose-sec::before {
  position: absolute;
  content: "";
  height: 76%;
  width: 2px;
  background-color: #292d46;
  left: 1.6875rem;
  right: 0;
  margin: auto;
  bottom: 8rem;
  z-index: -1;
}

.choose-sec .mainHead {
  margin-bottom: 1rem;
}

.choose-wrapp::before {
  position: absolute;
  content: "";
  height: 1.5rem;
  width: 1.5rem;
  background: #d9d9d9;
  left: -13px;
  border-radius: 50px;
  border: 2px solid #292d46;
  top: 0.625rem;
  z-index: 1;
}

.choose-wrapp::after {
  position: absolute;
  content: "";
  height: 10px;
  width: 10px;
  background-color: #292d46;
  left: -6px;
  top: 17px;
  z-index: 1;
  border-radius: 50px;
}

.choose-sec .row+.row:nth-child(odd) .col-md-6 .choose-wrapp::before {
  right: -40px;
  left: unset;
}

.choose-sec .row+.row:nth-child(odd) .col-md-6 .choose-wrapp::after {
  left: unset;
  right: -33px;
}

.choose-sec .row+.row {
  padding: 3.1rem 0 0;
}

/* Choose Sec Css End  */

/* Client Sec Css Start */

.client-sec {
  background: url(../images/clientbg.webp) center/cover fixed;
  z-index: 1;
  padding: 4.5rem 0 6rem;
}

.client-sec::before {
  position: absolute;
  content: "";
  inset: 0;
  background-color: rgb(163 163 163 / 86%);
  z-index: -1;
}

.client-wrapp {
  background-color: rgb(255 255 255 / 58%);
  border: 2px solid var(--white);
  padding: 2.5rem 2.25rem 2.3125rem 2.3125rem;
  border-radius: 25px;
}

.client-stars li a i {
  color: #f8d254;
  font-size: 1.25rem;
}

.client-stars {
  display: flex;
  align-items: center;
  gap: 0.265rem;
}

.client-content p {
  color: #3b3b3b;
  /* text-transform: capitalize; */
  line-height: 1.9375;
  margin: 1.125rem 0 2.5rem 0;
  width: 93%;
}

.clinet-bottom {
  display: flex;
  align-items: center;
  gap: 1rem;
  border-top: 1px solid #9a9a9a;
  padding-top: 2.125rem;
}

.clinet-bottom h5 {
  height: 3.8125rem;
  background-color: #ebb920;
  width: 3.8125rem;
  display: grid;
  place-items: center;
  border-radius: 50px;
  color: var(--white);
  font-size: 2.0625rem;
  font-weight: 600;
}

.clinet-bottom span {
  font-size: 1rem;
  font-weight: 600;
  text-transform: capitalize;
  color: #131313;
}

.client-sec .mainHead {
  margin-bottom: 0.125rem;
}

.second h5 {
  background: #71bf16;
}

.third h5 {
  background-color: #c2185b;
}

.clientslider {
  padding-bottom: 6.25rem;
}

.clientslider .swiper-pagination-bullet {
  position: relative;
  border: unset;
  background: transparent;
  margin: 0 6px !important;
}

.clientslider .swiper-pagination-bullet::before {
  position: absolute;
  content: "";
  inset: 0;
  background: #454545;
  border-radius: 50px;
  height: 7px;
  width: 7px;
}

.clientslider .swiper-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
}

.clientslider .swiper-pagination-bullet-active::after {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: -5px;
  right: 0;
  top: -5px;
  border-radius: 50px;
  border: 1px solid #454545;
}

/* Client Sec Css End */

/* Hover Effect Css Start */

.themeBtn:hover {
  background-color: var(--primary);
  color: var(--white);
}

section.map-sec iframe {
  display: block;
}

ul.social-link li a:hover i {
  transform: scale(1.09);
  transition: 0.6s ease;
}

.navbar-nav .nav-item .nav-link::before {
  position: absolute;
  content: "";
  height: 2px;
  width: 0;
  background-color: var(--black);
  bottom: -3px;
}

.navbar-nav .nav-item .nav-link:hover::before {
  width: 100%;
  transition: 0.6s ease;
}

.footer_form button:hover {
  background-color: var(--white);
  color: var(--primary);
}

/* Hover Effect Css End  */

/* Footer Sec Css Start */

footer .logo_box {
  background-color: #292d46;
  padding: 5.813rem 4.875rem 5.813rem 15rem;
  height: 100%;
}

footer .form_box {
  background-color: #2b74a6;
  box-shadow: -25px 4px 55px 0 rgba(0, 0, 0, 0.25);
  padding: 5.813rem 10.9375rem 4.375rem;
  height: 100%;
}

.form_box .request {
  text-align: center;
  margin-bottom: 2.5rem;
}

.form_box .request h2 {
  color: var(--white);
  font-size: 3.75rem;
  font-weight: 900;
  margin-bottom: 0.8125rem;
}

.form_box .request p {
  line-height: 1.7;
  font-size: 1.1rem;
  color: var(--white);
  /* text-transform: capitalize; */
}

.footer_form .form-group {
  margin-bottom: 26px;
}

.footer_form .form-group .form-control {
  border-radius: unset;
  box-shadow: unset;
  border: unset;
  outline: unset;
}

.footer_form .form-group input {
  height: 3.5625rem;
}

.footer_form .form-group textarea {
  height: 9.75rem;
}

.footer_form .form-group label {
  color: #e9ecef;
  font-size: 1.063rem;
  font-weight: 400;
  margin-bottom: 5px;
  line-height: 1;
}

.footer_form button {
  outline: unset;
  box-shadow: unset;
  color: var(--white);
  border: 1px solid;
}

ul.contact_info li+li {
  margin-top: 3.125rem;
}

ul.contact_info li a {
  color: #fff;
  font-size: 1.25rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 1.125rem;
}

ul.contact_info {
  margin: 4.75rem 0 3.9375rem;
}

ul.social-link {
  display: flex;
  align-items: center;
  gap: 2.875rem;
  margin-bottom: 8.75rem;
}

ul.social-link li a {
  color: #fff;
  margin-bottom: 9.8125rem;
}

.logo_box p {
  padding-top: 2.75rem;
  color: #fff;
  border-top: 1px solid #fff;
}

.clientslider .swiper-pagination-bullet-active::before {
  height: 0.625rem;
  width: 0.625rem;
}

/* Footer Sec Css End  */


section.main-banner.inner-baner .main-content h1 {
  font-size: 60px;
  font-weight: 800;
}



.main-wrapp2::before {
  position: absolute;
  content: "";
  inset: 0;
  background-color: rgb(8 17 23 / 60%);
}

.main-wrapp1::before {
  position: absolute;
  content: "";
  inset: 0;
  background-color: rgb(43 116 166 / 60%);
}

section.about-sec.aboutinner h3 {
  font-size: 30px;
  font-weight: 800;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 1rem;
}

section.about-sec.aboutinner {
  padding: 5rem 0 35rem 0;
}


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



section.client-sec.client-page {
  background: #fff;
}

section.client-sec.client-page::before {
  display: none;
}

section.client-sec.client-page .client-wrapp {
  box-shadow: 4px 10px 10px 0 rgb(0 0 0 / 25%);
  margin-bottom: 30px;
}

figure.gallwrap img {
  width: 100%;
  height: 480px;
}

figure.gallwrap {
  margin-bottom: 26px;
}

section.book-sec {
  padding: 13rem 0;
}

form.book-form input {
  height: 50px;
  border: 1px solid #fff;
  width: 100%;
  background: #fff;
  outline: unset !important;
  box-shadow: unset !important;
  color: #000;
  margin-bottom: 37px;
  border-radius: unset;
}



form.book-form span {
  position: relative;
}

form.book-form span img {
  position: absolute;
  left: 14px;
  color: #dde8dd;
  top: 14px;
}

/* 
form.book-form::placeholder {
  color: #000;

} */

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

form.book-form textarea::placeholder {
  font-size: 16px;
  font-weight: 400;
  font-family: "Inter", serif;
  color: #000;
  padding: 10px 10px 10px 1.75rem;
  text-transform: capitalize;

}



form.book-form input::placeholder {
  font-size: 16px;
  font-weight: 400;
  font-family: "Inter", serif;
  color: #000;
  padding: 10px;
  text-transform: capitalize;
  padding-left: 1.75rem;
}

.cntactbtns button.themeBtn {
  color: #fff;
  text-transform: capitalize;
  border-radius: 30px;
}

.cntactbtns {
  display: flex;
  align-items: center;
  gap: 3rem;
  margin-top: 1rem;
}

.radiobtn {
  display: flex;
  align-items: center;
  gap: 4px;
}

a.collectedbtn {
  color: #fff;
  font-size: 14px;
  text-decoration: underline !important;
}

.radiobtn input[type="checkbox"] {
  height: unset;
  width: unset;
  margin-bottom: unset;
}

.radiobtn label {
  margin: 0;
  color: #fff;
  font-size: 14px;
}


.bookcontents h4 {
  font-size: 14px;
  font-weight: 400;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 20px;
  letter-spacing: 2px;
}

.bookcontents h3 {
  font-size: 40px;
  font-weight: bold;
  color: #fff;
  margin-bottom: 20px;
}

.bookcontents p {
  font-size: 17px;
  font-weight: 400;
  color: #fff;
  line-height: 1.6;
  width: 80%;
}

.book-sec.contactpage::before {
  position: absolute;
  content: "";
  background: #292D46;
  width: 50%;
  height: 100%;
  top: 0;
  z-index: -1;
}

.book-sec.contactpage::after {
  position: absolute;
  content: "";
  background: #2B74A6;
  width: 80%;
  height: 600px;
  border-radius: 10px;
  top: 13%;
  left: 10%;
  z-index: -1;
}

.blog-details .mainHead {
    line-height: 1.2;
    font-size: 2rem;
}

.list-link {
    color: var(--primary);
}

.extra_content li {
    margin-bottom: 15px;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.85;
    color: rgb(1, 22, 45, 67%);
    font-family: var(--font-text);
    margin-left: 20px;
}

.extra_content li {
  list-style: disc;
}

.blog-details h3 {
    color: var(--dark);
    font-weight: 600;
    margin: .6rem 0;
}

.blog-details h4 {
    font-size: 1.3rem;
    margin: .3rem 0;
}

.blog-card {
  border: 2px solid var(--primary);
  border-radius: 1rem;
  overflow: hidden;
  margin-bottom: 2rem;
}

.blog-card figure {
  width: 100%;
  height: 300px;
  overflow: hidden;
}

.blog-card figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 300ms ease-in-out;

}

.blog-card__content {
  padding: 1rem 1.5rem;
  text-align: center;
}

.blog-card__content .title {
  font-size: 1.5rem;
  font-weight: 600;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.blog-card__content p {
  font-size: 1.125rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  overflow: hidden;
}

.blog-card:hover figure img {
  transform: scale(1.1);
}

.what-sets-card {
    padding: 1rem;
    text-align: center;
    border: 1px solid #00000030;
    border-radius: 13px;
    height: 100%;
}

.what-sets-card h5 {
    font-size: 1.5rem;
    margin: 1rem 0 .3rem;
}

.what-sets-us-apart  p {
    width: 75%;
    margin: 1rem auto;
}

.what-sets-card p {
    width: 100%;
}

.services-sec .subHead {
    color: var(--white);
    margin: 0 0 1rem;
}

.services-sec p {
    color: var(--white);
    width: 85%;
    margin: 1rem auto;
}