@charset "UTF-8";
/*******************/
/********************/
/*******************/

*::before,
*::after {
  box-sizing: border-box;
}

@media (prefers-reduced-motion: no-preference) {
  :root {
    scroll-behavior: smooth;
  }
}

body {
	font-size: 1rem;
	margin: 0;
	font-family: "Hind", sans-serif !important;
}
h1, h2, h3, h4, h5, h6{
	font-family: "Roboto", sans-serif !important;
}
a{
	text-decoration: none !important;
}
a:hover{
  color:#079732 ;
}


.btn-close:focus{
  box-shadow: none !important;
  outline: 0;
}

.btn-default{
  min-width: 110px;
  font-size: 1rem !important;
  font-weight: 600 !important;
  color: #fff !important;
  /* background: #F4BC28;
  background-image: linear-gradient(#f4c628, #f49f28); */
  border: 0 !important;
  padding: 0.6rem 1.2rem !important;
  border-radius: 5px !important;
  transition: 0.5s !important;
  position: relative;
  z-index: 0;
}
.btn-default:hover{
  color: #fff !important;
  background: #000000!important;
  box-shadow: 0 0 0 0.8rem transparent;
}
.btn-default::before{
  content: "";
  position: absolute;
  top: 0; 
  bottom: 0;
  left: 0;
  height: 100%;
  width: 100%;
  color: #fff !important;
  border-radius: 5px !important;
  background-image: linear-gradient(#079732, #079732);
  transition: 0.5s;
  z-index: -1;
}
.btn-default:hover::before {
  width: 0%;
}
.btn-primary{
  color: #000000 !important;
}
.btn-primary::before{
  background-image: linear-gradient(#fff, #fff);
}

.bg-green{
  background:#079732!important;
}
.text-primary{
  color:#079732!important;
}


.section-bg {
  background-image: linear-gradient(#00150F, #012F22);
}
.section-header .section-title {
  font-size: 2rem;
  font-weight: 800;
}


.inner-banner-wrapper{
  position: relative;
  z-index: 0;
  margin-top: -4rem;
  background: #000;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
}
.inner-banner-wrapper:before{
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #000000;
    opacity: 0.75;
    z-index: -1;
}
.inner-banner-wrapper .inner-banner-content{
    text-align: center;
}
.inner-banner-wrapper .inner-banner-content .inner-banner-title{
    font-size: 2.5rem;
    font-weight: 800;
    text-transform: uppercase;
}

.inner-banner-wrapper .breadcrumb-item+.breadcrumb-item::before{
    color: #fff;
}


/* ====== Header ======= */
.header_top{
    background-color: #000;
}
.header .header_topbar-info-item {
    display: inline-block;
    margin: 0 1rem;
    font-size: 0.9rem;
    color: #fff;
}
.header .header_topbar-info-item .header_topbar-info-item-icon {
    margin-right: 0.5rem;
}

.header .header_bottom_menu {
  background: #fff;
  padding: 1rem;
  margin-top: -2.7rem;
  border-radius: 1rem;
  box-shadow: 2px 0px 10px 2px #c3c3c38a;
  position: relative;
  z-index: 1;
}
.header .header_bottom_menu .navbar-brand{
	max-width: 200px;
    margin-right: 0;
}
.header .header_bottom_menu .nav-item{
  margin: 0 1rem;
}
.header .header_bottom_menu .nav-item a{
  color: #323232;
  font-size: 1rem;
  font-weight: bold;
  text-transform: uppercase;
}
.header .header_bottom_menu .nav-item a:hover,
.header .header_bottom_menu .nav-item a.active{
  color: green;
  
}
.user-profile-wrap .dropdown-menu{
    padding: 0;
}
.user-profile-wrap .dropdown-menu li .dropdown-item {
    border-bottom: 1px solid #dfdfdf;
}
.user-profile-wrap .dropdown-menu li .dropdown-item:hover {
    background: #000;
    color: #fff;
}

/* Hero banner Section */
.hero-banner{
  background-image: url(../images/hero-banner-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 0;
  margin-top: -4rem;
  padding-top: 6rem;
  color: #000;
}

.hero-banner .hero-banner-title {
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.hero-banner .hero-banner-title span{
    font-weight: 900;
}
/* About Us Section */
.about-section .about-image-wrapper {
  max-width: 450px;
  margin: auto;
}

.about-section .about-info-features-list .about-info-features-icon-box {
    min-width: 70px;
    max-width: 70px;
    max-height: 70px;
    padding: 1rem;
    border-radius: 5px;
    margin-right: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000000;
    color: #fff;
}
.about-section .about-info-features-list:hover .about-info-features-icon-box{
  background: #079732;
}
.about-section .about-info-features-list .about-info-features-icon-box img{
    transition: all 0.5s;
}
.about-section .about-info-features-list:hover .about-info-features-icon-box img{
      transform: scale(1.1);
}

.about-support-wrap-profile {
  max-width: 60px;
  border-radius: 140px;
  overflow: hidden;
}


/* Our Benefits Section */
.our-benefits-section{
  border-top: 1px solid #ddd;
}
.our-benefits-box .our-benefits-icons {
    max-width: 70px;
    margin: auto;
    margin-bottom: 1rem;
}


/* Our Services Section */
.our-services-section {
  background-image: url(../images/services-banner-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  z-index: 0;
}
.our-services-section:before{
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #000000;
  opacity: 0.75;
  z-index: -1;
}
.services-list-feature .services-list-feature-item{
  list-style-type: disclosure-closed;
  margin-bottom: 0.5rem;
  float: left;
  width: 50%;
  color: #fff;
}
.service-box-wrapper{
  text-align: left;
  color: #fff;
  background-color: #77D0FF1A;
  padding: 30px 30px 30px 30px;
  margin: 0.8rem 0;
  /* border: 2px solid #009c48; */
  border-radius: 5px 5px 5px 5px;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}
.service-box-wrapper .service-box-wrapper-icon{
  max-width: 70px;
  margin-bottom: 1.5rem;
  transition: 0.5s !important;
}
.service-box-wrapper:hover .service-box-wrapper-icon{
  transform: translateY(-8px);
  color: #fff;
}
.service-box-wrapper:hover .service-box-wrapper-text .service-box-wrapper-text-title{
  color: #079732;
}
.secondery-service .service-box-wrapper-seconderyimg {
  width: 100%;
}
.secondery-service .service-box-wrapper{
  margin: 0;
}

/* Our Pricing Plans Section */
.pricing-plans-box {
  -webkit-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
  padding: 35px 35px;
  border-radius: 20px;
  position: relative;
  transition: 0.3s !important;
}
.pricing-plans-box:hover {
  box-shadow: 0px 0px 15px 10px rgba(0, 0, 0, 0.1);
}
.pricing-plans-box .pricing-plans-box-title {
  font-size: 1.1rem;
  display: inline-block;
  color: #fff;
  background-color: #000000;
  padding: 0.5rem 1rem !important;
  border-radius: 50px !important;
}
.pricing-cartype {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.pricing-cartype .form-select {
    max-width: 130px;
    background-color: transparent;
    border-radius: 50px;
    border-color: #242529;
    box-shadow: none;
}
.pricing-plans-box-popular .pricing-cartype .form-select{
     color: #fff;
     border-color: #fff;
}
.pricing-plans-box-popular .pricing-cartype .form-select option{
    color: #000;
}


.pricing-plans-box-feature .pricing-plans-box-feature-list .pricing-plans-box-feature-list-item {
  list-style-type: none;
  position: relative;
  padding-left: 2rem;
  margin: 0.5rem 0;
}
.pricing-plans-box-feature .pricing-plans-box-feature-list .pricing-plans-box-feature-list-item i{
  position: absolute;
  left: 0;
  top: 0;
  font-size: 18px;
  color: #079732;
}
.pricing-plans-box-feature .pricing-plans-box-feature-list .pricing-plans-box-feature-list-item.disable,
.pricing-plans-box-feature .pricing-plans-box-feature-list .pricing-plans-box-feature-list-item.disable i{
  color: #a7a7a7;
  opacity: 0.7;
}

.pricing-plans-box .pricing-plans-box-amount .saleamount {
  font-size: 34px;
  color: #000000;
}

.pricing-plans-box-popular {
  background: #000000;
  color: #fff;
}

.pricing-plans-box-popular .pricing-plans-box-feature .pricing-plans-box-feature-list .pricing-plans-box-feature-list-item:before,
.pricing-plans-box-popular .pricing-plans-box-amount .saleamount{
  color: #ffffff !important;
}
.pricing-plans-box-popular .pricing-plans-box-title{
   background-color: #009940;
}
.pricing-plans-box-popular .pricing-plans-box-amount h4,
.pricing-plans-box-popular .pricing-plans-box-amount p{
  color:  #cfcfcf !important;
}
.pricing-plans-box .pricing-plans-btn{
  position: absolute;
  bottom: -20px;
  left: 0;
  right: 0;
  margin: auto;
  width: auto;
  max-width: 300px;
}
.pricing-plans-box-popular .btn-default:hover {
  background: #fff !important;
  color: #000 !important;
}
.pricing-plans-box-popular .btn-default:hover::before{
  background-image: linear-gradient(#079732, #079732) !important;
}

/* Our Work Process Section */
.our-work-process-section {
  background-image: url(../images/workprocess-banner-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 0;
}
.our-work-process-section:before{
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #000000;
  opacity: 0.8;
  z-index: -1;
}


/* Our Clients Say Section */
.testiomonial-image-box {
  margin-top: 1rem;
  z-index: 1;
  position: relative;
}
.testimonial-item-box .rating-stars .reviewforme{
  color: #FFD12D;
}
.testimonial-item-box .testimonial-item-box-bio {
  margin-bottom: 2rem;
}
.testimonial-item-box .testimonial-item-box-bio .testimonial-item-box-profile-image {
  max-width: 80px;
  border-radius: 70px;
  overflow: hidden;
  margin-right: 1rem;
}
.testimonial-satisfaction .testimonial-satisfaction-box {
  display: inline-block;
  text-align: center;
  color: #fff;
  background-color: #000000;
  padding: 30px 30px 30px 30px;
  margin: 1rem 0.5rem;
  border-radius: 5px 5px 5px 5px;
}
.testimonial-satisfaction .testimonial-satisfaction-box .testimonial-satisfaction-box-title {
  font-size: 3rem;
  font-weight: 700;
  color: #079732 ;
  line-height: 40px;
}

/* Sponsored Section */
.our-sponser-logo .logos {
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}

.our-sponser-logo .logo_items {
  display: inline-block;
  animation: 35s slides infinite linear;
}

.our-sponser-logo .logos:hover .logo_items {
  animation-play-state: paused;
}
.our-sponser-logo .logo_items .logo-img {
    max-width: 200px;
    margin: 0 3rem;
}
@keyframes slides {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}


/* Footer Section */
.footer {
  background: #000000;
  color: #fff;
}
.footer-about .footer-logo {
  display: block;
  max-width: 220px;
  margin-bottom: 2rem;
  padding: 4px;
  border-radius: 5px;
  background-color: #fff;
}
.footer-menulink .footer-menulist li {
  list-style-type: disclosure-closed;
  color: #079732;
  margin: 1rem 0;
}
.footer-menulink .footer-menulist li a{
  color: #fff;
}
.footer-menulink .footer-social-media li a {
  background-color: #0A043C00;
  padding: 5px;
  border-radius: 5px;
  color: #079732;
  border: 1px solid #079732;
  font-size: medium;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s;
}
.footer-menulink .footer-social-media li a:hover{
  background-color: #079732;
  color: #fff;
  transform: scale(0.9);
}
.footer-menulink .footer-contactmenu li {
    list-style-type: none;
    position: relative;
}
.footer-menulink .footer-contactmenu li i{
    position: absolute;
    top: 3px;
    left: -28px;
}
.callto-action-box {
  padding: 1.5rem 2rem;
  background: #ffffff2e;
  margin-bottom: 2rem;
  border-radius: 10px;
}

/* =================== Get A Franchise Popup  ===================== */
.rf-custom-modal .modal-dialog {
    max-width: 600px;
    height: 100%;
    margin: auto !important;
    display: flex;
    align-items: center;
}
.rf-custom-modal input::-webkit-outer-spin-button,
.rf-custom-modal input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	-moz-appearance:    none;
	appearance:         none;
}

/* =================== About us Page ===================== */

.about-banner-wrapper{
  background-image: url(../images/about-bnr-img.jpg);
}

.our-expertise-section .our-expertise-left{
  background-image: url(../images/our-expertise-img.jpg);
  background-size: cover;
  background-position: center;
  min-height: 600px;
  position: relative;
  z-index: 0;
}
.our-expertise-section .our-expertise-left:before{
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #000000;
    opacity: 0.75;
    z-index: -1;
}
.our-expertise-section .why-weare-best-box {
  position: absolute;
  bottom: 1rem;
  max-width: 400px;
  padding: 2rem;
  color: #fff;
  background: #08192f42;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.our-expertise-section .our-expertise-right {
  background-image: url(../images/leather-pattren-bg.jpg);
}

.experts-progress-wrapper .progress {
  margin-top: 0.5rem;
}
.experts-progress-wrapper .experts-progress-item .progress .progress-bar{
  background-color: #079732;
  font-size: 13px;
}


/* =================== Services Page ===================== */

.services-banner-wrapper{
  background-image: url(../images/services-bnr-img.jpg);
}
.service-box-wrapper-2 {
  padding: 10rem 1.5rem 1.5rem;
  margin: 0.8rem 0;
  /*background-image: url(../images/services-bg-img01.jpg);*/
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  z-index: 0;

}
.service-box-wrapper-2:before{
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: #000000;
  opacity: 0.4;
  z-index: -1;
}
.service-box-wrapper-2 .service-box-wrapper-text{
  padding: 1.5rem;
  color: #fff;
  background: #08192f42;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}


.client-inquiries-section .client-inquiries-image-wrapper {
  max-width: 500px;
  margin: auto;
}
.client-inquiries-pointlist .accordion-item{
  margin: 1rem 0;
  border: 0;
}
.client-inquiries-pointlist .accordion-item .accordion-header{
  border-radius: 5px;
}
.client-inquiries-pointlist .accordion-item .accordion-header .accordion-button.collapsed {
  color: #000;
  background-color: #00334E00;
  border-radius: 5px 5px 5px 5px;
  border: 0;
  border-radius: 5px;
  outline: none !important;
  font-weight: 500;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
}

.client-inquiries-pointlist .accordion-item .accordion-header .accordion-button {
  background: #079732;
  color: #fff;
  border-radius: 5px;
  outline: none !important;
  font-weight: 500;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
}
.client-inquiries-pointlist .accordion-item .accordion-header .accordion-button.collapsed::after{
  filter: brightness(0);
}
.client-inquiries-pointlist .accordion-item .accordion-header .accordion-button::after{
  filter: brightness(100);
}


/* =================== Pricing Page ===================== */
.pricing-banner-wrapper {
     background-image: url(../images/pricing-bnr-img.jpg);
}

/* =================== Contact Page ===================== */
.contact-banner-wrapper{
    background-image: url(../images/contact-bnr-img.jpg);
}
.contact-form7-wrapper {
  padding: 3rem;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
}
.contact-informaton-box .contact-info-icon {
  font-size: 1.6rem;
  min-width: 65px;
  height: 65px;
  border-radius: 5px;
  margin-right: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000000;
  color: #fff;
  transition: all 0.3s ;
}
.contact-informaton-box:hover .contact-info-icon {
  background: #079732;
}
.contact-informaton-box .contact-info-icon:hover{
  transform: translateY(-8px);
}

form .form-floating .form-control,
form .form-floating .form-select{
    box-shadow: none;
}
form .form-floating .form-control:focus,
form .form-floating .form-select:focus{
    border-color: #079732;
}


/* =================== Login Page ===================== */

.right-singup-btn .register-login-btn {
    border: 1px solid #a8140e;
    position: relative;
    padding: 6px 10px;
    border-radius: 50px;
    z-index: 0;
}
.right-singup-btn .register-login-btn:before {
    content: "";
    position: absolute;
    width: 52%;
    height: 80%;
    background: #a8140e;
    right: 4px;
    top: 50%;
    bottom: 50%;
    margin: auto;
    border-radius: 20px;
    z-index: -1;
    transition: .4s;
}

/* =================== Policy Page ===================== */

.privacy-policy-banner-wrapper{
    background-image: url(../images/privacy-policy-bnr-img.jpg);
}
.policy-inner-box {
    margin-bottom: 1.5rem;
}

/* =================== Terms and Conditions Page ===================== */

.terms-conditions-banner-wrapper{
    background-image: url(../images/terms-conditions-bnr-img.jpg);
}

/* =================== ADMIN Dahsboard Page ===================== */

.sidebar-navbar {
    padding: 1.5rem;
    border-radius: 10px;
    background-color: #fff;
    box-shadow: 0px 0px 8px 2px rgb(226 226 226 / 51%) !important;
}
.sidebar-navbar .nav .nav-item {
    padding: 0;
}
.sidebar-navbar .nav .nav-item  .nav-link{
    color: #323232;
    font-size: 1rem;
    font-weight: bold;
    padding: 0.8rem 1rem;
}
.sidebar-navbar .nav .nav-item .nav-link:hover,
.sidebar-navbar .nav .nav-item .nav-link.active {
    background: #009940;
    color: #fff;
}

.dashboard_content_wrap{
    padding: 1.5rem;
    border-radius: 10px;
    background-color: #fff;
    box-shadow: 0px 0px 8px 2px rgb(226 226 226 / 51%) !important;
}
.dash-profile-form-header {
    text-align: center;
    margin-bottom: 2rem;
}
.dash-plansinfo-wrapper {
    max-width: 700px;
    margin: auto;
}
.dashboard_book_subscription_plans .dash-payment-id .dash-payment-QR {
    max-width: 180px;
    margin: auto;
}
.dashboard_book_subscription_plans .dash-plan-detail {
    border: 2px solid #009b4b;
    border-radius: 15px;
    overflow: hidden;
}

.dashboard_book_subscription_plans .dash-plan-detailsinfo-box {
    background: #f3f3f3;
}

.dashboard_book_subscription_plans .dash-plan-detailsinfo-box .summery-details-wrapper{
    display: flex;
    justify-content: space-between;
    margin-bottom: 0;
}
.dashboard_book_subscription_plans .dash-plan-detailsinfo-box .summery-details-wrapper span{
   padding: 1rem;
    text-align: center;
}
.dashboard_book_subscription_plans .dash-plan-detailsinfo-box .summery-details-wrapper .summery-details-value {
    background-color: #009940;
    color: #fff;
    min-width: 150px;
    max-width: 150px;
    word-break: break-all;
}


@media only screen and (min-width: 1200px) {
    .hero-banner{
        padding-top: 4rem !important;
    }
    .hero-banner .hero-banner-title {
     font-size: 3rem;
  }
}

@media only screen and (min-width: 992px) {
  .py-5{
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
  }
  .section-header .section-title {
    font-size: 2.2rem;
  }
  .secondery-service{
    display: flex;
  }
  
  .secondery-service .service-box-wrapper-seconderyimg {
    height: 100%;
  }
  .testiomonial-image-box {
    margin-top: -7rem;
  }
  .dashboard_book_subscription_plans .dash-plan-detailsinfo-box .summery-details-wrapper .summery-details-value {
    min-width: 210px !important;
    max-width: 210px !important;
    }
    .service-box-wrapper-2 .service-box-wrapper-text{
     max-width: 280px;
    }
}

@media only screen and (max-width: 991px) {
  .header .header_bottom_menu .navbar-collapse{
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    width: 100%;
    background-color: #e9ecef;
    border-radius: 10px;
  }

}
@media only screen and (min-width: 768px) {
    
    .service-box-wrapper-2{
        min-height: 93%;
    }
    
}

@media only screen and (max-width: 580px) {
    .header .header_bottom_menu .navbar-brand {
        max-width: 140px !important;
    }
    .right-singup-btn .btn{
        min-width: auto;
    }
}
@media only screen and (max-width: 414px) {
    
    .dashboard_book_subscription_plans .dash-plan-detailsinfo-box .summery-details-wrapper span .summery-details-icon{
        display : none;
    }
   
   
}


.register-login-form{
    max-width: 600px;
    margin: auto;
}

.login-formmain{
    padding: 3rem;
	overflow: hidden;
	border-radius: 10px;
	box-shadow: 5px 15px 30px #0006;
}


