@import url('about.css');
@import url('contact.css');
@import url('feature.css');
@import url('frontheader.css');
@import url('footer.css');
@import url('gallery.css');
@import url('navbar.css');
@import url('services.css');
@import url('staff.css');
@import url('timeline.css');

:root {
  --bs-body-font-family: 'Mukta', sans-serif;
  --bs-body-font-size: 17px;
  --bs-danger: #f0683e;
  --bs-dark: #282c3d !important;
  --bs-danger-darker: #D74F25;
  --color-darker: #0f1324;
}

body {
  margin-top: 3rem;
}

h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: var(--font-header);
  font-weight: 600;
}

.bg-danger {
  background-color: var(--bs-danger-darker) !important;
}

.bg-danger-darker {
  background-color: var(--bs-danger-darker);
}

.bg-dark {
  background-color: var(--bs-dark) !important;
}

.bg-darker {
  background-color: var(--color-darker);
}

.btn-danger,
.btn-danger:hover {
  background-color: var(--bs-danger-darker) !important;
  border-color: var(--bs-danger-darker) !important;
  color: var(--bs-light) !important;
}

.btn-outline-danger {
  border-color: var(--bs-danger-darker) 
}

.btn-outline-danger:hover {
  background-color: var(--bs-danger-darker); 
}

.img-underlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.1;
}

.list-style-arrows {
  list-style: none;
  margin: 0;
  padding: 0;
}

.list-style-arrows li {
  position: relative;
  padding-left: 1rem;
}

.list-style-arrows li:before {
  position: absolute;
  left: 0;
  top: 0;
  display: inline-block;
  content: "❯";
  color: var(--bs-danger);
}

.headerunderline {
  display: block;
  backface-visibility: hidden;
  background-color: var(--bs-danger);
  height: 0.25rem;
  margin: 0.5rem auto 0.5rem auto;
  transform: skew(-22.5deg);
  width: 5rem;
}

.pagenav {
  display: flex;
  flex-direction: column;
}

.pagenav .pagenav_item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--bs-light);
  color: var(--bs-dark);
  font-weight: bold;
  margin-bottom: 2px;
  padding: 1rem;
  padding-left: 2rem;
  text-decoration: none;
  text-transform: uppercase;
  transition-duration: 250ms;
}

.pagenav .pagenav_item:hover,
.pagenav .pagenav_item.active {
  background-color: var(--bs-danger-darker);
  color: white;
}

.pagenav .pagenav_item_icon {
  display: inline-block;
  background-color: white;
  color: var(--bs-danger-darker);
  padding: 0.25rem 0.75rem 0.25rem 0.75rem;
}

.pagenav .pagenav_map_header {
  position: relative;
  background-color: var(--bs-danger);
  color: var(--bs-light);
  text-align: center;
}

.pagenav .pagenav_map_header:before {
  position: absolute;
  left: 0;
  top: -100%;
  content: '';
  width: 100%;
  height: 100%;
  background-color: var(--bs-danger);
  clip-path: polygon(0 50%, 50% 100%, 100% 50%, 100% 100%, 0% 100%);
}

.pageservices .pageservice {
  aspect-ratio: 3 / 2;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: var(--bs-light);
  padding: 2rem;
  text-align: center;
  text-transform: uppercase;
  transition-duration: 250ms;
}

.pageservices .pageservice a {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.pageservices .pageservice h4 {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
  min-height: 75px;
  text-align: center;
}

.pageservices .pageservice img {
  display: block;
  width: 50px;
  height: 50px;
  margin-bottom: 0.5rem;
}

.pageservices .pageservice:hover {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
  transform: scale(1.025);
}

@media (min-width: 992px) {
  .pageservices .pageservice {
    aspect-ratio: 1 / 1;
  }
}

@media (max-width: 567px) {
  .pricetabnav .nav-item,
  .pricetabnav .nav-link {
    width: 100% !important;
  }  
}

.simple-lightbox {
  background-color: var(--bs-dark) !important;
}

.simple-lightbox .sl-close,
.simple-lightbox .sl-counter,
.simple-lightbox .sl-next,
.simple-lightbox .sl-prev {
  color: var(--bs-light) !important;
}

.simple-lightbox .sl-close:hover,
.simple-lightbox .sl-next:hover,
.simple-lightbox .sl-prev:hover {
  color: var(--bs-danger) !important;
}

.step {
  position: relative;
  padding: 3rem 1rem 3rem 1rem;
  width: 100%;
}

.step h4 {
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.step-1 {
  background-color: #f9ddbf;
}

.step-2 {
  background-color: #fdc385;
}

.step-3 {
  background-color: #fea846;
}

.step-4 {
  background-color: #ff8b01;
}

.step_counter {
  position: absolute;
  left: 1rem;
  top: -30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--bs-danger);
  color: var(--bs-light);
  clip-path: polygon(0 25%, 50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%);
  font-size: 2rem;
  font-weight: bold;
  width: 60px;
  height: 60px;
}

@media (min-width: 576px) {
  .step {
    aspect-ratio: 1/1;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .step {
    padding: 3rem;
  }

  .step_counter {
    left: 3rem
  }
}

@media (min-width: 1200px) {
  .step {
    padding: 3rem;
  }

  .step_counter {
    left: 3rem
  }
}

.pageheader {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--bs-danger);
  color: var(--bs-light);
  min-height: 150px;
  padding-top: 1rem;
}

.pageheader .container {
  position: relative;
  z-index: 1;
}

.pageheader img {
  position: absolute;
  left: 0;
  top: 0;
  object-fit: cover;
  opacity: 0.1;
  width: 100%;
  height: 100%;
}

.swiper-gallery .swiper-button-next,
.swiper-gallery .swiper-button-prev {
  background-color: var(--bs-danger);
  color: white;
  width: 50px;
  height: 60px;
  transform: translateY(-25%);
}

.text-danger {
  color: var(--bs-danger) !important;
}

.text-hover-danger:hover {
  color: var(--bs-danger) !important;
}

.text-hover-white:hover {
  color: white !important;
}

.container {
  max-width: 100%;
}

@media (max-width: 639px) {
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }  
}

@media (min-width: 640px) {
  .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }  
}

@media (min-width: 568px) {
  .swiper-gallery .swiper-button-next,
  .swiper-gallery .swiper-button-prev {
    width: 60px;
  }
}

@media (min-width: 768px) {
  .container {
    padding-left: 3rem;
    padding-right: 3rem;
  }

  .pageheader {
    min-height: 300px;
  }
}

@media (min-width: 992px) {
  .pageheader {
    padding-top: 3rem;
  }

  .w-lg-50 {
    width: 50%;
    max-width: 50%;
  }
}

@media (min-width: 1400px) {
  .container {
    padding-left: 6rem;
    padding-right: 6rem;
  }
}

@media (min-width: 1600px) {
  .container {
    max-width: 1200px;
    padding: 0;
  }
}
