/**
===========================
Template: Solarex - Solar & Renewable Energy HTML Template
File: Default Styles
Author: ultraDevs
Author URI: https://themeforest.net/user/ultradevs
Description: Solarex - Solar & Renewable Energy HTML Template
Version: 1.0.0
===========================

Note: This file contains the styles for the full template. You can edit the styles of the template from here.

Default Styles

Table of Contents
01/ Variables
02/ Mixins
03/ Animation
04/ Fonts
05/ Common
06/ Top Header
07/ Header
08/ Hero
09/ Services
10/ About US
11/ Features
12/ Video
13/ Contact
14/ Portfolio
15/ Sponsor
16/ FAQ
17/ News Letter
18/ Stats
19/ Testimonial
20/ Blog
21/ Footer
22/ Support
23/ Pricing

====================================
**/
/*------------------------------------
	01/ Variables
------------------------------------*/
/*------------------
Responsive Media Query Variables
------------------*/
/*------------------
Colors
------------------*/
/*------------------------------------
	02/ Mixins
------------------------------------*/
/*------------------------------------
	03/ Animation
------------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Exo:ital,wght@0,100..900;1,100..900&amp;family=Manrope:wght@200..800&amp;display=swap");
.ud-animated {
    animation-duration: 1s;
    animation-fill-mode: both;
}

/**
 * Fade in animation
*/
.ud-fade-in {
    animation-name: fadeIn;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
/**
 * Fade out animation
*/
.ud-fade-out {
    animation-name: fadeOut;
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}
/**
 * Fade in Left animation
*/
.ud-fade-in-left {
    animation-name: fadeInLeft;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
/**
 * Fade in Right animation
*/
.ud-fade-in-right {
    animation-name: fadeInRight;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
/**
 * Fade in Up animation
*/
.ud-fade-in-up {
    animation-name: fadeInUp;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/**
 * Fade in Down animation
*/
.ud-fade-in-down {
    animation-name: fadeInDown;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/**
 * Zoom in animation
*/
.ud-zoom-in {
    animation-name: zoomIn;
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.5);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}
/**
 * Zoom out animation
*/
.ud-zoom-out {
    animation-name: zoomOut;
}

@keyframes zoomOut {
    from {
        opacity: 1;
        transform: scale(1);
    }
    to {
        opacity: 0;
        transform: scale(0.5);
    }
}
/**
 * Rotate animation
*/
.ud-rotate {
    animation-name: rotate;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}
/**
 * Bounce animation
*/
.ud-bounce {
    animation-name: bounce;
}

@keyframes bounce {
    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-30px);
    }
    60% {
        transform: translateY(-15px);
    }
}
/**
 * Flash animation
*/
.ud-flash {
    animation-name: flash;
}

@keyframes flash {
    0%,
    50%,
    100% {
        opacity: 1;
    }
    25%,
    75% {
        opacity: 0;
    }
}
/*------------------------------------
	04/ Fonts
------------------------------------*/
/*------------------------------------
	05/ Common
------------------------------------*/
*,
*::before,
*::after {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: #fff;
    color: #000;
    font-family: "Manrope", sans-serif;
    font-size: 16px;
    line-height: 1.5;
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: #24231d;
    font-family: Manrope;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 28px; /* 155.556% */
    transition: all 0.3s ease-in-out;
}

a:hover,
a:focus {
    color: #24231d;
    text-decoration: none;
}

h1,
h2,
h3,
.srex-accordion .accordion-header__left__badge,
h4,
h5,
h6,
p {
    margin: 0;
    color: #24231d;
    transition: all 0.3s ease-in-out;
}

h1 a,
h2 a,
h3 a,
.srex-accordion .accordion-header__left__badge a,
h4 a,
h5 a,
h6 a,
p a {
    color: inherit;
}

h1 {
    color: #24231d;
    font-family: Manrope;
    font-size: 60px;
    font-style: normal;
    font-weight: 700;
    line-height: 115%;
}
@media (max-width: 767px) {
    h1 {
        font-size: 45px;
        line-height: 55px;
    }
}

h2 {
    color: #24231d;
    font-family: Exo;
    font-size: 48px;
    font-style: normal;
    font-weight: 600;
    line-height: 57.6px; /* 120% */
    text-transform: capitalize;
}
@media (max-width: 767px) {
    h2 {
        font-size: 35px;
        line-height: 50px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    h2 {
        font-size: 40px;
        line-height: 50px;
    }
}

h3,
.srex-accordion .accordion-header__left__badge {
    color: #24231d;
    font-family: Manrope;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 28px; /* 140% */
}
@media (max-width: 767px) {
    h3,
    .srex-accordion .accordion-header__left__badge {
        font-size: 18px;
        line-height: 25px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    h3,
    .srex-accordion .accordion-header__left__badge {
        font-size: 19px;
        line-height: 25px;
    }
}

h4 {
    font-family: Manrope;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 28px; /* 155.556% */
    text-transform: capitalize;
}

h5 {
    font-family: Exo;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 36px; /* 225% */
    letter-spacing: 2.4px;
    text-transform: uppercase;
    color: #1d8f2c;
}
@media (max-width: 767px) {
    h5 {
        font-size: 15px;
        line-height: 20px;
    }
}

h6 {
    color: #24231d;
    font-family: Manrope;
    font-size: 14px;
    font-style: normal;
    font-weight: 800;
    line-height: 30px; /* 214.286% */
    text-transform: capitalize;
}

p {
    font-family: Manrope;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 28px;
    color: #333;
}
@media (max-width: 767px) {
    p {
        font-size: 15px;
        line-height: 20px;
    }
}

ul,
ol {
    list-style: none;
    padding: 0;
    margin: 0;
}

button {
    border: none;
    background: none;
    cursor: pointer;
}

i {
    line-height: 0;
    margin: 0;
    padding: 0;
}

/*------------------------------------
	Input
------------------------------------*/
input:focus {
    outline: none;
}

/*------------------------------------
	Section
------------------------------------*/
.mission-carousal {
    height: 600px;
    width: 100%;
    position: absolute;
}

.srex-section {
    padding-bottom: 120px;
    position: relative;
}
@media (max-width: 767px) {
    .srex-section {
        padding-bottom: 30px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .srex-section {
        padding-bottom: 40px;
    }
}
.srex-section__frame {
    position: absolute;
    left: 46%;
    top: 180px;
}
@media (max-width: 767px) {
    .srex-section__frame {
        left: 36%;
    }
}
.srex-section__head--mw {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}
@media (max-width: 767px) {
    .srex-section__head {
        max-width: 95%;
        margin: 0 auto;
        text-align: center;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .srex-section__head {
        max-width: 95%;
        margin: 0 auto;
        text-align: center;
    }
}
@media (max-width: 767px) {
    .srex-section__head .srex-icon-list {
        display: table;
        margin: 0 auto;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .srex-section__head .srex-icon-list {
        display: table;
        margin: 0 auto;
    }
}
.srex-section__head__badge {
    color: #1d8f2c;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}
.srex-section__head__badge img {
    width: 20px;
    height: 20px;
}
/*------------------------------------
	Container
------------------------------------*/
@media (max-width: 767px) {
    .container,
    .srex-about-us-one__container {
        width: 95%;
    }
}
.container-fluid {
    width: 90%;
}

/*------------------------------------
	Button
------------------------------------*/
.srex-btn {
    font-family: Manrope;
    font-size: 14px;
    font-style: normal;
    font-weight: 800;
    line-height: 30px; /* 214.286% */
    text-transform: capitalize;
    transition: all 0.3s ease;
    display: inline-block;
    padding: 10px 20px;
}
@media (max-width: 767px) {
    .srex-btn {
        padding: 10px 20px;
    }
}
.srex-btn--outline {
    color: #24231d;
    background-color: transparent;
    border: 1px solid #1d8f2c;
    border-radius: 999px;
}
.srex-btn--outline:hover {
    background-color: #1d8f2c;
    color: #fff;
}
.srex-btn--primary {
    color: #fff;
    background-color: #1d8f2c;
    border-radius: 999px;
}
.srex-btn--primary:hover {
    background-color: #ff7029;
    color: #fff;
}
.srex-btn--secondary {
    color: #fff;
    background-color: #ff7029;
    border-radius: 999px;
}
.srex-btn--secondary:hover {
    background-color: #1d8f2c;
    color: #fff;
}
.srex-btn--white {
    color: #24231d;
    background-color: #fff;
    border-radius: 999px;
}
.srex-btn--white:hover {
    background-color: #ff7029;
    color: #fff;
}
.srex-btn i {
    margin-left: 10px;
    font-size: 14px;
    font-style: normal;
    font-weight: 900;
    line-height: normal;
    transition: all 0.3s ease;
}

/*------------------------------------
	Icon List 
------------------------------------*/
.srex-icon-list ul li {
    display: -ms-flexbox;
    display: flex;
    gap: 15px;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 10px;
}
.srex-icon-list ul li i {
    color: #1d8f2c;
    font-size: 16px;
    font-style: normal;
    font-weight: 900;
    line-height: normal;
}
.srex-icon-list ul li p {
    margin-bottom: 0;
    color: #24231d;
}
.srex-icon-list--multi-text ul li {
    -ms-flex-align: start;
    align-items: start;
    text-align: left;
}
.srex-icon-list--multi-text ul li i {
    line-height: 33px;
}
.srex-icon-list--multi-text ul li p {
    color: #878680;
}

/*------------------------------------
	Overlay
------------------------------------*/
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 40;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease-in-out;
}
.overlay--active {
    opacity: 1;
    visibility: visible;
}

/*---------------------
	Info Box
----------------------*/
.srex-info-box .row {
    --bs-gutter-x: 30px;
}
.srex-info-box__item {
    border-radius: 20px;
    background: #f8f7f0;
    padding: 40px;
    margin-bottom: 30px;
    transition: all 0.3s ease-in-out;
}
.srex-info-box__item:hover {
    background: #fff;
    box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 100;
    -ms-transform: translate(0, -10px);
    transform: translate(0, -10px);
}
.srex-info-box__item:hover .srex-info-box__more i {
    margin-left: 10px;
}
.srex-info-box__item:hover a,
.srex-info-box__item:hover i {
    color: #1d8f2c;
}
.srex-info-box__item:hover .srex-info-box__item__number {
    -webkit-text-stroke: 1px #1d8f2c;
}
.srex-info-box__item__img {
    width: 80px;
    height: 80px;
    background: #fff;
    border-radius: 50%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
}
.srex-info-box__item__img img {
    height: 45px;
    width: 45px;
}
.srex-info-box__item__number {
    -webkit-text-stroke: 1px #232434;
    color: transparent;
}
.srex-info-box__item--3 .srex-icon-list {
    margin-top: 20px;
}
.srex-info-box__item--3 .srex-icon-list i {
    color: #ff7029;
    font-size: 15px;
}
.srex-info-box__item--3 .srex-icon-list p {
    color: #878680;
}
.srex-service-text {
    margin-bottom: 20px;
}
.srex-info-box__item--3 .srex-info-box__item__top-text {
    margin-bottom: 30px;
}
.srex-info-box__item--green-support {
    background-color: rgba(255, 112, 41, 0.05);
}
.srex-info-box__item--solar-pro {
    background-color: rgba(29, 143, 44, 0.05);
}
.srex-info-box__item--solar-pro i {
    color: #1d8f2c !important;
}
.srex-info-box__item--eco-solar {
    background-color: rgba(255, 112, 41, 0.05);
}
.srex-info-box__item__text {
    margin: 20px 0;
    transition: all 0.3s ease-in-out;
}
.srex-info-box__more {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
}
.srex-info-box__more a {
    color: #24231d;
    font-size: 14px;
    font-style: normal;
    font-weight: 800;
    line-height: 30px;
    text-transform: capitalize;
}
.srex-info-box__more i {
    color: #24231d;
    margin-left: 15px;
    transition: 0.3s;
}
.srex-info-box--feature-box .srex-info-box__item {
    background: #fff;
}
.srex-info-box--feature-box .srex-info-box__item:hover h3,
.srex-info-box--feature-box
    .srex-info-box__item:hover
    .srex-accordion
    .accordion-header__left__badge,
.srex-accordion
    .srex-info-box--feature-box
    .srex-info-box__item:hover
    .accordion-header__left__badge {
    color: #1d8f2c;
}
.srex-info-box--feature-box .srex-info-box__item__img {
    background: #1d8f2c;
}

/*------------------------------------
	Accordion
------------------------------------*/
.srex-accordion .accordion-item {
    box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.05);
    background-color: #24231d;
    border: 1px solid #2f2e28;
    border-radius: 30px;
    margin-bottom: 20px;
}
@media (max-width: 767px) {
    .srex-accordion .accordion-item {
        margin-top: 20px;
    }
}
.srex-accordion .accordion-header__left {
    display: -ms-inline-flexbox;
    display: inline-flex;
    gap: 20px;
    -ms-flex-align: center;
    align-items: center;
}
.srex-accordion .accordion-header__left__badge {
    background-color: #1d8f2c;
    padding: 10px 14px;
    color: #fff;
    border-radius: 10px;
}
@media (max-width: 767px) {
    .srex-accordion .accordion-header__left h3,
    .srex-accordion .accordion-header__left .accordion-header__left__badge {
        font-size: 15px;
    }
}
.srex-accordion .accordion-button {
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    border: 30px;
    padding: 20px;
    color: #fff;
    text-transform: capitalize;
    background-color: transparent;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
    transition: all 0.3s ease-in-out;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    cursor: pointer;
}
.srex-accordion .accordion-button h3,
.srex-accordion .accordion-button .accordion-header__left__badge {
    color: #fff;
}
.srex-accordion .accordion-button::after {
    content: none;
}
@media (max-width: 767px) {
    .srex-accordion .accordion-button {
        padding: 10px;
        font-size: 14px;
    }
}
.srex-accordion .accordion-button:focus {
    border: none;
    box-shadow: unset;
    outline: none;
}
.srex-accordion .accordion-button:not(.collapsed) {
    background-color: #2f2e28;
    color: #fff;
    box-shadow: none;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
}
.srex-accordion .accordion-button:not(.collapsed) .open {
    display: none;
    background: #1d8f2c;
    border-radius: 5px;
}
.srex-accordion .accordion-button:not(.collapsed) .close {
    display: block;
}
.srex-accordion
    .accordion-button:not(.collapsed)
    .accordion-header__left__badge {
    background-color: #ff7029;
}
.srex-accordion .accordion-button i {
    color: #fff;
    margin-right: 20px;
    font-size: 20px;
    transition: all 0.3s ease-in-out;
}
.srex-accordion .accordion-button .open {
    display: block;
    color: #1d8f2c;
}
.srex-accordion .accordion-button .close {
    display: none;
}
.srex-accordion .accordion-body {
    font-size: 16px;
    color: #878c8f;
    line-height: 24px;
    background: transparent;
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
    padding: 20px 90px 30px 90px;
}
@media (max-width: 767px) {
    .srex-accordion .accordion-body {
        font-size: 15px;
        padding-top: 0;
        padding: 20px 30px 30px 30px;
    }
}
.srex-accordion .accordion-collapse.show {
    background-color: #2f2e28;
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
}
@media (max-width: 480px) {
    .srex-tabs .nav-link {
        padding: 12px 25px !important;
    }
}
/*------------------------------------
	Tabs
------------------------------------*/
.srex-tabs .nav {
    gap: 20px;
}
.srex-tabs .nav-link {
    color: #24231d;
    font-family: Manrope;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 28px;
    padding: 12px 40px;
    border: 1px solid #e3e3e3;
}
.srex-tabs .nav-link.active {
    background-color: transparent;
    border: 1px solid #1d8f2c;
    color: #24231d;
}
.srex-tabs .nav-link:hover {
    background-color: transparent;
    border: 1px solid #1d8f2c;
    color: #24231d;
}
.srex-tabs .tab-content {
    margin-top: 30px;
}

.relative {
    position: relative;
}

/*------------------------------------
	06/ Top Header
------------------------------------*/
.srex-top-header {
    background: #cdf8d3;
    padding: 15px 0 15px 0;
}
@media (max-width: 767px) {
    .srex-top-header {
        padding: 15px 10px;
    }
}
.srex-top-header p {
    color: #24231d;
}
@media (max-width: 767px) {
    .srex-top-header p {
        font-size: 10px;
    }
}
.srex-top-header ul {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: end;
    justify-content: flex-end;
}
.srex-top-header ul li a {
    padding: 0 12px;
}
.srex-top-header ul li a:last-child {
    padding-right: 0;
}

/*------------------------------------
	07/ Header
------------------------------------*/
/*------------------
	Navbar
--------------------*/
/*-----------------
    Main Menu
-------------------*/
.ud-main-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.ud-main-menu ul > li {
    display: inline-block;
    transition: all 0.3s ease-in-out;
    position: relative;
}
.ud-main-menu ul > li > a {
    display: block;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 36px;
    text-transform: capitalize;
    padding: 20px 0px;
    text-decoration: none;
    color: #24231d;
    transition: all 0.3s ease-in-out;
}
@media (min-width: 990px) and (max-width: 1050px) {
    .ud-main-menu ul > li > a {
        font-size: 12.4px;
    }
}
@media (min-width: 1050px) and (max-width: 1100px) {
    .ud-main-menu ul > li > a {
        font-size: 14px;
    }
}
@media (min-width: 1100px) and (max-width: 1150px) {
    .ud-main-menu ul > li > a {
        font-size: 15px;
    }
}
@media (min-width: 1150px) and (max-width: 1200px) {
    .ud-main-menu ul > li > a {
        font-size: 15.8px;
    }
}
@media (min-width: 1200px) and (max-width: 1250px) {
    .ud-main-menu ul > li > a {
        font-size: 16.4px;
    }
}
@media (min-width: 1250px) and (max-width: 1300px) {
    .ud-main-menu ul > li > a {
        font-size: 17.6px;
    }
}
@media (min-width: 1300px) and (max-width: 1350px) {
    .ud-main-menu ul > li > a {
        font-size: 18.2px;
    }
}
@media (min-width: 1350px) and (max-width: 1400px) {
    .ud-main-menu ul > li > a {
        font-size: 19.3px;
    }
}
@media (min-width: 1400px) and (max-width: 1450px) {
    .ud-main-menu ul > li > a {
        font-size: 19.7px;
    }
}
@media (min-width: 1450px) and (max-width: 1500px) {
    .ud-main-menu ul > li > a {
        font-size: 20.8px;
    }
}
@media (min-width: 1500px) and (max-width: 1550px) {
    .ud-main-menu ul > li > a {
        font-size: 21.8px;
    }
}
@media (min-width: 1550px) and (max-width: 1600px) {
    .ud-main-menu ul > li > a {
        font-size: 22.7px;
    }
}
@media (min-width: 1600px) and (max-width: 1650px) {
    .ud-main-menu ul > li > a {
        font-size: 23.2px;
    }
}

.ud-main-menu ul > li > a i {
    vertical-align: middle;
    font-size: 12px;
    margin-left: 5px;
}
.ud-main-menu ul > li > a:hover {
    color: #1d8f2c;
}
.ud-main-menu ul > li.mega-open > .mega-menu {
    opacity: 1;
    visibility: visible;
    -ms-transform: translateY(0);
    transform: translateY(0);
}
.ud-main-menu ul > li:hover > ul {
    opacity: 1;
    visibility: visible;
    -ms-transform: translateY(0);
    transform: translateY(0);
}
.ud-main-menu ul > li > ul {
    position: absolute;
    top: 100%;
    left: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
    -ms-transform: translateY(50px);
    transform: translateY(50px);
    width: 250px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    z-index: 9999;
}
.ud-main-menu ul > li > ul li {
    display: block;
}
.ud-main-menu ul > li > ul li a {
    padding: 15px;
    line-height: normal;
}
.ud-main-menu ul > li > ul li a:hover {
    background-color: #f8f7f0;
}

.srex-header--home-two .ud-main-menu__sub-menu li a {
    padding: 15px !important;
}

/*------------------
	Mobile Menu
--------------------*/
.ud-header__mobile-nav-bar #hambuger i {
    font-size: 30px;
    color: #1d8f2c;
    transition: all 0.3s ease;
}
.ud-header__mobile-nav-bar .ud-mobile-nav-wrap__menu {
    position: fixed;
    right: -300px;
    top: 0;
    width: 300px;
    height: 100%;
    background: #1d8f2c;
    z-index: 9999;
    transition: all 0.3s ease;
    overflow-y: auto;
    padding: 20px 15px;
}
.ud-header__mobile-nav-bar .ud-mobile-nav-wrap__menu--open {
    right: 0;
}
.ud-header__mobile-nav-bar .ud-mobile-nav-wrap__menu__close {
    background: transparent;
    padding: 0 5px;
}
.ud-header__mobile-nav-bar .ud-mobile-nav-wrap__menu__close i {
    color: #fff;
    font-size: 30px;
}
.ud-header__mobile-nav-bar .ud-mobile-nav-wrap__menu ul li a {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    display: block;
    padding: 10px 15px;
    border-bottom: 1px solid #1d8f2c;
    line-height: 26px;
}
.ud-header__mobile-nav-bar .ud-mobile-nav-wrap__menu ul li a i {
    font-size: 12px;
    margin-left: 5px;
}
.ud-header__mobile-nav-bar__overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}
.ud-header__mobile-nav-bar__overlay--open {
    opacity: 1;
    visibility: visible;
}

/*---------------------
	Header Side Popup
----------------------*/
.ud-side-popup {
    width: 500px;
    height: 100%;
    position: fixed;
    top: 0;
    bottom: 0;
    right: -500px;
    background-color: #fff;
    z-index: 99;
    padding: 50px;
    transition: all 0.5s ease-in-out;
    overflow-y: scroll;
    opacity: 0;
    visibility: hidden;
}
@media (max-width: 767px) {
    .ud-side-popup {
        width: 100%;
        right: -300px;
        padding: 30px 20px;
    }
}
.ud-side-popup__header {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 30px;
}
.ud-side-popup__header-logo img {
    width: 140px;
    height: auto;
}
.ud-side-popup__header .side-popup-close {
    margin-right: 25px;
    background: transparent;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: justify;
    justify-content: space-between;
    transition: all 0.4s ease-in-out;
}
.ud-side-popup__header .side-popup-close:hover {
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}
.ud-side-popup__header .side-popup-close i {
    color: #000;
    font-size: 24px;
    color: #1d8f2c;
}
.ud-side-popup__body {
    margin-bottom: 50px;
}
.ud-side-popup__body ul li a {
    font-size: 16px;
    font-weight: 600;
    line-height: 36px;
    color: #24231d;
    padding: 5px 0;
    display: -ms-flexbox;
    display: flex;
    /* border-bottom: 1px solid #1D8F2C; */
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: justify;
    justify-content: space-between;
    transition: all 0.3s ease-in-out;
}
.ud-side-popup__body ul li a:hover {
    color: #1d8f2c;
}
.ud-side-popup__body ul li a:hover i {
    background-color: #1d8f2c;
    border-radius: 5px;
    color: #fff;
    transition: all 0.4s ease-in-out;
}
.ud-side-popup__body ul li a i {
    font-size: 14px;
    color: #1d8f2c;
    padding: 10px;
    transition: all 0.3s ease-in-out;
}
.ud-side-popup__body ul li ul {
    padding-left: 20px;
}
.ud-side-popup__body ul li ul li a {
    color: #f7f7f7;
    padding: 5px 0;
}
.ud-side-popup__body ul li ul li a:hover {
    color: #4f4f4f;
}

.ud-side-popup__body ul li ul li a i {
    color: #f7f7f7;
}
.ud-side-popup__body ul li ul li ul li a {
    color: #1d8f2c;
}
.primary-box {
    background: #1d8f2c;
    border-radius: 5px;
    padding-bottom: 10px;
}

.secondary-box {
    margin-right: 15px;
    background: #ffffff;
    border-radius: 5px;
}
.ud-side-popup__bottom-info {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}
.ud-side-popup__bottom-info-box i {
    font-size: 30px;
    color: #1d8f2c;
}
.ud-side-popup__bottom-info-box h4 {
    font-weight: 600;
}
.ud-side-popup__bottom-socials {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    gap: 20px;
}
.ud-side-popup__bottom-socials li a {
    cursor: pointer;
    background-color: #1d8f2c;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    color: #f4f4f4;
    border: 2px solid transparent;
    transition: all 0.4s ease-in-out;
}
.ud-side-popup__bottom-socials li a:hover {
    border-color: #1d8f2c;
    background-color: transparent;
    border-radius: 4px;
}
.ud-side-popup__bottom-socials li a:hover i {
    color: #1d8f2c;
}
.ud-side-popup__bottom-socials li a i {
    font-size: 20px;
}
.ud-side-popup--open {
    right: 0;
    opacity: 1;
    visibility: visible;
}

/*---------------------
	Header
----------------------*/
.srex-header {
    padding: 20px 0;
    background-color: #fff;
    transition: all 0.3s ease-in-out;
}
@media (min-width: 990px) and (max-width: 1150px) {
    .srex-header {
        padding: 5px 0;
    }
}
@media (min-width: 1150px) and (max-width: 1300px) {
    .srex-header {
        padding: 8px 0;
    }
}
@media (min-width: 1300px) and (max-width: 1450px) {
    .srex-header {
        padding: 13px 0;
    }
}
@media (min-width: 1450px) and (max-width: 1600px) {
    .srex-header {
        padding: 17px 0;
    }
}

.srex-header.sticky-top {
    /* padding: 15px 0; */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.srex-header__call svg {
    margin-right: 10px;
    height: 55px;
    width: 55px;
}
.srex-header__call svg path {
    stroke: #24231d;
}
.srex-header__call span {
    color: #878680;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 28px;
}
.srex-header__call h4 {
    color: #24231d;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 28px;
}
.srex-header__call h4 a {
    color: #24231d;
    text-decoration: none;
}
.srex-header__call h4 a:hover {
    color: #1d8f2c;
}

/*------------------------------------
	Header Home Two
------------------------------------*/
.srex-header--home-two {
    padding: 0;
}
@media (max-width: 767px) {
    .srex-header--home-two {
        padding: 15px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .srex-header--home-two {
        padding: 20px;
    }
}
.srex-header--home-two.sticky-top {
    padding: 0;
}
@media (max-width: 767px) {
    .srex-header--home-two.sticky-top {
        padding: 15px;
    }
}
@media (max-width: 767px) {
    .srex-header--home-two .container-fluid {
        width: 100%;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .srex-header--home-two .container-fluid {
        width: 100%;
    }
}
.srex-header--home-two .ud-main-menu ul > li > a {
    padding: 25px 15px;
}
.srex-header--home-two__call-two {
    background: #ff7029;
    padding: 15px 30px;
}
.srex-header--home-two__call-two span {
    color: #fff;
}
.srex-header--home-two__call-two h4 a {
    color: #fff;
}
.srex-header--home-two__call-two h4 a:hover {
    color: #24231d;
}

/*---------------------
    Header Home Three
----------------------*/
.srex-header--home-three {
    padding: 0;
    background-color: transparent;
    position: relative;
    z-index: 999;
}
.srex-header--home-three nav {
    background-color: #fff;
    border-radius: 0 0 10px 10px;
    box-shadow: 0px 0px 60px 0px rgba(0, 0, 0, 0.05);
    padding: 0 30px;
}
@media (max-width: 767px) {
    .srex-header--home-three {
        padding: 0;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .srex-header--home-three {
        padding: 20px;
    }
}
.srex-header--home-three.sticky-top {
    padding: 0;
}
@media (max-width: 767px) {
    .srex-header--home-three.sticky-top {
        padding: 15px;
    }
}
@media (max-width: 767px) {
    .srex-header--home-three nav {
        padding: 20px 15px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .srex-header--home-three nav {
        padding: 20px 30px;
    }
}
@media (max-width: 767px) {
    .srex-header--home-three .container-fluid {
        width: 100%;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .srex-header--home-three .container-fluid {
        width: 100%;
    }
}
.srex-header--home-three .ud-main-menu ul > li > a {
    padding: 25px 15px;
}
.srex-header--home-three__call-three {
    background: #ff7029;
    padding: 15px 30px;
}
.srex-header--home-three__call-three span {
    color: #fff;
}
.srex-header--home-three__call-three h4 a {
    color: #fff;
}
.srex-header--home-three__call-three h4 a:hover {
    color: #24231d;
}

/*---------------------
    Header Hamburger Menu
----------------------*/
.ud-hamburger-menu {
    display: -ms-inline-flexbox;
    display: inline-flex;
}
.ud-hamburger-menu .ud-hamburger-menu__btn--active span {
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}
.ud-hamburger-menu .ud-hamburger-menu__btn--active span::before {
    top: 0;
    -ms-transform: rotate(0);
    transform: rotate(0);
}
.ud-hamburger-menu .ud-hamburger-menu__btn--active span::after {
    top: 0;
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}
.ud-hamburger-menu__btn {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    width: 26px;
    height: 26px;
    position: relative;
    cursor: pointer;
}
.ud-hamburger-menu__btn span {
    display: block;
    position: absolute;
    width: 100%;
    height: 3px;
    background-color: #1d8f2c;
    transition: all 0.3s ease-in-out;
}
.ud-hamburger-menu__btn span::before,
.ud-hamburger-menu__btn span::after {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 3px;
    background-color: #1d8f2c;
    transition: all 0.3s ease-in-out;
}
.ud-hamburger-menu__btn span::before {
    top: -8px;
}
.ud-hamburger-menu__btn span::after {
    top: 8px;
}

/*------------------------------------
	08/ Hero
------------------------------------*/
/*------------------------------------
	Hero One
------------------------------------*/
.srex-hero-one {
    background-color: #f8f7f0;
    padding: 50px 0 30px 0;
    margin-bottom: 40px;
}
@media (max-width: 767px) {
    .srex-hero-one {
        padding: 20px 0 0px 0;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .srex-hero-one {
        margin-bottom: 70px;
        padding: 50px 0 50px 0;
    }
}
.srex-hero-one__box {
    border-radius: 20px;
    background-color: #fff;
    padding: 40px 40px 30px 40px;
    margin-bottom: 30px;
}
@media (max-width: 767px) {
    .srex-hero-one__box {
        padding: 30px;
    }
}
.srex-hero-one__box__text {
    margin-bottom: 20px;
}
@media (max-width: 767px) {
    .srex-hero-one__box__text {
        font-size: 30px;
        line-height: 40px;
    }
}
.srex-hero-one__box__text__top__line {
    height: 2px;
    background-color: #e3e3e3;
    width: 50%;
}
@media (max-width: 767px) {
    .srex-hero-one__box__text__top__line {
        width: 30%;
    }
}
.srex-hero-one__box__text span {
    color: #1d8f2c;
}
.srex-hero-one__box__desc {
    margin-bottom: 15px;
}
.srex-hero-one__left__enery__efficient {
    background-color: #1d8f2c;
    border-radius: 20px;
    padding: 40px 75px;
    text-align: center;
}
@media (max-width: 767px) {
    .srex-hero-one__left__enery__efficient {
        padding: 20px;
    }
}
.srex-hero-one__left__enery__efficient h2 {
    font-size: 68px;
    font-style: normal;
    font-weight: 700;
    line-height: 115%; /* 78.2px */
    text-transform: capitalize;
}
@media (max-width: 767px) {
    .srex-hero-one__left__enery__efficient h2 {
        font-size: 50px;
        line-height: 60px;
    }
}
.srex-hero-one__left__enery__efficient h2,
.srex-hero-one__left__enery__efficient p {
    font-family: Manrope, sans-serif;
    color: #fff;
}
.srex-hero-one__left__img {
    -ms-flex: 1;
    flex: 1;
}
.srex-hero-one__left__img img {
    border-radius: 20px;
    width: 100%;
    max-height: 186px;
    object-fit: cover;
}
@media (max-width: 767px) {
    .srex-hero-one__left__img img {
        max-height: 100%;
        min-height: 119px;
    }
}
@media (max-width: 767px) {
    .srex-hero-one__right {
        margin-top: 30px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .srex-hero-one__right {
        max-width: 60%;
        margin: 40px auto 0 auto;
    }
}
.srex-hero-one__right img {
    border-radius: 20px;
    height: 640px;
    margin-bottom: -65px;
    object-fit: cover;
}
@media (max-width: 767px) {
    .srex-hero-one__right img {
        height: 100%;
        margin-bottom: -40px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .srex-hero-one__right img {
        height: 100%;
        margin-bottom: -120px;
    }
}

/*------------------------------------
	Hero Two
------------------------------------*/
.srex-hero-two {
    width: 100%;
    background:
        linear-gradient(rgba(0, 0, 0, 0.5) 100%, rgba(0, 0, 0, 0.5) 100%),
        url(../images/home-two/hero/hero-bg-image.png) no-repeat center
            center/cover;
}
.srex-hero-two__box {
    padding: 100px 0px 20px 0;
}
@media (max-width: 767px) {
    .srex-hero-two__box {
        padding: 80px 0px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .srex-hero-two__box {
        padding: 90px 0px 70px 0;
    }
}
.srex-hero-two__box h1 {
    color: #fff;
    font-size: 150px;
    font-weight: 700;
    line-height: 115%;
}
@media (max-width: 767px) {
    .srex-hero-two__box h1 {
        font-size: 50px;
        margin-bottom: 15px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .srex-hero-two__box h1 {
        font-size: 80px;
    }
}
@media only screen and (min-width: 992px) and (max-width: 1280px) {
    .srex-hero-two__box h1 {
        font-size: 90px;
    }
}
.srex-hero-two__box h1 span {
    -webkit-text-stroke: 1px #fff;
    color: transparent;
}
.srex-hero-two__box h2 {
    color: #fff;
    font-size: 110px;
    font-weight: 700;
    line-height: 115%;
    text-align: center;
    position: relative;
}
@media (max-width: 767px) {
    .srex-hero-two__box h2 {
        font-size: 40px;
        margin-bottom: 15px;
        text-align: right;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .srex-hero-two__box h2 {
        font-size: 50px;
    }
}
@media only screen and (min-width: 992px) and (max-width: 1280px) {
    .srex-hero-two__box h2 {
        font-size: 60px;
    }
}
.srex-hero-two__box h2::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 20%;
    height: 3px;
    background-color: #e3e3e3;
}
@media (max-width: 767px) {
    .srex-hero-two__box h2::before {
        width: 100px;
    }
}
.srex-hero-two__box p {
    max-width: 40%;
    color: #fff;
    padding-bottom: 30px;
}
@media (max-width: 767px) {
    .srex-hero-two__box p {
        max-width: 100%;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .srex-hero-two__box p {
        max-width: 60%;
    }
}
@media only screen and (min-width: 992px) and (max-width: 1280px) {
    .srex-hero-two__box p {
        max-width: 70%;
    }
}
.srex-hero-two__box .srex-btn--outline {
    border-color: #ff7029;
    color: #fff;
}
@media (max-width: 767px) {
    .srex-hero-two__box .srex-btn--outline {
        padding: 10px 15px;
    }
}
.srex-hero-two__box .srex-btn--outline:hover {
    border-color: #ff7029;
    background-color: #ff7029;
    color: #fff;
}
.srex-hero-two__box .srex-btn--primary {
    background-color: #ff7029;
    border-color: #ff7029;
    color: #fff;
}
@media (max-width: 767px) {
    .srex-hero-two__box .srex-btn--primary {
        padding: 10px 15px;
    }
}
.srex-hero-two__box .srex-btn--primary:hover {
    background-color: transparent;
    border: 1px solid #ff7029;
    color: #fff;
}

/*------------------------------------
	Hero Three
------------------------------------*/
.srex-hero-three {
    background-image: url(../images/home-three/hero-bg.png);
    background-position: bottom;
    background-color: #f8f7f0;
    height: 815px;
    margin-top: -85px;
}
.srex-hero-three__left {
    max-width: 500px;
    padding: 200px 0;
}
.srex-hero-three__left__title {
    font-size: 68px;
    line-height: 78px;
    font-weight: 700;
    color: #24231d;
    text-transform: capitalize;
}
.srex-hero-three__left__title span {
    color: #ff7029;
}
.srex-hero-three__left__desc {
    color: #878680;
    margin-top: 30px;
}
.srex-hero-three__left .srex-btn {
    margin-top: 32px;
}
.srex-hero-three__right {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
}
@media (max-width: 767px) {
    .srex-hero-three__right img {
        display: none;
    }
}
/*------------------------------------
	09/ Services
------------------------------------*/
.srex-service {
    background: #fff;
    padding-top: 100px;
}
@media (max-width: 767px) {
    .srex-service {
        padding-top: 50px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .srex-service {
        padding-top: 50px;
    }
}
.srex-service .srex-section__head__title {
    max-width: 700px;
    margin: 0 auto 60px auto;
}

.srex-service-two {
    background: #f8f7f0;
    padding-top: 100px;
    position: relative;
}
.srex-service-two__frame {
    position: absolute;
    right: 29%;
}
@media (max-width: 767px) {
    .srex-service-two {
        padding-top: 70px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .srex-service-two {
        padding-top: 80px;
    }
}
.srex-service-two .srex-section__head__title {
    max-width: 700px;
    margin: 0 auto 60px auto;
}
.srex-service-two .srex-info-box__item {
    background: #fff;
}
.srex-service-two .srex-info-box__item:hover {
    border: 1px solid #1d8f2c;
}
.srex-service-two .srex-info-box__item__desc {
    margin-bottom: 40px;
}
.srex-service-two .srex-stats {
    margin-top: 150px;
}
@media (max-width: 767px) {
    .srex-service-two .srex-stats {
        margin-top: 60px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .srex-service-two .srex-stats {
        margin-top: 80px;
    }
}
.srex-service-two .srex-stats__item__text h2 {
    color: #1d8f2c;
}

@media (max-width: 767px) {
    .srex-service-three {
        padding-top: 70px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .srex-service-three {
        padding-top: 80px;
    }
}
.srex-service-three__left {
    padding-right: 30px;
    background-image: url(../images/home-two/service-two/service-3-bg.png);
    background-repeat: no-repeat;
    background-position: left bottom;
    height: 100%;
}
.srex-service-three__left p {
    margin-top: 15px;
    margin-bottom: 25px !important;
}
@media (max-width: 767px) {
    .srex-service-three__left {
        padding-right: 0;
        margin-bottom: 80px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .srex-service-three__left {
        padding-right: 0;
        margin-bottom: 80px;
    }
}

.srex-service-we-provide {
    padding-top: 80px;
    background-color: #f8f7f0;
    /* max-height: 750px;
  margin-bottom: 150px; */
}
@media (max-width: 767px) {
    .srex-service-we-provide {
        max-height: 100%;
        margin-bottom: 0;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .srex-service-we-provide {
        max-height: 100%;
        margin-bottom: 0;
    }
}
.srex-service-we-provide__items {
    margin-top: 60px;
}
.srex-service-we-provide .srex-portfolio-two__item {
    height: 400px;
    overflow: hidden;
    padding-top: 0px;
    border-radius: 20px;
}
.srex-service-we-provide .srex-portfolio-two__item * {
    transition: all 0.3s ease-in-out;
}
@media (max-width: 767px) {
    .srex-service-we-provide .srex-portfolio-two__item {
        padding-top: 30px;
        margin-bottom: 30px;
    }
}
.srex-service-we-provide .srex-portfolio-two__item img {
    overflow: hidden;
    border-radius: 20px;
}
.srex-service-we-provide .srex-portfolio-two__item__box {
    background-color: #fff;
    bottom: 0px;
    right: 0px;
    left: 0px;
    height: 100px;
}
.srex-service-we-provide .srex-portfolio-two__item:hover img {
    -ms-transform: scale(1.2);
    transform: scale(1.2);
}
.srex-service-we-provide
    .srex-portfolio-two__item:hover
    .srex-portfolio-two__item__box {
    background-color: #1d8f2c;
}
.srex-service-we-provide
    .srex-portfolio-two__item:hover
    .srex-portfolio-two__item__box
    h3,
.srex-service-we-provide
    .srex-portfolio-two__item:hover
    .srex-portfolio-two__item__box
    .srex-accordion
    .accordion-header__left__badge,
.srex-accordion
    .srex-service-we-provide
    .srex-portfolio-two__item:hover
    .srex-portfolio-two__item__box
    .accordion-header__left__badge,
.srex-service-we-provide
    .srex-portfolio-two__item:hover
    .srex-portfolio-two__item__box
    p {
    color: #fff;
}

/*------------------------------------
	10/ About US
------------------------------------*/
.srex-about-us-one__container {
    margin: 0 auto;
    padding: 0 0.75rem;
}
.srex-about-us-one__left {
    padding-top: 60px;
    padding-left: 33%;
}
@media only screen and (min-width: 992px) and (max-width: 1280px) {
    .srex-about-us-one__left {
        padding-left: 7%;
    }
}
@media (max-width: 767px) {
    .srex-about-us-one__left {
        padding-left: 0;
        margin-bottom: 40px;
        text-align: center;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .srex-about-us-one__left {
        padding-left: 0;
        margin-bottom: 40px;
        text-align: center;
    }
}
.srex-about-us-one__left h2 {
    margin-bottom: 20px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .srex-about-us-one__left .srex-section__head__desc {
        max-width: 80%;
        margin: 0 auto;
    }
}
.srex-about-us-one__left .srex-icon-list {
    margin-top: 35px;
    margin-bottom: 45px;
}
@media (max-width: 767px) {
    .srex-about-us-one__left .srex-icon-list {
        margin: 35px auto 45px auto;
        display: table;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .srex-about-us-one__left .srex-icon-list {
        margin: 35px auto 45px auto;
        display: table;
    }
}
.srex-about-us-one__right__img {
    height: 780px;
    object-fit: cover;
    width: 100%;
}
@media (max-width: 767px) {
    .srex-about-us-one__right__img {
        height: 400px;
        margin-right: 0;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .srex-about-us-one__right__img {
        height: 600px;
        margin-right: 0;
    }
}
.srex-about-us-one__right__box {
    background-color: #1d8f2c;
    color: #fff;
    position: absolute;
    top: 100%;
    padding: 25px 40px;
    border-radius: 20px;
    margin-top: -280px;
    margin-left: 50px;
}
@media (max-width: 767px) {
    .srex-about-us-one__right__box {
        margin-left: 0;
        right: 30px;
        margin-top: -165px;
        padding: 20px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .srex-about-us-one__right__box {
        margin-left: 0;
        right: 60px;
        margin-top: -230px;
        padding: 30px;
    }
}
@media only screen and (min-width: 992px) and (max-width: 1280px) {
    .srex-about-us-one__right__box {
        margin-left: 0;
        right: 80px;
    }
}
.srex-about-us-one__right__box img {
    height: 75px;
    width: 52px;
}
.srex-about-us-one__right__box__text h2,
.srex-about-us-one__right__box__text p {
    color: #fff;
}

.srex-section-bottom {
    margin-top: 50px;
}
@media (max-width: 767px) {
    .srex-section-bottom {
        margin-top: 80px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .srex-section-bottom .row {
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
        gap: 50px;
    }
}
.srex-section-bottom__left {
    position: relative;
    margin-top: 80px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .srex-section-bottom__left {
        text-align: center;
    }
}
.srex-section-bottom__left__img {
    position: absolute;
    left: -36px;
    bottom: -40px;
}
@media (max-width: 767px) {
    .srex-section-bottom__left__img {
        left: 50px;
        height: 400px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .srex-section-bottom__left__img {
        left: 170px;
        height: 500px;
    }
}
@media (max-width: 767px) {
    .srex-section-bottom__right {
        text-align: center;
        margin: 50px 0;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .srex-section-bottom__right {
        text-align: center;
        margin: 50px 0;
    }
}
@media (max-width: 767px) {
    .srex-section-bottom__right .srex-section-bottom__right__desc {
        max-width: 90%;
        margin: 0 auto;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .srex-section-bottom__right .srex-section-bottom__right__desc {
        max-width: 90%;
        margin: 0 auto;
    }
}
.srex-section-bottom__right__title {
    color: #24231d;
    font-family: Exo;
    font-size: 38px;
    font-style: normal;
    font-weight: 600;
    line-height: 47.6px; /* 125.263% */
    text-transform: capitalize;
    margin-bottom: 20px;
}
@media (max-width: 767px) {
    .srex-section-bottom__right .srex-icon-list {
        max-width: 90%;
        margin: 0 auto;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .srex-section-bottom__right .srex-icon-list {
        max-width: 90%;
        margin: 0 auto;
    }
}

@media (max-width: 767px) {
    .srex-about-us-two {
        padding-top: 40px;
    }
}
@media (max-width: 767px) {
    .srex-about-us-two__img {
        display: none;
    }
}
.srex-about-us-two__left-content {
    margin-top: 20px;
    display: -ms-flexbox;
    display: flex;
    gap: 30px;
}
@media (max-width: 767px) {
    .srex-about-us-two__left-content {
        -ms-flex-direction: column;
        flex-direction: column;
        margin-bottom: 30px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .srex-about-us-two__left-content {
        margin-bottom: 30px;
    }
}
.srex-about-us-two__left-content__img {
    -ms-flex: 0 0 35%;
    flex: 0 0 35%;
}
@media (max-width: 767px) {
    .srex-about-us-two__left-content__img {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
    }
}
.srex-about-us-two__left-content__img img {
    width: 100%;
    height: 100%;
    border-radius: 20px;
}
.srex-about-us-two__left-content__right {
    -ms-flex: 0 0 65%;
    flex: 0 0 65%;
    padding-top: 10px;
    padding-right: 20px;
}
@media (max-width: 767px) {
    .srex-about-us-two__left-content__right {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
    }
}
.srex-about-us-two__right-content__img {
    border-radius: 20px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .srex-about-us-two__right-content__img {
        width: 100%;
        object-fit: cover;
        max-height: 500px;
    }
}
.sbut {
    padding-top: 100px;
}
.srex-about-us-two__box {
    background-color: #ff7029;
    color: #fff;
    padding: 30px 40px;
    border-radius: 20px;
    margin-top: 30px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .srex-about-us-two__box {
        max-width: 50%;
        margin: 0 auto;
        margin-top: -50px;
        position: relative;
        z-index: 99;
    }
}
.srex-about-us-two__box img {
    height: 75px;
    width: 52px;
}
.srex-about-us-two__box__text h2,
.srex-about-us-two__box__text p {
    color: #fff;
}

.srex-about-us-three__left {
    background-color: #e3e3e3;
    padding: 40px;
    border-radius: 20px;
    max-height: 550px;
    margin-right: 50px;
}
@media (max-width: 767px) {
    .srex-about-us-three__left {
        margin-right: 0px;
        margin-bottom: 30px;
        max-height: 100%;
        padding: 20px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .srex-about-us-three__left {
        margin-right: 0px;
        margin-bottom: 30px;
        max-height: 100%;
    }
}
.srex-about-us-three__left img {
    border-radius: 20px;
    width: 100%;
}
@media (max-width: 767px) {
    .srex-about-us-three__left img {
        margin-bottom: 40px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .srex-about-us-three__left img {
        margin-bottom: 40px;
    }
}
.srex-about-us-three__left__img-3-col {
    position: relative;
}
.srex-about-us-three__left__img-3-col::before {
    content: "";
    position: absolute;
    top: 0;
    right: -44px;
    width: 100%;
    bottom: 0;
    background: url(../images/dots.png) no-repeat;
}
.srex-about-us-three__left__img-3 {
    margin-top: -80px;
    position: relative;
    z-index: 1;
}
@media (max-width: 767px) {
    .srex-about-us-three__left__img-3 {
        margin-top: 0px;
    }
}
.srex-about-us-three__left__box {
    background-color: #1d8f2c;
    padding: 10px 30px;
    border-radius: 20px;
    margin-top: 15px;
}
@media (max-width: 767px) {
    .srex-about-us-three__left__box {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-align: center;
        align-items: center;
        -ms-flex-pack: center;
        justify-content: center;
        -ms-flex-direction: column;
        flex-direction: column;
        padding: 20px;
    }
}
.srex-about-us-three__left__box img {
    height: 145px;
    width: 100%;
    /* margin-bottom: 15px; */
}
.srex-about-us-three__left__box h3,
.srex-about-us-three__left__box .srex-accordion .accordion-header__left__badge,
.srex-accordion .srex-about-us-three__left__box .accordion-header__left__badge {
    color: #fff;
}
.srex-about-us-three .srex-tabs {
    margin-top: 30px;
}
.srex-about-us-three .srex-tabs .tab-content .srex-section__head__desc {
    margin-bottom: 40px;
}
.srex-about-us-three .srex-tabs .tab-content .srex-icon-list i {
    background-color: #ff7029;
    height: 20px;
    width: 20px;
    border-radius: 100%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: #fff;
    font-size: 12px;
}
.srex-about-us-three .srex-tabs .tab-content .srex-icon-list p {
    font-weight: 700;
}

/*------------------------------------
	11/ Features
------------------------------------*/
.srex-features {
    background: url("../images/features-bg.png") no-repeat;
    padding: 50px 0 430px 0;
    background-size: cover;
}
@media (max-width: 767px) {
    .srex-features {
        padding: 50px 0 100px 0;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .srex-features {
        padding: 50px 0 150px 0;
    }
}
@media only screen and (min-width: 992px) and (max-width: 1280px) {
    .srex-features {
        padding: 50px 0 250px 0;
    }
}
.srex-features__left {
    max-width: 520px;
}
@media (max-width: 767px) {
    .srex-features__left {
        max-width: 100%;
        margin-bottom: 50px;
        text-align: center;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .srex-features__left {
        max-width: 100%;
        margin-bottom: 50px;
        text-align: center;
    }
}
.srex-features__left h2 {
    margin-bottom: 25px;
}
.srex-features__left .srex-icon-list {
    margin-top: 45px;
    margin-bottom: 45px;
}

/*------------------------------------
	12/ Features
------------------------------------*/
.srex-video {
    margin-top: -330px;
}
@media (max-width: 767px) {
    .srex-video {
        margin-top: -80px;
        margin-bottom: 60px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .srex-video {
        margin-top: -120px;
        margin-bottom: 60px;
    }
}
@media only screen and (min-width: 992px) and (max-width: 1280px) {
    .srex-video {
        margin-top: -180px;
        margin-bottom: 40px;
    }
}
.srex-video__box {
    position: relative;
}
.srex-video__box img {
    border-radius: 40px;
}
@media (max-width: 767px) {
    .srex-video__box img {
        height: 150px;
        object-fit: cover;
    }
}
.srex-video__play__btn {
    background: #1d8f2c;
    border-radius: 50%;
    color: #fff;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 120px;
    width: 120px;
    position: absolute;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 1;
}
.srex-video__play__btn:hover {
    color: #fff !important;
}
.srex-video__play__btn:hover i {
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}
@media (max-width: 767px) {
    .srex-video__play__btn {
        height: 60px;
        width: 60px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .srex-video__play__btn {
        height: 80px;
        width: 80px;
    }
}
@media only screen and (min-width: 992px) and (max-width: 1280px) {
    .srex-video__play__btn {
        height: 100px;
        width: 100px;
    }
}
.srex-video__play__btn i {
    font-size: 50px;
    transition: all 0.3s ease-in-out;
}
@media (max-width: 767px) {
    .srex-video__play__btn i {
        font-size: 30px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .srex-video__play__btn i {
        font-size: 40px;
    }
}

/*------------------------------------
	13/ Contact
------------------------------------*/
.srex-contact--three__row {
    background-color: #fff;
    box-shadow: 0px 0px 60px 0px rgba(0, 0, 0, 0.05);
    border-radius: 20px;
    padding: 30px 30px;
    -ms-flex-align: center;
    align-items: center;
}
.sct {
    padding: 100px 0;
}
.srex-contact--three .srex-contact__img {
    position: relative;
    margin-bottom: 40px;
}
.srex-contact--three .srex-contact__img img {
    border-radius: 20px;
    width: 100%;
}
.srex-contact--three .srex-contact__img__play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background-color: #fff;
    height: 90px;
    width: 90px;
    border-radius: 50%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.srex-contact--three .srex-contact__img__play-btn i {
    color: #1d8f2c;
    font-size: 30px;
}
.srex-contact--three .srex-contact__img__play-btn:hover {
    background-color: #1d8f2c;
}
.srex-contact--three .srex-contact__img__play-btn:hover i {
    color: #fff;
}
.srex-contact--three .srex-section__head__desc {
    margin-bottom: 60px;
    color: #24231d;
    margin-top: 12px;
}
.srex-contact--three .srex-contact__left {
    padding: 0 0 0 50px;
    background-color: #fff;
}
.srex-contact--three .srex-contact__left input,
.srex-contact--three .srex-contact__left textarea {
    border: 2px solid #e3e3e3;
}
.srex-contact--three .srex-contact__left .srex-btn {
    background-color: #1d8f2c;
}
.srex-contact--three .srex-contact__left .srex-btn:hover {
    background-color: #ff7029;
}
.srex-contact__left {
    background: #f8f7f0;
    padding: 60px;
    border-radius: 20px;
}
@media (max-width: 767px) {
    .srex-contact__left {
        padding: 30px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .srex-contact__left {
        padding: 40px;
    }
}
.srex-contact__left input {
    width: 100%;
    padding: 18px 30px;
    border: 1px solid #fff;
    box-sizing: border-box;
    border-radius: 999px;
    margin: 10px 0;
}
.srex-contact__left textarea {
    width: 100%;
    padding: 18px 30px;
    border: 1px solid #fff;
    box-sizing: border-box;
    border-radius: 30px;
    margin: 10px 0;
}
.srex-contact__left input:focus,
.srex-contact__left textarea:focus {
    outline: none;
}
.srex-contact__left button {
    margin-top: 10px;
    width: 100%;
    border-radius: 999px;
    text-transform: uppercase;
}
.srex-contact__right {
    background: url(../images/home-one/contact-left.png) no-repeat;
    background-position: bottom right;
    padding: 20px 0 60px 0;
}

/*------------------------------------
	14/ Portfolio
------------------------------------*/
.srex-portfolio__title {
    width: 800px;
    margin: 0 auto;
    text-align: center;
}
@media (max-width: 767px) {
    .srex-portfolio__title {
        width: 100%;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .srex-portfolio__title {
        width: 100%;
    }
}
.srex-portfolio .filter-item {
    display: none;
}
.srex-portfolio .controls ul {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    gap: 30px;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 30px 0;
    margin-bottom: 30px;
}
@media (max-width: 767px) {
    .srex-portfolio .controls ul {
        gap: 10px;
        -ms-flex-pack: start;
        justify-content: flex-start;
        overflow-x: scroll;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .srex-portfolio .controls ul {
        gap: 10px;
    }
}
.srex-portfolio .controls ul li {
    color: #24231d;
    font-style: normal;
    background: #f8f7f0;
    border-radius: 999px;
    font-weight: 700;
    padding: 15px 60px;
    cursor: pointer;
    transition: 0.2s;
    -webkit-tap-highlight-color: transparent;
    text-align: center;
}
@media (max-width: 767px) {
    .srex-portfolio .controls ul li {
        padding: 10px 15px;
        min-width: 150px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .srex-portfolio .controls ul li {
        padding: 10px 15px;
        min-width: 100px;
    }
}
@media only screen and (min-width: 992px) and (max-width: 1280px) {
    .srex-portfolio .controls ul li {
        padding: 10px 15px;
        min-width: 100px;
    }
}
.srex-portfolio .controls ul li:hover,
.srex-portfolio .controls ul li.mixitup-control-active,
.srex-portfolio .controls ul li.active {
    color: #fff;
    background: #1d8f2c;
}
.srex-portfolio__item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    margin-bottom: 30px;
}
@media (max-width: 767px) {
    .srex-portfolio__item {
        margin: 10px 0;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .srex-portfolio__item {
        margin-bottom: 20px;
    }
}
.srex-portfolio__item img {
    width: 100%;
    transition: all 0.3s ease-in-out;
}
.srex-portfolio__item:hover .srex-portfolio__item__title {
    background-color: #1d8f2c;
    color: #fff;
    border-right-color: #ff7029;
}
.srex-portfolio__item:hover .srex-portfolio__item__title h3,
.srex-portfolio__item:hover
    .srex-portfolio__item__title
    .srex-accordion
    .accordion-header__left__badge,
.srex-accordion
    .srex-portfolio__item:hover
    .srex-portfolio__item__title
    .accordion-header__left__badge,
.srex-portfolio__item:hover .srex-portfolio__item__title h2 {
    color: #fff;
}
.srex-portfolio__item:hover img {
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}
.srex-portfolio__item__title {
    position: absolute;
    background: #fff;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    width: 280px;
    height: 95px;
    padding: 20px;
    border-radius: 0px 10px 10px 0px;
    border-right: 5px solid #1d8f2c;
    bottom: 35px;
    transition: all 0.3s ease-in-out;
}
.sp_pad {
    padding: 100px 0;
}
.srex-single-project {
    padding: 100px 0;
}
.srex-portfolio__item__title h3,
.srex-portfolio__item__title .srex-accordion .accordion-header__left__badge,
.srex-accordion .srex-portfolio__item__title .accordion-header__left__badge {
    margin-left: 10px;
}

.srex-portfolio-two {
    padding-top: 120px;
    position: relative;
}
@media (max-width: 767px) {
    .srex-portfolio-two {
        padding-top: 70px;
    }
}
.srex-portfolio-two__frame {
    position: absolute;
    left: 35%;
    top: 18%;
}
@media (max-width: 767px) {
    .srex-portfolio-two__frame {
        left: 10px;
        top: 180px;
    }
}
@media (max-width: 767px) {
    .srex-portfolio-two .srex-section__head {
        max-width: 100%;
    }
}
.srex-portfolio-two .srex-section__head__title {
    width: 550px;
}
@media (max-width: 767px) {
    .srex-portfolio-two .srex-section__head__title {
        width: 100%;
    }
}
.srex-portfolio-two .filter-item {
    display: none;
}
.srex-portfolio-two .controls ul {
    padding-top: 60px;
}
@media (max-width: 767px) {
    .srex-portfolio-two .controls ul {
        display: -ms-flexbox;
        display: flex;
        gap: 10px;
        -ms-flex-pack: start;
        justify-content: flex-start;
        overflow-x: scroll;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .srex-portfolio-two .controls ul {
        display: -ms-flexbox;
        display: flex;
        gap: 10px;
        -ms-flex-pack: center;
        justify-content: center;
        -ms-flex-align: center;
        align-items: center;
        overflow-x: scroll;
    }
}
.srex-portfolio-two .controls ul li {
    color: #24231d;
    font-style: normal;
    background: #f8f7f0;
    border-radius: 10px;
    font-weight: 700;
    padding: 20px 30px;
    margin-bottom: 20px;
    cursor: pointer;
    transition: 0.2s;
    -webkit-tap-highlight-color: transparent;
    text-align: center;
}
@media (max-width: 767px) {
    .srex-portfolio-two .controls ul li {
        padding: 10px 15px;
        min-width: 150px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .srex-portfolio-two .controls ul li {
        padding: 10px 15px;
        min-width: 100px;
    }
}
@media only screen and (min-width: 992px) and (max-width: 1280px) {
    .srex-portfolio-two .controls ul li {
        padding: 10px 15px;
        min-width: 100px;
    }
}
.srex-portfolio-two .controls ul li:hover,
.srex-portfolio-two .controls ul li.mixitup-control-active,
.srex-portfolio-two .controls ul li.active {
    color: #fff;
    background: #ff7029;
}
.srex-portfolio-two__item {
    padding-top: 60px;
    position: relative;
}
.srex-portfolio-two__item img {
    border-radius: 20px;
    width: 100%;
}
.srex-portfolio-two__item h3,
.srex-portfolio-two__item .srex-accordion .accordion-header__left__badge,
.srex-accordion .srex-portfolio-two__item .accordion-header__left__badge {
    margin-bottom: 10px;
}
.srex-portfolio-two__item__box {
    border-radius: 10px;
    padding: 20px;
    margin: 20px;
    background: #f8f7f0;
    position: absolute;
    bottom: 7px;
}

.srex-portfolio-three {
    margin-top: -300px;
}
@media (max-width: 480px) {
    .srex-portfolio-three {
        margin-top: -200px;
    }
}
.srex-portfolio-three__slider__item {
    padding: 20px 10px;
}
.srex-portfolio-three__slider__item img {
    border-radius: 20px;
}
.srex-portfolio-three__slider .slick-list .slick-track {
    padding-left: 12.5%;
}
/*START SINGLE PROJECT DETAILS*/
.single_ser_info {
    background: #f8f7f0;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 30px;
    height: 500px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}
.single_ser_info ul {
    max-height: 400px;
    overflow-y: auto;
}
.single_ser_info h4 {
    margin-bottom: 30px;
}
.single_ser_info a {
    display: block;
    background: #fff;
    margin-bottom: 20px;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: normal;
    font-size: 16px;
    transition: 0.3s;
}
.single_ser_info a i {
    float: right;
    margin-top: 5px;
}
.single_ser_info a:hover {
    background: #1d8f2c;
    color: #fff;
}
.single_brochure {
    background: #f8f7f0;
    padding: 30px;
    border-radius: 10px;
}
.single_brochure h4 {
    margin-bottom: 30px;
}
.single_bro_doc {
    margin-bottom: 20px;
}
.single_bro_doc h5 {
    text-transform: capitalize;
    color: #24231d;
    letter-spacing: 0;
    margin-top: 0px;
    overflow: hidden;
}
.single_bro_doc p {
    overflow: hidden;
    margin-top: -7px;
}
.sbd_icon i {
    float: left;
    margin-right: 10px;
    font-size: 24px;
    margin-bottom: 20px;
    margin-top: 5px;
}
.sbd_icon_two {
    float: right;
    margin-top: -60px;
    font-size: 24px;
    color: #1d8f2c;
}

.single_pro_details {
}
.single_pro_details h1 {
    margin: 30px 0;
    font-size: 48px;
}
.single_pro_details h4 {
    margin: 30px 0;
}
.single_pro_details p {
    margin-bottom: 20px;
}
.single_pro_details ul {
    margin-bottom: 40px;
    width: 50%;
    float: left;
}
.single_ser_details ul {
    width: 100%;
}
.single_pro_details ul li {
    line-height: 34px;
    font-weight: 500;
}
.single_pro_details ul li i {
    background: #1d8f2c;
    color: #fff;
    width: 20px;
    height: 20px;
    line-height: 20px;
    border-radius: 30px;
    text-align: center;
    font-size: 12px;
    margin-right: 10px;
}
.single_pro_details_info {
    border: 1px solid #ddd;
    margin-top: 30px;
    overflow: hidden;
}

.spdi h3 {
    background: #f8f7f0;
    text-align: center;
    padding: 30px;
    margin: -1px;
}
.spdi_info {
    padding: 20px 40px;
    overflow: hidden;
}
.spdi_info_details {
    float: left;
    width: 50%;
    border-bottom: 1px solid #ddd;
    padding-bottom: 30px;
}
.spdi_info_details span {
    font-weight: 600;
}
.spdi_info p {
}
.spdi_social_rat {
    text-align: center;
}
.spdi_social_rat h4 {
    /* float: left; */
    margin-bottom: 10px;
}
.spdi_social_rat i {
    color: #ef783d;
}
.spdi_social {
}
.spdi_social ul {
    text-align: center;
}
.spdi_social ul li {
    display: inline-block;
}
.spdi_social ul li a {
    display: block;
    background: #ededed;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 100px;
    transition: 0.3s;
    margin: 0 2px;
}
.spdi_social ul li a:hover {
    background: #1d8f2c;
    color: #fff;
}
/*END SINGLE PROJECT DETAILS*/
/*------------------------------------
	15/ Sponsor
------------------------------------*/
.srex-sponsor ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.srex-sponsor ul li {
    display: inline;
    cursor: pointer;
}

.srex-sponsor-two {
    margin-top: 120px;
}
@media (max-width: 767px) {
    .srex-sponsor-two {
        margin-top: 60px;
    }
}
.srex-sponsor-two .slick-slide {
    transition: all 0.3s ease-in-out;
    padding: 0 10px;
}

.srex-sponsor-three {
    padding: 80px 0;
    margin-top: 100px;
    background-image: url(../images/home-three/sponsor/bg.png);
    background-color: rgba(29, 143, 44, 0.8);
}
@media (max-width: 767px) {
    .srex-sponsor-three {
        margin-top: 60px;
    }
}
.srex-sponsor-three .slick-slide {
    transition: all 0.3s ease-in-out;
    padding: 0 10px;
}

/*------------------------------------
	16/ FAQ
------------------------------------*/
.srex-question {
    background: url(../images/home-one/faq/faq-bg.png) no-repeat;
    padding: 120px 0;
}
@media (max-width: 767px) {
    .srex-question {
        padding: 170px 0;
        background-size: cover;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .srex-question {
        padding: 80px 0;
        background-size: cover;
    }
}
.srex-question__title {
    width: 700px;
    margin: 0 auto;
    text-align: center;
}
.srex-question__title h2 {
    color: #fff;
}
@media (max-width: 767px) {
    .srex-question__title {
        width: 100%;
    }
}
.srex-question__left img {
    border-radius: 20px;
    width: 100%;
}
@media (max-width: 767px) {
    .srex-question__left img {
        margin-bottom: 40px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .srex-question__left img {
        margin-bottom: 40px;
    }
}
.srex-question-two {
    background: #f8f7f0;
    padding: 100px 0;
}
.sqp {
    background: #fff;
}
@media (max-width: 767px) {
    .srex-question-two {
        padding: 70px 0;
    }
}
.srex-question-two .accordion-item {
    box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.05);
    background-color: #fff;
    border: 1px solid #fff;
    border-radius: 30px;
    margin-bottom: 30px;
}
@media (max-width: 767px) {
    .srex-question-two .accordion-item {
        margin-top: 20px;
    }
}
.srex-question-two .accordion-header__left {
    display: -ms-inline-flexbox;
    display: inline-flex;
    gap: 20px;
    -ms-flex-align: center;
    align-items: center;
}
@media (max-width: 767px) {
    .srex-question-two .accordion-header__left h3,
    .srex-question-two
        .accordion-header__left
        .srex-accordion
        .accordion-header__left__badge,
    .srex-accordion
        .srex-question-two
        .accordion-header__left
        .accordion-header__left__badge {
        font-size: 15px;
    }
}
.srex-question-two .accordion-button {
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    border: 30px;
    padding: 20px;
    text-transform: capitalize;
    background-color: transparent;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
    transition: all 0.3s ease-in-out;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    cursor: pointer;
}
.srex-question-two .accordion-button h3,
.srex-question-two
    .accordion-button
    .srex-accordion
    .accordion-header__left__badge,
.srex-accordion
    .srex-question-two
    .accordion-button
    .accordion-header__left__badge {
    color: #24231d;
    padding-left: 15px;
}
.srex-question-two .accordion-button::after {
    content: none;
}
@media (max-width: 767px) {
    .srex-question-two .accordion-button {
        padding: 10px;
        font-size: 14px;
    }
}
.srex-question-two .accordion-button:focus {
    border: none;
    box-shadow: unset;
    outline: none;
}
.srex-question-two .accordion-button:not(.collapsed) {
    background-color: #fff;
    color: #2f2e28;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
}
.srex-question-two .accordion-button:not(.collapsed) .open {
    display: none;
}
.srex-question-two .accordion-button:not(.collapsed) .close {
    display: block;
}
.srex-question-two .accordion-button i {
    color: #24231d;
    margin-right: 20px;
    font-size: 20px;
    transition: all 0.3s ease-in-out;
}
.srex-question-two .accordion-button .open {
    display: block;
    color: #1d8f2c;
}
.srex-question-two .accordion-button .close {
    display: none;
}
.srex-question-two .accordion-body {
    font-size: 16px;
    color: #24231d;
    background: #fff;
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
    padding: 0 60px 25px 30px;
}
@media (max-width: 767px) {
    .srex-question-two .accordion-body {
        font-size: 15px;
        padding-top: 0;
        padding: 20px 30px 30px 30px;
    }
}
.srex-question-two .accordion-collapse.show {
    background-color: #fff;
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
}
.srex-question-two__right {
    position: relative;
}
.srex-question-two__right img {
    border-radius: 20px;
    width: 100%;
}
.srex-question-two__right__box {
    position: absolute;
    bottom: 23px;
    left: 30px;
    width: 305px;
    width: 305px;
    background: #1d8f2c;
    color: #fff;
    padding: 30px 40px;
    border-radius: 20px;
}
.srex-question-two__right__box h2,
.srex-question-two__right__box h4 {
    color: #fff;
}

.srex-faq-three {
    padding-bottom: 220px;
    background-color: #fff;
}
@media (max-width: 767px) {
    .srex-faq-three {
        padding-bottom: 170px 0;
        background-size: cover;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .srex-faq-three {
        padding: 80px 0;
        background-size: cover;
    }
}
.srex-faq-three .row {
    -ms-flex-align: end;
    align-items: flex-end;
}
.srex-faq-three__left {
    border-radius: 249px 20px 20px 20px;
    background-color: #f8f7f0;
    text-align: center;
    position: relative;
    margin-right: 40px;
}
@media (max-width: 480px) {
    .srex-faq-three__left {
        text-align: center;
        margin: 60px 0;
    }
}
.srex-faq-three__left__img img {
    margin-top: -100px;
}
.srex-faq-three__left__box {
    background-color: #fff;
    color: #24231d;
    position: absolute;
    right: -20px;
    bottom: 30px;
    padding: 25px 40px;
    border-radius: 20px;
    box-shadow: 0px 0px 60px 0px rgba(0, 0, 0, 0.05);
}
.srex-faq-three__left__box img {
    height: 75px;
    width: 52px;
}
.srex-faq-three__left__box__text h2 {
    color: #24231d;
}
.srex-faq-three__left__box__text p {
    text-align: left;
}
.srex-faq-three .srex-accordion {
    margin-top: 60px;
}
.srex-faq-three .srex-accordion .accordion-item {
    background-color: #fff;
    color: #24231d;
    border-color: #e3e3e3;
    border-radius: 10px;
}
.srex-faq-three .srex-accordion .accordion-item .accordion-header__left__badge {
    color: #1d8f2c !important;
    background-color: #f8f7f0 !important;
}
.srex-faq-three .srex-accordion .accordion-item h3,
.srex-faq-three .srex-accordion .accordion-item .accordion-header__left__badge {
    color: #24231d;
}
.srex-faq-three .srex-accordion .accordion-button:not(.collapsed) {
    background-color: #fff;
    color: #24231d;
}
.srex-faq-three
    .srex-accordion
    .accordion-button:not(.collapsed)
    .accordion-header__left__badge {
    background-color: #1d8f2c !important;
    color: #fff !important;
}
.srex-faq-three .srex-accordion .accordion-collapse.show {
    background-color: #fff;
}
.srex-faq-three .srex-accordion .accordion-collapse .accordion-body {
    padding: 0px 90px 30px 90px;
}

/*------------------------------------
	17/ News Letter
------------------------------------*/
.srex-news-letter {
    margin-top: -100px;
}
@media (max-width: 767px) {
    .srex-news-letter {
        margin-top: -145px;
    }
}
.srex-news-letter--three {
    margin-top: -125px;
    position: relative;
    z-index: 99;
}
.srex-news-letter--three .srex-news-letter__box {
    background-color: #1d8f2c;
    background-image: url(../images/newsletter-three-bg.png);
    background-repeat: no-repeat;
}
.srex-news-letter--three .srex-news-letter__box__left {
    gap: 20px;
}
.srex-news-letter--three .srex-news-letter__box__left h2 {
    color: #fff;
}
.srex-news-letter--three .srex-news-letter__box__left p {
    color: #fff;
}
.srex-news-letter--three .srex-news-letter__box__right input {
    background-color: transparent;
    color: #fff;
}
.srex-news-letter--three
    .srex-news-letter__box__right
    input:-ms-input-placeholder {
    color: #fff;
}
.srex-news-letter--three .srex-news-letter__box__right input::placeholder {
    color: #fff;
}
.srex-news-letter--three .srex-news-letter__box__right button {
    font-weight: 800;
}
.srex-news-letter__box {
    background: #f8f7f0;
    padding: 60px;
    border-radius: 20px;
}
@media (max-width: 767px) {
    .srex-news-letter__box {
        padding: 40px 20px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .srex-news-letter__box {
        padding: 45px;
    }
}
.srex-news-letter__box--two {
    background-color: #1d8f2c;
    margin-top: -125px;
}
.srex-news-letter__box--two .srex-news-letter__box__left {
    display: block;
    text-align: center;
}
.srex-news-letter__box--two .srex-news-letter__box__left .srex-section__frame {
    top: 50px;
    left: 40%;
}
.srex-news-letter__box--two .srex-news-letter__box__left h2 {
    padding: 0px !important;
    margin-bottom: 20px;
    color: #fff;
}
.srex-news-letter__box--two .srex-news-letter__box__left p {
    color: #fff;
}
.srex-news-letter__box__left {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
}
@media (max-width: 767px) {
    .srex-news-letter__box__left {
        margin-bottom: 30px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .srex-news-letter__box__left {
        -ms-flex-pack: center;
        justify-content: center;
    }
}
.srex-news-letter__box__left h3,
.srex-news-letter__box__left .srex-accordion .accordion-header__left__badge,
.srex-accordion .srex-news-letter__box__left .accordion-header__left__badge {
    font-size: 24px;
    padding-left: 20px;
    padding-right: 80px;
}
@media (max-width: 767px) {
    .srex-news-letter__box__left h3,
    .srex-news-letter__box__left .srex-accordion .accordion-header__left__badge,
    .srex-accordion
        .srex-news-letter__box__left
        .accordion-header__left__badge {
        font-size: 18px;
        padding-right: 0;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .srex-news-letter__box__left h3,
    .srex-news-letter__box__left .srex-accordion .accordion-header__left__badge,
    .srex-accordion
        .srex-news-letter__box__left
        .accordion-header__left__badge {
        padding-right: 0;
    }
}
.srex-news-letter__box__right {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: end;
    justify-content: end;
}
@media (max-width: 767px) {
    .srex-news-letter__box__right {
        display: block;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .srex-news-letter__box__right {
        -ms-flex-pack: center;
        justify-content: center;
        margin-top: 20px;
    }
}
.srex-news-letter__box__right form {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
}
@media (max-width: 767px) {
    .srex-news-letter__box__right form {
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 10px;
    }
}
.srex-news-letter__box__right input {
    border-radius: 999px;
    padding: 16px;
    padding-right: 80px;
    margin-right: 10px;
    border: 2px solid #e3e3e3;
    width: 100%;
}
@media (max-width: 767px) {
    .srex-news-letter__box__right input {
        width: 100%;
        margin-bottom: 10px;
    }
}
.srex-news-letter__box__right button {
    width: 60%;
}

/*------------------------------------
	18/ Stats
------------------------------------*/
.srex-stats__item {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 20px;
}
@media (max-width: 767px) {
    .srex-stats__item {
        -ms-flex-pack: start;
        justify-content: flex-start;
        margin-bottom: 30px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .srex-stats__item {
        -ms-flex-pack: start;
        justify-content: flex-start;
        margin-bottom: 30px;
    }
}
@media only screen and (min-width: 992px) and (max-width: 1280px) {
    .srex-stats__item {
        -ms-flex-pack: start;
        justify-content: flex-start;
        margin-bottom: 30px;
    }
}
.srex-stats__item__icon {
    width: 80px;
    height: 80px;
    border-radius: 999px;
    border: 1px solid #e3e3e3;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
}
@media only screen and (min-width: 992px) and (max-width: 1280px) {
    .srex-stats__item__icon {
        width: 60px;
        height: 60px;
    }
}
.srex-stats__item__icon img {
    width: 40px;
    height: 40px;
}
@media only screen and (min-width: 992px) and (max-width: 1280px) {
    .srex-stats__item__icon img {
        width: 30px;
        height: 30px;
    }
}
@media only screen and (min-width: 992px) and (max-width: 1280px) {
    .srex-stats__item__text h2 {
        font-size: 30px;
    }
}
@media only screen and (min-width: 992px) and (max-width: 1280px) {
    .srex-stats__item__text h3,
    .srex-stats__item__text .srex-accordion .accordion-header__left__badge,
    .srex-accordion .srex-stats__item__text .accordion-header__left__badge {
        font-size: 18px;
    }
}

/*------------------------------------
	19/ Testimonial
------------------------------------*/
.srex-testimonial-one {
    position: relative;
    background-color: #f8f7f0;
    margin-top: 100px;
    background-image: url(../images/testimonial-bg.png);
    background-repeat: no-repeat;
    background-position: left center;
}
@media (max-width: 767px) {
    .srex-testimonial-one {
        margin-top: 0px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .srex-testimonial-one {
        margin-top: 0px;
    }
}
.srex-testimonial-one .row {
    -ms-flex-align: center;
    align-items: center;
}
.srex-testimonial-one__left {
    position: relative;
    z-index: 9;
}
.srex-testimonial-one__left .srex-section__head {
    padding-top: 80px;
}
@media (max-width: 767px) {
    .srex-testimonial-one__left .srex-section__head {
        padding-top: 40px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .srex-testimonial-one__left .srex-section__head {
        padding-top: 40px;
    }
}
.srex-testimonial-one__slider {
    margin-top: 60px;
}
@media (max-width: 767px) {
    .srex-testimonial-one__slider {
        margin-top: 40px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .srex-testimonial-one__slider {
        margin-top: 40px;
    }
}
.srex-testimonial-one__slider__item {
    background-color: #1d8f2c;
    color: #fff;
    padding: 70px 60px;
    border-radius: 20px;
    background-image: url(../images/plant.svg);
    background-repeat: no-repeat;
    background-position: center center;
}
@media (max-width: 767px) {
    .srex-testimonial-one__slider__item {
        padding: 40px 30px;
    }
}
.srex-testimonial-one__slider__item__quote {
    height: 60px;
    width: 60px;
    margin-bottom: 30px;
}
@media (max-width: 767px) {
    .srex-testimonial-one__slider__item__quote {
        height: 40px;
        width: 40px;
        margin-bottom: 20px;
    }
}
.srex-testimonial-one__slider__item__text {
    font-size: 25px;
    line-height: 40px;
    color: #fff;
    font-weight: 500;
    margin-bottom: 30px;
}
@media (max-width: 767px) {
    .srex-testimonial-one__slider__item__text {
        font-size: 20px;
        line-height: 30px;
        margin-bottom: 20px;
    }
}
.srex-testimonial-one__slider__item__author h3,
.srex-testimonial-one__slider__item__author
    .srex-accordion
    .accordion-header__left__badge,
.srex-accordion
    .srex-testimonial-one__slider__item__author
    .accordion-header__left__badge {
    margin-bottom: 5px;
}
.srex-testimonial-one__slider__item__author h3,
.srex-testimonial-one__slider__item__author
    .srex-accordion
    .accordion-header__left__badge,
.srex-accordion
    .srex-testimonial-one__slider__item__author
    .accordion-header__left__badge,
.srex-testimonial-one__slider__item__author p {
    color: #fff;
}
.srex-testimonial-one__slider .slick-dots {
    bottom: 70px;
    right: 70px;
    width: auto;
}
@media (max-width: 767px) {
    .srex-testimonial-one__slider .slick-dots {
        bottom: 40px;
        right: 40px;
    }
}
.srex-testimonial-one__slider .slick-dots li button {
    background-color: transparent;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 1px solid #fff;
}
.srex-testimonial-one__slider .slick-dots li button::before {
    display: none;
}
.srex-testimonial-one__slider .slick-dots li.slick-active button {
    background-color: #fff;
}
.srex-testimonial-one__right {
    position: absolute;
    top: 150px;
    right: 0;
}
@media (max-width: 767px) {
    .srex-testimonial-one__right {
        position: unset;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .srex-testimonial-one__right {
        position: unset;
    }
}
.srex-testimonial-one__right img {
    width: 100%;
    border-top-left-radius: 40px;
    border-bottom-left-radius: 40px;
}
@media (max-width: 767px) {
    .srex-testimonial-one__right img {
        border-radius: 20px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .srex-testimonial-one__right img {
        border-radius: 20px;
    }
}

.srex-testimonial-two {
    background-color: #f8f7f0;
    background-image: url(../images/home-two/testimonial-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    padding-top: 120px;
    padding-bottom: 270px;
    border-radius: 40px;
}
@media (max-width: 767px) {
    .srex-testimonial-two {
        padding-top: 70px;
        padding-bottom: 200px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .srex-testimonial-two {
        padding-top: 80px;
        padding-bottom: 200px;
    }
}
.srex-testimonial-two__title {
    width: 700px;
    margin: 0 auto;
    text-align: center;
    padding-bottom: 100px;
}
@media (max-width: 767px) {
    .srex-testimonial-two__title {
        width: 100%;
        padding-bottom: 0;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .srex-testimonial-two__title {
        width: 100%;
        padding-bottom: 0;
    }
}
.srex-testimonial-two__slider {
    margin-top: 60px;
}
@media (max-width: 767px) {
    .srex-testimonial-two__slider {
        margin-top: 20px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .srex-testimonial-two__slider {
        margin-top: 20px;
    }
}
.srex-testimonial-two__slider__item {
    color: #fff;
}
.srex-testimonial-two__slider__item__ratings {
    margin-bottom: 20px;
}
.srex-testimonial-two__slider__item__ratings i {
    color: #ffba08;
    font-size: 16px;
    line-height: normal;
}
.srex-testimonial-two__slider__item__quote {
    height: 80px;
    width: 80px;
    margin-top: -20px;
    margin-bottom: 20px;
}
@media (max-width: 767px) {
    .srex-testimonial-two__slider__item__quote {
        height: 40px;
        width: 40px;
        margin-bottom: 20px;
    }
}
.srex-testimonial-two__slider__item__text {
    font-size: 25px;
    line-height: 40px;
    color: #878680;
    font-weight: 500;
    margin-bottom: 30px;
}
@media (max-width: 767px) {
    .srex-testimonial-two__slider__item__text {
        font-size: 20px;
        line-height: 30px;
        margin-bottom: 20px;
    }
}
.srex-testimonial-two__slider__item__author h3,
.srex-testimonial-two__slider__item__author
    .srex-accordion
    .accordion-header__left__badge,
.srex-accordion
    .srex-testimonial-two__slider__item__author
    .accordion-header__left__badge {
    margin-bottom: 5px;
    color: #24231d;
}
.srex-testimonial-two__slider__item__author p {
    color: #878680;
}
.srex-testimonial-two__slider .slick-arrow {
    display: none !important;
}
.srex-testimonial-two__slider__nav {
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
    -ms-flex-align: center;
    align-items: center;
    transition: all 0.3s;
}
.srex-testimonial-two__slider__nav svg {
    font-size: 45px;
    color: #878680;
    transition: all 0.3s;
}
.srex-testimonial-two__slider__nav div {
    transition: all 0.3s;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.srex-testimonial-two__slider__nav div:hover svg {
    color: #1d8f2c;
}
.srex-testimonial-two__right {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: end;
    justify-content: flex-end;
}
@media (max-width: 767px) {
    .srex-testimonial-two__right {
        margin-top: 50px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .srex-testimonial-two__right {
        -ms-flex-pack: center;
        justify-content: center;
    }
}
.srex-testimonial-two__right__img {
    position: absolute;
    right: 67px;
    bottom: 2px;
    border-bottom-left-radius: 125px;
    border-bottom-right-radius: 97px;
}
@media (max-width: 767px) {
    .srex-testimonial-two__right__img {
        left: 50px;
        height: 400px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .srex-testimonial-two__right__img {
        left: 170px;
        height: 500px;
    }
}
.srex-testimonial-two__right__badge {
    position: absolute;
    bottom: 0;
    left: 155px;
    background-color: #ff7029;
    color: #fff;
    border-radius: 20px;
    padding: 20px 75px 20px 30px;
}
@media (max-width: 767px) {
    .srex-testimonial-two__right__badge {
        left: 0px;
        padding: 20px 40px;
    }
}
.srex-testimonial-two__right__badge img {
    margin-bottom: 15px;
    height: 50px;
    width: 50px;
}
.srex-testimonial-two__right__badge h3,
.srex-testimonial-two__right__badge
    .srex-accordion
    .accordion-header__left__badge,
.srex-accordion
    .srex-testimonial-two__right__badge
    .accordion-header__left__badge {
    color: #fff;
}

.srex-testimonial-three {
    padding-top: 120px;
}
.srex-testi-ab {
    padding-bottom: 0px;
}

@media (max-width: 767px) {
    .srex-testimonial-three {
        padding-top: 70px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .srex-testimonial-three {
        padding-top: 80px;
    }
}
.srex-testimonial-three__slider {
    margin-top: 60px;
}
@media (max-width: 767px) {
    .srex-testimonial-three__slider {
        margin-top: 20px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .srex-testimonial-three__slider {
        margin-top: 20px;
    }
}
.srex-testimonial-three__slider__item {
    color: #fff;
    background-image: url(../images/home-three/testimonial-bg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    border-radius: 20px;
    background-color: #fff;
    text-align: center;
    -ms-flex-direction: column;
    flex-direction: column;
    display: -ms-flexbox !important;
    display: flex !important;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.05);
    border: 1px solid #f8f7f0;
    margin: 40px 0;
    padding: 0 50px;
}
.srex-testimonial-three__slider__item__ratings {
    margin-bottom: 20px;
}
.srex-testimonial-three__slider__item__ratings i {
    color: #ffba08;
    font-size: 16px;
    line-height: normal;
}
.srex-testimonial-three__slider__item__icon {
    width: 60px;
    height: 60px;
    background-color: #1d8f2c;
    border-radius: 100%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: -30px;
    margin-bottom: 30px;
}
.srex-testimonial-three__slider__item__icon i {
    font-size: 32px;
    font-style: normal;
    font-weight: 900;
    line-height: normal;
}
.srex-testimonial-three__slider__item__text {
    font-size: 25px;
    line-height: 40px;
    color: #878680;
    font-weight: 500;
    margin-top: 40px;
    margin-bottom: 30px;
}
@media (max-width: 767px) {
    .srex-testimonial-three__slider__item__text {
        font-size: 20px;
        line-height: 30px;
        margin-bottom: 20px;
    }
}
.srex-testimonial-three__slider__item__author h3,
.srex-testimonial-three__slider__item__author
    .srex-accordion
    .accordion-header__left__badge,
.srex-accordion
    .srex-testimonial-three__slider__item__author
    .accordion-header__left__badge {
    margin-bottom: 5px;
    color: #24231d;
}
.srex-testimonial-three__slider__item__author p {
    color: #878680;
}
.srex-testimonial-three__slider .slick-arrow {
    display: none !important;
}
.srex-testimonial-three__slider__nav {
    transition: all 0.3s;
}
.srex-testimonial-three__slider__nav svg {
    font-size: 30px;
    color: #1d8f2c;
    transition: all 0.3s;
}
.srex-testimonial-three__slider__nav__prev,
.srex-testimonial-three__slider__nav__next {
    position: absolute;
    top: 50%;
}
.srex-testimonial-three__slider__nav__prev {
    left: -100px;
}
@media (max-width: 767px) {
    .srex-testimonial-three__slider__nav__prev {
        left: -30px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .srex-testimonial-three__slider__nav__prev {
        left: -30px;
    }
}
.srex-testimonial-three__slider__nav__next {
    right: -100px;
}
@media (max-width: 767px) {
    .srex-testimonial-three__slider__nav__next {
        right: -30px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .srex-testimonial-three__slider__nav__next {
        right: -30px;
    }
}
.srex-testimonial-three__slider__nav > div {
    transition: all 0.3s;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    width: 80px;
    height: 80px;
    background-color: rgba(29, 143, 44, 0.2);
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 100%;
}
.srex-testimonial-three__slider__nav > div:hover {
    background-color: #1d8f2c;
    cursor: pointer;
}
.srex-testimonial-three__slider__nav > div:hover svg {
    color: #fff;
}
.srex-testimonial-three__right {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: end;
    justify-content: flex-end;
}
@media (max-width: 767px) {
    .srex-testimonial-three__right {
        margin-top: 50px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .srex-testimonial-three__right {
        -ms-flex-pack: center;
        justify-content: center;
    }
}
.srex-testimonial-three__right__img {
    position: absolute;
    right: 67px;
    bottom: 2px;
    border-bottom-left-radius: 125px;
    border-bottom-right-radius: 97px;
}
@media (max-width: 767px) {
    .srex-testimonial-three__right__img {
        left: 50px;
        height: 400px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .srex-testimonial-three__right__img {
        left: 170px;
        height: 500px;
    }
}
.srex-testimonial-three__right__badge {
    position: absolute;
    bottom: 0;
    left: 155px;
    background-color: #ff7029;
    color: #fff;
    border-radius: 20px;
    padding: 20px 75px 20px 30px;
}
@media (max-width: 767px) {
    .srex-testimonial-three__right__badge {
        left: 0px;
        padding: 20px 40px;
    }
}
.srex-testimonial-three__right__badge img {
    margin-bottom: 15px;
    height: 50px;
    width: 50px;
}
.srex-testimonial-three__right__badge h3,
.srex-testimonial-three__right__badge
    .srex-accordion
    .accordion-header__left__badge,
.srex-accordion
    .srex-testimonial-three__right__badge
    .accordion-header__left__badge {
    color: #fff;
}

/*------------------------------------
	20/ Blog
------------------------------------*/
.srex-blog-one {
    margin-top: 120px;
}
@media (max-width: 767px) {
    .srex-blog-one {
        margin-top: 80px;
    }
}
.srex-blog-one__title {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-align: center;
    align-items: center;
    text-align: left;
}
@media (max-width: 767px) {
    .srex-blog-one__title {
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 25px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .srex-blog-one__title {
        gap: 25px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .srex-blog-one__title .srex-section__head {
        margin: 0;
        text-align: left;
    }
}
.srex-blog-one__post {
    margin-top: 60px;
    transition: all 0.3s ease-in-out;
}
.srex-blog-one__post i {
    transition: all 0.3s ease-in-out;
}
.srex-blog-one__post:hover .srex-blog-one__post__img::after {
    width: 100%;
}
.srex-blog-one__post:hover i {
    color: #1d8f2c;
}
.srex-blog-one__post:hover h3 a,
.srex-blog-one__post:hover .srex-accordion .accordion-header__left__badge a,
.srex-accordion .srex-blog-one__post:hover .accordion-header__left__badge a {
    color: #1d8f2c;
}
.srex-blog-one__post:hover .srex-btn--outline {
    border-color: #1d8f2c;
    background-color: #f8f7f0;
    color: #1d8f2c;
}
.srex-blog-one__post__img {
    position: relative;
    display: block;
    overflow: hidden;
}
.srex-blog-one__post__img img {
    border-radius: 10px;
    width: 100%;
}
.srex-blog-one__post__img::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: -10px;
    width: 0;
    height: 100%;
    background-color: rgba(29, 143, 44, 0.39);
    transition: all 0.4s ease-in-out;
    border-radius: 10px;
}
.srex-blog-one__post h6 {
    color: #878680;
}
.srex-blog-one__post h3,
.srex-blog-one__post .srex-accordion .accordion-header__left__badge,
.srex-accordion .srex-blog-one__post .accordion-header__left__badge {
    margin-top: 20px;
    margin-bottom: 20px;
}
.srex-blog-one__post .srex-btn--outline {
    border-color: #e3e3e3;
}
.srex-blog-one__post .srex-btn--outline:hover {
    border-color: #1d8f2c;
    background-color: #f8f7f0;
    color: #1d8f2c;
}

.srex-blog-two {
    position: relative;
}
.srex-blog-two__frame {
    position: absolute;
    left: 30%;
    top: 5%;
}
@media (max-width: 767px) {
    .srex-blog-two__frame {
        left: 10px;
        top: 180px;
    }
}
@media (max-width: 767px) {
    .srex-blog-two {
        padding: 70px 0 70px 0;
        margin-top: 0;
    }
}
.srex-blog-two__post {
    position: relative;
    background: #f8f7f0;
    padding: 20px;
    border-radius: 20px;
    transition: all 0.3s ease-in-out;
}
.srex-blog-two__post:hover {
    background: #fff;
    box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 100;
}
.srex-blog-two__post:hover .srex-info-box__more i {
    margin-left: 10px;
}
.srex-blog-two__post:hover i {
    color: #ff7029;
}
.srex-blog-two__post:hover .srex-blog-two__post__badge {
    background: #ff7029;
}
.srex-blog-two__post:hover h3 a,
.srex-blog-two__post:hover .srex-accordion .accordion-header__left__badge a,
.srex-accordion .srex-blog-two__post:hover .accordion-header__left__badge a {
    color: #ff7029;
}
.srex-blog-two__post .srex-blog-one__post__img::after {
    background: rgba(255, 112, 41, 0.39);
}
.srex-blog-two__post__badge {
    position: absolute;
    top: 45%;
    left: 10%;
    background: #1d8f2c;
    width: 70px;
    height: 30px;
    text-align: center;
    transition: all 0.3s ease-in-out;
}
.srex-blog-two__post__badge h6 {
    color: #fff;
    text-transform: uppercase;
}
.srex-blog-two__post h3,
.srex-blog-two__post .srex-accordion .accordion-header__left__badge,
.srex-accordion .srex-blog-two__post .accordion-header__left__badge {
    margin-top: 10px;
}

.srex-blog-three {
    margin-top: 120px;
}
@media (max-width: 767px) {
    .srex-blog-three {
        margin-top: 80px;
    }
}
.srex-blog-three__title {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-align: center;
    align-items: center;
    text-align: left;
}
@media (max-width: 767px) {
    .srex-blog-three__title {
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 25px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .srex-blog-three__title {
        gap: 25px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .srex-blog-three__title .srex-section__head {
        margin: 0;
        text-align: left;
    }
}
.srex-blog-three__title .srex-section__head__title {
    max-width: 60%;
}
@media (max-width: 767px) {
    .srex-blog-three__title .srex-section__head__title {
        max-width: 100%;
    }
}
.srex-blog-three__post {
    margin-top: 60px;
    transition: all 0.3s ease-in-out;
    border: 1px solid #e3e3e3;
    box-shadow: 0px 0px 60px 0px rgba(0, 0, 0, 0.05);
    border-radius: 20px;
}
.srex-blog-three__post i {
    transition: all 0.3s ease-in-out;
}
.srex-blog-three__post:hover .srex-blog-three__post__img::after {
    width: 95%;
}
.srex-blog-three__post:hover i {
    color: #1d8f2c;
}
.srex-blog-three__post:hover h3 a,
.srex-blog-three__post:hover .srex-accordion .accordion-header__left__badge a,
.srex-accordion .srex-blog-three__post:hover .accordion-header__left__badge a {
    color: #1d8f2c;
}
.srex-blog-three__post:hover .srex-btn--outline {
    border-color: #1d8f2c;
    background-color: #f8f7f0;
    color: #1d8f2c;
}
.srex-blog-three__post__img {
    position: relative;
    display: block;
    overflow: hidden;
    padding: 10px;
    padding-bottom: 0;
}
.srex-blog-three__post__img img {
    border-radius: 10px;
    width: 100%;
}
.srex-blog-three__post__img::after {
    content: "";
    position: absolute;
    top: 10px;
    bottom: 0px;
    width: 0;
    left: 10px;
    right: 0px;
    height: 97%;
    background-color: rgba(29, 143, 44, 0.39);
    transition: all 0.4s ease-in-out;
    border-radius: 10px;
}
.srex-blog-three__post h6 {
    color: #878680;
}
.srex-blog-three__post h3,
.srex-blog-three__post .srex-accordion .accordion-header__left__badge,
.srex-accordion .srex-blog-three__post .accordion-header__left__badge {
    margin-top: 20px;
    margin-bottom: 20px;
    padding: 0 30px;
}
.srex-blog-three__post__meta {
    background-color: #f8f7f0;
    padding: 10px 30px;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}
.srex-blog-three__post .srex-btn--outline {
    border-color: #e3e3e3;
}
.srex-blog-three__post .srex-btn--outline:hover {
    border-color: #1d8f2c;
    background-color: #f8f7f0;
    color: #1d8f2c;
}

/*------------------------------------
	21/ Footer
------------------------------------*/
.srex-footer--mft {
    background-image: url(../images/footer-3-bg.png) !important;
    background-repeat: no-repeat;
    background-position: right bottom !important;
    background-color: #24231d !important;
}
.srex-footer--mft .srex-footer__social_links li {
    background: transparent;
    border: 1px solid #1d8f2c;
}
.srex-footer--mft .srex-footer__social_links li i {
    color: #fff;
}
.srex-footer--mft .srex-footer__links__list li a {
    color: #fff !important;
}
.srex-footer--mft .srex-footer__contact__icon {
    background-color: transparent;
    border: 1px solid #1d8f2c;
    border-radius: 5px;
}
.srex-footer--mft .srex-footer__contact__icon i {
    color: #fff;
}
.srex-footer--mft .srex-news-letter__box__right input {
    background-color: transparent;
    border: 2px solid rgba(255, 255, 255, 0.11);
    color: #fff;
}
.srex-footer--mft .srex-news-letter__box__right input:-ms-input-placeholder {
    color: #fff;
}
.srex-footer--mft .srex-news-letter__box__right input::placeholder {
    color: #fff;
}
.srex-footer--mft p,
.srex-footer--mft h4 {
    color: #fff !important;
}
.srex-footer--mft hr {
    border-color: #e3e3e3 !important;
}
.srex-footer__social_links {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: end;
    justify-content: end;
    gap: 10px;
}
.srex-footer__social_links li {
    background: #fff;
    cursor: pointer;
    height: 35px;
    width: 35px;
    border-radius: 999px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    transition: all 0.3s ease;
}
.srex-footer__social_links li:hover {
    background-color: #1d8f2c;
    color: #fff;
}
.srex-footer__contact li {
    display: -ms-flexbox;
    display: flex;
    gap: 15px;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 20px;
}
.srex-footer__contact__icon {
    background-color: #fff;
    height: 40px;
    width: 40px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.srex-footer__contact__icon i {
    color: #1d8f2c;
}
.srex-footer__contact__text p {
    color: #ffffff;
    font-weight: 500;
}
.srex-footer__contact__text p a:hover {
    color: #1d8f2c;
}
.srex-footer__links {
    padding-top: 40px;
    padding-bottom: 40px;
}
@media (max-width: 767px) {
    .srex-footer__links {
        padding: 10px 0 30px 0;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .srex-footer__links {
        padding: 20px 0 30px 0;
    }
}
@media (max-width: 767px) {
    .srex-footer__links__wrapper {
        padding-top: 20px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .srex-footer__links__wrapper {
        padding-top: 20px;
    }
}
.srex-footer__links__wrapper--space {
    padding: 0 60px;
}
@media (max-width: 767px) {
    .srex-footer__links__wrapper--space {
        padding: 0 20px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .srex-footer__links__wrapper--space {
        padding: 0 20px;
    }
}
.srex-footer__links__content {
    margin-top: 35px;
}
@media (max-width: 767px) {
    .srex-footer__links__content {
        margin-top: 15px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .srex-footer__links__content {
        margin-top: 15px;
    }
}
.srex-footer__links__list li {
    margin-bottom: 12px;
}
.srex-footer__links__list li a {
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
}

.srex-footer__links__list li a:hover {
    color: #1d8f2c !important;
}

.srex-footer_for_main {
    color: #8cff44;
    font-weight: 600;
}
.srex-footer__links__list li a:hover {
    color: #24231d;
}
.srex-footer__newsletter p {
    margin-bottom: 20px;
}
.srex-footer__newsletter .srex-news-letter__box__right form {
    -ms-flex-direction: column;
    flex-direction: column;
}
.srex-footer__newsletter .srex-news-letter__box__right input {
    margin-bottom: 20px;
    padding: 15px 30px;
    width: 100%;
}
.srex-footer__newsletter .srex-news-letter__box__right button {
    width: 100%;
    text-transform: uppercase;
}
.srex-footer__bottom {
    padding-bottom: 25px;
    padding-top: 15px;
}
.srex-footer__bottom p {
    color: #fff;
}
.srex-footer__bottom .row {
    -ms-flex-align: center;
    align-items: center;
}
@media (max-width: 767px) {
    .srex-footer__bottom p {
        text-align: center;
        margin-bottom: 15px;
    }
}
.srex-footer__bottom__links {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    gap: 20px;
    -ms-flex-pack: end;
    justify-content: flex-end;
}
@media (max-width: 767px) {
    .srex-footer__bottom__links {
        -ms-flex-pack: center;
        justify-content: center;
    }
}
.srex-footer__bottom__links li a {
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
}
.srex-footer__bottom__links li a:hover {
    color: #8cff44;
}

.srex-footer-one {
    position: relative;
    background-image: url("../images/new-breadcum-bg.png");
    background-size: cover;
    background-position: bottom;
    background-repeat: no-repeat;
}

.srex-footer-one::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.8); /* overlay color */
    z-index: 1;
}

/* keep content above overlay */
.srex-footer-one > * {
    position: relative;
    z-index: 2;
}

/* keep footer content above the background */
.srex-footer-one > .container {
    position: relative;
    z-index: 1;
}

@media (max-width: 767px) {
    .srex-footer-one {
        padding-top: 40px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .srex-footer-one {
        padding-top: 40px;
    }
}
.srex-footer-one__top {
    padding: 40px 0;
}
@media (max-width: 767px) {
    .srex-footer-one__top {
        padding-bottom: 30px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .srex-footer-one__top {
        padding-bottom: 30px;
    }
}
.srex-footer-one hr {
    border-color: #24231d;
}

.srex-footer-two {
    background-color: #24231d;
    padding-top: 50px;
    background-image: url(../images/footer-two-bg.png);
    background-repeat: no-repeat;
    background-position: center;
}
.srex-footer-two__top__content {
    border: 1px solid #2f2e28;
    border-radius: 20px;
    padding: 40px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .srex-footer-two__top__content {
        padding: 20px;
    }
}
.srex-footer-two__top__content__contact {
    -ms-flex-align: center;
    align-items: center;
}
@media (max-width: 767px) {
    .srex-footer-two__top__content__contact {
        -ms-flex-direction: column;
        flex-direction: column;
        -ms-flex-align: start;
        align-items: flex-start;
    }
}
.srex-footer-two__top__content__contact li {
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
    -ms-flex-align: center;
    align-items: center;
}
@media (max-width: 767px) {
    .srex-footer-two__top__content__contact li {
        padding: 25px 0;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .srex-footer-two__top__content__contact li {
        gap: 10px;
    }
}
.srex-footer-two__top__content h3,
.srex-footer-two__top__content .srex-accordion .accordion-header__left__badge,
.srex-accordion .srex-footer-two__top__content .accordion-header__left__badge {
    color: #fff;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .srex-footer-two__top__content h3,
    .srex-footer-two__top__content
        .srex-accordion
        .accordion-header__left__badge,
    .srex-accordion
        .srex-footer-two__top__content
        .accordion-header__left__badge {
        font-size: 15px;
    }
}
.srex-footer-two__top__content i {
    font-size: 40px;
    color: #1d8f2c;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .srex-footer-two__top__content i {
        font-size: 25px;
    }
}
.srex-footer-two__top__content p {
    color: #fff;
}
.srex-footer-two__top__content p a {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .srex-footer-two__top__content p a {
        font-size: 14px;
    }
}
.srex-footer-two__links {
    padding-top: 80px;
    padding-bottom: 40px;
}
@media (max-width: 767px) {
    .srex-footer-two__links__logo img {
        padding-bottom: 20px;
    }
}
.srex-footer-two__links__logo__text {
    padding: 30px 100px 40px 0;
}
@media (max-width: 767px) {
    .srex-footer-two__links__logo__text {
        padding: 0;
    }
}
.srex-footer-two__links__social_links {
    display: -ms-flexbox;
    display: flex;
    gap: 10px;
}
@media (max-width: 767px) {
    .srex-footer-two__links__social_links {
        padding: 25px 0;
    }
}
.srex-footer-two__links__social_links li {
    background: #24231d;
    border: 1px solid #1d8f2c;
    color: #fff;
    cursor: pointer;
    height: 35px;
    width: 35px;
    border-radius: 999px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    transition: all 0.3s ease;
}
.srex-footer-two__links__social_links li:hover {
    background-color: #1d8f2c;
    color: #fff;
}
.srex-footer-two .border-line {
    height: 1px;
    width: 100%;
    background: #fff;
    opacity: 0.2;
}
.srex-footer-two .srex-footer__bottom li a:hover {
    color: #fff;
}

.footer-two .srex-footer__links__wrapper h4 {
    color: #fff;
}
.footer-two .srex-footer__links__wrapper li a {
    color: #878680;
    font-size: 16px;
    font-weight: 500;
}
.footer-two .srex-footer__links__wrapper li a:hover {
    color: #fff;
}
.footer-two .srex-footer__form {
    position: relative;
}
.footer-two .srex-footer__form input {
    border-radius: 999px;
    padding: 16px;
    padding-right: 80px;
    margin-right: 10px;
    background: #24231d;
    border: 2px solid #2f2e28;
    width: 100%;
    color: #fff;
}
.footer-two .srex-footer__form input:focus {
    outline: none;
}
.footer-two .srex-footer__form button {
    width: 60px;
    height: 60px;
    background: #1d8f2c;
    border-radius: 999px;
    position: absolute;
    right: -5px;
    top: 0;
}
.footer-two .srex-footer__form button i {
    font-size: 16px;
    color: #fff;
}

.visiter-box {
    border-radius: 8px;
    background: #fff;
    padding: 5px 10px;
}
.visiter-box .visiter-box-text {
    color: #000;
}
/*------------------------------------
	22/ Support - 2
------------------------------------*/
.srex-support {
    padding-top: 100px;
}
@media (max-width: 767px) {
    .srex-support {
        padding-top: 70px;
    }
}
.srex-support--three .srex-support__item {
    background-color: #f8f7f0;
    border: 0px;
}
.srex-support__item {
    border: 1px solid #e3e3e3;
    border-radius: 20px;
    padding: 40px 30px;
}
@media (max-width: 767px) {
    .srex-support__item {
        margin-bottom: 15px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .srex-support__item {
        margin-bottom: 20px;
    }
}

/*------------------------------------
	23/ Pricing
------------------------------------*/
.srex-pricing {
    background-color: #f8f7f0;
    padding-top: 230px;
    margin-top: -100px;
    padding-bottom: 400px;
}
.srex-pnone {
    padding: 100px 0;
    margin-top: 0px;
}
.srex-pricing-items {
    margin-top: 60px;
}
.srex-pricing-items__item {
    background-color: #fff;
    padding: 60px 80px;
    border-radius: 20px;
    margin-bottom: 30px;
}
.srex-pricing-items__item h3,
.srex-pricing-items__item .srex-accordion .accordion-header__left__badge,
.srex-accordion .srex-pricing-items__item .accordion-header__left__badge {
    color: #1d8f2c;
    margin-bottom: 22px;
}
.srex-pricing-items__item h2 {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: end;
    align-items: flex-end;
    line-height: 48px;
    gap: 10px;
}
.srex-pricing-items__item h2 p {
    text-transform: lowercase;
}
.srex-pricing-items__item .srex-icon-list i {
    background-color: #1d8f2c;
    height: 20px;
    width: 20px;
    border-radius: 100%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: #fff;
    font-size: 12px;
}
.srex-pricing-items__item .srex-btn {
    margin-top: 35px;
    border: 1.5px solid #e3e3e3;
    padding: 15px 30px;
    display: block;
    width: 100%;
}
.srex-pricing-items__item .srex-btn:hover {
    background-color: #1d8f2c;
    color: #fff;
    border-color: #1d8f2c;
}
.srex-pricing-items__item .srex-btn i {
    margin-left: 20px;
}

/*START SECTION TOP DESIGN*/
.section-top {
    height: 300px;
    padding-top: 60px;
    position: relative;
    background: url(../images/new-breadcum-bg.png);
    background-size: cover;
    background-position: bottom;
    padding-bottom: 60px;
    z-index: 1;
}
.section-top::before {
    content: "";
    height: 100%;
    opacity: 0.4;
    position: absolute;
    width: 100%;
    top: 0;
    background: #f8f7f0;
    z-index: 0;
}

.section-top-title {
    position: relative;
}
@media only screen and (max-width: 480px) {
    .section-top-title {
        width: 100%;
    }
}
.section-top-title h1 {
    margin-bottom: 10px;
    text-transform: capitalize;
    font-weight: 700;
    font-size: 36px;
}
.section-top-title ul {
}
.section-top-title ul li {
    color: #000 !important;
    display: inline-block;
    font-weight: 600;
    font-size: 16px;
}
.section-top-title ul li a {
    color: #000 !important;
    font-weight: 600;
    font-size: 16px;
}
.section-top-title ul li a:hover {
    color: #1d8f2c !important;
}
/*END SECTION TOP DESIGN*/

/*START CONTACT FORM DESIGN*/
.srex-contact {
    padding: 100px 0;
}
.srex_contact_address {
    background: #fff;
    box-shadow: 0px 0px 60px 0px rgba(0, 0, 0, 0.05);
    padding: 50px !important;
    border-radius: 10px;
}
.srex_contact_content {
}
.srex_contact_content h4 {
    color: #1d8f2c;
}
.srex_contact_content h1 {
    font-size: 40px;
    margin-bottom: 25px;
}
.srex_contact_content p {
    margin-bottom: 25px;
}

.srex-single-address {
    overflow: hidden;
    margin-bottom: 30px;
}
.address_icon i {
    float: left;
    border: 1px solid #ddd;
    color: #1d8f2c;
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    font-size: 24px;
    border-radius: 10px;
    margin-right: 15px;
    margin-bottom: 20px;
    transition: 0.3s;
}
.srex-single-address:hover .address_icon i {
    background: #1d8f2c;
    color: #fff;
}
.srex-single-address h4 {
    font-weight: 700;
    overflow: hidden;
    font-size: 24px;
    margin-bottom: 10px;
}
.srex-single-address p {
    overflow: hidden;
}

/*END CONTACT FORM DESIGN*/

/*
* ----------------------------------------------------------------------------------------
* .START BLOG DESIGN
* ----------------------------------------------------------------------------------------
*/
.blog-page {
    padding: 100px 0;
}
/*BLOG PAGES DESIGN*/
.post-slide-blog {
    background: #fff none repeat scroll 0 0;
    border-radius: 10px;
    box-shadow: 0 10px 40px -10px rgba(0, 64, 128, 0.08);
    margin-bottom: 30px;
    overflow: hidden;
    padding: 40px;
}
.post-single {
    background: none;
    padding: 0;
    box-shadow: none;
}
.blog-img img {
    position: relative;
}
@media only screen and (max-width: 768px) {
    .blog-img img {
        width: 100%;
    }
}
.blog-img a {
    position: absolute;
    left: 50%;
    margin-top: 40px;
    background: #f3f4f3;
    padding: 7px 20px;
    border-radius: 30px;
    color: #000;
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    border: 1px solid #999393;
}

.post-slide-blog h2 {
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 20px;
}
.post-slide-blog h2 a {
    font-size: 40px;
    margin-bottom: 20px;
    display: block;
    line-height: 50px;
    transition: 0.3s;
}
.post-slide-blog h2 a:hover {
    color: #1d8f2c;
}
.post-slide-blog span {
    text-transform: capitalize;
    padding-right: 10px;
    margin-bottom: 15px;
    display: inline-block;
    margin-top: 20px;
}
.post-slide-blog span i {
    color: #1d8f2c;
}
.post-slide-blog > a {
    margin-bottom: 0px;
}
.post-slide-blog p {
    margin-bottom: 30px;
}

/*START PAGINATION*/
ul.blog_pagination li a {
    border: 1px solid #f8f7f0;
    border-radius: 3px;
    /* color: #1d293e; */
    display: block;
    font-size: 18px;
    font-weight: 600;
    background: #f8f7f0;
    height: 50px;
    line-height: 50px;
    margin: 5px;
    text-align: center;
    width: 50px;
}
ul.blog_pagination li span {
    border: 1px solid #f8f7f0;
    border-radius: 3px;
    /* color: #1d293e; */
    display: block;
    font-size: 18px;
    font-weight: 600;
    background: #f8f7f0;
    height: 50px;
    line-height: 50px;
    margin: 5px;
    text-align: center;
    width: 50px;
}
ul.blog_pagination li a:hover {
    color: #fff;
    background: #1d8f2c;
    border: 1px solid #1d8f2c;
}
/*END PAGINATION*/
/*START BLOG SIDEBAR DESIGN*/
.contact_form_blog {
    padding-top: 0px !important;
}
.blog_sidebar_title {
    /* border-bottom: 1px solid #eee; */
    /* color: #1d293e; */
    font-size: 20px;
    font-weight: 600;
    letter-spacing: x;
    margin-bottom: 15px;
    margin-top: 0;
    padding-bottom: 10px;
    text-transform: capitalize;
}
.blog_search,
.latest_blog,
.advertisement_post,
.video_post,
.categories,
.tag,
.banner {
    margin-bottom: 30px;
    background: #fff;
    padding: 30px 30px;
    border-radius: 10px;
    border: 1px solid #ddd;
    /* box-shadow: 0 10px 40px -10px rgba(0,64,128,.2); */
}
.tag {
    overflow: hidden;
}
@media only screen and (max-width: 768px) {
    .blog_search {
        margin-top: 60px;
    }
}
.blog_search {
}
.blog_search input {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 30px;
    color: #000;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    height: 52px;
    padding: 15px;
}
.blog_search input:focus {
    border: 1px solid #1d8f2c;
}
.single_latest_blog {
    overflow: hidden;
    padding-bottom: 15px;
    margin-bottom: 20px;
}
.single_latest_blog img {
    float: left;
    margin-right: 10px;
}
.single_latest_blog span i {
    color: #1d8f2c;
    margin-right: 10px;
}
.single_latest_blog a {
    font-size: 16px;
    margin-top: 5px;
    display: block;
}

.single_upcoming_event {
    margin-bottom: 20px;
}
.single_upcoming_event h4 {
    color: #1d293e;
    font-size: 17px;
    font-weight: 600;
    line-height: 28px;
    margin: 10px 0 0;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}
.single_upcoming_event:hover h4 {
    color: #1d8f2c;
}
.single_upcoming_event span i {
    margin-right: 5px;
    color: #1d8f2c;
}
.single_upcoming_event span {
    color: #777;
}
.categories ul {
    margin: 0;
    padding: 0;
    list-style: none;
    max-height: 225px;
    overflow-y: auto;
    overflow-x: hidden;
}
.categories ul li {
}
.categories ul li a {
    color: #1d293e;
    display: block;
    font-size: 14px;
    padding: 5px 0;
    font-family: poppins;
    font-weight: 400;
}
.categories ul li a span {
    float: right;
}
.categories ul li a:hover {
    color: #1d8f2c;
}
.categories ul li a i {
    margin-right: 10px;
    transform: rotate(300deg);
    color: #1d8f2c;
    transition: 0.3s;
}
.categories:hover ul li a i {
    color: #1d8f2c;
    visibility: visible;
}
.single_quote {
    box-shadow: 0px 10px 40px rgba(0, 0, 0, 0.1);
    padding: 0 30px 30px 30px;
    margin: 30px;
    /* border: 1px solid #ddd; */
}
.single_quote i {
    color: #1d8f2c;
    transform: rotate(180deg);
    font-size: 30px;
    margin-top: -10px;
}
.single_quote p {
    margin-bottom: 0;
}
.single_quote span {
    font-weight: 700;
}
.sb_img {
    overflow: hidden;
}
.sb_img img {
    float: left;
    width: 50%;
    margin-right: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
}
.sb_img h4 {
    margin-bottom: 20px;
}
.sb_img p {
}
/*END BLOG SIDEBAR DESIGN*/
/*START BLOG SINGLE PAGE DESIGN*/
.bc_left {
    padding-left: 30px;
    font-style: italic;
    font-weight: 600;
}
.bc_bottom {
    margin-bottom: 30px;
}
.single_blog_post {
    margin-bottom: 60px;
}
.single_blog_post img {
    width: 750px;
    height: 455px;
}
.blog_post_text h4 {
    margin: 30px 0;
}
.author_part {
    margin-bottom: 30px;
    overflow: hidden;
    margin-top: 60px;
}
.single_author {
    background: #fff none repeat scroll 0 0;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 40px -10px rgba(0, 64, 128, 0.08);
    overflow: hidden;
}
.author_part img {
    border: 4px solid #1d8f2c;
    border-radius: 100px;
    float: left;
    height: 120px;
    margin-right: 20px;
    width: 120px;
}
.author_part h4 {
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
}
.author_part p {
    margin-bottom: 0;
}
.blog_head_title {
    border-bottom: 1px solid #eee;
    margin: 0 0 30px;
    padding-bottom: 10px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 18px;
}
.coment_bg_none {
    background: #fff !important;
}

.comments_part {
    margin-bottom: 60px;
    padding: 30px;
    border-radius: 10px;
}

.single_comment {
    margin-bottom: 7px;
    background: #f8f7f0;
    border-radius: 10px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.single_comment_mbnone {
    margin-bottom: 0px;
}
.single_comment img {
    /* border: 4px solid #1D8F2C;  */
    /* border-radius: 100px; */
    /* margin-bottom: 50px; */
    float: left;
    margin-right: 20px;
    width: 60px;
}
.single_comment h4 {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: capitalize;
}
.single_comment p {
    margin-bottom: 0;
}
.single_comment a {
    font-weight: 700;
    font-size: 16px;
    margin-top: 10px;
    display: block;
}
.comment-box {
}
.comment_form input,
.comment_form textarea {
    border: 1px solid #ddd;
}

.comment_form textarea {
    border: 1px solid #ddd;
}
@media only screen and (max-width: 768px) {
    .comment_form textarea {
        width: 100%;
    }
}
/*END BLOG SINGLE PAGE DESIGN*/
/*
* ----------------------------------------------------------------------------------------
* .END BLOG DESIGN
* ----------------------------------------------------------------------------------------
*/
.map_area {
    padding-top: 0px;
    padding-bottom: 100px;
}
.map iframe {
    width: 100%;
    height: 400px;
    border: none;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 0px 60px 0px rgba(0, 0, 0, 0.05);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family:
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        sans-serif;
}

body {
    background: #f0eded;
}

.page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-card {
    width: 100%;
    height: 470px;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    /* border: 1px solid #333; */
    /* box-shadow: 10px 10px 0 rgba(0,0,0,0.25); */
    transition: box-shadow 0.3s ease;
}
.home-blog-card {
    width: 90%;
    height: 280px;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #d6d6d6;
    /* box-shadow: 10px 10px 0 rgba(0,0,0,0.25); */
    transition: box-shadow 0.3s ease;
}

.blog-card:hover {
    /* box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25); */
    border: 1px solid #9c9c9c;
    box-shadow: 0 4px 20px rgb(0 0 0 / 50%);
}

.card-img {
    height: 210px;
    width: 100%;
}
.card-img a img {
    width: 100%;
    height: 100%;
    display: block;
}

.card-content {
    padding: 20px;
}

.home-card-content {
    padding: 7px;
}

.date {
    font-size: 12px;
    color: #555;
    margin: 10px 0;
}

.card-content h3 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 12px;
}

.title-box {
    height: 58px;
    margin-left: 5px;
}

.title-box .title {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.category-box {
    height: 64px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.category {
    display: inline-block;
    background: #62ff1952;
    color: #378932;
    font-size: 12px;
    font-weight: 600;
    padding: 0px 10px;
    border-radius: 4px;
    margin-bottom: 6px;
    margin-right: 6px;
}

.desc {
    position: relative;
    font-size: 14px;
    color: #555;
    line-height: 1.5;
    margin-bottom: 18px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.read-more {
    position: absolute;
    font-size: 0.8rem;
    bottom: -4px;
    right: 0;
    background: #fff;
    /* padding-left: 6px; */

    color: #3fa70f;
    font-weight: 400;
    text-decoration: none;
    cursor: pointer;
}

.read-more span {
    color: #555;
    padding-right: 6px;
}

.author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.author img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
}

.author span {
    font-size: 14px;
    font-weight: 600;
}

.blog-list-img a {
    height: 80px;
    width: 84px;
    float: left;
    margin-right: 15px;
}
.blog-list-img a img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.post-details-box {
    padding: 15px;
    border-radius: 10px;
}

.post-details-box .single-blog-img {
    width: 825px;
    height: 450px;
    overflow: hidden;
}

.post-details-box .single-blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.post-details-box .single-blog-img a {
    position: absolute;
    bottom: -180px;
    left: 54%;
    margin-top: 40px;
    background: #f3f4f3;
    padding: 7px 20px;
    border-radius: 30px;
    color: #000;
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    border: 1px solid #999393;
}

.pagination .page-link {
    color: #198754; /* Bootstrap green */
}

.pagination .page-link:hover {
    color: #145c32;
}

.pagination .page-item.active .page-link {
    background-color: #198754;
    border-color: #198754;
    color: #fff;
}

.leading-5 {
    margin-top: 18px;
}
.w-5.h-5 {
    width: 20px;
}

.main-nav {
    background: #ffffff;
}

.logo-box {
    width: 175px;
}

@media (min-width: 990px) and (max-width: 1100px) {
    .logo-box {
        width: 120px;
    }
}
@media (min-width: 1100px) and (max-width: 1150px) {
    .logo-box {
        width: 120px;
    }
}
@media (min-width: 1150px) and (max-width: 1200px) {
    .logo-box {
        width: 130px;
    }
}
@media (min-width: 1200px) and (max-width: 1250px) {
    .logo-box {
        width: 130px;
    }
}
@media (min-width: 1250px) and (max-width: 1300px) {
    .logo-box {
        width: 130px;
    }
}
@media (min-width: 1300px) and (max-width: 1350px) {
    .logo-box {
        width: 135px;
    }
}
@media (min-width: 1350px) and (max-width: 1400px) {
    .logo-box {
        width: 135px;
    }
}
@media (min-width: 1400px) and (max-width: 1450px) {
    .logo-box {
        width: 140px;
    }
}
@media (min-width: 1450px) and (max-width: 1500px) {
    .logo-box {
        width: 140px;
    }
}
@media (min-width: 1500px) and (max-width: 1550px) {
    .logo-box {
        width: 150px;
    }
}
@media (min-width: 1550px) and (max-width: 1600px) {
    .logo-box {
        width: 155px;
    }
}

.nav-list {
    display: flex;
    gap: 20px;
    padding: 0 40px;
}
/* Between 990px and 1300px */
@media (min-width: 990px) and (max-width: 1100px) {
    .nav-list {
        gap: 12px;
    }
}
@media (min-width: 1100px) and (max-width: 1200px) {
    .nav-list {
        gap: 13px;
    }
}
@media (min-width: 1200px) and (max-width: 1250px) {
    .nav-list {
        gap: 16px;
    }
}
@media (min-width: 1250px) and (max-width: 1300px) {
    .nav-list {
        gap: 15px;
    }
}
@media (min-width: 1300px) and (max-width: 1350px) {
    .nav-list {
        gap: 17px;
    }
}
@media (min-width: 1350px) and (max-width: 1400px) {
    .nav-list {
        gap: 18px;
    }
}

.nav-item {
    position: relative;
}

.nav-item > a {
    padding: 20px 0;
    display: block;
    font-weight: 500;
}

/* Mega menu panel */
.mega-menu {
    position: fixed;
    top: 0;
    left: 0 !important;
    right: auto !important;
    width: 100vw;
    max-width: 100vw;
    box-sizing: border-box;
    background-color: #d4f1d2;
    padding: 40px;
    z-index: 10000;

    /* Animation setup */
    opacity: 0;
    visibility: hidden;
    transform: translateY(-30px);
    transition:
        opacity 0.3s ease,
        transform 0.35s ease;
}

.about-menu {
    right: -1958%;
}
.news-menu {
    right: -760%;
}
.reviews-menu {
    right: -459%;
}
.solution-menu {
    right: -883%;
}
.event-menu {
    right: -302%;
}
.education-menu {
    right: -201%;
}
.leads-menu {
    right: -87%;
}

@media (min-width: 990px) and (max-width: 1100px) {
    .about-menu {
        right: -1772%;
    }
    .news-menu {
        right: -754%;
    }
    .reviews-menu {
        right: -466%;
    }
    .solution-menu {
        right: -835%;
    }
    .event-menu {
        right: -304%;
    }
    .education-menu {
        right: -203%;
    }
    .leads-menu {
        right: -95%;
    }
}

@media (min-width: 1100px) and (max-width: 1150px) {
    .about-menu {
        right: -1790%;
    }
    .news-menu {
        right: -747%;
    }
    .reviews-menu {
        right: -458%;
    }
    .solution-menu {
        right: -835%;
    }
    .event-menu {
        right: -304%;
    }
    .education-menu {
        right: -198%;
    }
    .leads-menu {
        right: -95%;
    }
}
@media (min-width: 1150px) and (max-width: 1200px) {
    .about-menu {
        right: -1821%;
    }
    .news-menu {
        right: -748%;
    }
    .reviews-menu {
        right: -459%;
    }
    .solution-menu {
        right: -842%;
    }
    .event-menu {
        right: -301%;
    }
    .education-menu {
        right: -200%;
    }
    .leads-menu {
        right: -95%;
    }
}
@media (min-width: 1200px) and (max-width: 1250px) {
    .about-menu {
        right: -1848%;
    }
    .news-menu {
        right: -762%;
    }
    .reviews-menu {
        right: -467%;
    }
    .solution-menu {
        right: -855%;
    }
    .event-menu {
        right: -307%;
    }
    .education-menu {
        right: -203%;
    }
    .leads-menu {
        right: -95%;
    }
}
@media (min-width: 1250px) and (max-width: 1300px) {
    .about-menu {
        right: -1848%;
    }
    .news-menu {
        right: -750%;
    }
    .reviews-menu {
        right: -458%;
    }
    .solution-menu {
        right: -851%;
    }
    .event-menu {
        right: -302%;
    }
    .education-menu {
        right: -198%;
    }
    .leads-menu {
        right: -93%;
    }
}
@media (min-width: 1300px) and (max-width: 1350px) {
    .about-menu {
        right: -1887%;
    }
    .news-menu {
        right: -760%;
    }
    .reviews-menu {
        right: -463%;
    }
    .solution-menu {
        right: -861%;
    }
    .event-menu {
        right: -304%;
    }
    .education-menu {
        right: -200%;
    }
    .leads-menu {
        right: -95%;
    }
}
@media (min-width: 1350px) and (max-width: 1400px) {
    .about-menu {
        right: -1904%;
    }
    .news-menu {
        right: -760%;
    }
    .reviews-menu {
        right: -462%;
    }
    .solution-menu {
        right: -866%;
    }
    .event-menu {
        right: -304%;
    }
    .education-menu {
        right: -199%;
    }
    .leads-menu {
        right: -95%;
    }
}
@media (min-width: 1400px) and (max-width: 1450px) {
    .about-menu {
        right: -1931%;
    }
    .news-menu {
        right: -765%;
    }
    .reviews-menu {
        right: -463%;
    }
    .solution-menu {
        right: -875%;
    }
    .event-menu {
        right: -304%;
    }
    .education-menu {
        right: -199%;
    }
    .leads-menu {
        right: -92%;
    }
}
@media (min-width: 1450px) and (max-width: 1500px) {
    .about-menu {
        right: -1932%;
    }
    .news-menu {
        right: -762%;
    }
    .reviews-menu {
        right: -462%;
    }
    .solution-menu {
        right: -873%;
    }
    .event-menu {
        right: -304%;
    }
    .education-menu {
        right: -198%;
    }
    .leads-menu {
        right: -90%;
    }
}
@media (min-width: 1500px) and (max-width: 1550px) {
    .about-menu {
        right: -1934%;
    }
    .news-menu {
        right: -757%;
    }
    .reviews-menu {
        right: -458%;
    }
    .solution-menu {
        right: -870%;
    }
    .event-menu {
        right: -300%;
    }
    .education-menu {
        right: -196%;
    }
    .leads-menu {
        right: -89%;
    }
}
@media (min-width: 1550px) and (max-width: 1600px) {
    .about-menu {
        right: -1934%;
    }
    .news-menu {
        right: -754%;
    }
    .reviews-menu {
        right: -456%;
    }
    .solution-menu {
        right: -869%;
    }
    .event-menu {
        right: -300%;
    }
    .education-menu {
        right: -196%;
    }
    .leads-menu {
        right: -89%;
    }
}

@media (min-width: 1600px) and (max-width: 1650px) {
    .about-menu {
        right: -1934%;
    }
    .news-menu {
        right: -750%;
    }
    .reviews-menu {
        right: -453%;
    }
    .solution-menu {
        right: -869%;
    }
    .event-menu {
        right: -297%;
    }
    .education-menu {
        right: -193%;
    }
    .leads-menu {
        right: -89%;
    }
}

.has-mega.mega-open > .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Grid */
.mega-grid {
    max-width: 1550px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.side-border {
    border-right: solid 1px #32912a;
}
.mega-col h4 {
    font-size: 14px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.mega-col a {
    display: block;
    padding: 6px 10px;
    color: #333;
    text-decoration: none;
}

.mega-col a:hover {
    color: #2f7d32;
    background: #eef5ef;
    border-radius: 10px;
    /* box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08); */
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

/* CTA column */
.mega-col.highlight {
    background: #eef5ef;
    padding: 20px;

    /* border-radius: 8px; */
}

.highlight-box {
    height: fit-content;
}

.btn {
    display: inline-block;
    /* margin-top: 10px; */
    padding: 10px 16px;
    background: #41ad45;
    color: #fff;
    border-radius: 6px;
}

/* CAROUSAL */
.energy-carousel .item img {
    border-radius: 10px;
    padding: 10px;
    width: 100%;
    height: 217px;
    object-fit: cover;
    border-radius: 12px;
}

.owl-nav button {
    position: absolute;
    top: 45%;
    background: rgba(0, 0, 0, 0.2) !important;
    color: #fff !important;
    font-size: 28px !important;
    padding: 8px 14px !important;
    border-radius: 50%;
}

.owl-nav .owl-prev {
    left: -10px;
}
.owl-nav .owl-next {
    right: -10px;
}

/* hero section */
.energy-bg {
    min-height: 600px;
}

.energy-bg {
    position: relative;
    padding: 80px 0;
    background-image: url("../images/New-edited.png");
    background-size: cover;
    background-position: bottom;
    background-repeat: no-repeat;
}

.energy-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.15); /* adjust darkness */
    z-index: 0;
}

.energy-bg > * {
    position: relative;
    z-index: 1;
}

.energy-card {
    position: relative;
    /* border-radius: 14px;
  overflow: hidden;
  height: 220px; */
}

.energy-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    background-color: #fff;
}

/* Overlay */
.energy-card__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    padding: 10px;
}

/* Title */
.energy-card__overlay span {
    margin: 0;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    /* letter-spacing: 0.3px; */

    padding: 0 5px;
    background: rgba(0, 0, 0, 0.6); /* black overlay */
    border-radius: 4px;
}

/* SLIDER */
.carousel {
    position: relative;
    width: 100%;
    height: 800px;
    margin: auto;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slide {
    min-width: 100%;
}

.slide img {
    width: 100%;
    height: 800px;
    object-fit: cover;
    object-position: center;
}

/* Buttons */
.prev,
.next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    font-size: 30px;
    padding: 10px 15px;
    cursor: pointer;
}

.prev {
    left: 10px;
}
.next {
    right: 10px;
}

/* BACK GROUND VIDEO */
.video-hero {
    position: relative;
    width: 100%;
    height: 800px;
    overflow: hidden;
}

.video-hero video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
}

/* Dark overlay for text readability */
.video-hero .overlay {
    /* display: none; */
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
}

/* Text content */
.video-hero .content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    padding: 20px;
}

.video-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.video-hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin-bottom: 24px;
}

.video-hero .btn {
    padding: 12px 28px;
    background: #00c389;
    color: #000;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: 0.3s ease;
}

.video-hero .btn:hover {
    background: #00a674;
}

/* ------- */

.hero-section {
    /* background: rgb(46, 46, 46); */
    width: 100%;
    min-height: 700px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

@media (max-width: 991px) {
    .hero-section {
        min-height: 350px; /* better for phones */
        background-position: center top;
    }
}

.hero-section .container-fluid {
    padding: 50px;
}

@media (max-width: 991px) {
    .hero-section .container-fluid {
        padding: 15px 0;
    }
}

.hero-section .container-fluid .primary-hero {
    position: relative;
    max-height: 600px;
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid #f7f7f7;
    transition: box-shadow 0.3s ease;
}

@media (max-width: 991px) {
    .hero-section .container-fluid .primary-hero {
        min-height: 292px;
        margin-bottom: 12px;
    }
}

.hero-section .container-fluid .primary-hero:hover {
    box-shadow: 0 4px 20px rgb(0 0 0 / 60%);
    border: 1px solid #9c9c9c;
}

.hero-section .container-fluid .primary-hero a img {
    object-fit: cover;
    height: 100%;
    width: 100%;
}

/* Overlay container */
.primary-hero .hero-overlay {
    position: absolute;
    padding: 20px;
    bottom: 0;
    left: 0;
    right: 0;
    color: #fff;
    z-index: 2;

    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.75) 0%,
        rgba(0, 0, 0, 0.45) 35%,
        rgba(0, 0, 0, 0) 100%
    );
}

@media (max-width: 991px) {
    .primary-hero .hero-overlay {
        padding: 5px;
    }
}

.primary-hero .hero-overlay .title {
    font-size: 44px;
    color: #e1e1e1;
    font-weight: 700;
    line-height: 1.2;
    text-shadow:
        0 4px 12px rgba(0, 0, 0, 0.55),
        0 1px 2px rgba(0, 0, 0, 0.8);
}

@media (max-width: 991px) {
    .primary-hero .hero-overlay .title {
        font-size: 20px;
    }
}

/* Category badge */
.primary-hero .hero-overlay .category {
    display: inline-block;
    color: #095a10;
    font-size: 12px;
    font-weight: 750;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 4px 10px;
    background: rgb(122 213 122 / 78%);
    border-radius: 10px;
}

@media (max-width: 991px) {
    .primary-hero .hero-overlay .category {
        font-size: 10px;
        font-weight: 650;
        padding: 0px 5px;
        border-radius: 4px;
        margin-bottom: 0;
    }
}

.hero-section .container-fluid .secondary-hero {
    position: relative;
    height: 292px;
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid #f7f7f7;
    transition: box-shadow 0.3s ease;
}

.hero-section .container-fluid .secondary-hero:hover {
    box-shadow: 0 4px 20px rgb(0 0 0 / 60%);
    border: 1px solid #9c9c9c;
}

.hero-section .container-fluid .secondary-hero a img {
    object-fit: cover;
    height: 100%;
    width: 100%;
}

.secondary-hero .hero-overlay {
    position: absolute;
    padding: 10px;
    bottom: 0;
    left: 0;
    right: 0;
    color: #fff;
    z-index: 2;

    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.75) 0%,
        rgba(0, 0, 0, 0.45) 35%,
        rgba(0, 0, 0, 0) 100%
    );
}

.secondary-hero .hero-overlay .title {
    font-size: 25px;
    color: #e1e1e1;
    font-weight: 700;
    line-height: 1.2;
    text-shadow:
        0 4px 12px rgba(0, 0, 0, 0.55),
        /* main soft shadow */ 0 1px 2px rgba(0, 0, 0, 0.8); /* subtle sharp edge */
}
/* Category badge */
.secondary-hero .hero-overlay .category {
    display: inline-block;
    color: #095a10;
    font-size: 10px;
    font-weight: 750;
    letter-spacing: 1px;
    text-transform: uppercase;
    /* padding: 4px 10px; */
    background: rgb(122 213 122 / 78%);
    border-radius: 10px;
}

.hero-section .container-fluid .sponser-hero {
    position: relative;
    /* margin-top: 15px; */
    height: 292px;
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    border: 5px solid #d4af37;
    outline: 1px solid #fff; /* classic gold */
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.hero-section .container-fluid .sponser-hero:hover {
    box-shadow: 0 4px 20px rgb(0 0 0 / 60%);
    border: 5px solid #d4af37;
    outline: 0px;
    /* border: 1px solid #9c9c9c; */
}

.hero-section .container-fluid .sponser-hero a img {
    object-fit: cover;
    height: 100%;
    width: 100%;
}

.sponser-hero .hero-overlay {
    position: absolute;
    padding: 10px;
    bottom: 0;
    left: 0;
    right: 0;
    color: #fff;
    z-index: 2;

    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.75) 0%,
        rgba(0, 0, 0, 0.45) 35%,
        rgba(0, 0, 0, 0) 100%
    );
}

.sponser-hero .sponser-overlay {
    /* background-color: ; */
    position: absolute;
    top: -3px;
    left: 0;
    z-index: 2;
}

.diagonal-box {
    padding-left: 30px;
    width: 200px;
    height: 40px;
    background: #d4af37; /* gold example */
    letter-spacing: 1px;
    font-weight: 700;
    color: #3b2f0b;

    clip-path: polygon(0% 0%, 100% 0%, 69% 75.75%, 0% 75.75%);
}

.sponser-hero .hero-overlay .category {
    display: inline-block;
    color: #095a10;
    font-size: 10px;
    font-weight: 750;
    letter-spacing: 1px;
    text-transform: uppercase;
    /* padding: 4px 10px; */
    background: rgb(122 213 122 / 78%);
    border-radius: 10px;
}

.sponser-hero .hero-overlay .title {
    font-size: 25px;
    color: #e1e1e1;
    font-weight: 700;
    line-height: 1.2;
    text-shadow:
        0 4px 12px rgba(0, 0, 0, 0.55),
        /* main soft shadow */ 0 1px 2px rgba(0, 0, 0, 0.8); /* subtle sharp edge */
}

@media (min-width: 200px) and (max-width: 767px) {
    .hero-section .container-fluid .sponser-hero {
        margin-top: 12px;
    }
}
@media (min-width: 1650px) and (max-width: 2000px) {
    .hero-section .container-fluid .sponser-hero {
        margin-top: 15px;
    }
}
@media (min-width: 767px) and (max-width: 990px) {
    .hero-section {
        min-height: auto;
    }

    .hero-section .container-fluid {
        padding: 18px 10px;
    }

    .hero-section .row {
        --bs-gutter-x: 12px;
        --bs-gutter-y: 12px;
    }

    .hero-section .container-fluid .primary-hero {
        height: 500px;
        min-height: 500px;
        max-height: none;
        margin-bottom: 0;
    }

    .hero-section .container-fluid .secondary-hero,
    .hero-section .container-fluid .sponser-hero {
        height: 244px;
    }

    .primary-hero .hero-overlay,
    .secondary-hero .hero-overlay,
    .sponser-hero .hero-overlay {
        padding: 10px;
    }

    .primary-hero .hero-overlay .title {
        font-size: 26px;
        line-height: 1.2;
    }

    .secondary-hero .hero-overlay .title,
    .sponser-hero .hero-overlay .title {
        font-size: 17px;
        line-height: 1.25;
    }

    .primary-hero .hero-overlay .category,
    .secondary-hero .hero-overlay .category,
    .sponser-hero .hero-overlay .category {
        font-size: 9px;
        padding: 2px 6px;
        border-radius: 6px;
    }

    .diagonal-box {
        width: 140px;
        height: 30px;
        padding-left: 16px;
        font-size: 10px;
        line-height: 30px;
    }
}

@media (min-width: 990px) and (max-width: 1650px) {
    .hero-section {
        min-height: auto;
    }

    .hero-section .container-fluid {
        padding: 30px 20px;
    }

    .hero-section .row {
        --bs-gutter-x: 16px;
        --bs-gutter-y: 16px;
    }

    .hero-section .container-fluid .primary-hero {
        height: clamp(460px, 42vw, 600px);
        max-height: none;
    }

    .hero-section .container-fluid .secondary-hero,
    .hero-section .container-fluid .sponser-hero {
        height: calc((clamp(460px, 42vw, 600px) - 16px) / 2);
    }

    .hero-section .container-fluid .sponser-hero {
        /* margin-top: 16px; */
    }

    .primary-hero .hero-overlay,
    .secondary-hero .hero-overlay,
    .sponser-hero .hero-overlay {
        padding: 14px;
    }

    .primary-hero .hero-overlay .title {
        font-size: clamp(30px, 2.4vw, 44px);
        line-height: 1.2;
    }

    .secondary-hero .hero-overlay .title,
    .sponser-hero .hero-overlay .title {
        font-size: clamp(17px, 1.35vw, 24px);
        line-height: 1.25;
    }

    .primary-hero .hero-overlay .category,
    .secondary-hero .hero-overlay .category,
    .sponser-hero .hero-overlay .category {
        font-size: 10px;
        padding: 3px 8px;
        border-radius: 8px;
    }

    .diagonal-box {
        width: 165px;
        height: 45px;
        padding-left: 13px;
        font-size: 12px;
        line-height: 34px;
    }
}

.heading-card-india {
    -webkit-text-stroke: 1px #8a3f12;
    color: #fff;
}
.heading-card-uae {
    -webkit-text-stroke: 1px #9a630a;
    color: #fff;
}
.heading-card-africa {
    -webkit-text-stroke: 1px #124e14;
    color: #fff;
}
.heading-card-asia {
    -webkit-text-stroke: 1px #004c43;
    color: #fff;
}

/* FILPABLE CARD */
.flip-section {
    width: 100%;
    min-height: 500px;
    background-color: #fff;
    margin-bottom: 30px;
}
.flip-card {
    width: 380px;
    height: 300px;
    perspective: 1000px;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.8s ease;
    transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

/* Front */
.flip-card-front {
    /* background: linear-gradient(159deg, #4d8916, #1e7209); */
    box-shadow: 0 4px 20px rgb(0 0 0 / 25%);
}
.india-card {
    background: linear-gradient(337deg, #d04d00, #ff7900);
}

.uae-card {
    background: linear-gradient(337deg, #db8700, #fab329);
}

.africa-card {
    background: linear-gradient(337deg, #2b712e, #36863a);
}

.asia-card {
    background: linear-gradient(337deg, #016357, #13877b);
}

/* Back */
.flip-card-back {
    background-color: #2f2e28;
    transform: rotateY(180deg);
    width: 100%;
    box-shadow: 0 4px 20px rgb(0 0 0 / 60%);
}

.flip-card-front .flip-card-icon {
    width: 120px;
    height: 120px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    /* border: 1px ridge #000; */
    overflow: hidden;
    box-shadow: 0 4px 20px rgb(0 0 0 / 40%);
}

.info-list {
    width: 95%;
    list-style: none;
    padding: 0;
    margin: 0;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

.info-list li {
    padding: 14px 18px;
    font-size: 15px;
    color: #333;
    border-bottom: 1px solid #eee;
}

/* last normal item keeps border */
.info-list li.item:last-of-type {
    border-bottom: 1px solid #eee;
}

/* view more row */
.info-list li.view-more {
    border-bottom: none;
    background: #f6f7f4;
    text-align: center;
    font-weight: 600;
}

.info-list li.view-more a {
    color: #2e7d32;
    text-decoration: none;
    display: block;
    transition:
        color 0.25s ease,
        transform 0.25s ease;
}

.info-list li.view-more a:hover {
    color: #1b5e20;
    transform: translateY(-1px);
}

/* subtle hover on items */
.info-list li.item:hover {
    background-color: #fafafa;
}

.mission-cards {
    height: fit-content;
    padding-bottom: 30px;
    padding-top: 80px;
    background-color: #f8f7f0;
    /* max-height: 750px; */
    /* margin-bottom: 150px; */
    /* padding-bottom: 120px; */
    position: relative;
}

.srex-single-pro-img img {
    width: 100%;
}

.team-section {
    padding: 80px 10%;
    background-color: #ffffff;
    text-align: center;
}

.team-title {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 60px;
    color: #111;
}

.team-container {
    display: flex;
    justify-content: center;
}

@media (max-width: 767px) {
    .team-container {
        display: flex;
        justify-content: center;
    }
}

/* Card Container */
.team-card {
    position: relative;
    width: 300px;
    background: #ffffff;
    padding: 40px 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    overflow: hidden; /* Keeps the green shape inside the card */
    border: 1px solid #f0f0f0;
}

/* Hover Effect: Lift and Shadow */
.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: #007a3d; /* Green border matching your vision */
}

/* Image Circular Styling */
.img-area img {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #ff8a5c; /* Orange ring from your template */
    padding: 5px;
    transition: transform 0.4s ease;
}

.team-card:hover .img-area img {
    transform: scale(1.05);
}

/* Typography */
.info-area h4 {
    margin: 20px 0 5px;
    font-size: 22px;
    color: #333;
}

.designation {
    display: block;
    font-weight: bold;
    color: #555;
    font-size: 14px;
    margin-bottom: 15px;
}

.info-area p {
    font-size: 14px;
    color: #777;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Social Icons */
.social-links a {
    color: #333;
    margin: 0 8px;
    font-size: 18px;
    text-decoration: none;
    transition: color 0.3s;
}

.social-links a:hover {
    color: #007a3d;
}

/* The Green Geometric Shape (Reference to your first image) */
.shape-overlay {
    position: absolute;
    top: -50px;
    left: -50px;
    width: 100px;
    height: 100px;
    background: #007a3d;
    clip-path: polygon(0% 0%, 100% 0%, 50% 100%);
    opacity: 0;
    transition: all 0.5s ease;
}

.team-card:hover .shape-overlay {
    opacity: 0.1;
    top: 0;
    left: 0;
}

.split-hero {
    padding: 0 10%;
    background-color: #fcfbf7; /* Light cream background like the image */
}
/* =========================
   CARD BASE STYLES (DESKTOP)
========================= */

.eco-card {
    background: #f8f7f0;
    padding: 20px;
    box-shadow: 0 4px 20px rgb(0 0 0 / 60%);
}

.eco-image-card {
    height: 325px;
    border-radius: 15px;
    background: #fff;
}

.eco-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.eco-content-card {
    height: 290px;
    border-radius: 10px;
    padding: 15px;
    background: #f8f7f0;
}

.eco-content-card .content-title {
    color: #333;
}

.eco-content-card .content-box {
    height: 185px;
}

.eco-content-card .content-box p {
    font-size: 20px;
    color: #686868;
}

/* =========================
   BUTTON
========================= */

.read-more-btn {
    margin-top: 40px;
    display: inline-block;
    padding: 12px 30px;
    background-color: #a4ad96;
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 1px;
    transition: background 0.3s;
}

.read-more-btn:hover {
    background-color: #1d8f2c;
    box-shadow: 0 4px 20px rgb(0 0 0 / 60%);
}

/* =========================
   MOBILE OVERRIDES
========================= */

@media (max-width: 767px) {
    .split-hero {
        padding: 0 5%;
        background-color: #fcfbf7; /* Light cream background like the image */
    }

    /* Remove fixed heights */
    .eco-image-card,
    .eco-content-card,
    .eco-content-card .content-box {
        height: auto;
    }

    /* Spacing */
    .eco-card {
        padding: 15px;
        margin-bottom: 20px;
    }

    /* Typography */
    .content-title {
        font-size: 1.25rem !important;
    }

    .eco-content-card .content-box p {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    /* Center CTA */
    .eco-content-card .d-flex {
        justify-content: center !important;
    }

    .read-more-btn {
        font-size: 0.85rem;
    }
}
/* ROAD MAP PAGE */

.road-map-box {
    padding: 20px;
    background: #fff;
}
.road-map {
    border: 1px solid #333;
    width: 100%;
    height: 100%;
}
.road-map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.road-map-content {
    padding: 10px;
}

.bg-for-card {
    background: #007a3d;
}
.srex-card-border {
    border: 1px dotted #333;
}

/* FOR SIDE LIST BLOG TITLE BOX */
.blog-box {
    display: -webkit-box; /* required for Safari */
    display: box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.cat-badge {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
}

/* MENU */
/* Desktop view */
@media (min-width: 992px) {
    .ud-hamburger-menu,
    .ud-side-popup {
        display: none !important;
    }

    .nav-list {
        display: flex !important;
    }
}

/* Mobile view */
@media (max-width: 992px) {
    .nav-list {
        display: none !important;
    }

    .ud-hamburger-menu {
        display: block;
    }
}

@media (max-width: 991px) {
    .nav-item:hover .mega-menu {
        display: none;
    }
}

/* Prevent page-level horizontal scroll on mobile */
html,
body {
    max-width: 100%;
    overflow-x: hidden;
}

@media (max-width: 992px) {
    .mega-menu {
        display: none !important;
    }

    img,
    video {
        max-width: 100%;
        height: auto;
    }
}

/* for total visitor */
.visitor-card {
    background: rgba(255, 255, 255, 0.08);
    padding: 10px 22px;
    border-radius: 14px;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: 0.3s ease;
    min-width: 180px;
}

.visitor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 255, 120, 0.2);
}

.visitor-icon {
    font-size: 22px;
    margin-bottom: 5px;
}

.visitor-count {
    font-size: 26px;
    font-weight: 700;
    color: #7cff6b; /* green glow */
    margin: 0;
}

.visitor-label {
    font-size: 13px;
    color: #ccc;
    margin: 0;
    letter-spacing: 0.5px;
}

.header-menu {
    position: relative;
}

.my-mega-menu {
    position: absolute;
    /* top: 100%; */
    width: 100vw;
    background-color: #d4f1d2;
    padding: 40px;
    z-index: 10000;
}

.coming-soon-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 16px 80px;
    background:
        radial-gradient(
            circle at top,
            rgba(29, 143, 44, 0.14),
            transparent 42%
        ),
        linear-gradient(180deg, #f8f7f0 0%, #ffffff 100%);
}

.coming-soon-card {
    width: 100%;
    max-width: 760px;
    text-align: center;
    padding: 56px 32px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 20px 60px rgba(36, 35, 29, 0.12);
}

.coming-soon-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    border-radius: 999px;
    background-color: rgba(29, 143, 44, 0.1);
    color: #1d8f2c;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.coming-soon-title {
    margin-top: 24px;
    font-size: clamp(44px, 7vw, 92px);
    line-height: 0.95;
    text-transform: uppercase;
}

.coming-soon-title span {
    display: block;
    color: #1d8f2c;
}

.coming-soon-text {
    max-width: 540px;
    margin: 22px auto 0;
    font-size: 18px;
    line-height: 1.8;
    color: #5c5b57;
}

@media (max-width: 767px) {
    .coming-soon-page {
        padding: 96px 14px 60px;
    }

    .coming-soon-card {
        padding: 40px 20px;
        border-radius: 20px;
    }

    .coming-soon-text {
        font-size: 16px;
        line-height: 1.7;
    }
}
