*{
    font-family: Montserrat !important;
}
a{
    text-decoration: none !important;
}
li{
    list-style: none;
}
/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
    color: rgba(255, 255, 255, 0.7);
    background-color: #1C1B18;
    padding: 10px 0;
    transition: all 0.5s;
    z-index: 997;
  }
  
  .header .logo {
    line-height: 1;
  }
  
  .header .logo img {
    max-height: 36px;
    margin-right: 8px;
  }
  
  .header .logo h1 {
    font-size: 30px;
    margin: 0;
    font-weight: 700;
    color: var(--heading-color);
    font-family: var(--default-font);
  }
  
  .header .logo span {
    color: var(--accent-color);
    font-size: 36px;
  }
  
  .header .btn-register,
  .header .btn-register:focus {
    color: #D0FF71;
    background: #1C1B18;
    font-size: 18px;
    padding: 8px 26px;
    margin: 0;
    border-radius: 50px;
    transition: 0.3s;
    border-color: #D0FF71;
  }
  .header .btn-login,
  .header .btn-login:focus {
    color: #1C1B18;
    background: #D0FF71;
    font-size: 18px;
    padding: 8px 26px;
    margin: 0;
    border-radius: 50px;
    transition: 0.3s;
    border-color: #D0FF71;

  }
  
  .header .btn-register:hover,
  .header .btn-register:focus:hover {
    color: #1C1B18;
    background: #D0FF71;
    border-color: #D0FF71 !important;

  }
  .header .btn-login:hover,
  .header .btn-login:focus:hover {
    color: #D0FF71;
    background: #1C1B18;
    border-color: #D0FF71 !important;

  }
  
  @media (max-width: 1200px) {
    .header .logo {
      order: 1;
    }
  
    .header .btn-register {
      order: 2;
      margin: 0 15px 0 0;
      padding: 6px 20px;
    }
    .header .btn-login {
      order: 2;
      margin: 0 15px 0 0;
      padding: 6px 20px;
    }
  
    .header .navmenu {
      order: 3;
    }
  }
  
  .scrolled .header {
    box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
  }
  
  /*--------------------------------------------------------------
  # Navigation Menu
  --------------------------------------------------------------*/
  /* Desktop Navigation */
  @media (min-width: 1200px) {
    .navmenu {
      padding: 0;
    }
  
    .navmenu ul {
      margin: 0;
      padding: 0;
      display: flex;
      list-style: none;
      align-items: center;
    }
  
    .navmenu li {
      position: relative;
    }
  
    .navmenu>ul>li {
      white-space: nowrap;
      padding: 15px 14px;
    }
  
    .navmenu>ul>li:last-child {
      padding-right: 0;
    }
  
    .navmenu a,
    .navmenu a:focus {
      color: #fff;
      font-size: 15px;
      padding: 0 2px;
      font-family: var(--nav-font);
      font-weight: 500;
      display: flex;
      align-items: center;
      justify-content: space-between;
      white-space: nowrap;
      transition: 0.3s;
      position: relative;
    }

    .navmenu .dropdown ul a:hover,
    .navmenu .dropdown ul .active:hover{
        color: #D0FF71;
    }
    .navmenu a i,
    .navmenu a:focus i {
      font-size: 12px;
      line-height: 0;
      margin-left: 5px;
      transition: 0.3s;
    }
  
    .navmenu>ul>li>a:before {
      content: "";
      position: absolute;
      height: 2px;
      bottom: -6px;
      left: 0;
      background-color: var(--nav-hover-color);
      visibility: hidden;
      width: 0px;
      transition: all 0.3s ease-in-out 0s;
    }
  
    .navmenu a:hover:before,
    .navmenu li:hover>a:before,
    .navmenu .active:before {
      visibility: visible;
      width: 100%;
    }
  
    .navmenu li:hover>a,
    .navmenu .active,
    .navmenu .active:focus {
      color: #D0FF71;
    }
  
    .navmenu .dropdown ul {
      margin: 0;
      padding: 10px 0;
      background: #1C1B18;
      display: block;
      position: absolute;
      visibility: hidden;
      left: 14px;
      top: 130%;
      opacity: 0;
      transition: 0.3s;
      border-radius: 4px;
      z-index: 99;
      box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
    }
  
    .navmenu .dropdown ul li {
      min-width: 200px;
    }
  
    .navmenu .dropdown ul a {
      padding: 10px 20px;
      font-size: 15px;
      text-transform: none;
      color: #fff;
    }
    .navmenu .dropdown ul a:hover{
      color: #D0FF71 !important;
    }
    .navmenu .dropdown ul a i {
      font-size: 12px;
    } 
    
    .navmenu .dropdown ul li:hover>a {
      color: #fff;
    }
  
    .navmenu .dropdown:hover>ul {
      opacity: 1;
      top: 100%;
      visibility: visible;
    }
  
    .navmenu .dropdown .dropdown ul {
      top: 0;
      left: -90%;
      visibility: hidden;
    }
  
    .navmenu .dropdown .dropdown:hover>ul {
      opacity: 1;
      top: 0;
      left: -100%;
      visibility: visible;
    }
  }
  
  /* Mobile Navigation */
  @media (max-width: 1199px) {
    .mobile-nav-toggle {
      color: var(--nav-color);
      font-size: 28px;
      line-height: 0;
      margin-right: 10px;
      cursor: pointer;
      transition: color 0.3s;
    }
  
    .navmenu {
      padding: 0;
      z-index: 9997;
    }
  
    .navmenu ul {
      display: none;
      list-style: none;
      position: absolute;
      inset: 60px 20px 20px 20px;
      padding: 10px 0;
      margin: 0;
      border-radius: 6px;
      background-color: #1C1B18;
      border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
      box-shadow: none;
      overflow-y: auto;
      transition: 0.3s;
      z-index: 9998;
    }

    .navmenu a,
    .navmenu a:focus {
      color: var(--nav-dropdown-color);
      padding: 10px 20px;
      font-family: var(--nav-font);
      font-size: 17px;
      font-weight: 500;
      display: flex;
      align-items: center;
      justify-content: space-between;
      white-space: nowrap;
      transition: 0.3s;
    }
  
    .navmenu a i,
    .navmenu a:focus i {
      font-size: 12px;
      line-height: 0;
      margin-left: 5px;
      width: 30px;
      height: 30px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      transition: 0.3s;
      background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
    }
  
    .navmenu a i:hover,
    .navmenu a:focus i:hover {
      background-color: var(--accent-color);
      color: var(--contrast-color);
    }
  
    .navmenu a:hover,
    .navmenu .active,
    .navmenu .active:focus {
      color: var(--nav-dropdown-hover-color);
    }
  
    .navmenu .active i,
    .navmenu .active:focus i {
      background-color: var(--accent-color);
      color: var(--contrast-color);
      transform: rotate(180deg);
    }
  
    .navmenu .dropdown ul {
      position: static;
      display: none;
      z-index: 99;
      padding: 10px 0;
      margin: 10px 20px;
      background-color: var(--nav-dropdown-background-color);
      transition: all 0.5s ease-in-out;
    }
  
    .navmenu .dropdown ul ul {
      background-color: rgba(33, 37, 41, 0.1);
    }
  
    .navmenu .dropdown>.dropdown-active {
      display: block;
      background-color: rgba(33, 37, 41, 0.03);
    }
  
    .mobile-nav-active {
      overflow: hidden;
    }
  
    .mobile-nav-active .mobile-nav-toggle {
      color: #fff;
      position: absolute;
      font-size: 32px;
      top: 15px;
      right: 15px;
      margin-right: 0;
      z-index: 9999;
    }
  
    .mobile-nav-active .navmenu {
      position: fixed;
      overflow: hidden;
      inset: 0;
      background: rgba(33, 37, 41, 0.8);
      transition: 0.3s;
    }
  
    .mobile-nav-active .navmenu>ul {
      display: block;
    }
    .mobile-nav-btn {
        display: flex !important;
    }
    .web-nav-btn {
        display: none !important;
    }
  }
