:root {
  --primary: #06151a;
  --secondary: #7e2405;
}

:root {
  --primary: #220b03;
  --secondary: #7e2405;
  --light: #FFFFFF;
  --dark: #152440;
}

.sticky-top {
  background-color: #FFF;
}

a {
  text-decoration: none !important;
}

p {
  font-size: large !important;
}

ul li {
  list-style: none !important;
}

h1,
h2,
.font-weight-bold {
  font-weight: 700 !important;
}

h3,
h4,
.font-weight-semi-bold {
  font-weight: 600 !important;
}

h5,
h6,
.font-weight-medium {
  font-weight: 500 !important;
}

.pt-6 {
  padding-top: 90px;
}

.pb-6 {
  padding-bottom: 90px;
}

.py-6 {
  padding-top: 90px;
  padding-bottom: 90px;
}

.btn {
  font-family: "Barlow", sans-serif;
  font-weight: 600;
  transition: 0.5s;
}
.btn-primary {
  color: #FFFFFF;
}
.btn-square {
  width: 36px;
  height: 36px;
}
.btn-sm-square {
  width: 28px;
  height: 28px;
}
.btn-lg-square {
  width: 46px;
  height: 46px;
}
.btn-square, .btn-sm-square, .btn-lg-square {
  padding-left: 0;
  padding-right: 0;
  text-align: center;
}

.back-to-top {
  position: fixed;
  display: none;
  right: 45px;
  bottom: 45px;
  z-index: 99;
}

.top-shape::before {
  position: absolute;
  content: "";
  width: 35px;
  height: 100%;
  top: 0;
  left: -17px;
  background: #4a1908;
  transform: skew(324deg);
}

.navbar-light .navbar-nav .nav-link {
  font-family: "Barlow", sans-serif;
  padding: 35px 15px;
  font-size: 18px;
  text-transform: uppercase;
  color: #152440;
  outline: none;
  transition: 0.5s;
}
.navbar-light .navbar-nav .nav-link:hover, .navbar-light .navbar-nav .nav-link.active {
  color: #220b03;
  position: relative;
}
.navbar-light .navbar-nav .nav-link:hover:before, .navbar-light .navbar-nav .nav-link.active:before {
  content: "";
  background-image: url(../images/active-before.png);
  width: 16px;
  height: 11px;
  position: absolute;
  z-index: 1;
  left: 0;
  top: 32px;
}

.sticky-top .navbar-nav .nav-link.active:before {
  top: 18px !important;
}

.sticky-top .navbar-nav .nav-link:hover:before {
  top: 18px !important;
}

.sticky-top.navbar-light .navbar-nav .nav-link {
  padding: 20px 15px;
}

@media (max-width: 991.98px) {
  .navbar-light .navbar-nav .nav-link {
    padding: 10px 0;
    text-align: left;
    padding-left: 20px;
  }
}
.carousel-caption {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(21, 36, 64, 0.34);
  z-index: 1;
}

@media (max-width: 576px) {
  .carousel-caption h5 {
    font-size: 14px;
    font-weight: 500 !important;
  }
  .carousel-caption h1 {
    font-size: 30px;
    font-weight: 600 !important;
  }
  .sticky-top .navbar-nav .nav-link.active:before {
    left: 9px;
    top: 10px !important;
  }
  .sticky-top .navbar-nav .nav-link:hover:before {
    left: 9px;
    top: 10px !important;
  }
}
.carousel-control-prev,
.carousel-control-next {
  width: 10%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 3rem;
  height: 3rem;
}

.service-item {
  position: relative;
  overflow: hidden;
  height: 350px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}
.service-item::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 50px;
  bottom: -50px;
  left: 0;
  background: #FFFFFF;
  border-radius: 100% 100% 0 0;
  box-shadow: 0px -10px 5px #EEEEEE;
  transition: 0.5s;
}
.service-item p {
  transition: 0.3s;
  font-size: large;
}
.service-item:hover p {
  margin-bottom: 0 !important;
}

