/* FONT IMPORT */

/* Google Font */
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&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: #a91d1c;
  --secondary: #24262b;

  /* Font Variable */
  --font-text: "Open Sans", sans-serif;
  --font-heading: "Roboto", sans-serif;
}

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

body {
  position: relative;
  background: #fff;
  overflow-x: hidden;
  height: 100%;
  font-family: var(--font-text);
}

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

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

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #000;
  font-family: var(--font-heading);
}

.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: -10px;
  margin-top: -10px;
  width: 30px;
  height: 30px;
  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: var(--white);
  z-index: 11113;
}

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

/* PRELOADER */

/* GLOBAL CSS */

.themeBtn {
  background: var(--primary);
  font-size: 1rem;
  color: var(--white);
  text-transform: uppercase;
  font-weight: 400;
  display: inline-block;
  padding: 0.9em 1.3125em;
  border-radius: 300px;
  line-height: normal;
}

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

.heading {
  font-size: 4.6875rem;
  font-weight: bold;
  text-transform: none;
}

.subtitle {}

/* !GLOBAL CSS */

/* mouse animation css  */

/* .bounce-element {
	animation: bounce 0.9s infinite alternate;
	-webkit-animation: bounce 0.9s infinite alternate;
}
@keyframes bounce {
	from {
		transform: translateY(0px);
	}
	to {
		transform: translateY(-15px);
	}
}
@-webkit-keyframes bounce {
	from {
		transform: translateY(0px);
	}
	to {
		transform: translateY(-15px);
	}
}
.mouse {
	position: absolute;
	bottom: 1rem;
	left: 0;
	right: 0;
	margin: auto;
	z-index: 11;
	text-align: center;
} */

/* mouse animation css  */

/* NAV HEADER CSS */

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

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

.navbar-nav {
  align-items: center;
  justify-content: space-between;
  gap: 3.125rem;
  margin-right: 5rem;
}

.navbar-nav .nav-item .nav-link {
  font-size: 1.125rem;
  color: var(--secondary);
  text-transform: capitalize;
  font-weight: 800;
  padding: 0 0;
  font-family: var(--font-heading);
  display: inline-block;
}

/* !NAV HEADER CSS */

/* MAIN HERO SLIDER CSS */

.main-slider {
  height: 100vh;
}

.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;
  font-weight: bold;
  text-transform: uppercase;
}

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

/* !MAIN HERO SLIDER CSS */

/* SEARCH BAR CSS */

#search {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  -webkit-transform: translate(0px, -100%) scale(0, 0);
  -moz-transform: translate(0px, -100%) scale(0, 0);
  -o-transform: translate(0px, -100%) scale(0, 0);
  -ms-transform: translate(0px, -100%) scale(0, 0);
  transform: translate(0px, -100%) scale(0, 0);
  opacity: 0;
  z-index: 10000;
}

#search.open {
  -webkit-transform: translate(0px, 0px) scale(1, 1);
  -moz-transform: translate(0px, 0px) scale(1, 1);
  -o-transform: translate(0px, 0px) scale(1, 1);
  -ms-transform: translate(0px, 0px) scale(1, 1);
  transform: translate(0px, 0px) scale(1, 1);
  opacity: 1;
}

#search input[type="search"] {
  position: absolute;
  top: 50%;
  width: 100%;
  color: #fff !important;
  background: rgba(0, 0, 0, 0);
  font-size: 55px;
  line-height: 65px;
  text-align: center;
  border: 0px;
  margin: 0px auto;
  margin-top: -51px;
  padding-left: 30px;
  padding-right: 30px;
  outline: none;
  font-family: arial;
}

#search .btn {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: 61px;
  margin-left: -45px;
  background-color: limegreen;
  border: black;
}

#search .close {
  position: fixed;
  top: 15px;
  right: 15px;
  color: #fff;
  opacity: 1;
  padding: 10px 17px;
  font-size: 27px;
}

.srch-btn {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: -1;
}