.mobile-nav-btn {
    display: none;
}
.web-nav-btn{
    display: flex;
}
/*--------------------------------------------------------------
# Sub Header
--------------------------------------------------------------*/
.sub-navbar{
    background-color: #1C1B18;  
    border-top: 1px solid rgba(125, 125, 125, 1);  
    padding: 6px;
}
.sub-navbar li a{
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
}
.sub-navbar li a:hover{
  color: #D0FF71;
}

/*--------------------------------------------------------------
# Footer start
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
    background-color: rgba(28, 27, 24, 1);
    padding: 40px 0;
    position: relative;
}
.footer .footer-logo-social{
    border-bottom: 1px solid rgba(201, 201, 201, 1);
    padding: 20px 0 25px 0;
    margin-bottom: 50px;
}
.footer .footer-logo-social .logo{
    max-height: 36px;
    margin-right: 8px;
}
.footer li{
    list-style: none;
    margin-bottom: 7px;
}
.footer .icon {
    color: var(--accent-color);
    margin-right: 15px;
    font-size: 24px;
    line-height: 0;
}
  
.footer h4 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 15px;
    color: rgba(249, 249, 249, 0.5);
}
  
.footer .address p {
    margin-bottom: 0px;
}

.footer .social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
    font-size: 16px;
    color: color-mix(in srgb, var(--default-color), transparent 50%);
    margin-right: 10px;
    transition: 0.3s;
}
  
.footer .social-links a:hover {
    color: var(--accent-color);
    border-color: var(--accent-color);
}

.footer .copyright {
    padding-top: 20px;
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .copyright p {
    margin-bottom: 0;
}

.footer .credits {
    margin-top: 5px;
    font-size: 13px;
}

.footer ul{
    padding-left: 0;
}

.footer .contact-info li{
    color: rgba(255, 255, 255, 1);
    font-size: 16px;
    font-weight: 600;
    line-height: 20.8px;
    margin-bottom: 7px;
}

.footer li a{
    color: rgba(255, 255, 255, 1);
    font-size: 16px;
    font-weight: 600;
    line-height: 20.8px;
}
.footer .copyright{
    color:rgba(255, 255, 255, 1);
    font-size: 14px;
    font-weight: 500;
    border-top: 1px solid rgba(201, 201, 201, 1);
}
@media(max-width:359.98px){
    .footer .footer-social{
        margin-top: 2em;
    }
    .footer .footer-logo-social{
        flex-direction: column;
        align-items: center;
    }
}
/*--------------------------------------------------------------
# App Download section start
--------------------------------------------------------------*/
.app-download{
    padding: 6px;
    background-image: linear-gradient(rgba(208, 255, 113, 1), rgba(186, 255, 48, 1));
}
.app-download ul{
    padding-left: 0;
}
@media(max-width:767.98px){
    .app-download .mobile-app{
        margin-top: 4em;
    }
    .app-download .mobile-content{
        padding: 2rem !important;
    }
}
@media(max-width:359.98px){
    .app-download .play-icon .google{
        margin-bottom: 1em;
    }
    .app-download .play-icon{
        flex-direction: column;
    }
}
/*--------------------------------------------------------------
# Faq section start
--------------------------------------------------------------*/

