/*---=================================
   Header Area
==================================---*/
.nav-header {
    position: relative;
    top: 0;
    z-index: 8;
}

.sticky-wrapper {
    transition: 0.4s ease-in-out;
}

.sticky-wrapper.sticky {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    background-color: #fff;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.07);
    animation: stickyAni 0.4s ease-in-out;
}

@keyframes stickyAni {
    0% {
        transform: translate3d(0, -40px, 0) scaleY(0.8);
        opacity: 0.7;
    }

    100% {
        transform: translate3d(0, 0, 0) scaleY(1);
        opacity: 1;
    }
}

/****header-top*****/
.main-menu a {
    display: block;
    position: relative;
    font-weight: 500;
    font-size: 15px;
    color: #262626;
}

.main-menu a i {
    font-size: 14px;
    margin-left: 5px;
    color: rgba(0, 0, 0, 0.70);
}

.main-menu a.active,
.main-menu a:hover,
.main-menu a.active i,
.main-menu a:hover>i {
    color: #be3649;
}

.main-menu>ul>li {
    margin: 0 5px;
}

.main-menu>ul>li>a {
    padding: 20px 0;
}

.main-menu>ul>li>a:hover {
    color: #be3649;
}

.main-menu>ul>li>a[title]:before {
    content: "";
    padding: 3px;
    top: 16px;
    position: absolute;
    left: auto;
    right: 0px;
    width: 0;
    height: 0;
    border-bottom: 12px solid transparent;
    border-left: 22px solid #be3649;
    border-top: 0 solid transparent;
}

.main-menu>ul>li>a[title]:after {
    content: attr(title);
    position: absolute;
    top: 5px;
    left: auto;
    z-index: 99999;
    visibility: visible;
    white-space: nowrap;
    background-color: #ba3042;
    color: #fff;
    font-size: 10px;
    opacity: 1;
    right: 0px;
    padding: 0 7px;
    border-radius: 4px;
    font-weight: 400;
    line-height: 22px;
}

.main-menu ul {
    margin: 0;
    padding: 0;
}

.main-menu ul li {
    list-style-type: none;
    display: inline-block;
    position: relative;
}

.main-menu ul li:last-child {
    margin-right: 0 !important;
}

.main-menu ul li:first-child {
    margin-left: 0 !important;
}

.main-menu ul li:hover>ul.sub-menu {
    visibility: visible;
    opacity: 1;
    transform: scaleY(1);
    z-index: 9;
}

.main-menu ul.sub-menu {
    position: absolute;
    text-align: left;
    top: 100%;
    left: 0;
    background-color: #fff;
    visibility: hidden;
    min-width: 230px;
    width: max-content;
    padding: 0px;
    left: -27px;
    opacity: 0;
    z-index: 100;
    border: 0;
    box-shadow: 0px 4px 15px rgba(1, 15, 28, 0.06);
    border-radius: 0;
    transform: scaleY(0);
    transform-origin: top center;
    transition: all 0.4s ease 0s;
}

.main-menu ul.mega-menu li,
.main-menu ul.sub-menu li {
    border-bottom: 1px solid #E3E3E3;
    display: block;
    margin: 0 0;
    padding: 0px;
}

.main-menu ul.sub-menu a {
    color: #24231D;
    font-size: 14px;
    font-weight: 450;
    padding: 8px 20px;
    line-height: 25px;
    position: relative;
}

.main-menu ul.sub-menu a:hover {
    background: #5dbc34;
    color: #fff;
}

.main-menu ul.sub-menu ul.sub-menu {
    left: 100%;
    right: auto;
    top: 0;
    margin: 0 0;
    margin-left: 0px;
}

.main-menu ul.sub-menu ul.sub-menu li ul {
    left: 100%;
    right: auto;
}

.social-links .social-title {
    font-weight: 500;
    font-size: 16px;
    display: inline-block;
    margin: 0 15px 0 0;
    color: #fff;
}

.social-links a i {
    display: inline-block;
    color: #fff;
    font-size: 11px;
    padding-left: 0;
    transition: 0.5s;
    border: 1px solid #fff;
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 30px;
    border-radius: 50%;
    margin-left: 9px;
}

.social-links a i:hover {
    color: #fff;
    background: #ba3042;
    border: 1px solid #ba3042;
}

.header-logo {
    padding-top: 10px;
    padding-bottom: 10px;
}

.header-logo img {
    max-height: 55px;
}

.logo-mobile {
    display: none;
}

.header-links>ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
    display: flex;
    align-items: center;
}

.header-links li {
    display: inline-block;
    position: relative;
    font-size: 14px;
    font-weight: 500;
}

.header-links li:not(:last-child) {
    margin: 0 40px 0 0;
}

.header-links li>i {
    margin-right: 8px;
}

.header-links li .header-sub-links li:not(:last-child) {
    margin: 0 30px 0 0;
}

.header-links li .header-sub-links li:not(:last-child):before {
    content: "/";
    position: absolute;
    right: -20px;
    top: 0;
    color: #24231D;
}

.header-links li,
.header-links span,
.header-links p,
.header-links a {
    color: #fff;
    font-family: "Manrope", sans-serif;
    display: inline-flex;
    align-items: center;
}

.header-links a:hover {
    color: #fdd63a;
}

.header-links b,
.header-links strong {
    font-weight: 600;
    margin-right: 6px;
}

.header-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.calendar-btn {
    margin-top: 20px !important;
    padding: 3px 10px !important;
    font-size: 13px !important;
    border-radius: 7px;
    background-color: #5dbc34;
    color: #fff !important;
}

.calendar-btn:hover {
    background: #BA3042;
}

.search-icon span {
    /*  margin-top: 15px;*/
    /*margin-bottom: 15px;
  border-left: 2px solid rgba(0, 0, 0, 0.5);
  padding-left: 10px;*/
    cursor: pointer;
}

.search-icon span i {
    background: #e5e3e3;
    font-size: 13px;
    padding: 8px;
    border-radius: 50px;
}

.search {
    width: 300px;
    margin-top: 15px;
    position: absolute;
    margin-top: 3px;
    right: -20px;
    background: transparent;
    border: none;
}

.search .form-control,
.search .btn {
    height: 45px;
}

.search .form-control {
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}

