﻿#preloader {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background-color: #fff;
    z-index: 999999;
    transition: 0.3s ease opacity;
    text-align: center;
    width: 100%;
    height: 100%;
  }
  #preloader:before {
    content: "";
    width: 80px;
    height: 80px;
    border: 3px solid #8cc63f;
    display: block;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    opacity: 0;
    transform: translate(-50%, -50%);
    animation-name: LoaderCicle;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
  }
  #preloader:after {
    content: "";
    width: 80px;
    height: 80px;
    border: 3px solid #8cc63f;
    display: block;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    opacity: 0;
    transform: translate(-50%, -50%);
    animation-name: LoaderCicle;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    animation-delay: 1s;
  }
  @keyframes LoaderCicle {
    0% {
      width: 0;
      height: 0;
      opacity: 0;
    }
    10% {
      width: 10px;
      height: 10px;
      opacity: 1;
    }
    80% {
      width: 60px;
      height: 60px;
      opacity: 0.1;
    }
    100% {
      width: 70px;
      height: 70px;
      opacity: 0;
    }
  }
  a:hover,
  a:active {
    color: #8cc63f;
    text-decoration: none;
  }
  .min-height-300 {
    min-height: 300px;
  }
  .text-primary {
    color: #8cc63f !important;
  }
  .text-secondary {
    color: #212529 !important;
  }
  .bg-primary {
    background-color: #8cc63f !important;
  }
  .bg-secondary {
    background-color: #212529 !important;
  }
  .primary-overlay[data-overlay-dark]:before {
    background: #8cc63f;
  }
  .secondary-overlay[data-overlay-dark]:before {
    background: #212529;
  }
  .left-overlay-secondary[data-overlay-dark]:before {
    background: rgba(33, 37, 41, 0.76);
    background: linear-gradient(-90deg, transparent, #212529 65%);
  }
  .text-dark {
    color: #212529 !important;
  }
  .primary-shadow {
    box-shadow: 0 0 70px rgba(0, 0, 0, 0.08);
  }
  .text-white-hover:hover {
    color: #fff !important;
  }
  .text-white-hover-light:hover {
    color: rgba(255, 255, 255, 0.65) !important;
  }
  .team-btn {
    margin-top: -45px;
  }
  @media screen and (max-width: 1199px) {
    .team-btn {
      margin-top: 20px;
    }
  }
  .top-radius {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
  }
  .min-vh-100 {
    min-height: 100vh;
  }
  .height-300 {
    height: 300px;
  }
  .scroll-to-top {
    font-size: 20px;
    text-align: center;
    color: #fff;
    text-decoration: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: none;
    background: #8cc63f;
    width: 40px;
    height: 40px;
    line-height: 40px;
    z-index: 9999;
    outline: 0;
    -webkit-transition: all 0.3s ease;
  }
  .scroll-to-top i {
    color: #fff;
  }
  .scroll-to-top:hover {
    color: #fff;
    background: #212529;
  }
  .scroll-to-top:hover i {
    color: #fff;
  }
  .scroll-to-top:visited {
    color: #fff;
    text-decoration: none;
  }
  .list-style1 {
    margin: 0;
    padding: 0;
  }
  .list-style1 li {
    margin-bottom: 20px;
  }
  .list-style1 li:last-child {
    margin-bottom: 0;
  }
  .list-style1 li a {
    color: #fff;
    font-size: 16px;
  }
  .list-style1 li a:hover {
    color: rgba(255, 255, 255, 0.6);
  }
  .list-style2 {
    list-style: none;
    padding-left: 0;
  }
  .list-style2 li {
    line-height: 32px;
    padding-left: 30px;
    position: relative;
    margin-bottom: 8px;
  }
  .list-style2 li:last-child {
    margin-bottom: 0;
  }
  .list-style2 li:before {
    content: "\e64c";
    font-family: "themify";
    font-size: 18px;
    position: absolute;
    top: 0;
    left: 0;
    font-weight: 700;
    line-height: 35px;
    color: #8cc63f;
  }
  .btn-style1 {
    z-index: 1;
    color: #fff;
    font-size: 14px;
    overflow: hidden;
    cursor: pointer;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    font-weight: 600;
    position: relative;
    border-radius: 5px;
    text-align: center;
    padding: 11px 40px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-transform: uppercase;
    background-color: #8cc63f;
  }
  .btn-style1:hover {
    color: #fff;
  }
  .btn-style1:before {
    z-index: -1;
    content: "";
    -webkit-transition: 0.75s;
    -o-transition: 0.75s;
    transition: 0.75s;
    position: absolute;
    width: 0;
    height: 0;
    background: transparent;
    left: 0;
    top: 0;
    border-bottom: 55px solid transparent;
    border-left: 350px solid #212529;
  }
  .btn-style1:after {
    z-index: -1;
    content: "";
    -webkit-transition: 0.75s;
    -o-transition: 0.75s;
    transition: 0.75s;
    position: absolute;
    width: 0;
    height: 0;
    background: transparent;
    right: 0;
    bottom: 0;
    border-top: 55px solid transparent;
    border-right: 350px solid #212529;
  }
  .btn-style1:hover:before {
    border-bottom: 0px solid transparent;
    border-left: 0px solid #212529;
  }
  .btn-style1:hover:after {
    border-top: 0px solid transparent;
    border-right: 0px solid #212529;
  }
  .btn-style1.medium {
    padding: 9px 30px !important;
    font-size: 12px;
  }
  .btn-style1.small {
    padding: 6px 20px;
    font-size: 10px;
  }
  .btn-style1.primary {
    background-color: #fff;
  }
  .btn-style1.primary:before {
    border-left: 350px solid #8cc63f;
  }
  .btn-style1.primary:after {
    border-right: 350px solid #8cc63f;
  }
  .btn-style1.primary:hover {
    color: #8cc63f;
  }
  .btn-style1.primary:hover:before {
    border-left: 0px solid #8cc63f;
  }
  .btn-style1.primary:hover:after {
    border-right: 0px solid #8cc63f;
  }
  @media screen and (min-width: 992px) {
    .header-style1.scrollHeader .attr-nav > ul > li > a.btn-style1 {
      color: #fff;
      border: 1px solid transparent;
    }
    .header-style1.scrollHeader .attr-nav > ul > li > a.btn-style1:hover,
    .header-style1.scrollHeader .attr-nav > ul > li > a.btn-style1:active,
    .header-style1.scrollHeader .attr-nav > ul > li > a.btn-style1:focus {
      color: #8cc63f;
      border: 1px solid #8cc63f;
    }
  }
  .top-bar-info {
    display: inline-block;
    vertical-align: middle;
  }
  .top-bar-info ul {
    margin-bottom: 0;
  }
  .top-bar-info li {
    font-weight: 500;
    color: #fff;
    list-style-type: none;
    font-size: 14px;
    padding: 0 5px 0;
    display: inline-block;
    margin-bottom: 0;
  }
  .top-bar {
    display: block;
    position: relative;
    z-index: 999;
    padding: 7px 0;
  }
  .top-bar-info li i {
    font-size: 16px;
    color: #fff;
    margin-right: 8px;
    margin-top: 0;
    display: inline-block;
    vertical-align: text-bottom;
  }
  .top-social-icon {
    padding: 0;
    float: right;
    margin: 0;
  }
  .top-social-icon li {
    font-size: 14px;
    list-style-type: none;
    float: left;
    text-align: center;
    margin: 0;
    padding: 0 7px;
  }
  .top-social-icon li:last-child {
    padding-right: 0;
  }
  .top-social-icon li:last-child a {
    padding-right: 0;
  }
  .top-social-icon li a {
    color: #fff;
    line-height: 28px;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    padding: 0 3px;
  }
  .top-social-icon li a:hover {
    color: rgba(255, 255, 255, 0.65);
  }
  .navbar-nav li.current > a,
  .navbar-nav li.active > a {
    color: #8cc63f;
  }
  .attr-nav > ul > li > a.butn {
    color: #fff;
  }
  .navbar > ul > li.current > a:after {
    border-color: transparent #8cc63f #8cc63f transparent;
  }
  .menu_area-light .navbar-nav li.current > a,
  .menu_area-light .navbar-nav li.active > a {
    color: #8cc63f;
  }
  .menu_area-light .navbar > ul > li.current > a:after {
    border-color: transparent #8cc63f #8cc63f transparent;
  }
  .menu_area-light.scrollHeader .navbar-nav li.current > a {
    color: #8cc63f;
  }
  .menu_area-light.scrollHeader .navbar-nav li.current > a:hover {
    color: #8cc63f;
  }
  .menu_area-light.scrollHeader .navbar-nav li.active > a {
    color: #8cc63f;
  }
  .menu_area-light.scrollHeader .navbar > ul > li.current > a:after {
    border-color: transparent #8cc63f #8cc63f transparent;
  }
  @media screen and (min-width: 992px) {
    .menu_area-light .navbar ul ul li.active > a,
    .menu_area-light .navbar-nav li.has-sub a:hover {
      color: #8cc63f;
    }
    .menu_area-light .navbar > ul > li.has-sub > a:hover:after {
      border-color: #8cc63f;
    }
    .menu_area-light.scrollHeader .navbar-nav > li.has-sub > a:hover {
      color: #8cc63f;
    }
    .header-style2.scrollHeader .navbar-nav > li.has-sub > a:hover {
      color: #8cc63f;
    }
    .header-style2.scrollHeader .navbar-nav > li.has-sub > a:hover:after {
      border-color: transparent #8cc63f #8cc63f transparent;
    }
    .header-style2 .navbar > ul > li.has-sub.current > a:hover:after {
      border-color: transparent #8cc63f #8cc63f transparent;
    }
    .header-style2.scrollHeader .navbar-nav li.current > a {
      color: #8cc63f;
    }
    .header-style2.scrollHeader .navbar-nav li.current > a:hover {
      color: #8cc63f;
    }
    .header-style2.scrollHeader .navbar > ul > li.current > a:after {
      border-color: transparent #8cc63f #8cc63f transparent;
    }
    .header-style2 .navbar ul ul li.active > a {
      color: #8cc63f;
    }
    .header-style2 .navbar-nav li.has-sub a:hover,
    .header-style2 .navbar-nav li.has-sub a:active,
    .header-style2 .navbar-nav li.has-sub a:focus,
    .header-style2 .navbar-nav li.current > a,
    .header-style2 .navbar-nav li.active > a {
      color: #8cc63f;
    }
    .header-style2 .navbar > ul > li.has-sub > a:hover:after,
    .header-style2 .navbar > ul > li.has-sub > a:active:after,
    .header-style2 .navbar > ul > li.has-sub > a:focus:after {
      border-color: transparent #8cc63f #8cc63f transparent;
    }
  }
  @media screen and (max-width: 991px) {
    .header-style1 .navbar-toggler {
      background: #8cc63f;
    }
    .header-style1 .navbar-toggler:after {
      border-top: 2px solid #fff;
      border-bottom: 2px solid #fff;
    }
    .header-style1 .navbar-toggler:before {
      background: #fff;
    }
    .header-style1 .navbar-toggler.menu-opened:after,
    .header-style1 .navbar-toggler.menu-opened:before {
      background: #fff;
    }
  }
  .header-style2 .navbar-nav li.current > a {
    color: #8cc63f;
  }
  .header-style2 .navbar > ul > li.current > a:after {
    border-color: transparent #8cc63f #8cc63f transparent;
  }
  .header-style2.scrollHeader .navbar-nav li.current > a {
    color: #8cc63f;
  }
  .header-style2.scrollHeader .navbar-nav li.current > a:hover {
    color: #8cc63f;
  }
  .header-style2.scrollHeader .navbar > ul > li.current > a:after {
    border-color: transparent #8cc63f #8cc63f transparent;
  }
  @media screen and (min-width: 992px) {
    .header-style2 .navbar ul ul li.active > a {
      color: #8cc63f;
    }
    .header-style2 .butn.secondary:before {
      background: #ffffff;
    }
    .header-style2 .butn.secondary:hover,
    .header-style2 .butn.secondary:focus,
    .header-style2 .butn.secondary:active {
      color: #212529 !important;
    }
    .header-style2.scrollHeader .butn.secondary:before {
      background: #fff;
    }
    .header-style2.scrollHeader .butn.secondary:hover,
    .header-style2.scrollHeader .butn.secondary:focus,
    .header-style2.scrollHeader .butn.secondary:active {
      color: #212529 !important;
      background: #212529;
    }
  }
  .slider-fade2 h1 {
    animation-delay: 1s;
  }
  .slider-fade2 p {
    animation-delay: 1.6s;
  }
  .slider-fade2 a {
    animation-delay: 1.2s;
  }
  .slider-fade2 .title-style1 span {
    animation-delay: 0.8s;
  }
  .slider-fade2.owl-theme .owl-nav {
    margin: 0;
  }
  .slider-fade2.owl-theme .owl-nav [class*="owl-"] {
    position: absolute;
    bottom: 0;
    left: 30px;
    font-size: 18px;
    border-radius: 4px;
    color: #8cc63f;
    box-shadow: none;
    transition: all 0.3s ease;
    background: #ffffff !important;
    line-height: 67px;
    width: 55px;
    height: 55px;
  }
  .slider-fade2.owl-theme .owl-nav [class*="owl-"]:hover {
    background: #8cc63f !important;
    color: #fff;
  }
  .slider-fade2.owl-theme .owl-nav [class*="owl-"]:hover i {
    color: #fff;
  }
  .slider-fade2.owl-theme .owl-nav .owl-prev {
    top: 42%;
  }
  .slider-fade2.owl-theme .owl-nav .owl-next {
    top: 51%;
  }
  .slider-fade2 .owl-dots {
    position: absolute;
    bottom: 20px;
    right: 10px;
    margin: 0 !important;
  }
  .slider-fade2.owl-theme .owl-dots .owl-dot.active span,
  .slider-fade2.owl-theme .owl-dots .owl-dot:hover span {
    background-color: #8cc63f;
  }
  .slider-fade2.owl-theme .owl-dots .owl-dot.active span {
    width: 35px;
    height: 5px;
  }
  .slider-fade2.owl-theme .owl-dots .owl-dot span {
    width: 20px;
    height: 5px;
    transition: width 0.35s ease-in-out;
  }
  .ani-top-bottom {
    animation-name: float-y;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
  }
  @keyframes float-y {
    0% {
      transform: translateY(-20px);
    }
    50% {
      transform: translateY(-10px);
    }
    to {
      transform: translateY(-20px);
    }
  }
  .ani-left-right {
    animation-name: float-x;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
  }
  @keyframes float-x {
    0% {
      transform: translateX(-20px);
    }
    50% {
      transform: translateX(-10px);
    }
    to {
      transform: translateX(-20px);
    }
  }
  .banner-shape:before {
    content: "";
    position: absolute;
    width: 45%;
    height: 950px;
    background-color: #e0e0e0;
    top: 0;
    left: 0;
    overflow: visible;
    z-index: 1;
    margin-top: -96px;
    border-bottom-right-radius: 10px;
  }
  .banner-border-radius {
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
  }
  .banner-one h1 {
    font-size: 70px;
  }
  @media screen and (max-width: 1199px) {
    .banner-one h1 {
      font-size: 60px;
    }
    .banner-shape:before {
      height: 900px;
    }
  }
  @media screen and (max-width: 991px) {
    .banner-one h1 {
      font-size: 58px;
    }
  }
  @media screen and (max-width: 575px) {
    .banner-shape:before {
      height: 660px;
    }
    .banner-one h1 {
      font-size: 35px;
    }
  }
  .section-title span {
    position: relative;
    display: inline-block;
    font-size: 16px;
    font-weight: 800;
    color: #8cc63f;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
  }
  .section-title span:before {
    position: absolute;
    content: "";
    left: 0;
    bottom: 0px;
    width: 100%;
    height: 1px;
    background-color: #8cc63f;
  }
  .section-title h2 {
    font-size: 40px;
    margin-bottom: 0;
  }
  .section-title.footer span {
    margin-bottom: 0;
  }
  .section-title.team-details-title h2,
  .section-title.md h2 {
    font-size: 25px;
  }
  .section-title.sm h2 {
    font-size: 20px;
  }
  .section-title.large-title span:before {
    background-color: #212529;
  }
  @media screen and (max-width: 1399px) {
    .section-title h2 {
      font-size: 35px;
    }
  }
  @media screen and (max-width: 1199px) {
    .section-title h2 {
      font-size: 28px;
    }
  }
  @media screen and (max-width: 575px) {
    .section-title.team-details-name span {
      font-size: 13px;
      margin-bottom: 10px;
    }
    .section-title.team-details-name h2 {
      font-size: 25px;
    }
    .section-title h2 {
      font-size: 25px;
    }
  }
  .page-title-section {
    padding: 170px 0 100px 0;
  }
  .page-title-section.style1 {
    padding: 150px 0;
  }
  .page-title-section h1 {
    font-size: 54px;
    line-height: 1;
    text-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
    color: #fff;
    margin-bottom: 15px;
    position: relative;
    z-index: 9;
    text-transform: uppercase;
    letter-spacing: 2px;
  }
  .page-title-section .sub-title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    text-align: center;
  }
  .page-title-section .sub-title ul {
    margin: 0;
    padding: 16px 18px;
    list-style: none;
    display: inline-block;
    line-height: 1.2;
    background: #fff;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    position: relative;
    z-index: 9;
    max-width: 350px;
  }
  .page-title-section ul li {
    display: inline-block;
  }
  .page-title-section ul li:last-child {
    color: #ffffff;
    opacity: 0.8;
    font-size: 16px;
    font-weight: 700;
    text-transform: capitalize;
    letter-spacing: 1px;
  }
  .page-title-section ul li:last-child a {
    opacity: 0.8;
    font-size: 16px;
    font-weight: 700;
    text-transform: capitalize;
    letter-spacing: 1px;
  }
  .page-title-section ul li:after {
    content: "\f0c8";
    font-weight: 700;
    vertical-align: middle;
    color: #8cc63f;
    font-size: 9px;
    font-family: "Font Awesome 6 Free";
    padding: 0 5px 0 10px;
  }
  .page-title-section ul li:last-child:after {
    content: none;
  }
  .page-title-section ul li a {
    font-size: 16px;
    font-weight: 700;
    text-transform: capitalize;
    letter-spacing: 1px;
  }
  .page-title-section.style1 {
    padding: 130px 0;
  }
  @media screen and (max-width: 1199px) {
    .page-title-section {
      padding: 170px 0 110px 0;
    }
    .page-title-section h1 {
      font-size: 48px;
      margin-bottom: 10px;
    }
  }
  @media screen and (max-width: 991px) {
    .page-title-section {
      padding: 150px 0 110px 0;
    }
    .page-title-section h1 {
      font-size: 44px;
    }
  }
  @media screen and (max-width: 575px) {
    .page-title-section {
      padding: 140px 0 90px 0;
    }
    .page-title-section.style1 {
      padding: 100px 0;
    }
    .page-title-section h1 {
      font-size: 34px;
    }
  }
  .card-style01 {
    -webkit-transition: all 0.5s ease-out 0s;
    -moz-transition: all 0.5s ease-out 0s;
    -ms-transition: all 0.5s ease-out 0s;
    -o-transition: all 0.5s ease-out 0s;
    transition: all 0.5s ease-out 0s;
  }
  .card-style01:hover {
    border-color: #8cc63f;
  }
  .card-style01 .card-body .icon {
    width: 50px;
    height: 50px;
    background-color: rgba(140, 198, 63, 0.2);
    border-radius: 3px;
    display: flex;
    justify-content: center;
    align-items: center;
    -webkit-transition: all 0.5s ease-out 0s;
    -moz-transition: all 0.5s ease-out 0s;
    -ms-transition: all 0.5s ease-out 0s;
    -o-transition: all 0.5s ease-out 0s;
    transition: all 0.5s ease-out 0s;
  }
  .card-style01:hover .card-body .icon {
    box-shadow: inset 0 0 0 40px #8cc63f;
  }
  .card-style01:hover .card-body .icon img {
    filter: brightness(0) invert(1);
  }
  .card-style02 .plus-icon {
    position: absolute;
    display: flex;
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    top: -20px;
    right: 25px;
  }
  .card-style02:hover .plus-icon {
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 0.4s ease-out 0s;
    transition: all 0.4s ease-out 0s;
  }
  .card-style02 .btn-text {
    visibility: hidden;
    opacity: 0;
    -webkit-transform: translateY(-100px);
    transform: translateY(-100px);
    -webkit-transition: all 0.4s ease-out 0s;
    transition: all 0.4s ease-out 0s;
  }
  .card-style02 .btn-text a {
    position: absolute;
    top: 0px;
    right: -18px;
    background-color: #fff;
    font-size: 14px;
    color: #8cc63f;
    font-weight: 700;
    text-align: center;
    transform: rotate(-90deg) translateX(35%) translateY(0);
    padding: 5px 23px;
    border-radius: 5px;
  }
  .card-style02:hover .btn-text {
    -webkit-transform: translateY(-120px);
    transform: translateY(-120px);
    visibility: visible;
    opacity: 1;
  }
  .card-style03 .card-body {
    background-color: #fff;
    padding: 15px 15px 0 15px;
    margin: -50px 20px 0 20px;
    text-align: center;
    border-radius: 10px;
  }
  .card-style03 .card-body .icon {
    visibility: hidden;
    opacity: 0;
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
    -webkit-transition: all 0.4s ease-out 0s;
    transition: all 0.4s ease-out 0s;
  }
  .card-style03 .card-body .icon li {
    display: inline-block;
    margin: 0 3px;
  }
  .card-style03 .card-body .icon li a {
    width: 30px;
    height: 30px;
    background-color: #212529;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    border-radius: 50%;
    font-size: 12px;
  }
  .card-style03 .card-body .icon li a:hover {
    background-color: #8cc63f;
  }
  .card-style03:hover .card-body .icon {
    -webkit-transform: translateY(-86px);
    transform: translateY(-86px);
    visibility: visible;
    opacity: 1;
  }
  .card-style04 .card-body {
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    margin-left: 60px;
  }
  .card-style04 .card-body .price-tag {
    position: absolute;
    top: 0px;
    right: 0px;
    background-color: #fff;
    font-size: 14px;
    color: #8cc63f;
    font-weight: 700;
    text-align: center;
    transform: rotate(-90deg) translateX(35%) translateY(0);
    padding: 5px 23px;
    border-radius: 5px;
    text-transform: uppercase;
  }
  @media screen and (max-width: 1399px) {
    .card-style04 .card-body {
      margin-left: 40px;
    }
    .card-style04 .card-body .price-tag {
      right: -10px;
    }
  }
  @media screen and (max-width: 1199px) {
    .card-style04 .card-body {
      margin-left: 25px;
    }
  }
  @media screen and (max-width: 991px) {
    .card-style04 .card-body .price-tag {
      font-size: 12px;
    }
  }
  .card-style05 .plus-icon {
    position: absolute;
    display: flex;
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    top: -20px;
    right: 25px;
  }
  .card-style05:hover .plus-icon {
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 0.4s ease-out 0s;
    transition: all 0.4s ease-out 0s;
  }
  .card-style05 .btn-text {
    visibility: hidden;
    opacity: 0;
    -webkit-transform: translateY(-100px);
    transform: translateY(-100px);
    -webkit-transition: all 0.4s ease-out 0s;
    transition: all 0.4s ease-out 0s;
  }
  .card-style05 .btn-text a {
    position: absolute;
    top: 0px;
    right: -42px;
    background-color: #fff;
    font-size: 14px;
    color: #8cc63f;
    font-weight: 700;
    text-align: center;
    transform: rotate(-90deg) translateX(35%) translateY(0);
    padding: 5px 23px;
    border-radius: 5px;
  }
  .card-style05:hover .btn-text {
    -webkit-transform: translateY(-120px);
    transform: translateY(-120px);
    visibility: visible;
    opacity: 1;
  }
  .card-style05 .card-body {
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
  }
  .card-style05 .blog-img:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-transition: all 0.5s ease-out 0s;
    -moz-transition: all 0.5s ease-out 0s;
    -ms-transition: all 0.5s ease-out 0s;
    -o-transition: all 0.5s ease-out 0s;
    transition: all 0.5s ease-out 0s;
    opacity: 0;
    visibility: hidden;
  }
  .card-style05:hover .blog-img:before {
    opacity: 1;
    visibility: visible;
    box-shadow: inset 0 0 0 200px rgba(0, 0, 0, 0.2);
  }
  @media screen and (max-width: 991px) {
    .card-style05 .btn-text a {
      top: -20px;
    }
  }
  .embed-responsive {
    position: relative;
    display: block;
    height: 0;
    padding: 0;
    overflow: hidden;
  }
  .embed-responsive .embed-responsive-item,
  .embed-responsive iframe,
  .embed-responsive embed,
  .embed-responsive object,
  .embed-responsive video {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
  }
  .embed-responsive-16by9 {
    padding-bottom: 56.25%;
  }
  .embed-responsive-4by3 {
    padding-bottom: 75%;
  }
  .fullscreen-bg {
    position: absolute;
    top: -15px;
    right: 0;
    bottom: 0;
    left: 0;
    overflow: hidden;
    z-index: -100;
  }
  .fullscreen-bg__video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  @media (min-aspect-ratio: 16 / 9) {
    .fullscreen-bg__video {
      height: 300%;
      top: -100%;
    }
  }
  @media (max-aspect-ratio: 16 / 9) {
    .fullscreen-bg__video {
      width: 300%;
      left: -100%;
    }
  }
  @supports (-webkit-touch-callout: none) {
    @media (min-aspect-ratio: 16 / 9) {
      .fullscreen-bg__video {
        height: 400%;
        top: -100%;
      }
    }
    @media (max-aspect-ratio: 16 / 9) {
      .fullscreen-bg__video {
        width: 400%;
        left: -100%;
      }
    }
  }
  .video_btn {
    position: relative;
    height: 80px;
    width: 80px;
    background: #8cc63f;
    text-align: center;
    display: inline-block;
    line-height: 80px;
    color: #fff;
    border-radius: 50%;
    transition-duration: 0s;
    -ms-transition-duration: 0s;
    -moz-transition-duration: 0s;
    -webkit-transition-duration: 0s;
    -o-transition-duration: 0s;
  }
  .video_btn:hover i,
  .video_btn:focus i {
    color: #fff;
  }
  .video_btn:after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    height: 80px;
    width: 80px;
    border: 2px solid #8cc63f;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -webkit-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    -o-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    opacity: 0.3;
    animation: pulse-border 1500ms ease-out infinite;
  }
  .video_btn:before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    height: 95px;
    width: 95px;
    border: 2px solid #8cc63f;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -webkit-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    -o-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    opacity: 0.3;
    animation: pulse-border 1500ms ease-out infinite;
  }
  .video_btn.small {
    width: 55px;
    height: 55px;
    line-height: 55px;
  }
  .video_btn.small:after {
    height: 50px;
    width: 50px;
  }
  .video_btn.small:before {
    height: 65px;
    width: 65px;
  }
  @keyframes pulse-border {
    0% {
      transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
      opacity: 1;
    }
    100% {
      transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
      opacity: 0;
    }
  }
  @media screen and (max-width: 1199px) {
    .video_btn {
      height: 75px;
      width: 75px;
      line-height: 75px;
    }
    .video_btn:after {
      height: 75px;
      width: 75px;
    }
    .video_btn:before {
      height: 90px;
      width: 90px;
    }
  }
  @media screen and (max-width: 991px) {
    .video_btn {
      height: 70px;
      width: 70px;
      line-height: 70px;
    }
    .video_btn:after {
      height: 70px;
      width: 70px;
    }
    .video_btn:before {
      height: 85px;
      width: 85px;
    }
    @keyframes pulse-border {
      0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
      }
      100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.2);
      }
    }
  }
  @media screen and (max-width: 767px) {
    .video_btn {
      height: 60px;
      width: 60px;
      line-height: 60px;
    }
    .video_btn:after {
      height: 60px;
      width: 60px;
    }
    .video_btn:before {
      height: 75px;
      width: 75px;
    }
  }
  .filtering {
    margin-bottom: 40px;
  }
  .filtering span {
    cursor: pointer;
    font-size: 14.4px;
    font-weight: 600;
    margin-right: 10px;
    display: inline-block;
    margin-bottom: 5px;
    padding: 6px 15px;
    background: transparent;
    color: #212529;
    border: 2px solid #212529;
  }
  .filtering span:last-child {
    margin: 0;
  }
  .filtering .active {
    color: #ffffff;
    background: #8cc63f;
    border: 2px solid #8cc63f;
  }
  @media screen and (max-width: 767px) {
    .filtering {
      margin-bottom: 0;
    }
    .filtering span {
      margin-bottom: 17px;
    }
  }
  @media screen and (max-width: 575px) {
    .filtering span {
      padding: 6px 8px;
      margin-right: 5px;
      font-size: 13px;
    }
  }
  .lg-backdrop {
    z-index: 99999;
  }
  .lg-outer {
    z-index: 999999;
  }
  .lg-outer .lg-thumb-item.active,
  .lg-outer .lg-thumb-item:hover {
    border-color: #8cc63f;
  }
  .lg-progress-bar .lg-progress {
    background-color: #8cc63f;
  }
  .lg-backdrop.in {
    opacity: 0.85;
  }
  .portfolio-style01 {
    position: relative;
  }
  .portfolio-style01 .portfolio-content {
    margin: -40px 50px 20px 50px;
    background-color: #fff;
    padding: 20px;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
    border-radius: 10px;
    z-index: 9;
    position: relative;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 0.4s ease-out 0s;
    transition: all 0.4s ease-out 0s;
  }
  .portfolio-style01 .portfolio-content .butn-icon a {
    background-color: #8cc63f;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    border-radius: 5px;
  }
  .portfolio-style01 .portfolio-content .butn-icon a:hover {
    background-color: #1e2022;
  }
  .portfolio-block-static .portfolio-style01 .portfolio-content,
  .portfolio-carousel .owl-item.center .portfolio-style01 .portfolio-content {
    opacity: 1;
    visibility: visible;
  }
  .portfolio-style01 .portfolio-content.portfolio-inner {
    opacity: 1;
    visibility: visible;
  }
  .portfolio-style01 .portfolio-img:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-transition: all 0.5s ease-out 0s;
    -moz-transition: all 0.5s ease-out 0s;
    -ms-transition: all 0.5s ease-out 0s;
    -o-transition: all 0.5s ease-out 0s;
    transition: all 0.5s ease-out 0s;
    opacity: 0;
    visibility: hidden;
    border-radius: 10px;
  }
  .portfolio-style01 .portfolio-img:hover:before {
    opacity: 1;
    visibility: visible;
    box-shadow: inset 0 0 0 200px rgba(0, 0, 0, 0.2);
  }
  @media screen and (max-width: 1599px) {
    .portfolio-style01 .portfolio-content {
      margin: -40px 25px 20px 25px;
    }
  }
  .pagination {
    border-radius: 0;
    padding: 0;
    margin-left: auto;
    margin-right: auto;
  }
  .pagination ul {
    display: inline-block;
    margin: 0 auto;
    padding: 0;
  }
  .pagination li {
    display: inline;
    margin-right: 10px;
  }
  .pagination li:last-child {
    margin-right: 0;
  }
  .pagination a {
    background: transparent;
    font-weight: 700;
    text-align: center;
    padding: 12px 16px;
    color: #575a7b;
    border: 1px solid #dddddd;
    line-height: 25px;
    border-radius: 5px;
  }
  .pagination a:hover,
  .pagination a:active,
  .pagination a:focus {
    background-color: #8cc63f;
    color: #ffffff;
    box-shadow: none;
    border: 1px solid #8cc63f;
  }
  .pagination .active a {
    background-color: #f7f7f7;
    color: #002147;
    border: 1px solid #dbdbdb;
    cursor: default;
  }
  @media screen and (max-width: 575px) {
    .pagination li {
      margin-right: 8px;
    }
  }
  .owl-theme .owl-nav.disabled + .owl-dots {
    margin-top: 40px;
  }
  .owl-theme .owl-dots .owl-dot span {
    border-radius: 0;
  }
  .owl-theme .owl-dots .owl-dot.active span,
  .owl-theme .owl-dots .owl-dot:hover span {
    background-color: #8cc63f;
  }
  .owl-nav i,
  .owl-nav span {
    color: #232323;
    font-size: 28px;
  }
  .owl-carousel .owl-item img {
    width: auto;
    display: inline-block;
  }
  ul.resp-tabs-list {
    margin-bottom: 15px;
    padding: 0px;
  }
  .resp-tabs-list li {
    font-weight: 600;
    font-size: 18px;
    display: inline-block;
    padding: 12px 20px;
    margin: 0 4px 0 0;
    list-style: none;
    cursor: pointer;
    background: #fff;
    color: #212529;
    text-align: left;
    border-radius: 0;
  }
  .resp-tabs-list li:last-child {
    margin-right: 0;
  }
  .resp-tabs-list li i {
    font-size: 24px;
    padding-right: 10px;
    vertical-align: text-bottom;
  }
  .resp-tabs-container {
    padding: 0px;
    clear: left;
  }
  .resp-tab-content {
    display: none;
    padding: 40px;
  }
  .resp-tabs-list li.resp-tab-active {
    margin-bottom: -1px;
    background-color: #8cc63f;
    color: #fff;
  }
  .resp-content-active,
  .resp-accordion-active {
    display: block;
  }
  .resp-tab-content {
    border: none;
    float: left;
    width: 100%;
    box-shadow: none;
    border-radius: 4px;
    background: transparent;
  }
  h2.resp-accordion {
    cursor: pointer;
    display: none;
    font-size: 18px;
    color: #fff;
    border-top: 0px solid #c1c1c1;
    margin-bottom: 5px;
    padding: 14px 15px;
    float: left;
    width: 100%;
    background: #212529 !important;
    border-radius: 0;
  }
  h2.resp-tab-active {
    border-bottom: 0px solid #c1c1c1 !important;
    background-color: #8cc63f !important;
    color: #fff;
    margin-bottom: 0;
    border-radius: 0px;
  }
  h2.resp-tab-title:last-child {
    border-bottom: 12px solid #c1c1c1 !important;
    background: blue;
  }
  .tab-style1 ul.resp-tabs-list {
    text-align: center;
  }
  .tab-style1 h2.resp-accordion i {
    margin-right: 15px;
  }
  .tab-style1 .resp-tab-active h6 {
    color: #fff;
  }
  @media screen and (min-width: 768px) {
    .tab-style1 ul.resp-tabs-list li:last-child {
      margin-right: 0;
    }
    .tab-style1 ul.resp-tabs-list li.resp-tab-active {
      border-bottom-color: #83bc2e;
      color: #83bc2e;
    }
    .tab-style1 .resp-tab-content {
      border: none;
      margin-top: 30px;
      padding: 0;
    }
    .tab-style1 .resp-tabs-list li {
      font-size: 18px;
      border-bottom: 2px solid transparent !important;
      margin: 0;
      background: none !important;
      padding: 0 35px 15px 35px;
      text-transform: uppercase;
      position: relative;
    }
    .tab-style1 .resp-tabs-list li.resp-tab-active {
      border-width: 0 0 2px 0 !important;
      border-color: #83bc2e !important;
    }
    .tab-style1 .resp-tabs-list li.resp-tab-active h6 {
      color: #83bc2e;
    }
    .tab-style1 ul.resp-tabs-list i {
      margin-right: 15px;
      border: 1px solid #d5d5d5;
      border-radius: 70px;
      width: 70px;
      height: 70px;
      line-height: 68px;
      font-size: 30px;
      padding: 0;
      vertical-align: middle;
    }
    .tab-style1 ul.resp-tabs-list li.resp-tab-active i {
      background: #4e86ff;
      border-color: #4e86ff;
      color: #fff;
    }
  }
  @media screen and (max-width: 991px) {
    .tab-style1 .resp-tabs-list li {
      padding: 0 25px 10px 25px;
    }
  }
  @media screen and (max-width: 767px) {
    .tab-style1 h2.resp-accordion:first-child {
      border-top-left-radius: 5px;
      border-top-right-radius: 5px;
      border-top: 1px solid #e4e4e4;
    }
    .tab-style1 .resp-tab-content {
      padding: 20px 15px;
      border: 1px solid #e4e4e4 !important;
    }
    ul.resp-tabs-list {
      display: none;
    }
    h2.resp-accordion {
      display: block;
    }
    h2.resp-accordion i {
      margin-right: 12px;
      font-size: 18px;
      min-width: 25px;
    }
    h2.resp-accordion.resp-tab-active i {
      color: #fff;
    }
    .resp-vtabs .resp-tab-content {
      border: 1px solid #c1c1c1;
    }
    .resp-vtabs .resp-tabs-container {
      border: none !important;
      float: none;
      width: 100%;
      min-height: 100px;
      clear: none;
    }
    .resp-accordion-closed {
      display: none !important;
    }
    .resp-vtabs .resp-tab-content:last-child {
      border-bottom: 1px solid #c1c1c1 !important;
    }
    .resp-tab-content {
      background-color: #fff;
      padding: 30px 0 30px 0;
    }
  }
  .resp-vtabs.style1 ul.resp-tabs-list {
    margin-top: -80px;
  }
  .resp-vtabs ul.resp-tabs-list {
    float: left;
    width: 100%;
    background: #fff;
    box-shadow: 0 0 70px 0 rgba(0, 0, 0, 0.1);
    padding: 40px;
    margin-bottom: 0;
  }
  .resp-vtabs .resp-tabs-list li {
    display: block;
    padding: 18px 20px !important;
    margin: 0 0 25px;
    cursor: pointer;
    float: none;
    font-size: 18px;
    background: rgba(24, 66, 90, 0.1);
    color: #212529;
    border-radius: 0px;
  }
  .resp-vtabs .resp-tabs-list li:last-child {
    margin-bottom: 0;
  }
  .resp-vtabs .resp-tabs-container {
    padding: 0px;
    background-color: #fff;
    float: left;
    width: 100%;
    clear: none;
    border-radius: 0;
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
  }
  .resp-vtabs .resp-tab-content {
    word-wrap: break-word;
    border-radius: 8px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    padding: 0;
  }
  .resp-vtabs li.resp-tab-active {
    position: relative;
    z-index: 1;
    margin-right: -1px !important;
    padding: 18px 20px !important;
    background-color: #8cc63f;
    color: #fff;
  }
  .resp-arrow {
    border-color: transparent #fff #fff transparent;
    border-style: solid;
    border-width: 0 2px 2px 0;
    float: right;
    display: block;
    height: 8px;
    transform: rotate(45deg);
    width: 8px;
    margin-top: 7px;
  }
  h2.resp-tab-active span.resp-arrow {
    border-color: #fff transparent transparent #fff;
    border-style: solid;
    border-width: 2px 0 0 2px;
    float: right;
    display: block;
    height: 8px;
    transform: rotate(45deg);
    width: 8px;
    margin-top: 10px;
  }
  .resp-easy-accordion h2.resp-accordion {
    display: block;
  }
  .resp-easy-accordion .resp-tab-content {
    border: 1px solid #c1c1c1;
  }
  .resp-easy-accordion .resp-tab-content:last-child {
    border-bottom: 1px solid #c1c1c1;
  }
  .resp-jfit {
    width: 100%;
    margin: 0px;
  }
  .resp-tab-content-active {
    display: block;
    border-color: #e8e8e8 !important;
  }
  h2.resp-accordion.resp-tab-active {
    border-color: #e8e8e8 !important;
  }
  @media screen and (max-width: 991px) {
    .tab-style1.top-margin {
      margin-top: 0 !important;
    }
    ul.resp-tabs-list {
      display: none;
    }
    h2.resp-accordion {
      display: block;
    }
    h2.resp-accordion i {
      margin-right: 8px;
      font-size: 20px;
      color: #fff;
      vertical-align: text-bottom;
    }
    .resp-vtabs .resp-tab-content {
      margin-bottom: 5px;
      padding: 30px;
    }
    .resp-vtabs .resp-tab-content:last-child {
      margin-bottom: 0;
    }
    .resp-vtabs .resp-tabs-container {
      border: none !important;
      float: left;
      width: 100%;
      min-height: 100px;
      clear: none;
      background: none;
    }
    .resp-accordion-closed {
      display: none !important;
    }
    .resp-tab-content {
      background-color: #fff;
      border-radius: 0;
      border: 1px solid #eee;
      margin-bottom: 5px;
      padding: 30px;
    }
    .resp-tab-content:last-child {
      margin-bottom: 0;
    }
  }
  @media screen and (max-width: 575px) {
    .resp-vtabs .resp-tab-content,
    .resp-tab-content {
      padding: 20px;
    }
  }
  .accordion-style .card {
    background: transparent;
    border: none;
    margin-top: 0 !important;
    border-radius: 0;
  }
  .accordion-style .card-header {
    border: 0px;
    padding: 0;
    border-bottom: none;
    background: none;
  }
  .accordion-style .btn-link {
    color: #8cc63f;
    line-height: 26px;
    position: relative;
    border: none;
    border-bottom: none;
    border-left: none;
    display: block;
    width: 100%;
    text-align: left;
    white-space: normal;
    border-radius: 10px;
    padding: 20px 45px 20px 18px;
    font-weight: 600;
    text-decoration: none;
    background-color: #ffffff;
    box-shadow: 0 0 40px 5px rgba(0, 0, 0, 0.03);
  }
  .accordion-style .btn-link.collapsed {
    color: #575a7b;
    line-height: 26px;
    position: relative;
    border: none;
    display: block;
    width: 100%;
    text-align: left;
    white-space: normal;
    border: none;
    padding: 20px 45px 20px 18px;
    font-weight: 600;
    text-decoration: none;
    background-color: #fff;
  }
  .accordion-style .btn-link:hover {
    text-decoration: none;
  }
  .accordion-style .btn-link.collapsed:after {
    content: "+";
    right: 17px;
    left: inherit;
    font-size: 20px;
    transform: none;
    top: 22px;
    position: absolute;
    color: #212121;
    background-color: transparent;
    border-radius: 0.3rem;
    line-height: 20px;
    width: 25px;
    height: 25px;
    text-align: center;
  }
  .accordion-style .btn-link:after {
    content: "-";
    right: 17px;
    left: inherit;
    font-size: 20px;
    transform: none;
    top: 20px;
    position: absolute;
    color: #8cc63f;
    background-color: transparent;
    border-radius: 0.3rem;
    line-height: 22px;
    width: 25px;
    height: 25px;
    text-align: center;
  }
  .accordion-style .card-body {
    padding: 20px 30px 25px 26px;
    line-height: 24px;
    text-align: left;
    border: none;
    border-left: none;
    background: #fff;
    border-top: none;
  }
  @media screen and (max-width: 991px) {
    .accordion-style .card-body {
      padding: 10px 25px 30px 25px;
    }
  }
  .sidebar .widget {
    position: relative;
    display: block;
    background-color: #fff;
  }
  .sidebar .widget .category-list li {
    margin-bottom: 15px;
    background: rgba(255, 255, 255, 0.1);
    padding: 14px 20px 14px 28px;
    position: relative;
    border-radius: 5px;
  }
  .sidebar .widget .category-list li:last-child {
    margin-bottom: 0px;
  }
  .sidebar .widget .category-list li a {
    color: #ffffff;
    transition: all 0.3s ease-in-out;
    display: inline-block;
    position: relative;
  }
  .sidebar .widget .category-list li a span {
    z-index: 9;
    position: relative;
    margin-left: 0px;
    -webkit-transition: all 0.35s ease-in-out;
    transition: all 0.35s ease-in-out;
  }
  .sidebar .widget .category-list li:hover a span {
    margin-left: 10px;
  }
  .sidebar .widget .category-list li a:before {
    content: "\f061";
    font-family: "Font Awesome 6 Free";
    font-size: 12px;
    font-weight: bold;
    margin-left: -10px;
    opacity: 0;
  }
  .sidebar .widget .category-list li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0;
    background-color: #8cc63f;
    background-size: 220% 150%;
    -webkit-transition: all 0.35s ease-in-out;
    transition: all 0.35s ease-in-out;
    border-radius: 5px;
  }
  .sidebar .widget .category-list li:hover:before {
    width: 100%;
    opacity: 1;
  }
  .sidebar .widget .category-list li.active:before,
  .sidebar .widget .category-list li.active a:before {
    width: 100%;
    opacity: 1;
  }
  .sidebar .widget .category-list li:hover a:before {
    margin-left: 10px;
    opacity: 1;
    transition: all 0.3s ease-in-out;
  }
  .sidebar .widget .category-list li.active a span {
    margin-left: 10px;
    opacity: 1;
    transition: all 0.3s ease-in-out;
  }
  .sidebar .widget .category-list li.active a:before {
    margin-left: 10px;
  }
  .btn-wrapper li {
    position: relative;
    background-color: #f2f2f2;
    margin-bottom: 15px;
    border-radius: 5px;
  }
  .btn-wrapper li:last-child {
    margin-bottom: 0;
  }
  .btn-wrapper li a {
    position: relative;
    border-radius: 5px;
    overflow: hidden;
    display: block;
    font-weight: 600;
    font-size: 15px;
    color: #25373f;
    padding: 14px 15px 14px 75px;
    background-color: #faf9fa;
  }
  .btn-wrapper li a .icon {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 55px;
    height: 55px;
    line-height: 55px;
    text-align: center;
    font-weight: 400;
    display: inline-block;
    font-size: 26px;
    background-color: #fe6761;
    color: #fff;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
  }
  .widget .widget-content.help-box {
    padding: 50px 30px;
  }
  .widget-content {
    box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.1);
    position: relative;
    padding: 30px;
  }
  .widget-content .input-group .btn-style1.black {
    border-top-left-radius: unset;
    border-bottom-left-radius: unset;
  }
  .sidebar .menu li {
    position: relative;
    display: block;
    margin-bottom: 10px;
  }
  .sidebar .menu li:last-child {
    margin-bottom: 0;
  }
  .sidebar .menu li a:hover,
  .sidebar .menu li.active a {
    color: #fff;
    background-color: #8cc63f;
    padding-left: 80px;
  }
  .sidebar .menu li a {
    position: relative;
    display: block;
    font-size: 14px;
    line-height: 26px;
    font-weight: 600;
    color: #1e2434;
    text-transform: uppercase;
    background-color: #fff;
    padding: 17px 20px 17px 50px;
    border: 1px solid #e7e3e3;
  }
  .sidebar .menu li a:hover:before {
    background-color: #212529;
  }
  .sidebar .menu li.active a:before {
    background-color: #212529;
  }
  .sidebar .menu li a:hover:before,
  .sidebar .menu li.active a:before {
    font-family: "Font Awesome 6 Free";
    content: "\f178";
  }
  .sidebar .menu li a:hover:before,
  .sidebar .menu li.active a:before {
    width: 60px;
    color: #fff;
  }
  .sidebar .menu li:hover:after,
  .sidebar .menu li.active:after {
    content: "";
    padding: 8px;
    position: absolute;
    bottom: 0;
    background: #fff;
    right: 0;
  }
  .sidebar .menu li:hover:before,
  .sidebar .menu li.active:before {
    content: "";
    padding: 6px;
    position: absolute;
    bottom: 16px;
    background: #fff;
    right: 9px;
    z-index: 1;
  }
  .sidebar .menu li a::before {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    left: 0px;
    top: 0px;
    width: 30px;
    height: 100%;
    background-color: #f4f5f4;
    text-align: center;
    font-size: 16px;
    color: #707582;
    transition: all 500ms ease;
  }
  .blog-tags a {
    background-color: #fff;
    padding: 7px 12px;
    color: #8cc63f;
    font-size: 14px;
    line-height: 20px;
    margin: 0.6rem 5px 0 0;
    display: inline-block;
    vertical-align: top;
    border-radius: 3px;
    border: 1px solid #212529;
  }
  .blog-tags a:hover,
  .blog-tags a:active,
  .blog-tags a:focus {
    background-color: #8cc63f;
    color: #fff;
    border: 1px solid #8cc63f;
  }
  .comment-reply-link {
    color: #212529;
    background: rgba(24, 66, 90, 0.1);
    padding: 5px 18px;
    font-weight: 500;
    border-radius: 4px;
    font-size: 14px;
  }
  .comment-reply-link:hover,
  .comment-reply-link:active,
  .comment-reply-link:focus {
    color: #fff;
    background: #212529;
  }
  @media screen and (max-width: 1199px) {
    .widget-content {
      padding: 22px;
    }
    .sidebar .widget .category-list li {
      padding: 14px 20px 14px 26px;
    }
  }
  @media screen and (max-width: 575px) {
    .widget-content {
      padding: 20px;
    }
    .btn-wrapper .dow-btn {
      margin: 0;
      padding: 12px 25px;
    }
    .btn-wrapper .disc-btn {
      padding: 12px 25px;
    }
  }
  .countdown {
    padding: 0;
  }
  .countdown li {
    display: inline-block;
    text-align: center;
    min-width: 180px;
    overflow: hidden;
    margin-right: 30px;
    padding: 15px 10px;
    position: relative;
  }
  .countdown li:last-child {
    margin-right: 0;
  }
  .countdown li span {
    font-size: 60px;
    font-weight: 600;
    text-align: center;
    color: #ffffff;
    line-height: normal;
    position: relative;
    display: inline-block;
  }
  .countdown li p.timeRefDays,
  .countdown li p.timeRefHours,
  .countdown li p.timeRefMinutes,
  .countdown li p.timeRefSeconds {
    font-size: 20px;
    font-weight: 500;
    color: #ffffff;
    margin: 0;
    z-index: 2;
    position: relative;
    padding: 0;
    text-transform: capitalize;
    display: inline-block;
  }
  .coming-soon h1 {
    font-size: 70px;
  }
  .coming-soon .newsletter-form .quform-submit-inner {
    right: 5px;
    top: 5px;
    position: absolute;
    width: unset;
  }
  .coming-soon .newsletter-form input {
    height: 65px;
  }
  @media screen and (max-width: 1399px) {
    .countdown li {
      min-width: 150px;
    }
    .countdown li span {
      font-size: 50px;
    }
  }
  @media screen and (max-width: 1199px) {
    .coming-soon.two .countdown li {
      min-width: 130px;
      margin-right: 20px;
    }
    .coming-soon.two .countdown li span {
      font-size: 40px;
    }
  }
  @media screen and (max-width: 991px) {
    .coming-soon h1 {
      font-size: 60px;
    }
    .countdown li {
      margin-right: 20px;
    }
    .countdown li span {
      font-size: 40px;
    }
    .countdown li p.timeRefDays,
    .countdown li p.timeRefHours,
    .countdown li p.timeRefMinutes,
    .countdown li p.timeRefSeconds {
      font-size: 18px;
    }
  }
  @media screen and (max-width: 767px) {
    .countdown li {
      margin: 0 10px;
    }
    .coming-soon h1 {
      font-size: 50px;
    }
    .coming-soon.two .countdown li {
      min-width: 155px;
    }
  }
  @media screen and (max-width: 575px) {
    .countdown li {
      min-width: 110px;
      padding: 5px 10px;
    }
    .countdown li span {
      font-size: 30px;
    }
    .coming-soon h1 {
      font-size: 40px;
    }
    .countdown li p.timeRefDays,
    .countdown li p.timeRefHours,
    .countdown li p.timeRefMinutes,
    .countdown li p.timeRefSeconds {
      font-size: 14px;
    }
  }
  .modal-backdrop {
    z-index: 99999;
  }
  .modal {
    z-index: 999999;
  }
  .bd-example button,
  .bd-example a {
    margin-top: 0.25rem;
    margin-bottom: 0.25rem;
  }
  .icon-gallery .d-table {
    margin-top: 30px;
  }
  .icon-gallery .d-table-cell {
    width: 125px;
    height: 125px;
    text-align: center;
    border-radius: 5px;
    margin-bottom: 25px;
    border: 1px solid rgba(0, 0, 0, 0.075);
    vertical-align: middle;
    font-size: 14px;
    transition: all 0.2s ease-in-out;
    padding: 10px;
    background: #fff;
  }
  .icon-gallery i {
    display: block;
    margin-bottom: 15px;
    font-size: 28px;
    color: #8cc63f;
  }
  pre[class*="language-"] {
    max-height: 45vh;
    height: 100%;
    margin: 35px 0 15px 0;
    padding-top: 0;
  }
  .html-code {
    background-color: #fbfbfb;
    position: relative;
    box-shadow: inset 0 0 0 1px #dde1e6, 0 3px 5px rgba(0, 0, 0, 0.15);
    padding: 30px;
    border-radius: 5px;
    border: 1px solid #ededed;
  }
  .copy-element {
    position: absolute;
    top: 0;
    right: 85px;
    transition: opacity 0.3s ease-in-out;
  }
  .source-element {
    position: absolute;
    top: 0;
    right: 0;
    transition: opacity 0.3s ease-in-out;
  }
  .html-code .copy-element {
    top: 15px;
    right: 30px;
  }
  .html-code:hover .copy-element,
  .html-code:hover .source-element {
    opacity: 1;
  }
  .box-hover:hover .copy-element,
  .box-hover:hover .source-element {
    opacity: 1;
  }
  .copy-element > a,
  .source-element > a {
    background: #dde1e6;
    color: #777 !important;
    display: inline-block;
    padding: 5px 15px;
    font-size: 14px;
    text-transform: capitalize;
    border-radius: 5px;
    cursor: pointer !important;
    font-weight: 600;
  }
  .copy-element > a:hover,
  .source-element > a:hover {
    background: #8cc63f;
    color: #fff !important;
  }
  .copy-clipboard {
    cursor: pointer;
    padding: 5px 15px;
  }
  .white-popup-block {
    background-color: #fbfbfb;
    position: relative;
    max-width: 650px;
    box-shadow: inset 0 0 0 1px #dde1e6, 0 3px 5px rgba(0, 0, 0, 0.15);
    padding: 60px 30px 30px 30px;
    border-radius: 5px;
    margin: 40px auto;
    border: 1px solid #ededed;
  }
  .white-popup-block.popup-copy.mfp-hide {
    display: block !important;
    height: 0;
    position: absolute;
    z-index: -1;
    padding: 0;
    opacity: 0;
    margin: 0;
  }
  .white-popup-block:before {
    color: rgba(195, 21, 65, 0.2);
    content: "•••";
    font-size: 24px;
    left: 24px;
    letter-spacing: 4px;
    line-height: 12px;
    position: absolute;
    top: 24px;
  }
  .white-popup-block:hover .copy-element {
    opacity: 1;
  }
  .white-popup-block .copy-element {
    top: 45px;
    right: 30px;
  }
  .box-hover {
    position: relative;
  }
  .box-hover .container {
    position: relative;
  }
  .inner-title {
    border-bottom: 1px solid rgba(0, 0, 0, 0.09);
    margin-bottom: 35px;
    padding-bottom: 20px;
  }
  .inner-title h2 {
    position: relative;
    margin-bottom: 0;
    font-size: 20px;
    color: #8cc63f;
  }
  @media screen and (max-width: 767px) {
    .elements-block .inner-title {
      margin-bottom: 65px;
    }
    .copy-element,
    .source-element {
      top: 65px;
    }
  }
  .clients {
    margin-top: -3%;
  }
  .clients:before {
    content: "";
    position: absolute;
    width: 85%;
    height: 100%;
    background-color: #8cc63f;
    top: 0;
    left: 0;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    z-index: 9;
  }
  @media screen and (max-width: 1599px) {
    .clients:before {
      width: 98%;
    }
  }
  @media screen and (max-width: 1199px) {
    .clients {
      margin-top: -7%;
    }
  }
  @media screen and (max-width: 991px) {
    .clients:before {
      width: 95%;
    }
  }
  @media screen and (max-width: 575px) {
    .clients {
      margin-top: -15%;
    }
  }
  .main-comment-box img {
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
  }
  @media screen and (max-width: 575px) {
    .main-comment-box img {
      border-radius: 10px;
    }
  }
  .aboutus .img-2 img {
    border-radius: 50%;
    border: 10px solid #fff;
    position: absolute;
    bottom: 10%;
    left: -10%;
  }
  .aboutus .exp-box {
    position: absolute;
    right: 0;
    top: 15%;
    width: 220px;
    height: 90px;
    display: flex;
    align-items: center;
    text-align: center;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
    background-color: #fff;
    padding: 0 25px;
    border-radius: 10px;
  }
  .aboutus .about-right .lg-text {
    font-size: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 70px;
    max-width: 70px;
    height: 70px;
    background-color: #fff;
    border-radius: 7px;
    color: #8cc63f;
    font-weight: 700;
    margin-right: 25px;
    box-shadow: 0 0 30px 0 rgba(153, 153, 153, 0.19);
  }
  @media screen and (max-width: 1199px) {
    .aboutus .exp-box {
      right: -35px;
    }
    .aboutus .img-2 img {
      left: -20%;
    }
  }
  @media screen and (max-width: 991px) {
    .aboutus .img-2 img {
      left: 0;
    }
  }
  @media screen and (max-width: 767px) {
    .aboutus .img-2 img {
      left: -10%;
    }
  }
  @media screen and (max-width: 575px) {
    .aboutus .img-2 img {
      display: none;
    }
  }
  .aboutus-02 .about-left-img:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-transition: all 0.5s ease-out 0s;
    -moz-transition: all 0.5s ease-out 0s;
    -ms-transition: all 0.5s ease-out 0s;
    -o-transition: all 0.5s ease-out 0s;
    transition: all 0.5s ease-out 0s;
    opacity: 0;
    visibility: hidden;
    border-radius: 10px;
  }
  .aboutus-02 .about-left-img:hover:before {
    opacity: 1;
    visibility: visible;
    box-shadow: inset 0 0 0 200px rgba(0, 0, 0, 0.2);
  }
  .service-details-img:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-transition: all 0.5s ease-out 0s;
    -moz-transition: all 0.5s ease-out 0s;
    -ms-transition: all 0.5s ease-out 0s;
    -o-transition: all 0.5s ease-out 0s;
    transition: all 0.5s ease-out 0s;
    opacity: 0;
    visibility: hidden;
    border-radius: 10px;
  }
  .service-details-img:hover:before {
    opacity: 1;
    visibility: visible;
    box-shadow: inset 0 0 0 215px rgba(0, 0, 0, 0.2);
  }
  .service-details-img.sm:hover:before {
    opacity: 1;
    visibility: visible;
    box-shadow: inset 0 0 0 75px rgba(0, 0, 0, 0.2);
  }
  .service-details-img.md:hover:before {
    opacity: 1;
    visibility: visible;
    box-shadow: inset 0 0 0 113px rgba(0, 0, 0, 0.2);
  }
  .history-carousel .history-box .title-box {
    border-bottom: 3px solid #212529;
    margin-bottom: 50px;
  }
  .history-carousel .history-box .history-content h3 {
    color: #212529;
  }
  .history-carousel .history-box .title-box span {
    display: inline-block;
    background-color: #212529;
    padding: 5px 25px;
    border-radius: 5px;
    font-size: 16px;
    margin-bottom: 50px;
    position: relative;
    color: #fff;
  }
  .history-carousel .history-box .title-box span:before {
    content: "";
    position: absolute;
    width: 12px;
    height: 12px;
    background-color: #212529;
    bottom: -58px;
    border-radius: 50%;
    left: 0;
    right: 0;
    margin: 0 auto;
  }
  .history-carousel .history-box .title-box span:after {
    content: "";
    position: absolute;
    width: 1px;
    height: 70px;
    background-color: #212529;
    left: 0;
    right: 0;
    margin: 0 auto;
    bottom: -50px;
  }
  .history-carousel .owl-item.center .history-box .title-box {
    border-bottom: 3px solid #8cc63f;
  }
  .history-carousel .owl-item.center .history-box .title-box span {
    background-color: #8cc63f;
    color: #fff;
  }
  .history-carousel .owl-item.center .history-box .title-box span:after,
  .history-carousel .owl-item.center .history-box .title-box span:before {
    background-color: #8cc63f;
  }
  .history-carousel .owl-item.center .history-box .history-content h3 {
    color: #8cc63f;
  }
  .contact-data .contact-map {
    border-top-right-radius: 10px;
  }
  .contact-data .contact-inner {
    border-top-left-radius: 10px;
    padding: 0 80px;
  }
  @media screen and (max-width: 1599px) {
    .contact-data .contact-inner {
      padding: 0 50px;
    }
    .section-title.contact-title h2 {
      font-size: 35px;
    }
  }
  @media screen and (max-width: 767px) {
    .contact-data .contact-inner {
      padding: 50px;
      border-top-right-radius: 10px;
    }
    .contact-data .contact-map {
      border-radius: 0;
    }
  }
  @media screen and (max-width: 575px) {
    .contact-data .contact-inner {
      padding: 30px;
    }
  }
  .testimonial-one {
    padding: 15% 0 6% 0;
    margin: -12% 5% 0 5%;
  }
  @media screen and (max-width: 575px) {
    .testimonial-one {
      margin: -20% 0% 0 0%;
    }
  }
  .newsletter-form .quform-elements {
    position: relative;
  }
  .newsletter-form .quform-submit-inner .btn {
    padding: 0.5rem 1.15rem;
  }
  .newsletter-form .quform-loading-wrap {
    margin-top: 15px;
    margin-bottom: 0;
    margin-left: 0;
  }
  .newsletter-form input {
    border: 1px solid transparent;
    background-color: #fff;
    border-radius: 5px;
    height: 50px;
    padding: 0.5rem 4rem 0.5rem 1rem;
    color: #fff;
  }
  .newsletter-form .form-control:focus,
  .newsletter-form .form-control:active {
    background-color: rgba(255, 255, 255, 0.2);
    color: #fff;
  }
  .newsletter-form .quform-has-error input,
  .newsletter-form .quform-has-error textarea,
  .newsletter-form .quform-has-error select {
    border-color: #f5543f;
  }
  .newsletter-form .quform-input .quform-errors-wrap {
    right: 15px;
  }
  .newsletter-form i {
    font-size: 1.2rem;
    line-height: 2rem;
  }
  @media screen and (max-width: 575px) {
    .newsletter-form input {
      height: 55px;
    }
  }
  .team-details-social {
    margin-bottom: 0;
    display: inline-block;
    padding-left: 0px;
    list-style: none;
  }
  .team-details-social li {
    vertical-align: middle;
    display: inline-block;
    margin-right: 12px;
  }
  .team-details-social li a {
    z-index: 1;
    color: #fff;
    font-size: 14px;
    overflow: hidden;
    cursor: pointer;
    width: 35px;
    height: 35px;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    font-weight: 600;
    position: relative;
    border-radius: 5px;
    text-align: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-transform: uppercase;
    background-color: #212529;
  }
  .team-details-social li a:before {
    z-index: -1;
    content: "";
    -webkit-transition: 0.75s;
    -o-transition: 0.75s;
    transition: 0.75s;
    position: absolute;
    width: 0;
    height: 0;
    background: transparent;
    left: 0;
    top: 0;
    border-bottom: 55px solid transparent;
    border-left: 350px solid #212529;
  }
  .team-details-social li a:after {
    z-index: -1;
    content: "";
    -webkit-transition: 0.75s;
    -o-transition: 0.75s;
    transition: 0.75s;
    position: absolute;
    width: 0;
    height: 0;
    background: transparent;
    right: 0;
    bottom: 0;
    border-top: 55px solid transparent;
    border-right: 350px solid #212529;
  }
  .team-details-social li a:hover {
    background: #8cc63f;
    color: #212529;
  }
  .team-details-social li a:hover:before {
    border-bottom: 0px solid transparent;
    border-left: 0px solid #212529;
  }
  .team-details-social li a:hover:after {
    border-top: 0px solid transparent;
    border-right: 0px solid #212529;
  }
  @media screen and (max-width: 575px) {
    .team-details-social li a {
      width: 30px;
      height: 30px;
    }
  }
  .testimonial-carousel3.owl-carousel .owl-nav button.owl-prev,
  .testimonial-carousel3.owl-carousel .owl-nav button.owl-next {
    top: 40%;
    border-radius: 50%;
    position: absolute;
  }
  .testimonial-carousel3.owl-carousel .owl-nav button.owl-prev {
    left: -100px;
  }
  .testimonial-carousel3.owl-carousel .owl-nav button.owl-next {
    right: -100px;
  }
  .testimonial-carousel3 .owl-nav span {
    height: 50px;
    width: 50px;
    line-height: 50px;
    background: rgba(255, 255, 255, 0.1);
    font-size: 18px !important;
    color: #fff;
    transition: all 0.3s;
    border-radius: 50%;
  }
  .testimonial-carousel3.owl-carousel .owl-nav button.owl-next:hover span,
  .testimonial-carousel3.owl-carousel .owl-nav button.owl-prev:hover span {
    background: #fff;
    border-radius: 50%;
    color: #8cc63f;
  }
  .testimonial-quote {
    -webkit-text-stroke-width: 1px;
    color: #ffffff00;
    -webkit-text-stroke-color: #ffffff1a;
    font-size: 810px;
    line-height: 0px;
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .progress-style1 .progress {
    height: 8px;
    margin-bottom: 20px;
  }
  .progress-style1 .progress:last-child {
    margin-bottom: 0;
  }
  .form-group {
    margin-bottom: 1rem;
  }
  .form-group label {
    margin-bottom: 0.5rem;
  }
  .form-control:focus {
    border-color: #8cc63f;
  }
  .form-check-input:checked {
    border-color: #8cc63f;
    background-color: #8cc63f;
  }
  .quform-input {
    position: relative;
  }
  .quform-input .quform-errors-wrap {
    position: absolute;
    right: 8px;
    top: 0;
    line-height: normal;
    z-index: 1;
  }
  .quform-element > label {
    font-weight: 600;
    padding-bottom: 5px;
    margin-bottom: 0;
    color: #6a747b;
    font-size: 15px;
  }
  .quform-element > label .quform-required {
    color: #cc0101;
    font-size: 10px;
  }
  .quform-inner input {
    width: 100%;
  }
  .quform-elements .quform-element textarea {
    margin-bottom: 0;
    padding: 8px 15px;
    vertical-align: top;
  }
  .quform-elements .quform-element select {
    margin-bottom: 0;
    padding: 8px 35px 8px 15px;
  }
  .quform-errors {
    padding: 0;
    margin: 0;
    line-height: normal;
  }
  .quform-errors > .quform-error {
    padding: 0;
    background: none;
    border: none;
    float: none;
    color: #f5543f;
    font-size: 11px;
    line-height: normal;
    letter-spacing: normal;
  }
  .quform-outer-no-js .quform-error {
    padding: 0;
    background: none;
    border: none;
    float: none;
    color: #f5543f;
    font-size: 11px;
    line-height: normal;
    letter-spacing: normal;
  }
  .quform-outer-no-js .quform-success-message {
    padding: 0.75rem 1.25rem 0.75rem 3rem;
  }
  .quform-has-error input,
  .quform-has-error textarea,
  .quform-has-error select,
  .quform-has-error input[type="file"],
  .quform-has-error .custom-file-label {
    border-color: #f5543f;
  }
  .quform-success-message {
    padding: 0.75rem 1.25rem 0.75rem 3rem;
  }
  .quform-submit-inner {
    float: none;
  }
  .quform-loading-wrap {
    float: none;
  }
  .quform-loading-wrap .quform-loading {
    display: inline-block;
  }
  .quform-element {
    margin-bottom: 1rem;
  }
  .social-icon-style1 {
    margin-bottom: 0;
    display: inline-block;
    padding-left: 0px;
    list-style: none;
  }
  .social-icon-style1 li {
    vertical-align: middle;
    display: inline-block;
    margin-right: 12px;
  }
  .social-icon-style1 li a {
    z-index: 1;
    width: 35px;
    height: 35px;
    color: white;
    font-size: 14px;
    overflow: hidden;
    cursor: pointer;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    font-weight: 600;
    position: relative;
    border-radius: 5px;
    text-align: center;
    padding: 11px 11px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-transform: uppercase;
    background-color: #8cc63f;
  }
  .social-icon-style1 li a:before {
    z-index: -1;
    content: "";
    -webkit-transition: 0.75s;
    -o-transition: 0.75s;
    transition: 0.75s;
    position: absolute;
    width: 0;
    height: 0;
    background: transparent;
    left: 0;
    top: 0;
    border-bottom: 55px solid transparent;
    border-left: 350px solid #8cc63f;
  }
  .social-icon-style1 li a:after {
    z-index: -1;
    content: "";
    -webkit-transition: 0.75s;
    -o-transition: 0.75s;
    transition: 0.75s;
    position: absolute;
    width: 0;
    height: 0;
    background: transparent;
    right: 0;
    bottom: 0;
    border-top: 55px solid transparent;
    border-right: 350px solid #8cc63f;
  }
  .social-icon-style1 li a:hover {
    background: #fff;
    color: #8cc63f;
  }
  .social-icon-style1 li a:hover:before {
    border-bottom: 0px solid transparent;
    border-left: 0px solid #8cc63f;
  }
  .social-icon-style1 li a:hover:after {
    border-top: 0px solid transparent;
    border-right: 0px solid #8cc63f;
  }
  .social-icon-style1 li:last-child {
    margin-right: 0;
  }
  .social-icon-style1.inner-icon li a:hover {
    background: #212529;
    color: #ffffff;
  }
  .search-form_input {
    color: #8cc63f;
  }
  .search-frame h4 a:hover {
    color: #8cc63f;
  }
  .search-frame .search_list .match {
    color: #8cc63f;
  }
  .search-frame .search_list li:before {
    color: #8cc63f;
  }
  .search-frame .search_list li + li {
    border-top: 3px solid #8cc63f;
  }
  .search-frame .search {
    color: #8cc63f;
  }
  .contact-map {
    width: 100%;
    height: 416px;
    vertical-align: top;
    border: 0;
  }
  footer {
    word-break: break-word;
    background: #212529;
    padding: 80px 0 0;
  }
  @media screen and (max-width: 767px) {
    footer {
      padding-top: 60px;
    }
  }
  .footer-link li a {
    color: #fff;
  }
  .footer-link li a:hover {
    color: #8cc63f;
  }
  .buy-theme {
    transition-timing-function: ease-in-out;
    transition-duration: 0.2s;
    position: fixed;
    top: 150px;
    right: -89px;
    background: #8cc63f;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    z-index: 9999;
  }
  .buy-theme i {
    font-size: 16px;
    vertical-align: middle;
    position: relative;
    top: -1px;
    color: #fff;
  }
  .all-demo i {
    font-size: 15px;
    vertical-align: middle;
    position: relative;
    top: -1px;
    color: #fff;
  }
  .buy-theme:hover,
  .all-demo:hover {
    transition-timing-function: ease-in-out;
    transition-duration: 0.2s;
    right: 0px;
    background: #8cc63f;
  }
  .all-demo:hover {
    background: #8cc63f;
  }
  .buy-theme span,
  .all-demo span {
    padding: 0 9px;
    position: relative;
    top: 0;
    opacity: 0;
  }
  .buy-theme:hover span,
  .all-demo:hover span {
    opacity: 1;
    color: #fff;
  }
  .buy-theme:hover i,
  .all-demo:hover i {
    color: #fff;
  }
  .buy-theme a,
  .all-demo a {
    color: #232323;
    font-size: 10px;
    text-transform: uppercase;
    padding: 5px 10px;
    display: block;
    text-decoration: none;
    font-weight: 500;
  }
  .all-demo {
    transition-timing-function: ease-in-out;
    transition-duration: 0.2s;
    position: fixed;
    top: 185px;
    right: -105px;
    background: #8cc63f;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    z-index: 9999;
  }
  
  