.faq-section {
    padding: 50px 0;
}
.faq-section h2{
    font-size: 40px;
    font-weight: bold;
}
.faq-section .faqs-subtitle{
    font-size: 20px;
    font-weight: 400;
    color: rgba(125, 125, 125, 1);
}
.faq-section .accordion-button{
    font-size: 16px !important;
    font-weight: 700 !important;
    color: rgba(0, 0, 0, 1) !important;
}
.faq-section .accordion-item {
    border: none;
    border-bottom: 2px solid rgba(130, 128, 111, 0.2)
}
.faq-section .accordion-button:not(.collapsed){
    background: none !important;
}
.faq-section .accordion-button:not(.collapsed){
    box-shadow: none;
}
.faq-section .accordion-body{
    padding: 0 1.25rem 0 1.25rem;
}
.faq-section .accordion-button::after{
    content: "+";
    background-image: none !important;
}
.faq-section .accordion-button:not(.collapsed)::after{
    content: "-";
    background-image: none !important;
    transform: none;
}
/*--------------------------------------------------------------
# BLog section start
--------------------------------------------------------------*/

.blog-section {
  padding: 50px 0;
}
.blog-section h2{
  font-size: 40px;
  font-weight: bold;
}
.blog-section .blog-subtitle{
  font-size: 20px;
  font-weight: 400;
  color: rgba(125, 125, 125, 1);
  margin-bottom: 2em;
}
.blog-section .single-blog-post{
  position: relative;
  z-index: 1;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  margin-bottom: 2em;
  padding: 20px;
}
.blog-section .post-thumbnail img{
  border-radius: 16px;
}
.blog-section .post-thumbnail{
  -webkit-box-flex: 0;
  -ms-flex: 0 0 200px;
  flex: 0 0 200px;
  min-width: 200px;
  margin-right: 20px;
  position: relative;
  z-index: 1;
}
.blog-section .btn-blog-slug{
  background-color: rgba(208, 255, 113, 1);
  color: rgba(62, 67, 79, 1);
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 2em;
}
.blog-section .headline{
  font-size: 18px;
  color: rgba(15, 15, 20, 1);
  font-weight: 500;
}
.blog-section .desc{
    color: (91, 97, 110, 1);
    font-size: 14px;
    font-weight: 400;
}
@media(max-width:530.98px){
  .blog-section .single-blog-post{
    flex-direction: column;
  }
  .blog-section .post-content{
    margin-top: 2em;
  }
  .blog-section .post-thumbnail{
    margin-right: 0;
  }
}
/*--------------------------------------------------------------
# Pricing Plan section start
--------------------------------------------------------------*/
.pricing-plan-section{
  padding: 50px 0;
}
.pricing-plan-section h2{
  font-size: 40px;
  font-weight: 700;
  color: rgba(28, 27, 24, 1);
}
.pricing-plan-section .switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 25px;
}
.pricing-plan-section .switch input { 
  opacity: 0;
  width: 0;
  height: 0;
}
.pricing-plan-section .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(208, 255, 113, 1);
  -webkit-transition: .4s;
  transition: .4s;
}

