@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
:root {
  --brand: #e01e26;
  --bg-light-blue: #D7E9F3;
  --link-color: #1D242E;
  --heading-color: #212121;
  --dark: #101010;
  --grey: #7B7B7B;
  --border-color: rgba(112, 112, 112, 0.431);
  --br: .875rem;
  --body-text-color: #696969;
  --border-radius: .35rem;
  --white: #ffffff;
  --body-font: "Poppins", sans-serif;
}

* {
  margin: 0%;
  padding: 0%;
  box-sizing: border-box;
}
*::after, *::before {
  margin: 0%;
  padding: 0%;
}

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

body {
  background-color: #fff;
  text-rendering: optimizeLegibility;
  font-family: var(--body-font);
  font-display: swap;
  line-height: 1.65;
  color: var(--body-text-color);
  font-weight: 400;
  font-style: normal;
  font-size: 1rem;
  padding-right: 0 !important;
}

.lead-lg {
  font-size: 1.375rem;
}

.lead-sm {
  font-size: 1.125rem;
}

.fs-12 {
  font-size: 12px;
}

.fs-13 {
  font-size: 13px;
}

.fs-15 {
  font-size: 0.937rem;
}

.btn {
  font-size: 0.937rem;
}

.bg-light {
  background-color: #F8F8F8 !important;
}

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

.bg-dark {
  background-color: var(--dark) !important;
}

.bg-gradient {
  background-color: rgba(215, 233, 243, 0.24) !important;
}

.z-index {
  z-index: 99;
  position: relative;
}

.round {
  border-radius: 0.875rem;
}

.transition {
  transition: all 0.3s ease-in-out;
}

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

.text-dark {
  color: var(--dark) !important;
}

.object-cover {
  object-fit: cover;
  object-position: center center;
}

.spacing-x {
  letter-spacing: 2px;
}

.spacing-x-1 {
  letter-spacing: 1px;
}

.link {
  color: var(--brand);
  cursor: pointer;
  word-wrap: break-word;
  text-decoration: none;
}
.link:hover {
  color: var(--dark);
}

a {
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease-in-out;
  color: var(--dark);
}
a:hover {
  color: var(--brand);
}

ul {
  padding-left: 0;
  margin-bottom: 0;
}
ul li {
  list-style-type: none;
}

.btn:focus, .form-control:focus, .form-select:focus, .form-check-input:focus {
  box-shadow: none;
}

.btn {
  font-weight: 500;
  font-display: swap;
  color: var(--dark);
  font-size: 1rem;
  border-radius: var(--border-radius);
  padding: 0.75rem 1.5rem;
  justify-content: center;
  align-items: center;
  display: inline-flex;
  gap: 0.625rem;
  transition: all 0.4s ease-in-out;
}

.btn-primary {
  background-color: var(--brand);
  border-color: var(--brand);
  color: var(--white);
}
.btn-primary:hover, .btn-primary:focus, .btn-primary:active {
  background-color: var(--dark);
  border-color: var(--dark);
}

.btn-outline-primary {
  border-color: var(--brand);
  color: var(--brand);
}
.btn-outline-primary:hover, .btn-outline-primary:focus, .btn-outline-primary:active {
  background-color: var(--brand);
  border-color: var(--brand);
  color: var(--white) !important;
}

.btn-outline-white {
  border-color: var(--white);
  color: var(--white);
}
.btn-outline-white:hover, .btn-outline-white:focus, .btn-outline-white:active {
  background-color: var(--white);
  border-color: var(--white);
  color: var(--brand) !important;
}

.btn-white {
  background-color: #fff;
  border-color: #fff;
  color: var(--dark);
}
.btn-white:hover, .btn-white:focus {
  background-color: var(--brand);
  border-color: var(--brand);
  color: var(--white);
}
.btn-white:hover svg, .btn-white:focus svg {
  color: var(--white);
}

.modal-open {
  padding-right: 0 !important;
}

/*------ Disc List Style ------------*/
.disc__list li {
  padding-left: 1.25rem;
  position: relative;
}
.disc__list li::before {
  content: "";
  display: block;
  width: 9px;
  height: 9px;
  position: absolute;
  top: 0.5rem;
  left: 0%;
  background-color: var(--brand);
  border-radius: 50%;
}
.disc__list li:not(:last-child) {
  margin-bottom: 0.25rem;
}
.disc__list.lg li::before {
  width: 0.625rem;
  height: 0.625rem;
  top: 0.65rem;
}

.tooltip {
  opacity: 1;
}
.tooltip .tooltip-inner {
  padding: 0 0.5rem;
  min-height: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--dark);
  opacity: 1;
  line-height: 1.2;
}

.tooltip.show {
  opacity: 1 !important;
}