.team-item img {
  transform: scale(1.15);
  margin-left: -30px;
  transition: 0.5s;
}
.team-item:hover img {
  margin-left: 0;
}
.team-item .team-text {
  left: -100%;
  transition: 0.5s;
}
.team-item .team-text::after {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  top: 50%;
  right: -60px;
  margin-top: -30px;
  border: 30px solid;
  border-color: transparent transparent transparent #220b03;
}
.team-item:hover .team-text {
  left: 0;
}

.testimonial-carousel .owl-nav {
  margin-top: 30px;
  display: flex;
  justify-content: start;
}
.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
  position: relative;
  margin: 0 5px;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  background: var(--secondary);
  font-size: 22px;
  border-radius: 45px;
  transition: 0.5s;
}
.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
  color: #152440;
}
.testimonial-carousel .owl-item img {
  width: 90px;
  height: 90px;
}

.blog-item img {
  transition: 0.5s;
}
.blog-item:hover img {
  transform: scale(1.1);
}

.primary-bg {
  background-color: var(--primary);
}

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

.secondary-bg {
  background-color: var(--secondary);
}

.secondary-color,
.text-primary {
  color: var(--secondary) !important;
}

html {
  overflow-x: hidden;
}

body {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: calc(14px + (24px - 14px) * (100vw - 320px) / (1200 - 320));
}

h1,
.h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  color: var(--primary);
}

.logo {
  margin-right: 15%;
  position: relative;
  z-index: 99;
}

.top-bar {
  margin-left: 20%;
}

.appoint {
  padding: 10px 35px;
}

.navbar-expand-lg .navbar-collapse {
  margin-left: 22%;
}

.sticky-top .logo {
  width: 50%;
}

.service-item {
  height: auto;
}

.des-head {
  position: absolute;
  top: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  text-align: center;
  left: 0;
  right: 0;
  text-transform: uppercase;
  color: #fff;
  background: rgba(0, 0, 0, 0.5);
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  margin: 15% 0;
  align-items: center;
  height: 25px;
  padding: 25px;
}

.owl-nav {
  text-align: center;
  display: flex;
  justify-content: center;
}
.owl-nav .owl-prev,
.owl-nav .owl-next {
  background: #f4781b;
  color: #fff;
  padding: 10px 25px;
  margin-right: 15px;
}

.extra-pop {
  margin-left: 30px;
}

.back-to-top {
  border: 1px solid #fff;
}

.navbar {
  height: 75px;
}

.logo-mobile {
  display: none !important;
}

.mobile-icon {
  display: block;
}
.mobile-icon .mobile {
  display: none;
}
.mobile-icon .email {
  display: block;
}
.mobile-icon .material-button-anim {
  position: fixed;
  bottom: -1%;
  left: 0;
  padding: 16px;
  text-align: center;
  max-width: 320px;
  z-index: 999999999999;
}
.mobile-icon .material-button-anim1 {
  position: fixed;
  bottom: -1%;
  right: 0;
  padding: 16px;
  text-align: center;
  max-width: 320px;
  z-index: 999999999999999;
}

.material-button {
  position: relative;
  top: 0;
  z-index: 1;
  width: 70px;
  height: 70px;
  font-size: 1.5em;
  color: #fff;
  background: var(--primary);
  border: none;
  border-radius: 50%;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.275);
  outline: none;
}

.material-button-toggle {
  z-index: 3;
  width: 50px;
  height: 50px;
  margin: 0 auto;
  text-align: center;
  line-height: 50px;
}

@keyframes bounce {
  0% {
    margin-top: 0;
  }
  50% {
    margin-top: -15px;
    margin-bottom: 15px;
  }
  100% {
    margin-top: 0;
  }
}
@keyframes roket-roket-circle-anim {
  0% {
    transform: rotate(0deg) scale(1) skew(0deg);
    opacity: 0.1;
  }
  30% {
    transform: rotate(0deg) scale(1.25) skew(0deg);
    opacity: 0.25;
  }
  100% {
    transform: rotate(0deg) scale(1.5) skew(0deg);
    opacity: 0;
  }
}
.material-button-toggle:not(:hover):not(:focus):not(:active) {
  transition: 0.25s !important;
  animation: 2.25s bounce infinite !important;
}