.search .btn {
    width: 45px;
    background: #ba3042;
    color: #fff;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}

.search .btn i {
    position: absolute;
    top: 15px;
    left: 20px;
}

.mobile-menu .navigation .search-icon {
    display: none;
}

/* Header 1 ---------------------------------- */
.nav-header {
    position: relative;
    left: 0;
    width: 100%;
    background: #fff;
    border-bottom: 1px solid #ddd;
}

.nav-header .header-top {
    background-color: #5dbc34;
    padding: 8px 0;
    position: relative;
}

.nav-header .main-menu {
    margin-left: 150px;
}

.nav-header .sticky-wrapper.sticky {
    background: #fff;
    box-shadow: 0 2px 5px -2px rgba(0, 0, 0, 0.1);
}

@media (max-width: 1700px) {
    .nav-header .main-menu {
        margin-left: 30px;
    }
}

/* Medium Large devices */
@media (max-width: 1399px) {
    .nav-header .main-menu {
        margin-left: 0;
    }
}

@media (max-width: 800px) {
    .header-logo img {
        max-width: 250px;
    }

    .header-logo a {
        display: none;
    }

    .logo-mobile {
        display: block !important;
    }
}


.mobile-menu-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 999999;
    width: 0;
    width: 100%;
    height: 100%;
    transition: all ease 0.8s;
    opacity: 0;
    visibility: hidden;
}

.mobile-menu-wrapper .mobile-logo {
    padding-bottom: 20px;
    padding-top: 20px;
    display: block;
    text-align: center;
    background-color: #fff;
    border-bottom: 1px solid #E3E3E3;
}

.mobile-menu-wrapper .mobile-logo img {
    max-width: 230px !important;
}

.mobile-menu-wrapper .menu-toggle {
    border: none;
    font-size: 22px;
    position: absolute;
    right: -16.5px;
    top: 25px;
    padding: 0;
    line-height: 1;
    width: 33px;
    height: 33px;
    line-height: 36px;
    font-size: 14px;
    z-index: 1;
    color: #fff;
    background-color: #ba3042;
    border-radius: 50%;
}

.icon-btn {
    display: inline-block;
    width: 45px;
    height: 45px;
    line-height: 48px;
    font-size: 20px;
    background-color: #ba3042;
    color: #fff;
    text-align: center;
    border-radius: 5px;
    border: none;
    transition: 0.4s ease-in-out;
}

.mobile-menu-wrapper .menu-toggle:hover {
    background-color: #24231D;
    color: #fff;
}

.mobile-search {
    padding: 10px 10px 10px 15px;
}

.mobile-search form {
    position: relative;
}

.mobile-search input {
    display: block;
    width: 100%;
    border: none;
    padding: 10px 45px 10px 20px;
    font-size: 15px;
    height: 45px;
    background: #F7F7F9;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -o-border-radius: 4px;
    -ms-border-radius: 4px;
    border-radius: 4px;
}

.mobile-search input::placeholder {
    font-size: 15px;
    color: #141E37;
}

.mobile-search button {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    border: none;
    padding: 0;
    right: 20px;
    line-height: 1;
    background: transparent;
    color: var(--heading-color);
}

.mobile-menu-wrapper .mobile-menu-area {
    width: 100%;
    max-width: 310px;
    background-color: #fff;
    border-right: 3px solid #ba3042;
    height: 100%;
    position: relative;
    left: -110%;
    opacity: 0;
    visibility: hidden;
    transition: all ease 1s;
    z-index: 1;
}

.mobile-menu-wrapper.body-visible {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-wrapper.body-visible .mobile-menu-area {
    left: 0;
    opacity: 1;
    visibility: visible;
}

.mobile-menu {
    overflow-y: scroll;
    max-height: calc(100vh - 200px);
    padding-bottom: 40px;
    margin-top: 15px;
    text-align: left;
}

.mobile-menu::-webkscrollbar {
    display: none;
}

.mobile-menu ul {
    margin: 0;
    padding: 0 0;
}

.mobile-menu ul li {
    border-bottom: 1px solid #E3E3E3;
    list-style-type: none;
}

.mobile-menu ul li li:first-child {
    border-top: 1px solid #E3E3E3;
}

.mobile-menu ul li a {
    display: block;
    position: relative;
    padding: 12px 0;
    line-height: 1.4;
    font-size: 16px;
    color: #24231D;
}

.mobile-menu ul li.active-class>a {
    color: #ba3042;
}

.mobile-menu ul li.active-class>a:before {
    background: #ba3042;
    border-color: #ba3042;
}

.mobile-menu ul li ul li {
    padding-left: 20px;
}

.mobile-menu ul li ul li:last-child {
    border-bottom: none;
}

.mobile-menu ul .submenu-item-has-children>a .mean-expand-class {
    position: absolute;
    right: 0;
    top: 50%;
    font-weight: 400;
    font-size: 10px;
    width: 25px;
    height: 25px;
    line-height: 25px;
    margin-top: -12.5px;
    display: inline-block;
    text-align: center;
    background-color: #F8F7F0;
    color: #262626;
    box-shadow: 0 0 20px -8px rgba(173, 136, 88, 0.5);
    border-radius: 50%;
}

.mobile-menu ul .submenu-item-has-children>a .mean-expand-class:before {
    content: "\f067";
    font-family: "Font Awesome 6 Free";
    font-weight: 700;
}

.mobile-menu ul .submenu-item-has-children.active-class>a .mean-expand-class:before {
    content: "\f068";
}

.mobile-menu>ul {
    padding: 0 40px;
}

.mobile-menu>ul>li:last-child {
    border-bottom: none;
}

@media (max-width: 400px) {
    .mobile-menu-wrapper .mobile-menu-area {
        width: 100%;
        max-width: 270px;
    }

    .mobile-menu>ul {
        padding: 0 20px;
    }
}


.main-menu ul.mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100vw;
    background-color: var(--white-color);
    visibility: hidden;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    padding: 20px;
    border-radius: 0;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.15);
    opacity: 0;
    transition: opacity 0.2s ease-in-out;
    z-index: 999;
}

.main-menu ul li:hover>ul.mega-menu {
    transform: scaleY(1) translateX(-37.7%);
    left: 0;
    visibility: visible;
    opacity: 1;
}

.main-menu ul.mega-menu li {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    display: flex;
    align-items: center;
    padding: 6px;
    min-width: 250px;
}

.main-menu ul.mega-menu li:hover {
    background-color: #f8f9fa;
}

.main-menu ul.mega-menu li a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #333;
    font-size: 13px;
    font-weight: 500;
}

.main-menu ul.mega-menu li img {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 5px;
    margin-right: 10px;
}