.pricing-plan-section .slider:before {
  position: absolute;
  content: "";
  height: 19px;
  width: 19px;
  left: 1px;
  bottom: 3px;
  background-color: rgba(4, 9, 33, 1);
  -webkit-transition: .4s;
  transition: .4s;
}

.pricing-plan-section input:checked + .slider {
  background-color: rgba(4, 9, 33, 1);
}
.pricing-plan-section input:checked + .slider:before{
  background-color:rgba(208, 255, 113, 1);
}

.pricing-plan-section input:focus + .slider {
  box-shadow: 0 0 1px rgba(4, 9, 33, 1);
}

.pricing-plan-section input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}
.pricing-plan-section .slider.round {
  border-radius: 34px;
}
.pricing-plan-section .slider.round:before {
  border-radius: 50%;
}
.pricing-plan-section .plan-body{
  background-color: rgba(255, 255, 255, 1) !important ;
}
.pricing-plan-section .plan-body.highlight{
  background-color: rgba(28, 27, 24, 1) !important;
}
.pricing-plan-section .plan-body h3{
  font-size: 24px;
  font-weight: 700;
  line-height: 28.8px;
  color: rgba(28, 27, 24, 1);
  margin-bottom: 0;
}
.pricing-plan-section .plan-body .price-plan{
  font-size: 48px !important;
  font-weight: 700;
}
.pricing-plan-section .plan-body .price-plan-time{
  font-size: 20px !important;
  font-weight: 400;
}
.pricing-plan-section .plan-body span.plan-desc{
  font-size: 16px;
  font-weight: 400;
  color: rgba(77, 82, 95, 1);
}
.pricing-plan-section .plan-body span.highlight-content{
  font-size: 16px;
  font-weight: 400;
  color: rgba(177, 178, 178, 1);
}
.pricing-plan-section .plan-body .plan-btn{
    border: 1px solid rgba(28, 27, 24, 1);
    border-radius: 100px;
    font-size: 16px;
    font-weight: 600;
}
.pricing-plan-section .plan-body .highlight-btn{
    color: rgba(28, 27, 24, 1);
    border-radius: 100px;
    font-size: 16px;
    font-weight: 600;
    background: rgba(208, 255, 113, 1);
}
@media(min-width:768px) and (max-width:991.98px){
  .pricing-plan-section .pricing-box{
    margin: 0 auto;
  }
}
.pricing-plan-section a:hover{
  color: #1C1B18;
}
/*--------------------------------------------------------------
# Testimonial section start
--------------------------------------------------------------*/
.testimonial {
  padding: 50px 0;
}
.testimonial h2{
  font-size: 40px;
  font-weight: 700;
  color: rgba(28, 27, 24, 1);
  text-align: center;
}
.testimonial p{
  color: rgba(125, 125, 125, 1);
  font-size: 20px;
  font-weight: 400;
  text-align: center;
}
.testimonial .testimonial-item {
  background-color: var(--surface-color);
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  box-sizing: content-box;
  padding: 30px;
  margin: 30px 15px;
  position: relative;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.testimonial .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50px;
  margin-right: 15px;
}

.testimonial .testimonial-item h3 {
  font-size: 24x;
  font-weight: 600;
  margin: 50px 0 10px 0;
  color: rgba(9, 35, 51, 1);
}
.testimonial .testimonial-item .btn-designation{
  background-color: rgba(208, 255, 113, 1);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 500;
  color: rgba(62, 67, 79, 1);
  padding: 10px 20px;
}

.testimonial .testimonial-item h4 {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin: 0;
}



.testimonial .testimonial-item .quote-icon-left,
.testimonial .testimonial-item .quote-icon-right {
  color: color-mix(in srgb, var(--accent-color), transparent 50%);
  font-size: 26px;
  line-height: 0;
}

.testimonial .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonial .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.testimonial .testimonial-item p {
  /* font-style: italic; */
  margin: 15px auto 15px auto;
}

.testimonial .swiper-wrapper {
  height: auto;
}