@media (max-width: 991.99px) {
  html {
    font-size: 93.75%;
  }
}
@media (max-width: 767.99px) {
  .h1 {
    font-size: 2rem;
  }
}
@media (max-width: 575.99px) {
  html {
    font-size: 87.5%;
  }
  .btn {
    font-size: 0.937rem;
  }
  .container {
    max-width: calc(100% - 20px);
  }
}
.social__links li {
  margin-bottom: 0;
}
.social__links li a {
  width: 2.25rem;
  border: 1px solid var(--white);
  height: 2.25rem;
  border-radius: 50%;
  color: var(--white);
}
.social__links li a svg {
  width: 1rem;
  height: 1rem;
}
.social__links li a svg path {
  fill: var(--white);
}
.social__links li a:hover, .social__links li a:focus {
  background-color: var(--dark);
  color: var(--white);
}

.navbar {
  z-index: 999;
}
.navbar .nav-item .nav-link {
  font-size: 1.125rem;
  color: var(--dark);
  font-weight: 500;
  transition: all 0.3s ease-in-out;
}
.navbar .nav-item.active .nav-link {
  color: var(--brand);
}
.navbar .nav-item.active .nav-link.btn-primary {
  color: var(--white);
  background-color: var(--dark);
}
.navbar .navbar-toggler {
  width: 2.5rem;
  height: 2.5rem;
  margin-left: 1rem;
}
.navbar .navbar-toggler svg {
  position: relative;
  left: 1px;
}
.navbar .navbar-toggler:focus {
  box-shadow: none;
  outline: none;
}
.navbar.fixed-top {
  position: fixed;
  background-color: var(--white) !important;
  box-shadow: 0 3px 4px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease-in-out;
  animation: mymove 1s ease-in-out;
  padding: 0.5rem 0 !important;
}
.navbar.fixed-top .navbar-brand img {
  max-height: 4rem;
  width: auto;
}

@keyframes mymove {
  0% {
    top: -100%;
  }
  100% {
    top: 0;
  }
}
@media (max-width: 991px) {
  .navbar .navbar-collapse {
    position: absolute;
    top: 100%;
    left: 0%;
    padding: 1rem;
    border-radius: 0 0 1rem 1rem;
    background-color: #fff;
    width: 100%;
    text-align: center;
  }
}
@media (max-width: 576px) {
  .navbar {
    padding: 0.625rem 0;
  }
  .navbar .navbar-brand img {
    max-height: 4rem;
    width: auto;
  }
}
.contact__wrapper .link, .contact__wrapper address {
  color: var(--white);
  opacity: 0.75;
}
.contact__wrapper .form-control, .contact__wrapper .form-select {
  color: var(--white);
  background-color: #181818;
  border-color: #2c2c2c;
}
.contact__wrapper .copyright__wrapp {
  border-top: 1px solid var(--border-color);
}

/*---------------------- Back to Top Css --------------*/
.backTop {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 3.5rem;
  min-height: auto;
  height: 3.5rem;
  z-index: 999;
  border: 2px solid var(--white);
  display: none;
}
.backTop svg {
  width: 1.875rem;
  height: 1.875rem;
}
.backTop svg path {
  fill: var(--white);
}
.backTop:hover, .backTop:focus, .backTop:active {
  background-color: var(--dark);
}
.backTop.show {
  display: flex;
}

@media (max-width: 767.99px) {
  footer .logo__main {
    max-height: 6rem;
    width: auto;
  }
  footer .logo {
    max-height: 4rem;
    width: auto;
  }
}
@media (max-width: 575.99px) {
  footer .logo__main {
    max-height: 5rem;
    width: auto;
    margin-bottom: 1rem;
  }
  footer .logo {
    max-height: 3rem;
    width: auto;
  }
}
:root {
  --plusIcon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' d='M19 11h-6V5a1 1 0 0 0-2 0v6H5a1 1 0 0 0 0 2h6v6a1 1 0 0 0 2 0v-6h6a1 1 0 0 0 0-2'/%3E%3C/svg%3E");
  --minusIcon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M13.25 7.75H2.75'/%3E%3C/svg%3E");
}

.owl-carousel .owl-item img {
  width: auto;
}
.owl-carousel .owl-item img.w-100 {
  width: 100% !important;
}

.owl-nav {
  margin-top: 1.5rem;
  text-align: center;
}
.owl-nav .owl-prev,
.owl-nav .owl-next {
  width: 3rem;
  height: 3rem;
  border-radius: 50% !important;
  margin: 0.25rem;
  background: var(--chevron-right) no-repeat center center/1.5rem !important;
  background-color: var(--white) !important;
  box-shadow: 0 2px 3px rgba(0, 110, 22, 0.2);
  border-radius: var(--border-radius);
  transition: all 0.3s ease-in-out;
}
.owl-nav .owl-prev span,
.owl-nav .owl-next span {
  display: none;
}
.owl-nav .owl-prev.disabled,
.owl-nav .owl-next.disabled {
  opacity: 0.6;
  pointer-events: none;
}
.owl-nav .owl-prev {
  background: var(--chevron-left) no-repeat center center/1.5rem !important;
  background-color: #fff !important;
}
.owl-nav .owl-prev:hover,
.owl-nav .owl-next:hover {
  background-color: #e0e0e0 !important;
}