.main-menu ul.mega-menu li span {
    flex: 1;
    font-size: 14px;
    line-height: 1.2;
}




/*===========================================
   Breadcrumb Area
=============================================*/
.breadcrumb-menu {
    max-width: 100%;
    padding: 0;
    list-style-type: none;
    position: relative;
    margin: 24px 0 -0.4em;
}

.breadcrumb-menu li {
    display: inline-block;
    padding-right: 3px;
    list-style: none;
    position: relative;
}

.breadcrumb-menu li:after {
    content: "/";
    position: relative;
    margin-left: 7px;
    font-weight: 400;
    font-size: 16px;
    color: #ba3042;
}

.breadcrumb-menu li.active {
    color: #fff;
}

.breadcrumb-menu li:last-child {
    padding-right: 0;
    margin-right: 0;
}

.breadcrumb-menu li:last-child:after {
    display: none;
}

.breadcrumb-menu li,
.breadcrumb-menu a,
.breadcrumb-menu span {
    white-space: normal;
    color: inherit;
    word-break: break-word;
    font-weight: 600;
    font-size: 18px;
    color: #ba3042;
}

.breadcrumb-menu a:hover {
    color: #ba3042;
}

@media (max-width: 767px) {
    .breadcrumb-menu {
        margin-top: 25px;
    }
}

.breadcrumb-title {
    color: #fff;
    margin: -0.2em 0 -0.2em 0;
    line-height: 1.1;
    font-size: 45px;
    font-weight: 700;
    z-index: 1;
    position: relative;
}

@media (max-width: 1399px) {
    .breadcrumb-title {
        font-size: 40px;
    }
}

@media (max-width: 1199px) {
    .breadcrumb-title {
        font-size: 38px;
    }
}

@media (max-width: 767px) {
    .breadcrumb-title {
        font-size: 36px;
    }
}

.breadcrumb-wrapper {
    background-size: cover;
    overflow: hidden;
    position: relative;
    z-index: auto;
    text-align: center;
    background-color: #eae8e8;
    padding: 50px 0 50px;
}

.breadcrumb-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(29, 58, 29, 0.8);
}

@media (max-width: 767px) {
    .breadcrumb-wrapper {
        text-align: center;
    }
}

@media (max-width: 575px) {
    .breadcrumb-title {
        font-size: 40px;
    }

    .breadcrumb-menu {
        text-align: center;
        margin: 22px 0 -0.45em 0;
    }

    .breadcrumb-menu li,
    .breadcrumb-menu a,
    .breadcrumb-menu span {
        font-size: 14px;
    }
}



/*===========================================
   Banner Section
=============================================*/
.banner-section {
    position: relative;
}

.home-carousel {
    position: relative;
}

.home-carousel .slide-item {
    position: relative;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 100px 0px 100px 0px;
}

.home-carousel .slide-item:before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    top: 0px;
    right: 0px;
    z-index: 2;
}

.home-carousel .slide-item .image-layer {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.auto-container {
    position: static;
    max-width: 1200px;
    padding: 0px 15px;
    margin: 0 auto;
}

.home-carousel .content-box {
    position: relative;
    display: block;
    z-index: 5;
    width: 100%;
    padding: 20px;
}

.home-carousel .content-box:before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    background: rgba(186, 48, 66, 0.5);
    top: 0px;
    right: 0px;
}

.home-carousel .content-box h1 {
    position: relative;
    display: block;
    color: #fff;
    font-size: 35px;
    line-height: 45px;
    font-weight: 700;
    margin-bottom: 30px;
    opacity: 0;
    -webktransform: translateY(100px);
    -moz-transform: translateY(100px);
    -ms-transform: translateY(100px);
    -o-transform: translateY(100px);
    transform: translateY(100px);
    -webktransition: all 1000ms ease;
    -moz-transition: all 1000ms ease;
    -ms-transition: all 1000ms ease;
    -o-transition: all 1000ms ease;
    transition: all 1000ms ease;
}

.home-carousel .active .content-box h1 {
    opacity: 1;
    -webktransform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
    -webktransition-delay: 1000ms;
    -moz-transition-delay: 1000ms;
    -ms-transition-delay: 1000ms;
    -o-transition-delay: 1000ms;
    transition-delay: 1000ms;
}

.home-carousel .content-box p {
    position: relative;
    display: block;
    color: #fff;
    margin-bottom: 30px;
    font-size: 18px;
    line-height: 30px;
    opacity: 0;
    -webktransform: translateY(100px);
    -moz-transform: translateY(100px);
    -ms-transform: translateY(100px);
    -o-transform: translateY(100px);
    transform: translateY(100px);
    -webktransition: all 1300ms ease;
    -moz-transition: all 1300ms ease;
    -ms-transition: all 1300ms ease;
    -o-transition: all 1300ms ease;
    transition: all 1300ms ease;
}

.home-carousel .active .content-box p {
    opacity: 1;
    -webktransform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
    -webktransition-delay: 1300ms;
    -moz-transition-delay: 1300ms;
    -ms-transition-delay: 1300ms;
    -o-transition-delay: 1300ms;
    transition-delay: 1300ms;
}

.banner-section .home-carousel .content-box a.theme-btn {
    padding: 14px 47px;
}

.home-carousel .content-box .btn-box {
    position: relative;
    opacity: 0;
    -webktransform: translateY(100px);
    -moz-transform: translateY(100px);
    -ms-transform: translateY(100px);
    -o-transform: translateY(100px);
    transform: translateY(100px);
    -webktransition: all 1600ms ease;
    -moz-transition: all 1600ms ease;
    -ms-transition: all 1600ms ease;
    -o-transition: all 1600ms ease;
    transition: all 1600ms ease;
}

.home-carousel .active .content-box .btn-box {
    opacity: 1;
    -webktransform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
    -webktransition-delay: 1600ms;
    -moz-transition-delay: 1600ms;
    -ms-transition-delay: 1600ms;
    -o-transition-delay: 1600ms;
    transition-delay: 1600ms;
}

@media (max-width: 1024px) {
    .home-carousel .content-box {
        padding: 20px 30px;
    }
}

@media (max-width: 425px) {
    .home-carousel .content-box {
        text-align: center;
    }

    .home-carousel .content-box h1 {
        font-size: 45px;
        line-height: 54px;
    }
}