.testimonial .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonial .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: rgba(9, 35, 51, 0.2);
  opacity: 1;
}

.testimonial .swiper-pagination .swiper-pagination-bullet-active {
  background-color: rgba(9, 35, 51, 1);
}

@media (max-width: 767px) {
  .testimonial .testimonial-wrap {
    padding-left: 0;
  }

  .testimonial .testimonial-item {
    padding: 30px;
    margin: 15px;
  }

  .testimonial .testimonial-item .testimonial-img {
    position: static;
    left: auto;
  }
  .testimonial .swiper-wrapper{
    margin-top:2em ;
  }
}
.testimonial .swiper-wrapper{
  margin-top:2em ;
}
.testimonial .testimonial-item .icon{
margin: 0;
width: 72px;
height: 72px;
background: var(--accent-color);
color: var(--contrast-color);
border: 6px solid var(--contrast-color);
border-radius: 50px;
display: flex
;
align-items: center;
justify-content: center;
margin-bottom: 20px;
font-size: 28px;
transition: ease-in-out0.3s;
position: absolute;
top: -20px;
left: calc(50% - 36px);
}

/*--------------------------------------------------------------
# Industry section start
--------------------------------------------------------------*/
.industry{
  padding: 50px 0;
  background-color: rgba(28, 27, 24, 1);
}
.industry h2{
  color: rgba(208, 255, 113, 1);
  font-size: 40px;
  font-weight: 500;
  text-align: center;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 60vh;
  position: relative;
  padding: 60px 0 0 0;
  display: flex;
  align-items: center;
  background-image: linear-gradient(to bottom right, rgba(208, 255, 113, 1), #fff,rgba(208, 255, 113, 1));
}

.hero h1 {
  margin: 0;
  font-size: 64px;
  font-weight: 700;
}

.hero p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 5px 0 30px 0;
  font-size: 20px;
  font-weight: 400;
}

.hero .btn-get-started {
  color: rgba(28, 27, 24, 1);
  background: rgba(208, 255, 113, 1);
  font-weight: 500;
  font-size: 22px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 28px 12px 28px;
  border-radius: 50px;
  transition: 0.5s;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.hero .btn-get-started:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.hero .btn-watch-video {
  font-size: 16px;
  transition: 0.5s;
  margin-left: 25px;
  color: var(--default-color);
  font-weight: 500;
}

.hero .btn-watch-video i {
  color: var(--accent-color);
  font-size: 32px;
  transition: 0.3s;
  line-height: 0;
  margin-right: 8px;
}

.hero .btn-watch-video:hover {
  color: var(--accent-color);
}

.hero .btn-watch-video:hover i {
  color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.hero .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@media (max-width: 640px) {
  .hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  .hero p {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }

  .hero .btn-get-started,
  .hero .btn-watch-video {
    font-size: 13px;
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}
@media(max-width:991.98px){
  .hero-section{
    display: flex;
  }
  .hero-img{
    order: 2 !important;
  }
}

/*--------------------------------------------------------------
# Key features Section
--------------------------------------------------------------*/
.keyfeatures{
  padding: 50px 0;
}
.keyfeatures h2{
  font-size: 40px;
  font-weight: 700;
  color: rgba(28, 27, 24, 1);
  text-align: center;
  margin-bottom: 1em;
}
.keyfeatures #hexGrid {
  display: flex;
  flex-wrap: wrap;
  width: 90%;
  margin: 0 auto;
  overflow: hidden;
  font-family: sans-serif;
  list-style-type: none;
}

.keyfeatures .hex {
  position: relative;
  visibility:hidden;
  outline:1px solid transparent; /* fix for jagged edges in FF on hover transition */
  transition: all 0.5s;
  backface-visibility: hidden;
  will-change: transform;
  transition: all 0.5s;
}
.keyfeatures .hex::after{
  content:'';
  display:block;
  padding-bottom: 86.602%;  /* =  100 / tan(60) * 1.5 */
}
.keyfeatures .hexIn{
  position: absolute;
  width:96%;
  padding-bottom: 110.851%; /* =  width / sin(60) */
  margin: 2%;
  overflow: hidden;
  visibility: hidden;
  outline:1px solid transparent; /* fix for jagged edges in FF on hover transition */
  -webkit-transform: rotate3d(0,0,1,-60deg) skewY(30deg);
      -ms-transform: rotate3d(0,0,1,-60deg) skewY(30deg);
          transform: rotate3d(0,0,1,-60deg) skewY(30deg);
    transition: all 0.5s;
}
.keyfeatures .hexIn * {
  position: absolute;
  visibility: visible;
  outline:1px solid transparent; /* fix for jagged edges in FF on hover transition */
}
.keyfeatures .hexLink {
    display:block;
    width: 100%;
    height: 100%;
    text-align: center;
    color: #fff;
    overflow: hidden;
    -webkit-transform: skewY(-30deg) rotate3d(0,0,1,60deg);
        -ms-transform: skewY(-30deg) rotate3d(0,0,1,60deg);
            transform: skewY(-30deg) rotate3d(0,0,1,60deg);
}
.keyfeatures .hex img {
  left: -100%;
  right: -100%;
  margin: 0 auto; 
  height: 20%;
  width: 20%;
  top: 10%;
}

.keyfeatures .hex h1, .hex p {
  width: 100%;
  padding: 5%;
  box-sizing:border-box;
  font-weight: 300;
  /* opacity: 0; */
  opacity:1;
transition: 0.8s;
color: rgba(62, 59, 57, 1);
}

.keyfeatures #demo1 {
  color: rgba(24, 24, 24, 1);
  text-transform: capitalize;
  text-align: center;
  /* bottom: 40%; */
  padding-top:38%;
  font-size: 20px;
  z-index: 1;
  right: 0%;
}
.keyfeatures .hex h1:before, .hex h1:after {
  display: inline-block;
  margin: 0 0.5em;
  width: 0.25em;
  height: 0.03em;
  background: #ffffff;
  content: '';
  vertical-align: middle;
  transition: all 0.3s;
  text-align:center;
}

.keyfeatures #demo2 {
top: 42%;
text-align: center;
/* text-transform: uppercase; */    
}

