@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");

.ud-animated {
    animation-duration: 1s;
    animation-fill-mode: both;
}

/**
 * Fade in animation
*/
.ud-fade-in {
    animation-name: fadeIn;
}

.web-clr {
    color: #658334 !important;
}

.text-left {
    text-align: left !important;
}

@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;
}

.common-loader {
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1500;
}

.common-loader .loader {
    color: #658334;
    font-size: 10px;
    width: 1em;
    height: 1em;
    border-radius: 50%;
    position: relative;
    text-indent: -9999em;
    animation: mulShdSpin 1.3s infinite linear;
    transform: translateZ(0);
}

@keyframes mulShdSpin {
    0%,
    100% {
        box-shadow: 0 -3em 0 0.2em, 2em -2em 0 0em, 3em 0 0 -1em, 2em 2em 0 -1em,
            0 3em 0 -1em, -2em 2em 0 -1em, -3em 0 0 -1em, -2em -2em 0 0;
    }

    12.5% {
        box-shadow: 0 -3em 0 0, 2em -2em 0 0.2em, 3em 0 0 0, 2em 2em 0 -1em,
            0 3em 0 -1em, -2em 2em 0 -1em, -3em 0 0 -1em, -2em -2em 0 -1em;
    }

    25% {
        box-shadow: 0 -3em 0 -0.5em, 2em -2em 0 0, 3em 0 0 0.2em, 2em 2em 0 0,
            0 3em 0 -1em, -2em 2em 0 -1em, -3em 0 0 -1em, -2em -2em 0 -1em;
    }

    37.5% {
        box-shadow: 0 -3em 0 -1em, 2em -2em 0 -1em, 3em 0em 0 0, 2em 2em 0 0.2em,
            0 3em 0 0em, -2em 2em 0 -1em, -3em 0em 0 -1em, -2em -2em 0 -1em;
    }

    50% {
        box-shadow: 0 -3em 0 -1em, 2em -2em 0 -1em, 3em 0 0 -1em, 2em 2em 0 0em,
            0 3em 0 0.2em, -2em 2em 0 0, -3em 0em 0 -1em, -2em -2em 0 -1em;
    }

    62.5% {
        box-shadow: 0 -3em 0 -1em, 2em -2em 0 -1em, 3em 0 0 -1em, 2em 2em 0 -1em,
            0 3em 0 0, -2em 2em 0 0.2em, -3em 0 0 0, -2em -2em 0 -1em;
    }

    75% {
        box-shadow: 0em -3em 0 -1em, 2em -2em 0 -1em, 3em 0em 0 -1em,
            2em 2em 0 -1em, 0 3em 0 -1em, -2em 2em 0 0, -3em 0em 0 0.2em,
            -2em -2em 0 0;
    }

    87.5% {
        box-shadow: 0em -3em 0 0, 2em -2em 0 -1em, 3em 0 0 -1em, 2em 2em 0 -1em,
            0 3em 0 -1em, -2em 2em 0 0, -3em 0em 0 0, -2em -2em 0 0.2em;
    }
}

body {
    /* background-color: #4d4d4d !important; */
    /* background: url(../images/theme-bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center; */
    background-color: #000;
    color: #fff;
    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: #fff;
    font-family: "Roboto", sans-serif;
    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: #fff;
    text-decoration: none;
}

h1,
h2,
h3,
.srex-accordion .accordion-header__left__badge,
h4,
h5,
h6,
p {
    margin: 0;
    color: #fff;
    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: #fff; */
    color: #fff;
    font-family: "Roboto", sans-serif;
    font-size: 60px;
    font-style: normal;
    font-weight: 700;
    line-height: 115%;
}

@media (max-width: 767px) {
    h1 {
        font-size: 45px;
        line-height: 55px;
    }
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Roboto", sans-serif;
}

h2 {
    color: #fff;
    font-family: "Roboto", sans-serif;
    font-size: 48px;
    font-style: normal;
    font-weight: 600;
    line-height: 57.6px;
    /* 120% */
    text-transform: capitalize;
}

@media (max-width: 767px) {
    h2 {
        font-size: 35px;
        line-height: 50px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    h2 {
        font-size: 40px;
        line-height: 50px;
    }
}

h3,
.srex-accordion .accordion-header__left__badge {
    color: #fff;
    font-family: "Roboto", sans-serif;
    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: "Roboto", sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 28px;
    /* 155.556% */
    text-transform: capitalize;
}

h5 {
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 36px;
    /* 225% */
    letter-spacing: 2.4px;
    text-transform: uppercase;
    color: #658334;
}

@media (max-width: 767px) {
    h5 {
        font-size: 15px;
        line-height: 20px;
    }
}

h6 {
    color: #fff;
    font-family: "Roboto", sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 800;
    line-height: 30px;
    /* 214.286% */
    text-transform: capitalize;
}

p {
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    color: #fff;
}

@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;
}

.text-color {
    color: black !important;
}

/*------------------------------------
	Input
------------------------------------*/
input:focus {
    outline: none;
}

.mb-30 {
    margin-bottom: 30px !important;
}

/*------------------------------------
	Section
------------------------------------*/
.srex-section {
    padding-bottom: 60px;
    padding-top: 60px !important;
    position: relative;
}

@media (max-width: 767px) {
    .srex-section {
        padding-bottom: 30px;
        padding-top: 30px !important;
    }
}

@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: #658334;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 24px;
}

.srex-section__head__badge img {
    width: 20px;
    height: 20px;
}

/*------------------------------------
	Container
------------------------------------*/
@media (max-width: 767px) {
    .container,
    .srex-about-us-one__container {
        width: 95%;
    }
}

.container-fluid {
    width: 95%;
}

/*------------------------------------
	Button
------------------------------------*/
.srex-btn {
    font-family: "Roboto", sans-serif;
    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: #fff;
    background-color: transparent;
    border: 1px solid #658334;
    border-radius: 999px;
}

.srex-btn--outline:hover {
    background-color: #658334;
    color: #fff;
}

.srex-btn--primary {
    color: #fff;
    background-color: #658334;
    border-radius: 999px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.5s ease;
}

.srex-btn--primary:hover {
    color: #fff;
    background-color: #658334;
}

.srex-btn--new {
    color: #fff;
    border: 2px solid #658334;
    border-radius: 999px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.5s ease;
    width: 250px;
}

.srex-btn--new span {
    position: absolute;
    width: 30%;
    height: 100%;
    background-color: #658334;
    transform: translateY(150%);
    border-radius: 50%;
    left: calc((var(--n) - 1) * 30%);
    transition: all 0.3s ease;
    transition-delay: calc((var(--n) - 1) * 0.1s);
    z-index: -1;
}

.srex-btn--new:hover {
    color: white;
}

.srex-btn--new:hover span {
    transform: translateY(0) scale(2);
}

.srex-btn--new span:nth-child(1) {
    --n: 0;
}

.srex-btn--new span:nth-child(2) {
    --n: 1;
}

.srex-btn--new span:nth-child(3) {
    --n: 2;
}

.srex-btn--new span:nth-child(4) {
    --n: 3;
}

.srex-btn--secondary {
    color: #fff;
    background-color: #ff7029;
    border-radius: 999px;
}

.srex-btn--secondary:hover {
    background-color: #658334;
    color: #fff;
}

.srex-btn--white {
    color: #fff;
    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 h4 {
    text-transform: none;
}

.srex-icon-list ul li i {
    color: #658334;
    font-size: 16px;
    font-style: normal;
    font-weight: 900;
    line-height: normal;
}

.srex-icon-list ul li p {
    margin-bottom: 0;
    color: #ddd;
}

.srex-icon-list--multi-text ul li {
    -ms-flex-align: start;
    align-items: start;
    text-align: left;
    display: flex;
}

.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: 180px 30px 20px 30px;
    margin-bottom: 25px;
    transition: all 0.3s ease-in-out;
    background-size: cover;
    background-position: center; */
    position: relative;
    overflow: hidden;
    height: 200px;
    display: block;
    border: 1px solid #658334;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
    padding: 20px;
    margin-bottom: 20px;
}

.srex-info-box__item img {
    width: 100px;
    height: 100px;
}

/* .srex-info-box__item::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0, 0, 0);
    background: linear-gradient(0deg,
            rgba(0, 0, 0, 1) 0%,
            rgba(8, 2, 43, 0) 65%);
} */

.srex-info-box__item:hover {
    box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.1);
    z-index: 100;
}

.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: #658334;
}

.srex-info-box__item:hover .srex-info-box__item__number {
    -webkit-text-stroke: 1px #658334;
}

.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: #658334 !important;
}

.srex-info-box__item--eco-solar {
    background-color: rgba(255, 112, 41, 0.05);
}

.srex-info-box__item__text {
    margin-bottom: 5px;
    transition: all 0.3s ease-in-out;
    position: relative;
    color: white;
    z-index: 1;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: center;
}

.srex-info-box__item__text:hover {
    text-decoration: underline;
}

.srex-info-box__more {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    z-index: 1;
}

.srex-info-box__more p {
    color: #fff;
    font-size: 14px;
    font-style: normal;
    font-weight: 800;
    line-height: 30px;
    text-transform: capitalize;
}

.srex-info-box__more i {
    color: #fff;
    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: #658334;
}

.srex-info-box--feature-box .srex-info-box__item__img {
    background: #658334;
}

/*------------------------------------
	Accordion
------------------------------------*/
.srex-accordion .accordion-item {
    box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.05);
    background-color: #fff;
    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: #658334;
    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: #658334;
}

.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: #fff;
    font-family: "Roboto", sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 28px;
    padding: 12px 40px;
    border: 2px solid #e3e3e3;
    transition: all 0.3s 0s linear;
}

.srex-tabs .nav-link.active {
    background-color: transparent;
    border: 2px solid #658334;
    color: #fff;
}

.srex-tabs .nav-link:hover {
    background-color: transparent;
    border: 2px solid #658334;
    color: #fff;
}

.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: #fff;
}

@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: #fff;
    transition: all 0.3s ease-in-out;
}

.srex-header .ud-main-menu .ud-main-menu__links > li > a {
    color: #fff;
}

.srex-header .ud-main-menu .sub-manue-li > li > a {
    color: black !important;
}

.srex-header .ud-main-menu .sub-dropdown > li > a {
    color: black !important;
}

.srex-header.sticky-top .ud-main-menu ul > li > a {
    color: #fff;
}

.srex-header.sticky-top .ud-main-menu ul > li > .ud-main-menu__sub-menuli {
    color: black;
}

.ud-main-menu ul > li > a i {
    vertical-align: middle;
    font-size: 12px;
    margin-left: 5px;
}

.ud-main-menu ul > li > a:hover {
    color: #658334;
}

.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: #658334;
    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: #658334;
    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 #658334;
    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
----------------------*/
.offcanvas {
    padding: 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: #658334;
}

.ud-side-popup__body {
    margin-bottom: 50px;
}

.ud-side-popup__body ul li a {
    font-size: 16px;
    font-weight: 600;
    line-height: 36px;
    color: #fff;
    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: #658334;
}

.ud-side-popup__body ul li a:hover i {
    background-color: #658334;
    color: #fff;
    transition: all 0.4s ease-in-out;
}

.ud-side-popup__body ul li a i {
    font-size: 14px;
    color: #658334;
    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: #658334;
}

.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: #658334;
    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: #658334;
    background-color: transparent;
    border-radius: 4px;
}

.ud-side-popup__bottom-socials li a:hover i {
    color: #658334;
}

.ud-side-popup__bottom-socials li a i {
    font-size: 20px;
}

.ud-side-popup--open {
    right: 0;
    opacity: 1;
    visibility: visible;
    height: 100vh;
}

/*---------------------
	Header
----------------------*/
.srex-header {
    padding: 15px 0;
    /* background-color: white; */
    background-color: rgba(33, 33, 33, 0.8);
    transition: all 0.3s ease-in-out;
    /* overflow: hidden; */
}

.srex-header .ud-main-menu__logo img {
    width: 130px;
}

.srex-header.sticky-top .ud-main-menu__logo img {
    width: 135px;
}

.srex-header.sticky-top {
    padding: 15px 0;
    background-color: rgba(33, 33, 33, 0.8);
    backdrop-filter: blur(15px);
    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: #fff;
}

.srex-header__call span {
    color: #fff;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 16px;
}

.srex-header.sticky-top .srex-header__call span {
    color: #fff;
}

.srex-header .srex-header__call img {
    filter: invert(1);
}

.srex-header__call h4 {
    color: #fff;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 28px;
}

.srex-header__call h4 a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
}

.srex-header__call a:hover p {
    color: #658334 !important;
}

.srex-header.sticky-top .srex-header__call h4 a {
    color: #fff;
}

.srex-header__call h4 a:hover {
    color: #658334;
}

/*------------------------------------
	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: #fff;
}

/*---------------------
    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: #fff;
}

/*---------------------
    Header Hamburger Menu
----------------------*/
.mobile-sidebar {
    display: -ms-inline-flexbox;
    display: inline-flex;
}

