/* Colors */
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&display=swap");

body {
  font-family: "Roboto", sans-serif;
  font-size: 0.875rem;
  margin: 0;
  padding: 0;
  line-height: 150%;
  background-color: #ffffff;
  color: #000000;
}

h2 {
  font-size: 30px;
  text-shadow: 1px 1px 3px #000000;
  font-weight: 800;
  margin: 0;
  margin-bottom: 20px;
  color: #fb6b6b;
  text-transform: uppercase;
  text-align: left;
}

h2::after {
  content: "";
  display: block;
  width: 50px;
  height: 6px;
  background-color: #fb6b6b;
}

h4 {
  font-weight: 700;
  margin-bottom: 0px !important;
  font-size: 18px;
}

h4:first-letter{
  font-size:25px;
  text-shadow: 1px 1px 3px #000;
  color:#fb6b6b;
  margin-right:2px
}
h5 {
  font-size: 20px;
  font-weight: 900;
  margin: 0;
  margin-bottom: 20px;
  color: #999999;
  text-transform: uppercase;
  margin-top: 20px;
  margin-bottom: 20px;
}

/* p{
  text-align: justify;
} */

.button {
  background-color: #fb6b6b;
  color: #652222 !important;
  border: 0px;
  padding: 10px 20px;
  margin: 0 2px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: 0.25s;
}

.button:hover{
  background-color: #8c2a2a;
  color: #ff8686 !important;
}

.header {
  position: fixed;
  z-index: 1000;
  width: 100%;
  background: #652222;
  transition: all ease-out 0.5s;
  /* background-color: #ffffff; */
}

.headeractive {
  box-shadow: 0 0 15px #000;
}

.navbar {
  color: #ffffff;
  display: flex;
  flex-wrap: wrap;
  height: auto;
}

@media (min-width: 767px) and (max-width: 1024px) {
  .navbar h4 {
    width: 100%;
    text-align: center;
  }
}


.navbar .navbar-brand {
  font-size: 1.125rem;
  color: #ffffff;
}

.navbar-brand img {
  height: 100px;
}

.navbar .nav-link {
  font-size: 1rem;
  color: #ffffff;
  font-weight: 500;
}

.navbar .nav-link:hover {
  -webkit-text-decoration: #e14949;
  text-decoration: #e14949;
}

.navbar .callbtn {
  background-color: #e14949;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 500;
  border: 0px;
  padding: 0.5rem 1.125rem;
  border-radius: 50px;
}

.navbar a.callus {
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  color: #e14949;
  border-bottom: 2px dotted #e14949;
  padding: 0.5rem 0rem;
}

.navbar-toggler-icon {
  filter: brightness(10);
}

.navbar-collapse {
  padding: 15px 20px !important;
  background: #652222 !important;
}

.hero {
  --default-color: #ffffff;
  --default-color-rgb: 255, 255, 255;
  --background-color: #000000;
  --background-color-rgb: 0, 0, 0;
  width: 100%;
  min-height: 100vh;
  position: relative;
  padding: 60px 0 30px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 6px -6px rgba(0, 0, 0, 0.8);
}

