@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
/*font-family: "Montserrat", sans-serif;*/
:root {
  --text-hover-orrange: #f49130;
  --heading-font: "Montserrat", sans-serif;
  --black-bg: #1a1a1a;
  --logo-red: #e6485d;
}
html,
body,
section {
  overflow-x: clip;
}
section {
  overflow: hidden;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  margin-top: 0px;
}
@keyframes kenburns {
  0% {
    transform: scale(1);
    transition: transform 20000ms linear 0s;
  }

  100% {
    transform: scale(1.4);
    transition: transform 20000ms linear 0s;
  }
}

/* Carousel Wrapper */
.kb-carousel {
  overflow: hidden;
  max-height: 650px;
}

/* Carousel Items */
.kb-carousel .carousel-item {
  transition:
    transform 0.6s ease-in-out 0s,
    opacity ease-in-out 0.6s;
}

.kb-carousel .carousel-item.active {
  transition:
    transform 0.6s ease-in-out 0s,
    opacity ease-in-out 0.6s;
}

.kb-carousel > .carousel-inner > .carousel-item > img,
.kb-carousel > .carousel-inner > .carousel-item > a > img {
  animation: kenburns 20000ms linear 0s infinite alternate;
}

.kb-carousel .carousel-item-next.carousel-item-start .carousel-caption,
.kb-carousel .carousel-item-prev.carousel-item-end .carousel-caption {
  z-index: 0;
  opacity: 0;
}

/* Carousel Captions */
.kb-caption {
  right: 7%;
  left: 7%;
  bottom: 25%;
  padding: 0;
  width: 80%;
}

.kb-caption-left {
  margin-right: auto;
}

.kb-caption-right {
  margin-left: auto;
}

.kb-caption-center {
  margin: auto;
}

.kb-caption h2,
.kb-caption h3 {
  margin-bottom: 0;
}
.kb-caption {
  display: flex;
  justify-content: center;
}
.kb-caption h2 {
  animation-delay: 1s;
  color: var((--bs-body-bg));
}

.kb-caption h3 {
  animation-delay: 1.5s;
  color: #fff;
  background: rgba(0 0 0 / 0.5);
}

@media (min-width: 768px) {
  .kb-caption {
    bottom: 37%;
    width: 40%;
  }
}

@media (min-width: 1200px) {
  .kb-caption {
    bottom: 45%;
  }
  .heading {
    font-size: 2rem;
  }
}

/* Controls */
.kb-control-prev,
.kb-control-next {
  width: 3.5rem;
  height: 3.5rem;
  margin: auto 0;
  opacity: 0;
  color: #fff;
  background: rgba(0 0 0 / 0.7);
}

.kb-carousel:hover .kb-control-prev,
.kb-carousel:hover .kb-control-next {
  opacity: 1;
}

.kb-control-prev {
  left: 1%;
}

.kb-control-next {
  right: 1%;
}

.kb-control-prev:hover,
.kb-control-prev:focus,
.kb-control-next:hover,
.kb-control-next:focus {
  color: #fff;
  background: rgba(0 0 0 / 1);
}

/* Support for dark mode */
[data-bs-theme="dark"] .carousel .carousel-control-next-icon,
[data-bs-theme="dark"] .carousel .carousel-control-prev-icon {
  filter: none;
}

.heading {
  color: var(--logo-red);
}
.header-outr {
  background: rgba(0, 0, 0, 0.5);
}
.white-heading .heading::before {
  background: var(--bs-body-bg);
}
.phone-mnu li a {
  color: var(--bs-body-bg);
}
.phone-mnu li:not(:first-child) {
  margin-inline-start: 1rem;
}
.logo {
  width: 220px;
}
@media (width >= 992px) {
  .menu li a {
    color: var(--bs-body-bg);
  }
}
.menu .nav-item .nav-link span::before {
  content: "";
  height: 2px;
  width: 100%;
  background: var(--text-hover-orrange);
  left: -100%;
  position: absolute;
  bottom: 0;
  transition: all 0.5s ease-in-out 0s;
  -webkit-transition: all 0.5s ease-in-out 0s;
  -moz-transition: all 0.5s ease-in-out 0s;
}
.menu > li:hover > a.nav-link > span::before {
  left: 0;
}
.menu > li.active > a.nav-link > span::before {
  left: 0;
}
.menu .nav-item .nav-link span {
  position: relative;
  overflow: hidden;
  display: block;
  padding-block-end: 0.4rem;
}
.menu > li:hover > a.nav-link {
  color: var(--text-hover-orrange);
}
.menu > li.active > a.nav-link {
  color: var(--text-hover-orrange);
}
.menu {
  margin-right: calc(-1 * var(--bs-navbar-nav-link-padding-x));
}