.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next {
    font-size: 20px;
    height: 50px;
    border-radius: 50%;
    left: 45px;
    line-height: 50px;
    position: absolute;
    text-align: center;
    top: 50%;
    width: 50px;
    background: linear-gradient(45deg, #5dbc34, #047206) !important;
    -moz-transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    -webktransform: translate(0, -50%);
    transform: translate(0, -50%);
    -moz-transition: all 600ms ease 0ms;
    -webktransition: all 600ms ease 0ms;
    -ms-transition: all 600ms ease 0ms;
    -o-transition: all 600ms ease 0ms;
    transition: all 600ms ease 0ms;
    opacity: 0;
    visibility: hidden;
}

.owl-carousel:hover .owl-nav button.owl-prev,
.owl-carousel:hover .owl-nav button.owl-next {
    opacity: 1;
    visibility: visible;
}

.owl-carousel:hover .owl-nav button.owl-prev {
    left: 15px;
}

.owl-carousel:hover .owl-nav button.owl-next {
    right: 15px;
}

.owl-carousel .owl-nav button.owl-next {
    left: auto;
    right: 45px;
}

.owl-carousel .owl-nav button i {
    color: #fff;
}



/*===========================================
  Intro section
=============================================*/
.intro-section {
    background-color: #f8f9fa;
    padding: 50px 20px 20px;
    text-align: center;
}

.intro-title {
    font-size: 1.8rem;
    font-weight: bold;
    color: #333;
    position: relative;
    display: inline-block;
}

.intro-title::after {
    content: '';
    display: block;
    width: 50px;
    height: 4px;
    background: #5dbc34;
    margin: 8px auto 0;
    border-radius: 2px;
}

.intro-text {
    font-size: 1.1rem;
    color: #555;
    max-width: 900px;
    margin: 20px auto;
}


/*===========================================
   Services
=============================================*/
.service-section {
    padding: 40px 0;
    background-color: #f8f9fa;
}

.service-section h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.service-box {
    text-align: center;
    padding: 30px;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.service-icon {
    font-size: 40px;
    color: #007bff;
    margin-bottom: 15px;
}

.service-title {
    font-weight: bold;
    font-size: 20px;
}

.service-text {
    font-size: 16px;
    color: #555;
}

.service-link {
    display: inline-block;
    margin-top: 10px;
    font-weight: bold;
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.service-box:hover .service-link {
    color: #5dbc34;
}



/*===========================================
   Categories
=============================================*/
.category-area {
    position: relative;
}

.category-area h2 {
    font-size: 2.0rem;
}

.category-card {
    display: flex;
    align-items: center;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: #f8f9fa;
    transition: transform 0.2s ease-in-out;
    text-decoration: none;
    color: #333;
    font-size: 0.9rem;
    min-height: 70px;
}

.category-card:hover {
    transform: scale(1.02);
    background-color: #e9ecef;
}

.category-icon {
    width: 40px;
    height: 40px;
    background-color: #e9ecef;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    flex-shrink: 0;
}

.category-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.category-text {
    flex-grow: 1;
    font-size: 12px;
    line-height: 1.2;
}



/*===========================================
   Home Courses
=============================================*/
.home-courses {
    position: relative;
    padding: 0 0 25px;
}

.home-courses h2 {
    font-size: 1.8rem;
}



/*===========================================
   Achievements
=============================================*/
.achievement {
    transition: transform 0.3s ease-in-out;
    background: white;
    margin-bottom: 20px;
}

.achievement:hover {
    transform: scale(1.1);
    box-shadow: 1px 2px 5px rgba(0, 0, 0, 0.1);
}



/*===========================================
   Testimonials
=============================================*/
.testimonial-area {
    position: relative;
    padding: 80px 0 45px;
}

.testimonial-area h2 {
    font-size: 1.8rem;
}

.testimonial-item {
    padding: 26px 28px;
    background-color: #fff;
    border-top: 1px solid #eee;
    box-shadow: rgba(5, 27, 44, 0.12) 0px 1px 8px -1px, rgba(5, 27, 44, 0.08) 0px 3px 4px -1px;
    border-radius: 5px;
}

.testimonial-rating span {
    font-size: 15px;
    letter-spacing: .3em;
    color: #f7b401;
    display: inline-block;
    margin-bottom: 15px;
}

.testimonial-dsc p {
    font-size: 16px;
    margin-bottom: 20px;
}

.testimonial-avater-thumb {
    position: relative;
    margin-right: 25px;
}

.testimonial-avater-thumb img {
    width: 60px;
    height: 60px;
    border: 1px dashed #5dbc34;
    border-radius: 50%;
}

.testimonial-avater-icon {
    position: absolute;
    bottom: 0;
    right: 0;
}

.testimonial-avater-icon i {
    font-size: 8px;
    width: 20px;
    height: 20px;
    line-height: 20px;
    text-align: center;
    color: #fff;
    background-color: #5dbc34;
    border-radius: 50%;
}

.testimonial-avater-title {
    font-size: 18px;
}

.testimonial-avater-designation {
    font-size: 14px;
    color: #03690c;
}



/*===========================================
   Clients Area
=============================================*/
.clients-area h2 {
    font-size: 1.9rem;
}

.client-logo img {
    max-height: 60px;
    filter: grayscale(100%);
    transition: transform 0.3s ease, filter 0.3s ease;
}

.client-logo img:hover {
    transform: scale(1.1);
    filter: grayscale(0%);
}



/*===========================================
   About us
=============================================*/
.about-us {
    padding: 50px 0;
}

.about-us h2 {
    font-size: 2.0rem;
    position: relative;
    color: #1d3557;
}

.about-us h2::after {
    content: "";
    width: 50px;
    height: 4px;
    background: #a51228;
    display: block;
    margin-top: 8px;
}

.about-us p {
    font-size: 1.1rem;
    line-height: 1.6;
}

.mission-vision {
    position: relative;
    overflow: hidden;
    padding: 90px 0px 60px;
    background-color: #03690c;
}

.mission-vision .mission {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 661px;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
}

.mission-vision .vision {
    position: absolute;
    right: 0px;
    top: 0px;
    width: 661px;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
}

.mission-vision .content-column {
    position: relative;
    margin-bottom: 30px;
    color: #fff;
}

.mission-vision .content-column .inner-column {
    position: relative;
}

.mission-vision .content-column h3 {
    position: relative;
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    padding-bottom: 15px;
    text-transform: uppercase;
}

.mission-vision .content-column h3:before {
    position: absolute;
    content: '';
    left: 0px;
    bottom: 0px;
    width: 100px;
    height: 2px;
    background-color: #fff;
}

.mission-vision .content-column .inner-column p {
    position: relative;
    color: #dce4f0;
    font-size: 16px;
    line-height: 1.7em;
    margin-bottom: 20px;
}

.core-values .card:hover {
    transform: translateY(-5px);
    transition: all 0.3s ease-in-out;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.core-values h2 {
    font-size: 2.0rem;
    color: #1d3557;
}




/*===========================================
   Contact Area
=============================================*/
.contact-section {
    position: relative;
    padding: 60px 0;
    background: #f2f3f4;
}

.contact-section h2 {
    font-size: 2.0rem;
    color: #1d3557;
}

.contact-container {
    max-width: 1100px;
    margin: auto;
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-form input,
.contact-form textarea {
    background: #fff;
    border: 1px solid #ddd;
    color: #333;
    border-radius: 8px;
    padding: 12px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #999;
}

.contact-form button {
    background: #5dbc34;
    border: none;
    padding: 12px;
    border-radius: 8px;
    color: white;
    font-weight: bold;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.contact-form button:hover {
    background: #4da428;
}

.contact-info {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-info i {
    font-size: 30px;
    margin-bottom: 10px;
    color: #5dbc34;
}

.contact-info p {
    margin: 0;
    font-size: 15px;
}

.contact-info:hover {
    transform: scale(1.05);
    transition: 0.3s;
}


.map-area {
    position: relative;
}



/*=======================================
   Courses list Page
========================================*/
.courses-area {
    position: relative;
    padding: 30px 0;
}

.course-card {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    background: #fff;
    padding-bottom: 15px;
    min-height: 280px;
}

.course-card:hover {
    transform: scale(1.05);
}

.course-card img {
    width: 100%;
    height: auto;
    border-radius: 10px 10px 0 0;
}

.course-title {
    margin: 20px;
    font-weight: 400;
    font-size: 16px;
}

.course-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(34, 139, 34, 0.9);
    color: white;
    opacity: 0;
    transition: opacity 0.3s;
    padding: 15px;
    overflow-y: auto;
}

.course-card:hover .course-overlay {
    opacity: 1;
}

.course-overlay p,
.course-overlay li {
    font-size: 11px;
    color: #fff;
    margin: 0;
    line-height: 18px;
}

.course-overlay ul {
    padding-left: 15px;
}

.btn-maroon {
    background-color: maroon;
    color: #fff;
    padding: 5px 10px;
    width: 150px;
    font-size: 12px;
    text-decoration: none;
    border-radius: 5px;
    margin: auto;
    display: block;
    margin-top: 10px;
    transition: background 0.3s;
}

.btn-maroon:hover {
    background-color: darkred;
    color: #fff;
}



/*=======================================
   Course Page
========================================*/
.course-area {
    position: relative;
    padding: 20px 0 50px;
}

.course-area h1 {
    font-size: 30px;
}

.course-area h2 {
    font-size: 25px;
}

.course-area h3 {
    font-size: 20px;
}

.course-area h4 {
    font-size: 17px;
}

.course-area h5 {
    font-size: 15px;
}

.custom-tabs {
    display: flex;
    background-color: #5dbc34;
    border-bottom: 2px solid #5dbc34;
}

.custom-tabs .nav-item {
    flex: 1;
    text-align: center;
}

.custom-tabs .nav-link {
    color: white;
    font-weight: bold;
    padding: 10px 15px;
    border: none;
    background: none;
    border-bottom: 3px solid transparent;
    width: 100%;
}

.custom-tabs .nav-link.active {
    color: #5dbc34;
    background-color: white;
    border-bottom: 3px solid white;
}

.schedule-table,
.lms-table {
    width: 100%;
}

.schedule-table,
.lms-table {
    font-size: 13px;
}

.schedule-table th,
.lms-table th,
.schedule-table td,
.lms-table td {
    background-color: #f7f7f7 !important;
}

.schedule-table {
    margin-bottom: 50px;
}

.register-btn {
    background-color: #5dbc34;
    color: white;
    border: none;
    padding: 2px 10px;
    border-radius: 5px;
    cursor: pointer;
    position: relative;
    font-size: 11px;
}

.register-container {
    position: relative;
    display: inline-block;
}

.register-container:hover .register-options {
    display: block;
}

.register-options {
    display: none;
    position: absolute;
    background: white;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    overflow: hidden;
    z-index: 1000;
    width: 100px;
}

.register-options button {
    width: 100%;
    border: none;
    padding: 3px;
    text-align: left;
    cursor: pointer;
    font-weight: bold;
    font-size: 10px;
}

.physical-class {
    background-color: #5dbc34;
    color: white;
}

.online-class {
    background-color: #ab1f36;
    color: white;
}

.right-column {
    background-color: #f7f7f7;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    padding: 15px;
}




/*===========================================
   Trainer registration
=============================================*/
.trainer-area {
    background-color: #f8f9fa;
    padding: 20px 0;
}

.trainer-area .container {
    max-width: 800px;
    margin: 20px auto;
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.trainer-area h2 {
    font-size: 1.7rem;
}

.trainer-area .form-control,
.trainer-area .select2-container .select2-selection--single {
    height: 45px !important;
}

.trainer-area .btn-custom {
    background-color: #5DBC34;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.trainer-area .required {
    color: red;
}

.trainer-area .select2-container--default .select2-selection--single {
    height: calc(2.25rem + 2px) !important;
}

.trainer-area .alert {
    display: none;
}




/*===========================================
   Training Venues
=============================================*/
.training-section {
    padding: 50px 0;
}

.training-title {
    font-size: 2rem;
    font-weight: bold;
    color: #1d3557;
}

.training-content p {
    line-height: 1.6;
}

.training-content h3 {
    font-size: 18px;
}



/*===========================================
   Services
=============================================*/
.services-area {
    padding: 50px 0;
}

.sv-title {
    font-size: 2rem;
    font-weight: bold;
    color: #1d3557;
}

.sv-content p {
    line-height: 1.6;
}

.sv-content h3 {
    font-size: 18px;
}

.consultancy-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.consultancy-card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.15);
}

.consultancy-img {
    height: 130px;
    width: 100%;
    object-fit: cover;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.consultancy-body {
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: 100%;
}

.consultancy-title {
    font-weight: 600;
    color: #333;
    font-size: 1rem;
    text-align: center;
    margin-bottom: 10px;
}

.consultancy-body ul {
    list-style: none;
    padding: 0;
    margin-bottom: auto;
}

.consultancy-body ul li {
    font-size: 0.85rem;
    line-height: 1.2;
    display: flex;
    align-items: center;
    margin-bottom: 6px;
}

.consultancy-body ul li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: #28a745;
    margin-right: 8px;
}



/*===========================================
   Training Calendar
=============================================*/
.schedule {
    padding: 40px 0;
}

.schedule h1 {
    font-size: 1.8rem;
}

.schedule thead th {
    background: #03690C;
    color: #fff;
}

.schedule .table tbody tr:hover>td {
    background: #03690C;
    color: #fff;
}

.schedule td .btn {
    background: #5DBC34;
    color: #fff;
    font-size: 12px !important;
    padding: 2px 10px !important;
    border-radius: 6px;
}

.schedule td .btn:hover {
    background: maroon;
}





/*=======================================
   Blog List
========================================*/
.blog-area {
    position: relative;
    padding: 80px 0;
}

.blog-card {
    border: none;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    background: #fff;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-card .card-body {
    padding: 20px;
}

.blog-meta {
    font-size: 14px;
    color: #6c757d;
}

.blog-meta i {
    color: #28a745;
    margin-right: 5px;
}

.blog-title {
    font-size: 18px;
    font-weight: 400 !important;
    margin-top: 10px;
    color: #000;
}

.read-more {
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    color: #333;
    transition: color 0.3s ease;
}

.blog-card:hover .read-more {
    color: #5dbc34;
}

.pagination .page-item {
    display: inline-block;
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
    background: #f8f9fa;
    color: #333;
    transition: all 0.3s ease;
}

.pagination .page-item.active {
    background: #5dbc34;
    color: white;
}

.pagination .page-item:hover {
    background: #5dbc34;
    color: white;
}




/*=======================================
   Single Blog Post
========================================*/
.post-area {
    padding-bottom: 50px;
}

.blog-post img {
    width: 100%;
    border-radius: 5px;
}

.blog-post h1 {
    font-size: 35px;
}

.blog-post h2 {
    font-size: 28px;
}

.blog-post h3 {
    font-size: 23px;
}

.blog-post h4 {
    font-size: 19px;
}

.blog-post h5 {
    font-size: 16px;
}

.post-meta {
    color: #777;
    font-size: 14px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.post-meta i {
    margin-right: 5px;
}

.share-section {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.share-section h5 {
    margin-bottom: 10px;
    font-weight: bold;
    color: #333;
}

.share-icons {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.share-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    font-size: 16px;
    color: #444;
    background: #ddd;
    transition: 0.3s;
    text-decoration: none;
}

.share-icons a:hover {
    background: #5dbc34;
    color: #fff;
}

.sidebar .search-box {
    padding: 15px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.sidebar .search-box form {
    display: flex;
    align-items: center;
    position: relative;
}

.sidebar .search-box input {
    width: 100%;
    padding: 10px 40px 10px 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    outline: none;
}

.sidebar .search-box button {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    background: #5dbc34;
    color: #fff;
    cursor: pointer;
    font-size: 16px;
    padding: 5px 10px;
    border-radius: 5px;
}

.recent-posts {
    padding: 15px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.recent-posts h3 {
    font-size: 14px;
    margin-bottom: 15px !important;
}

.recent-posts img {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 5px;
}

.recent-posts .post-item {
    display: flex;
    align-items: center;
    margin-bottom: 35px;
}

.recent-posts .post-item .post-info {
    margin-left: 10px;
}

.recent-posts .post-item .post-info a {
    text-decoration: none;
    color: #333;
    font-size: 14px;
    line-height: 1.0 !important;
    transition: color 0.3s ease;
}

.recent-posts .post-item .post-info a:hover {
    color: #5dbc34;
}

.recent-posts .post-item .post-info .post-meta {
    font-size: 12px;
}



/*=======================================
   Certificate verification
========================================*/
.cert-area {
    position: relative;
    background-color: #f8f9fa;
    padding: 30px 0;
}

.verify-section {
    max-width: 600px;
    margin: 50px auto;
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.cert-area h3 {
    font-size: 22px;
}

.result-card {
    display: none;
    margin-top: 20px;
}

.btn-verify {
    background-color: #5DBC34;
    border-color: #5DBC34;
    color: #fff;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.btn-verify:hover {
    background-color: #4ea62c;
    border-color: #4ea62c;
    color: #fff;
}



/*=======================================
   Privacy Policy
========================================*/
.privacy-area {
    position: relative;
    background-color: #f8f9fa;
    padding: 20px;
}

.privacy-area .container {
    max-width: 900px;
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin-top: 30px;
}

.privacy-area h1 {
    font-size: 30px;
}

.privacy-area h2 {
    font-size: 23px;
}

.privacy-area p {
    color: #333;
}


/*=======================================
   Registration page
========================================*/
.registration-area {
    position: relative;
    background-color: #f8f9fa;
    padding: 20px 0;
}

.registration-area .container {
    max-width: 1050px;
}

.registration-area .card {
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.registration-area .form-control,
.registration-area .form-select {
    border-radius: 8px;
    background-color: #f0f3f5;
    height: 45px;
}

.course-details {
    background: linear-gradient(135deg, #5dbc34, #4da62c);
    padding: 20px;
    border-radius: 12px;
}

.course-details * {
    color: #fff;
}

.registration-area .btn-primary {
    background: #5dbc34;
    border: none;
    padding: 12px;
    border-radius: 8px;
    color: white;
    font-weight: bold;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.registration-area .btn-primary:hover {
    background-color: #4da62c;
    border-color: #4da62c;
}

.registration-area .form-label.required::after {
    content: " *";
    color: red;
}

.registration-area .select2-container .select2-selection--single {
    height: 45px !important;
    border-radius: 8px;
    background-color: #f0f3f5;
}

.registration-area .select2-selection__rendered {
    line-height: 45px !important;
}

.registration-area .select2-selection__arrow {
    height: 45px !important;
}

/*Pre-training*/
.pretraining-section {
    position: relative;
    background-color: #f8f9fa;
    padding: 20px 0;
    display: none;
}

.pretraining-section h2 {
    font-size: 1.5rem;
}

.pretraining-section .section-title {
    margin-top: 30px;
    font-size: 1.3rem;
    font-weight: 600;
}

.pretraining-section .form-section {
    background: #ffffff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
}

.pretraining-section .form-check {
    margin-bottom: 10px;
}

.pretraining-section .form-label {
    font-weight: 500;
}

.pretraining-section .required::after {
    content: " *";
    color: red;
}


/*=======================================
   Login Page
========================================*/
.auth-section {
    background: #f2f3f4;
    padding: 50px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Arial', sans-serif;
}

.auth-section .container {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.15);
    text-align: center;
    max-width: 400px;
    width: 100%;
}

.login-logo {
    font-size: 40px;
    color: #5dbc34;
    margin-bottom: 20px;
}

.auth-section h3 {
    font-size: 27px;
}

.input-group {
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
}

.input-group .input-group-text {
    background: #5dbc34;
    color: white;
    border: none;
}

.form-control {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
}

.auth-section .btn {
    background: #5dbc34;
    border: none;
    padding: 12px;
    border-radius: 8px;
    color: white;
    font-weight: bold;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.auth-section .btn:hover {
    background: #4da428;
}

.forgot-password {
    display: block;
    margin-top: 10px;
    color: #5dbc34;
    text-decoration: none;
    transition: 0.3s;
}

.forgot-password:hover {
    text-decoration: underline;
}

@media (max-width: 480px) {
    .login-container {
        padding: 30px;
    }
}


/********Forgot password**********/
.auth-section .container h2 {
    margin-bottom: 20px;
    font-size: 28px;
    color: #333;
}

.forgot .input-group {
    display: flex;
    align-items: center;
    background: #f1f1f1;
    border-radius: 5px;
    padding: 10px;
    margin-bottom: 15px;
}

.forgot .input-group i {
    margin-right: 10px;
    color: #5dbc34;
}

.forgot .input-group input {
    border: none;
    background: none;
    outline: none;
    flex: 1;
    font-size: 16px;
}

.back-to-login {
    display: block;
    margin-top: 15px;
    color: #5dbc34;
    text-decoration: none;
    font-size: 14px;
}

.back-to-login:hover {
    text-decoration: underline;
}



/*=======================================
   Newsletter subscription
========================================*/
.newsletter-area {
    position: relative;
    padding: 40px 0;
    /*  height: 100vh;*/
    background-image: url('../images/bg/subscribe.jpg');
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    overflow: hidden;
}

.newsletter-area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(214, 212, 212, 0.8);
}

.subscribe-area {
    padding: 35px;
    border-radius: 5px;
    position: relative;
    z-index: 3;
    background-color: #ba3042 !important;
}

.subscribe-area .subscribe-wrap {
    display: flex;
    gap: 30px;
    align-items: center;
}

.subscribe-area .subscribe-wrap .icon {
    font-size: 80px;
    color: rgba(255, 255, 255, 0.4);
}

.subscribe-area .subscribe-wrap .subscribe-wrap-title {
    color: #fff;
    font-size: 24px;
    font-weight: 700;
}

.subscribe-area .subscribe-wrap .subscribe-wrap-text {
    color: #fff;
    margin-bottom: -0.4em;
}

.subscribe-area .newsletter-form {
    position: relative;
}

.subscribe-area .newsletter-form .form-group {
    background: #fff;
    border-radius: 50px;
    margin-bottom: 0;
}

.subscribe-area .newsletter-form .form-group input {
    border: 0;
    color: rgba(0, 0, 0, 0.8);
    height: 58px;
    padding: 0 120px 0 20px;
    background: transparent;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 400;
}

.subscribe-area .newsletter-form .form-group input::placeholder {
    color: #878680;
}

.subscribe-area .newsletter-form .btn {
    position: absolute;
    right: 5px;
    top: 5px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 800;
    height: 50px;
    padding: 0 26px;
    background: #5dbc34;
}

@media (max-width: 991px) {
    .subscribe-area .newsletter-form {
        width: 100%;
    }
}

@media (max-width: 767px) {
    .subscribe-area .subscribe-wrap {
        flex-wrap: wrap;
        gap: 20px;
        text-align: center;
        justify-content: center;
    }

    .subscribe-area .newsletter-form .btn {
        position: relative;
        width: 100%;
        margin-top: 15px;
        right: 0;
        top: 0;
        justify-content: center;
    }

    .subscribe-area .newsletter-form .form-group input {
        padding: 0 30px;
        height: 54px;
    }
}

@media (max-width: 575px) {
    .subscribe-area {
        padding: 40px;
    }
}

@media (max-width: 375px) {
    .subscribe-area {
        padding: 30px;
    }
}


/*=======================================
   Footer Area
========================================*/
.footer-area {
    position: relative;
    top: 0;
    background: url(../images/bg/footer-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

.footer-area .overlay {
    background: rgba(4, 114, 6, 0.80);
    padding: 50px 0 30px;
    position: relative;
}

.footer-logo {
    max-width: 70px !important;
}

.footer-area ul {
    margin: 0;
    padding: 0;
}

p.footer-desc {
    margin: 25px 0 0;
    color: #fff;
    opacity: 0.6;
    width: 98%;
}

.footer-social-icon {
    text-align: left;
    margin-top: 25px;
    margin-bottom: 25px;
}

.footer-social-icon ul li {
    display: inline-block;
}

.footer-social-icon ul li i {
    display: inline-block;
    font-size: 16px;
    border: transparent;
    background: #5dbc34;
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    margin: 0 3px;
    position: relative;
    z-index: 1;
    transition: 0.5s;
}

.footer-social-icon ul li i:after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: #c7253b;
    border-radius: 50%;
    z-index: -1;
    transform: scale(0);
    transition: 0.5s;
}

.footer-social-icon ul li i:hover:after {
    transform: scale(1);
}

.footer-area .row.add-footer-class {
    padding: 111px 0 0;
}

.footer-widget-content {
    margin-bottom: 35px;
}

.footer-widget-title h4 {
    font-size: 21px;
    color: #fff;
    font-weight: 600;
    margin-bottom: 25px;
}

.footer-widget-title h4::after {
    content: '';
    display: block;
    width: 135px;
    height: 2px;
    /*  background-color: #fff;*/
    background-image: url(../images/footer-underline.png);
    background-size: cover;
    background-repeat: no-repeat;
    margin-top: 10px;
}

.footer-widget-menu p {
    width: 75%;
    color: #95958f;
    margin-bottom: 21px;
}

.footer-widget-menu ul {
    display: inline-block;
    margin-right: 18px;
}

.footer-widget-menu ul li {
    color: #eee;
    margin-bottom: 9px;
    list-style: none;
}

.footer-widget-menu ul li a {
    display: inline-block;
    color: #fff;
    opacity: 0.6;
    line-height: 30px;
    font-size: 14px;
    transition: 0.5s;
}

.footer-widget-menu ul li a:hover {
    color: #c7253b;
    opacity: 1;
}

.footer-widget-menu ul li i {
    font-size: 16px;
    color: #fff;
    display: inline-block;
    opacity: 0.6;
    margin-right: 8px;
    transition: 0.5s;
}

.footer-widget-menu ul li a:hover i {
    color: #c7253b;
    opacity: 1;
}

.footer-widget-info {
    display: flex;
    gap: 20px;
    margin-bottom: 19px;
}

.footer-widget-info-icon i {
    display: inline-block;
    background: #014628;
    width: 45px;
    height: 45px;
    text-align: center;
    border-radius: 50%;
    line-height: 45px;
    color: #fff;
    margin-top: 7px;
    position: relative;
}

.footer-widget-info-icon i:after {
    position: absolute;
    content: "";
    width: 48px;
    height: 48px;
    left: -2px;
    top: -2px;
    border: 1px dashed #fff;
    border-radius: 50%;
    opacity: 0.5;
    animation: rotateme2 20s linear infinite;
    transition: 0.5s;
}

.footer-widget-info:hover .footer-widget-info-icon i:after {
    opacity: 1;
}

.footer-widget-info-content h4 {
    font-size: 16px;
    color: #fff;
    font-weight: 500;
    margin: 0 0 5px;
}

.footer-widget-info-content p {
    margin: 0;
    color: #fff;
    opacity: 0.6;
    font-size: 14px;
    width: 100%;
}

.footer-widget-blog {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-bottom: 27px;
}

.footer-widget-blog-thumb {
    max-width: 45px;
    overflow-x: hidden;
}

.footer-widget-blog-thumb img {
    height: 45px;
    width: auto;
}

.footer-widget-blog-content a {
    display: inline-block;
    font-size: 13px;
    color: #eee;
    font-weight: 500;
    line-height: 21px;
    transition: 0.5s;
}

.footer-widget-blog-content a:hover {
    color: #fed63a;
}

.footer-widget-blog-content p {
    font-size: 13px;
    color: #fff;
    opacity: 0.5;
    margin: 4px 0 0;
    padding-left: 0;
    position: relative;
}


/*footer-botom*/

.footer-bottom {
    background: rgba(4, 114, 6, 1.0);
    padding: 25px 0 10px;
}

.footer-bottom-content p {
    text-align: center;
    color: #eee;
}

.footer-bottom-content p a {
    display: inline-block;
    color: #95958f;
    font-weight: 500;
    transition: 0.5s;
}

.footer-bottom-content p a:hover {
    color: #49AF45;
}


/*=======================================
   Scrollup Button
========================================*/
.splitting .char {
    animation: slide-in 2s cubic-bezier(.5, 0, .5, 1) both;
    animation-delay: calc(200ms * var(--char-index));
}

@keyframes slide-in {
    from {
        transform: translateY(-1em) rotate(-.5turn) scale(0.5);
        opacity: 0;
    }
}


/*------back-to-top------------*/
.progress_indicator {
    position: fixed;
    right: 26px;
    bottom: 12px;
    height: 45px;
    width: 45px;
    cursor: pointer;
    display: block;
    border-radius: 50px;
    box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.7);
    z-index: 9999999999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transform: translateY(15px) !important;
    transition: all 200ms linear !important;
}

.progress_indicator.active-progress {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) !important;
}

.progress_indicator::after {
    position: absolute;
    content: "\f106";
    font-family: "Font Awesome 6 Free";
    text-align: center;
    line-height: 45px;
    font-size: 18px;
    color: #bf2438;
    left: 0;
    top: 0;
    height: 45px;
    width: 45px;
    cursor: pointer;
    display: block;
    font-weight: 900;
    z-index: 1;
    transition: all 200ms linear !important;
}

.progress_indicator::before {
    position: absolute;
    content: "\f106";
    font-family: "Font Awesome 6 Free";
    text-align: center;
    line-height: 45px;
    font-size: 18px;
    font-weight: 900;
    opacity: 0;
    -webkbackground-clip: text;
    background-clip: text;
    -webktext-fill-color: transparent;
    left: 0;
    top: 0;
    height: 45px;
    width: 45px;
    cursor: pointer;
    display: block;
    z-index: 2;
    transition: all 200ms linear !important;
}

.progress_indicator:hover ::after {
    color: #bf2438;
}

.progress_indicator:hover ::before {
    opacity: 1;
}

.progress_indicator svg path {
    fill: none;
}

.progress_indicator svg.progress-circle path {
    stroke: #bf2438;
    stroke-width: 4;
    box-sizing: border-box;
    transition: all 200ms linear !important;
}




/*=======================================
   Loader
========================================*/
.loader {
    display: none;
}

.spinner {
    display: inline-block;
    position: relative;
    width: 64px;
    height: 40px;
}

.spinner div {
    display: inline-block;
    position: absolute;
    left: 6px;
    width: 7px;
    background: #5dbc34;
    color: #5dbc34;
    -webkanimation: spinner 1.2s infinite ease-in-out;
    animation: spinner 1.2s cubic-bezier(0, 0.5, 0.5, 1) infinite;
}

.spinner div:nth-child(1) {
    left: 6px;
    animation-delay: -0.16s;
}

.spinner div:nth-child(2) {
    left: 26px;
    animation-delay: -0.12s;
}

.spinner div:nth-child(3) {
    left: 45px;
    animation-delay: -0.8s;
}

.spinner div:nth-child(4) {
    left: 65px;
    animation-delay: -0.4s;
}

.spinner div:nth-child(5) {
    left: 85px;
    animation-delay: 0;
}

@keyframes spinner {
    0% {
        top: 6px;
        height: 51px;
    }

    50%,
    100% {
        top: 19px;
        height: 26px;
    }
}

@-webkkeyframes sk-stretchdelay {

    0%,
    40%,
    100% {
        -webktransform: scaleY(0.4)
    }

    20% {
        -webktransform: scaleY(1.0)
    }
}

@keyframes sk-stretchdelay {

    0%,
    40%,
    100% {
        transform: scaleY(0.4);
        -webktransform: scaleY(0.4);
    }

    20% {
        transform: scaleY(1.0);
        -webktransform: scaleY(1.0);
    }
}