.mobile-sidebar .mobile-sidebar__btn--active span {
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.mobile-sidebar .mobile-sidebar__btn--active span::before {
    top: 0;
    -ms-transform: rotate(0);
    transform: rotate(0);
}

.mobile-sidebar .mobile-sidebar__btn--active span::after {
    top: 0;
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}

.mobile-sidebar__btn {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    width: 26px;
    height: 26px;
    position: relative;
    cursor: pointer;
}

.mobile-sidebar__btn span {
    display: block;
    position: absolute;
    width: 100%;
    height: 3px;
    background-color: #658334;
    transition: all 0.3s ease-in-out;
}

.mobile-sidebar__btn span::before,
.mobile-sidebar__btn span::after {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 3px;
    background-color: #658334;
    transition: all 0.3s ease-in-out;
}

.mobile-sidebar__btn span::before {
    top: -8px;
}

.mobile-sidebar__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: #658334;
}

.srex-hero-one__box__desc {
    margin-bottom: 25px;
}

.srex-hero-one__left__enery__efficient {
    background-color: #658334;
    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%;
    background: linear-gradient(
            rgba(0, 0, 0, 0.5) 100%,
            rgba(0, 0, 0, 0.5) 100%
        ),
        url(../images/home-two/hero/hero-bg-image.png) no-repeat center
            center/cover;
}

.srex-hero-two__box {
    padding: 100px 0px 20px 0;
}

@media (max-width: 767px) {
    .srex-hero-two__box {
        padding: 80px 0px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .srex-hero-two__box {
        padding: 90px 0px 70px 0;
    }
}

.srex-hero-two__box h1 {
    color: #fff;
    font-size: 150px;
    font-weight: 700;
    line-height: 115%;
}

@media (max-width: 767px) {
    .srex-hero-two__box h1 {
        font-size: 50px;
        margin-bottom: 15px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .srex-hero-two__box h1 {
        font-size: 80px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1280px) {
    .srex-hero-two__box h1 {
        font-size: 90px;
    }
}

.srex-hero-two__box h1 span {
    -webkit-text-stroke: 1px #fff;
    color: transparent;
}

.srex-hero-two__box h2 {
    color: #fff;
    font-size: 110px;
    font-weight: 700;
    line-height: 115%;
    text-align: center;
    position: relative;
}

@media (max-width: 767px) {
    .srex-hero-two__box h2 {
        font-size: 40px;
        margin-bottom: 15px;
        text-align: right;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .srex-hero-two__box h2 {
        font-size: 50px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1280px) {
    .srex-hero-two__box h2 {
        font-size: 60px;
    }
}

.srex-hero-two__box h2::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 20%;
    height: 3px;
    background-color: #e3e3e3;
}

@media (max-width: 767px) {
    .srex-hero-two__box h2::before {
        width: 100px;
    }
}

.srex-hero-two__box p {
    max-width: 40%;
    color: #fff;
    padding-bottom: 30px;
}

@media (max-width: 767px) {
    .srex-hero-two__box p {
        max-width: 100%;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .srex-hero-two__box p {
        max-width: 60%;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1280px) {
    .srex-hero-two__box p {
        max-width: 70%;
    }
}

.srex-hero-two__box .srex-btn--outline {
    border-color: #ff7029;
    color: #fff;
}

@media (max-width: 767px) {
    .srex-hero-two__box .srex-btn--outline {
        padding: 10px 15px;
    }
}

.srex-hero-two__box .srex-btn--outline:hover {
    border-color: #ff7029;
    background-color: #ff7029;
    color: #fff;
}

.srex-hero-two__box .srex-btn--primary {
    background-color: #ff7029;
    border-color: #ff7029;
    color: #fff;
}

@media (max-width: 767px) {
    .srex-hero-two__box .srex-btn--primary {
        padding: 10px 15px;
    }
}

.srex-hero-two__box .srex-btn--primary:hover {
    background-color: transparent;
    border: 1px solid #ff7029;
    color: #fff;
}

/*------------------------------------
	Hero Three
------------------------------------*/
.srex-hero-three {
    /* background-image: url(../images/home-three/hero-bg.png);
    background-position: bottom; */
    /* background-color: #252525; */
    height: calc(100vh - 130px);
    overflow: hidden;
}

.srex-hero-three__left {
    max-width: 500px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    height: calc(100vh - 130px);
}

.srex-hero-three__left__title {
    font-size: 60px;
    line-height: 68px;
    font-weight: 700;
    color: #fff;
    text-transform: capitalize;
}

.srex-hero-three__left__title span {
    color: #658334;
}

.srex-hero-three__left__desc {
    color: #ddd;
    margin-top: 30px;
}

.srex-hero-three__left .srex-btn {
    margin-top: 32px;
}

.srex-hero-three__right {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 50%;
}

.srex-hero-three__right img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

/*------------------------------------
	09/ Services
------------------------------------*/
.srex-service {
    /* background: #fff; */
    padding-top: 120px;
}

.srex-service .slick-initialized .slick-slide {
    margin-right: 20px;
}

.srex-service .slick-list {
    width: calc(100% - 20px);
}

@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 #658334;
}

.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: #658334;
}

@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;
    margin-bottom: 30px;
}

.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;
    height: 300px;
    object-fit: cover;
}

.srex-service-we-provide .srex-portfolio-two__item__box {
    background-color: #fff;
    bottom: 0px;
    right: 0px;
    left: 0px;
    height: 50px;
    border-radius: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.srex-portfolio-two__item__box .srex-btn--primary {
    background: none;
    color: black;
    display: flex;
    align-items: center;
    gap: 5px;
}

.srex-service-we-provide h3 {
    margin-bottom: 0px !important;
}

.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: #658334;
}

.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: #658334;
    color: #fff;
    position: absolute;
    top: 100%;
    padding: 25px 40px;
    border-radius: 20px;
    margin-top: -280px;
    margin-left: 50px;
}

@media (max-width: 767px) {
    .srex-about-us-one__right__box {
        margin-left: 0;
        right: 30px;
        margin-top: -165px;
        padding: 20px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .srex-about-us-one__right__box {
        margin-left: 0;
        right: 60px;
        margin-top: -230px;
        padding: 30px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1280px) {
    .srex-about-us-one__right__box {
        margin-left: 0;
        right: 80px;
    }
}

.srex-about-us-one__right__box img {
    height: 75px;
    width: 52px;
}

.srex-about-us-one__right__box__text h2,
.srex-about-us-one__right__box__text p {
    color: #fff;
}

/* .srex-section-bottom {
    margin-top: 50px;
} */
@media (max-width: 767px) {
    /* .srex-section-bottom {
        margin-top: 80px;
    } */
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .srex-section-bottom .row {
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
        gap: 50px;
    }
}

.srex-section-bottom__left {
    position: relative;
    margin-top: 80px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .srex-section-bottom__left {
        text-align: center;
    }
}

.srex-section-bottom__left__img {
    position: absolute;
    left: 65px;
    bottom: 0;
}

@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: left;
        margin: 50px 0px 0px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .srex-section-bottom__right {
        text-align: left;
        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: #fff;
    font-family: "Roboto", sans-serif;
    font-size: 30px;
    font-style: normal;
    font-weight: 600;
    line-height: 35.6px;
    text-transform: capitalize;
    margin-bottom: 20px;
}

/* @media (max-width: 767px) {
    .srex-section-bottom__right .srex-icon-list {
        max-width: auto;
    }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .srex-section-bottom__right .srex-icon-list {
        max-width: 90%;
        margin: 0 auto;
    }
} */

@media (max-width: 767px) {
    .srex-about-us-two {
        padding-top: 40px;
    }
}

@media (max-width: 767px) {
    .srex-about-us-two__img {
        display: none;
    }
}

.srex-about-us-two__left-content {
    margin-top: 20px;
    display: -ms-flexbox;
    display: flex;
    gap: 30px;
}

@media (max-width: 767px) {
    .srex-about-us-two__left-content {
        -ms-flex-direction: column;
        flex-direction: column;
        margin-bottom: 30px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .srex-about-us-two__left-content {
        margin-bottom: 30px;
    }
}

.srex-about-us-two__left-content__img {
    -ms-flex: 0 0 35%;
    flex: 0 0 35%;
}

@media (max-width: 767px) {
    .srex-about-us-two__left-content__img {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
    }
}

.srex-about-us-two__left-content__img img {
    width: 100%;
    height: 100%;
    border-radius: 20px;
}

.srex-about-us-two__left-content__right {
    -ms-flex: 0 0 65%;
    flex: 0 0 65%;
    padding-top: 10px;
    padding-right: 20px;
}

@media (max-width: 767px) {
    .srex-about-us-two__left-content__right {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
    }
}

.srex-about-us-two__right-content__img {
    border-radius: 20px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .srex-about-us-two__right-content__img {
        width: 100%;
        object-fit: cover;
        max-height: 500px;
    }
}

.sbut {
    padding-top: 100px;
}

.srex-about-us-two__box {
    background-color: #ff7029;
    color: #fff;
    padding: 30px 40px;
    border-radius: 20px;
    margin-top: 30px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .srex-about-us-two__box {
        max-width: 50%;
        margin: 0 auto;
        margin-top: -50px;
        position: relative;
        z-index: 99;
    }
}

.srex-about-us-two__box img {
    height: 75px;
    width: 52px;
}

.srex-about-us-two__box__text h2,
.srex-about-us-two__box__text p {
    color: #fff;
}

.srex-about-us-three__left {
    background-color: #f0e68c;
    padding: 40px;
    border-radius: 20px;
    /* max-height: 480px; */
    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%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 15%);
    height: 200px;
    object-fit: cover;
}

.srex-about-us-three__left .about-img-2 {
    height: 280px;
    width: 100%;
    object-fit: cover;
}

.srex-about-us-three__left .about-img-4 {
    height: 175px;
}

@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;
    height: 255px !important;
}

@media (max-width: 767px) {
    .srex-about-us-three__left__img-3 {
        margin-top: 0px;
    }
}

.srex-about-us-three__left__box {
    background-color: #658334;
    padding: 30px;
    border-radius: 20px;
    margin-top: 15px;
    position: relative;
}

@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;
    box-shadow: none;
}

.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 .srex-section__head__desc {
    margin-bottom: 40px;
    color: #fff;
}

.srex-about-us-three .srex-tabs .srex-icon-list i {
    background-color: #658334;
    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 .srex-icon-list p {
    font-weight: 700;
}

/*------------------------------------
	11/ Features
------------------------------------*/
.srex-features {
    /* background: url("../images/features-bg.png") no-repeat; */
    padding: 120px 0 50px 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;
}

.srex-features__left.w-100 {
    max-width: 100%;
}

@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: #658334;
    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: #658334;
    font-size: 30px;
}

.srex-contact--three .srex-contact__img__play-btn:hover {
    background-color: #658334;
}

.srex-contact--three .srex-contact__img__play-btn:hover i {
    color: #fff;
}

.srex-contact--three .srex-section__head__desc {
    margin-bottom: 60px;
    color: #fff;
    margin-top: 12px;
}

.srex-contact--three .srex-contact__left {
    padding: 0 0 0 50px;
    background-color: #252525;
}

.srex-contact--three .srex-contact__left input,
.srex-contact--three .srex-contact__left textarea {
    border: 2px solid #252525;
    color: white !important;
}

.srex-contact--three .srex-contact__left .srex-btn {
    background-color: #658334;
}

.srex-contact--three .srex-contact__left .srex-btn:hover {
    background-color: #ff7029;
}

.srex-contact__left {
    background: #252525;
    padding: 30px 55px;
    border-radius: 20px;
    height: 100%;
}

@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 #1a1616;
    box-sizing: border-box;
    border-radius: 999px;
    margin: 10px 0;
    color: #fff;
    background-color: #1a1616;
}

.srex-contact__left textarea {
    width: 100%;
    padding: 18px 30px;
    border: 1px solid #1a1616;
    box-sizing: border-box;
    border-radius: 30px;
    margin: 10px 0;
    color: #fff;
    background-color: #1a1616;
}

.srex-contact__left input:focus,
.srex-contact__left textarea:focus {
    outline: none;
}

.srex-contact__left button {
    margin-top: 10px;
    width: 100%;
    border-radius: 999px;
    text-transform: uppercase;
}

.srex-contact__right {
    background: url(../images/home-one/contact-left.png) no-repeat;
    background-position: bottom right;
    padding: 0;
}

.srex-contact__right .srex-icon-list ul li {
    align-items: start;
}

.srex-contact__right .srex-icon-list ul li i {
    margin-top: 9px;
}

/*------------------------------------
	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: #fff;
    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: #658334;
}

.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;
    height: 270px;
    object-fit: cover;
}

.srex-portfolio__item.passive-list-box img {
    height: 350px;
}

.srex-portfolio__item.passive-list-box .srex-portfolio__item__title {
    width: 250px;
}

.srex-portfolio__item:hover .srex-portfolio__item__title {
    background-color: #658334;
    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: black;
}

.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;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 190px;
    padding: 10px;
    border-radius: 0px 10px 10px 0px;
    border-right: 5px solid #658334;
    bottom: 35px;
    transition: all 0.3s ease-in-out;
}

.category-title {
    /* width: 300px !important; */
    height: 60px !important;
}

