/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Raleway', 'Poppins', sans-serif;
    scroll-behavior: smooth;
}

body {
    line-height: 1.6;
    color: #555555;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* Header Styles */
.header {
    z-index: 1;
    position: relative;
    webkit-transition: all 0.4s ease-In-out;
    -moz-transition: all 0.4s ease-In-out;
    -o-transition: all 0.4s ease-In-out;
    transition: all 0.4s ease-In-out;
}
.header .container{
    /*max-width: 1280px;*/
    padding: 10px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.header.sticky {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    box-shadow: 0px 2px 5px 0px rgb(57 75 174 / 6%);
    background-color: #fff;
    z-index: 999;
    padding: 10px 0;
}
header.sticky .logo-dark {
    display: block !important;
}
header.sticky .logo-white {
    display: none !important;
}
.header .logo-dark {
    display: none;
}

.logo img {
    max-width: 200px;
}

.header .menu {
    font-size: 0px;
    display: inline-block;
    vertical-align: middle;
    margin: 0;
}
.header .menu li {
    display: inline-block;
    vertical-align: middle;
    margin-right: 24px;
}
.header .menu li.chat{
    margin:0;
}
.header .menu li a {
    font-size: 17px;
    color: #fff;
    font-weight: 500;
    text-decoration: none;
    font-family: 'Raleway', sans-serif;
}
.header .menu li a:hover {
    color: #dc6910 !important;
}
.header .drop-menu-li .drop-menu {
    position: absolute;
    bottom: -23px;
    background: #fff;
    padding: 30px;
    transform: translateY(100%);
    visibility: hidden;
    opacity: 0;
    box-shadow: 0 2px 28px 0 rgba(0, 0, 0, .09);
    transition: all .5s;
    width: 900px;
    left: 30%;
    transform: translate(-50%, 100%);
    border-radius: 5px;
}
.header .drop-menu-li:hover .drop-menu {
    visibility: visible;
    opacity: 1;
}
.header .drop-menu .col-lg-6 {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 20px;
    flex-wrap: wrap;
    align-items: flex-start;
}
.header .drop-menu .col-lg-6 .inner-menu {
    width: 100%;
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}
.header .drop-menu .col-lg-6 .menu-img {
    padding-right: 15px;
}
.header .drop-menu .col-lg-6 .menu-img img {
    border-radius: 50%;
    width: 70px;
    height: auto;
    object-fit: cover;
}
.header .drop-menu .col-lg-6 .menu-text {
    text-align: left;
}
.header .drop-menu .col-lg-6 .menu-text a {
    text-transform: capitalize;
    font-size: 16px;
    line-height: 2;
    color: #000 !important;
}
.header .drop-menu .col-lg-6 .menu-text a:hover {
    color: #dc6910 !important;
}
    
.header .drop-menu .col-lg-6 .menu-text p {
    font-size: 13px;
    text-transform: capitalize;
    line-height: 1.5;
    margin: 0;
}
.header .menu li.phone .cred-btn {
    background-color: #fff;
    color: #000 !important;
    border-color: #fff;
}
.header .menu li.phone .cred-btn:hover {
    background-color: #dc6910;
    color: #fff !important;
    border-color: #dc6910;
}
.header.sticky li a:not(.btn-theme) {
    color: #000 !important;
    text-decoration: none;
    border: none;
}
.cred-btn {
    color: #fff;
    display: inline-block;
    font-weight: 600;
    color: #191300;
    font-size: 16px;
    border-radius: 0;
    text-decoration: none;
    background-color: #dc6910;
    padding: 10px 30px;
    transition: all .3s ease-in-out;
    text-transform: capitalize;
    border: none;
    text-decoration: none !important;
    border: 1px solid #dc6910;
}
.cred-btn:hover {
    background-color: #000;
    color: #fff;
    border-color: #000;
}
.header .menu-Bar {
    width: 30px;
    height: 20px;
    cursor: pointer;
    position: absolute;
    right: 15px;
    top: 0;
    bottom: 0px;
    margin: auto;
    z-index: 22;
    display: none;
}
.header .menu-Bar span {
    display: block;
    height: 3px;
    width: 100%;
    background: #dc6910;
    position: absolute;
    transition: .6s all;
    border-radius: 100px;
}
.header .menu-Bar span:nth-child(1) {
    top: 0;
}
.header .menu-Bar span:nth-child(2) {
    top: 6.35px;
    transform-origin: left;
}
.header .menu-Bar span:nth-child(3) {
    top: 13px;
}
.menu-Bar.open span:nth-child(1) {
    transform: rotate(45deg);
    top: 12px;
    transform-origin: right-center;
    background:#fff;
}
.menu-Bar.open span:nth-child(2) {
    width: 0;
    opacity: 0;
    background:#fff;
}
.menu-Bar.open span:nth-child(3) {
    transform: rotate(-45deg);
    top: 12px;
    transform-origin: right-center;
    background:#fff;
}
@media (min-width: 320px) and (max-width: 767px) {
    .header .menu-Bar {
        display: block;
        top: 10px;
    }
    .header .navbar {
        position: fixed;
        left: -210%;
        right: 0;
        top: 0;
        bottom: 0;
        margin: auto;
        background: #dc6910;
        height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-flow: column;
        transition: all 0.4s ease;
        z-index: 3;
        width: 100vw;
    }
    .header .navbar.open{
        display:flex;
        left:0;
        margin:0;
    }
    .header .menu {
        text-align: center;
        width: 80%;
        font-size: 0px;
        display: inline-block;
        vertical-align: middle;
        margin: 0;
        padding: 0;
    }
    
    .header .menu li {
        width: 100%;
        display: block;
        margin: 0px;
        padding: 0;
        white-space: nowrap;
    }
    
    .header .menu li a {
        color: #fff !important;
        font-size: 17px;
        padding: 12px;
        text-transform: capitalize;
        border-bottom: 1px dashed #ffffff29 !important;
        text-decoration: none !important;
        display: block;
        font-weight: normal;
    }
    .header.sticky li a{
        color:#fff !important;
    }
    .header.sticky .menu-Bar {
        top: 15px;
        right: 28px;
    }
    .header .menu li.phone .cred-btn{
        background-color: transparent;
        color: #fff !important;
        border-color: unset;
        border: none;
    }
}


/* Hero Section */
.hero-section {
    background: url('./img/pro-bg.webp') no-repeat center center/cover;
    position: relative;
    padding: 150px 0 100px 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    text-align: left;
    overflow: hidden;
    margin-top: -85px;
}
.hero-section .container{
  position:relative;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}
h2.sec-head {
    font-size: 50px;
    color: #3e4555;
    font-weight: 500;
}
h2.sec-head span {
    color: #dc6910;
    font-weight: 700;
}
.sec-para {
    font-size: 18px;
    color: #6a6a6a;
    font-weight: 400;
    width: 500px;
    margin: auto;
}
.sec-para.one{
  width:650px;
}
.mb-30{
    margin-bottom: 30px;
}
/* .hero-section .container{
    max-width: 1440px;
} */

.hero-content {
    z-index: 2;
    animation: fadeInUp 1s ease-out;
}
.hero-content .first-row{
    align-items: center;
}
.hero-content .first-row .col-md-5.col-sm-12 {
  background-color: #fff;
  padding: 30px;
  color: #000;
  border-radius: 5px;
  /*height: 465px;*/
}
.hero-content .first-row h3{
  font-size: 25px;
  margin-bottom: 20px;
}
.hero-content h1 {
    font-size: 55px;
    /* margin-bottom: 20px; */
    text-transform: uppercase; 
    letter-spacing: 2px;
    animation: slideInFromLeft 1.5s ease-out;
}
.hero-content h1 span{
    background: linear-gradient(to right, #dc6910, #f8a21b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 135px;
    position: absolute;
    right: 30px;
    top: 45px;
}
.hero-content p {
    font-size: 1.2em;
    margin-bottom: 20px;
}
.hero-content ul.banner-list {
    display: flex;
    flex-wrap: wrap;
    list-style-type: disc;
    padding-left: 15px;
}
.hero-content ul.banner-list li {
    color: #fff;
    font-size: 15px;
    line-height: 30px;
    font-weight: 500;
    padding-left: 10px;
    width: 50%;
}
.hero-content ul.banner-list li::marker {
    content: "\f00c";
    display: inline-block;
    font: normal normal normal 14px / 1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    margin-right: 25px;
    padding-right: 20px;
    color: #dc6910;
}

.cta-button {
    background: #dc6910;
    color: #ffffff;
    padding: 12px 25px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    transition: background 0.3s ease;
    box-shadow: 0 5px 15px rgba(220, 105, 16, 0.4);
}

.cta-button:hover {
    background: #000000;
    transform: translateY(-3px);
}
.banner-questionnaire-box {
    text-align: right;
    display: none;
}
.banner-questionnaire-box.active{
  display: block;
}
.banner-questionnaire-box .banner-questionnaire-input-area {
    margin-bottom: 10px;
    position: relative;
}

.banner-questionnaire-box .banner-questionnaire-input {
    display: none;
}

.banner-questionnaire-box label {
    background-color: #dc6910;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    width: 90%;
    margin: 0;
    text-align: center;
    color: #fff;
}
.fifty-per-boxes.active label {
  width: 80%;
}

.banner-questionnaire-box label:before {
    content: '';
    position: absolute;
    left: 0px;
    top: 0;
    width: 44px;
    height: 44px;
    border-radius: 5px;
}

.banner-questionnaire-box label:after {
    content: '';
    opacity: 0;
    position: absolute;
    left: 10px;
    top: 10px;
    width: 25px;
    height: 25px;
    background: #dc6910;
    transition: all .3s;
    border-radius: 5px;
}

.fifty-per-boxes label:before {
  left: 0;
}

.fifty-per-boxes label:after {
  left: 10px;
}

.banner-questionnaire-box label:before {
    border: 2px solid #dc6910;
}

.banner-questionnaire-box .banner-questionnaire-input:checked + label.banner-questionnaire-label:after {
    opacity: 1;
}
.change-back-to-btn{
  cursor: pointer;
}
.fifty-per-boxes.active{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.banner-questionnaire-box.showing-box {
  transform: translate(0, 0);
  position: relative;
}
.fifty-per-boxes.active .banner-questionnaire-input-area {
  width: calc(50% - 7px);
  float: left;
}
.fifty-per-boxes.active .banner-questionnaire-input-area.full-width {
  width: 100%;
}
.fifty-per-boxes.active.banner-questionnaire-label, .fifty-per-boxes.active .banner-questionnaire-text-input {
  cursor: pointer;
  margin: 0;
  width: 100%;
  color: #000;
  padding: 10px 15px;
  line-height: 30px;
  font-size: 16px;
  /* background: transparent; */
}
.fifty-per-boxes.active .banner-questionnaire-input-area.full-width .cta-button{
  width: 100%;
}

/* # Portfolio Section */
.portfolio{
  padding: 100px 0;
  background-color: #333;
}
.portfolio .portfolio-info h2 {
    color:#fff;
}

.portfolio .portfolio-info p {
  font-size: 15px;
}

.portfolio .container{
  max-width: 100%;
}
.portfolio .nav-tabs {
    justify-content: center;
    border: 0;
    padding-bottom: 30px;
}

.portfolio .nav-tabs li a {
    border: none !important;
    color: #fff;
    padding: 10px 30px;
    font-size: 16px;
    position: relative;
    transition: all .3s;
    font-weight: 400;
    border-radius: 4px;
    margin: 0 5px;
    text-transform: uppercase;
    border-radius: 5px !important;
}

.portfolio .nav-tabs li a.active {
    color: #fff !important;
    background: -webkit-linear-gradient(legacy-direction(to right), #dc6910 0%, #f8a21b 100%);
    background: -webkit-gradient(linear, left top, right top, from(#dc6910), to(#f8a21b));
    background: -webkit-linear-gradient(left, #dc6910 0%, #f8a21b 100%);
    background: -o-linear-gradient(left, #dc6910 0%, #f8a21b 100%);
    background: linear-gradient(to right, #dc6910 0%, #f8a21b 100%);
    background: linear-gradient(to right, #dc6910 0%, #f8a21b 100%);
}
.portfolio-box {
  display: block;
  position: relative;
  overflow: hidden;
}
.portfolio-box img:first-child {
    width: 100%;
    height: 400px;
    border-radius: 5px;
    object-fit: cover;
}

.portfolio-box:hover img:last-child {
  top: 50%;
  transform: translate(-50%, -50%) scale(1);
}
.portfolio-box img:last-child {
  position: absolute;
  left: 50%;
  top: 112%;
  transform: translate(-50%, -50%) scale(.1);
  pointer-events: none;
  transition: all .3s ease-in-out .1s;
  width: 104px;
  height: 104px;
  z-index: 1;
}
.portfolio-box:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, .7);
  transform: scale(0);
  transition: all .3s ease-in-out;
  transform-origin: center;
  clip-path: polygon(0% 0%, 100% 100%, 0% 100%);
  border-radius: 5px;
  border: none;
}
.portfolio-box:hover:before {
  transform: scaleX(1);
}
.portfolio-box::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: #dc691080;
  transition: all .3s ease-in-out;
  transform: scale(0);
  transform-origin: center;
  border-radius: 5px;
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%);
  border: none;
}
.portfolio-box:hover:after {
  transform: scaleX(1);
}

/* Testimonials Section */
.testimonial9 {
    font-family: "Poppins", sans-serif;
    color: #8d97ad;
    font-weight: 300;
    padding: 100px 0;
  }
  
  .testimonial9 h1, .testimonial9 h2, .testimonial9 h3, .testimonial9 h4, .testimonial9 h5, .testimonial9 h6 {
    color: #3e4555;
  }
  
  .testimonial9 .bg-light {
      background-color: #f4f8fa !important;
  }
  
  .testimonial9 h5 {
      line-height: 30px;
      font-size: 18px;
  }
  
  .testimonial9 .font-13 {
      font-size: 13px;
  }
  
  .testimonial9 .card.card-shadow {
      -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
      box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  }
  
  .testimonial9 .card::after {
    position: absolute;
    bottom: -15px;
    left: 35px;
    content: '';
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 15px solid #ffffff;
  }
  
  .testimonial9 .owl-theme .owl-dots .owl-dot.active span,
  .testimonial9 .owl-theme .owl-dots .owl-dot:hover span {
    background: #dc6910;
  }
  
  .testimonial9 .owl-dots {
    position: absolute;
    left: -75%;
    top: 80%;
  }
  
  .testimonial9 .devider {
    height: 2px;
    width: 40px;
  }
  
  .testimonial9 .bg-info {
      background-color: #dc6910 !important;
  }
  .testimonial9 .customer-thumb {
        margin-right: 20px;
    }
  
  .testimonial9 .customer-thumb img {
    width: 60px;
  }
  
  @media (max-width: 767px) {
    .testimonial9 .owl-dots {
      position: relative;
      top: 0px;
      left: 0px;
    }
    .hero-section{
        height: auto;
        padding: 100px 15px 80px 15px;
    }
    /*.hero-content ul.banner-list{*/
    /*    padding:0 !important;*/
    /*}*/
    .hero-content ul.banner-list li{
        width:100%;
    }
    .hero-content h1{
        font-size:35px;
    }
    .hero-content .first-row .col-md-5.col-sm-12{
        margin-top: 30px;
    }
    .hero-content h2{
        font-size:30px;
    }
    .portfolio{
        padding:50px 0;
    }
    h2.sec-head{
        font-size:30px;
    }
    .fifty-per-boxes.active{
        display:block;
    }
    .banner-questionnaire-box label, .fifty-per-boxes.active label{
        width:80%;
    }
    .fifty-per-boxes.active .banner-questionnaire-input-area {
        width: auto;
        float: none;
    }
    .sec-para.one, .sec-para{
        width: auto;
    }
    .call-to-action img{
        width:390px;
        margin-top:30px !important;
    }
    p{
        font-size:16px;
    }
    .package-inner-container .nav.nav-tabs{
        display:block;
    }
    .package-inner-container .nav.nav-tabs:before {
        content: '\f078';
        position: absolute;
        right: 23px;
        top: 20px;
        font-size: 20px;
        color: #000;
        font-family: 'FontAwesome';
    }
    .package-inner-container .nav.nav-tabs.open:before {
        content: '\f077';
    }
    .package-inner-container li.nav-item{
        max-width: 100% !important;
        flex: 0 0 100% !important;
        display: none;
        cursor: pointer;
        text-align:left !important;
    }
    .package-inner-container li.nav-item > a{
        padding:20px !important;
    }
    .package-inner-container li.nav-item:first-child {
        display: block;
        border-top: 0px;
    }
    
    .package-inner-container .nav.nav-tabs {
        position: relative;
        width: 100%;
        margin-bottom: 30px;
    }
    
    .package-inner-container li.nav-item:hover {
        background-color: #ddd;
    }
    
    .package-inner-container li.nav-item:first-child:hover {
        background-color: transparent;
    }
    .pricing3 .nav-pills{
        display:block !important;
    }
    .pricing3 .btn-md{
        position:relative !important;
    }
    .pricing3 .display-5{
        position:relative !important;
        right: 0 !important;
        top: 0 !important;    
    }
    .package-inner-container .nav.nav-tabs.open li {
        display: block;
    }
    .pricing3 .tab-content .bg-image .quote-box{
        padding:200px 40px !important;
    }
    .portfolio .nav-tabs{
        display: block;
        text-align: center;
        padding: 0 15px 30px 15px;
    }
    .testimonial9, .services.section, .call-to-action, .faqs{
        padding:50px 0 !important;
    }
    .combo-sec{
        padding:50px 0 !important;
    }
    .combo-sec .contct-inf{
        display: block !important;
        text-align: center;
        margin-bottom: 30px;
    }
    .combo-sec .inner-chevr{
        display:block !important;
    }
    .combo-sec .inner-chevr h3{
        width:100% !important;
    }
    .combo-sec .pricee-cher{
        width:100% !important;
    }
    .call-to-action h2{
        font-size:40px;
    }
    .contact-form{
        padding:50px 15px !important;
    }
    .contact-form .contact-detials, .contact-form .col-contact-form{
        padding:20px !important;
        margin:0 !important;
    }
    .mob{
        text-align: left;
        padding: 0 15px;
    }
    .bg-primary-img ul a i{
        left: -20px ;
        top: 3px;
    }
    .footer-call-btn{
        display:none;
    }
  }

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services.section {
    padding: 100px 0;
}
.services .service-item {
    padding: 40px;
    box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
    height: 100%;
  }
  
  .services .service-item .icon {
    width: 48px;
    height: 48px;
    position: relative;
    margin-bottom: 50px;
  }
  .services .service-item .icon img {
    width: 55px;
    height: 55px;
    object-fit: cover;
}
  
  .services .service-item .icon i {
    color: color-mix(in srgb, #000000, transparent 30%);
    font-size: 56px;
    transition: ease-in-out 0.3s;
    z-index: 2;
    position: relative;
  }
  
  .services .service-item .icon:before {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    background: color-mix(in srgb, #000000, transparent 95%);
    border-radius: 50px;
    z-index: 1;
    top: 10px;
    right: -20px;
    transition: 0.3s;
  }
  
  .services .service-item h3 {
    color: color-mix(in srgb, #000000, transparent 20%);
    font-weight: 500;
    margin: 0 0 20px 0;
    padding-bottom: 8px;
    font-size: 22px;
    position: relative;
    display: inline-block;
    border-bottom: 4px solid color-mix(in srgb, #000000, transparent 90%);
    transition: 0.3s;
  }
  
  .services .service-item p {
    line-height: 24px;
    font-size: 14px;
    margin-bottom: 0;
  }
  
  .services .service-item .readmore {
    margin-top: 15px;
    display: inline-block;
    color: color-mix(in srgb, #212529, transparent 30%);
    text-decoration: none;
  }
  
  .services .service-item:hover .icon i {
    color: #000000;
  }
  
  .services .service-item:hover .icon:before {
    background: color-mix(in srgb, #000000, transparent 90%);
  }
  
  .services .service-item:hover h3 {
    border-color: color-mix(in srgb, #000000, transparent 70%);
    color: #000000;
  }
  
  .services .service-item:hover .readmore {
    color: #000000;
  }

/* Call To Action */
.call-to-action{
  background: linear-gradient(-45deg, #555555, #dc690e, #555555, #e7820a);
  background-size: 400% 400%;
  animation: gradient 15s ease infinite;
  margin-bottom: 0;
}
.call-to-action .row {
  align-items: center;
}

.call-to-action h4 {
  font-size: 30px;
  color: #fff;
}

.call-to-action h2 {
  font-size: 48px;
  color: #fff;
}

.call-to-action .cta-btns {
  margin-top: 30px;
}
.call-to-action .cta-btns a{
  text-decoration: none;
}
.call-to-action .cta-btns .call{
  border: 1px solid #fff;
  background-color: transparent;
  text-decoration: none;
  margin-right: 20px;
}
.call-to-action .cta-btns .call:hover {
  background-color: #fff;
  border-color: #fff;
  color: #000;
}
.call-to-action .cta-btns .chat {
  border: 1px solid #dc6910;
}
.call-to-action .cta-btns .chat:hover {
  border-color:#000
}
.call-to-action img{
  margin-top: -80px;
}
@keyframes gradient {
  0% {
      background-position: 0% 50%;
  }
  50% {
      background-position: 100% 50%;
  }
  100% {
      background-position: 0% 50%;
  }
}

/* Pricing Section */
.pricing3 {
    font-family: "Poppins", sans-serif;
    color: #8d97ad;
    font-weight: 300;
    padding: 100px 0;
  }
  
  .pricing3 h1, .pricing3 h2, .pricing3 h3, .pricing3 h4, .pricing3 h5, .pricing3 h6 {
    color: #3e4555;
  }

    .package-inner-container li.nav-item {
        max-width: 20%;
        flex: 0 0 20%;
        text-align: center;
        font-size: 18px;
        font-weight: 500;
    }
    .package-inner-container li.nav-item > a {
        color: #000;
        border-color: #f5f5f5;
        padding: 20px 0;
    }
    .package-inner-container li.nav-item > a.active {
        color: #fff;
        background: -webkit-linear-gradient(legacy-direction(to right), #dc6910 0%, #f8a21b 100%);
        background: -webkit-gradient(linear, left top, right top, from(#dc6910), to(#f8a21b));
        background: -webkit-linear-gradient(left, #dc6910 0%, #f8a21b 100%);
        background: -o-linear-gradient(left, #dc6910 0%, #f8a21b 100%);
        background: linear-gradient(to right, #dc6910 0%, #f8a21b 100%);
        background: linear-gradient(to right, #dc6910 0%, #f8a21b 100%);
    }
  
  .pricing3 .font-weight-medium {
      font-weight: 500;
  }
  
  .pricing3 .bg-light {
      background-color: #f4f8fa !important;
  }
  
  .pricing3 .subtitle {
      color: #8d97ad;
      line-height: 24px;
  }
  
  .pricing3 .col-lg-2 {
    padding-right: 0px;
    position: relative;
    z-index: 1;
  }
  
  .pricing3 .col-lg-10 {
    padding-left: 0px;
  }
  
  .pricing3 .nav-pills {
    border: 1px solid rgba(120, 130, 140, 0.13);
    border-radius: 4px;
    border-right: 0px;
  }
  
  .pricing3 .nav-pills .nav-link {
    padding: 30px 25px;
  }
  
  .pricing3 .nav-pills .nav-link h2 {
    color: #333;
  }
  
  .pricing3 .nav-pills .nav-link.active {
    background: #ffffff;
    border-left: 3px solid #dc6910;
    border-radius: 0px;
    margin-left: -3px;
    -webkit-box-shadow: -20px 0 40px rgba(0, 0, 0, 0.1);
    box-shadow: -20px 0 40px rgba(0, 0, 0, 0.1);
  }
  
  .pricing3 .nav-pills .nav-link.active h2 {
    color: #263238;
  }
  
  .pricing3 .tab-content{
    background: #ffffff;
    overflow: hidden;
    -webkit-box-shadow: 0 0 60px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 60px rgba(0, 0, 0, 0.1);
    height: 100%;
  }
  .pricing3 .tab-content.first {
    overflow: unset;
    box-shadow: none;
    height: auto;
    }
  .pricing3 .tab-content .tab-pane{
    height: 100%;;
  }
  .pricing3 .tab-content .tab-pane .row{
    height: 100%;
  }
  .pricing3 .tab-content .pricing-box {
    padding: 50px 80px;
    position: relative;
    height: 100%;
  }
  
  .pricing3 .tab-content .list-inline {
    margin-top: 30px;
    list-style: none;
    height: 300px;
    overflow-x: hidden
  }
  .pricing3 .tab-content .list-inline::-webkit-scrollbar {
    width: 5px;
    }

    .pricing3 .tab-content .list-inline::-webkit-scrollbar-track {
        background-color: transparent;
    }
  .pricing3 .tab-content .list-inline::-webkit-scrollbar-thumb {
    box-shadow: inset 0px 0px 100px rgb(0 0 0);
    border-radius: 100px;
    }
    .pricing3 .tab-content .list-inline::-webkit-scrollbar-thumb {
        box-shadow: inset 0px 0px 100px rgb(220 105 16);
    }
  
  .pricing3 .tab-content .list-inline li {
    padding: 5px 10px;
    font-weight: 400;
    color: #333;
  }
  .pricing3 .tab-content .list-inline li:before {
    content: "\f00c";
    display: inline-block;
    font: normal normal normal 14px / 1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    padding-right: 20px;
    color: #dc6910;
}
  .pricing3 .tab-content .list-inline li span {
    display: inline-block;
    vertical-align: middle;
  }
  
  .pricing3 .tab-content .list-inline li i {
    font-size: 40px;
    vertical-align: middle;
    width: 80px;
    opacity: 0.5;
  }
  
  .pricing3 .tab-content .bg-image {
    background-size: cover;
  }
  .pricing3 .tab-content .bg-image:before {
        content: '';
        position: absolute;
        width: 100%;
        height: 100%;
        background-color: #000;
        left: 0;
        opacity: 0.1;
    }
  .pricing3 .tab-content .bg-image .quote-box {
      display:none;
    padding: 40px;
    z-index:1;
  }
  
  .pricing3 .btn-danger-gradiant {
    background: #ff4d7e;
    background: -webkit-linear-gradient(legacy-direction(to right), #dc6910 0%, #f8a21b 100%);
    background: -webkit-gradient(linear, left top, right top, from(#dc6910), to(#f8a21b));
    background: -webkit-linear-gradient(left, #dc6910 0%, #f8a21b 100%);
    background: -o-linear-gradient(left, #dc6910 0%, #f8a21b 100%);
    background: linear-gradient(to right, #dc6910 0%, #f8a21b 100%);
    background: linear-gradient(to right, #dc6910 0%, #f8a21b 100%);
  }
  
   .pricing3 .btn-danger-gradiant:hover {
    background: #ff6a5b;
    background: -webkit-linear-gradient(legacy-direction(to right), #f8a21b 0%, #dc6910 100%);
    background: -webkit-gradient(linear, left top, right top, from(#f8a21b), to(#dc6910));
    background: -webkit-linear-gradient(left, #f8a21b 0%, #dc6910 100%);
    background: -o-linear-gradient(left, #f8a21b 0%, #dc6910 100%);
    background: linear-gradient(to right, #f8a21b 0%, #dc6910 100%);
  }
  
  .pricing3 .btn-md {
    padding: 15px 45px;
    font-size: 16px;
    position: absolute;
    bottom: 52px;
    border-radius: 5px !important;
  }
  .pricing3 .original-price{
    position: absolute;
    right: 50px;
    top: 30px;
    font-size: 30px;
    color: #dc6910;
  }
  .pricing3 .original-price span{
    font-size: 3rem;
    color:#212529;
  }
  .pricing3 .display-5 {
    font-size: 3rem;
    position: absolute;
    right: 80px;
    top: 45px;
  }
  
  @media (max-width: 767px) {
    .pricing3 .col-lg-2 {
      padding-right: 15px;
    }
    .pricing3 .col-lg-10 {
      padding-left: 15px;
    }
    .pricing3 .nav-pills {
      -webkit-box-orient: horizontal !important;
      -webkit-box-direction: normal !important;
      -webkit-flex-direction: row !important;
      -ms-flex-direction: row !important;
      flex-direction: row !important;
      border-bottom: 0px;
      border-right: 1px solid rgba(120, 130, 140, 0.13);
    }
    .pricing3 .nav-pills .nav-link {
      padding: 25px 18px;
    }
    .pricing3 .nav-pills .nav-link.active {
      border-left: 0px;
      border-top: 3px solid #dc6910;
      margin-top: -4px;
      margin-left: 0px;
      margin-bottom: -1px;
      -webkit-box-shadow: 0 -20px 40px rgba(0, 0, 0, 0.1);
      box-shadow: 0 -20px 40px rgba(0, 0, 0, 0.1);
    }
    .pricing3 .tab-content .pricing-box {
      padding: 20px;
    }
  }
  
.combo-sec{
    background-image: url(../../public/pro/img/combo-bg.jpg);
    background-size: cover;
    padding: 100px 0px;
    position:relative;
}
.combo-sec:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #000;
    top: 0;
    left: 0;
    opacity: 0.4;
}
.combo-sec .container {
    max-width: 1300px;
}
.combo-sec .col-lg-6.col-md-12 {
    z-index: 1;
}
.combo-sec .inner-combb h5 {
    font-size: 20px;
    font-weight: 600;
    color: white;
    text-transform: uppercase;
}
.combo-sec h2.sec-head {
    font-style: italic;
    font-weight: bold;
    color: #fff;
    font-size: 85px;
    line-height: 70px;
    margin-bottom:30px;
}

.combo-sec h2.sec-head span {
    background: linear-gradient(to right, #dc6910, #f8a21b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    padding-right: 25px;
}
.combo-sec .inner-combb img {
    margin-bottom: 20px;
    width: 50%;
}
.combo-sec .list-unstyled {
    padding-left: 0;
    list-style: none;
    margin-bottom: 20px;
}
.combo-sec .inner-combb ul h6 {
    color: white;
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 20px;
}
.combo-sec .inner-combb ul li {
    color: white;
    display: flex;
    align-items: baseline;
    margin-bottom: 5px;
    font-size: 15px;
    font-weight: 500;
}
.combo-sec .inner-combb ul li img {
    margin-bottom: 20px;
    flex: 0 0 15px;
    margin: 0px 5px 0px 0;
    width: 50%;
}
.combo-sec .inner-combb .lbn-btns {
    display: flex;
    align-items: center;
    gap: 20px;
}
.combo-sec .inner-combb .lbn-btns a {
    width: 250px;
    display: flex;
    min-height: 60px;
    background: -webkit-linear-gradient(legacy-direction(to right), #dc6910 0%, #f8a21b 100%);
    background: -webkit-gradient(linear, left top, right top, from(#dc6910), to(#f8a21b));
    background: -webkit-linear-gradient(left, #dc6910 0%, #f8a21b 100%);
    background: -o-linear-gradient(left, #dc6910 0%, #f8a21b 100%);
    background: linear-gradient(to right, #dc6910 0%, #f8a21b 100%);
    background: linear-gradient(to right, #dc6910 0%, #f8a21b 100%);
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    font-style: italic;
    font-family: 'MONTSERRAT', sans-serif;
    border-radius: 0;
    text-align: center;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius:5px;
}
.combo-sec .inner-combb .lbn-btns a:hover {
    background-color: #fff;
    color: #000;
}
.combo-sec .inner-combb .lbn-btns .open_chat_btn {
    background: #fff;
    color: #000;
    border-color: #fff;
}
.combo-sec .inner-combb .lbn-btns .open_chat_btn:hover {
    background-color: #dc6910;
    color: #fff;
}
.combo-sec .contct-inf {
    display: flex;
    align-items: center;
    gap: 20px;
    color: white;
    padding-top: 40px;
}
.combo-sec .contct-inf a {
    font-size: 26px;
    font-weight: 600;
    color: #fff;
    font-family: 'Montserrat';
    text-decoration: none;
}
.combo-sec .inner-chevr {
    border: 1px solid #fff;
    background-color:#ffffff80;
    display: flex;
    align-items: center;
    padding: 30px 40px;
    margin-bottom: -12px;
    border-radius:5px;
}
.combo-sec .inner-chevr h3 {
    font-size: 32px;
    color: white;
    text-transform: uppercase;
    font-weight: 600;
    width: 60%;
}
.combo-sec .inner-chevr h3 span {
    font-size: 25px;
    color: #333;
    font-weight: 700;
    display: block;
}
.combo-sec .pricee-cher {
    width: 40%;
}
.combo-sec .pricee-cher .price small {
    font-size: 50px;
    font-weight: 700;
    color: #333;
}
.combo-sec .pricee-cher .price strong {
    font-size: 80px;
    text-decoration: none;
    line-height: 0px;
    background: linear-gradient(to right, #dc6910, #f8a21b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 900;
}
.combo-sec .pricee-cher .cut-price {
    display: flex;
    align-items: baseline;
    text-align: end;
    justify-content: start;
    position: relative;
}

.combo-sec .sd-chevron-inner img {
    margin-top: 20px !important;
    width: 100%;
    margin: auto;
    height: 380px;
    object-fit: cover;
    border-radius:5px;
}
.combo-sec .pricee-cher strong {
    color: #333;
    font-size: 40px;
    font-weight: 900;
    text-decoration: line-through;
}
.combo-sec .pricee-cher .cut-price small {
    font-size: 24px;
    font-weight: 800;
    background: linear-gradient(to right, #dc6910, #f8a21b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* FAQs Section */
.faqs {
    padding: 100px 0 150px 0;
    background: #fafafa;
}

.faq-item {
    margin: 10px 0;
    animation: fadeIn 1s ease-in;
}

.faq-item h3 {
    font-size: 1.3em;
    color: #dc6910;
}
.faqs button.accordion-button:not(.collapsed) {
  background-color: #ff6f005e;
}
.faqs img {
    transform: translatey(0px);
    animation: float 6s ease-in-out infinite;
}

/*Logo TYpe*/
.logo-type.sec-pad {
    padding: 100px 0 100px 0;
}
.flip-crad-wrapper {
    background-color: transparent;
    width: 100%;
    height: 345px;
    perspective: 1000px;
    display: inline-block;
}
.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: left;
    transition: transform .6s;
    transform-style: preserve-3d;
    box-shadow: 0.3rem 0.3rem 2.5rem rgb(0 0 0 / 15%) !important;
    border-radius: 15px;
}
.flip-crad-wrapper:hover .flip-card-inner {
    transform: rotateY(180deg);
}
.flip-text-area {
    padding: 30px 40px 30px 30px;
}
.flip-text-area p {
    /*height: 220px;*/
    /*overflow-x: hidden;*/
    font-size: 15px;
}
.flip-card-back {
    transform: rotateY(180deg);
}
.flip-card-back, .flip-card-front {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}
.flip-img {
    border-radius: 15px;
    height: 345px !important;
    width: 100% !important;
    object-fit: cover;
}
.flip-text-area p::-webkit-scrollbar {
    width: 5px;
}

.flip-text-area p::-webkit-scrollbar-track {
    background-color: transparent;
}

.flip-text-area p::-webkit-scrollbar-thumb {
    box-shadow: inset 0px 0px 100px rgb(220 105 16);
    border-radius: 100px;
}

/* Contact Form Section */
.contact-form{
  background: url(./img/footer-back.jpg) no-repeat center;
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 30px 0 50px 0;
}
.contact-form::before {
  opacity: 0.8;
  background-color: #1a1a1a !important;
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.contact-form .contact-detials {
  /* background-color: #dc6910; */
  color: #fff;
  padding: 80px;
  z-index: 1;
}

.contact-form .contact-detials h2.sec-head {
  color: #fff;
}
.contact-form .contact-detials ul {
  list-style: none;
  padding: 0;
  margin-top: 50px;
}
.contact-form .contact-detials ul li {
  display: flex;
  gap: 35px;
  margin-bottom: 25px;
}

.contact-form .contact-detials ul i {
  font-size: 35px;
}
.contact-form .contact-detials ul li h5 {
  color: #fff;
}

.contact-form .col-contact-form {
  padding:80px;
  box-shadow: 0 0 30px 0 rgba(0,0,0,0.3);
  background-color: #fff;
  z-index: 1;
  margin-top: -100px;
}
.contact-form .col-contact-form input {
  line-height: 40px;
  border-radius: 0;
  margin-bottom: 10px;
}

.contact-form .col-contact-form select {
  line-height: 40px;
  border-radius: 0;
  margin-bottom: 10px;
}

/* Footer */
.bg-primary-img{
    background: url(./img/footer-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-color: #292929;
}
.bg-primary-img .container{
  padding: 50px 0 0 0;
}
.bg-primary-img h6 {
  font-size: 20px;
  margin-bottom: 30px;
}
.bg-primary-img ul {
  padding: 0;
  list-style: none;
}
.bg-primary-img ul li {
  padding: 10px 0 0 20px;
  position: relative;
  transition: all 1s;
    -ms-transition: all 1s;
    -o-transition: all 1s;
    -moz-transition: all 1s;
    -webkit-transition: all 1s;
}
.bg-primary-img ul a {
  text-decoration: none;
  color: #b0b0b0;
  position:relative;
}
.bg-primary-img ul a i {
  position: absolute;
  left: -20px;
  top: 3px;
  font-size: 13px;
}
.bg-primary-img .info ul li{
  display: flex;
  padding: 0;
  align-items: center;
  transition: all 1s;
    -ms-transition: all 1s;
    -o-transition: all 1s;
    -moz-transition: all 1s;
    -webkit-transition: all 1s;
}
.bg-primary-img ul li:hover{
  transform: translateX(10px);
    -moz-transform: translateX(10px);
    -webkit-transform: translateX(10px);
    -o-transform: translateX(10px);
    -ms-transform: translateX(10px);
}
.bg-primary-img .info ul li i{
  font-size: 30px;
}
.bg-primary-img .info ul li div{
  padding: 0px 0px 10px 20px;
}
.bg-primary-img .info ul li h5 {
  font-size: 17px;
  margin: 0;
}
.bg-primary-img .info ul li div p{
  margin: 0;
}
.footer-call-btn {
  position: fixed;
  left: 20px;
  bottom: 15px;
  z-index:1111;
}
.footer-call-btn a {
  display: flex;
  align-items: center;
  gap: 12px;
  -webkit-animation: beat 2s infinite;
  animation: beat 2s infinite;
  text-decoration: none;
}
.footer-call-btn a span:nth-child(odd) {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: #dc6910;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.footer-call-btn a span {
  color: #dc6910;
  font-size: 12px;
  text-transform: uppercase;
  font-weight:700;
}
.footer-call-btn a span i {
  font-size: 18px;
  color: #fff;
}
.footer-call-btn.w {
  bottom: 75px;
}
.footer-call-btn.t {
  bottom: 135px;
}

.footer-call-btn .call-text {
  display: none;
  position: absolute;
  top: 50%;
  left: 100%;
  transform: translateY(-50%);
  color: #fff;
  font-weight: 400;
  padding: 5px 10px;
  border-radius: 5px;
  white-space: nowrap;
  margin-left: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
}
.footer-call-btn .call-text {
  background-color: #dc6910;
}

.footer-call-btn.w .call-text {
  background-color: #25D366;
}

.footer-call-btn a:hover .call-text {
  display: inline-block;
}

.footer-call-btn.w span:nth-child(1) {
  background-color: #25D366;
}

.footer-call-btn.t span:nth-child(1) {
  background-color: #fff;
}
.footer-call-btn.t span:nth-child(1) img {
  width: 35px;
  height: 35px;
}
.footer-call-btn.t .call-text{
  background-color: #fff;
  color: green;
}
.footer-call-btn.g {
  bottom: 195px;
}

.footer-call-btn.g span:nth-child(1) {
  background-color: #F7F7F7;
}

.footer-call-btn.g span:nth-child(1) img {
  width: 35px;
  height: 35px;
}

.footer-call-btn.g .call-text {
  background-color: #E14133;
}
/* Keyframes for Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
@keyframes float {
	0% {
		transform: translatey(0px);
	}
	50% {
		transform: translatey(-20px);
	}
	100% {
		transform: translatey(0px);
	}
}
/* Animation */
.fadein{
    animation: fadeIn 1.5s ease-in-out;
}