.srch-btn .themeBtn {
  padding: 15px 120px;
  font-size: 20px;
}

/* !SEARCH BAR CSS */

/* header section */
.form-inline a {
  display: flex;
  align-items: center;
  gap: 14px;
}

.form-inline a span {
  display: grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid var(--primary);
  border-radius: 50%;
  color: var(--secondary);
}

.form-inline a strong {
  display: block;
  color: #5e636f;
}

.form-inline a p {
  margin: 0;
  color: var(--secondary);
  line-height: 1.3;
}

/* Banner section */
.main-banner {
  background: url(../images/home-banner.jpg) no-repeat center / cover;
  height: 771px;
  margin: 0px 3.75rem;
}

.main-banner::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 80%;
  background: linear-gradient(to right, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0));
  top: 0;
  left: 0;
}

.main-banner .heading {
  color: var(--white);
  font-size: 3.6rem;
}

.main-banner p {
  line-height: 1.8;
  color: var(--white);
  font-size: 1.375rem;
  margin: 1.5625rem 0 2.3125rem;
}

/* About section */
.about-img1 {
  display: flex;
  gap: 1.9375rem;
  align-items: center;
}

img.about-img {
  position: absolute;
  top: -60px;
  right: 4.25rem;
}

.about-img2 {
  margin-top: 1.875rem;
}

.about-content {
  padding-left: 1.875rem;
}

.about-content .themeBtn {
  padding: 0.8rem 3.5rem;
  margin-top: 0.625rem;
}

.about-content p {
  color: #434751;
  font-size: 1.125rem;
  line-height: 2;
}

.about-content p+p {
  margin-top: 1.875rem;
}

.about-content .second-para {
  color: #585c67;
}

img.about-img2 {
  position: absolute;
  z-index: 1;
  bottom: -66px;
}

/* services section */

.service {
  background: url(../images/our-services.webp) no-repeat center / cover;
  padding: 5.75rem 0 0;
}

.service h2 {
  text-align: center;
  margin-bottom: 70px;
  color: #fff;
  z-index: 11;
}

.service-card .service-logo {
  margin: 1.0625rem 0 2.0625rem;
}

.service-card h3 {
  color: var(--white);
  font-size: 2.0625rem;
}

.service-card p {
  color: #dadada;
  font-size: 1.1rem;
  line-height: 33px;
  margin: 1.625rem 0 3.5rem;
}

.services-list li+li {
  margin-top: 1.875rem;
}

