/**
===========================
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=Bungee+Spice&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');
@import url("https://fonts.googleapis.com/css2?family=Exo:ital,wght@0,100..900;1,100..900&family=Manrope:wght@200..800&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;
}

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: 18px;
    line-height: 28px;
  }
}
@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: #878680;
  text-align: justify;
}
@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
------------------------------------*/
.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: 35px;
  height: 35px;
}
/*------------------------------------
	Container
------------------------------------*/
@media (max-width: 767px) {
  .container, .srex-about-us-one__container {
    width: 95%;
  }
}
.container-fluid {
  width: 95%;
}

/*------------------------------------
	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: 15px 30px;
}
@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;
}
.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: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 36px;
  text-transform: capitalize;
  padding: 20px 15px;
  text-decoration: none;
  color: #24231D;
  transition: all 0.3s ease-in-out;
}
.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: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.4s ease-in-out;
  overflow-y: scroll;
  opacity: 0;
  visibility: hidden;
}
@media (max-width: 767px) {
  .ud-side-popup {
    width: 300px;
    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: 60px;
}
.ud-side-popup__header-logo img {
  /* width: 140px; */
  height: auto;
}
.ud-side-popup__header .side-popup-close {
  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;
  -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;
  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 {
  margin-left: 10px;
}
.ud-side-popup__body ul li ul li a {
  padding: 5px 0;
}
.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;
}
.srex-header.sticky-top {
  padding: 15px 0;
  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: 25px;
}
.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: 718px;
  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%;
  height: 44rem;
  /* background: url(../images/Editor.jpg) no-repeat center center/cover;; */
  background: linear-gradient(rgba(0, 0, 0, 0.5) 20%, rgba(0, 0, 0, 0.5) 50%), url(../images/Editor.jpg) 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 {
  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;
  top: 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: 141px;
}
@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: 65px;
  background-color:#c3e1c7bf;
  bottom: 0;
 overflow-x:hiddden!important;
  
}
.srex-section-bottom__left__img {
  max-width: 280px; /* default width for small devices */
}

@media (min-width: 786px) {
  .srex-section-bottom__left__img {
    max-width: 340px;
  }
}

@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: #86ad50;
  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: 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 {
  width: 40px;
  height: 40px;
  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; */
  padding:17px 0 20px 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/img.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;
}
.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: #86ad50;
  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: -90px;
  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: 60px;
}
@media (max-width: 767px) {
  .srex-blog-one {
    margin-top: 60px;
  }
}
.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: 20px;
  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 a {
  font-weight: 500;
}
.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: #878680;
  font-size: 16px;
  font-weight: 500;
}
.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 .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: #878680;
  font-size: 16px;
  font-weight: 500;
}
.srex-footer__bottom__links li a:hover {
  color: #24231D;
}

.srex-footer-one {
  background-color: #F8F7F0;
  padding-top: 50px;
  background-image: url(../images/footer-one-bg.webp);
  background-repeat: no-repeat;
  background-position: center;
}
@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-bottom: 40px;
}
@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;
}

/*------------------------------------
	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 {
	padding-top: 60px;
	position: relative;
	background: url(../images/breadcum-bg.jpg);
	background-size: cover;
	background-position: center;
	padding-bottom: 60px;
}
.section-top::before {
	content: "";
	height: 100%;
	opacity: 0.5;
	position: absolute;
	width: 100%;
	top: 0;
	background: #F8F7F0;
}
.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,.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 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;
}
.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,.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;
}
.single_comment {
    margin-bottom: 30px;
    background: #F8F7F0;
    padding: 40px;
	border-radius: 10px;
	box-shadow: 0 10px 40px -10px rgba(0,64,128,.08);
	overflow: hidden;
}
.single_comment_mbnone { margin-bottom: 0px }
.single_comment img {
	/* border: 4px solid #1D8F2C; */
	/* border-radius: 100px; */
	float: left;
	margin-bottom: 50px;
	margin-right: 20px;
	width: 90px;
}
.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);
}


.pop-image {
      max-width: 100%;
      height: auto;
    }
    .trend-title {
      font-weight: bold;
      font-size: 1.25rem;
    }
    .highlight {
      font-size: 1.2rem;
      color: #1a237e;
    }
    .arrow {
      font-size: 2rem;
      vertical-align: middle;
      padding: 0 10px;
    }

    .section-title {
      background-color: #2e7d32;
      color: white;
      padding: 10px;
      text-align: center;
      font-weight: bold;
    }
    .image-box {
      /* border: 5px solid #2a5da7; */
      padding: 10px;
      height: 100%;
    }
    .caption {
      font-style: italic;
      font-size: 1rem;
      margin-top: 10px;
    }
    .note {
      font-size: 1rem;
    }
    .red-text {
      color: #d32f2f;
      font-weight: bold;
    }


   
    