.btn-section {
    display: flex;
    align-items: center;
    gap: 20px;
}

.btn-section .background-btn {
    color: white !important;
}

.background-btn {
    background-color: #252525 !important;
}

.sp_pad {
    padding: 100px 0;
}

.srex-single-project {
    padding: 50px 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;
    font-size: 16px;
    line-height: 22px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    color: black;
}

.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: #fff;
    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;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.single-service-broucher {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.single_ser_info a i {
    float: right;
    margin-top: 5px;
}

.single_ser_info a:hover {
    background: #658334;
    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: #fff;
    letter-spacing: 0;
    margin-top: 0px;
    overflow: hidden;
    line-height: 22px;
}

.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: -40px;
    font-size: 24px;
    color: #658334;
}

.broucher {
    display: flex;
    align-items: center;
}

.sbd_icon_two a {
    color: #658334;
    font-size: 24px;
}

.single_pro_details {
}

.single_pro_details h1 {
    margin: 30px 0;
    font-size: 48px;
}

.srex-single-pro-img img {
    height: 350px;
    width: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.single_pro_details h4 {
    /* margin: 30px 0; */
    color: #658334;
}

.srex-service-list {
    padding-top: 20px;
}

.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: #658334;
    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: 20px;
    overflow: hidden;
    margin-bottom: 20px;
    border-radius: 10px;
}

.spdi h3 {
    background: #f8f7f0;
    text-align: center;
    padding: 30px;
    margin: -1px;
}

.spdi_info {
    padding: 10px 40px;
    overflow: hidden;
}

.spdi_info_details {
    /* float: left; */
    /* width: 50%; */
    border-bottom: 1px solid #ddd;
    padding-bottom: 30px;
}

.last-spdi_info_details {
    border: none !important;
}

.spdi_info_details span {
    font-weight: 600;
}

.spdi_info p {
    color: black;
    position: relative;
    padding-left: 15px;
}

.spdi_info p::before {
    position: absolute;
    content: "";
    width: 7px;
    height: 7px;
    background-color: #658334;
    border-radius: 50%;
    top: 10px;
    left: 0;
}

.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: #658334;
    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;
    background-size: cover;
}

@media (max-width: 767px) {
    .srex-question {
        padding: 90px 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-single-project {
        padding: 30px 0;
    }
}

.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: #fff;
    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: #fff;
    margin-right: 20px;
    font-size: 20px;
    transition: all 0.3s ease-in-out;
}

.srex-question-two .accordion-button .open {
    display: block;
    color: #658334;
}

.srex-question-two .accordion-button .close {
    display: none;
}

.srex-question-two .accordion-body {
    font-size: 16px;
    color: #fff;
    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: #658334;
    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: #fff;
    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: #fff;
}

.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: #fff;
    border-color: #e3e3e3;
    border-radius: 10px;
}

.srex-faq-three .srex-accordion .accordion-item .accordion-header__left__badge {
    color: #658334 !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: #fff;
}

.srex-faq-three .srex-accordion .accordion-button:not(.collapsed) {
    background-color: #fff;
    color: #fff;
}

.srex-faq-three
    .srex-accordion
    .accordion-button:not(.collapsed)
    .accordion-header__left__badge {
    background-color: #658334 !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: #658334;
    background-image: url(../images/newsletter-three-bg.png);
    background-repeat: no-repeat;
}

.srex-news-letter--three .srex-news-letter__box__left {
    gap: 20px;
}

.srex-news-letter--three .srex-news-letter__box__left h2 {
    color: #fff;
}

.srex-news-letter--three .srex-news-letter__box__left p {
    color: #fff;
}

.srex-news-letter--three .srex-news-letter__box__right input {
    background-color: transparent;
    color: #fff;
}

.srex-news-letter--three
    .srex-news-letter__box__right
    input:-ms-input-placeholder {
    color: #fff;
}

.srex-news-letter--three .srex-news-letter__box__right input::placeholder {
    color: #fff;
}

.srex-news-letter--three .srex-news-letter__box__right button {
    font-weight: 800;
}

.srex-news-letter__box {
    background: #f8f7f0;
    padding: 60px;
    border-radius: 20px;
}

@media (max-width: 767px) {
    .srex-news-letter__box {
        padding: 40px 20px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .srex-news-letter__box {
        padding: 45px;
    }
}

.srex-news-letter__box--two {
    background-color: #658334;
    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;
    }

    .single_pro_details h1 {
        margin: 20px 0;
        font-size: 24px !important;
    }
}

@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: #252525;
    background-image: url(../images/testimonial-bg.png);
    background-repeat: no-repeat;
    background-position: left center;
    padding-top: 120px;
}

.srex-testimonial-one .srex-section__head__title {
    color: white;
}

@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;
}

@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: white;
    color: white;
    padding: 70px 60px;
    min-height: 350px;
    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;
    filter: invert(1);
}

@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: 18px;
    line-height: 26px;
    color: black;
    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: black;
}

.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 black;
}

.srex-testimonial-one__slider .slick-dots li button::before {
    display: none;
}

.srex-testimonial-one__slider .slick-dots li.slick-active button {
    background-color: black;
}

.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: #fff;
}

.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: #658334;
}

.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;
    }

    .srex-testi-ab {
        padding: 50px 0px !important;
    }
}

@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: #658334;
    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: #fff;
}

.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: #658334;
    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: 0;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .srex-testimonial-three__slider__nav__prev {
        left: 0px;
    }
}

.srex-testimonial-three__slider__nav__next {
    right: -100px;
}

@media (max-width: 767px) {
    .srex-testimonial-three__slider__nav__next {
        right: 0px;
    }

    .srex-testimonial-three__slider__nav > div {
        width: 30px !important;
        height: 30px !important;
    }
}

@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: 60px;
    height: 60px;
    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: #658334;
    cursor: pointer;
}

.srex-testimonial-three__slider__nav > div:hover svg {
    color: #fff;
}

.srex-testimonial-three__right {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

@media (max-width: 767px) {
    .srex-testimonial-three__right {
        margin-top: 50px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .srex-testimonial-three__right {
        -ms-flex-pack: center;
        justify-content: center;
    }
}

.srex-testimonial-three__right__img {
    position: absolute;
    right: 67px;
    bottom: 2px;
    border-bottom-left-radius: 125px;
    border-bottom-right-radius: 97px;
}

@media (max-width: 767px) {
    .srex-testimonial-three__right__img {
        left: 50px;
        height: 400px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .srex-testimonial-three__right__img {
        left: 170px;
        height: 500px;
    }
}

.srex-testimonial-three__right__badge {
    position: absolute;
    bottom: 0;
    left: 155px;
    background-color: #ff7029;
    color: #fff;
    border-radius: 20px;
    padding: 20px 75px 20px 30px;
}

@media (max-width: 767px) {
    .srex-testimonial-three__right__badge {
        left: 0px;
        padding: 20px 40px;
    }
}

.srex-testimonial-three__right__badge img {
    margin-bottom: 15px;
    height: 50px;
    width: 50px;
}

.srex-testimonial-three__right__badge h3,
.srex-testimonial-three__right__badge
    .srex-accordion
    .accordion-header__left__badge,
.srex-accordion
    .srex-testimonial-three__right__badge
    .accordion-header__left__badge {
    color: #fff;
}

/*------------------------------------
	20/ Blog
------------------------------------*/
.srex-blog-one {
    margin-top: 120px;
}

@media (max-width: 767px) {
    .srex-blog-one {
        margin-top: 80px;
    }
}

.srex-blog-one__title {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-align: center;
    align-items: center;
    text-align: left;
}

@media (max-width: 767px) {
    .srex-blog-one__title {
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 25px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .srex-blog-one__title {
        gap: 25px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .srex-blog-one__title .srex-section__head {
        margin: 0;
        text-align: left;
    }
}

.srex-blog-one__post {
    margin-top: 60px;
    transition: all 0.3s ease-in-out;
}

.srex-blog-one__post i {
    transition: all 0.3s ease-in-out;
}

.srex-blog-one__post:hover .srex-blog-one__post__img::after {
    width: 100%;
}

.srex-blog-one__post:hover i {
    color: #658334;
}

.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: #658334;
}

.srex-blog-one__post:hover .srex-btn--outline {
    border-color: #658334;
    background-color: #f8f7f0;
    color: #658334;
}

.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: #658334;
    background-color: #f8f7f0;
    color: #658334;
}

.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: #658334;
    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: #658334;
}

.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: #658334;
}

.srex-blog-three__post:hover .srex-btn--outline {
    border-color: #658334;
    background-color: #f8f7f0;
    color: #658334;
}

.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: #658334;
    background-color: #f8f7f0;
    color: #658334;
}

/*------------------------------------
	21/ Footer
------------------------------------*/

.srex-footer__social_links a i {
    color: #000;
}

.srex-footer--mft {
    background-image: url(../images/footer-3-bg.png) !important;
    background-repeat: no-repeat;
    background-position: right bottom !important;
    background-color: #fff !important;
}

.srex-footer--mft .srex-footer__social_links li {
    background: transparent;
    border: 1px solid #658334;
}

.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 #658334;
    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 .sociol {
    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 .sociol:hover {
    background-color: #658334;
    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: #658334;
    height: 50px;
    width: 50px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    border: none !important;
    border-radius: 50%;
}

.srex-footer__contact__icon i {
    color: #fff;
    font-size: 18px;
}

.srex-footer__contact__text p {
    font-weight: 500;
    color: #fff;
}

.srex-footer__contact__text p a {
    font-weight: 500;
    color: #fff;
}

.srex-footer__contact__text p a:hover {
    color: #fff;
}

.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: #fff;
    font-size: 16px;
    font-weight: 500;
}

.srex-footer__links__list li a:hover {
    color: #fff;
}

.srex-footer__newsletter p {
    margin-bottom: 20px;
    font-weight: 500;
    color: #fff;
}

.srex-footer__newsletter .srex-news-letter__box__right form {
    -ms-flex-direction: column;
    flex-direction: column;
}

.srex-footer__newsletter .srex-news-letter__box__right input {
    margin-bottom: 20px;
    padding: 15px 30px;
    width: 100%;
}

.srex-footer__newsletter .srex-news-letter__box__right button {
    width: 100%;
    text-transform: uppercase;
}

.srex-footer__bottom {
    padding-bottom: 25px;
    padding-top: 15px;
}

.srex-footer__bottom p {
    color: #fff;
}

.srex-footer__bottom .row {
    -ms-flex-align: center;
    align-items: center;
}

@media (max-width: 767px) {
    .srex-footer__bottom p {
        text-align: center;
        margin-bottom: 15px;
    }
}

.srex-footer__bottom__links {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    gap: 20px;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

@media (max-width: 767px) {
    .srex-footer__bottom__links {
        -ms-flex-pack: center;
        justify-content: center;
    }
}

.srex-footer__bottom__links li a {
    color: #fff;
    font-size: 16px;
    font-weight: 500;
}

.srex-footer__bottom__links li a:hover {
    color: #fff;
}

.srex-footer-one {
    background-color: #252525;
    padding-top: 20px;
    /* background-image: url(../images/footer-one-bg.png); */
    background-repeat: no-repeat;
    background-position: center;
}

.srex-footer-one .footer-logo {
    width: 200px;
}

.srex-footer-one h4 {
    color: #fff;
}

@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: #ddd;
}

.srex-footer-two {
    background-color: #fff;
    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: #658334;
}

@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: #fff;
    border: 1px solid #658334;
    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: #658334;
    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: #fff;
    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: #658334;
    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: 40px 40px;
    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: #658334;
    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: #658334;
    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 {
    margin-top: 20px;
    border: 1.5px solid #e3e3e3;
    padding: 10px 25px;
    display: inline-block;
    text-align: center;
    font-size: 14px;
    line-height: 18px;
    /* width: 100%; */
}

.srex-pricing-items__item .srex-btn:hover {
    background-color: #658334;
    color: #fff;
    border-color: #658334;
}

.srex-pricing-items__item .srex-btn i {
    margin-left: 20px;
}