@media (min-width: 992px) {
  .menu .nav-item:not(:first-child)::before {
    content: "|";
    position: absolute;
    color: var(--bs-body-bg);
    inset-inline-start: -4px;
    inset-block-start: 6px;
  }
  .menu .nav-item:not(:first-child) {
    margin-inline-start: 4px;
  }
}
.menu .nav-item {
  position: relative;
}
.header-top {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.service-sec-outr .col-sm-3 {
  width: 20%;
}
.service-sec-outr .col-sm-3 img {
  max-width: 100%;
}

.header-outr.fixed .header-top {
  display: none;
}
.header-outr.fixed .navbar {
  background: rgba(0, 0, 0, 0.8);
}
.header-outr.fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 99;
  /* color: var(--white); */
  box-shadow: 0px 0px 10px #000;
  animation: smoothScroll 2s forwards;
  -webkit-animation: smoothScroll 2s forwards;
  -moz-animation: smoothScroll 2s forwards;
}
.overlay {
  inset: 0;
  z-index: -1;
}
.why-outr .overlay {
  background: var(--logo-red);
}
.why-icon-box {
  width: 100px;
}
.whybox-txt {
  color: var(--bs-body-bg);
}
.why-bg-img {
  z-index: -1;
}
.why-bg-img img {
  opacity: 1;
  object-fit: cover;
}
.white-heading h2 {
  color: var(--bs-body-bg);
}
.why-outr .container-fluid {
  padding-right: 20%;
}
.testimonial-slidr-outr p {
  padding-left: 50px;
  font-size: 18px;
  padding-top: 10px;
  font-style: italic;
}
.testimonial-slidr-outr .quoter-icon {
  position: absolute;
  left: 0;
  top: -10px;
  font-size: 120px;
  line-height: 1;
  color: var(--logo-red);
}
.testimonial-slidr-outr .slider2 a {
  color: var(--logo-red);
}
.testimonial-slidr-outr .slider2 a i {
  width: 96px;
  opacity: 0.1;
  height: 96px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-slidr-outr .slider2 .active.center i {
  border: 4px solid #ffffff;
  opacity: 1;
  top: -2px;
  -webkit-box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.3);
  box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.3);
}
.testimonial-slidr-outr .slider2 .owl-item {
  padding: 40px 0px;
  text-align: center;
}
.testimonial-slidr-outr .slider2 .item {
  display: inline-block;
}
.testimonial-slidr-outr .slider .item {
  text-align: center;
}
.pricing-box {
  -webkit-box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.05);
  padding: 0px 0px 20px;
  border-top: 8px solid #1a1a1a;
  border-radius: 6px;
  height: 100%;
  text-align: center;
}
.pricing-row .col-sm-3:nth-child(even) .pricing-box {
  border-top: 16px solid #84ba3f;
}
.pricing-box h4,
.service-box h5 {
  font-weight: 500;
}
.footer-top {
  background: #f28936;
}
.contact-icon {
  padding-top: 4px;
}
.footerblackbg {
  background: var(--black-bg);
}
.footer-heading {
  color: var(--bs-body-bg);
}
.footer-mnu li a {
  color: rgba(255, 255, 255, 0.5);
}
.footer-mnu li a:hover {
  color: var(--text-hover-orrange);
}
.footer-mnu li:not(:first-child) {
  margin-top: 12px;
}
.addresss-info li:not(:first-child) {
  margin-top: 12px;
}
.addresss-info li,
.addresss-info li a,
.newsletter-form p {
  color: rgba(255, 255, 255, 0.5);
}
.addresss-info li a:hover {
  color: var(--text-hover-orrange);
}
.addresss-info i {
  width: 30px;
  margin-top: 5px;
  flex: 0 0 auto;
}
.newsletter-form-outr .form-control {
  background: transparent;
  color: rgba(255, 255, 255, 0.5);
}
.newsletter-form-outr .form-control::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: rgba(255, 255, 255, 0.5);
}
.newsletter-form-outr .form-control::-moz-placeholder {
  /* Firefox 19+ */
  color: rgba(255, 255, 255, 0.5);
}
.newsletter-form-outr .form-control:-ms-input-placeholder {
  /* IE 10+ */
  color: rgba(255, 255, 255, 0.5);
}
.newsletter-form-outr .form-control:-moz-placeholder {
  /* Firefox 18- */
  color: rgba(255, 255, 255, 0.5);
}
.btn-subs {
  border: 2px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.5);
}
.btn-subs:hover {
  border-color: var(--text-hover-orrange);
  color: var(--text-hover-orrange);
}
.copyright-txt p {
  color: rgba(255, 255, 255, 0.5);
}
.footer-bottom .phone-mnu li a {
  color: rgba(255, 255, 255, 0.5);
}
.footer-bottom .phone-mnu li a:hover {
  color: var(--text-hover-orrange);
}
.footer-bottom .d-flex {
  border-top: 1px solid #262626;
}
.copyright-txt a {
  color: var(--logo-red);
}
.copyright-txt a:hover {
  color: var(--text-hover-orrange);
}
.pagebanner-outr {
  height: 400px;
}
.pagebanner-outr img {
  object-fit: cover;
  object-position: 80%;
}
.btn-submit {
  border: 1px solid var(--logo-red);
  color: var(--logo-red);
}
.btn-submit:hover {
  background: var(--text-hover-orrange);
  color: var(--bs-body-bg);
  border-color: var(--text-hover-orrange);
}
.contact-form-inr textarea {
  resize: none;
}
.contact-map-outr iframe {
  vertical-align: middle;
}
.reach-us-outr {
  background: rgba(0, 0, 0, 0.7);
  padding: 30px;
}
.contact-icon {
  width: 40px;
  margin-inline-end: 1rem;
  flex: 0 0 auto;
}
.reach-us-outr {
  color: var(--bs-body-bg);
}
.reach-us-outr a {
  color: var(--bs-body-bg);
}
.reach-us-outr a:hover {
  color: var(--logo-red);
}
.pagebanner-outr .overlay {
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}
.banner-caption-outr {
  z-index: 2;
  left: 10px !important;
  right: 10px !important;
  transform: translateX(0) !important;
  max-width: 515px;
  margin: 0 auto;
  text-align: center;
}
.text-justify {
  text-align: justify;
}
.about-desk-inr .quoter-icon {
  position: absolute;
  left: 20px;
  top: 4px;
  font-size: 120px;
  line-height: 1;
  color: #84ba3f;
}
.about-desk-inr {
  padding-inline-start: 70px;
  padding-inline-end: 15px;
  padding-block: 20px 5px;
}
.about-desk-inr p {
  font-size: 17px;
}
.about-desk-content .desk-img img {
  border-top-left-radius: 20px;
  border-bottom-right-radius: 20px;
}
.about-desk-content .desk-img {
  border-top-left-radius: 20px;
  border-bottom-right-radius: 20px;
  border: 4px solid #ffffff;
  opacity: 1;
  text-align: center;
  top: -2px;
  -webkit-box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.3);
  box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.3);
}
.about-desk-content .desk-img img {
  height: 100%;
  width: 100%;
}
.about-desk-inr {
  border: 1px solid #f28936;
  border-top-left-radius: 20px;
  border-bottom-right-radius: 20px;
}
.mission-box-outr:nth-child(even) .col-md-4 {
  order: 1;
}
.mission-bg {
  background: var(--logo-red);
}
.vision-bg {
  background: var(--text-hover-orrange);
}
.mission-box-img i {
  height: 100px;
  display: inline-block;
}
.mission-box-img {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-block: 15px;
  border-top-left-radius: 20px;
  border-bottom-right-radius: 20px;
}
.mission-box-outr:not(:first-child) {
  margin-block-start: 1.2rem;
}
.mission-box-content p {
  font-size: 17px;
}
.service-box img {
  height: 100px;
}
.service-box h5 {
  font-size: 1rem;
}
.whybox-txt h4 {
  font-size: 1.2rem;
}
.pricing-box h4 {
  font-size: 1.1rem;
}
.pricing-box img {
  height: 200px;
}
.contact-info span {
  font-size: 1.1rem;
}
.pricing-row ul li:not(:first-child) {
  margin-block-start: 1rem;
}
.pricing-row ul li i {
  color: var(--text-hover-orrange);
}
.pricing-row ul li {
  -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
  padding: 1rem;
  border-radius: 0.375rem;
  background: #eee;
}
.pricing-row ul li h5 {
  font-size: 1.1rem;
}
.pricing-row ul li:not(:first-child) {
  margin-block-start: 1.25rem;
}
.why-bg-img {
  margin-left: -102%;
  height: 620px;
}
.carousel-item img {
  max-height: 650px;
  object-fit: cover;
}
.carousel-caption h2 {
  font-size: calc(1.1rem + 0.9vw);
}
.why-content-outr h1 {
  font-size: calc(1.325rem + 0.9vw);
}
.about-sec-outr .why-bg-img {
  height: 474px;
}
.about-sec-outr .why-bg-img img {
  object-position: 80%;
  max-height: none;
}
.footer-mnu li.active a {
  color: var(--bs-body-bg);
}
.about-txt-outr h6 {
  text-transform: uppercase;
}
.discuss-contact h3 {
  color: var(--logo-red);
}
.discuss-contact:hover h3 {
  color: var(--text-hover-orrange);
}
.service-box:hover h5 {
  color: var(--text-hover-orrange);
}
.service-box:hover img {
  transform: scale(1, 1);
  transition: all 0.8s ease-in-out 0s;
  -webkit-transition: all 0.8s ease-in-out 0s;
  -moz-transition: all 0.8s ease-in-out 0s;
  -ms-transition: all 0.8s ease-in-out 0s;
  -o-transition: all 0.8s ease-in-out 0s;
}

.service-box:hover img {
  transform: scale(1.1, 1.1);
}
.desk-img img {
  height: 460px !important;
  width: auto !important;
}
.footr-whatsapp-content {
  top: 15px;
  width: 100%;
  text-align: center;
  color: var(--bs-body-bg);
  left: 18%;
}
.footr-whatsapp-content a {
  color: #00cc33;
}
.footr-whatsapp-content a:hover {
  color: var(--text-hover-orrange);
}
.footr-whatsapp-content h3 {
  font-size: calc(1.1rem + 0.6vw);
}
.testimonial-avatar h5 {
  color: var(--logo-red);
}
