.btn {
  transition: .5s;
  font-weight: 500;
}

.btn-primary,
.btn-outline-primary:hover {
  color: var(--bs-light);
}

.btn-secondary,
.btn-outline-secondary:hover {
  color: #000;
}

.btn-square {
  width: 38px;
  height: 38px;
}

.btn-sm-square {
  width: 32px;
  height: 32px;
}

.btn-lg-square {
  width: 30px;
  height: 30px;
}

.btn-social-icon {
  color: #fff;
  background-color: #910909;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  font-weight: normal;
}

.container{
    padding-left: 15px;
    padding-right: 15px;
}

hr {
  margin-top: 0rem !important;
  margin-bottom: 0rem !important;
  border: 0;
  border-top: 1px solid rgb(199 199 199);
}

/* Footer Ends */

/* Floating Button Container */
.floating-buttons {
  position: fixed;
  bottom: 80px;
  right: 30px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  z-index: 9999;
}

/* Button Styling */
.floating-buttons a {
  width: 48px;
  height: 48px;
  background-color: #f8f9fa;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px #000;
  animation: pulse 2s infinite;
  transition: transform 0.3s ease;
}

.floating-buttons a:hover {
  transform: scale(1.1);
}

/* Icons */
.floating-buttons img {
  width: 32px;
  height: 32px;
}

/* Pulse Animation */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 #000;
  }

  70% {
    box-shadow: 0 0 0 12px rgba(0, 128, 0, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(0, 128, 0, 0);
  }
}

/* Floating Buttons Css Ends */
/* Top Header Styling */
.top-header {
  background-color: #000;
  font-size: 14px;
  color: #000;
  padding: 20px;
}

.top-header a {
  text-decoration: none;
}

.top-info a {
  font-size: 14px;
  text-decoration: none;
  font-family: 'Red Hat Display';
  font-weight: 500;

}

/* Navbar Styling */
/* .navbar-nav>li:first-child>a {
  border-left: 1px solid #d19b99;
  padding-left: 10px;
} */

.navbar {
  position: sticky;
    padding: 0;
    z-index: 1200;
}

.navbar-dark .navbar-nav .nav-link {
  color: #000;
  transition: color 0.3s;
  border-bottom: 3px solid #00000000;
  padding: 20px 20px;
  /* border-right: 1px solid #d19b99; */
  font-family: "Red Hat Display", sans-serif;
  font-weight: 600;
  font-size: 18px;
}


.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
  background-color: #00000000;
  border-bottom: 3px solid #910909;
  color: #000;
}

/* Dropdown Styling */
.nav-item .dropdown{
       position: relative;
}

.dropdown-menu {
  display: none;
  padding: 0;
  margin:0;
  background-color: #c9c2c2;
  border-bottom: 4px solid #910909;
  border-radius: 0;
  --bs-dropdown-border-color: transparent; /* Override Bootstrap variable */
}

.dropdown-menu .dropdown-item {
  display: block;
  color : #000;
  padding: 3px 23px;
  border-bottom: 1px solid #ccc;
  font-size: 14px;
  font-family: "Red Hat Display", sans-serif;
}

.dropdown-menu .dropdown-item:hover {
  background-color: #910909;
  color: #fff;
}

.dropdown-item.active, .dropdown-item:active {
  color: #fff;
  text-decoration: none;
  background-color: #910909 !important;
}

/* Navbar Ends */

/* Hero Slider Started */
.hero-slider {
  position: relative;
  width: 100%;

}

.container-auto {
  width: 100%; 
}

.hero-slider .item {
  position: relative;
  width: 100%;
  height: 100vh;
  background-position: center;
  background-size: cover;

}

.hero-slider .slide-content {
  background: rgba(0, 0, 0, 0.418);
  padding: 30px;
  border-radius: 8px;
  height: 100%;
}