/*START SECTION TOP DESIGN*/
.section-top {
    padding-top: 60px;
    position: relative;
    background: rgba(0, 0, 0, 0.9);
    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-color: rgba(0, 0, 0, 0.9);
    /* 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;
    color: #fff;
}

.section-top-title ul {
}

.section-top-title ul li {
    color: #fff !important;
    display: inline-block;
    font-weight: 600;
    font-size: 16px;
}

.section-top-title ul li a {
    color: #fff !important;
    font-weight: 600;
    font-size: 16px;
}

.section-top-title ul li a:hover {
    color: #658334 !important;
}

/*END SECTION TOP DESIGN*/

/*START CONTACT FORM DESIGN*/
.srex-contact {
    padding: 120px 0;
}

.srex_contact_address {
    background: #252525;
    box-shadow: 0px 0px 60px 0px rgba(0, 0, 0, 0.05);
    padding: 40px 50px 20px !important;
    border-radius: 20px;
    min-height: 553px;
}

.srex_contact_content {
}

.srex_contact_content h4 {
    color: #658334;
}

.contact-heading {
    margin-bottom: 25px;
}

.srex_contact_content h1 {
    font-size: 28px;
    margin-bottom: 15px;
}

.srex_contact_content p {
    margin-bottom: 25px;
}

.srex-single-address {
    overflow: hidden;
    margin-bottom: 30px;
    display: flex;
    /* align-items: center; */
    gap: 10px;
}

.srex-single-address:last-child {
    margin-bottom: 0;
}

.address_icon i {
    float: left;
    border: 1px solid #658334;
    color: #658334;
    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: #658334;
    color: #fff;
}

.srex-single-address h4 {
    font-weight: 700;
    overflow: hidden;
    font-size: 24px;
    margin-bottom: 10px;
}

.srex-single-address p {
    overflow: hidden;
}

/*END CONTACT FORM DESIGN*/

/*
* ----------------------------------------------------------------------------------------
* .START BLOG DESIGN
* ----------------------------------------------------------------------------------------
*/
.blog-page {
    padding: 100px 0;
}

/*BLOG PAGES DESIGN*/
.post-slide-blog {
    background: #fff none repeat scroll 0 0;
    border-radius: 10px;
    box-shadow: 0 10px 40px -10px rgba(0, 64, 128, 0.08);
    margin-bottom: 30px;
    overflow: hidden;
    padding: 40px;
}

.post-single {
    background: none;
    padding: 0;
    box-shadow: none;
}

.blog-img img {
    position: relative;
}

@media only screen and (max-width: 768px) {
    .blog-img img {
        width: 100%;
    }
}

.blog-img a {
    position: absolute;
    left: 50%;
    margin-top: 40px;
    background: #f3f4f3;
    padding: 7px 20px;
    border-radius: 30px;
    color: #000;
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    border: 1px solid #999393;
}

.post-slide-blog h2 {
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 20px;
}

.post-slide-blog h2 a {
    font-size: 40px;
    margin-bottom: 20px;
    display: block;
    line-height: 50px;
    transition: 0.3s;
}

.post-slide-blog h2 a:hover {
    color: #658334;
}

.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: #658334;
}

.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: #658334;
    border: 1px solid #658334;
}

/*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 #658334;
}

.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: #658334;
    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: #658334;
}

.single_upcoming_event span i {
    margin-right: 5px;
    color: #658334;
}

.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: #658334;
}

.categories ul li a i {
    margin-right: 10px;
    transform: rotate(300deg);
    color: #658334;
    transition: 0.3s;
}

.categories:hover ul li a i {
    color: #658334;
    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: #658334;
    transform: rotate(180deg);
    font-size: 30px;
    margin-top: -10px;
}

.single_quote p {
    margin-bottom: 0;
}

.single_quote span {
    font-weight: 700;
}

.sb_img {
    overflow: hidden;
}

.sb_img img {
    float: left;
    width: 50%;
    margin-right: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.sb_img h4 {
    margin-bottom: 20px;
}

.sb_img p {
}

/*END BLOG SIDEBAR DESIGN*/
/*START BLOG SINGLE PAGE DESIGN*/
.bc_left {
    padding-left: 30px;
    font-style: italic;
    font-weight: 600;
}

.bc_bottom {
    margin-bottom: 30px;
}

.single_blog_post {
    margin-bottom: 60px;
}

.single_blog_post img {
    width: 750px;
    height: 455px;
}

.blog_post_text h4 {
    margin: 30px 0;
}

.author_part {
    margin-bottom: 30px;
    overflow: hidden;
    margin-top: 60px;
}

.single_author {
    background: #fff none repeat scroll 0 0;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 40px -10px rgba(0, 64, 128, 0.08);
    overflow: hidden;
}

.author_part img {
    border: 4px solid #658334;
    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, 0.08);
    overflow: hidden;
}

.single_comment_mbnone {
    margin-bottom: 0px;
}

.single_comment img {
    /* border: 4px solid #658334; */
    /* 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);
}

.login {
    background-color: #658334 !important;
    color: white !important;
    margin-top: 20px !important;
    display: inline-block !;
    padding: 5px 15px !important;
    border-radius: 10px !important;
    margin-left: 20px;
}

.srex-about-us-three {
    padding-top: 120px;
    padding-bottom: 60px;
    /* background-color: #252525; */
    overflow: hidden;
}

.srex-about-us-three .srex-section__head__title {
    color: white;
    font-size: 40px;
}

/* .srex-portfolio {
    padding: 0 0 60px !important;
} */

/* Magnific Popup CSS */
.mfp-bg {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1100;
    overflow: hidden;
    position: fixed;
    background: #0b0b0b;
    opacity: 0.8;
    filter: alpha(opacity=80);
}

.mfp-wrap {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1100;
    position: fixed;
    outline: none !important;
    -webkit-backface-visibility: hidden;
}

.mfp-container {
    height: 100%;
    text-align: center;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 1050;
    padding: 0 8px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.mfp-container:before {
    content: "";
    display: inline-block;
    height: 100%;
    vertical-align: middle;
}

.mfp-align-top .mfp-container:before {
    display: none;
}

.mfp-content {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    margin: 0 auto;
    text-align: left;
    z-index: 1100;
}

.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
    width: 100%;
    cursor: auto;
}

.mfp-ajax-cur {
    cursor: progress;
}

.mfp-zoom-out-cur,
.mfp-zoom-out-cur .mfp-image-holder .mfp-close {
    cursor: -moz-zoom-out;
    cursor: -webkit-zoom-out;
    cursor: zoom-out;
}

.mfp-zoom {
    cursor: pointer;
    cursor: -webkit-zoom-in;
    cursor: -moz-zoom-in;
    cursor: zoom-in;
}

.mfp-auto-cursor .mfp-content {
    cursor: auto;
}

.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}

.mfp-loading.mfp-figure {
    display: none;
}

.mfp-hide {
    display: none !important;
}

.mfp-preloader {
    color: #fffccc;
    position: absolute;
    top: 50%;
    width: auto;
    text-align: center;
    margin-top: -0.8em;
    left: 8px;
    right: 8px;
    z-index: 504;
}

.mfp-preloader a {
    color: #fffccc;
}

.mfp-preloader a:hover {
    color: white;
}

.mfp-s-ready .mfp-preloader {
    display: none;
}

.mfp-s-error .mfp-content {
    display: none;
}

button.mfp-close,
button.mfp-arrow {
    overflow: visible;
    cursor: pointer;
    background: transparent;
    border: 0;
    -webkit-appearance: none;
    display: block;
    padding: 0;
    z-index: 506;
}

button::-moz-focus-inner {
    padding: 0;
    border: 0;
}

.mfp-close {
    width: 44px;
    height: 44px;
    line-height: 44px;
    position: absolute;
    right: 0;
    top: 0;
    text-decoration: none;
    text-align: center;
    opacity: 0.65;
    padding: 0 0 18px 10px;
    color: white;
    font-style: normal;
    font-size: 28px;
    font-family: Arial, Baskerville, monospace;
}

.mfp-close:hover,
.mfp-close:focus {
    opacity: 1;
}

.mfp-close:active {
    top: 1px;
}

.mfp-close-btn-in .mfp-close {
    color: #333333;
}

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
    color: white;
    right: -6px;
    text-align: right;
    padding-right: 6px;
    width: 100%;
}

.mfp-counter {
    position: absolute;
    top: 0;
    right: 0;
    color: #fffccc;
    font-size: 12px;
    line-height: 18px;
}

