@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap");

:root {
  --primary-color: #1b1b1b;
  --secondary-color: #ffffff;
  --theme-color: #F4A03E;
}

::-webkit-scrollbar-track {
  background-color: transparent;
}

::-webkit-scrollbar {
  width: 4px;
}

::-webkit-scrollbar-thumb {
  background: var(--theme-color);
  border-radius: 10px;
  margin: 2px;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

.form-control:focus {
  box-shadow: none;
}

/* a {
  text-decoration: none;
  color: inherit;
} */

/* a:hover {
  color: #707070 !important;
} */

body {
  font-family: "Poppins", sans-serif;
  transition: 0.3s all;
  background: #151414;
  overflow-x: hidden !important;
}

section {
  overflow: hidden;
}

a {
  text-decoration: none !important;
}





/* New Css */

.secPadding {
  padding: 60px 15px;
}

@media only screen and (max-width: 786px) {
  /* .col-lg-6 {
    margin-bottom: 30px;
  } */
}

@media only screen and (max-width: 600px) {
  .secPadding {
    padding: 40px 15px;
  }
}

.fa-phone,
.fa-location-dot,
.fa-envelope,
.fa-circle {
  color: #F39322;
}

.form-control {
  color: #ffffff;
  padding: 24px 14px;
  border-radius: 10px;
  border: 1px solid #1E1E21;
  background-color: transparent;
}

.form-control:focus {
  color: #ffffff;
  border: 1px solid #1E1E21;
  background-color: transparent;
}

.submitBtn {
  width: 100%;
  color: #ffffff;
  padding: 10px;
  border-radius: 10px;
  background-color: #F4A03E;
}

.submitBtn:hover {
  color: #ffffff;
  background-color: #F4A03E;
}

.submitBtn:active {
  color: #ffffff !important;
  background-color: #F4A03E !important;
}

.accordion-item {
  border: 0px;
  margin-bottom: 25px;
  background-color: transparent;
}

.accordion-button {
  font-size: 28px;
  padding: 20px 30px;
  color: #ffffff;
  background-color: #151414;
  border: 1px solid #1E1E21;
  border-radius: 50px 50px 50px 50px !important;
}

.accordion-button:not(.collapsed) {
  box-shadow: none;
  color: #ffffff !important;
  background-color: #151414 !important;
  border: 1px solid #F4A03E !important;
  border-radius: 50px 50px 50px 50px !important;
}

.accordion-button:focus {
  box-shadow: none;
}

.accordion-body {
  color: #ffffff;
}

@media only screen and (max-width: 786px) {
  .accordion-button {
    font-size: 18px;
  }
}

@media only screen and (max-width: 600px) {
  .accordion-button {
    font-size: 16px;
  }
}

.progress {
  height: 1.5rem;
  /* width: 400px; */
  /* margin-left: 20px; */
}

.progress-bar {
  background-color: #F4A03E;
}

/* .brandImg {
  width: 200px !important;
} */
















/* Header */

header {
  margin-bottom: -80px;
}

.headLogo {
  width: 170px;
}

.navbar-toggler {
  width: 50px;
  height: 50px;
  padding: 0;
  /* border-radius: 50%; */
  border: 0;
  transition: 0.3s ease-in-out;
  flex-shrink: 0;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-dark .navbar-nav .nav-link {
  color: #ffffff;
  font-size: 16px;
  font-family: 'poppins';
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
  color: #F39322;
}

.dropdown-menu {
  background-color: #242424 !important;
}

.dropdown-item {
  color: #cfcfcf !important;
}

.dropdown-item:hover {
  color: #ffffff !important;
  background-color: #323232 !important;
}

@media screen and (max-width: 991px) {
  .navbar-collapse.collapse:not(.show) {
    display: block;
  }

  .navbar-collapse {
    position: fixed;
    top: 0;
    left: 0;
    background: #151414;
    width: 82%;
    height: 100%;
    z-index: 9999;
    padding: 25px;
    transform: translateX(-815px);
    transition: 0.5s ease-in-out;
    display: block;
  }

  .navbar-collapse.show {
    transform: translateX(0px);
  }

  .nav-overlay {
    position: absolute;
    background: #0000007d;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    z-index: 2;
    transform: translateX(-100vw);
    transition: 0.5s ease-in-out;
    display: block;
  }

  .nav-overlay.active {
    transform: translateX(0);
  }

  .navbar-nav .dropdown-menu {
    background-color: #242424;
  }

  .dropdown-item {
    color: #cfcfcf;
  }

  .dropdown-item:hover,
  .dropdown-item.active {
    color: #ffffff;
    background-color: #323232;
  }
}

.themeBtn {
  background-color: #1E1E21;
  color: #ffffff;
  padding: 5px 20px;
  font-size: 16px;
  font-weight: 500;
  border-style: solid;
  border-width: 2px 2px 2px 2px;
  border-color: #F39322;
  border-radius: 45px 45px 45px 45px;
  text-decoration: none !important;
  transition: 0.3s;
}

.themeBtn:hover {
  background-color: #F39322;
  border-color: #F39322;
  color: #1E1E21;
}

.themeBtn2 {
  background-color: #F39322;
  color: #ffffff;
  padding: 5px 20px;
  font-size: 16px;
  font-weight: 500;
  border-style: solid;
  border-width: 2px 2px 2px 2px;
  border-color: #F39322;
  border-radius: 45px 45px 45px 45px;
  transition: 0.3s;
}

.themeBtn2:hover {
  background-color: #1E1E21;
  border-color: #F39322;
  color: #ffffff;
}

@media only screen and (max-width: 991px) {
  .themeBtnHeader {
    display: none;
  }
}

.themeRoundBtn {
  /* height: 100px;
  width: 100px; */
  background-color: #F39322;
  color: #ffffff !important;
  padding: 30px 15px;
  font-size: 16px;
  font-weight: 500;
  border-style: solid;
  border-width: 2px 2px 2px 2px;
  border-color: #F39322;
  border-radius: 100px 100px 100px 100px;
  cursor: pointer;
  text-decoration: none !important;
  transition: 0.3s;
}

/* Header */





/* Hero Section */

.heroSec {
  padding: 180px 15px 0px 15px
}

.subHeading {
  font-size: 16px;
  font-weight: 400;
  color: #ffffff;
  display: flex;
  align-items: center;
}

.benifitHeading {
  font-size: 18px;
  margin-bottom: 0;
  font-weight: 400;
  color: #ffffff;
}

.benifitCont {
  padding: 20px 0px;
  box-shadow: 0px 0px 5px 0px rgba(255, 255, 255, 0.5);
}

.benifitsRow {
  text-align: center;
  display: flex;
  justify-content: space-around;
}

.yellow-bar {
  width: 20px;
  height: 5px;
  background-color: #F39322;
  margin: 10px;
  border-radius: 5px;
}

.mainHeading {
  font-size: 54px;
  font-weight: 400;
  background: linear-gradient(to right, #ffffff, #808080);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.midHeading {
  font-size: 38px;
  font-weight: 400;
  background: linear-gradient(to right, #ffffff, #808080);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.secHeading {
  font-size: 82px;
  font-weight: 400;
  background: linear-gradient(to right, #ffffff, #808080);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@media only screen and (max-width: 768px) {
  .heroSec {
    padding: 140px 15px 0px 15px;
  }

  .secHeading {
    font-size: 58px !important;
  }

  .mainHeading {
    font-size: 44px;
  }

  .benifitHeading {
    font-size: 13px;
    margin-bottom: 0;
    font-weight: 400;
    color: #ffffff;
  }

  .midHeading {
    font-size: 34px;
  }
}

@media only screen and (max-width: 600px) {
  .heroSec {
    padding: 120px 15px 0px 15px;
  }

  .secHeading {
    font-size: 40px !important;
  }

  .mainHeading {
    font-size: 36px;
  }

  .subHeading {
    font-size: 12px;
  }

  .benifitsRow {
    flex-direction: column;
  }

  .benifitsRow .benifitHeading {
    margin: 5px;
  }

  .benifitCont {
    padding: 10px 0px !important;
  }

  .midHeading {
    font-size: 30px;
  }
}

.paragraph {
  color: #929292;
  /* font-family: "Inter", Sans-serif; */
  font-size: 16px;
  font-weight: 300;
}

/* Hero Section */



/* About Section */

.aboutTable td {
  color: #ffffff;
  text-align: center;
  align-items: center;
  border-color: #1E1E21;
  background-color: transparent;
}

@media only screen and (max-width: 600px) {
  .aboutTable td {
    font-size: 11px;
  }
}

/* About Section */


/* Service Section */

.serviceBox {
  padding: 35px 50px;
  border: 1px solid #1E1E21;
  border-radius: 20px;
  margin-bottom: 20px;
  transition: 0.6s !important;
}

.serviceLeft:hover {
  background-color: transparent;
  background-image: linear-gradient(120deg, #F39322 0%, #F393224D 70%);
  box-shadow: 0px 0px 5px 0px rgba(255, 255, 255, 0.5);
}

.serviceRight:hover {
  background-color: transparent;
  background-image: linear-gradient(120deg, #F393224D 25%, #F39322 100%);
  box-shadow: 0px 0px 5px 0px rgba(255, 255, 255, 0.5);
}

.serviceNames {
  font-size: 44px;
  font-weight: 400;
  color: #ffffff;
}

.serviceNames a {
  color: #ffffff !important;
  text-decoration: none !important;
}

@media only screen and (max-width: 768px) {
  .serviceNames {
    font-size: 32px;
  }

  .serviceBox {
    padding: 30px 25px;
  }
}

@media only screen and (max-width: 600px) {
  .serviceNames {
    font-size: 22px;
    margin: 0;
  }

  .serviceBox {
    padding: 20px 10px;
  }

  .circleBtnBox {
    display: none;
  }

  .circleBtnBoxOpp {
    margin-bottom: 0px;
  }
}

/* Service Section */


/* Branding Section */

.carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: white;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}

.carousel-track {
  display: flex;
  width: calc(100% * 2);
  animation: scroll 20s linear infinite;
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.carousel-item {
  flex: 0 0 auto;
  width: 16.666%;
  /* 6 items per view */
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  background: #fff;
}

.brandImg {
  width: 250px !important;
  height: 50px !important;
  object-fit: contain;
}

.carousel-item img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

@media (max-width: 1024px) {
  .carousel-item {
    width: 20%;
    /* 5 items per view */
  }
}

@media (max-width: 991px) {
  .brandImg {
    width: 180px !important;
    height: 45px !important;
    object-fit: contain;
  }
}

@media (max-width: 600px) {
  .brandImg {
    width: 140px !important;
    height: 35px !important;
    object-fit: contain;
  }
}

@media (max-width: 768px) {
  .carousel-item {
    width: 25%;
    /* 4 items per view */
  }
}

@media (max-width: 480px) {
  .carousel-item {
    width: 33.333%;
    /* 3 items per view */
  }
}

.brand-owl .owl-item {
  display: flex;
  justify-content: center;
  align-items: center;
}

.brand-owl2 .owl-item {
  display: flex;
  justify-content: center;
  align-items: center;
}

.brand-owl .owl-stage-outer {
  background-color: #1E1D1D;
  padding: 30px 0px;
  box-shadow: rgb(114 114 114 / 35%) 0px 1px 15px;
}

.brand-owl2 .owl-stage-outer {
  background-color: #1E1D1D;
  padding: 30px 0px;
  box-shadow: rgb(114 114 114 / 35%) 0px 1px 15px;
}

.brand-owl .owl-dots,
.brand-owl2 .owl-dots {
  display: none;
}

/* Branding Section */



/* Testimonial Section */

.quoteLeft {
  width: 60px !important;
}

.testiReview {
  font-size: 20px;
  font-weight: 500;
  color: #ffffff;
}

.statementReview {
  font-size: 28px;
  font-weight: 500;
  color: #ffffff;
}

.testiClientDesignation {
  font-size: 12px;
}

.testiClient {
  width: 80px !important;
  border-radius: 60px;
  border: 3px solid #f29622;
}

.stars {
  font-size: 22px;
  color: #f29622;
}

.home-demo .item {
  /* height: 320px; */
  border: 2px solid #323232;
  padding: 20px;
  border-radius: 20px;
  /* background: #ff3f4d; */
}

.home-demo h2 {
  color: #FFF;
  text-align: center;
  padding: 5rem 0;
  margin: 0;
  font-style: italic;
  font-weight: 300;
}

.owl-dots {
  margin-top: 10px;
}

.owl-theme .owl-dots .owl-dot span {
  background: #D6D6D6;
}

.owl-carousel .owl-dots .owl-dot.active span,
.owl-carousel .owl-dots .owl-dot:hover span {
  background-color: #f29622;
}

button.owl-dot.active {}

.owl-nav {
  display: none;
}

/* Testimonial Section */



/* CTA Section */

.ctaBox {
  padding: 3rem;
}

@media only screen and (max-width: 600px) {
  .ctaBox {
    padding: 1rem;
  }
}

/* CTA Section */






/* Inner Banner Section */

.aboutHeroBanner {
  background: linear-gradient(0deg, #00000070, #00000070), url(../images/aboutBanner.webp);
  /* background-image: url("../images/aboutBanner.webp"); */
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: cover;
}

.projectHeroBanner {
  background-image: url(../images/projectsBG.webp);
  /* background-image: url("../images/aboutBanner.webp"); */
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: cover;
}

.contactHeroBanner {
  background-image: url(../images/contactBg.png);
  /* background-image: url("../images/aboutBanner.webp"); */
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: cover;
}

.servicesHeroBanner {
  background-image: url(../images/serviceBg.webp);
  /* background-image: url("../images/aboutBanner.webp"); */
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: cover;
}

.logoDesignHeroBanner {
  background-image: url(../images/logoDesignBG.webp);
  /* background-image: url("../images/aboutBanner.webp"); */
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: cover;
}

.InnerBannerSec {
  padding: 250px 15px 170px 15px;
}

@media only screen and (max-width: 768px) {
  .InnerBannerSec {
    padding: 130px 15px 130px 15px;
  }

  .statementReview {
    font-size: 24px;
  }
}

@media only screen and (max-width: 600px) {
  .InnerBannerSec {
    padding: 100px 15px 100px 15px;
  }

  .statementReview {
    font-size: 18px;
  }
}

/* Inner Banner Section */



/* Our Mission Statement */

.statementBox {
  padding: 20px 20px 80px 20px;
  border: 1px solid #1E1E21;
  border-radius: 20px;
  margin-bottom: 20px;
  transition: 0.6s !important;
}

.statementBox:hover {
  background-color: transparent;
  /* background-image: linear-gradient(120deg, #F39322 0%, #F393224D 70%); */
  box-shadow: 0px 0px 5px 0px rgba(255, 255, 255, 0.5);
}

.circleQuotes {
  margin-top: -85px;
  margin-bottom: 40px;
}

@media only screen and (max-width: 768px) {
  .statementBox {
    padding: 20px 20px 40px 20px;
  }
}

@media only screen and (max-width: 600px) {
  .statementBox {
    padding: 20px 20px 20px 20px;
  }
}

/* Our Mission Statement */


/* Our Mission */

.missionCard {
  min-height: 310px !important;
  padding: 20px 20px 20px 20px;
  border: 1px solid #1E1E21;
  border-radius: 20px;
  margin-bottom: 70px;
  transition: 0.6s !important;
}

.missionCard:hover {
  background-color: transparent;
  /* background-image: linear-gradient(120deg, #F39322 0%, #F393224D 70%); */
  box-shadow: 0px 0px 5px 0px rgba(255, 255, 255, 0.5);
}

.missionStar {
  width: 80px;
  height: 80px;
  margin-top: -65px;
}

.missionTitle {
  font-size: 22px;
  color: #ffffff;
}

@media only screen and (max-width: 768px) {
  .missionCard {
    min-height: 335px !important;
  }
}

@media only screen and (max-width: 600px) {
  .missionCard {
    min-height: 250px !important;
  }
}

/* Our Mission */


/* Our Expertise */

.progressLabel {
  display: flex;
  justify-content: space-between;
}

.meter {
  box-sizing: content-box;
  height: 20px;
  /* Can be anything */
  position: relative;
  margin: 5px 0 20px 0;
  /* Just for demo spacing */
  background: #555;
  border-radius: 25px;
  /* padding: 10px; */
  box-shadow: inset 0 -1px 1px rgba(255, 255, 255, 0.3);
}

.meter>span {
  width: 100% !important;
  display: block;
  height: 100%;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
  background-color: #f29622;
  background-image: linear-gradient(center bottom,
      #f29622,
      #f29622);
  box-shadow: inset 0 2px 9px rgba(255, 255, 255, 0.3),
    inset 0 -2px 6px rgba(0, 0, 0, 0.4);
  position: relative;
  overflow: hidden;
}

.meter>span:after,
.animate>span>span {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-image: linear-gradient(-45deg,
      rgba(255, 255, 255, 0.2) 25%,
      transparent 25%,
      transparent 50%,
      rgba(255, 255, 255, 0.2) 50%,
      rgba(255, 255, 255, 0.2) 75%,
      transparent 75%,
      transparent);
  z-index: 1;
  background-size: 50px 50px;
  animation: move 2s linear infinite;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
  overflow: hidden;
}

.animate>span:after {
  display: none;
}

@keyframes move {
  0% {
    background-position: 0 0;
  }

  100% {
    background-position: 50px 50px;
  }
}

/* Our Expertise */



/* How We Work */

.newsCardOne {
  background-image: url("../images/workOne.webp");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.newsCardTwo {
  background-image: url("../images/workTwo.webp");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.newsCardThree {
  background-image: url("../images/workThree.webp");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.newsCardFour {
  background-image: url("../images/workFour.webp");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.newsCard {
  position: relative;
  border-radius: 20px;
  /* width: 500px; */
  height: 360px;
  margin-bottom: 40px;
  background-color: #fff;
  color: #fff;
  overflow: hidden;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
}

.newsCaption {
  position: absolute;
  text-align: center;
  top: auto;
  bottom: -75px;
  border-radius: 20px;
  /* opacity: .6; */
  left: 0;
  width: 100%;
  height: 90%;
  background-color: #000000a3;
  padding: 20px;
  -webkit-transform: translateY(80%);
  transform: translateY(80%);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transition: opacity 0.1s 0.3s, -webkit-transform 0.4s;
  transition: opacity 0.1s 0.3s, -webkit-transform 0.4s;
  transition: transform 0.4s, opacity 0.1s 0.3s;
  transition: transform 0.4s, opacity 0.1s 0.3s, -webkit-transform 0.4s;
}

.newsCaption-title {
  font-size: 24px;
  margin-top: 0px;
}

.newsCaption-content {
  margin: 0;
}

.newsCaption-link {
  color: #fff;
  text-decoration: underline;
  opacity: .8;
  -webkit-transition-property: opacity;
  transition-property: opacity;
  -webkit-transition-duration: 0.15s;
  transition-duration: 0.15s;
  -webkit-transition-timing-function: cubic-bezier(0.39, 0.58, 0.57, 1);
  transition-timing-function: cubic-bezier(0.39, 0.58, 0.57, 1);
}

.newsCaption-link:hover {
  /* opacity: 0.65; */
}

.news-Slide-up:hover .newsCaption {
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  top: auto;
  bottom: 0px;
  left: 0;
  height: 100%;
  padding: 40px;
  /* opacity: .6; */
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
  -webkit-transition: opacity 0.1s, -webkit-transform 0.4s;
  transition: opacity 0.1s, -webkit-transform 0.4s;
  transition: transform 0.4s, opacity 0.1s;
  transition: transform 0.4s, opacity 0.1s, -webkit-transform 0.4s;
}

@media only screen and (max-width: 768px) {
  .newsCard {
    height: 450px;
  }

  .newsCaption {
    padding: 15px !important;
  }
}

/* How We Work */



/* Buzz Stats */

.buzzCard {
  min-height: 280px !important;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px 20px 20px 20px;
  border: 1px solid #1E1E21;
  border-radius: 20px;
  margin-bottom: 30px;
  transition: 0.6s !important;
}

.buzzCard:hover {
  background-color: transparent;
  /* background-image: linear-gradient(120deg, #F39322 0%, #F393224D 70%); */
  box-shadow: 0px 0px 5px 0px rgba(255, 255, 255, 0.5);
}

.missionStar {
  width: 80px;
  height: 80px;
  margin-top: -65px;
}

.buzzCount {
  font-size: 50px;
  color: #ffffff;
}

.buzzTitle {
  font-size: 24px;
  color: #ffffff;
}

@media only screen and (max-width: 768px) {
  .buzzCard {
    min-height: 295px !important;
  }
}

@media only screen and (max-width: 600px) {
  .buzzCard {
    min-height: 265px !important;
  }
}

/* Buzz Stats */














/* Service Inner Started */


.craftCard {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 35px 35px 35px 35px;
  border: 1px solid #1E1E21;
  border-radius: 20px;
  margin-bottom: 30px;
  transition: 0.6s !important;
}

.craftCard:hover {
  background-color: transparent;
  /* background-image: linear-gradient(120deg, #F39322 0%, #F393224D 70%); */
  box-shadow: 0px 0px 5px 0px rgba(255, 255, 255, 0.5);
}

.resultImageBoxOne {
  background-image: url("../images/provenOne.webp");
  background-position: center center;
  background-size: cover;
  border-radius: 20px;
  margin-bottom: 20px;
}

.resultImageBoxTwo {
  background-image: url("../images/provenTwo.webp");
  background-position: center center;
  background-size: cover;
  border-radius: 20px;
  margin-bottom: 20px;
}

.resultImageBoxThree {
  background-image: url("../images/provenThree.webp");
  background-position: center center;
  background-size: cover;
  border-radius: 20px;
  margin-bottom: 20px;
}

.resultBoxOverlay {
  border-radius: 20px;
  transition: 0.6s;
  padding: 20px;
  height: 320px;
  display: flex;
  align-items: end;
}

.resultImageBoxOne:hover .resultBoxOverlay {
  background-color: #f294222e;
}

.resultImageBoxTwo:hover .resultBoxOverlay {
  background-color: #f294222e;
}

.resultImageBoxThree:hover .resultBoxOverlay {
  background-color: #f294222e;
}

.provenTitle {
  font-size: 24px;
  color: #ffffff;
}

@media only screen and (max-width: 768px) {
  .resultBoxOverlay {
    padding: 15px;
    height: 240px;
  }

  .provenTitle {
    font-size: 20px;
    color: #ffffff;
  }
}

@media only screen and (max-width: 600px) {
  .resultBoxOverlay {
    padding: 20px;
    height: 300px;
  }

  .provenTitle {
    font-size: 24px;
    color: #ffffff;
  }
}


/* Pricing Sec */

.pricingCard {
  padding: 40px 40px;
  border-radius: 20px;
  margin-bottom: 20px;
  border: 1px solid #1E1E21;
  transition: 0.6s !important;
}

.pricingCard:hover {
  background-color: transparent;
  /* background-image: linear-gradient(120deg, #F39322 0%, #F393224D 70%); */
  box-shadow: 0px 0px 5px 0px rgba(255, 255, 255, 0.5);
}

.pkgDetails {
  height: 150px;
  overflow: auto;
}

.pricingInnerBox {
  height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

@media only screen and (max-width: 768px) {
  .pricingInnerBox {
    height: auto;
    margin-bottom: 20px;
  }
}

@media only screen and (max-width: 600px) {
  .pricingCard {
    padding: 20px 20px;
  }
}

/* Benifit Sec */

.benifitCard {
  min-height: 220px !important;
  padding: 20px 20px 20px 20px;
  border: 1px solid #1E1E21;
  border-radius: 20px;
  margin-bottom: 30px;
  transition: 0.6s !important;
}

.benifitCard:hover {
  background-color: transparent;
  /* background-image: linear-gradient(120deg, #F39322 0%, #F393224D 70%); */
  box-shadow: 0px 0px 5px 0px rgba(255, 255, 255, 0.5);
}

.formBox {
  min-height: 220px !important;
  padding: 25px 15px 25px 15px;
  border: 1px solid #1E1E21;
  border-radius: 20px;
  margin-bottom: 30px;
  transition: 0.6s !important;
}

.formBox:hover {
  background-color: transparent;
  /* background-image: linear-gradient(120deg, #F39322 0%, #F393224D 70%); */
  box-shadow: 0px 0px 5px 0px rgba(255, 255, 255, 0.5);
}



/* Footer */

footer .container {
  padding: 40px 0px;
}

.footerLogo {
  width: 350px;
}

@media only screen and (max-width: 600px) {
  .footerLogo {
    width: 250px;
  }
}

.socialBtn {
  background-color: transparent;
  color: #ffffff !important;
  padding: 5px 10px;
  font-size: 12px;
  font-weight: 500;
  border-style: solid;
  border-width: 2px 2px 2px 2px;
  border-color: #ffffff;
  border-radius: 45px 45px 45px 45px;
  text-decoration: none !important;
  transition: 0.3s;
}

.socialBtn:hover {
  background-color: #F39322;
  border-color: #F39322;
  color: #ffffff;
}

.anchorTag {
  color: #ffffff !important;
  text-decoration: none !important;
  transition: 0.3s;
}

.anchorTag:hover {
  color: #F39322 !important;
}


/* Pre-Loader */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #151414;
  /* Background color */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 1;
  transition: opacity 0.5s ease;
}

#preloader img {
  width: 150px;
  /* Adjust the size of your GIF */
  height: auto;
}

body.loaded #preloader {
  opacity: 0;
  pointer-events: none;
}

body.loaded #preloader {
  display: none;
}