.material-anim {
  width: 100%;
  height: 100%;
  text-indent: -9999px;
  z-index: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  box-shadow: none;
}

.material-anim.one {
  animation: roket-roket-circle-anim 1.2s infinite ease-in-out !important;
  transition: all 0.5s !important;
}

.material-anim.two {
  border: 2px solid #649831 !important;
  opacity: 0.1 !important;
  background: none !important;
  animation: roket-roket-circle-anim 1.9s infinite ease-in-out !important;
  transition: all 0.5s !important;
}

@media (max-width: 768px) {
  .footer_last_block {
    margin-bottom: 25px;
    padding-bottom: 25px;
  }
  .hide-me {
    display: none !important;
  }
  .logo {
    width: 50%;
    margin-left: 25%;
  }
  .navbar-expand-lg .navbar-collapse {
    margin-left: auto;
  }
  .navbar {
    border-bottom: 5px solid var(--secondary);
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  #navbarCollapse {
    border-top: 5px solid var(--secondary);
    text-align: center;
  }
  .navbar-light .navbar-toggler {
    margin-right: 5%;
  }
  .extra-pop {
    margin-left: auto;
  }
  .logo-mobile {
    display: block !important;
    width: 50%;
    margin-left: 15%;
    margin-top: -15px;
  }
  .logo {
    display: none !important;
  }
}
.primary-bg {
  background-color: var(--primary);
}

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

.secondary-bg {
  background-color: var(--secondary);
}

.secondary-color,
.text-primary {
  color: var(--secondary) !important;
}

.navbar-expand-lg .navbar-collapse {
  margin-left: 5%;
}

.mid-bar-wrapper,
.after-services-wrapper {
  background: no-repeat center center;
  background-attachment: fixed;
  background-size: cover;
}

.mid-bar-wrapper {
  background-image: url(../images/bri-min.webp);
}

.after-services-wrapper {
  background-image: url(../images/after-services-min.webp);
}

.mid-bar-inner,
.after-services-inner {
  background-color: rgba(21, 36, 64, 0.7);
}

.after-services-inner {
  padding: 8% 0;
}

.form-mid-bar {
  background-color: rgba(126, 36, 5, 0.7607843137);
  padding: 8%;
  border: 2px dashed #f56838;
}

.banner-btn {
  background: var(--primary);
  padding: 10px 25px;
  display: inline-block;
  font-size: 29px;
}

.blockquote {
  margin-bottom: 1rem;
  font-size: 1.25rem;
  border-left: 5px solid #7e2405;
  padding-left: 15px;
  margin-top: 1rem;
  background: #f58862;
  color: #7e2405;
  padding: 15px 25px;
  font-weight: bold;
}

.ops,
.fa-star {
  color: #ffbe3d;
}

.google-reviews-mage {
  width: 35px !important;
  height: auto !important;
}

.google-review {
  background: #f2f2f2;
  padding: 6px;
  align-items: center;
  display: none !important;
}

.reviews-wrapper {
  background-color: #fff;
  border-right: 1px solid #f1f1f1;
}

.testimonial-carousel .owl-nav {
  margin-top: 0px;
  display: flex;
  justify-content: end;
  position: absolute;
  top: -72px;
  right: 0;
}

.foot-app {
  display: inline-block;
  margin-left: 11%;
}

.about_bg p, .gallery_bg p, .contact_bg p, .service_bg p {
  font-size: larger !important;
}
.about_bg::before, .gallery_bg::before, .contact_bg::before, .service_bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(34, 11, 3, 0.7490196078) !important;
  z-index: 1;
}
.about_bg p, .gallery_bg p, .contact_bg p, .service_bg p {
  font-size: 100% !important;
}
.about_bg > *, .gallery_bg > *, .contact_bg > *, .service_bg > * {
  position: relative;
  z-index: 2;
}