.mfp-arrow {
    position: absolute;
    top: 0;
    opacity: 0.65;
    margin: 0;
    top: 50%;
    margin-top: -55px;
    padding: 0;
    width: 90px;
    height: 110px;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.mfp-arrow:active {
    margin-top: -54px;
}

.mfp-arrow:hover,
.mfp-arrow:focus {
    opacity: 1;
}

.mfp-arrow:before,
.mfp-arrow:after,
.mfp-arrow .mfp-b,
.mfp-arrow .mfp-a {
    content: "";
    display: block;
    width: 0;
    height: 0;
    position: absolute;
    left: 0;
    top: 0;
    margin-top: 35px;
    margin-left: 35px;
    border: solid transparent;
}

.mfp-arrow:after,
.mfp-arrow .mfp-a {
    opacity: 0.8;
    border-top-width: 12px;
    border-bottom-width: 12px;
    top: 8px;
}

.mfp-arrow:before,
.mfp-arrow .mfp-b {
    border-top-width: 20px;
    border-bottom-width: 20px;
}

.mfp-arrow-left {
    left: 0;
}

.mfp-arrow-left:after,
.mfp-arrow-left .mfp-a {
    border-right: 12px solid black;
    left: 5px;
}

.mfp-arrow-left:before,
.mfp-arrow-left .mfp-b {
    border-right: 20px solid white;
}

.mfp-arrow-right {
    right: 0;
}

.mfp-arrow-right:after,
.mfp-arrow-right .mfp-a {
    border-left: 12px solid black;
    left: 3px;
}

.mfp-arrow-right:before,
.mfp-arrow-right .mfp-b {
    border-left: 20px solid white;
}

.mfp-iframe-holder {
    padding-top: 40px;
    padding-bottom: 40px;
}

.mfp-iframe-holder .mfp-content {
    line-height: 0;
    width: 100%;
    max-width: 900px;
}

.mfp-iframe-scaler {
    width: 100%;
    height: 0;
    overflow: hidden;
    padding-top: 56.25%;
}

.mfp-iframe-scaler iframe {
    position: absolute;
    top: -3px;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    background: black;
}

.mfp-iframe-holder .mfp-close {
    top: -43px;
}

/* Main image in popup */
img.mfp-img {
    width: auto;
    max-width: 100%;
    height: auto;
    display: block;
    line-height: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 40px 0 40px;
    margin: 0 auto;
}

/* The shadow behind the image */
.mfp-figure:after {
    content: "";
    position: absolute;
    left: 0;
    top: 40px;
    bottom: 40px;
    display: block;
    right: 0;
    width: auto;
    height: auto;
    z-index: -1;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
}

.mfp-figure {
    line-height: 0;
}

.mfp-bottom-bar {
    margin-top: -36px;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    cursor: auto;
}

.mfp-title {
    text-align: left;
    line-height: 18px;
    color: #f3f3f3;
    word-break: break-word;
    padding-right: 36px;
}

.mfp-figure small {
    color: #bdbdbd;
    display: block;
    font-size: 12px;
    line-height: 14px;
}

.mfp-image-holder .mfp-content {
    max-width: 100%;
}

.mfp-gallery .mfp-image-holder .mfp-figure {
    cursor: pointer;
}

@media screen and (max-width: 800px) and (orientation: landscape),
    screen and (max-height: 300px) {
    /**
     * Remove all paddings around the image on small screen
     */
    .mfp-img-mobile .mfp-image-holder {
        padding-left: 0;
        padding-right: 0;
    }

    .mfp-img-mobile img.mfp-img {
        padding: 0;
    }

    /* The shadow behind the image */
    .mfp-img-mobile .mfp-figure:after {
        top: 0;
        bottom: 0;
    }

    .mfp-img-mobile .mfp-bottom-bar {
        background: rgba(0, 0, 0, 0.6);
        bottom: 0;
        margin: 0;
        top: auto;
        padding: 3px 5px;
        position: fixed;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }

    .mfp-img-mobile .mfp-bottom-bar:empty {
        padding: 0;
    }

    .mfp-img-mobile .mfp-counter {
        right: 5px;
        top: 3px;
    }

    .mfp-img-mobile .mfp-close {
        top: 0;
        right: 0;
        width: 35px;
        height: 35px;
        line-height: 35px;
        background: rgba(0, 0, 0, 0.6);
        position: fixed;
        text-align: center;
        padding: 0;
    }

    .mfp-img-mobile .mfp-figure small {
        display: inline;
        margin-left: 5px;
    }
}

@media all and (max-width: 800px) {
    .mfp-arrow {
        -webkit-transform: scale(0.75);
        transform: scale(0.75);
    }

    .mfp-arrow-left {
        -webkit-transform-origin: 0;
        transform-origin: 0;
    }

    .mfp-arrow-right {
        -webkit-transform-origin: 100%;
        transform-origin: 100%;
    }

    .mfp-container {
        padding-left: 6px;
        padding-right: 6px;
    }
}

.mfp-ie7 .mfp-img {
    padding: 0;
}

.mfp-ie7 .mfp-bottom-bar {
    width: 600px;
    left: 50%;
    margin-left: -300px;
    margin-top: 5px;
    padding-bottom: 5px;
}

.mfp-ie7 .mfp-container {
    padding: 0;
}

.mfp-ie7 .mfp-content {
    padding-top: 44px;
}

.mfp-ie7 .mfp-close {
    top: 0;
    right: 0;
    padding-top: 0;
}

@media (max-width: 1200px) {
    .srex-hero-three {
        height: 530px;
    }

    .srex-hero-three__left__title {
        font-size: 48px;
        line-height: 60px;
    }

    .srex-hero-three__left {
        height: 530px;
    }

    .srex-about-us-three {
        padding-bottom: 120px;
    }

    .srex-about-us-three__left .about-img-2 {
        height: 305px;
    }

    .srex-icon-list ul li h4 {
        font-size: 16px;
        line-height: 24px;
    }

    .srex-testimonial-one .srex-section__head__title {
        font-size: 32px;
        line-height: 32px;
    }

    .srex-testimonial-one__slider {
        margin-bottom: 0 !important;
        margin-top: 30px;
    }

    .srex-testimonial-one__slider__item {
        padding: 40px 30px;
    }

    .srex-testimonial-one__slider__item__text {
        font-size: 16px;
        line-height: 24px;
        margin-bottom: 20px;
    }

    .srex-testimonial-one__slider__item__quote {
        width: 40px;
        height: 40px;
        margin-bottom: 20px;
    }

    h2 {
        font-size: 36px;
        line-height: 48px;
    }
}

@media (max-width: 992px) {
    .srex-hero-three__right {
        width: 100%;
        height: 300px;
        top: auto;
    }

    .srex-hero-three {
        padding-bottom: 300px;
        height: auto;
    }

    .srex-about-us-three {
        padding: 50px 0;
    }

    .srex-about-us-three__left__img-3 {
        margin-top: 0;
    }

    .srex-about-us-three__left .about-img-2 {
        height: 409px;
    }

    .srex-portfolio {
        padding: 50px 0;
    }

    .srex-portfolio .controls ul li {
        min-width: auto;
    }

    .srex-testimonial-one {
        padding: 50px 0;
    }

    .srex-testimonial-one__slider__item {
        margin-bottom: 30px;
    }

    .srex-contact {
        padding: 50px 0;
    }

    .srex-contact .srex-section__head {
        text-align: left;
    }
}

@media (max-width: 768px) {
    .srex-header {
        overflow: visible;
    }

    .srex-header .ud-main-menu__logo img {
        width: 130px;
    }

    .srex-service .slick-initialized .slick-slide {
        margin-right: 0;
    }

    .srex-service .slick-list {
        width: 100%;
    }

    .srex-service .srex-section__head__title {
        margin: 0 auto 30px auto;
    }

    h2 {
        font-size: 29px;
        line-height: 38px;
    }

    .srex-about-us-three__left img {
        margin-bottom: 0;
    }

    .srex-about-us-three__left .about-img-2 {
        height: 180px;
    }

    .srex-about-us-three__left__box {
        margin-top: 0;
    }

    .srex-contact {
        overflow: hidden;
    }

    .srex-testimonial-one {
        overflow: hidden;
    }

    .srex-portfolio .controls ul li {
        white-space: nowrap;
    }

    .srex-single-address h4 {
        font-weight: 700;
        font-size: 18px;
        margin-bottom: 5px;
    }

    .srex-single-address {
        display: flex;
    }

    .srex_contact_address {
        padding: 30px !important;
        margin-bottom: 30px;
    }

    .srex_contact_content h1 {
        font-size: 24px;
        margin-bottom: 0px;
    }

    .offcanvas-end {
        background-color: black;
    }
}

@media (max-width: 470px) {
    .offcanvas {
        width: 80% !important;
        padding: 10px;
    }

    .ud-side-popup__header {
        margin-bottom: 10px;
    }

    .ud-side-popup__body {
        margin-bottom: 30px;
    }

    .ud-side-popup__body ul li a {
        font-size: 15px;
        line-height: 32px;
    }

    .ud-side-popup__bottom-info-box i {
        font-size: 23px;
    }

    .ud-header-info-box__details span {
        font-size: 14px;
    }

    .ud-side-popup__bottom-info-box h4 {
        font-size: 12px;
    }

    .ud-side-popup__bottom-info-box h4 a {
        font-size: 12px;
    }
}

.about-box {
    padding: 30px;
    border-radius: 20px;
    background-color: white;
    margin-bottom: 35px;
    transition: all 0.3s 0s linear;
}

.about-box:hover {
    box-shadow: 0 0 10px rgba(0, 0, 0, 10%);
}

.about-box .srex-info-box__item__text {
    margin: 20px 0;
    transition: all 0.3s ease-in-out;
    color: #fff;
}

.about-box .srex-info-box__more a {
    color: #fff;
    font-size: 14px;
    font-style: normal;
    font-weight: 800;
    line-height: 30px;
    text-transform: capitalize;
}

.about-box .srex-info-box__more i {
    color: #fff;
}

.srex-testi-ab {
    padding: 100px 0 90px;
}

.zirox-brand__items-item {
    text-align: center;
    padding: 20px;
}

.zirox-brand__items-item img {
    width: 180px;
}

.banifit-images {
    width: 500px;
}

.benefit-icons {
    width: 30px;
    height: 30px;
}

.srex-production-images {
    background-color: #252525;
}

/*
.category-banner{
    background: url(../images/category-banner/banner-starlink.jpg) !important;
    background-repeat: no-repeat !important;
    background-position: center;
    background-size: cover !important;
    padding-top: 100px;
    padding-bottom: 100px;
    position: relative;
}
.category-banner *{
    color: white;
}
.category-banner::before{
    content: "";
    height: 100%;
    opacity: 1;
    position: absolute;
    width: 100%;
    top: 0;
    background: rgba(0, 0, 0, 0.05);

}
.sub-category-section{
    padding-top: 80px;
}
.category-banner .section-top-title ul li{
    color: white !important;
}
.category-banner .section-top-title ul li a{
    color: #658334 !important;
} */

.product-section .product-boxes {
    background-color: khaki;
    padding: 40px;
    border-radius: 20px;
}

.product-section .product-boxes .box {
    box-shadow: 0 0 10px rgba(0, 0, 0, 15%);
    background-color: #252525;
    border-radius: 20px;
    padding: 20px;
}

.product-section .product-boxes .box img {
    width: 100%;
    height: 150px;
    object-fit: contain;
}

.product-section .production-content {
    padding: 40px;
}

.production-content h3 {
    color: #658334;
    font-size: 24px;
    margin-bottom: 20px;
}

.product-section .production-content ul {
    margin-bottom: 30px;
}

.product-section .srex-section__head {
    margin-bottom: 40px;
}

.service-table {
    padding: 30px;
    background-color: white;
    margin-top: 30px;
    border-radius: 20px;
    box-shadow: 0px 10px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.service-table .table {
    text-align: center;
    width: 100%;
}

.service-table .table th {
    background-color: #658334;
    padding: 10px;
    color: white;
    /* border-radius: 20px; */
    font-size: 18px;
}

.service-table .table td {
    padding: 10px;
    font-size: 16px;
}

/* .product-section .production-content .content-box{
    padding-bottom: 20px;
} */
.production-content {
    background-color: white;
    min-height: 260px;
    border-radius: 20px;
    box-shadow: 0px 10px 40px rgba(0, 0, 0, 0.1);
}

.product-section .production-content ul li {
    line-height: 34px;
    display: flex;
    align-items: baseline;
    font-weight: 500;
}

.product-section .production-content 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;
}

.category-service {
    background-color: white;
    box-shadow: 0px 10px 40px rgba(0, 0, 0, 0.1);
    margin-top: 25px;
    border-radius: 20px;
}

.category-service .zirox-brand__items-item img {
    width: 130px;
    filter: invert(1);
    height: 130px;
}

.case-study-box {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    border-radius: 20px;
    background: #252525;
    margin-bottom: 30px;
    transition: all 0.3s ease-in-out;
    min-height: 124px;
}

.case-study-box: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);
}

.case-study-box img {
    height: 45px;
    width: 45px;
}

.case-study-box .img-box {
    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;
}

.case-study-box .img-box-width {
    width: calc(100% - 80px);
}

.datapool-section {
    margin-bottom: 30px;
}

.datapool-section .srex-section__head__title {
    color: black;
    margin-bottom: 20px;
}

.datapool-section .case-inner-box {
    width: calc(100% - 100px);
}

.data-packages .srex-pricing-items__item h3 {
    /* font-size: 16px; */
    margin: 0px;
}

.data-packages .srex-icon-list ul li p {
    margin-bottom: 0;
    color: black;
}

.srex-icon-list ul li p {
    width: calc(100% - 30px);
}

.data-packages {
    background-color: #f8f7f0;
    padding-top: 230px;
    margin-top: 0px;
    padding-bottom: 60px;
}

.technical-section .case-study-box {
    background: #fff;
    box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 100;
    min-height: 152px;
}

.technical-section .srex-section__head__title {
    margin-bottom: 30px;
}

.conclusions .conclusion-box {
    /* background-color: white; */
    background-color: white;
    padding: 40px;
    border-radius: 20px;
}

.conclusions .conclusion-box p {
    color: black;
}

.conclusions .btn-section {
    display: flex;
    justify-content: end;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
}

.srex-single-project .sm-btns {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.srex-footer__contact__text {
    width: calc(100% - 65px);
}

.service-details-testimonials {
    background-color: #f8f7f0;
}

.srex-testi-ab {
    background-color: #f0e68c;
    /* Light Khaki */
}

.srex-ul-listing ul li {
    list-style: none;
    position: relative;
    padding-left: 20px;
}

.srex-ul-listing ul li::before {
    content: "\f054";
    font-family: "Font Awesome 6 Pro";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0;
    color: green;
}

.privacy-policy-page {
    padding: 60px 0px;
}

.privacy-policy-page .srex-section__head {
    margin-bottom: 50px;
}

.sponser-item-bg {
    /* background: #fff; */
    /* box-shadow: 0px 0px 60px 0px rgba(0, 0, 0, 0.05); */
    padding: 20px !important;
    /* border-radius: 20px; */
}

/* Tablet & Mobile | Check Mobile - 767px*/
@media (max-width: 767px) {
    .srex-single-project .sm-btns {
        flex-direction: column;
    }

    .conclusions .btn-section {
        justify-content: center;
        flex-wrap: wrap;
        flex-direction: column;
    }

    .srex-pricing-items__item {
        padding: 30px 30px;
        margin-bottom: 20px;
    }

    .product-section .production-content {
        margin-bottom: 20px;
    }

    .conclusions .conclusion-box {
        padding: 20px;
    }
}

.infra-detail ul {
    width: 100%;
}

.sub-cat-description {
    margin-bottom: 20px;
}

.sub-cat-description * {
    text-align: justify;
    color: white;
}

.sub-cat-description ul {
    padding-left: 20px;
    list-style: disc;
    margin-top: 20px;
}

.sub-cat-description ul li {
    list-style: disc;
    margin-bottom: 10px;
}

.sub-cat-description ul li::marker {
    color: #658334;
}

.about-single-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
}

.sub-dropdown {
    left: 220px !important;
    top: 0px !important;
}

/* new home banner work start */

.home-banner-box {
    height: calc(100vh - 130px);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
}

.home-banner-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
}

.home-banner-box .container {
    position: relative;
    z-index: 1;
    height: 100%;
}

.home-banner-box .container .row {
    height: 100%;
}

.home-banner-box .home-banner-content {
    text-align: left;
}

.home-banner-box .home-banner-content .banner-logo {
    width: 190px;
    height: auto;
    margin-bottom: 30px;
}

.home-banner-box .home-banner-content .starlink-heading {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 40px;
    margin-bottom: 15px;
}

.home-banner-box .home-banner-content .starlink-heading img {
    /* filter: invert(1); */
    width: 200px;
}

.home-banner-box .home-banner-content .starlink-heading h2 {
    font-size: 58px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 10px;
    margin-bottom: 0;
}

.home-banner-box .home-banner-content .starlink-heading span {
    display: block;
    text-align: left;
    position: relative;
    margin: 0;
    font-weight: 500;
    font-size: 22px;
    line-height: 26px;
}

.home-banner-box .home-banner-content .starlink-heading span::before {
    content: "";
    position: absolute;
    left: -25px;
    top: 0;
    width: 1px;
    height: 100%;
    background-color: white;
}

.home-banner-box .home-banner-content h3 {
    font-size: 26px;
    font-weight: 500;
    line-height: 1;
    margin-bottom: 40px;
}

.home-banner-box .home-banner-content .home-banner-btn {
    padding: 10px 25px;
    background-color: #658334;
    border-radius: 50px;
    color: white;
    font-size: 16px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.home-banner-box .home-banner-content .home-banner-btn i {
    line-height: 1;
    font-size: 14px;
}

.home-banner-box .home-banner-content .home-banner-btn:hover {
    background-color: white;
    color: #658334;
}

/* new home banner work end */

/* starlink-about work start */

.starlink-about {
    padding: 0 0 60px;
}

.starlink-about h2 {
    font-size: 42px;
    line-height: 52px;
    font-weight: 600;
    margin-bottom: 20px;
}

.starlink-about h2 .starlink {
    text-transform: uppercase;
    letter-spacing: 10px;
}

.starlink-about h2 small {
    font-size: 30px;
    color: #658334;
}

@media (max-width: 768px) {
    .starlink-about h2 {
        font-size: 30px;
        line-height: 40px;
    }

    .starlink-about h2 small {
        font-size: 22px;
    }
}

/* starlink-about work end */

/* why-baycom work start */

.why-baycom {
    padding: 0 0 60px;
}

.why-baycom .srex-section__head {
    margin-bottom: 20px;
}

.starlink-page-box {
    border-radius: 20px;
    background-color: #252525;
    overflow: hidden;
    text-align: center;
}

.starlink-page-box .img-div {
    height: 200px;
    overflow: hidden;
}

.starlink-page-box .img-div img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: all 0.3s 0s linear;
}