.hero-slider .carousel-caption {
  padding: 66px 49px 180px 44px;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.hero-slider .carousel-caption h2 {
  font-size: 68px;
  line-height: 1.4;
  color: #fff;
  font-weight: 600;
  justify-content: center;
  font-family: "Red Hat Display", sans-serif;
  text-shadow: 0px 2px 2px #000
}

.hero-slider .carousel-caption p {
  font-size: 20px;
  line-height: 1.3;
  color: #fff;
  font-weight: 500;
  justify-content: center;
  font-family: "Red Hat Display", sans-serif;
}

.hero-slider .slide-text {
  font-size: 1.1rem;
}

/* Custom Prev/Next Buttons */


.hero-slider .owl-prev,
.owl-next {
  width: 50px;
  height: 50px;
  background: rgba(0, 0, 0, 0.3);
  padding: 14px 20px;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 5px;
}

.hero-slider .owl-prev {
  position: absolute;
  bottom: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px !important;
  left: 0;
  padding: 14px 20px !important;
  color: #fff;
  text-align: center;
  background: 0 0;
  border: 0;
  opacity: .5;
  transition: opacity .15s ease;
  text-decoration: none;
  cursor: pointer;
}

.hero-slider .owl-next {
  position: absolute;
  bottom: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px !important;
  right: 0;
  padding: 14px 20px !important;
  color: #fff;
  text-align: center;
  background: 0 0;
  border: 0;
  opacity: .5;
  transition: opacity .15s ease;
  text-decoration: none;
  cursor: pointer;
}

.hero-slider .owl-prev i,
.hero-slider .owl-next i {
  width: 4.5rem;
  height: 3.5rem;
  border-radius: 0;
  background: #000000dc !important;
  border: 2px solid #910909;
  display: inline-block;
  cursor: pointer;
  font-size: 24px;
  color: #fff;
  padding: 7px 3px !important;
  line-height: 36px;
}


.hero-slider .owl-prev i:hover,
.hero-slider .owl-next i:hover {
  background: #0000009a !important;
  color: #FFF !important;
  text-decoration: none;
}
/* Ends */


.chooseus-section{
  position: relative;
  overflow: hidden;
}

.content_block_two .content-box{
  position: relative;
  display: block;
}

.content_block_two .content-box p{
  color: #101A30;
  margin-bottom: 31px;
}

.chooseus-block-one .inner-box {
  position: relative;
  display: block;
  background: #FFFFFF;
  box-shadow: 0px 10px 50px rgba(0, 0, 0, 0.1);
  padding: 46px 22px 35px 24px;
  margin-top: 30px;
  text-align: center;
  transition: all 500ms ease;
}

.chooseus-block-one .inner-box:hover{
  transform: translateY(-10px);
}

.chooseus-block-one .inner-box .icon-box{
  position: relative;
  display: inline-block;
  width: 70px;
  height: 70px;
  line-height: 70px;
  text-align: center;
  background: linear-gradient(90deg, #000 1.12%, #000000 100%);
  border-radius: 50%;
  margin-bottom: 23px;
}

.chooseus-block-one .inner-box h3{
  position: relative;
  display: block;
  font-size: 24px;
  line-height: 30px;
  font-weight: 600;
    font-family: "Red Hat Display", sans-serif;
}

.chooseus-section .inner-content{
  position: relative;
}

.chooseus h2{
     font-size: 38px;
     font-family:"Red Hat Display", sans-serif;
     line-height:1.2;
     font-weight:600;
}

.chooseus-section .inner-content .shape .shape-1{
  position: absolute;
  left: 50%;
  top: 50%;
  margin-top: -135px;
  margin-left: -135px;
  width: 270px;
  height: 270px;
  background: linear-gradient(90deg, #04040417 1.12%, #00000008 100%);
  border-radius: 50%;
  -webkit-animation: zoom-fade 7s infinite linear;
  animation: zoom-fade 7s infinite linear;
}

.chooseus-section .inner-content .shape .shape-2{
  position: absolute;
  left: -63px;
  top: -30px;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  border: 2px dashed rgba(0, 0, 0, 0.15);
}

.chooseus-section .inner-content .shape .shape-3{
  position: absolute;
  left: 45px;
  top: 78px;
  width: 484px;
  height: 484px;
  border-radius: 50%;
  border: 2px dashed rgba(0, 0, 0, 0.15);
}

.chooseus-section .pattern-layer .pattern-1{
  position: absolute;
  left: -70px;
  top: -150px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  border: 70px solid #dc354512;
  -webkit-animation: zoom-fade 7s infinite linear;
  animation: zoom-fade 7s infinite linear;
}

.chooseus-section .pattern-layer .pattern-2{
  position: absolute;
  left: 180px;
  top: 44px;
  width: 80px;
  height: 96px;
  background-repeat: no-repeat;
}

.chooseus-section .pattern-layer .pattern-3{
  position: absolute;
  left: 220px;
  bottom: 0px;
  width: 190px;
  height: 190px;
  background-repeat: no-repeat;
}

.theme-btn.btn-one {
  background: linear-gradient(90deg, #530606 1.12%, #000 100%);;
}

.theme-btn {
  position: relative;
  display: inline-block;
  overflow: hidden;
  vertical-align: middle;
  font-size: 17px;
  line-height: 28px;
  font-weight: 600;
  font-family: "Red Hat Display", sans-serif;
  text-decoration: none;
  color: #fff !important;
  text-align: center;
  padding: 10px 27px;
  z-index: 1;
  transition: all 500ms ease;
}


/* Why Choose Us Ends */

/* About Section  Started */
.about .about-content h1 {
  font-size: 52px;
  font-weight: 700;
  font-family: "Red Hat Display", sans-serif;
  text-transform: uppercase;
  margin: 30px 0;
  line-height: 1.5;
  text-shadow: 0px 2px 2px  #0000001a;
}

.breadcrumb-item+.breadcrumb-item::before {
  float: left;
  padding-right: var(--bs-breadcrumb-item-padding-x);
  color: #fff !important;
  content: "/";
}

.about .about-content h1 span {
  font-size: 52px;
  font-weight: 800;
  font-family: "Red Hat Display", sans-serif;
  text-transform: uppercase;
  margin: 30px 0;
  color: #910909;
  text-shadow: 0px 2px 2px #0000001a;
}

.about .our-story p {
  font-size: 16px;
  line-height: 1.6;
  font-family: "Red Hat Display", sans-serif;
  font-weight: 400;
  color: #000;
}

@media (min-width: 991px) {
  .about .inner-title {
    max-width: 65%;
    margin: 0 0 80px 0;
  }
}

.about .our-story {
  padding: 40px;
  background-color: color-mix(in srgb, #df1c1c, transparent 96%);
}

@media (min-width: 991px) {
  .about .our-story {
    padding-right: 34%;
  }
}

.about .our-story h4 {
  text-transform: uppercase;
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.about .our-story h3 {
  font-size: 2.25rem;
  font-weight: 700;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.about .our-story p:last-child {
  margin-bottom: 0;
}

.about ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.about ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}

.about ul i {
  font-size: 1.25rem;
  margin-right: 0.5rem;
  line-height: 1.2;
  color: var(--accent-color);
}

.about .watch-video i {
  font-size: 2rem;
  transition: 0.3s;
  color: var(--accent-color);
}

.about .watch-video a {
  font-weight: 600;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-left: 8px;
  transition: 0.3s;
}

.about .watch-video:hover a {
  color: var(--accent-color);
}

.about .about-img {
  min-height: 400px;
  position: relative;
}

@media (min-width: 992px) {

  .nav-item.dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0; /* align properly */
}
  .about .about-img {
    position: absolute;
    top: 90px;
    right: 0;
    min-height: 550px;
  }


}

.about .about-img img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
}

.about-btn {
  display: inline-block;
}

/* Base Button Styles */
.btn {
  display: inline-block;
  text-decoration: none;
  font-family: 'Red Hat Display', sans-serif;
  font-weight: 400;
  cursor: pointer;
  transition: all 0.3s ease;
  outline: none;
  border-radius: 0px;
  overflow: hidden;
  position: relative;
  box-shadow: inset 2px 2px 2px rgba(255, 255, 255, 0.096),
    7px 7px 20px rgba(0, 0, 0, 0.1),
    4px 4px 5px rgba(0, 0, 0, 0.1);
}

/* Specific Style for .btn-3 */
.btn-3 {
  background: linear-gradient(0deg, #910909 0%, #910909 100%);
  width: 130px;
  height: 40px;
  line-height: 40px;
  color: #fff;
  text-align: center;
  border: none;
  position: relative;
  padding: 0;
}

.btn-3 span {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  z-index: 2;
  transition: color 0.3s ease;
}

/* Hover Effects */
.btn-3::before,
.btn-3::after,
.btn-3 span::before,
.btn-3 span::after {
  content: '';
  position: absolute;
  background: #910909;
  transition: all 0.3s ease;
  z-index: 1;
}

/* Right vertical line */
.btn-3::before {
  right: 0;
  top: 0;
  width: 2px;
  height: 0%;
}

/* Top horizontal line */
.btn-3::after {
  right: 0;
  top: 0;
  width: 0%;
  height: 2px;
}

/* Left vertical line */
.btn-3 span::before {
  left: 0;
  bottom: 0;
  width: 2px;
  height: 0%;
}

/* Bottom horizontal line */
.btn-3 span::after {
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
}

.btn-3:hover {
  background: transparent;
  box-shadow: none;
}

.btn-3:hover::before {
  height: 100%;
}

.btn-3:hover::after {
  width: 100%;
}

.btn-3 span:hover {
  color: #910909;
}

.btn-3 span:hover::before {
  height: 100%;
}

.btn-3 span:hover::after {
  width: 100%;
}

/* About Ends */

/* ABout Page Started */

.tp-about__wapper {
  margin-left: -30px;
  position: relative;
}

.tp-about__main-img {
  position: relative;
}

.tp-about__main-img::after {
  content: "";
  position: absolute;
  background-image: -moz-linear-gradient(90deg, rgb(0, 113, 93) 0%, rgb(126, 163, 92) 34%, rgb(251, 212, 90) 100%);
  background-image: -webkit-linear-gradient(90deg, #000 0%, #530606 34%, #dc3545 100%);
  background-image: -ms-linear-gradient(90deg, rgb(0, 113, 93) 0%, rgb(126, 163, 92) 34%, rgb(251, 212, 90) 100%);
  width: 30px;
  height: 115px;
  right: 30px;
  top: 46px;
}

.tp-about__sec-img {
  position: absolute;
  right: 0;
  bottom: 0;
}

.tp-about-counter {
  background-color: #000;
  box-shadow: 0px 6px 24px 0px rgba(0, 0, 0, 0.04);
  display: inline-block;
  padding: 15px 21px 15px 21px;
  z-index: 9;
  position: absolute;
  bottom: -50px;
  left: 73px;
  right: 110px;
}
 

.tp-about__trusted-by b {
  font-size: 16px;
  color: #910909;
  font-weight: 700;
  line-height: 30px;
  font-family:"Red Hat Display", sans-serif;
}

.tp-about-counter-icon {
  float: left;
  margin-right: 26px;
  margin-top: 4px;
} 

.tp-about__trusted-by-icon span i {
      line-height:1.5;
}
.tp-about-counter-icon span {
  font-size: 44px;
  color: #af331b;
  background: #f9f4e8;
  height: 70px;
  width: 70px;
  display: inline-block;
  text-align: center;
  line-height: 66px;
  border-radius: 50%;
}

.counter__content p{
        color: #fff;
        font-family: "Red Hat Display", sans-serif;
}

.counter__title {
  font-size: 48px;
  color: #fff;
  line-height: 1;
  font-family: "Red Hat Display", sans-serif;
  margin: 0;
}

.ml-85{
   margin-left: 85px;
}

.tp-section-subtitle {
  color: #910909;
  text-transform: uppercase;
  font-family: "Red Hat Display", sans-serif;
  font-weight: 700;
  letter-spacing: 2px;
}

.tp-section-title{
       font-size: 34px;
       font-family: "Red Hat Display", sans-serif;
       text-shadow: 0px 2px 2px #00000094;
}

.tp-about__save-money-content {
  overflow: hidden;
}

.tp-about__save-money span {
  font-size: 50px;
  color: #910909;
  float: left;
  margin-right: 15px;
}

.tp-about__trusted-by {
  background: #f5f5f5;
  padding: 20px 10px 20px 10px;
  border-bottom: 4px solid #910909;
}

.tp-about__trusted-by-icon span {
  font-size: 44px;
  color: #fff;
  height: 70px;
  width: 70px;
  background: #000;
  display: inline-block;
  text-align: center;
  line-height: 67px;
  border-radius: 50%;
  margin-bottom: 15px;
  transition: 0.4s;
}
/* About Page Ends */

/* Service Section Started */

/*** service Start ***/
.service .service-item {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.service-item img {
      width: 100%;
      height:400px;
      object-fit: cover;
}

.service .service-item::after {
  width: 100%;
  height: 100%;
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  display: flex;
  background: linear-gradient(to bottom, #0000001f, #000000ed);
  z-index: 2;
}

.service .service-item .service-content {
  position: absolute;
  width: 100%; 
  height: 100%; 
  padding: 20px; 
  justify-content: end; 
  bottom: -60px; 
  left: 0;
  transition: 0.5s;
  z-index: 3;
}

.service .service-item .service-content h4 {
  color: #fff;
  font-size: 26px;
  font-family: "Red Hat Display", sans-serif;
  text-shadow: 0px 2px 2px #00000073;
}

.service .service-item .service-content p{
        font-size:16px;
        font-family:"Red Hat Display", sans-serif;
}

.service .service-item:hover .service-content {
  position: absolute;
  width: 100%; 
  height: 100%; 
  padding: 20px; 
  justify-content: end; 
  bottom: 0px; 
  left: 0;
  background: rgba(0, 0, 0, 0.432);
}

.service .service-item .service-btn {
  visibility: hidden;
  opacity: 0;
  transition: 0.5s;
}

.service .service-item:hover .service-btn {
  visibility: visible;
  opacity: 1;
}

/*** service End ***/

/* FAQS Started */
.faq-bg-one {
  background-image: url(..//img/bg/faq.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.faq-one-thumbnail-wrapper-right {
  display: flex;
  align-items: center;
  justify-content: center;
}
 

.faq-main-wrapper-content-inner-four .title-style-four {
  margin-right: -50px;
}
.faq-main-wrapper-content-inner-four .title-style-four * {
  color: #fff;
}
.faq-main-wrapper-content-inner-four .accordion .accordion-item {
  margin-bottom: 30px;
  background: transparent;
  border: 1px solid rgb(65, 72, 87);
  border-radius: 5px;
}
.faq-main-wrapper-content-inner-four .accordion .accordion-item .accordion-button {
  background: transparent;
  font-size: 18px;
  color: #fff;
  padding: 18px 35px;
  font-weight: 600;
  border-bottom: none;
  box-shadow: none !important;
  font-family:"Red Hat Display", sans-serif;
}
.faq-main-wrapper-content-inner-four .accordion .accordion-item .accordion-button::after {
  filter: brightness(0) saturate(100%) invert(100%) sepia(66%) saturate(49%) hue-rotate(182deg) brightness(119%) contrast(100%);
}
.faq-main-wrapper-content-inner-four .accordion .accordion-item .accordion-button:focus {
  box-shadow: none;
}
.faq-main-wrapper-content-inner-four .accordion .accordion-item .accordion-button[aria-expanded=true] {
  background: #fff;
  color: #910909;
}
.faq-main-wrapper-content-inner-four .accordion .accordion-item .accordion-button[aria-expanded=true]::after {
  filter: brightness(0) saturate(100%) invert(0%) sepia(0%) saturate(7500%) hue-rotate(242deg) brightness(109%) contrast(108%);
}
.faq-main-wrapper-content-inner-four .accordion .accordion-item .accordion-collapse .accordion-body {
  transition: 0s;
  transition-delay: 0s;
  padding: 25px 30px 30px 30px;
  font-size: 16px;
  color: #000;
  font-family:"Red Hat Display", sans-serif;
}
.faq-main-wrapper-content-inner-four .accordion .accordion-item .accordion-collapse.show .accordion-body {
  background: #fff;
}
.faq-main-wrapper-content-inner-four .accordion .accordion-item .accordion-collapse.collapsing .accordion-body {
  background: #fff;
}

.faq-wrapper-inner-page .accordion-item {
  margin-bottom: 30px;
  background: #F2F2F2;
  border: 1px solid #E3E0E6;
  box-shadow: 0px 7px 18px rgba(24, 16, 16, 0.05);
  border-radius: 6px;
}
@media only screen and (max-width: 575px) {
  .faq-wrapper-inner-page .accordion-item {
    margin: 0 15px;
    margin-bottom: 30px;
  }
}
.faq-wrapper-inner-page .accordion-item .accordion-header {
  border: none;
  box-shadow: none;
}
.faq-wrapper-inner-page .accordion-item .accordion-header button {
  padding: 24px 40px;
  border: none;
  box-shadow: none;
  font-size: 18px;
  color: #1C2539;
  background: transparent;
  font-weight: 700;
}
@media only screen and (max-width: 767px) {
  .faq-wrapper-inner-page .accordion-item .accordion-header button {
    padding: 24px 15px;
  }
}
.faq-wrapper-inner-page .accordion-item .accordion-header button::after {
  content: "\f078";
  font-family: var(--font-3);
  background-image: none;
  transform: none;
  margin-top: -5px;
}
.faq-wrapper-inner-page .accordion-item .accordion-header button[aria-expanded=true]::after {
  content: "\f077";
}
.faq-wrapper-inner-page .accordion-item .accordion-body {
  padding: 0 20px 20px 40px;
}
@media only screen and (max-width: 767px) {
  .faq-wrapper-inner-page .accordion-item .accordion-body {
    padding: 0 20px 20px 20px;
  }
}

.whychoose ul li{
     list-style: none;  
     font-size: 22px;
     font-family: "Red Hat Display", sans-serif;
     font-weight: 600; 
     margin-right: 10px;
     color: #000;
     position: relative;
     margin-bottom: 20px;
}

.whychoose span{
     font-size:18px;
     font-weight:400;
     color:#333;
}

.whychoose ul li::before{
  list-style: none; 
  content: "\2726";
  font-family: "Font Awesome 5 Free";
  font-weight: 900; 
  margin-right: 10px;
  position: relative;
  margin-bottom: 20px;
}

/* FAQS Ends */


/* Testimonial Section Started */
/*** Testimonial Start ***/
.slide-testimonial {
  position: relative;
}

.slide-testimonial .owl-carousel .testimonial-item .testimonial-img {
  position: relative;
  width: 100px; 
  height: 100px; 
  top: 0; left: 50%; 
  transform: translate(-50%, -50%);
  border: 3px solid #fff; 
  border-style: dotted;
  border-radius: 50%;
}
 
.testimonial-item .testimonial-img img{
        width:100px;
        height:100px;
        object-fit: cover;
        margin: 0 auto;
        padding: 7px;
        margin-top: -50px;
        margin-bottom: 39px;
        border: 3px solid #910909; 
        border-style: dotted;
        transition: 0.5s;
        justify-content: center;
}

.testimonial-comment { 
      box-shadow:0px 3px 10px #000;
      margin:15px;
}

.slide-testimonial .owl-prev,
.slide-testimonial .owl-next {
  width: 60px !important;
  height: 40px !important;
  background: #000;
  padding: 14px 20px;
  top: -10%;
  transform: translateY(-50%);
  border-radius: 5px !important;
}

.slide-testimonial .owl-prev {
  position: absolute;
  bottom: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center; 
  left: 0;
  padding: 14px 20px !important;
  color: #fff;
  text-align: center;
  background: 0 0;
  border: 0;
  opacity: .5;
  transition: opacity .15s ease;
  text-decoration: none;
  cursor: pointer;
}

.slide-testimonial .owl-next {
  position: absolute;
  bottom: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center; 
  right: 0;
  padding: 14px 20px !important;
  color: #fff;
  text-align: center;
  background: 0 0;
  border: 0;
  opacity: .5;
  transition: opacity .15s ease;
  text-decoration: none;
  cursor: pointer;
}
 
.slide-testimonial .owl-prev i, .slide-testimonial .owl-next i {
    width: 5.5rem;
    height: 2.5rem;
    border-radius: 82px;
    background: #000000 !important;
    border: 2px solid #910909;
    display: inline-block;
    cursor: pointer;
    font-size: 24px;
    color: #fff;
    padding: 7px 3px !important;
  line-height: 24px;
}

.testimonial-title h5{
       font-size: 20px;
       font-family:"Red Hat Display", sans-serif;
       color:#910909;
}


.slide-testimonial .owl-prev i:hover,
.slide-testimonial .owl-next i:hover {
  background: #0000009a !important;
  color: #FFF !important;
  text-decoration: none;
}
/* Testimonial section Ends */

.contact {
  .contact-container {
    display: flex;
    flex-wrap: wrap;
    padding: 40px;
    gap: 30px;
  }

  .contact-info,
  .contact-form {
    flex: 1 1 45%;
    min-width: 300px;
  }

  .contact-info i {
    color: #910909;
    font-size:20px;
    text-decoration: none !important;
  }

  .contact-info p a {
         text-decoration: none !important;
         color: #000;
  }

  .contact-info h2,
  .contact-form h2 {
    color: #dc3545;
    font-size: 24px;
    font-family: "Red Hat Display", sans-serif;
    padding: 9px;
  }

  .contact-text h2 {
    margin-bottom: 20px;
    color: #583029;
    font-weight: 600;
    font-size: 43px;
    font-family: "Red Hat Display", sans-serif;
    text-shadow: 0px 2px 2px rgb(88 48 41 / 49%);
  }
  .contact-text p {
    font-size: 16px;
    color: #000;
    line-height: 1.5;
    font-family: "Red Hat Display", sans-serif;
    text-decoration: none;
  }

  .contact-info p {
    margin: 10px 0;
  }

  .map {
    margin-top: 30px;
    width: 100%;
    height: 400px;
  }

  .contact-wrap .form-control {
    border: 2px solid #d9e7db;
    background-color: #fff;
    border-radius: 0px;
    line-height: 2.5 !important;
    margin:8px !important;
  }
  .contact-wrap {
    padding: 2.5rem;
    background: #e2e2e2;
    border-bottom: 5px solid #990700;
    position: relative;
  }

  .form-btn button{
       background-color: #000;
       border:2px solid #000;
       margin-top:15px;
       color:#fff;
  }

}

/* Page Header Banner */
.page-header{
     background-position: center;
     background-repeat: no-repeat;
     background-size: cover;
}

.page-header nav ol li {
  color: #fff;
  font-family:"Red Hat Display", sans-serif;
  font-size: 20px;
}

.page-header nav ol li a{
     color: #fff;
     font-family:"Red Hat Display", sans-serif;
     font-size: 20px;
     text-decoration: none;
}

.page-header .about-font h1{
        font-size: 60px;
        font-family: "Red Hat Display", sans-serif;
        text-shadow: 0px 2px 2px #000;
        line-height: 1.4;
        font-weight:700;
        text-align: center;
}

/* Page Header banner Ends */

/* Heading Title Started */
.heading-title h2 { 
     font-family:"Red Hat Display", sans-serif;
     font-size: 40px;
     line-height: 1.4;
     text-align: center;
     color:#910909;
     font-weight:600;
     text-shadow: 0px 2px 2px #00000085;
     text-transform: capitalize;
}

.heading-title p{
   font-size:16px;
   line-height:1.4;
   font-family:"Red Hat Display", sans-serif;
   text-align: center;
   color:#000
}
/* Heading itle ENds */

/* Blog Css Started **/

.news-block_two {
  position: relative;
  margin-bottom: 30px;
}

.news-block_two-inner {
  position: relative;
  box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.10);
}

.news-block_two-image {
  position: relative;
}

.news-block_two-image img {
  position: relative;
  width: 100%;
  display: block;
  height: 200px;
  object-fit: cover;
}

.news-block_two-date {
  position: relative;
  top: -12px;
  font-weight: 700;
  padding: 7px 17px;
  margin-top: -7px;
  display: inline-block;
  color: #fff;
  font-size: 12px;
  text-transform: uppercase;
  background-color: #583029;
}

.news-block_two-search:before {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
  line-height: 1em;
  font-size: 40px;
  color: #000;
  transform: translateX(-50%) translateY(-50%);
}

.news-block_two-content {
  position: relative;
  padding: 0px 24px 50px;
  background-color: #fff;
}

.news-block_two-content h5 {
  font-size: 18px;
  line-height: 1.4;
}

.news-block_two-content p {
  font-size: 14px;
  text-align: left;
  font-family: "Red Hat Display", sans-serif;
}

.news-block_two-meta {
  position: relative;
  margin-top: 10px;
}

.news-block_two-meta li {
  position: relative;
  display: inline-block;
  letter-spacing: 1px;
  color: #000;
  font-size: 14px;
  text-transform: uppercase;
  padding-left: 25px;
  margin-right: 15px;
}

.news-block_two-meta li i {
  position: absolute;
  left: 0px;
  top: 0px;
  font-size: 15px;
  color: #000;
}

.sidebar-widget.style-two .widget-content {
  background-color: #141414;
}

.servicetext h2 {
  font-size: 22px;
  font-family: "Playwrite CU", cursive;
  color: #fff;
  font-weight: 600;
}


.sidebar-widget h4 {
  color: #fff;
  margin-bottom: 30px;
  font-family: "Playwrite CU", cursive;
}

.widget-content .post {
  position: relative;
  min-height: 70px;
  padding-left: 95px;
  margin-bottom: 20px;
}

.widget-content .post .post-date {
  position: relative;
  display: block;
  font-weight: 500;
  letter-spacing: 1px;
  color: #ccc;
  font-size: 12px;
  font-family: "Red Hat Display", sans-serif;
  text-transform: uppercase;
}

.widget-content .post h6 a {
  line-height: 24px;
  margin-top: 3px;
  font-size: 14px;
  font-family: "Red Hat Display", sans-serif;
  text-decoration: none;
  color: #fff;
}

.widget-content .post .thumb {
  position: absolute;
  left: 0;
  top: 0;
  height: 70px;
  width: 80px;
  overflow: hidden;
}

.post-widget .post .thumb img {
  display: block;
  width: 100%;
  height: 60px;
  object-fit: cover;
}

.post-widget .widget-content {
  position: relative;
  padding: 40px;
}

.popular-tags a {
  position: relative;
  padding: 10px 11px;
  font-weight: 600;
  letter-spacing: 1px;
  display: inline-block;
  color: #000;
  font-family: "Red Hat Display", sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  background-color: #dee2e6;
  margin-right: 5px;
  margin-bottom: 10px;
  text-decoration: none;
}

.popular-tags a:hover {
  color: #fff;
  background-color: #000;
  text-decoration: none;
}

.widget-content-tags {
  padding: 25px;
  background-color: #141414;
}

.fa-folder-open::before {
  content: "\f007" !important;
}

.news-block_two-meta li:last-child {
  margin-right: 0px;
}

.fa-comments::before {
  content: "\f086";
}

.news-block_two-heading a {
  position: relative;
  color: #910909;
  text-decoration: none;
  font-family: "Red Hat Display", sans-serif;
}

.news-block_two-heading a:hover {
  position: relative;
  color: #341b1c;
  text-decoration: none !important;
}

.blog-center {
  position: relative;
  padding: 10px 24px;
  display: inline-block;
  letter-spacing: 1px;
  font-size: 15px;
  text-transform: uppercase;
  color: #fff;
  margin-top: 0px;
  background-color: #092f4d;
  text-decoration: none;
  transition: .3s;

}

.blog-center:hover {
  color: #092f4d;
  background-color: #f3f3f3;
  border: 2px solid #092f4d;
  transition: .3s;
}

.news-block_two-more {
  position: relative;
  padding: 5px 24px;
  letter-spacing: 1px;
  font-size: 12px;
  text-transform: uppercase;
  color: #910909;
  margin-top: 0px;
  font-weight:600;
  border:2px solid #910909;
  background-color: #91090900;
  text-decoration: none;
  float: right;
  font-family: "Red Hat Display", sans-serif;
}
.blog-detail_lower-content p{
           color:#333;
           font-family: "Red Hat Display", sans-serif;
}

.blog-detail_lower-content ul li{
  color:#333;
  font-family: "Red Hat Display", sans-serif;
}

.aboutlist h4{
     font-size:20px;
     font-family: "Red Hat Display", sans-serif;
     color: #910909;
}

.news-block_two-more:hover {
  color: #fff;
  background-color: #000;
  border: 2px solid #000;
  transition: .3s;
}

.appointmentboxleftinpit {
  margin: 15px 0px;
  padding: 0px;
}

.blog-detail_three-image img {
  position: relative;
  width: 100%;
  display: block;
}

.blog-detail_lower-content {
  position: relative;
  padding: 30px 14px 30px;
}

.blog-detail_date {
  position: relative;
  font-weight: 700;
  padding: 7px 17px;
  display: inline-block;
  color: #fff;
  font-size: 14px;
  font-family:"Red Hat Display", sans-serif;
  text-transform: uppercase;
  background-color: #910909;
  margin-right: 15px;
}

.blog-detail_heading {
  position: relative;
  font-weight: 700;
  color: #000;
  margin-bottom: 20px;
  margin-top: 20px;
  font-family:"Red Hat Display", sans-serif;
}

.blogbg {

  background-color: #F3F2EE;
  padding: 60px 0px;
}


.blogbox {

  margin: 0px;
  padding: 0px;
}

.blogboximg {

  width: 100%;
  height: 300px;
  margin: 0px;
  padding: 0px;
}

.blogboximg img {

  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 8px;
}

.blogboxtext {

  margin: 20px 0px;
  padding: 0px;
}

.blogboxtexticon {

  margin: 0px;
  padding: 0px;
  display: flex;
  justify-content: space-between;
}

.blogboxtexticon1 {

  display: flex;
  gap: 14px;
}

.blogboxtexticon1 i {

  color: #00923F;
  font-size: 20px;
}

.blogboxtexticon1 p {

  color: #192c33;
  font-size: 18px;
}

.blogboxtext h2,
.blogboxtext h2 a {

  color: #001c4c;
  font-size: 18px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-decoration: none;
  transition: all 0.5s ease-in-out;
}

.blogboxtext h2,
.blogboxtext h2 a:hover {

  color: #d5aa6d;
}

.blogboxtext p {

  color: black;
  font-size: 16px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.blogboxtext h6 a {

  color: #192c33;
  text-decoration: none;
}
/** Blog Css Ends **/


/* Footer Started  */

/*** Footer ***/
.footer {
  background: linear-gradient(#000000, #000000), url(../img/bg/pettern-3.png) center center no-repeat;
  background-size: cover;
}

.footer-text p {
  color: #fff;
  line-height: 20px;
  text-decoration: none;
  font-weight:400;
  font-family: "Red Hat Display", sans-serif;
  line-height:1.4;
}

.footer a{
    font-family: "Red Hat Display", sans-serif;
    text-decoration: none;
}

.footer-bottom {
  background-color: #000;
}

@media (min-width: 992px) {
  .footer::after {
    position: absolute;
    content: "";
    width: 0px;
    height: 100%;
    top: 0;
    left: 56%;
    border-left: 1px dashed rgba(255, 255, 255, .2);
  }
}
 

.footer ul li::before {
  position: relative;
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #fff;
  margin-right: 10px;
}


.footer ul li {
  margin: 10px 0;
  list-style: none;
  display: block;
  margin-bottom: 5px;
  padding: 0;
  text-align: left;
  color: rgb(255 251 252);
  font-weight: normal;
  text-transform: capitalize;
  transition: .3s;
  text-decoration: none;
}

.footer ul li a {
  color: #fff;
  text-decoration: none;
  list-style: none !important;
  transition: color 0.3s ease, transform 0.3s ease;
}

.footer a:hover {
  color: #910909;
  transform: translateX(5px);
}

.copyright {
  border-top: 1px dashed rgba(255, 255, 255, .2);
}

.copyright a {
  color: #fff;
  text-decoration: none;
}

.copyright a:hover {
  color: #fff;
}
 
.text-black {
  color: #000 !important;
}

/* Footer Ends */

/* Responsive Slide Height */
@media (max-width: 768px) {
  .owl-carousel .item {
    height: 300px;
  }

  .slide-title {
    font-size: 1.5rem;
  }

  .slide-text {
    font-size: 1rem;
  }
}

/* Responsive Fix */
@media (max-width: 678px) {
  /* Navbar Started */

  .top-header .contact-info {
    text-align: center;
    width: 100%;
  }

  .top-header .social-icons {
    display: none;
  }

.navbar-dark .navbar-nav .nav-link {
    color: #000;
    transition: color 0.3s;
    padding: 3px 14px;
    border-right: none;
    font-family: "Red Hat Display", sans-serif;
    font-weight: 600;
    font-size: 14px;
}

.dropdown-menu {
  display: block;
  position: relative; 
  height: 147px;
  scroll-behavior: smooth;
  overflow: scroll;
  background-color: #c9c2c2;
  border-bottom: 4px solid #910909; 
}

.page-header .about-font h1 {
  font-size: 29px;
  font-family: "Red Hat Display", sans-serif;
}

/* Custom toggle button */
.custom-toggler {
  background-color: black;
  border: 2px solid red;    
  border-radius: 0px;
  padding: 6px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 30px;
  width: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* Bars (hamburger lines) */
.custom-toggler .toggler-bar {
  height: 2px;
  width: 100%;
  background-color: #fff;
  border-radius: 0px;
  transition: all 0.3s ease;
}
 
 /* Navbar ENds */
 
.hero-slider .carousel-caption {
          padding:0px;
  }

  .hero-slider .carousel-caption h2 {
    font-size: 25px;
    line-height: 1.4;
    color: #fff;
  }  

  .hero-slider .carousel-caption p {
    font-size: 15px;
  }  

  .hero-slider .owl-prev i, .hero-slider .owl-next i {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0;
    background: #000000dc !important;
    border: 2px solid #910909;
    display: inline-block;
    cursor: pointer;
    font-size: 24px;
    color: #fff;
    padding: 7px 3px !important;
    line-height: 23px;
}  

.carousel-caption {
  position: absolute;
  right: 10%;
  bottom: 1.25rem;
  left: 10%;
}

.about .about-content h1 {
  font-size: 26px;
}

.tp-section-title {
  font-size: 24px;
  line-height: 36px;
}

.about .about-content h1 span {
  font-size: 36px;
}

.about .about-img img {
  position: relative;
  inset: 0;
  padding: 20px;
}

.about .our-story {
  padding: 20px;
}

.chooseus h2 {
  font-size: 30px;
}

.heading-title h2 {
  font-family: "Red Hat Display", sans-serif;
  font-size: 25px;
  line-height: 1.4;
}

.faq-main-wrapper-content-inner-four .accordion .accordion-item .accordion-button {
  background: transparent;
  font-size: 16px;
  color: #fff;
  padding: 13px 10px;
}

.faq-main-wrapper-content-inner-four .accordion .accordion-item .accordion-collapse .accordion-body {
  transition: 0s;
  transition-delay: 0s;
  padding: 20px 19px;
  font-size: 14px;
}

.testimonial-comment { 
  margin: 13px;
  box-shadow: 1px 4px 4px #0000003b;
}
 
.slide-testimonial .owl-prev, .slide-testimonial .owl-next {
    width: 40px !important;
    height: 30px !important;
    background: #000;
    padding: 14px 20px;
    top: 27%;
}

.floating-buttons {
  position: fixed;
  bottom: 50px;
  right: 30px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 9999;
}

.tp-about__main-img img  {
  width: 100%;
  position: relative;
  padding: 31px;
}

.tp-about-counter{
    background-color: #000;
    box-shadow: 0px 6px 24px 0px rgba(0, 0, 0, 0.04);
    display: fle;
    padding: 11px 12px 15px 21px;
    z-index: 9;
    position: absolute;
    bottom: -50px;
    left: 30px;
    right: 25px;
}

.counter__title {
  font-size: 30px; 
  font-family: "Red Hat Display", sans-serif;
  margin: 5px;
}

.ml-85 {
  margin-left: 11px;
  padding-top: 80px;
}

.tp-about-area{
     padding:15px;
}
.contact{
.contact-text h2 {
     font-size: 30px;
}
}

.chooseus-section .pattern-layer .pattern-2 {
  position: absolute;
  right: 20px !important;
  top: 15px;
  width: 84px;
  height: 81px; 
  background-repeat: no-repeat;
}

  .offset-1 {
    margin-left: 0 !important;
}
}