.owl-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 1.5rem;
}
.owl-dots .owl-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin: 0 0.2rem;
  justify-content: center;
  align-items: center;
  background-color: rgba(124, 124, 124, 0.3176470588) !important;
}
.owl-dots .owl-dot.active {
  background-color: var(--brand) !important;
  width: 16px;
  border-radius: 8px;
}

.header__wrapper .carousel-item .bg__overlay {
  background-image: linear-gradient(65deg, #000000, rgba(0, 0, 0, 0.2470588235));
  opacity: 0.84;
}
.header__wrapper .carousel-item .line::after {
  content: "";
  width: 100%;
  height: 1rem;
  display: block;
  position: absolute;
  left: 0%;
  bottom: 0.5rem;
  background-color: var(--brand);
  z-index: -1;
  opacity: 0.87;
}
.header__wrapper .btn-primary:hover, .header__wrapper .btn-primary:focus, .header__wrapper .btn-primary:active {
  background-color: var(--white);
  border-color: var(--white);
  color: var(--brand);
}

@media (max-width: 991px) {
  .header__wrapper .banner {
    min-height: calc(100vh - 4rem);
  }
}
.collapse__btn::before {
  content: attr(data-show-text);
}
.collapse__btn::after {
  content: "";
  width: 1.25rem;
  height: 1.25rem;
  display: inline-block;
  background: var(--minusIcon) no-repeat center center/1.25rem;
}
.collapse__btn.collapsed::after {
  background: var(--plusIcon) no-repeat center center/1.25rem;
}
.collapse__btn.collapsed::before {
  content: attr(data-hide-text);
}

.service__card img {
  width: 100%;
  filter: grayscale(100%);
  transition: all 0.3s ease-in-out;
}
.service__card img.filter-none {
  filter: none;
}
.service__card .title {
  bottom: 2rem;
  background-color: rgba(0, 0, 0, 0.5882352941);
  transition: all 0.3s ease-in-out;
}
.service__card .hover__caption {
  background-color: rgba(230, 31, 34, 0.8549019608);
  transition: all 0.3s ease-in-out;
  transform: translateY(100%);
  overflow-y: auto;
  height: auto;
  max-height: 100%;
}
.service__card .hover__caption .icon_box svg {
  width: 1.2rem;
  height: 1.2rem;
  fill: var(--brand);
}
.service__card:hover img {
  filter: none;
}
.service__card:hover .title {
  opacity: 0;
}
.service__card:hover .hover__caption {
  transform: translateY(0%);
}

@media (max-width: 991px) {
  .service__card .title {
    opacity: 0;
  }
  .service__card > img {
    height: 200px;
    object-fit: cover;
    width: 100% !important;
  }
  .service__card .hover__caption {
    transform: translateY(0%);
    position: static !important;
  }
}
.why__choose__list .icon__box {
  width: 4rem;
  height: 4rem;
}
.why__choose__list .icon__box svg {
  width: 2.5rem;
  height: 2.5rem;
}

@media (min-width: 992px) {
  .why__choose__thumbnail {
    position: absolute;
    top: 0;
    right: 5%;
    width: calc(45% + 30vw);
    height: 100%;
  }
}
.id__call {
  position: absolute;
  top: -6rem;
  left: 0;
  width: 100%;
}

.why__choose__us .icon__box {
  width: 4rem;
  height: 4rem;
}
.why__choose__us .icon__box svg {
  width: 2.5rem;
  height: 2.5rem;
}
.why__choose__us:hover {
  border-color: var(--brand) !important;
}

.chooseCarousel .owl-stage, .serviceCarousel .owl-stage {
  display: flex;
}
.chooseCarousel .owl-stage .owl-item, .serviceCarousel .owl-stage .owl-item {
  display: flex;
  padding: 1px;
}

.border-primary {
  border-color: var(--brand) !important;
}

.data__table td {
  border: 0;
  padding: 1rem 1.5rem;
  font-size: 1.125rem;
  font-weight: 500;
}
.data__table td:first-child {
  border-right: 1px solid #e9e6e7;
}

.contact__form .form-control, .contact__form .form-select {
  height: 3.5rem;
  padding: 1rem 1.5rem;
}

.promo__wrapper .btn-primary:hover, .promo__wrapper .btn-primary:focus, .promo__wrapper .btn-primary:active {
  background-color: #fff;
  color: var(--brand);
}
.promo__wrapper .btn-primary:hover svg path, .promo__wrapper .btn-primary:focus svg path, .promo__wrapper .btn-primary:active svg path {
  fill: var(--brand);
}
.promo__wrapper .btn-white:hover svg path, .promo__wrapper .btn-white:focus svg path, .promo__wrapper .btn-white:active svg path {
  fill: var(--white);
}

.galleryItem img {
  aspect-ratio: 16/10;
  object-fit: cover;
}

.inner__list {
  padding-left: 1rem;
}
.inner__list li {
  list-style-type: disc;
}/*# sourceMappingURL=style.css.map */