.about_bg {
  background: rgba(34, 11, 3, 0.7) url(../images/b1-min.webp) no-repeat center;
  width: 100%;
  min-height: 150px;
  position: relative;
  background-size: cover;
  padding: 1vw;
}

.service_bg {
  background: rgba(34, 11, 3, 0.7) url(../images/banner1.png) no-repeat center;
  width: 100%;
  min-height: 150px;
  position: relative;
  background-size: cover;
  padding: 1vw;
}

.gallery_bg {
  background: rgba(34, 11, 3, 0.7) url(../images/banner2.png) no-repeat center;
  width: 100%;
  min-height: 150px;
  position: relative;
  background-size: cover;
  padding: 1vw;
}

.contact_bg {
  background: rgba(34, 11, 3, 0.7) url(../images/banner3.png) no-repeat center;
  width: 100%;
  min-height: 150px;
  position: relative;
  background-size: cover;
  padding: 1vw;
}

.green-call-to-tap {
  width: 15%;
}

.pop-up {
  animation: 2.25s bounce infinite !important;
}

.top-bar {
  margin-left: 0;
}

.object-cover {
  -o-object-fit: cover;
     object-fit: cover;
}

.rounded-pill-scrap {
  margin-bottom: 0px;
  background: #f56838;
  width: -moz-fit-content;
  width: fit-content;
  padding: 3px 15px;
  border: 1px solid #7e2405;
}

.about_img img {
  border: 1px solid transparent;
}

a.about_us_contact_box {
  border-radius: 50px;
  border: 2px solid #f56838;
  background: #7e2405;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  width: 380px;
  padding: 10px 25px;
  gap: 20px;
  position: absolute;
  bottom: 25%;
  border-left: none;
  left: 100px;
}

.fw_500 {
  font-weight: 500 !important;
}

.line_height_20 {
  line-height: 20px;
}

.text-uppercase {
  text-transform: uppercase !important;
}

a.about_us_contact_box span {
  border: 1px solid #fff;
  border-radius: 50%;
  background-color: #fff;
  padding: 10px;
}

.welcome-wrapper {
  background: url(../images/info-bg1.webp) top left no-repeat;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.welcome-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  opacity: 0.05; /* optional overlay effect */
  z-index: 0;
}

.welcome-wrapper li {
  list-style: none;
  margin-bottom: 5px;
}

.welcome-wrapper li::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f14a";
  color: var(--secondary);
  margin-right: 8px;
}

.tow-image {
  width: 80px;
  margin-top: 2px;
}

.why-image {
  right: 0;
  top: 0;
  width: 40%;
}

.footer-wrap .text-primary {
  color: #fff !important;
}

.footer-wrap h3.text-white {
  padding-top: 25px;
}

.footer-wrap .row .col-lg-3 {
  padding-bottom: 25px;
}

.logo-text {
  font-size: 24px;
  color: #032138 !important;
}

.logo {
  margin-right: 15%;
  position: relative;
  z-index: 99;
  width: 46%;
}