.services-list li {
  color: var(--white);
  font-size: 1.125rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.services-list li span {
  width: 1.125rem;
  height: 1.125rem;
  color: var(--secondary);
  border-radius: 4px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  background-color: var(--primary);
}

.second-card {
  border-left: 1px solid #606060;
  border-right: 1px solid #606060;
  padding: 0 25px 0;
  height: 101%;
}

.servies-img {
  margin-top: 4rem;
}

/* work section */
.workHead {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 11.25rem;
  margin-bottom: 1.25rem;
}

.work figure {
  margin: 0.9375rem 0;
  overflow: hidden;
}

/* contact section */

.contact {
  background-color: var(--primary);
  padding: 6.75rem 0 4.8125rem;
}

.contact-content h2 {
  color: var(--white);
}

.contact-content .anytime {
  font-size: 4.0625rem;
  font-weight: 800;
  margin: 2.25rem 0;
  text-transform: uppercase;
}

.contact-content .themeBtn {
  background-color: var(--white);
  color: var(--black);
  padding: 0.8rem 1.5rem;
}

.contact .contact-img {
  position: absolute;
  right: 0;
  top: -12%;
}

.contact .contact-bird {
  position: absolute;
  top: -23%;
}

/* testimonial section */

.testimonial {
  background-color: #e1deda;
  padding: 5.4375rem 0 3.8125rem;
}

.testimonial .heading {
  text-align: center;
  margin-bottom: 3.125rem;
}

.testiCard {
  padding: 2.5rem 1.0625rem 3.125rem 2.1875rem;
  border-radius: 24px;
  background-color: var(--white);
}

.testiCard .person {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testiCard h4 {
  font-size: 1.125rem;
  letter-spacing: 1.08px;
  margin: 0;
}

.testiCard h6 {
  font-family: var(--font-text);
  color: #aba8a1;
  font-size: 1rem;
  margin: 0;
}

.testiSlider {
  padding-bottom: 5rem;
}

.testiCard p {
  margin: 3rem 0 3.4375rem;
  color: #5e636f;
}

.testimonial .swiper-button-next,
.testimonial .swiper-button-prev {
  width: 4.25rem;
  height: 4.25rem;
  border-radius: 50%;
  background-color: #f2f2f2;
  position: absolute;
  top: 58%;
}

.testimonial .swiper-button-next {
  right: 15%;
}

.testimonial .swiper-button-prev {
  left: 15%;
}

.testimonial .swiper-button-next::after,
.testimonial .swiper-button-prev::after {
  font-size: 0.9375rem;
  font-weight: 700;
  color: #24262b;
}

.testiSlider .swiper-pagination-bullet {
  width: 1.125rem;
  height: 1.125rem;
  background-color: #5e636f;
  border-radius: 50%;
}

.testiSlider .swiper-pagination-bullet-active {
  background-color: #24262b !important;
}

/* map section */
.map {
  padding: 0;
}

.map iframe {
  display: block;
}

/* footer section */
footer {
  background-color: var(--black);
  padding-top: 120px;
  position: relative;
}

.footer_bird {
  position: absolute;
  top: -28%;
  right: 0;
}

footer h3 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 1.875rem;
}

.quicklist li+li {
  margin-top: 1.25rem;
}

.quicklist li a {
  color: var(--white);
  font-size: 1rem;
  font-weight: bold;
}

.get-touch li+li {
  margin-top: 2.8125rem;
}

.get-touch li a {
  display: flex;
  align-items: center;
  gap: 0.8125rem;
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.125rem;
  width: fit-content;
}

.call_footer p {
  color: var(--white);
  font-weight: 800;
  line-height: 24px;
  margin-bottom: 2.125rem;
}

.call_footer button {
  border: unset;
  outline: unset;
  margin-top: 0.875rem;
}

.call_footer form .form-control {
  padding: 1.875rem 0.9375rem;
  border: 1px solid var(--white);
  border-radius: 8px;
  background-color: transparent;
  color: var(--white);
}

.call_footer form .form-control::placeholder {
  color: #a8a8a8;
  font-size: 0.875rem;
}

.footer-bottom {
  background-color: #171717;
}

.copyRight {
  margin-top: 7.25rem;
  padding: 1.75rem 0;
}

.copyRight p {
  margin: 0;
  font-size: 1rem;
  color: var(--white);
}

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

.social-link {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.social-link li a {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  border: 1px solid var(--primary);
  display: grid;
  place-items: center;
  color: var(--white);
}

.service-card figure {
  overflow: hidden;
}

.service-card figure:hover img {
  transform: scale(1.1);
  transition: 0.6s ease;
}

.themeBtn:hover {
  background-color: var(--secondary);
  color: #fff;
}

.navbar-nav .nav-item .nav-link:hover {
  color: var(--primary);
}

.bird {
  animation: floatUpDown 3s ease-in-out infinite;
}

@keyframes floatUpDown {
  0% {
    transform: translateY(0);
  }

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

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

.work figure:hover img {
  transition: 0.6s ease;
  transform: scale(1.1);
}

.quicklist li a:hover {
  color: var(--primary);
}

.social-link li a:hover {
  background: #ffff;
  color: var(--primary);
}

/* Inner Page Start */

/* Services Page Start */

.innerBann {
  background: url(../images/home-banner.jpg) no-repeat center / cover;
}

.innerBann .banner-content {
  margin-top: 37%;
}

.services {
  margin-top: 1rem;
}

.services img.about-img {
  position: absolute;
  top: 0.625rem;
  right: 6px;
}

.services .row+.row {
  margin-top: 2.3125rem;
}

.services-content {
  background: #E1DEDA;
  padding: 2rem 1rem 0rem 2rem;
}

.services-content:hover {
  background: var(--primary);
  transition: all 0.6s ease;
  color: var(--white);
}

.services-content:hover h2{ 
  color: var(--white);
}

.services-content:hover p{ 
  color: var(--white);
}

.services-content:hover li i{ 
  color: var(--white);
}
f
.services-content:hover .themeBtn{ 
  color: var(--black);
  background: var(--white);
}

.services-content h2 {
  font-size: 2.0625rem;
  font-weight: bold;
}

.services-content div {
  display: flex;
  justify-content: space-between;
  align-items: end;
  padding: 0 1rem 0rem;
}

.services-content-list li {
  font-size: 1.125rem;
  font-weight: bold;
  margin-bottom: 1.8rem;
}

.services-content-list li i {
  color: var(--primary);
  margin-right: 0.625rem;
}

.services-content div .themeBtn {
  margin-bottom: 3rem;
}

/* Services Page end */

/* Map Page Start */

.map-inner {
  padding: 6rem 0;
}

/* Map Page end */

/* Testimonioal Page Start  */

.testimonial-inner .testiCard {
  background: #E1DEDA;
  margin-bottom: 2.5rem;
}

.testimonial-inner .test-card2 {
  background: var(--primary);
}

.testimonial-inner .test-card2 p {
  color: var(--white);
}

.testimonial-inner .test-card2 h4 {
  color: var(--white);
}

.testimonial-inner img.about-img {
    position: absolute;
    top: 0px;
    right: 11px;
}

/* Testimonioal Page end  */

/* Contact Page Start */

.contact-cont {
  background: #E1DEDA;
  padding: 3rem;
}

.contact-cont h3 {
  font-size: 1.5rem;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 3.625rem;
}

.contact-list li {
  font-size: 1.125rem;
  font-weight: bold;
  margin-bottom: 2rem;
}

.contact-list li i {
  color: var(--primary);
  font-size: 1.5rem;
  margin-right: 2rem;
  font-weight: 300;
}

.contact-form-content {
  background: var(--primary);
  padding: 3rem;
}

.contact-form-content h3 {
  color: var(--white);
  font-size: 1.5rem;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.contact-form :is(input, textarea) {
  width: 100%;
  border: 0;
  border-bottom: 2px solid var(--white);
  background: transparent;
  margin-bottom: 4.1875rem;
}

.contact-form input::placeholder {
  color: var(--white);
}

.contact-form textarea::placeholder {
  color: var(--white);
}

.contact-form button {
  color: var(--black);
  border: 0;
  background: var(--white);
}

.contact-inner img.about-img {
    position: absolute;
    top: 8px;
    right: 8px;
}

/* Contact Page end */

/* Inner Page end */

.navbar-brand img {
    width: 215px;
}

.service-card figure img {
    height: 300px;
}

.why-choose-us {
    background: var(--primary);
}

.why-choose-us .heading {
    color: var(--white);
}

.why-choose-us p {
    color: var(--white);
}

.why-choose-us .themeBtn {
    background: var(--secondary);
}

.area-we li {
    color: var(--white);
    font-weight: bold;
    /* margin-bottom: .6rem; */
    position: relative;
    margin: 0 0 .6rem 1.5rem;
}

.area-we li::before {
  content: "";
  width: 10px;
  height: 10px;
  background: var(--white);
  border-radius: 50%;
  position: absolute;
  top: 29%;
  left: -21px;
}
.top-bar{
  background-color: var(--black);
  color: var(--white);
  padding: 10px;
}
.top-bar marquee{
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}

.badg-img {
    margin-bottom: 1rem;
    text-align: center;
}

.badg-img img {
    width: 168px;
}

.badges .heading  {
    
font-size: 2.2rem;
    
margin-bottom: 7rem;
}