.hero:before {
  content: "";
  background: rgb(0 0 0 / 69%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.hero img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 3;
}

.hero .bg-section {
  padding: 20px;
}

.hero h2 {
  font-size: 26px;
}

.hero p {
  color: #ffffff;
  margin: 5px 0 0 0;
  font-size: 16px;
}

.hero a {
  color: #ffffff;
  font-weight: 900;
}

.hero .slogan {
  font-size: 20px;
  line-height: 1.4;
}

.hero .slogan span {
  font-size: 22px;
  color: #fb6b6b;
}

.banner-section {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #652222;
  padding: 20px 0px;
}

.banner {
  width: 90%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.banner span {
  font-size: 22px;
  font-weight: 700;
  text-align: center;
  color: #fff;
}

.about-section p {
  text-align: justify;
}

 .img-box {
  /* padding: 6px; */
  box-shadow: 1px 1px 5px #000;
  border-radius: 15px;
  transition: all 0.3s ease-out 0s;
  /* background-color: #ffffff; */
  border: 10px solid #fb6b6b;
  overflow: hidden;
  z-index: 1;
  transition: 0.2s;
}

 .img-box img {
  width: 100%;
  /* height: 300px; */
  object-fit: cover;
  transition: 0.2s;
}

.img-box img:hover {
  scale: 1.2;
  z-index: 0;
}


.feature-section {
  padding: 40px 0px;
}

.feature-section .list-item {
  margin: 0;
  padding: 0;
  list-style: none;
}

.feature-section .list-item li {
  margin: 10px 0;
  padding: 0;
  display: block;
  list-style: none;
  text-align: justify;
}

.feature-section .list-item li i {
  margin-right: 5px;
}

.feature-section .image-stack {
  display: grid;
  position: relative;
  grid-template-columns: repeat(15, 1fr);
}

.feature-section .image-stack .stack-front {
  grid-row: 1;
  grid-column: 1/8;
  margin-top: 20%;
  width: 100%;
  z-index: 2;
}

.feature-section .image-stack .stack-back {
  grid-column: 4/-1;
  grid-row: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.feature-section .image-stack img {
  border: 6px solid #ffffff;
  box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
}





.service-section {
  padding: 40px 0px;
  background-color: #290000;
  /* background-image: url("https://www.transparenttextures.com/patterns/ravenna.png"); */
  background-image: url("/img/services-bg.png");
/* This is mostly intended for prototyping; please download the pattern and re-host for production environments. Thank you! */
}

.service-section .row:last-of-type {
  justify-content: center;
  align-items: center;
  align-content: center;
}

.services-sub-title{
  color: #ffffff;
  font-size: 17px;
}

.service-section .icon-box {
  border: 1px solid #ebebeb;
  padding: 20px;
  background: #ffffff;
  text-align: center;
  border-radius: 15px;
  width: 100%;
  transition: all 0.3s ease-in-out;
}

.service-section .icon-box .icon {
  color: #e14949;
  display: block;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

.service-section .icon-box .icon img {
  width: 95%;
  height: auto;
  object-fit: cover;
  object-position: center center;
  border-radius: 15px;
}

/* .service-section .icon-box .icon i {
  color: #fb6b6b;
  font-size: 40px;
} */

.service-section .icon-box:hover {
  border-color: #fff;
  box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
  transform: translateY(-10px);
}

.service-section .icon-box h4 {
  margin-bottom: 10px !important;
}

.gallery-section {
  padding: 40px 0px;
  background-color: #290000;
  background-image: url("https://www.transparenttextures.com/patterns/ravenna.png");
/* This is mostly intended for prototyping; please download the pattern and re-host for production environments. Thank you! */
}

.gallery-section img {
  height: 219px;
  width: 100%;
  border: 4px solid #fb6b6b;
  filter: drop-shadow(3px 3px 10px black);
  object-fit: cover;
  border-radius: 15px;
  position: relative;
  object-position: center;
  transition: .5s;
  z-index: 1 !important;
}

.gallery-section img:hover {
  overflow: visible;
  scale: 1.2;
  border:none;
  box-shadow:none;
  z-index:3 !important;
}

@media (max-width:600px) {
  .gallery-section img:hover {
    box-shadow: 0 0 5px 5px #000000;
    position: relative;
    left: 50%;
    right: unset;
  }

  .gallery-section img.right:hover {
    left: unset;
    right: 50%;
  }
}

.testimonial-section {
  text-align: center;
  padding: 40px 0px;
}

.testimonial-section p {
  text-align: justify;
}

.testimonial-section h6 {
  font-size: 18px;
  font-weight: 900;
  margin: 0;
  margin-bottom: 20px;
  color: #000000;
  text-transform: uppercase;
  font-weight: 500;
  text-transform: capitalize;
  margin-bottom: 0;
}

.testimonial-section .carousel-control-prev-icon {
  background-image: none;
  color: #000000;
}

.testimonial-section .carousel-control-next-icon {
  background-image: none;
  color: #000000;
}

.testimonial-section .carousel-control-next {
  position: inherit;
  top: 0;
  bottom: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto;
  padding: 0;
  color: #fff;
  text-align: center;
  background: 0 0;
  border: 0;
  opacity: 0.5;
  transition: opacity 0.15s ease;
}

.testimonial-section .carousel-control-prev {
  position: inherit;
  top: 0;
  bottom: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto;
  padding: 0;
  color: #fff;
  text-align: center;
  background: 0 0;
  border: 0;
  opacity: 0.5;
  transition: opacity 0.15s ease;
}

.footer {
  background-color: #652222;
  color: #ffffff;
  text-align: center;
  padding: 40px 0px;
}

.footer p {
  padding: 0 !important;
  margin: 0 !important;
}

.footer .social-icons {
  margin: 0;
  padding: 0;
  text-align: center;
}

.footer .social-icons li {
  margin: 0 0.5rem;
  padding: 0;
  list-style: none;
  display: inline-block;
}

.footer .social-icons li a {
  color: #ffffff;
  font-size: 1.5rem;
}

@media (max-width: 768px) {
  .slider-section .carousel .carousel-inner .carousel-item .carousel-caption h2 {
    font-size: 30px;
    font-weight: 900;
    margin: 0;
    margin-bottom: 20px;
    color: #ffffff;
    text-transform: uppercase;
  }

  .slider-section .carousel .carousel-inner .carousel-item img {
    width: 100%;
  }
}

@media (max-width: 580px) {
  .slider-section .carousel .carousel-inner .carousel-item .carousel-caption {
    display: none;
  }
}

.contact-phrase{
  margin-top: 50px;
  
}

.contact-phrase a{
  color:#652222;
}

.email-form {
    background-color: #652222;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    width: 100%;
    margin: auto;
    margin-top: 30px;
}

.email-form h3 {
    text-align: center;
    color: #ffffff;
    margin-bottom: 20px;
}

.contact-form .form-row {
    margin-bottom: 15px;
}

.contact-form input[type="text"],
.contact-form input[type="tel"],
.contact-form input[type="email"],
.contact-form input[type="message"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
}

.contact-form input[type="text"]:focus,
.contact-form input[type="tel"]:focus,
.contact-form input[type="email"]:focus
.contact-form input[type="message"]:focus {
    outline: none;
    border-color: #47b2e4;
}

.contact-form .submit-button {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 4px;
    background-color: #fb6b6b;
    color: white;
    cursor: pointer;
    transition: background-color 0.3s;
}

.contact-form .submit-button:hover {
    background-color: #8c2a2a;
    color: #ff8686;
}


#callnowbutton {
  display: none;
}

@media screen and (max-width: 650px) {
  #callnowbutton {
      position: fixed;
      right: 10px;
      padding: 10px 20px;
      z-index: 9999;
      cursor: pointer;
      bottom: 10px;
      display: inline-block;
      background-color: #81d742;
      color: #fff;
      border-radius: 4px;
      text-decoration: none;
      border: none;
      transition: .3s;
      -webkit-transition: .3s;
      -moz-transition: .3s;
      -o-transition: .3s;
      -ms-transition: .3s;
  }

  #callnowbutton a img {
      height: 2em;
  }
}

.navbar .container {
  display: flex;
  flex-direction: row;
}

@media (min-width: 768px) {
    .navbar .container {
    flex-direction: column;
  }
  .hero {
    padding: 180px 0 80px 0;
  }
  .hero h2 {
    font-size: 30px;
  }
  .banner {
    gap: 30px;
  }
  .banner span {
    font-size: 26px;
  }
}
@media (min-width: 1200px) {
    .navbar .container {
    flex-direction: row;
  }
  .banner-section {
    padding: 25px 0px;
  }
  .banner span {
    font-size: 28px;
  }
}