@media (max-width: 768px) {
  .bg-blue {
    background: #7e2405;
  }
  .logo-mobile {
    display: block !important;
    width: 93%;
    margin-left: 5%;
    margin-top: -10px;
  }
  .logo-text {
    font-size: 18px;
    margin-left: 18px !important;
    color: #FFF !important;
  }
  .navbar-light .navbar-brand {
    color: rgba(0, 0, 0, 0.9);
    width: 55%;
  }
  .navbar-light .navbar-toggler {
    margin-right: 5%;
    margin-top: 0;
  }
  #navbarCollapse {
    border-top: navajowhite;
    text-align: center;
    background: #fff;
    z-index: 99;
    border-bottom: 5px solid var(--secondary);
    margin-top: 15px;
  }
  .navbar-expand-lg .navbar-collapse {
    margin-left: 0;
  }
  .banner-btn {
    background: var(--secondary);
    padding: 10px 25px;
    display: inline-block;
    font-size: 22px;
    margin-bottom: 15px;
  }
  .des-soc {
    padding-bottom: 20px;
  }
  .reviews-wrapper {
    justify-content: center;
  }
  .client-name {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .client-name h5 {
    margin-bottom: 0;
    font-size: 1.2rem;
    font-weight: 600;
  }
  .client-name span {
    display: flex;
    align-items: center;
  }
  .client-name span svg.star-icon {
    fill: #f39c12;
    margin-right: 4px;
    width: 20px;
    height: 20px;
    transition: fill 0.3s ease;
  }
  .client-name span svg.star-icon:hover {
    fill: #e67e22;
  }
  .client-name:hover {
    background-color: #f8f8f8;
  }
  .testimonial-carousel .owl-nav {
    justify-content: center;
  }
  .google-review {
    justify-content: center;
  }
}
.why-choose-us-wrapper-1 {
  position: relative;
}

.text-left h2 {
  font-size: 2.5rem;
  color: #000;
  font-weight: 700;
  text-transform: uppercase;
  background: #7e2405;
  color: #FFF;
  padding: 15px 25px;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 0px 32px;
}

.reviews-wrapper-ops .row {
  display: flex;
  justify-content: space-between;
}
.reviews-wrapper-ops .reviews-wrapper {
  padding: 20px;
}
.reviews-wrapper-ops .reviews-wrapper-ops {
  padding-top: 20px;
}

.reviews-wrapper .all-review {
  text-align: center;
  padding: 20px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.reviews-wrapper .all-review img {
  max-width: 100%;
  height: auto;
  margin-bottom: 20px;
}

.owl-carousel .testimonial-item {
  background-color: #f8f8f8;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
}
.owl-carousel .testimonial-item p {
  font-size: 1rem;
  color: #555;
}
.owl-carousel .testimonial-item .reviews-wrapper .client .client-name {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}
.owl-carousel .testimonial-item .reviews-wrapper .client .client-name svg {
  display: block;
  margin-bottom: 5px;
  float: left;
}
.owl-carousel .testimonial-item .reviews-wrapper .client .client-name h5 {
  display: block;
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
}
.owl-carousel .testimonial-item .reviews-wrapper .client .client-name span {
  display: block;
  display: flex;
  justify-content: center;
  gap: 4px;
}
.owl-carousel .testimonial-item .reviews-wrapper .client .client-name span i {
  color: #f39c12;
}
.owl-carousel .testimonial-item .google-review {
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.owl-carousel .testimonial-item .google-review a {
  text-decoration: none;
  color: #007bff;
  font-weight: 600;
}
.owl-carousel .testimonial-item .google-review a:hover {
  text-decoration: underline;
}
.owl-carousel .testimonial-item .google-review .google-reviews-mage {
  width: 30px;
  height: 30px;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (max-width: 767px) {
  .reviews-wrapper-ops .row {
    flex-direction: column;
    align-items: center;
  }
  .reviews-wrapper-ops .client-name {
    text-align: center;
  }
  .bg-blue {
    background: #66240c;
  }
  .footer_last_block {
    margin-bottom: 25px;
    padding-bottom: 25px;
  }
  .sticky-top .navbar-nav .nav-link.active:before {
    left: 9px;
    top: 10px !important;
  }
  .sticky-top .navbar-nav .nav-link:hover:before {
    left: 9px;
    top: 10px !important;
  }
  .navbar-nav .nav-link.active:before {
    left: 9px;
    top: 10px !important;
  }
  .navbar-nav .nav-link:hover:before {
    left: 9px;
    top: 10px !important;
  }
}
section.faq-why-wrapper {
  position: relative;
  z-index: 1;
}

section.faq-why-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(34, 11, 3, 0.7); /* adjust color and opacity as needed */
  z-index: -1;
}

.copyright-section a {
  text-decoration: none !important;
}/*# sourceMappingURL=style.css.map */