.starlink-page-box:hover .img-div img {
    transform: scale(1.05);
}

.starlink-page-box .content {
    padding: 20px 15px;
}

.starlink-page-box .content h4 {
    line-height: 24px;
    margin-bottom: 7px;
    font-size: 16px;
}

.starlink-page-box .content p {
    line-height: 22px;
    font-size: 15px;
}

/* why-baycom work end */

/* starlink-usage work start */

.starlink-usage {
    padding: 0 0 60px;
}

.starlink-usage .starlink-page-box {
    min-height: 361px;
}

@media (max-width: 768px) {
    .starlink-usage .starlink-page-box {
        min-height: unset;
    }
}

/* starlink-usage work end */

/* starlink-benefits work start */

.starlink-benefits {
    padding: 0 0 60px;
}

.starlink-benefits .benefits-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 20px;
}

.starlink-benefits .benefit-box {
    padding: 20px;
    border-radius: 20px;
    background-color: #252525;
    text-align: center;
}

.starlink-benefits .benefit-box h5 {
    font-size: 16px;
    line-height: 22px;
    font-weight: 600;
    text-transform: capitalize;
    color: white;
    margin-bottom: 0;
    margin-top: 20px;
    letter-spacing: 0;
}

.starlink-benefits .benefit-box .icon-div {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.starlink-benefits .benefit-box .icon-div img {
    width: 50%;
}

.starlink-benefits.starlink-info .benefit-box {
    padding: 30px 40px;
}

@media (max-width: 1024px) {
    .starlink-benefits.benefit-sect .benefits-grid {
        flex-wrap: wrap;
        justify-content: center;
    }

    .starlink-benefits.benefit-sect .benefit-box {
        width: 30%;
    }
}

@media (max-width: 768px) {
    .starlink-benefits.benefit-sect .benefit-box {
        width: 100%;
    }
}

/* starlink-benefits work end */

.sub-categories-row .col {
    flex: 0 0 auto;
    width: 20%;
}

@media (max-width: 1200px) {
    .sub-categories-row .col {
        width: 25%;
    }
}

@media (max-width: 992px) {
    .sub-categories-row .col {
        width: 33%;
    }
}

@media (max-width: 767px) {
    .sub-categories-row .col {
        width: 50%;
    }

    .sub-categories-row .srex-portfolio__item img {
        height: 170px;
    }

    .sub-categories-row .srex-portfolio__item__title * {
        font-size: 14px;
        line-height: 18px;
        margin-left: 0px;
    }

    .sub-categories-row .srex-portfolio__item__title {
        width: 90%;
        bottom: 15px;
    }
}

/* starlink-kit work start */

.starlink-kit {
    padding: 0 0 60px;
}

.starlink-kit .kit-content {
    padding: 20px;
}

.starlink-kit .kit-content .kit-heading {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
}

.starlink-kit .kit-content .kit-para {
    font-size: 18px;
    margin-bottom: 20px;
}

.starlink-kit .kit-content .kit-pointer {
    font-size: 16px;
    gap: 15px;
    margin-bottom: 0px;
    padding-left: 25px;
    position: relative;
}

.starlink-kit .kit-content .kit-pointer::before {
    content: "\f058";
    position: absolute;
    left: 0;
    top: 0;
    /* transform: translateY(-50%); */
    font-family: "Font Awesome 6 Pro";
    color: #658334;
    font-weight: 900;
}

.starlink-kit .kit-content .kit-pointer i {
    font-size: 20px;
    color: #658334;
    border-radius: 50%;
}

.starlink-kit .kit-image {
    border-radius: 20px;
    overflow: hidden;
}

.starlink-kit .kit-image img {
    width: 100%;
    height: 350px;
    margin-bottom: 10px;
    object-fit: cover;
}

.starlink-kit .owl-nav,
.starlink-kit .owl-dots {
    display: none;
}

@media (max-width: 992px) {
    .starlink-kit .kit-image img {
        height: 550px;
    }
}

@media (max-width: 768px) {
    .starlink-kit .kit-image img {
        height: 300px;
    }
}

/* starlink-kit work end */

/* get-starlink work start */

.get-starlink {
    padding: 0 0 60px;
}

.get-starlink .get-starlink-sm-heading {
    font-size: 24px;
    font-weight: 600;
    color: white;
    margin-bottom: 20px;
    text-align: center;
    text-transform: unset;
    letter-spacing: 0;
}

.get-starlink .btn-flex {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.get-starlink .btn-flex .starlink-btn {
    height: 45px;
    padding: 10px 25px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 500;
}

.get-starlink .btn-flex .starlink-btn i {
    font-size: 20px;
}

.get-starlink .btn-flex .starlink-btn.btn1 {
    background-color: #658334;
    color: #fff;
}

.get-starlink .btn-flex .starlink-btn.btn2 {
    background-color: #00e777;
    color: #fff;
}

.get-starlink .btn-flex .starlink-btn.btn3 {
    background-color: #fff;
    color: #000;
}

@media (max-width: 768px) {
    .get-starlink .btn-flex {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 15px;
        flex-direction: column;
    }

    .get-starlink .get-starlink-sm-heading {
        font-size: 18px;
        line-height: 27px;
    }
}

/* get-starlink work end */

/* local-global-list work start */

.local-global-list {
    padding: 0 0 60px;
}

.local-global-list .srex-info-box__item {
    padding: 220px 30px 20px 30px;
    height: 350px;
}

.local-global-list .srex-info-box__item .local-global-text {
    font-size: 16px;
    line-height: 22px;
    color: white;
    margin-bottom: 10px;
    z-index: 1;
    position: relative;
}

@media (max-width: 992px) {
    .local-global-list .srex-info-box__item {
        padding: 220px 20px 20px 20px;
    }

    .local-global-list .srex-info-box__item .local-global-text {
        font-size: 12px;
        line-height: 18px;
    }
}

@media (max-width: 768px) {
    .local-global-list .srex-info-box__item__text {
        font-size: 20px;
        line-height: 1;
    }

    .local-global-list .srex-info-box__item .local-global-text {
        font-size: 13px;
        line-height: 22px;
    }
}

/* local-global-list work end */

/* starlink-local work start */

.starlink-local {
    padding: 60px 0;
}

.starlink-local.starlink-global {
    position: relative;
    overflow: hidden;
}

.starlink-local.starlink-global::before {
    content: "";
    position: absolute;
    width: 2px;
    height: 400px;
    left: 49.5%;
    transform: translateX(-50%);
    bottom: 0;
    background-color: #fff;
    opacity: 0.5;
    z-index: 11;
}

.starlink-local .local-content h4 {
    font-size: 22px;
    font-weight: 800;
    color: white;
    margin-bottom: 10px;
}

.starlink-local .local-content p {
    font-size: 16px;
    color: white;
    margin-bottom: 10px;
}

.starlink-local .local-content ul {
    font-size: 16px;
    list-style: disc;
    padding-left: 20px;
    margin-bottom: 10px;
}

.starlink-local .local-content ul li {
    list-style: disc;
}

.starlink-local .local-content ul li::marker {
    color: #658334;
}

.starlink-local .local-image {
    width: 100%;
    height: 100%;
    background-color: white;
}

.starlink-global .global-banner {
    border-radius: 20px;
    margin-bottom: 40px;
}

@media (max-width: 992px) {
    .starlink-local.starlink-global::before {
        height: 390px;
    }
}

@media (max-width: 768px) {
    .starlink-local {
        padding: 0 0 60px;
    }

    .starlink-local.starlink-global::before {
        display: none;
    }
}

/* starlink-local work end */

/* local-global-list work start */

.local-global-list .kit-para,
.local-global-list .kit-pointer {
    color: white;
}

.local-global-list h6 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    color: white;
}

.local-global-list.starlink-kit .kit-image img {
    height: 526px;
}

.local-global-btn {
    font-size: 15px;
    font-weight: 600;
    padding: 7px 25px;
    background-color: #658334;
    color: #fff;
    border-radius: 10px;
    display: inline-block;
    margin-top: 20px;
}

.local-global-btn:hover {
    background-color: #4e6d1c;
}

@media (max-width: 768px) {
    .local-global-list.starlink-kit .kit-image img {
        height: auto;
    }
}

/* local-global-list work end */

.sub-category-section .service-detail-img {
    border-radius: 20px;
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* .promises-page-slider .owl-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #658334 !important;
    color: white !important;
}

.promises-page-slider .owl-prev {
    left: -30px;
}

.promises-page-slider .owl-next {
    right: -30px;
}

.promises-page-slider .owl-nav button span {
    display: none;
} */

.owl-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-top: 20px;
}

.owl-dots .owl-dot {
    width: 8px;
    height: 8px;
    background-color: #ddd !important;
    border-radius: 50%;
}

.owl-dots .owl-dot.active {
    background-color: #658334 !important;
}

/* past-project work start */

.past-project {
    overflow: hidden;
}

.past-project .project-box {
    padding: 25px;
    background-color: #252525;
    border-radius: 20px;
    text-align: left;
    transition: all 0.3s 0s linear;
}

.past-project .project-box .project-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 20px;
    transition: all 0.3s 0s linear;
}

.past-project .project-box h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 1; /* Number of lines to show */
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.past-project .project-box p {
    margin-bottom: 20px;
    line-height: 24px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
}

.past-project .project-box .past-project-btn {
    width: 100%;
    height: 45px;
    border-radius: 15px;
    background-color: #658334;
    color: white;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: all 0.3s 0s linear;
}

.past-project .project-box:hover {
    background-color: #151515;
}

.past-project .project-box:hover .project-image {
    transform: scale(1.02);
}

.past-project .project-box:hover .past-project-btn {
    background-color: #4e6d1c;
}

.past-project .owl-nav {
    position: absolute;
    top: -90px;
    right: 0;
    gap: 10px;
    display: flex;
    align-items: center;
    justify-content: end;
}

.past-project .owl-nav button {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    position: relative;
    background-color: #658334 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s 0s linear;
}

.past-project .owl-nav button:hover {
    background-color: #4e6d1c !important;
}

.past-project .owl-nav button span {
    display: none;
}

.past-project .owl-nav button::after {
    font-family: "Font Awesome 6 Pro";
    font-weight: 900;
    font-size: 16px;
    color: white;
}

.past-project .owl-nav .owl-prev::after {
    content: "\f060";
}

.past-project .owl-nav .owl-next::after {
    content: "\f061";
}

@media (max-width: 768px) {
    .owl-nav {
        display: none !important;
    }
}

.past-project-modal .modal-content {
    border-radius: 20px;
}

.past-project-modal .modal-body {
    padding: 25px;
}

.past-project-modal .modal-body {
    padding: 25px;
}

.past-project-modal .past-project-content h3 {
    font-size: 24px;
    font-weight: 600;
    color: #658334;
    margin-bottom: 15px;
}

.past-project-modal .past-project-content p {
    font-size: 16px;
    font-weight: 400;
    color: #555;
    margin-bottom: 15px;
}

.past-project-modal .past-project-content ul {
    list-style: none;
}

.past-project-modal .past-project-content ul li {
    font-size: 16px;
    font-weight: 400;
    color: #555;
    margin-bottom: 15px;
    padding-left: 23px;
    position: relative;
}

.past-project-modal .past-project-content ul li::before {
    content: "\f058";
    font-family: "Font Awesome 6 Pro";
    color: #658334;
    font-size: 16px;
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0;
}

.past-project-modal .close-btn {
    width: 100%;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: crimson;
    color: white;
    font-size: 16px;
    font-weight: 600;
    border-radius: 10px;
}

/* past-project work end */

.starlink-title {
    font-size: 50px !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 10px;
    margin-bottom: 0;
}

.connect-withus .modal-content {
    background: #252525;
    /* padding: 30px 55px; */
    border-radius: 20px;
}

.connect-withus .modal-content .form-control {
    /* width: 100%; */
    padding: 18px 30px;
    border: 1px solid #1a1616;
    box-sizing: border-box;
    border-radius: 25px;
    color: #fff;
    margin: 10px 0;
    background-color: #1a1616;
}

.form-control:focus {
    color: #fff;
    background-color: #1a1616;
    border-color: #1a1616;
    outline: 0;
    box-shadow: none;
}

.connect-withus .modal-content .form-control::placeholder {
    color: #878680;
    opacity: 1;
    /* Firefox */
}