.keyfeatures .img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-position: center center;
  background-size: cover;
  overflow: hidden;
  -webkit-clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  --b: 3px; /* adjust to control the border  */
  height: 100%; /* adjust to control the size  */
  max-height: 100%;
  aspect-ratio: cos(30deg);
  clip-path: 
    polygon(50% 0,-50% 50%,50% 100%,150% 50%,50% 0,
    50% var(--b),
    calc(100% - var(--b)*sin(60deg)) calc(25% + var(--b)*cos(60deg)),
    calc(100% - var(--b)*sin(60deg)) calc(75% - var(--b)*cos(60deg)),
    50% calc(100% - var(--b)),
    calc(var(--b)*sin(60deg)) calc(75% - var(--b)*cos(60deg)),
    calc(var(--b)*sin(60deg)) calc(25% + var(--b)*cos(60deg)),
    50% var(--b));
  background:  rgba(0, 0, 0, 0.1);
}

.keyfeatures .img:before, .img:after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: '';
  opacity: 0;
  transition: opacity 0.5s;
}
.keyfeatures .img:before {
  background: rgba(22, 103, 137, 0.3)
}
.keyfeatures .img:after {
  background: linear-gradient(to top, transparent, rgba(0, 0, 0, 0.5), transparent);
}
@media (min-width:1201px) { /* <- 5-4  hexagons per row */
  .keyfeatures #hexGrid{
    padding-bottom: 7.4%
  }
  .keyfeatures .hex {
    width: 25%; /* = 100 / 5 */
  }
  .keyfeatures .hex:nth-child(7n+5){ /* first hexagon of even rows */
    margin-left:12.5%;  /* = width of .hex / 2  to indent even rows */
  }
}

@media (max-width: 1200px) and (min-width:901px) { /* <- 4-3  hexagons per row */
  .keyfeatures #hexGrid{
    padding-bottom: 7.5%;
    font-size: 13px;
  }
  .keyfeatures .hex {
    width: 25%; /* = 100 / 4 */
  }
  .keyfeatures .hex:nth-child(7n+5){ /* first hexagon of even rows */
    margin-left:12.5%;  /* = width of .hex / 2  to indent even rows */
  }
}

@media (max-width: 900px) and (min-width:601px) { /* <- 3-2  hexagons per row */
  .keyfeatures #hexGrid{
    padding-bottom: 7.4%;
    font-size: 14px;
  }
  .keyfeatures .hex {
    width: 33.333%; /* = 100 / 3 */
  }
  .keyfeatures .hex:nth-child(5n+4){ /* first hexagon of even rows */
    margin-left:16.666%;  /* = width of .hex / 2  to indent even rows */
  }
}

@media (max-width: 600px) { /* <- 2-1  hexagons per row */
  .keyfeatures #hexGrid{
    padding-bottom: 11.2%;
    font-size: 12px;
  }
  .keyfeatures .hex {
    width: 50%; /* = 100 / 3 */
  }
  .keyfeatures .hex:nth-child(3n+3){ /* first hexagon of even rows */
    margin-left:25%;  /* = width of .hex / 2  to indent even rows */
  }
}