.connect-withus .modal-content .btns-close {
    background: #fff;
    cursor: pointer;
    height: 30px;
    width: 30px;
    font-size: 16px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.connect-withus .modal-content .modal-body {
    padding: 30px;
}

.connect-withus .modal-content .modal-header {
    padding: 20px 20px;
    align-items: baseline;
}

.connect-withus .modal-content .modal-title {
    width: calc(100% - 40px);
}

.connect-withus .modal-content .modal-title h5 {
    font-size: 22px;
    line-height: 24px;
    color: #fff;
    text-transform: capitalize;
    margin-bottom: 10px;
}

.srex-sponsor__items .slick-slide {
    padding: 0 10px;
    /* Adjust spacing here */
    box-sizing: border-box;
}

/* Ensure images fit cleanly */
.srex-sponsor__items .sponser-item-bg img {
    width: 100%;
    height: 140px;
    object-fit: contain;
}

/* Optional: fix height or style of card */
.srex-sponsor__items .sponser-item-bg {
    /* background: white; */
    border-radius: 15px;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.starlink-banner {
    background-image: url(../images/starlink-bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.starlink-usage {
    background-image: url(../images/starlink-bg-2.jpg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: fixed;
}

.timeline-section {
    background-color: #111111;
    /* padding: 60px 20px; */
    /* max-width: 1000px; */
}

.timeline-section .timeline-container {
    position: relative;
    margin-left: 40px;
    max-width: 800px;
    margin: 0px auto;
}

.timeline-section .timeline-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: -18px;
    width: 5px;
    height: 0;
    /* Start from 0 */
    background-color: #658334;
    transition: height 2s ease;
}

.timeline-section .timeline-container.line-grow::before {
    height: 100%;
}

.timeline-section .timeline-item {
    position: relative;
    padding-left: 30px;
    margin-bottom: 50px;
    color: #fff;
}

.timeline-section .timeline-item::before {
    content: "";
    position: absolute;
    left: -27px;
    top: 0;
    width: 25px;
    height: 25px;
    background-color: #658334;
    border: 3px solid #fff;
    border-radius: 50%;
    z-index: 1;

    animation: pulseDot 1.5s infinite;
}

@keyframes pulseDot {
    0% {
        box-shadow: 0 0 0 0 rgba(101, 131, 52, 0.6);
    }

    70% {
        box-shadow: 0 0 0 30px rgba(101, 131, 52, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(101, 131, 52, 0);
    }
}

.timeline-section .timeline-year {
    font-size: 28px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 5px;
}

.timeline-section .timeline-year i {
    color: #658334 !important;

    font-size: 20px !important;
    margin-left: 5px;
    margin-right: 5px;
}

.timeline-section .timeline-item p strong,
.timeline-item ul strong {
    color: #fff;
}

.timeline-section .timeline-item p,
.timeline-item ul {
    font-size: 1rem;
    color: #fff;
    line-height: 1.6;
}

.timeline-section .timeline-item ul {
    padding-left: 20px;
    list-style: disc;
}

.timeline-section .timeline-item ul li {
    margin-bottom: 10px;
}

/* Base animation hidden state */
.fade-in {
    opacity: 0;
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    position: relative;
}

/* Left and Right specific animations */
.fade-in.left {
    transform: translateX(-50px);
}

.fade-in.right {
    transform: translateX(50px);
}

/* When visible */
.fade-in.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Animate green dots */

/* Green Dot Pulse Animation */

@media (max-width: 767px) {
    .srex-about-us-three .srex-section__head__title {
        color: white;
        font-size: 22px;
    }

    .srex-section__head__badge {
        margin-bottom: 5px;
        font-size: 18px;
    }

    .timeline-section .timeline-container::before {
        left: 5px;
    }

    .timeline-section .timeline-item::before {
        left: -2px;
        top: 0px;
        width: 20px;
        height: 20px;
    }

    .timeline-section .timeline-year {
        font-size: 22px;
    }

    .timeline-section .timeline-item p,
    .timeline-item ul {
        font-size: 14px;
        color: #999;
        line-height: 16px;
    }
}

.promises-page-slider .owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 10px;
}

/* Hide default text inside nav buttons */
.promises-page-slider .owl-nav button.owl-prev,
.promises-page-slider .owl-nav button.owl-next {
    background: white !important;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 0 !important;
    /* hide default arrow */
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
    transition: background 0.3s ease;
}

.promises-page-slider .owl-nav button.owl-prev {
    left: -20px;
}

.promises-page-slider .owl-nav button.owl-next {
    right: -20px;
}

/* Add Font Awesome icons using ::before */
.promises-page-slider .owl-nav button.owl-prev::before,
.promises-page-slider .owl-nav button.owl-next::before {
    font-family: "Font Awesome 6 pro";
    font-weight: 900;
    font-size: 18px;
    line-height: 40px;
    text-align: center;
    display: block;
    color: #000;
}

.promises-page-slider .owl-nav button.owl-prev::before {
    content: "\f104";
    /* fa-chevron-left */
}

.promises-page-slider .owl-nav button.owl-next::before {
    content: "\f105";
    /* fa-chevron-right */
}

/* Hover effect */
.promises-page-slider .owl-nav button:hover::before {
    color: #fff;
}

.promises-page-slider .owl-nav button:hover {
    background-color: #658334 !important;
    color: #fff !important;
}

.sub-cat-description {
    padding: 0px 15px;
    text-align: justify;
}

.sub-category-img img {
    width: 100%;
    height: 400px !important;
    object-fit: cover;
    border-radius: 20px;
}

.sub-category-section .section-title {
    font-size: 20px;
    margin-bottom: 20px;
}

.starlink-global .local-img {
    border-radius: 20px;
    height: auto !important;
    margin-bottom: 30px;
    width: 100%;
}

.starlink-global .local-content {
    margin-bottom: 20px;
}

/* .sub-category-box{
margin-bottom: 30px;
} */
@media (max-width: 767px) {
    .sub-category-img img {
        height: 200px !important;
    }

    .sub-cat-description {
        padding: 15px;
    }

    .local-img {
        height: 250px !important;
    }
}

.address-map iframe {
    border-radius: 10px;
    overflow: hidden;
    width: 100%;
    margin-top: 15px;
    height: 150px;
}

.form-check {
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-check-input {
    width: auto !important;
    padding: 15px !important;
}

input[type="checkbox"]:checked {
    background-color: #658334;
    /* Checkbox background */
}

.form-check-input:focus {
    box-shadow: none;
    border: 1px solid #658334;
}

.policy-link {
    text-decoration: underline;
    color: #658334;
}

.starlink-local-bg {
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    position: relative !important;
}

.starlink-local-bg::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.starlink-local-bg .local-content {
    padding: 20px;
    position: relative;
    z-index: 2;
    color: white;
    /* makes all base text white */
}

.starlink-local-bg .local-content h4,
.starlink-local-bg .local-content p,
.starlink-local-bg .local-content li,
.starlink-local-bg .local-content span {
    color: white;
    position: relative !important;
}

.starlink-local-bg .local-content ul {
    position: relative !important;
    padding-left: 20px;
}

.custom-baycom-modal {
    background: #252525;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.7);
}

.custom-baycom-modal .modal-header {
    padding: 20px;
}

.custom-baycom-modal .modal-title {
    color: #ffffff;
}

.custom-baycom-modal .modal-body p {
    color: #cfcfcf;
}

.custom-baycom-modal .btns-close {
    background: #fff;
    cursor: pointer;
    height: 30px;
    width: 30px;
    font-size: 16px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.custom-baycom-modal .modal-img {
    max-height: 300px;
    width: 350px;
    border: 2px solid #58e55d;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6);
    margin-bottom: 1.5rem;
}

.custom-baycom-modal .modal-description {
    color: #cfcfcf;
    font-size: 1rem;
    line-height: 1.7;
}

.timeline-container .client-img {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 5px;
    margin-bottom: 5px;
    flex-wrap: wrap;
}

.timeline-container .client-img img {
    width: 120px;
    border: 1px solid #303030;
    height: 80px;
    object-fit: contain;
    padding: 10px;
}

.past-project-detail img.rounded {
    border-radius: 20px !important;
}

.padding-top {
    padding-top: 0px !important;
}

.cdn-images {
    width: 100%;
    height: 266px;
}

.team-section {
    background: #202020;
    color: #fff;
}

.team-section .team-card {
    background: #fff;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    /* border: 1px solid #ddd; */
    overflow: hidden;

    box-shadow: 0px 0px 60px 0px rgba(0, 0, 0, 0.05);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    margin-bottom: 20px;
    /* height: calc(100% - 100px); */
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.team-section .team-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.55);
}

.team-section .team-card .img-wrap {
    /* position: relative;
    height: 170px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: -60px;
    pointer-events: none; */
}

.team-section .team-card .img-frame {
    /* width: 200px; */
    height: 200px;
    /* border-radius: 15px; */
    background: #658334;
    box-sizing: border-box;
    /* border: 1px solid #ddd; */
    /* box-shadow: 0 8px 18px rgba(0, 0, 0, 0.45); */
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    background-clip: padding-box;
}

.team-section .team-card .team-photo {
    width: 100%;
    height: 100%;
    padding-top: 15px;
    object-position: bottom;
    object-fit: contain;
    display: block;
}

.team-section .team-card .card-body {
    padding: 15px 20px 15px;
    text-align: center;
    /* margin-top: 8px; */
    flex: 1 0 auto;
}

.team-section .team-card .member-name {
    font-size: 22px;
    margin: 0px 0 0px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    /* Number of lines to show */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #658334;
    font-weight: 700;
}

.team-section .team-card .member-role {
    font-size: 15px;
    margin: 0 0 5px;
    color: #000;
    font-weight: 600;
    text-transform: none;
}

.team-section .team-card p {
    font-size: 13px;
    line-height: 1.45;
    margin-bottom: 15px;
    padding: 0 6px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    /* Number of lines to show */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* .team-section .contact-heading {
    margin-bottom: 100px;
} */

.team-section .team-card .btn-act {
    text-align: center;
}

.team-section .team-card .btn-act a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px 20px;
    font-size: 13px;
    border-radius: 5px;
    gap: 10px;
    /* color: #; */
    background-color: #658334;
}

.person-modal-content {
    background: #252525;
    border: none;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    color: #e9e9e9;
}

.person-modal-content .modal-close {
    position: absolute;
    right: 14px;
    top: 12px;
    z-index: 5;
    background: transparent;
    border: none;
}

/* grid inside modal: left portrait, right details */
.person-modal-content .person-modal-grid {
    display: flex;
    gap: 1px;
    align-items: stretch;
    min-height: 360px;
}

/* portrait column */
.person-modal-content .person-portrait-col {
    flex: 0 0 42%;
    background: #1f1f1f;
    /* slightly darker to provide contrast */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 36px 24px;
    box-sizing: border-box;
}

/* framed portrait */
.person-modal-content .portrait-frame {
    width: 220px;
    height: 220px;
    background: #363333;
    border-radius: 15px;
    box-sizing: border-box;
    border: 1px solid #ddd;
    /* gold border */
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.person-modal-content .portrait-img {
    width: 100%;
    height: 100%;
    padding-top: 15px;
    object-fit: contain;
    display: block;
    object-position: bottom;
}

/* details column */
.person-modal-content .person-details-col {
    flex: 1 1 auto;
    padding: 36px 32px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* name + profession */
.person-modal-content .person-name {
    font-size: 22px;
    margin: 0 0 5px;
    color: #ffffff;
    font-weight: 700;
}

.person-modal-content .person-profession {
    margin: 0 0 10px;
    color: #b6904f;
    /* gold accent */
    font-weight: 600;
    letter-spacing: 0.6px;
}

/* description */
.person-modal-content p {
    line-height: 1.55;
    margin-bottom: 15px;
    font-size: 14px;
}

/* small screens: stack layout */
@media (max-width: 768px) {
    .person-modal-grid {
        flex-direction: column;
    }

    .person-portrait-col {
        padding: 28px;
    }

    .portrait-frame {
        width: 180px;
        height: 180px;
    }

    .person-details-col {
        padding: 22px 20px 28px;
    }

    .person-meta {
        gap: 12px;
    }
}

.person-modal-content .btns-close {
    background: #fff;
    cursor: pointer;
    height: 30px;
    width: 30px;
    font-size: 16px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ai-cloud-section .ai-title {
    font-size: 28px;
    line-height: 1.5;
    margin: 4px 0 18px 0;
    font-weight: 700;
    color: #ffffff;
}

.ai-cloud-section .ai-intro {
    max-width: 68ch;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 26px;
    opacity: 0.95;
}

.ai-cloud-section .img-box img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
}

.ai-cloud-section .feature {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-right: 8px;
    padding-left: 8px;
    border: 1px solid #658334;
    padding: 10px;
    border-radius: 15px;
}

.ai-cloud-section .feature ul {
    list-style: none;
    margin: 0;
}

.ai-cloud-section .feature ul li {
    font-size: 16x;
    color: #fff;
    position: relative;
    padding-left: 15px;
    margin-top: 10px;
}

.ai-cloud-section .feature ul li::before {
    content: "";
    width: 7px;
    height: 7px;
    position: absolute;
    border-radius: 50%;
    background-color: #658334;
    top: 5px;
    left: 0px;
    display: block;
}

/* framed circular icon */
.ai-cloud-section .feature-icon {
    display: inline-block;
    margin-bottom: 4px;
}

.ai-cloud-section .icon-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.09);
    /* subtle white ring */
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.6),
        inset 0 -2px 6px rgba(255, 255, 255, 0.02);
    color: #658334;
    font-size: 26px;
    transition: transform 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.ai-cloud-section .icon-circle img {
    width: 40px;
    height: 40px;
}

/* hover/active micro interaction */
.ai-cloud-section .feature:hover .icon-circle,
.ai-cloud-section .feature:focus-within .icon-circle {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.6);
    color: #fff;
}

/* FEATURE TITLE & DESC */
.ai-cloud-section .feature-title {
    font-size: 18px;
    color: #ffffff;
    margin: 0;
    font-weight: 600;
}

.ai-cloud-section .feature-desc {
    color: #cfcfd1;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* layout tweaks */
@media (min-width: 992px) {
    .ai-cloud-section .ai-intro {
        font-size: 16.5px;
    }

    .ai-cloud-section .feature {
        min-height: 160px;
    }
}

/* mobile adjustments */
@media (max-width: 767.98px) {
    .ai-cloud-section .ai-cloud-section {
        padding: 48px 0;
    }

    .ai-cloud-section .ai-title {
        font-size: clamp(28px, 7.4vw, 40px);
    }

    .ai-cloud-section .icon-circle {
        width: 56px;
        height: 56px;
        font-size: 20px;
    }

    .ai-cloud-section .feature {
        /* padding-left: 0;
        padding-right: 0; */
        margin-bottom: 20px;
    }
}

@keyframes floatUp {
    from {
        transform: translateY(8px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.ai-cloud-section .icon-circle {
    animation: floatUp 520ms cubic-bezier(0.2, 0.9, 0.3, 1) both;
}

.ai-steps-section {
    background: linear-gradient(180deg, #120d12 0%, #0f0b10 100%);
}

.ai-steps-section .steps-title {
    font-weight: 700;
    margin: 0 0 12px;
    color: #fff;
    font-size: 28px;
    line-height: 1.03;
    letter-spacing: -0.6px;
}

.ai-steps-section .steps-subtitle {
    max-width: 70ch;
    margin: 0 auto;
    font-size: 15px;
    line-height: 1.7;
    opacity: 0.92;
}

/* --- Step cards --- */
.ai-steps-section .step-card {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 6px;
    padding: 36px 30px 30px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
    transition: transform 0.25s cubic-bezier(0.2, 0.9, 0.25, 1),
        box-shadow 0.25s ease, background 0.25s ease;
    overflow: visible;
    border-left: 1px solid rgba(255, 255, 255, 0.03);
    min-height: 220px;
    outline: none;
}

.ai-steps-section .step-card:hover,
.ai-steps-section .step-card:focus {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.65);
    background: rgba(255, 255, 255, 0.04);
}

.ai-steps-section .step-number {
    position: relative;
    width: 62px;
    height: 62px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border-radius: 10px;
    font-weight: 800;
    color: #658334;
    font-size: 20px;
    letter-spacing: 1px;
    z-index: 2;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.6),
        inset 0 -6px 10px rgba(255, 107, 58, 0.03);
}

.ai-steps-section .step-number img {
    width: 40px;
    height: 40px;
}

.ai-steps-section .step-hed {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

/* decorative vertical accent line near number */
.ai-steps-section .step-number::before {
    content: "";
    position: absolute;
    right: -18px;
    top: 10px;
    width: 1px;
    height: calc(100% - 20px);
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.06),
        rgba(255, 255, 255, 0.01)
    );
    transform-origin: top;
    border-radius: 1px;
    display: none;
    /* shown on larger screens via media query */
}

/* title */
.ai-steps-section .step-title {
    margin: 0;
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
}

/* description */
.ai-steps-section .step-text {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 0;
}

@media (min-width: 992px) {
    .ai-steps-section .step-number::before {
        display: block;
    }

    .ai-steps-section .row > .col-lg-4:nth-child(2) .step-card {
        box-shadow: 0 12px 34px rgba(0, 0, 0, 0.6);
    }

    .ai-steps-section .row > .col-lg-4:not(:last-child) {
        position: relative;
    }

    .ai-steps-section .row > .col-lg-4:not(:last-child)::after {
        content: "";
        position: absolute;
        right: -10px;
        top: 18%;
        width: 1px;
        height: 64%;
        background: linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.04),
            rgba(255, 255, 255, 0.01)
        );
        border-radius: 1px;
        pointer-events: none;
    }
}

.ai-steps-section .step-card:focus {
    box-shadow: 0 22px 46px rgba(0, 0, 0, 0.7),
        0 0 0 4px rgba(255, 107, 58, 0.06);
}

@keyframes riseFade {
    from {
        transform: translateY(8px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.ai-steps-section .step-card {
    animation: riseFade 420ms cubic-bezier(0.2, 0.9, 0.3, 1) both;
}

/* Title + subtitle */
.ai-enterprise-section .enterprise-title {
    font-weight: 700;
    margin: 0 0 8px;
    font-size: 28px;
    line-height: 1.03;
    text-align: center;
}

.ai-enterprise-section .enterprise-sub {
    max-width: 70ch;
    margin: 6px auto 30px;
    font-size: 14px;
    line-height: 1.6;
}

/* FEATURE CARD */
.ai-enterprise-section .feature-card {
    position: relative;
    background: #252525;
    border-radius: 18px;
    padding: 28px 22px 34px 22px;
    min-height: 220px;
    box-shadow: 0 6px 18px rgba(16, 16, 20, 0.06);
    transition: transform 260ms cubic-bezier(0.2, 0.9, 0.25, 1),
        box-shadow 260ms ease, border-color 200ms ease;
    overflow: visible;
    border: 1px solid rgba(16, 16, 20, 0.04);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: 100%;
}

/* lift & stronger shadow on hover + focus */
.ai-enterprise-section .feature-card .feature-card:hover,
.ai-enterprise-section .feature-card .feature-card:focus {
    transform: translateY(-10px);
    box-shadow: 0 22px 48px rgba(16, 16, 20, 0.09);
    border-color: rgba(103, 58, 183, 0.06);
    /* subtle accent on hover */
    outline: none;
}

/* top area with icon */
.ai-enterprise-section .feature-card .feature-top {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 12px;
}

/* icon circle */
.ai-enterprise-section .feature-card .icon-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: linear-gradient(
        180deg,
        rgba(245, 243, 255, 1) 0%,
        rgba(240, 236, 255, 1) 100%
    );
    color: #658334;
    /* accent color (change to brand) */
    font-size: 20px;
    box-shadow: 0 8px 20px rgba(91, 59, 219, 0.08),
        inset 0 -6px 12px rgba(255, 255, 255, 0.6);
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.ai-enterprise-section .feature-card .icon-wrap img {
    height: 30px;
    width: 30px;
}
/* icon interaction */
.ai-enterprise-section .feature-card .feature-card:hover .icon-wrap,
.ai-enterprise-section .feature-card .feature-card:focus .icon-wrap {
    transform: translateY(-6px) rotate(-6deg) scale(1.03);
    box-shadow: 0 18px 36px rgba(91, 59, 219, 0.12);
}

/* heading */
.ai-enterprise-section .feature-card .feature-heading {
    margin: 2px 0 10px 0;
    font-size: 22px;
    font-weight: 700;
    color: #fff;
}

/* copy */
.ai-enterprise-section .feature-card .feature-copy {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 14px;
    flex: 1 0 auto;
}

/* faint decorative SVG ornament placed bottom-right inside card */
.ai-enterprise-section .feature-card .feature-ornament {
    position: absolute;
    right: 12px;
    bottom: 12px;
    width: 130px;
    height: 40px;
    opacity: 0.9;
    pointer-events: none;
    mix-blend-mode: normal;
    fill: none;
}

/* subtle difference of ornament tone per column to add variety */
.ai-enterprise-section .row > .col-lg-4:nth-child(1) .feature-ornament path,
.ai-enterprise-section .row > .col-lg-4:nth-child(1) .feature-ornament circle,
.ai-enterprise-section .row > .col-lg-4:nth-child(1) .feature-ornament rect {
    stroke: #f6f0ee;
}

.ai-enterprise-section .row > .col-lg-4:nth-child(2) .feature-ornament path,
.ai-enterprise-section .row > .col-lg-4:nth-child(2) .feature-ornament circle,
.ai-enterprise-section .row > .col-lg-4:nth-child(2) .feature-ornament rect {
    stroke: #eef7fb;
}

.ai-enterprise-section .row > .col-lg-4:nth-child(3) .feature-ornament path,
.ai-enterprise-section .row > .col-lg-4:nth-child(3) .feature-ornament circle,
.ai-enterprise-section .row > .col-lg-4:nth-child(3) .feature-ornament rect {
    stroke: #f3e9e5;
}

.ai-enterprise-section .row > .col-lg-4:nth-child(4) .feature-ornament path,
.ai-enterprise-section .row > .col-lg-4:nth-child(4) .feature-ornament circle,
.ai-enterprise-section .row > .col-lg-4:nth-child(4) .feature-ornament rect {
    stroke: #eef7fb;
}

.ai-enterprise-section .row > .col-lg-4:nth-child(5) .feature-ornament path,
.ai-enterprise-section .row > .col-lg-4:nth-child(5) .feature-ornament circle,
.ai-enterprise-section .row > .col-lg-4:nth-child(5) .feature-ornament rect {
    stroke: #f3e9e5;
}

.ai-enterprise-section .row > .col-lg-4:nth-child(6) .feature-ornament path,
.ai-enterprise-section .row > .col-lg-4:nth-child(6) .feature-ornament circle,
.ai-enterprise-section .row > .col-lg-4:nth-child(6) .feature-ornament rect {
    stroke: #f6f0ee;
}

/* focus-visible for keyboard users */
.ai-enterprise-section .feature-card:focus-visible {
    box-shadow: 0 22px 52px rgba(16, 16, 20, 0.12),
        0 0 0 4px rgba(91, 59, 219, 0.08);
}

/* responsive tweaks */
@media (max-width: 991.98px) {
    .ai-enterprise-section .ai-enterprise-section .feature-card {
        padding: 22px;
        border-radius: 14px;
    }

    .ai-enterprise-section .icon-wrap {
        width: 48px;
        height: 48px;
        font-size: 18px;
        border-radius: 10px;
    }
}

@media (max-width: 575.98px) {
    .ai-enterprise-section .enterprise-title {
        font-size: clamp(22px, 6.8vw, 28px);
    }

    .ai-enterprise-section .feature-ornament {
        width: 110px;
        height: 36px;
        right: 10px;
        bottom: 10px;
        opacity: 0.95;
    }

    .ai-enterprise-section .feature-card {
        min-height: auto;
    }
}

/* small visual entrance animation */
@keyframes floatIn {
    from {
        transform: translateY(8px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.ai-enterprise-section .feature-card {
    animation: floatIn 420ms cubic-bezier(0.2, 0.9, 0.3, 1) both;
}

@media (max-width: 700px) {
    .team-section .team-card .img-frame {
        /* width: 120px; */
        height: 120px;
    }
    .team-section .team-card .card-body {
        padding: 10px 15px 15px;
        margin-top: 0px;
    }

    .team-section .team-card .member-name {
        margin: 0px 0 5px;
        font-size: 18px;
    }

    .team-section .team-card {
        margin-bottom: 20px;
        height: calc(100% - 20px);
    }

    .team-section .team-card .member-role {
        font-size: 13px;
    }

    .team-section .team-card .btn-act a {
        font-size: 15px;
    }

    .team-section .team-card .img-wrap {
        height: 130px;
    }

    .person-modal-content .person-details-col {
        padding: 20px;
    }

    .person-modal-content .person-portrait-col {
        padding: 30px;
    }

    .person-modal-content .person-profession {
        margin: 0 0 5px;
    }

    .home-banner-box .home-banner-content .starlink-heading h2 {
        font-size: 30px;
        line-height: 35px;
    }
}

.srex-header__call p {
    text-transform: lowercase;
}

.ai-enterprise-section .feature-card .header-box {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.ai-enterprise-section .feature-card h4 {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0px;
}

.serv-list {
    list-style: none;
    margin: 0;
}

.serv-list li {
    font-size: 16x;
    color: #fff;
    position: relative;
    padding-left: 15px;
    margin-top: 10px;
}

.serv-list li::before {
    content: "";
    width: 7px;
    height: 7px;
    position: absolute;
    border-radius: 50%;
    background-color: #658334;
    top: 5px;
    left: 0px;
    display: block;
}

.ai-cloud-section .title {
    font-size: 28px;
    line-height: 1.03;
    text-align: center;
    font-weight: 700;
    margin-bottom: 30px;
}