@media (max-width: 400px) {
  .keyfeatures #hexGrid {
        font-size: 8px;
    }
}
/*--------------------------------------------------------------
# About hero Section
--------------------------------------------------------------*/
.about-hero{
  padding-bottom: 50px;
}
/*--------------------------------------------------------------
# Contact hero Section
--------------------------------------------------------------*/
.contact-hero{
  padding-bottom: 50px;
}
.contact-hero .contct-form{
  background: rgba(255, 255, 255, 1);
  padding: 2em;
  border-radius: 20px;
  border: 1px solid rgba(201, 201, 201, 1);
  /* box-shadow: rgba(0, 0, 0, 0.1); */
  box-shadow: 0px 5px 90px 0px rgba(0, 0, 0, 0.1);

}
.contact-hero .contct-form .form-control{
  background-color: rgba(246, 246, 246, 1);
  color: rgba(88, 86, 86, 0.6);
  font-size: 14px;
}
.contact-hero .contct-form input{
  border-radius: 58px;
}
.contact-hero textarea {
  height: 120px;
  resize: none;
  width: 100%;
  padding: 8px;
  border: none;
  border-radius: 30px;
  font-size: 16px;
  background: #f8f8f8;
  outline: none;
  transition: 0.3sease;
}
.contact-hero .contact-hero-submit{
  background: rgba(208, 255, 113, 1);
  padding: 12px 0;
  border-radius: 48px;
  width: 100%;
  border: none;
  font-size: 22px;
  color: rgba(28, 27, 24, 1);
}
/*--------------------------------------------------------------
# Contact detail Section
--------------------------------------------------------------*/
.contact-detail{
  padding: 50px 0;
}
.contact-detail h2{
  font-size: 60px;
  font-weight: 700;
  text-align: center;
}
.contact-detail .contact-item {
  background-color: var(--surface-color);
  box-shadow: 0px 5px 90px 0px rgba(0, 0, 0, 0.1);
  height: 100%;
  padding: 40px 30px 15px 30px;
  text-align: center;
  transition: 0.3s;
  border-radius: 20px;
  border: 1px solid rgba(201, 201, 201, 1);
}
.contact-detail .contact-item .icon img{
  width: 80%;
}
.contact-detail .contact-item .icon {
    margin: 0;
    width: 72px;
    height: 72px;
    background: var(--accent-color);
    color: var(--contrast-color);
    border: 6px solid var(--contrast-color);
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 28px;
    transition: ease-in-out0 .3s;
    position: absolute;
    top: -35px;
    left: calc(50% - 36px);
}
.contact-detail .contact-item h3{
  font-size: 24px;
  font-weight: 700;
  color: rgba(28, 27, 24, 1);
}
.contact-detail .contact-item p{
  font-size: 20px;
  font-weight: 400;
  color:rgba(59, 72, 86, 1);
}
@media(max-width:991.98px){
  .contact-detail .contact-box{
    margin-top: 3rem !important;
  }
}
.map-section{
  padding: 50px 0;
}
/*--------------------------------------------------------------
# pricing page Section
--------------------------------------------------------------*/
.pricing-section{
  padding: 50px 0;
}
.pricing-section h2{
  font-size: 40px;
  font-weight: 700;
  color: rgba(28, 27, 24, 1);
  text-align: center;
}
.pricing-section p{
  font-size: 20px;
  font-weight: 400;
  color: rgba(28, 27, 24, 1);
  text-align: center;  
}
.pricing-section .switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 25px;
}
.pricing-section .switch input { 
  opacity: 0;
  width: 0;
  height: 0;
}
.pricing-section .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(208, 255, 113, 1);
  -webkit-transition: .4s;
  transition: .4s;
}

.pricing-section .slider:before {
  position: absolute;
  content: "";
  height: 19px;
  width: 19px;
  left: 1px;
  bottom: 3px;
  background-color: rgba(4, 9, 33, 1);
  -webkit-transition: .4s;
  transition: .4s;
}

.pricing-section input:checked + .slider {
  background-color: rgba(4, 9, 33, 1);
}
.pricing-section input:checked + .slider:before{
  background-color:rgba(208, 255, 113, 1);
}

.pricing-section input:focus + .slider {
  box-shadow: 0 0 1px rgba(4, 9, 33, 1);
}

.pricing-section input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}
.pricing-section .slider.round {
  border-radius: 34px;
}
.pricing-section .slider.round:before {
  border-radius: 50%;
}
.pricing-section .plan-btn{
  border: 1px solid rgba(28, 27, 24, 1);
  border-radius: 100px;
  font-size: 16px;
  font-weight: 600;
}
.pricing-section .highlight-btn{
  color: rgba(28, 27, 24, 1);
  border-radius: 100px;
  font-size: 16px;
  font-weight: 600;
  background: rgba(208, 255, 113, 1);
}
.pricing-section table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
  /* border: 1px solid #ddd; */
}

.pricing-section th, .pricing-section td {
  text-align: left;
  padding: 8px;
}

.pricing-section tr:nth-child(odd){background-color: #f2f2f2}


/*--------------------------------------------------------------
# Blog page Section
--------------------------------------------------------------*/
.blog-hero{
  padding: 50px 0;
  background-image: linear-gradient(to bottom right, rgba(208, 255, 113, 1), #fff,rgba(208, 255, 113, 1));
}
/*--------------------------------------------------------------
# Blog detail page Section
--------------------------------------------------------------*/
.blog-detail-hero{
  padding: 50px 0;
}
.blog-detail-hero .blog-detail-title{
  font-size: 40px;
  font-weight: 700;
  color: rgba(28, 27, 24, 1);
  text-align: center;
}
.blog-detail-hero .blog-detail-desc{
  font-size: 20px;
  font-weight: 400;
  color: rgba(28, 27, 24, 1);
  text-align: center;
}
.blog-detail-hero .blogdetail-image-box img{
  width: 100%;
  height: auto;
}
.blog-detail-hero .social-share h3,
.blog-detail-hero .social-share a{
  margin-right: 15px;
}
/*--------------------------------------------------------------
# Services page Section
--------------------------------------------------------------*/
.approvals-section{
}
.approvals-section .approvals-head-section{
  padding: 50px 0;
  background: rgba(208, 255, 113, 1);
}
.approvals-section .Approvals-service{
  font-size: 14px;
  font-weight: 500;
  color: rgba(28, 27, 24, 1);
  text-align: center;
}
.approvals-section .Approvals-service a{
  font-size: 14px;
  font-weight: 700;
  color: rgba(28, 27, 24, 1);
  text-align: center;
}
.approvals-section h1{
  font-size: 60px;
  font-weight: 700;
  color: rgba(28, 27, 24, 1);
  text-align: center;
  text-transform: uppercase;
}
.approvals-section .approvals-body-section{
  padding: 50px 0 ;
}

.approval-desc-section{
  padding: 50px 0;
}
@media(max-width:480px){
  .approvals-section h1{
    font-size: 32px;
  }
}
/*--------------------------------------------------------------
# TERMS & CONDITIONS page Section
--------------------------------------------------------------*/
.terms-conditions-section{
  padding: 50px 0;
}
.terms-conditions-section h1{
  font-size: 40px;
  font-weight: 700;
  color: rgba(28, 27, 24, 1);
  text-align: center;
}
.terms-conditions-section li{
  list-style: unset;
}


/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features {
  overflow: hidden;
  padding: 50px 0;
}
.features h2{
  font-size: 40px;
  font-weight: 700;
  color: rgba(28, 27, 24, 1);
  text-align: center;
  margin: 0 0 30px 0;
}

.features .nav-tabs {
  border: 0;
}

.features .nav-link {
  border: 0;
  padding: 12px 15px 12px 0;
  transition: 0.3s;
  color: #1C1B18;
  border-radius: 0 !important;
  /* border-right: 2px solid #dddbdb !important; */
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 20px;
}

.features .nav-link:hover {
  color: #D0FF71;
  border-radius: 0 !important;
  border-right: 2px solid #D0FF71 !important;
  border-left: none !important;
  border-top: none !important;
  border-bottom: none !important;
  background-color: #1C1B18 !important;
  padding-left: 20px;

}

.features .nav-link.active {
  color: #D0FF71 !important;
  /* border-color:none !important; */
  background-color: #1C1B18 !important;
  border-radius: 0 !important;
  /* border-right: 2px solid #D0FF71 !important; */
  border-left: none !important;
  border-top: none !important;
  border-bottom: none !important;
  padding-left: 20px;
}

.features .tab-pane.active {
  animation: fadeIn 0.5s ease-out;
}

.features .details h3 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 20px;
}

.features .details p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 20px;
}

.features .details p:last-child {
  margin-bottom: 0;
}

@media (max-width: 992px) {
  .features .nav-link {
    border: 0;
    padding: 15px;
  }

  .features .nav-link.active {
    color: #D0FF71;
    background: #D0FF71;
  }
}
