@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');

:root {
    --eolimn-font: "DM Sans", sans-serif;
    --eolimn-heading-font: "DM Sans", sans-serif;
    --eolimn-special-font: "Inter", sans-serif;
    --eolimn-outfit-font: "Outfit", sans-serif;
    --eolimn-text: #74787C;
    --eolimn-text-rgb: 116, 120, 124;
    --eolimn-text-dark: #202220;
    --eolimn-text-dark-rgb: 32, 34, 32;
    --eolimn-text-dark2: #1E2436;
    --eolimn-text-dark2-rgb: 30, 36, 54;
    --eolimn-base: #60AC45;
    --eolimn-base-rgb: 96, 172, 69;
    --eolimn-white: #fff;
    --eolimn-white-rgb: 255, 255, 255;
    --eolimn-gray: #F5F5F5;
    --eolimn-gray-rgb: 245, 245, 245;
    --eolimn-black: #000;
    --eolimn-black-rgb: 0, 0, 0;
    --eolimn-border-color: #DEDEDE;
    --eolimn-border-color-rgb: 222, 222, 222;
    --eolimn-letter-space: 0.1em;
    --eolimn-letter-space-xl: 0.2em;
}

/*--------------------------------------------------------------
# Utility
--------------------------------------------------------------*/
.mt-20 {
    margin-top: 20px;
}

.mt-30 {
    margin-top: 30px;
}

.mt-40 {
    margin-top: 40px;
}

.mt-50 {
    margin-top: 50px;
}

.mt-60 {
    margin-top: 60px;
}

.mt-80 {
    margin-top: 80px;
}

.mt-120 {
    margin-top: 120px;
}

.mt--60 {
    margin-top: -60px;
}

.mt--120 {
    margin-top: -120px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mb-40 {
    margin-bottom: 40px;
}

.mb-50 {
    margin-bottom: 50px;
}

.mb-60 {
    margin-bottom: 60px;
}

.mb-80 {
    margin-bottom: 80px;
}

.mb-120 {
    margin-bottom: 120px;
}

.mb--60 {
    margin-bottom: -60px;
}

.mb--120 {
    margin-bottom: -120px;
}

.pt-20 {
    padding-top: 20px;
}

.pt-30 {
    padding-top: 30px;
}

.pt-40 {
    padding-top: 40px;
}

.pt-50 {
    padding-top: 50px;
}

.pt-60 {
    padding-top: 60px;
}

.pt-80 {
    padding-top: 80px;
}

.pt-100 {
    padding-top: 100px;
}

.pt-110 {
    padding-top: 110px;
}

.pt-115 {
    padding-top: 115px;
}

.pt-120 {
    padding-top: 120px;
}

.pt-142 {
    padding-top: 142px;
}

.pb-20 {
    padding-bottom: 20px;
}

.pb-30 {
    padding-bottom: 30px;
}

.pb-40 {
    padding-bottom: 40px;
}

.pb-50 {
    padding-bottom: 50px;
}

.pb-60 {
    padding-bottom: 60px;
}

.pb-80 {
    padding-bottom: 80px;
}

.pb-90 {
    padding-bottom: 90px;
}

.pb-100 {
    padding-bottom: 100px;
}

.pb-110 {
    padding-bottom: 110px;
}

.pb-115 {
    padding-bottom: 115px;
}

.pb-120 {
    padding-bottom: 120px;
}

.pl-5 {
    padding-left: 5px;
}

.pl-10 {
    padding-left: 10px;
}

.pl-15 {
    padding-left: 15px;
}

.pl-20 {
    padding-left: 20px;
}

.pl-30 {
    padding-left: 30px;
}

.pr-5 {
    padding-right: 5px;
}

.pr-10 {
    padding-right: 10px;
}

.pr-15 {
    padding-right: 15px;
}

.pr-20 {
    padding-right: 20px;
}

.pr-30 {
    padding-right: 30px;
}

/*--------------------------------------------------------------
# Button
--------------------------------------------------------------*/
.eolimn-btn {
    text-transform: capitalize;
    border: 1px solid #feb21f;
    z-index: 1;
    display: inline-block;
    vertical-align: middle;
    -webkit-appearance: none;
    outline: none !important;
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.3125;
    font-family: var(--eolimn-font, "DM Sans", sans-serif);
    padding: 11px 8px;
    transition: 500ms;
    background-color: transparent;
    color: #feb21f;
    position: relative;
    overflow: hidden;
    border-radius: 6px;
}

a.main-header__right__btn.eolimn-btn {
}

.eolimn-btn:hover {
    color: transparent;
}

.eolimn-btn i {
    margin-left: 7px;
    overflow: hidden;
    font-size: 12px;
}

.eolimn-btn::before {
    content: "";
    position: absolute;
    width: 100%;
    top: 0px;
    left: 0;
    height: 100%;
    transform: rotateX(90deg);
    background-color: #feb21f;
    transition: all 0.8s ease;
    z-index: -1;
}

.eolimn-btn:hover {
    color: var(--eolimn-white, #fff);
}

    .eolimn-btn:hover:before {
        transform: rotateX(0deg);
    }

.eolimn-btn--base {
    color: var(--eolimn-white, #fff);
    z-index: 1;
}

    .eolimn-btn--base:before {
        transform: rotateX(0deg);
    }

    .eolimn-btn--base:hover {
        color: var(--eolimn-base, #60AC45);
    }

        .eolimn-btn--base:hover::before {
            transform: rotateX(90deg);
        }

.eolimn-btn--black {
    color: var(--eolimn-white, #fff);
    z-index: 1;
}

    .eolimn-btn--black:before {
        transform: rotateX(90deg);
        background: var(--eolimn-text-dark, #202220);
    }

    .eolimn-btn--black:hover {
        color: var(--eolimn-base, #60AC45);
        border: 1px solid var(--eolimn-text-dark, #202220);
    }

        .eolimn-btn--black:hover::before {
            transform: rotateX(0deg);
        }

/*--------------------------------------------------------------
# Common
--------------------------------------------------------------*/
body {
    font-family: var(--eolimn-font, "DM Sans", sans-serif);
    color: var(--eolimn-text, #74787C);
    font-size: 16px;
    line-height: 2.125;
    font-weight: 500;
}

    body.locked {
        overflow: hidden;
    }

a {
    color: var(--eolimn-base, #60AC45);
    transition: all 400ms ease;
}

    a,
    a:hover,
    a:focus,
    a:visited {
        text-decoration: none;
    }

::placeholder {
    color: inherit;
    opacity: 1;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--eolimn-heading-font, "DM Sans", sans-serif);
    color: var(--eolimn-black, #000);
}

@media (max-width: 575px) {
    h1 br,
    h2 br,
    h3 br,
    h4 br,
    h5 br,
    h6 br {
        display: none;
    }
}

@media (max-width: 575px) {
    p br {
        display: none;
    }
}

::placeholder {
    color: inherit;
    opacity: 1;
}

.page-wrapper {
    position: relative;
    margin: 0 auto;
    width: 100%;
    min-width: 300px;
    overflow: hidden;
}

.container-fluid,
.container {
    padding-left: 15px;
    padding-right: 15px;
}

@media (min-width: 1200px) {
    .container {
        max-width: 1200px;
    }
}

.row {
    --bs-gutter-x: 30px;
}

.gutter-y-10 {
    --bs-gutter-y: 10px;
}

.gutter-y-15 {
    --bs-gutter-y: 15px;
}

.gutter-y-20 {
    --bs-gutter-y: 20px;
}

.gutter-y-30 {
    --bs-gutter-y: 30px;
}

.gutter-y-60 {
    --bs-gutter-y: 60px;
}

.tabs-box .tabs-content .tab:not(.active-tab) {
    display: none;
}

.bootstrap-select .dropdown-menu {
    padding-top: 0;
    padding-bottom: 0;
    border-radius: 0;
}

.bootstrap-select .dropdown-item.active,
.bootstrap-select .dropdown-item:active {
    background-color: var(--eolimn-base, #60AC45);
}

.tns-outer .tns-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
}

    .tns-outer .tns-controls button {
        width: 45px;
        height: 45px;
        border: 2px solid #f4f4f4;
        outline: none;
        display: flex;
        justify-content: center;
        align-items: center;
        color: var(--eolimn-text, #74787C);
        border-radius: 50%;
        margin-left: 5px;
        margin-right: 5px;
    }

.ul-list-one {
    margin-bottom: 0;
}

    .ul-list-one li {
        position: relative;
        padding-left: 45px;
        font-size: 16px;
        font-weight: 500;
        color: var(--eolimn-black, #000);
    }

@media (min-width: 481px) {
    .ul-list-one li {
        font-size: 20px;
    }
}

.ul-list-one li::before {
    content: "\e907";
    color: var(--eolimn-base, #60AC45);
    font-size: 26px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    font-family: "azino-icon";
}

.preloader {
    position: fixed;
    background-color: var(--eolimn-black, #000);
    background-position: center center;
    background-repeat: no-repeat;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9991;
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    text-align: center;
}

.preloader__image {
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: flipInY;
    animation-name: flipInY;
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 60px auto;
    width: 100%;
    height: 100%;
}

/* scroll to top */
.scroll-to-top {
    display: flex;
    align-items: center;
    width: auto;
    height: 35px;
    background: transparent;
    position: fixed;
    bottom: 60px;
    right: -12px;
    z-index: 99;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    transform: rotate(-90deg);
    cursor: pointer;
    transition: all 0.2s ease;
}

.scroll-to-top__text {
    display: inline;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
    margin-right: 8px;
}

.scroll-to-top__wrapper {
    display: inline-block;
    width: 30px;
    height: 4px;
    background-color: var(--eolimn-base, #60AC45);
    position: relative;
    overflow: hidden;
}

.scroll-to-top__inner {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: var(--eolimn-black, #000);
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
    bottom: 70px;
}

/* post paginations */
.post-pagination {
    margin: 0;
    padding: 0;
    list-style: none;
    margin-top: 50px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 11px;
}

    .post-pagination li:last-child a:hover, .post-pagination li:first-child a:hover {
        background: var(--eolimn-base, #60AC45);
        color: var(--eolimn-white, #fff);
    }

    .post-pagination a {
        width: 40px;
        height: 40px;
        background-color: var(--eolimn-gray, #F5F5F5);
        color: var(--eolimn-text, #74787C);
        text-transform: capitalize;
        text-align: center;
        border-radius: 50%;
        border: 1px solid transparent;
        transition: all 400ms ease;
        font-style: normal;
        font-weight: 500;
        font-size: 16px;
        line-height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

        .post-pagination a:hover {
            background: transparent;
            color: var(--eolimn-base, #60AC45);
            border: 1px solid var(--eolimn-base, #60AC45);
        }

        .post-pagination a i {
            line-height: 1;
            font-size: 14px;
        }

.eolimn-owl__carousel--with-shadow .owl-stage-outer {
    overflow: visible;
}

.eolimn-owl__carousel--with-shadow .owl-item {
    opacity: 0;
    visibility: hidden;
    transition: opacity 500ms ease, visibility 500ms ease;
}

    .eolimn-owl__carousel--with-shadow .owl-item.active {
        opacity: 1;
        visibility: visible;
    }

.eolimn-owl__carousel--basic-nav.owl-carousel .owl-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 60px;
}

    .eolimn-owl__carousel--basic-nav.owl-carousel .owl-nav button {
        border: none;
        outline: none;
        opacity: 1;
        margin: 0;
        padding: 0;
        background: transparent;
    }

        .eolimn-owl__carousel--basic-nav.owl-carousel .owl-nav button span {
            border: none;
            outline: none;
            width: 50px;
            height: 50px;
            background-color: var(--eolimn-base, #60AC45);
            display: flex;
            justify-content: center;
            opacity: 1;
            align-items: center;
            color: var(--eolimn-white, #fff);
            font-size: 14px;
            transition: all 500ms ease;
            border: 1px solid transparent;
        }

            .eolimn-owl__carousel--basic-nav.owl-carousel .owl-nav button span:hover {
                background-color: transparent;
                color: var(--eolimn-white, #fff);
                border: 1px solid var(--eolimn-border-color, #DEDEDE);
            }

        .eolimn-owl__carousel--basic-nav.owl-carousel .owl-nav button:hover {
            background: transparent;
        }

.eolimn-owl__carousel--basic-nav.owl-carousel .owl-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 60px;
}

    .eolimn-owl__carousel--basic-nav.owl-carousel .owl-dots .owl-dot span {
        background-color: var(--eolimn-black, #000);
        border: 2px solid var(--eolimn-white, #fff);
        box-shadow: 0 0 1px rgba(var(--eolimn-black-rgb, 0, 0, 0), 1);
        margin: 0;
    }

    .eolimn-owl__carousel--basic-nav.owl-carousel .owl-dots .owl-dot:hover span, .eolimn-owl__carousel--basic-nav.owl-carousel .owl-dots .owl-dot.active span {
        background-color: var(--eolimn-black, #000);
        border: 2px solid var(--eolimn-black, #000);
        box-shadow: 0 0 1px rgba(var(--eolimn-black-rgb, 0, 0, 0), 1);
    }

    .eolimn-owl__carousel--basic-nav.owl-carousel .owl-dots.disabled {
        display: none;
    }

.eolimn-owl__carousel--basic-nav.owl-carousel .owl-nav.disabled + .owl-dots {
    margin-top: 60px;
}

.eolimn-owl__carousel--basic-nav.owl-carousel .owl-nav.disabled {
    display: none;
}

.sec-title {
    padding-bottom: 40px;
}

@media (max-width: 767px) {
    .sec-title {
        padding-bottom: 35px;
    }
}

@media (max-width: 575px) {
    .sec-title {
        padding-bottom: 30px;
    }
}

.sec-title__img {
    display: inline-flex;
    margin-bottom: 15px;
}

.sec-title--two .sec-title__title,
.sec-title--two .sec-title__tagline,
.sec-title--two .sec-title__icon {
    color: var(--eolimn-white, #fff);
}

.sec-title__tagline {
    margin: 0;
    color: var(--eolimn-base, #60AC45);
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.sec-title__icon {
    font-size: 16px;
    color: var(--eolimn-base, #60AC45);
    margin-right: 10px;
    margin-bottom: 15px;
}

.sec-title__title {
    font-style: normal;
    font-weight: 700;
    font-size: 35px;
    line-height: 100%;
    margin-bottom: 0;
    margin-top: -2px;
    color: var(--eolimn-text-dark, #202220);
    letter-spacing: 0.03em;
    text-transform: capitalize;
}

@media (max-width: 991px) {
    .sec-title__title {
        font-size: 32px;
    }
}

@media (max-width: 767px) {
    .sec-title__title {
        font-size: 45px;
    }
}

@media (max-width: 575px) {
    .sec-title__title {
        font-size: 32px;
    }
}

.eolimn-slick__carousel--with-shadow .slick-list {
    overflow: visible;
}

.eolimn-slick__carousel--with-shadow .slick-slide {
    opacity: 0;
    visibility: hidden;
    transition: opacity 500ms ease, visibility 500ms ease;
}

    .eolimn-slick__carousel--with-shadow .slick-slide.slick-active {
        opacity: 1;
        visibility: visible;
    }

.ui-datepicker .ui-datepicker-header {
    background-image: none;
    background-color: var(--eolimn-black, #000);
    color: var(--eolimn-white, #fff);
    font-family: var(--eolimn-font, "DM Sans", sans-serif);
}

.ui-datepicker-calendar th span {
    font-family: var(--eolimn-font, "DM Sans", sans-serif);
}

.ui-datepicker-calendar td {
    background-color: var(--eolimn-gray, #F5F5F5);
    background-image: none;
    font-family: var(--eolimn-font, "DM Sans", sans-serif);
    color: var(--eolimn-text, #74787C);
}

    .ui-datepicker-calendar td a {
        border-color: var(--eolimn-border-color, #DEDEDE);
        background-color: var(--eolimn-gray, #F5F5F5);
        background-image: none;
    }

.ui-datepicker-calendar .ui-state-default,
.ui-datepicker-calendar .ui-widget-content .ui-state-default,
.ui-datepicker-calendar .ui-widget-header .ui-state-default {
    border-color: var(--eolimn-border-color, #DEDEDE);
    background-color: var(--eolimn-gray, #F5F5F5);
    background-image: none;
    color: var(--eolimn-text, #74787C);
    padding: 10px 5px;
    text-align: center;
    line-height: 1em;
}

    .ui-datepicker-calendar .ui-state-default:hover,
    .ui-datepicker-calendar .ui-widget-content .ui-state-default:hover,
    .ui-datepicker-calendar .ui-widget-header .ui-state-default:hover {
        color: var(--eolimn-white, #fff);
        background-color: var(--eolimn-base, #60AC45);
    }

.ui-datepicker-calendar .ui-state-highlight,
.ui-datepicker-calendar .ui-widget-content .ui-state-highlight,
.ui-datepicker-calendar .ui-widget-header .ui-state-highlight {
    color: var(--eolimn-white, #fff);
    background-color: var(--eolimn-base, #60AC45);
}

.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
    background-image: none;
    background-color: var(--eolimn-white, #fff);
    color: var(--eolimn-black, #000);
}

    .ui-datepicker .ui-datepicker-prev:hover,
    .ui-datepicker .ui-datepicker-next:hover {
        background-color: var(--eolimn-base, #60AC45);
        color: var(--eolimn-white, #fff);
        top: 2px;
    }

    .ui-datepicker .ui-datepicker-prev:hover {
        left: 2px;
    }

    .ui-datepicker .ui-datepicker-next:hover {
        right: 2px;
    }

/*--------------------------------------------------------------
# Cards
--------------------------------------------------------------*/
.video-one {
    position: relative;
    background-color: var(--eolimn-black, #000);
    padding: 100px 0;
}

.video-one__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--eolimn-black, #000);
    background-size: cover;
    background-position: center center;
    opacity: 0.5;
}

.video-one .container {
    position: relative;
    text-align: center;
}

.video-one__btn {
    width: 145px;
    height: 145px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    position: relative;
}

    .video-one__btn .video-popup {
        font-size: 24px;
        color: var(--eolimn-white, #fff);
        transition: all 500ms ease;
        position: relative;
        z-index: 10;
    }

        .video-one__btn .video-popup:hover {
            color: var(--eolimn-base, #60AC45);
        }

    .video-one__btn .curved-circle {
        position: absolute;
        top: 0;
        left: 0;
        width: 145px;
        height: 145px;
        transform-origin: center center;
        display: flex;
        justify-content: center;
        align-items: center;
        animation: textRotate 15s linear 0s forwards infinite alternate;
    }

    .video-one__btn .curved-circle--item {
        width: 145px;
    }

        .video-one__btn .curved-circle--item span {
            text-transform: uppercase;
            font-size: 14px;
            color: var(--eolimn-white, #fff);
            letter-spacing: 0.4em;
        }

.video-one__title {
    margin: 0;
    text-transform: uppercase;
    color: var(--eolimn-white, #fff);
    font-size: 40px;
    line-height: 1.2em;
    margin-bottom: 40px;
    margin-top: 30px;
}

@media (min-width: 768px) {
    .video-one__title {
        font-size: 50px;
    }
}

@media (min-width: 992px) {
    .video-one__title {
        font-size: 60px;
        margin-top: 20px;
        margin-bottom: 35px;
    }
}

.video-one__link::before {
    background-color: var(--eolimn-base, #60AC45);
}

.video-two {
    position: relative;
    background-color: var(--eolimn-black, #000);
    padding: 143px 0 320px;
}

@media (max-width: 767px) {
    .video-two {
        padding: 100px 0 270px;
    }

        .video-two .text-end {
            text-align: left !important;
        }
}

.video-two__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--eolimn-black, #000);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 0.5;
}

.video-two__shape {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-position: left top;
    background-repeat: no-repeat;
    background-size: auto;
}

@media (max-width: 1199px) {
    .video-two__shape {
        display: none;
    }
}

.video-two .container {
    position: relative;
}

.video-two__btn {
    width: 145px;
    height: 145px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    position: relative;
    margin-top: 42px;
}

    .video-two__btn .video-popup {
        font-size: 24px;
        color: var(--eolimn-white, #fff);
        transition: all 500ms ease;
        position: relative;
        z-index: 10;
    }

        .video-two__btn .video-popup:hover {
            color: var(--eolimn-base, #60AC45);
        }

    .video-two__btn .curved-circle {
        position: absolute;
        top: 0;
        left: 0;
        width: 145px;
        height: 145px;
        transform-origin: center center;
        display: flex;
        justify-content: center;
        align-items: center;
        animation: textRotate 15s linear 0s forwards infinite alternate;
    }

    .video-two__btn .curved-circle--item {
        width: 145px !important;
        height: 145px !important;
    }

        .video-two__btn .curved-circle--item span {
            text-transform: uppercase;
            font-size: 14px;
            color: var(--eolimn-white, #fff);
            letter-spacing: 0.4em;
        }

.video-two__title {
    margin: 0;
    text-transform: uppercase;
    color: var(--eolimn-white, #fff);
    font-size: 40px;
    line-height: 1.2em;
    margin-bottom: 40px;
}

@media (min-width: 768px) {
    .video-two__title {
        font-size: 50px;
    }
}

@media (min-width: 992px) {
    .video-two__title {
        font-size: 60px;
        margin-bottom: 35px;
    }
}

.video-two__link::before {
    background-color: var(--eolimn-base, #60AC45);
}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
/*Team Card*/
.team-card {
    position: relative;
    z-index: 1;
}

.team-card__image {
    position: relative;
    overflow: hidden;
}

    .team-card__image img {
        position: relative;
        max-width: 100%;
        transform: scale(1) rotate(0deg);
        transition: all 0.4s ease-in-out;
        width: 100%;
        object-fit: cover;
    }

    .team-card__image::after {
        content: "";
        width: 100%;
        height: 0%;
        background: rgba(var(--eolimn-text-dark-rgb, 32, 34, 32), 0.7);
        position: absolute;
        top: 0;
        left: 0;
        transition: all 0.4s ease-in-out;
    }

.team-card__content {
    position: relative;
    z-index: 1;
    margin-top: -100px;
    margin-left: 15px;
    margin-right: 15px;
    background: var(--eolimn-white, #fff);
    box-shadow: 0px 4px 25px rgba(0, 0, 0, 0.06);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
}

.team-card__title {
    margin-top: -6px;
    font-style: normal;
    font-weight: 600;
    font-size: 22px;
    line-height: 136%;
    margin-bottom: 9px;
    padding-bottom: 0;
    text-transform: capitalize;
    text-shadow: 0 0 0.1px currentColor;
}

    .team-card__title a {
        color: inherit;
        background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
        transition: all 500ms ease;
    }

        .team-card__title a:hover {
            background-size: 100% 1px;
        }

        .team-card__title a:hover {
            color: var(--eolimn-base, #60AC45);
        }

.team-card__designation {
    font-style: normal;
    font-weight: 400;
    margin-bottom: 15px;
    font-size: 16px;
    line-height: 162%;
    padding-bottom: 0;
    color: var(--eolimn-text, #74787C);
    text-transform: capitalize;
}

.team-card__social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

    .team-card__social a {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: var(--eolimn-white, #fff);
        box-shadow: 0px 4px 25px rgba(0, 0, 0, 0.06);
        font-size: 18px;
        color: var(--eolimn-base, #60AC45);
        position: relative;
        transition: all 0.4s ease-in-out;
        z-index: 1;
    }

        .team-card__social a::after {
            content: "";
            width: 0;
            height: 0;
            position: absolute;
            top: 50%;
            left: 50%;
            background: var(--eolimn-base, #60AC45);
            border-radius: 50%;
            transition: all 0.4s ease-in-out;
            z-index: -1;
        }

        .team-card__social a:hover {
            color: var(--eolimn-white, #fff);
        }

            .team-card__social a:hover::after {
                width: 100%;
                height: 100%;
                top: 0;
                left: 0;
            }

.team-card:hover .team-card__image img {
    transform: scale(1.1) rotate(3deg);
}

.team-card:hover .team-card__image::after {
    height: 100%;
}

/*Team one*/
.team-one {
    padding-top: 120px;
    padding-bottom: 120px;
    background-color: var(--eolimn-white, #fff);
}

@media (max-width: 991px) {
    .team-one {
        padding-top: 100px;
        padding-bottom: 100px;
    }
}

@media (max-width: 767px) {
    .team-one {
        padding-top: 80px;
        padding-bottom: 80px;
    }
}

@media (min-width: 992px) {
    .team-one__carousel .owl-nav {
        display: none;
    }
}

.team-one__top {
    padding-bottom: 51px;
}

@media (max-width: 991px) {
    .team-one__top {
        padding-bottom: 40px;
    }
}

.team-one__top .sec-title {
    padding-bottom: 0;
}

@media (max-width: 767px) {
    .team-one__top .sec-title {
        padding-bottom: 20px;
    }
}

.team-one__top__btn {
    text-align: end;
}

@media (max-width: 767px) {
    .team-one__top__btn {
        text-align: left;
    }
}

/*Team Two*/
.team-two {
    position: relative;
    padding-top: 120px;
    padding-bottom: 120px;
    background-color: var(--eolimn-white, #fff);
}

@media (max-width: 991px) {
    .team-two {
        padding-top: 100px;
        padding-bottom: 100px;
    }
}

@media (max-width: 767px) {
    .team-two {
        padding-top: 80px;
        padding-bottom: 80px;
    }
}

.team-two__top {
    padding-bottom: 55px;
}

@media (max-width: 991px) {
    .team-two__top {
        padding-bottom: 40px;
    }
}

@media (max-width: 767px) {
    .team-two__top {
        padding-bottom: 30px;
    }
}

.team-two__top .sec-title {
    padding-bottom: 0;
}

@media (max-width: 991px) {
    .team-two__top .sec-title {
        padding-bottom: 20px;
    }
}

.team-two__top .team-two__btn {
    text-align: end;
}

@media (max-width: 991px) {
    .team-two__top .team-two__btn {
        text-align: start;
    }
}

.team-two__card {
    position: relative;
    overflow: hidden;
}

.team-two__card__social {
    position: absolute;
    top: 30px;
    left: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-direction: column;
    transform: translateX(-200%);
    transition: all 0.4s ease-in-out;
}

    .team-two__card__social a {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: var(--eolimn-white, #fff);
        box-shadow: 0px 4px 25px rgba(0, 0, 0, 0.06);
        font-size: 18px;
        color: var(--eolimn-base, #60AC45);
        position: relative;
        transition: all 0.4s ease-in-out;
        z-index: 1;
    }

        .team-two__card__social a::after {
            content: "";
            width: 0;
            height: 0;
            position: absolute;
            top: 50%;
            left: 50%;
            background: var(--eolimn-base, #60AC45);
            border-radius: 50%;
            transition: all 0.4s ease-in-out;
            z-index: -1;
        }

        .team-two__card__social a:hover {
            color: var(--eolimn-white, #fff);
        }

            .team-two__card__social a:hover::after {
                width: 100%;
                height: 100%;
                top: 0;
                left: 0;
            }

.team-two__card:hover .team-two__thumb img {
    transform: scale(1.1);
}

.team-two__card:hover .team-two__thumb::after {
    transform: translateY(0%);
}

.team-two__card:hover .team-two__card__social {
    transform: translateX(0%);
}

.team-two__card:hover .team-two__content {
    background: var(--eolimn-base, #60AC45);
}

    .team-two__card:hover .team-two__content .team-two__content__title,
    .team-two__card:hover .team-two__content .team-two__content__dec {
        color: var(--eolimn-white, #fff);
    }

.team-two__thumb {
    position: relative;
}

    .team-two__thumb img {
        position: relative;
        object-fit: cover;
        width: 100%;
        transform: scale(1);
        transition: all 0.4s ease-in-out;
    }

    .team-two__thumb::after {
        position: absolute;
        content: "";
        width: 100%;
        height: 100%;
        transform: translateY(-100%);
        left: 0;
        top: 0;
        background-color: rgba(var(--eolimn-text-dark-rgb, 32, 34, 32), 0.7);
        transition: all 0.4s ease-in-out;
    }

.team-two__content {
    background: var(--eolimn-white, #fff);
    padding: 23px 18px;
    position: absolute;
    transform: rotate(-180deg);
    position: absolute;
    writing-mode: vertical-rl;
    bottom: 30px;
    right: 30px;
    transition: all 0.4s ease-in-out;
}

.team-two__content__title {
    margin-left: 0;
    margin-right: 0;
    margin-top: -7px;
    font-style: normal;
    font-weight: 600;
    font-size: 22px;
    line-height: 136%;
    margin-bottom: 0px;
    padding-bottom: 0;
    color: var(--eolimn-text-dark, #202220);
    text-transform: capitalize;
}

    .team-two__content__title a {
        color: inherit;
    }

        .team-two__content__title a:hover {
            color: var(--eolimn-text-dark, #202220);
        }

.team-two__content__dec {
    font-family: var(--eolimn-font, "DM Sans", sans-serif);
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 162%;
    color: var(--eolimn-text, #74787C);
    margin-bottom: -5px;
    text-transform: capitalize;
    transition: all 0.4s ease-in-out;
}

/*team-details*/
.team-details {
    padding-top: 120px;
    padding-bottom: 120px;
    background-color: var(--eolimn-white, #fff);
}

@media (max-width: 991px) {
    .team-details {
        padding-top: 100px;
        padding-bottom: 100px;
    }
}

@media (max-width: 767px) {
    .team-details {
        padding-top: 80px;
        padding-bottom: 80px;
    }
}

.team-details__inner {
    background: var(--eolimn-gray, #F5F5F5);
    position: relative;
    z-index: 1;
    padding: 60px;
}

@media (max-width: 991px) {
    .team-details__inner {
        padding: 30px 20px;
    }
}

.team-details__thumb {
    position: relative;
    overflow: hidden;
    margin-right: 50px;
}

@media (max-width: 991px) {
    .team-details__thumb {
        margin-right: 0;
    }
}

.team-details__thumb__image {
    position: relative;
}

    .team-details__thumb__image img {
        object-fit: cover;
        width: 100%;
    }

    .team-details__thumb__image:hover .team-details__thumb__social {
        left: 30px;
        transform: translateX(0%);
    }

.team-details__thumb__content {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: var(--eolimn-white, #fff);
    padding: 30px;
}

.team-details__thumb__title {
    margin-top: -7px;
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    line-height: 100%;
    color: var(--eolimn-text-dark, #202220);
    margin-bottom: 13px;
    padding-bottom: 0;
    text-transform: capitalize;
}

.team-details__thumb__dec {
    text-transform: capitalize;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 88%;
    margin-bottom: 0;
    padding-bottom: 0;
    color: var(--eolimn-text, #74787C);
}

.team-details__thumb__social {
    position: absolute;
    top: 30px;
    left: 0px;
    gap: 6px;
    display: inline-flex;
    align-items: center;
    flex-direction: column;
    transform: translateX(-100%);
    transition: all 0.4s ease-in-out;
}

    .team-details__thumb__social a {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: var(--eolimn-white, #fff);
        box-shadow: 0px 4px 25px rgba(0, 0, 0, 0.06);
        font-size: 18px;
        color: var(--eolimn-base, #60AC45);
        position: relative;
        transition: all 0.4s ease-in-out;
        z-index: 1;
    }

        .team-details__thumb__social a::after {
            content: "";
            width: 0;
            height: 0;
            position: absolute;
            top: 50%;
            left: 50%;
            background: var(--eolimn-base, #60AC45);
            border-radius: 50%;
            transition: all 0.4s ease-in-out;
            z-index: -1;
        }

        .team-details__thumb__social a:hover {
            color: var(--eolimn-white, #fff);
        }

            .team-details__thumb__social a:hover::after {
                width: 100%;
                height: 100%;
                top: 0;
                left: 0;
            }

.team-details__content {
    margin-left: -40px;
}

@media (max-width: 991px) {
    .team-details__content {
        margin-left: 0px;
    }
}

.team-details__content__about {
    border-bottom: 1px solid var(--eolimn-border-color, #DEDEDE);
    padding-bottom: 22px;
    margin-bottom: 30px;
}

.team-details__content__title {
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 175%;
    margin-bottom: 3px;
    padding-bottom: 0;
    color: var(--eolimn-text-dark, #202220);
}

.team-details__content__text {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 175%;
    margin-bottom: 0;
    padding-bottom: 0;
    color: var(--eolimn-text, #74787C);
}

.team-details__link__item {
    display: flex;
    align-items: start;
    gap: 15px;
}

    .team-details__link__item:hover .team-details__link__icon {
        border: 1px solid var(--eolimn-base, #60AC45);
        color: var(--eolimn-white, #fff);
    }

        .team-details__link__item:hover .team-details__link__icon::after {
            width: 100%;
            height: 100%;
            left: 0;
            top: 0;
        }

    .team-details__link__item + .team-details__link__item {
        margin-top: 40px;
    }

@media (max-width: 991px) {
    .team-details__link__item + .team-details__link__item {
        margin-top: 25px;
    }
}

.team-details__link__icon {
    width: 100%;
    max-width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid var(--eolimn-border-color, #DEDEDE);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    color: var(--eolimn-base, #60AC45);
    position: relative;
    transition: all 0.4s ease-in-out;
}

    .team-details__link__icon::after {
        content: "";
        width: 0%;
        height: 0%;
        background: var(--eolimn-base, #60AC45);
        position: absolute;
        top: 50%;
        left: 50%;
        border-radius: 50%;
        transition: all 0.4s ease-in-out;
        z-index: -1;
    }

.team-details__link__title {
    display: block;
    font-family: var(--eolimn-font, "DM Sans", sans-serif);
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 100%;
    color: var(--eolimn-text-dark, #202220);
    text-shadow: 0 0 0.1px currentColor;
    text-transform: capitalize;
}

.team-details__link a,
.team-details__link p {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 160%;
    color: var(--eolimn-text, #74787C);
    margin-bottom: 0;
    padding-bottom: 0;
}

.team-details__link a {
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
    transition: all 500ms ease;
}

    .team-details__link a:hover {
        background-size: 100% 1px;
    }

    .team-details__link a:hover {
        color: var(--eolimn-base, #60AC45);
    }

/*team-details*/
.team-skills-one {
    position: relative;
    padding: 60px 0px;
    background: var(--eolimn-gray, #F5F5F5);
}

.team-skills-one__top {
    margin-bottom: 50px;
}

.team-skills-one__top__title {
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 120%;
    letter-spacing: -0.02em;
    text-transform: capitalize;
    color: var(--eolimn-text-dark, #202220);
    text-shadow: 0 0 0.1px currentColor;
    margin-bottom: 18px;
}

.team-skills-one__top__text {
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 188%;
    margin-bottom: 0;
    padding-bottom: 0;
    color: var(--eolimn-text, #74787C);
}

    .team-skills-one__top__text + .team-skills-one__top__text {
        margin-top: 29px;
    }

@media (max-width: 991px) {
    .team-skills-one__top__text + .team-skills-one__top__text {
        margin-top: 20px;
    }
}

.team-skills-one__inner {
    background: var(--eolimn-white, #fff);
    padding: 30px 40px;
}

@media (max-width: 991px) {
    .team-skills-one__inner {
        padding: 20px;
    }
}

.team-skills-one__inner__title {
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 120%;
    letter-spacing: -0.02em;
    text-transform: capitalize;
    color: var(--eolimn-text-dark, #202220);
    text-shadow: 0 0 0.1px currentColor;
    margin-bottom: 27px;
}

.team-skills-one__skills {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 20px 31px;
    margin-bottom: 42px;
}

@media (max-width: 991px) {
    .team-skills-one__skills {
        grid-template-columns: 1fr;
        grid-gap: 20px;
    }
}

/*team-Progress*/
.progress-box__title {
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 188%;
    color: var(--eolimn-text-dark, #202220);
    text-transform: capitalize;
    margin-bottom: 0;
    padding-bottom: 0;
}

.progress-box__bar {
    width: 100%;
    height: 15px;
    background-color: var(--eolimn-gray, #F5F5F5);
    position: relative;
}

.progress-box__bar__inner {
    position: absolute;
    height: 100%;
    top: 0;
    left: 0;
    background-color: var(--eolimn-base, #60AC45);
    transition: all 800ms linear;
    width: 0px;
}

.progress-box__number {
    position: absolute;
    bottom: calc(100% + 2px);
    right: 0;
    font-size: 16px;
    color: var(--eolimn-text-dark, #202220);
    font-weight: 700;
    line-height: 1.875;
    text-transform: uppercase;
}

/*--------------------------------------------------------------
# Blog Section
--------------------------------------------------------------*/
/*Blog Card Style*/
.blog-card {
    position: relative;
    background-color: var(--eolimn-white, #fff);
}

.blog-card__image {
    display: block;
    position: relative;
    overflow: hidden;
}

    .blog-card__image::before {
        position: absolute;
        top: 0;
        width: 0%;
        height: 100%;
        background: rgba(255, 255, 255, 0.3);
        bottom: 0;
        content: "";
        left: 50%;
        right: 51%;
        z-index: 1;
        opacity: 1;
        pointer-events: none;
        transition: all 400ms linear;
    }

.blog-card__image__item img {
    width: 100%;
    object-fit: cover;
    transform: scale(1);
    transition: all 0.5s ease-in-out;
}

.blog-card__date {
    text-align: center;
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--eolimn-white, #fff);
    font-family: var(--eolimn-font, "DM Sans", sans-serif);
    font-style: normal;
    font-weight: 700;
    font-size: 14px;
    line-height: 18px;
    margin-bottom: 0;
    padding-bottom: 0;
    color: var(--eolimn-text-dark, #202220);
    text-transform: uppercase;
}

.blog-card__date__day {
    padding: 5px 9px 5px 10px;
    color: var(--eolimn-white, #fff);
    display: block;
    background: var(--eolimn-base, #60AC45);
}

.blog-card__date__month {
    padding: 2px 9px 2px 10px;
    display: block;
}

.blog-card__content {
    margin-top: -93px;
    padding: 22px 30px 25px;
    background: var(--eolimn-gray, #F5F5F5);
    position: relative;
    z-index: 2;
    margin-left: 20px;
}

@media (max-width: 1199px) and (min-width: 992px) {
    .blog-card__content {
        padding: 20px;
    }
}

@media (max-width: 400px) {
    .blog-card__content {
        padding: 20px;
    }
}

.blog-card__title {
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 160%;
    text-transform: capitalize;
    color: var(--eolimn-text-dark2, #1E2436);
    margin-bottom: 11px;
    padding-bottom: 0;
    letter-spacing: -0.02em;
}

@media (max-width: 1199px) and (min-width: 992px) {
    .blog-card__title {
        font-size: 18px;
    }
}

@media (max-width: 400px) {
    .blog-card__title {
        font-size: 18px;
    }
}

.blog-card__title a {
    color: inherit;
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
    transition: all 500ms ease;
}

    .blog-card__title a:hover {
        background-size: 100% 1px;
    }

    .blog-card__title a:hover {
        color: var(--eolimn-base, #60AC45);
    }

.blog-card__meta {
    display: flex;
    align-items: center;
    gap: 21px;
    margin-bottom: 0;
    margin-left: -5px;
}

.blog-card__meta__item {
    font-family: var(--eolimn-font, "DM Sans", sans-serif);
    font-style: normal;
    font-weight: 500;
    font-size: 12px;
    line-height: 133%;
    margin-bottom: 0;
    padding-bottom: 0;
    color: var(--eolimn-text, #74787C);
}

    .blog-card__meta__item a {
        color: inherit;
    }

        .blog-card__meta__item a:hover {
            color: var(--eolimn-base, #60AC45);
        }

    .blog-card__meta__item i {
        color: var(--eolimn-base, #60AC45);
        margin: 8px;
    }

.blog-card:hover .blog-card__image img {
    transform: scale(1.1);
}

.blog-card:hover .blog-card__image::before {
    width: 100%;
    left: 0;
    right: 0;
    opacity: 0;
    transition: all 400ms linear;
}

/*Blog Card two Style*/
.blog-card-two {
    border-bottom: 1px solid var(--eolimn-border-color, #DEDEDE);
    padding-bottom: 30px;
}

.blog-card-two__image {
    display: block;
    position: relative;
    overflow: hidden;
}

    .blog-card-two__image::before {
        position: absolute;
        top: 0;
        width: 0%;
        height: 100%;
        background: rgba(255, 255, 255, 0.3);
        bottom: 0;
        content: "";
        left: 50%;
        right: 51%;
        z-index: 1;
        opacity: 1;
        pointer-events: none;
        transition: all 400ms linear;
    }

.blog-card-two__image__item img {
    width: 100%;
    object-fit: cover;
    transform: scale(1);
    transition: all 0.5s ease-in-out;
}

.blog-card-two__date {
    text-align: center;
    position: absolute;
    top: 30px;
    left: 30px;
    background: var(--eolimn-white, #fff);
    font-family: var(--eolimn-font, "DM Sans", sans-serif);
    font-style: normal;
    font-weight: 700;
    font-size: 14px;
    line-height: 18px;
    margin-bottom: 0;
    padding-bottom: 0;
    color: var(--eolimn-text-dark, #202220);
    text-transform: uppercase;
}

.blog-card-two__date__day {
    padding: 5px 9px 5px 10px;
    color: var(--eolimn-white, #fff);
    display: block;
    background: var(--eolimn-base, #60AC45);
}

.blog-card-two__date__month {
    padding: 2px 9px 2px 10px;
    display: block;
}

.blog-card-two__content {
    padding: 29px 0px 0px;
    position: relative;
    z-index: 2;
}

.blog-card-two__meta {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 20px;
    margin-left: -5px;
}

.blog-card-two__meta__item {
    font-family: var(--eolimn-font, "DM Sans", sans-serif);
    font-style: normal;
    font-weight: 500;
    font-size: 12px;
    line-height: 133%;
    margin-bottom: 0;
    padding-bottom: 0;
    color: var(--eolimn-text, #74787C);
}

    .blog-card-two__meta__item a {
        color: inherit;
    }

        .blog-card-two__meta__item a:hover {
            color: var(--eolimn-base, #60AC45);
        }

    .blog-card-two__meta__item i {
        color: var(--eolimn-base, #60AC45);
        margin: 8px;
    }

.blog-card-two__title {
    text-transform: capitalize;
    color: var(--eolimn-text-dark2, #1E2436);
    margin-bottom: 13px;
    padding-bottom: 0;
    font-style: normal;
    font-weight: 600;
    font-size: 24px;
    line-height: 133%;
}

    .blog-card-two__title a {
        color: inherit;
        background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
        transition: all 500ms ease;
    }

        .blog-card-two__title a:hover {
            background-size: 100% 1px;
        }

        .blog-card-two__title a:hover {
            color: var(--eolimn-base, #60AC45);
        }

.blog-card-two__text {
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 175%;
    margin-bottom: 0;
    padding-bottom: 0;
    text-transform: capitalize;
    color: var(--eolimn-text, #74787C);
    margin-bottom: 24px;
}

.blog-card-two__link {
    display: inline-flex;
    text-transform: uppercase;
    font-style: normal;
    font-weight: 700;
    font-size: 15px;
    line-height: 20px;
    margin-bottom: 0;
}

.blog-card-two__link__icon {
    position: relative;
    display: inline-flex;
    margin-left: 29px;
    font-size: 24px;
}

    .blog-card-two__link__icon i {
        font-size: 20px;
    }

    .blog-card-two__link__icon::before {
        content: "";
        width: 1px;
        height: 100%;
        position: absolute;
        top: 50%;
        left: -14px;
        transform: translateY(-50%);
        background-color: rgba(var(--eolimn-white-rgb, 255, 255, 255), 0.2);
        transition: all 400ms ease;
    }

.blog-card-two__link:hover {
    border: 1px solid var(--eolimn-text-dark, #202220);
    background: var(--eolimn-text-dark, #202220);
}

.blog-card-two:hover .blog-card-two__image img {
    transform: scale(1.1);
}

.blog-card-two:hover .blog-card-two__image::before {
    width: 100%;
    left: 0;
    right: 0;
    opacity: 0;
    transition: all 400ms linear;
}

/*Blog One Style*/
.blog-one {
    padding: 120px 0;
    position: relative;
}

@media (max-width: 991px) {
    .blog-one {
        padding: 100px 0;
    }
}

@media (max-width: 767px) {
    .blog-one {
        padding: 80px 0;
    }
}

.blog-one--sidebar .post-pagination {
    margin-top: 30px;
}

@media (min-width: 992px) {
    .blog-one__carousel .owl-nav {
        display: none;
    }
}

/*Blog Two Style*/
.blog-two {
    position: relative;
    z-index: 1;
    padding: 120px 0px;
    background: var(--eolimn-gray, #F5F5F5);
}

@media (max-width: 991px) {
    .blog-two {
        padding: 100px 0;
    }
}

@media (max-width: 767px) {
    .blog-two {
        padding: 80px 0;
    }
}

.blog-two__card {
    position: relative;
    z-index: 1;
    background: var(--eolimn-white, #fff);
}

.blog-two__card__image {
    display: block;
    position: relative;
    overflow: hidden;
}

    .blog-two__card__image::before {
        position: absolute;
        top: 0;
        width: 0%;
        height: 100%;
        background: rgba(255, 255, 255, 0.3);
        bottom: 0;
        content: "";
        left: 50%;
        right: 51%;
        z-index: 1;
        opacity: 1;
        pointer-events: none;
        transition: all 400ms linear;
    }

.blog-two__card__image__item {
    display: block;
}

    .blog-two__card__image__item img {
        width: 100%;
        object-fit: cover;
        transform: scale(1);
        transition: all 0.5s ease-in-out;
    }

.blog-two__card__date {
    text-align: center;
    position: absolute;
    top: 30px;
    left: 30px;
    background: var(--eolimn-white, #fff);
    font-family: var(--eolimn-font, "DM Sans", sans-serif);
    font-style: normal;
    font-weight: 700;
    font-size: 14px;
    line-height: 18px;
    margin-bottom: 0;
    padding-bottom: 0;
    color: var(--eolimn-text-dark, #202220);
    text-transform: uppercase;
}

.blog-two__card__date__day {
    padding: 5px 9px 5px 10px;
    color: var(--eolimn-white, #fff);
    display: block;
    background: var(--eolimn-base, #60AC45);
}

.blog-two__card__date__month {
    padding: 2px 9px 2px 10px;
    display: block;
}

.blog-two__card__content {
    padding: 30px;
}

.blog-two__card__meta {
    display: flex;
    align-items: center;
    gap: 21px;
    margin-bottom: 10px;
    margin-left: -5px;
}

.blog-two__card__meta__item {
    font-family: var(--eolimn-font, "DM Sans", sans-serif);
    font-style: normal;
    font-weight: 500;
    font-size: 12px;
    line-height: 133%;
    margin-bottom: 0;
    padding-bottom: 0;
    color: var(--eolimn-text, #74787C);
}

    .blog-two__card__meta__item a {
        color: inherit;
    }

        .blog-two__card__meta__item a:hover {
            color: var(--eolimn-base, #60AC45);
        }

    .blog-two__card__meta__item i {
        color: var(--eolimn-base, #60AC45);
        margin: 8px;
    }

.blog-two__card__title {
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    line-height: 26px;
    margin-bottom: -4px;
    padding-bottom: 0;
    text-transform: capitalize;
    color: var(--eolimn-text-dark, #202220);
}

    .blog-two__card__title a {
        color: inherit;
        background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
        transition: all 500ms ease;
    }

        .blog-two__card__title a:hover {
            background-size: 100% 1px;
        }

        .blog-two__card__title a:hover {
            color: var(--eolimn-base, #60AC45);
        }

.blog-two__card:hover .blog-two__card__image img {
    transform: scale(1.1);
}

.blog-two__card:hover .blog-two__card__image::before {
    width: 100%;
    left: 0;
    right: 0;
    opacity: 0;
    transition: all 400ms linear;
}

.blog-two__list {
    padding: 30px;
    background: var(--eolimn-white, #fff);
}

@media (max-width: 576px) {
    .blog-two__list {
        padding: 30px 15px;
    }
}

.blog-two__list__item {
    display: flex;
    align-items: center;
    gap: 25px;
    position: relative;
}

@media (max-width: 576px) {
    .blog-two__list__item {
        gap: 10px;
    }
}

.blog-two__list__item:hover .blog-two__list__image img {
    transform: scale(1.1);
}

.blog-two__list__item:hover .blog-two__list__image::before {
    width: 100%;
    left: 0;
    right: 0;
    opacity: 0;
    transition: all 400ms linear;
}

.blog-two__list__item + .blog-two__list__item {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid var(--eolimn-border-color, #DEDEDE);
}

.blog-two__list__image {
    display: block;
    position: relative;
    overflow: hidden;
    max-width: 143px;
    width: 100%;
}

@media (max-width: 576px) {
    .blog-two__list__image {
        max-width: 120px;
    }
}

.blog-two__list__image::before {
    position: absolute;
    top: 0;
    width: 0%;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
    bottom: 0;
    content: "";
    left: 50%;
    right: 51%;
    z-index: 1;
    opacity: 1;
    pointer-events: none;
    transition: all 400ms linear;
}

.blog-two__list__image img {
    width: 100%;
    object-fit: cover;
    transform: scale(1);
    transition: all 0.5s ease-in-out;
}

.blog-two__list__meta {
    display: flex;
    align-items: center;
    gap: 21px;
    margin-bottom: 8px;
    margin-left: -5px;
}

@media (max-width: 576px) {
    .blog-two__list__meta {
        gap: 10px;
    }
}

.blog-two__list__meta__item {
    font-family: var(--eolimn-font, "DM Sans", sans-serif);
    font-style: normal;
    font-weight: 500;
    font-size: 12px;
    line-height: 133%;
    margin-bottom: 0;
    padding-bottom: 0;
    color: var(--eolimn-text, #74787C);
}

    .blog-two__list__meta__item a {
        color: inherit;
    }

        .blog-two__list__meta__item a:hover {
            color: var(--eolimn-base, #60AC45);
        }

    .blog-two__list__meta__item i {
        color: var(--eolimn-base, #60AC45);
        margin: 8px;
    }

.blog-two__list__date {
    display: inline-block;
    text-align: center;
    background: var(--eolimn-gray, #F5F5F5);
    font-family: var(--eolimn-font, "DM Sans", sans-serif);
    font-style: normal;
    font-weight: 700;
    font-size: 14px;
    line-height: 18px;
    margin-bottom: 0;
    padding-bottom: 0;
    color: var(--eolimn-text-dark, #202220);
    text-transform: uppercase;
}

.blog-two__list__date__day {
    padding: 5px 9px 5px 10px;
    color: var(--eolimn-white, #fff);
    display: block;
    background: var(--eolimn-base, #60AC45);
}

.blog-two__list__date__month {
    padding: 2px 9px 2px 10px;
    display: block;
}

.blog-two__list__title {
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    line-height: 26px;
    margin-bottom: 20px;
    padding-bottom: 0;
    color: var(--eolimn-text-dark, #202220);
}

@media (max-width: 576px) {
    .blog-two__list__title {
        font-size: 18px;
    }
}

.blog-two__list__title a {
    color: inherit;
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
    transition: all 500ms ease;
}

    .blog-two__list__title a:hover {
        background-size: 100% 1px;
    }

    .blog-two__list__title a:hover {
        color: var(--eolimn-base, #60AC45);
    }

.blog-two__element-one {
    position: absolute;
    top: 20%;
    left: 30px;
    animation: opacityElement 4s ease-in-out infinite;
    z-index: -1;
}

@media (max-width: 991px) {
    .blog-two__element-one {
        display: none;
    }
}

.blog-two__element-two {
    position: absolute;
    bottom: 10%;
    right: 30px;
    animation: opacityElement 4s ease-in-out infinite;
    animation-delay: 1s;
    z-index: -1;
}

@media (max-width: 991px) {
    .blog-two__element-two {
        display: none;
    }
}

/*Blog Three Style*/
.blog-three {
    padding: 120px 0 0;
    position: relative;
}

@media (max-width: 991px) {
    .blog-three {
        padding: 100px 0 0;
    }
}

@media (max-width: 767px) {
    .blog-three {
        padding: 80px 0 0;
    }
}

.blog-three .container {
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
}

/*Blog Fore Style*/
.blog-fore {
    padding-top: 120px;
    background-color: var(--eolimn-white, #fff);
    position: relative;
}

@media (max-width: 991px) {
    .blog-fore {
        padding-top: 100px;
    }
}

@media (max-width: 767px) {
    .blog-fore {
        padding-top: 80px;
    }
}

.blog-fore__inner .container {
    max-width: 1600px;
}

.blog-fore__top {
    padding-bottom: 51px;
}

@media (max-width: 991px) {
    .blog-fore__top {
        padding-bottom: 40px;
    }
}

.blog-fore__top .sec-title {
    padding-bottom: 0;
}

@media (max-width: 767px) {
    .blog-fore__top .sec-title {
        padding-bottom: 20px;
    }
}

.blog-fore__top__btn {
    text-align: end;
}

@media (max-width: 767px) {
    .blog-fore__top__btn {
        text-align: left;
    }
}

.blog-fore__card {
    position: relative;
    background: var(--eolimn-gray, #F5F5F5);
    padding: 30px;
    overflow: hidden;
}

.blog-fore__card__date {
    text-align: center;
    position: absolute;
    top: 0px;
    left: 0px;
    background: var(--eolimn-white, #fff);
    font-family: var(--eolimn-font, "DM Sans", sans-serif);
    font-style: normal;
    font-weight: 700;
    font-size: 14px;
    line-height: 18px;
    margin-bottom: 0;
    padding-bottom: 0;
    color: var(--eolimn-text-dark, #202220);
    text-transform: uppercase;
}

.blog-fore__card__date__day {
    padding: 5px 9px 5px 10px;
    color: var(--eolimn-white, #fff);
    display: block;
    background: var(--eolimn-base, #60AC45);
}

.blog-fore__card__date__month {
    padding: 2px 9px 2px 10px;
    display: block;
}

.blog-fore__card__image {
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
}

.blog-fore__card__image__item {
    overflow: hidden;
    text-align: end;
}

    .blog-fore__card__image__item img:first-child {
        position: absolute;
        top: 0;
        right: 0;
        transition: all 0.4s ease-in-out;
    }

    .blog-fore__card__image__item img:last-child {
        position: relative;
        transform: translate(50%, -100%);
        transition: all 0.4s ease-in-out;
        transition-delay: 0.4s;
        object-fit: cover;
        width: 100%;
    }

.blog-fore__card:hover .blog-fore__card__image__item img:last-child {
    position: relative;
    transform: translate(0%, 0%);
}

.blog-fore__card:hover .blog-fore__card__image__item img:first-child {
    opacity: 0;
    visibility: hidden;
}

.blog-fore__meta {
    display: flex;
    align-items: center;
    gap: 21px;
    margin-bottom: 12px;
    margin-left: -5px;
}

.blog-fore__meta__item {
    font-family: var(--eolimn-font, "DM Sans", sans-serif);
    font-style: normal;
    font-weight: 500;
    font-size: 12px;
    line-height: 133%;
    margin-bottom: 0;
    padding-bottom: 0;
    color: var(--eolimn-text, #74787C);
}

    .blog-fore__meta__item a {
        color: inherit;
    }

        .blog-fore__meta__item a:hover {
            color: var(--eolimn-base, #60AC45);
        }

    .blog-fore__meta__item i {
        color: var(--eolimn-base, #60AC45);
        margin: 8px;
    }

.blog-fore__title {
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 160%;
    text-transform: capitalize;
    color: var(--eolimn-text-dark2, #1E2436);
    margin-bottom: 19px;
    padding-bottom: 0;
    letter-spacing: -0.02em;
}

@media (max-width: 1199px) and (min-width: 992px) {
    .blog-fore__title {
        font-size: 18px;
    }
}

@media (max-width: 400px) {
    .blog-fore__title {
        font-size: 18px;
    }
}

.blog-fore__title a {
    color: inherit;
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
    transition: all 500ms ease;
}

    .blog-fore__title a:hover {
        background-size: 100% 1px;
    }

    .blog-fore__title a:hover {
        color: var(--eolimn-base, #60AC45);
    }

.blog-fore__btn {
    width: 55px;
    height: 51px;
    background: var(--eolimn-white, #fff);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: var(--eolimn-text-dark, #202220);
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: 1px solid var(--eolimn-border-color, #DEDEDE);
}

    .blog-fore__btn::before {
        width: 15px;
        height: 15px;
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        background: var(--eolimn-base, #60AC45);
        clip-path: polygon(0 0, 0% 100%, 100% 100%);
        transition: all 0.4s ease-in-out;
    }

    .blog-fore__btn::after {
        width: 0;
        height: 0;
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        background: var(--eolimn-base, #60AC45);
        transition: all 0.4s ease-in-out;
        z-index: -1;
    }

    .blog-fore__btn:hover {
        color: var(--eolimn-white, #fff);
    }

        .blog-fore__btn:hover::before {
            width: 0px;
            height: 0px;
        }

        .blog-fore__btn:hover::after {
            width: 100%;
            height: 100%;
        }

/*--------------------------------------------------------------
# Form
--------------------------------------------------------------*/
.form-one__group {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 20px;
    margin: 0;
}

@media (min-width: 576px) {
    .form-one__group {
        grid-template-columns: repeat(2, 1fr);
    }
}

.form-one__control {
    border: none;
    width: auto;
    height: auto;
    border-radius: 0;
    padding: 0;
    position: relative;
}

.form-one__control__icon {
    position: absolute;
    top: 50%;
    right: 30px;
    transform: translateY(-50%);
    font-size: 14px;
}

.form-one__control--full {
    grid-column-start: 1;
    grid-column-end: -1;
}

.form-one .bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) {
    width: 100%;
    height: 58px;
    display: flex;
    align-items: center;
}

.form-one .bootstrap-select > .dropdown-toggle {
    padding: 0;
    background-color: transparent;
    border-radius: 0;
    border: none;
    outline: none !important;
    color: var(--eolimn-text, #74787C);
    font-size: 14px;
}

.form-one .bootstrap-select > .dropdown-toggle,
.form-one input[type=text],
.form-one input[type=email],
.form-one textarea {
    display: block;
    width: 100%;
    height: 58px;
    background-color: var(--eolimn-gray, #F5F5F5);
    color: var(--eolimn-text, #74787C);
    font-size: 16px;
    font-weight: 500;
    border: none;
    outline: none;
    padding-left: 30px;
    padding-right: 30px;
}

    .form-one .bootstrap-select > .dropdown-toggle::placeholder,
    .form-one input[type=text]::placeholder,
    .form-one input[type=email]::placeholder,
    .form-one textarea::placeholder {
        color: var(--eolimn-text, #74787C);
        font-size: 16px;
        font-weight: 500;
        text-transform: capitalize;
    }

.form-one textarea {
    height: 195px;
    padding-top: 20px;
}

.form-one .bootstrap-select > .dropdown-toggle {
    display: flex;
    align-items: center;
}

    .form-one .bootstrap-select > .dropdown-toggle .filter-option {
        display: flex;
        align-items: center;
    }

/*--------------------------------------------------------------
# Custom Cursor
--------------------------------------------------------------*/
.custom-cursor__cursor {
    width: 25px;
    height: 25px;
    border-radius: 100%;
    border: 1px solid var(--eolimn-base, #60AC45);
    -webkit-transition: all 200ms ease-out;
    transition: all 200ms ease-out;
    position: fixed;
    pointer-events: none;
    left: 0;
    top: 0;
    -webkit-transform: translate(calc(-50% + 5px), -50%);
    transform: translate(calc(-50% + 5px), -50%);
    z-index: 999991;
}

.custom-cursor__cursor-two {
    width: 10px;
    height: 10px;
    border-radius: 100%;
    background-color: var(--eolimn-base, #60AC45);
    opacity: 0.3;
    position: fixed;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    pointer-events: none;
    -webkit-transition: width 0.3s, height 0.3s, opacity 0.3s;
    transition: width 0.3s, height 0.3s, opacity 0.3s;
    z-index: 999991;
}

.custom-cursor__hover {
    background-color: var(--eolimn-base, #60AC45);
    opacity: 0.4;
}

.custom-cursor__innerhover {
    width: 25px;
    height: 25px;
    opacity: 0.4;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.main-footer {
    position: relative;
    background: var(--eolimn-text-dark, #202220);
    z-index: 1;
}

.main-footer__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    mix-blend-mode: darken;
    z-index: -1;
}

.main-footer__top__inner {
    border-bottom: 1px solid rgba(var(--eolimn-border-color-rgb, 222, 222, 222), 0.2);
    padding-top: 60px;
    padding-bottom: 60px;
    margin-bottom: 60px;
}

.main-footer__top__logo .footer__logo {
    width: 100%;
    display: block;
    margin-bottom: 15px;
}

.main-footer__top__list {
    margin-bottom: 0;
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: space-between;
}

.main-footer__top__list__item {
    display: flex;
    align-items: center;
    gap: 15px;
}

    .main-footer__top__list__item:hover .main-footer__top__icon {
        color: var(--eolimn-white, #fff);
    }

        .main-footer__top__list__item:hover .main-footer__top__icon::after {
            top: 0%;
            height: 100%;
            width: 100%;
            left: 0%;
        }

.main-footer__top__icon {
    /* width: 50px; */
    /* height: 50px; */
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    border-radius: 50%;
    color: var(--eolimn-base, #60AC45);
    background: var(--eolimn-gray, #F5F5F5);
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
}

    .main-footer__top__icon::after {
        content: "";
        position: absolute;
        top: 0%;
        height: 0;
        width: 0;
        left: 50%;
        background: var(--eolimn-base, #60AC45);
        color: var(--eolimn-white, #fff);
        border-radius: 50%;
        transition: all 0.4s ease;
        z-index: -1;
    }

.main-footer__top__title {
    display: block;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 18px;
    margin-bottom: 0;
    padding-bottom: 0;
    text-transform: capitalize;
    color: var(--eolimn-text, #74787C);
}

.main-footer__top a,
.main-footer__top p {
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 21px;
    margin-bottom: 0;
    padding-bottom: 0;
    color: var(--eolimn-gray, #F5F5F5);
}

    .main-footer__top a:hover {
        color: var(--eolimn-base, #60AC45);
    }

.main-footer__middle {
    padding: 70px 0px;
}

@media (max-width: 1199px) {
    .main-footer__middle {
        padding-bottom: 10px;
    }
}

.main-footer__bottom {
    text-align: center;
}

.main-footer__bottom__inner {
    padding: 25px 0;
    border-top: 1px solid rgba(var(--eolimn-border-color-rgb, 222, 222, 222), 0.2);
}

.main-footer__copyright {
    margin: 0;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 120%;
    text-align: center;
    text-transform: capitalize;
    color: #e5e5e5;
}

.footer-widget__title {
    margin-top: -6px;
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    line-height: 26px;
    margin-bottom: 10px;
    color: var(--eolimn-white, #fff);
    position: relative;
    text-transform: capitalize;
}

    .footer-widget__title span {
        color: var(--eolimn-base, #60AC45);
    }

.footer-widget__text {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 160%;
    margin-bottom: 10px;
    padding-bottom: 0;
    color: #e5e5e5;
}

.footer-widget__social {
    margin-top: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
}

    .footer-widget__social a {
        width: 35px;
        height: 35px;
        /* border: 1px solid rgba(var(--eolimn-border-color-rgb, 222, 222, 222), 0.2); */
        transition: all 500ms ease;
        background: transparent;
        display: flex;
        font-size: 17px;
        justify-content: center;
        align-items: center;
        transition: all 0.4s ease-in-out;
        color: var(--eolimn-text, #74787C);
        border-radius: 50%;
    }

        .footer-widget__social a:hover {
            color: var(--eolimn-white, #fff);
            background: var(--eolimn-base, #60AC45);
        }

.footer-widget__links__item {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 210%;
    margin-bottom: 0;
    padding-bottom: 0;
    color: var(--eolimn-text, #74787C);
}

    .footer-widget__links__item a {
        color: inherit;
        position: relative;
        color: #e5e5e5;
    }

        .footer-widget__links__item a::before {
            position: absolute;
            left: 0;
            bottom: 0;
            width: 0;
            height: 1px;
            background-color: var(--eolimn-white, #fff);
            content: "";
            -webkit-transition: all 300ms ease;
            transition: all 300ms ease;
        }

        .footer-widget__links__item a:hover {
            color: var(--eolimn-white, #fff);
        }

            .footer-widget__links__item a:hover::before {
                width: 100%;
            }

.footer-widget__newsletter {
    position: relative;
    width: 100%;
}

    .footer-widget__newsletter input[type=email] {
        width: 100%;
        border: none;
        outline: none;
        height: 55px;
        background-color: var(--eolimn-white, #fff);
        color: var(--eolimn-text, #74787C);
        font-style: normal;
        font-weight: 400;
        font-size: 16px;
        line-height: 175%;
        padding-left: 30px;
        padding-right: 60px;
        transition: all 500ms ease;
    }

        .footer-widget__newsletter input[type=email]:focus {
            color: var(--eolimn-text, #74787C);
        }

        .footer-widget__newsletter input[type=email]::placeholder {
            font-style: normal;
            font-weight: 400;
            font-size: 16px;
            line-height: 175%;
            color: var(--eolimn-text, #74787C);
        }

    .footer-widget__newsletter button {
        font-style: normal;
        font-weight: 600;
        font-size: 16px;
        line-height: 100%;
        text-transform: capitalize;
        background: var(--eolimn-base, #60AC45);
        width: 100%;
        margin-top: 10px;
        border: none;
        height: 45px;
    }

        .footer-widget__newsletter button:hover {
            color: var(--eolimn-base, #60AC45);
            background: var(--eolimn-white, #fff);
        }

    .footer-widget__newsletter .icon {
        position: absolute;
        font-size: 22px;
        color: var(--eolimn-text, #74787C);
        top: 15px;
        right: 15px;
    }

@media (max-width: 1199px) {
    .footer-widget {
        margin-bottom: 30px;
    }
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact-one {
    position: relative;
    z-index: 1;
    background: var(--eolimn-base, #60AC45);
    overflow: hidden;
}

@media (max-width: 991px) {
    .contact-one {
        padding-top: 100px;
        padding-bottom: 100px;
    }
}

@media (max-width: 767px) {
    .contact-one {
        padding-top: 80px;
        padding-bottom: 80px;
    }
}

.contact-one__thumb {
    position: absolute;
    top: 0;
    left: 0;
    width: 48%;
    overflow: hidden;
}

@media (max-width: 991px) {
    .contact-one__thumb {
        width: 100%;
        position: relative;
    }
}

.contact-one__form__top__title {
    font-style: normal;
    font-weight: 600;
    font-size: 24px;
    line-height: 154%;
    text-transform: capitalize;
    margin-bottom: 30px;
    padding-bottom: 0;
    text-transform: capitalize;
    color: var(--eolimn-white, #fff);
}

.contact-one__form .form-one__group {
    grid-gap: 22px;
    position: relative;
}

.contact-one__form .form-one__control__icon {
    right: 0;
    color: var(--eolimn-white, #fff);
}

.contact-one__form .bootstrap-select > .dropdown-toggle, .contact-one__form input[type=text], .contact-one__form input[type=email], .contact-one__form textarea, .contact-one__form input[type=file] {
    height: 50px;
    background-color: var(--eolimn-white, #fff);
    color: var(--eolimn-text, #74787C);
    color: var(--eolimn-text, #74787C);
    font-size: 16px;
    font-weight: 500;
    outline: none;
    padding-left: 20px;
    padding-right: 30px;
    border-radius: 4px;
}

    .contact-one__form .bootstrap-select > .dropdown-toggle::placeholder,
    .contact-one__form input[type=text]::placeholder,
    .contact-one__form input[type=email]::placeholder,
    .contact-one__form textarea::placeholder {
        color: var(--eolimn-text, #74787C);
        font-size: 16px;
        font-weight: 500;
        text-transform: capitalize;
    }

.contact-one__form textarea {
    height: 130px;
}

.contact-one__form .eolimn-btn {
    padding: 17px 25px;
    background: var(--eolimn-white, #fff);
    color: var(--eolimn-base, #60AC45);
}

    .contact-one__form .eolimn-btn:hover {
        color: var(--eolimn-white, #fff);
    }

        .contact-one__form .eolimn-btn:hover::before {
            background: #feb103;
        }

.contact-one__right {
    padding-top: 60px;
    padding-bottom: 60px;
}

@media (max-width: 991px) {
    .contact-one__right {
        padding-top: 30px;
        padding-bottom: 0;
    }
}

.contact-list {
    position: relative;
    padding: 70px 0px;
}

@media (max-width: 991px) {
    .contact-list {
        padding: 100px 0px;
    }
}

@media (max-width: 767px) {
    .contact-list {
        padding: 80px 0px;
    }
}

.contact-list__item {
    background: var(--eolimn-gray, #F5F5F5);
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px 20px;
    border: 1px solid var(--eolimn-border-color, #DEDEDE);
}

@media (max-width: 1199px) and (min-width: 991px) {
    .contact-list__item {
        padding: 20px 10px;
        gap: 10px;
    }
}

@media (max-width: 400px) {
    .contact-list__item {
        padding: 20px 10px;
        gap: 10px;
    }
}

.contact-list__item:hover .contact-list__icon {
    color: var(--eolimn-text-dark, #202220);
    border: 10px solid var(--eolimn-text-dark, #202220);
}

    .contact-list__item:hover .contact-list__icon i {
        animation: bounceIn 1s ease;
    }

.contact-list__icon {
    border-radius: 50%;
    max-width: 70px;
    width: 100%;
    height: 70px;
    border: 6px solid var(--eolimn-base, #60AC45);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--eolimn-base, #60AC45);
    transition: all 0.4s ease-in-out;
}

.contact-list__title {
    display: block;
    font-family: var(--eolimn-special-font, "Inter", sans-serif);
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 100%;
    color: var(--eolimn-text-dark, #202220);
    text-transform: capitalize;
    margin-bottom: 8px;
}

.contact-list__info {
    display: block;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 160%;
    margin-bottom: -5px;
    padding-bottom: 0;
    color: var(--eolimn-text, #74787C);
}

.contact-list a {
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
    transition: all 500ms ease;
}

    .contact-list a:hover {
        background-size: 100% 1px;
    }

    .contact-list a:hover {
        color: var(--eolimn-base, #60AC45);
    }

.contact-list__info + .contact-list__info {
    margin-top: 6px;
}

/*Service Contact */
.service-contact {
    padding: 120px 0px;
}

@media (max-width: 991px) {
    .service-contact {
        padding: 100px 0px;
    }
}

@media (max-width: 767px) {
    .service-contact {
        padding: 80px 0px;
    }
}

.service-contact--details {
    background: var(--eolimn-gray, #F5F5F5);
}

    .service-contact--details .service-contact__inner {
        background: var(--eolimn-white, #fff);
    }

    .service-contact--details .service-contact__bg {
        mix-blend-mode: multiply;
        opacity: 0.4;
    }

.service-contact--two {
    padding: 120px 0px 0;
}

@media (max-width: 991px) {
    .service-contact--two {
        padding: 100px 0px 0;
    }
}

@media (max-width: 767px) {
    .service-contact--two {
        padding: 80px 0px 0;
    }
}

.service-contact--two .service-contact__form {
    padding: 60px;
}

@media (max-width: 1199px) and (min-width: 991px) {
    .service-contact--two .service-contact__form {
        padding: 60px 40px;
    }
}

@media (max-width: 575px) {
    .service-contact--two .service-contact__form {
        padding: 50px 35px;
    }
}

.service-contact--two .service-contact__left {
    margin-right: 0;
    margin-left: -30px;
}

@media (max-width: 991px) {
    .service-contact--two .service-contact__left {
        margin-left: 0px;
    }
}

.service-contact__inner {
    position: relative;
    background: var(--eolimn-gray, #F5F5F5);
}

.service-contact__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -1;
}

.service-contact__left {
    background: var(--eolimn-base, #60AC45);
    padding: 70px 53px;
    margin-right: -40px;
}

@media (max-width: 991px) {
    .service-contact__left {
        margin-right: 0px;
    }
}

@media (max-width: 575px) {
    .service-contact__left {
        padding: 70px 30px;
    }
}

.service-contact .sec-title__tagline,
.service-contact .sec-title__icon {
    margin-bottom: 20px;
}

.service-contact .sec-title__tagline,
.service-contact .sec-title__title,
.service-contact .sec-title__icon {
    color: var(--eolimn-white, #fff);
}

.service-contact .sec-title {
    padding-bottom: 15px;
}

.service-contact__text {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 162%;
    margin-bottom: 18px;
    padding-bottom: 0;
    color: var(--eolimn-white, #fff);
    max-width: 360px;
    width: 100%;
}

.service-contact__list {
    margin-bottom: 20px;
}

.service-contact__list__item {
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 188%;
    text-transform: capitalize;
    margin-bottom: 0;
    padding-bottom: 0;
    color: var(--eolimn-white, #fff);
}

    .service-contact__list__item i {
        font-size: 18px;
        margin-right: 15px;
    }

.service-contact__author {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 26px;
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(var(--eolimn-border-color-rgb, 222, 222, 222), 0.2);
}

.service-contact__author__image {
    display: flex;
}

.service-contact__author__image__item {
    width: 50%;
    height: 50%;
    border-radius: 50%;
    border: 5px solid var(--eolimn-base, #60AC45);
}

    .service-contact__author__image__item:not(:first-of-type) {
        margin-left: -20px;
    }

.service-contact__author__name {
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 188%;
    margin-bottom: 0;
    padding-bottom: 0;
    color: var(--eolimn-white, #fff);
    text-transform: uppercase;
}

.service-contact__btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
}

.service-contact__btn__icon {
    z-index: 1;
    width: 68px;
    height: 68px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--eolimn-white, #fff);
    font-size: 28px;
    color: var(--eolimn-base, #60AC45);
    position: relative;
    transition: all 0.4s ease-in-out;
}

    .service-contact__btn__icon::after {
        content: "";
        width: 0;
        height: 0;
        top: 50%;
        left: 50%;
        border-radius: 50%;
        position: absolute;
        background: var(--eolimn-text-dark, #202220);
        transition: all 0.4s ease-in-out;
        z-index: -1;
    }

.service-contact__btn__title {
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 188%;
    display: block;
    color: var(--eolimn-white, #fff);
    text-transform: capitalize;
}

.service-contact__btn__link {
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    line-height: 125%;
    display: block;
    color: var(--eolimn-white, #fff);
    text-transform: capitalize;
    margin-bottom: 0;
    padding-bottom: 0;
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
    transition: all 500ms ease;
}

    .service-contact__btn__link:hover {
        background-size: 100% 1px;
    }

.service-contact__btn:hover .service-contact__btn__icon {
    color: var(--eolimn-white, #fff);
}

    .service-contact__btn:hover .service-contact__btn__icon::after {
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
    }

.service-contact__form {
    padding: 53px 70px;
}

    .service-contact__form .form-one__group {
        grid-gap: 20px;
        position: relative;
    }

@media (max-width: 767px) {
    .service-contact__form {
        padding: 40px 30px;
    }
}

.service-contact__form input[type=text],
.service-contact__form input[type=email],
.service-contact__form textarea {
    border: 1px solid var(--eolimn-border-color, #DEDEDE);
    height: 60px;
    padding-left: 26px;
}

.service-contact__form textarea {
    height: 132px;
}

.service-contact__form button {
    margin-top: 7px;
}

/*--------------------------------------------------------------
# Topbar
--------------------------------------------------------------*/
.topbar-one {
    display: none;
    background-color: #449b33;
    padding: 10px 0px;
}

@media (min-width: 768px) {
    .topbar-one {
        display: block;
    }
}

@media (min-width: 1200px) {
    .topbar-one {
        padding: 4px 45px;
    }
}

.topbar-one__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.topbar-one__info {
    display: flex;
    align-items: center;
    margin: 0;
}

.topbar-one__info__item {
    display: flex;
    align-items: center;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.3;
    color: var(--eolimn-gray, #F5F5F5);
}

    .topbar-one__info__item a {
        color: inherit;
        background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
        transition: all 500ms ease;
        margin-bottom: -5px;
    }

        .topbar-one__info__item a:hover {
            background-size: 100% 1px;
        }

    .topbar-one__info__item p {
        margin-bottom: -5px;
        padding-bottom: 0;
    }

.topbar-one__info__item__subtitle {
    margin-top: -5px;
    text-transform: capitalize;
    display: block;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 18px;
    color: var(--eolimn-gray, #F5F5F5);
    margin-bottom: 7px;
}

.topbar-one__info__item + .topbar-one__info__item {
    margin-left: 20px;
}

.topbar-one__info__icon {
    font-size: 15px;
    color: #feb21f;
    position: relative;
    margin-right: 10px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--eolimn-white, #fff);
    display: flex;
    justify-content: center;
    align-items: center;
}

.topbar-one__right {
    display: flex;
    align-items: center;
    margin-top: 10px;
}

@media (min-width: 992px) {
    .topbar-one__right {
        margin-top: 0;
        margin-left: auto;
    }
}

.topbar-one__text {
    margin: 0;
    font-size: 14px;
    line-height: 1.2em;
}

.topbar-one__social {
    display: flex;
    align-items: center;
    gap: 10px;
}

    .topbar-one__social a {
        width: 30px;
        height: 30px;
        border: 1px solid var(--eolimn-gray, #F5F5F5);
        transition: all 500ms ease;
        background: transparent;
        display: flex;
        font-size: 14px;
        justify-content: center;
        align-items: center;
        transition: all 0.4s ease-in-out;
        color: var(--eolimn-gray, #F5F5F5);
    }

        .topbar-one__social a:hover {
            color: var(--eolimn-base, #60AC45);
            background: var(--eolimn-gray, #F5F5F5);
        }

/*--------------------------------------------------------------
# Navigations
--------------------------------------------------------------*/
.main-header {
    background-color: var(--eolimn-white, #fff);
    padding: 2px 0px;
}

.main-header__inner {
    display: flex;
    align-items: center;
    background-color: var(--eolimn-white, #fff);
    position: relative;
}

@media (max-width: 575px) {
    .main-header__inner {
        padding: 10px 0px;
    }
}

@media (min-width: 1200px) {
    .main-header__inner {
        padding-left: 45px;
        padding-right: 45px;
        padding-top: 0;
        padding-bottom: 0;
    }
}

.main-header__logo {
    display: flex;
    width: auto;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1;
    /* background: var(--eolimn-gray, #F5F5F5); */
    /* padding: 10px 60px 10px 0px; */
}

@media (max-width: 575px) {
    .main-header__logo {
        padding: 0px;
        background: transparent;
    }
}

@media (min-width: 992px) {
    .main-header__logo {
        width: auto;
    }
}

.main-header__logo::after {
    /* content: ""; */
    /* background: var(--eolimn-gray, #F5F5F5); */
    width: 9999999px;
    height: 100%;
    position: absolute;
    top: 0;
    right: 99%;
    z-index: -1;
}

@media (min-width: 768px) {
    .main-header__logo .mobile-nav__btn {
        margin-left: 30px;
    }
}

.main-header__nav {
    /* margin-left: 60px; */
    /* margin-right: auto; */
}

@media (max-width: 500px) {
    .main-header__nav {
        margin-left: 0px;
    }
}

.main-header__right {
    display: flex;
    align-items: center;
}

.main-header__right__info__item {
    font-size: 16px;
    line-height: 1;
    color: var(--eolimn-text-dark, #202220);
    transition: all 0.4s ease-in-out;
}

    .main-header__right__info__item:hover {
        color: var(--eolimn-base, #60AC45);
    }

    .main-header__right__info__item + .main-header__right__info__item {
        margin-left: 30px;
    }

@media (max-width: 575px) {
    .main-header__right__info__item + .main-header__right__info__item {
        margin-left: 20px;
    }
}

@media (max-width: 1560px) {
    .main-header__right__btn {
        /* display: none; */
    }
}

.main-header__right__info + .main-header__right__btn {
    margin-left: 60px;
}

.main-header__right__call {
    display: flex;
    gap: 13px;
    align-items: center;
}

@media (max-width: 1710px) {
    .main-header__right__call {
        display: none;
    }
}

.main-header__right__call:hover .main-header__right__icon {
    background: var(--eolimn-base, #60AC45);
    color: var(--eolimn-white, #fff);
}

.main-header__right__icon {
    width: 43px;
    height: 43px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--eolimn-gray, #F5F5F5);
    font-size: 18px;
    color: var(--eolimn-base, #60AC45);
    transition: all 0.4s ease-in-out;
}

    .main-header__right__icon:hover {
        color: var(--eolimn-base, #60AC45);
    }

.main-header__right__text {
    display: block;
    font-family: var(--eolimn-font, "DM Sans", sans-serif);
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 18px;
    text-transform: capitalize;
    color: var(--eolimn-text, #74787C);
    margin-bottom: 7px;
}

.main-header__right__number {
    font-family: var(--eolimn-font, "DM Sans", sans-serif);
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 21px;
    margin-bottom: 0;
    padding-bottom: 0;
    color: var(--eolimn-text-dark, #202220);
    transition: all 0.4s ease-in-out;
}

    .main-header__right__number:hover {
        color: var(--eolimn-base, #60AC45);
    }

.main-header__right__btn + .main-header__right__call {
    margin-left: 40px;
}

.main-header__right__call + .main-header__element {
    margin-left: 0px;
}

@media (max-width: 575px) {
    .main-header__right__call + .main-header__element {
        margin-left: 20px;
    }
}

.main-header__element {
    position: relative;
    z-index: 1;
    /* background: var(--eolimn-base, #60AC45); */
    padding: 0px 0px 0px 37px;
}

@media (max-width: 1300px) {
    .main-header__element {
        padding: 26.5px 0px 28px 20px;
    }
}

@media (max-width: 1199px) {
    .main-header__element {
        padding: 0px;
    }
}

@media (max-width: 1199px) {
    .main-header__element {
        background: transparent;
    }
}

.main-header__element::after {
    /* content: ""; */
    /* background: var(--eolimn-base, #60AC45); */
    width: 9999999px;
    height: 100%;
    position: absolute;
    top: 0;
    left: 99%;
    z-index: -1;
}

@media (max-width: 1199px) {
    .main-header__element::after {
        background: transparent;
    }
}

.main-header__element__btn {
    font-size: 35px;
    color: #000000;
    line-height: 1;
    cursor: pointer;
    transition: all 0.4s ease-in-out;
}

    .main-header__element__btn:hover {
        color: var(--eolimn-text-dark, #202220);
    }

@media (max-width: 1199px) {
    .main-header__element__btn {
        display: none;
    }
}

.main-header--two {
    position: relative;
    background: transparent;
    margin-bottom: -100px;
    z-index: 7;
}

@media (max-width: 1199px) {
    .main-header--two {
        background: var(--eolimn-white, #fff);
        margin-bottom: 0;
    }
}

.main-header--two .main-header__inner {
    padding: 0px 20px;
    max-width: 1670px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

@media (max-width: 991px) {
    .main-header--two .main-header__inner {
        padding: 20px;
    }
}

.main-header--two .main-header__inner::after {
    content: "";
    top: 0;
    bottom: -10px;
    left: 15px;
    right: 15px;
    position: absolute;
    background-color: rgba(var(--eolimn-white-rgb, 255, 255, 255), 0.25);
    z-index: -1;
}

@media (max-width: 1199px) {
    .main-header--two .main-header__inner::after {
        display: none;
    }
}

.main-header--two .main-header__inner::before {
    content: "";
    top: 0;
    bottom: -20px;
    left: 30px;
    right: 30px;
    position: absolute;
    background-color: rgba(var(--eolimn-white-rgb, 255, 255, 255), 0.25);
    z-index: -1;
}

@media (max-width: 1199px) {
    .main-header--two .main-header__inner::before {
        display: none;
    }
}

.main-header--two .main-menu .main-menu__list,
.main-header--two .main-menu .main-menu__list ul {
    display: flex;
}

@media (max-width: 991px) {
    .main-header--two .main-menu .main-menu__list,
    .main-header--two .main-menu .main-menu__list ul {
        display: none;
    }
}

.main-header--two .main-header__right__info + .main-header__right__btn {
    margin-left: 98px;
}

.main-header--two .main-header__logo,
.main-header--two .main-header__logo::after,
.main-header--two .main-header__element::after,
.main-header--two .main-header__element {
    background: transparent;
}

@media (max-width: 1199px) {
    .main-header--two .main-header__element .mobile-nav__btn {
        margin-left: 40px;
    }
}

.main-header--two .main-header__element,
.main-header--two .main-header__logo {
    padding: 0;
}

.main-header--two .main-header__nav {
    margin-left: auto;
    margin-right: 60px;
}

@media (min-width: 991px) {
    .main-header--two .mobile-nav__btn {
        display: none;
    }
}

.main-header--three {
    background: transparent;
    margin-bottom: -124px;
    position: relative;
    z-index: 2;
}

@media (max-width: 575px) {
    .main-header--three .main-header__logo a {
        mask: none !important;
        width: auto !important;
        height: auto !important;
        background: transparent !important;
    }
}

@media (max-width: 1710px) {
    .main-header--three .main-header__right__call {
        display: flex;
    }
}

@media (max-width: 767px) {
    .main-header--three .main-header__right__call {
        display: none;
    }
}

@media (max-width: 1199px) {
    .main-header--three .main-header__right__info + .main-header__right__call {
        margin-left: 40px !important;
    }
}

.main-header--three .mobile-nav__btn {
    margin-left: 30px;
}

    .main-header--three .mobile-nav__btn span {
        background: var(--eolimn-white, #fff);
    }

        .main-header--three .mobile-nav__btn span:hover {
            background: var(--eolimn-base, #60AC45);
        }

.main-header--three .main-header__logo {
    padding: 0;
}

    .main-header--three .main-header__logo a {
        display: flex;
        justify-content: center;
        align-items: center;
        -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 208.000000 123.000000">  <g transform="translate(0.000000,123.000000) scale(0.050000,-0.050000)"> <path d="M0 1309 c0 -1260 -2 -1238 117 -1288 49 -20 358 7 1926 167 2199 226 2003 200 2067 275 l50 60 0 969 0 968 -2080 0 -2080 0 0 -1151z"/> </g> </svg>');
        mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 208.000000 123.000000">  <g transform="translate(0.000000,123.000000) scale(0.050000,-0.050000)"> <path d="M0 1309 c0 -1260 -2 -1238 117 -1288 49 -20 358 7 1926 167 2199 226 2003 200 2067 275 l50 60 0 969 0 968 -2080 0 -2080 0 0 -1151z"/> </g> </svg>');
        -webkit-mask-repeat: no-repeat;
        mask-repeat: no-repeat;
        -webkit-mask-position: left bottom;
        mask-position: left bottom;
        -webkit-mask-size: 100%;
        mask-size: 100%;
        background: var(--eolimn-gray, #F5F5F5);
        width: 208px;
        height: 124px;
        position: relative;
    }

        .main-header--three .main-header__logo a img {
            object-fit: cover;
        }

.main-header--three .main-header__inner {
    background: transparent;
}

@media (min-width: 1200px) {
    .main-header--three .main-header__inner {
        padding-left: 15px;
        padding-right: 15px;
    }
}

.main-header--three .main-menu .main-menu__list > li {
    padding-top: 30px;
    padding-bottom: 30px;
}

    .main-header--three .main-menu .main-menu__list > li > a,
    .main-header--three .main-header__right__info__item,
    .main-header--three .main-header__right__number,
    .main-header--three .main-header__right__text {
        color: var(--eolimn-white, #fff);
    }

.main-header--three .main-header__right__number {
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
    transition: all 500ms ease;
}

    .main-header--three .main-header__right__number:hover {
        background-size: 100% 1px;
    }

.main-header--three .main-header__right__info__item:hover {
    color: var(--eolimn-base, #60AC45);
}

.main-header--three .container-fluid {
    max-width: 1650px;
    margin-left: auto;
    margin-right: auto;
}

.main-header--three .main-header__nav {
    margin-left: auto;
    margin-right: 60px;
}

@media (max-width: 1350px) and (min-width: 1230px) {
    .main-header--three .main-header__nav {
        margin-right: 30px;
    }
}

@media (max-width: 1229px) {
    .main-header--three .main-header__nav .main-menu__list {
        display: none;
    }
}

@media (max-width: 1229px) {
    .main-header--three .mobile-nav__btn {
        display: flex;
    }
}

.main-header--three .main-header__right__info + .main-header__right__call {
    margin-left: 58px;
}

@media (max-width: 1350px) and (min-width: 1199px) {
    .main-header--three .main-header__right__info + .main-header__right__call {
        margin-left: 20px;
    }
}

.main-header--three .main-header__element {
    padding: 0;
    margin-left: 0;
}

    .main-header--three .main-header__logo,
    .main-header--three .main-header__logo::after,
    .main-header--three .main-header__element::after,
    .main-header--three .main-header__element {
        background: transparent;
    }

.sticky-header--cloned {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    top: 0;
    background-color: var(--eolimn-white, #fff);
    transform: translateY(-100%);
    box-shadow: 0px 3px 18px rgba(var(--eolimn-black-rgb, 0, 0, 0), 0.07);
    transition: 0.6s cubic-bezier(0.24, 0.74, 0.58, 1);
    visibility: hidden;
    transition: transform 500ms ease, visibility 500ms ease;
}

    .sticky-header--cloned.active {
        transform: translateY(0%);
        visibility: visible;
    }

.main-header--two.active {
    background: var(--eolimn-white, #fff);
}

    .main-header--two.active .main-header__inner::before, .main-header--two.active .main-header__inner::after {
        display: none;
    }

.main-header--three.active .main-header__logo a {
    mask: none;
    background: transparent;
    width: auto;
    height: auto;
}

.main-header--three.active .main-header__inner {
    padding-top: 10px;
    padding-bottom: 10px;
}

@media (max-width: 1199px) {
    .main-header--three.active .main-header__inner {
        padding-top: 20px;
        padding-bottom: 20px;
    }
}

.main-header--three.active .main-menu .main-menu__list > li > a,
.main-header--three.active .main-header__right__info__item,
.main-header--three.active .main-header__right__number,
.main-header--three.active .main-header__right__text {
    color: var(--eolimn-text-dark, #202220);
}

    .main-header--three.active .main-header__right__info__item:hover {
        color: var(--eolimn-base, #60AC45);
    }

    .main-header--three.active .main-menu .main-menu__list > li > a:hover {
        color: var(--eolimn-base, #60AC45);
    }

.main-header--three.active .mobile-nav__btn span {
    background: var(--eolimn-text-dark, #202220);
}

    .main-header--three.active .mobile-nav__btn span:hover {
        background: var(--eolimn-base, #60AC45);
    }

.mobile-nav__btn {
    width: 24px;
    display: flex;
    align-items: center;
    flex-direction: column;
    flex-wrap: wrap;
    cursor: pointer;
    z-index: 3;
}

@media (min-width: 1200px) {
    .mobile-nav__btn {
        display: none;
    }
}

.mobile-nav__btn span {
    width: 100%;
    height: 2px;
    background-color: var(--eolimn-black, #000);
}

    .mobile-nav__btn span:nth-child(2) {
        margin-top: 4px;
        margin-bottom: 4px;
    }

.main-menu {
    /* after third level no menu */
}

    .main-menu .main-menu__list,
    .main-menu .main-menu__list ul {
        margin: 0;
        padding: 0;
        list-style-type: none;
        align-items: center;
        display: none;
    }

@media (min-width: 1200px) {
    .main-menu .main-menu__list,
    .main-menu .main-menu__list ul {
        display: flex;
    }
}

.main-menu .main-menu__list > li {
    padding-top: 40px;
    padding-bottom: 40px;
    position: relative;
}

    .main-menu .main-menu__list > li.dropdown > a {
        position: relative;
    }

    .main-menu .main-menu__list > li + li {
        margin-left: 30px;
    }

@media (max-width: 1299px) {
    .main-menu .main-menu__list > li + li {
        margin-left: 30px;
    }
}

.main-menu .main-menu__list > li > a {
    display: flex;
    align-items: center;
    position: relative;
    transition: all 500ms ease;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.3125;
    color: var(--eolimn-text-dark, #202220);
    text-shadow: 0 0 0.5px currentColor;
    text-transform: uppercase;
}

.main-menu .main-menu__list > li.current > a,
.main-menu .main-menu__list > li:hover > a {
    color: #feb21f;
    text-shadow: 0 0 1px currentColor;
}

.main-menu .main-menu__list li ul {
    position: absolute;
    top: 100%;
    left: -27px;
    min-width: 300px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    opacity: 0;
    visibility: hidden;
    transform-origin: top center;
    transform: scaleY(0) translateZ(100px);
    transition: opacity 500ms ease, visibility 500ms ease, transform 700ms ease;
    z-index: 99;
    background-color: var(--eolimn-white, #fff);
    box-shadow: 0px 10px 60px 0px RGBA(var(--eolimn-white-rgb, 255, 255, 255), 0.07);
    padding: 10px 10px 11px;
    box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
}

.main-menu .main-menu__list li:hover > ul {
    opacity: 1;
    visibility: visible;
    transform: scaleY(1) translateZ(0px);
}

.main-menu .main-menu__list > .megamenu {
    position: static;
}

    .main-menu .main-menu__list > .megamenu > ul {
        top: 100% !important;
        left: 0 !important;
        right: 0 !important;
        background-color: transparent;
        box-shadow: none;
        padding: 0;
    }

.main-menu .main-menu__list li ul li {
    flex: 1 1 100%;
    width: 100%;
    position: relative;
}

    .main-menu .main-menu__list li ul li > a {
        display: flex;
        padding: 8px 20px;
        transition: 400ms;
        margin-bottom: 4px;
        font-style: normal;
        font-weight: 500;
        font-size: 16px;
        line-height: 1.3125;
        color: var(--eolimn-text-dark, #202220);
        text-shadow: 0 0 0.5px currentColor;
        text-transform: capitalize;
    }

        .main-menu .main-menu__list li ul li > a::after {
            position: absolute;
            right: 20px;
            top: 42%;
            border-radius: 0;
            font-size: 6px;
            font-weight: 700;
            font-family: "Font Awesome 5 Free";
            content: "\f111";
            color: #feb21f;
            visibility: hidden;
            opacity: 0;
            transition: all 500ms ease;
            transform: scale(0);
        }

    .main-menu .main-menu__list li ul li.current > a,
    .main-menu .main-menu__list li ul li:hover > a {
        background-color: var(--eolimn-gray, #F5F5F5);
        color: #feb21f;
    }

        .main-menu .main-menu__list li ul li.current > a::after,
        .main-menu .main-menu__list li ul li:hover > a::after {
            visibility: visible;
            opacity: 1;
            transform: scale(1.2);
        }

    .main-menu .main-menu__list li ul li > ul {
        top: 0;
        left: calc(100% + 20px);
    }

        .main-menu .main-menu__list li ul li > ul.right-align {
            top: 0;
            left: auto;
            right: 100%;
        }

        .main-menu .main-menu__list li ul li > ul ul {
            display: none;
        }

@media (min-width: 1200px) and (max-width: 1400px) {
    .main-menu__list li:nth-last-child(1) ul li > ul,
    .main-menu__list li:nth-last-child(2) ul li > ul {
        left: auto;
        right: calc(100% + 20px);
    }
}
/*--------------------------------------------------------------
# Megamenu Popup
--------------------------------------------------------------*/
.mobile-nav__container .main-menu__list > .megamenu.megamenu-clickable > ul,
.main-menu .main-menu__list > .megamenu.megamenu-clickable > ul,
.stricky-header .main-menu__list > .megamenu.megamenu-clickable > ul {
    position: fixed;
    top: 0 !important;
    left: 0 !important;
    width: 100vw;
    height: 100vh;
    visibility: visible;
    overflow-y: scroll;
    visibility: hidden;
    opacity: 0;
    -webkit-transform: scale(1, 0);
    transform: scale(1, 0);
    -webkit-transform-origin: bottom center;
    transform-origin: bottom center;
    transition: transform 0.7s ease, opacity 0.7s ease, visibility 0.7s ease;
    z-index: 999999;
    -ms-overflow-style: none;
    scrollbar-width: none;
    overflow-y: scroll;
    padding: 0;
    background-color: var(--eolimn-white, #fff);
    display: block !important;
    margin: 0;
}

.main-menu__list > li.megamenu-clickable > ul::-webkit-scrollbar {
    display: none;
}

.mobile-nav__container .main-menu__list > .megamenu.megamenu-clickable > ul.megamenu-clickable--active,
.main-menu .main-menu__list > .megamenu.megamenu-clickable > ul.megamenu-clickable--active,
.stricky-header .main-menu__list > .megamenu.megamenu-clickable > ul.megamenu-clickable--active {
    -webkit-transform-origin: top center;
    transform-origin: top center;
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    opacity: 1;
    visibility: visible;
    transition: transform 0.7s ease, opacity 0.7s ease, visibility 0.7s ease;
}

body.megamenu-popup-active {
    overflow: hidden;
}

    body.megamenu-popup-active .stricky-header {
        bottom: 0;
    }

    body.megamenu-popup-active .mobile-nav__content {
        overflow: unset;
    }

.mobile-nav__content .demo-one .container {
    padding-left: 15px;
    padding-right: 15px;
}

.megamenu-popup {
    position: relative;
}

    .megamenu-popup .megamenu-clickable--close {
        position: absolute;
        top: 18px;
        right: 20px;
        display: block;
        color: var(--eolimn-black, #000);
    }

@media (min-width: 1300px) {
    .megamenu-popup .megamenu-clickable--close {
        top: 38px;
        right: 40px;
    }
}

.megamenu-popup .megamenu-clickable--close:hover {
    color: var(--eolimn-base, #60AC45);
}

.megamenu-popup .megamenu-clickable--close span {
    width: 24px;
    height: 24px;
    display: block;
    position: relative;
    color: currentColor;
    transition: all 500ms ease;
}

    .megamenu-popup .megamenu-clickable--close span::before, .megamenu-popup .megamenu-clickable--close span::after {
        content: "";
        width: 100%;
        height: 2px;
        background-color: currentColor;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) rotate(-45deg);
    }

    .megamenu-popup .megamenu-clickable--close span::after {
        transform: translate(-50%, -50%) rotate(45deg);
    }

/*--------------------------------------------------------------
# Sidebar-head
--------------------------------------------------------------*/
/*Header Right Menu Style*/
.header-right-sidebar {
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 999;
    transform: translateX(100%);
    transform-origin: left center;
    transition: transform 600ms ease 600ms, visibility 600ms ease 600ms;
    position: fixed;
    visibility: hidden;
    background: transparent;
}

.header-right-sidebar__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--eolimn-black, #000);
    opacity: 0.7;
    cursor: url(../images/close.png), auto;
}

.header-right-sidebar__content {
    max-width: 460px;
    z-index: 10;
    position: relative;
    height: 100%;
    margin-left: auto;
    margin-right: 0;
    overflow-y: auto;
    padding: 50px 20px;
    overflow: hidden;
    overflow-y: auto;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    opacity: 0;
    visibility: hidden;
    transform: translateX(100%);
    transition: opacity 600ms ease 0ms, visibility 600ms ease 0ms, transform 600ms ease 0ms;
}

.header-right-sidebar__close {
    font-size: 20px;
    color: var(--eolimn-white, #fff);
    position: absolute;
    padding: 30px;
    top: 0px;
    right: 30px;
    cursor: pointer;
}

.header-right-sidebar__logo-box {
    padding-bottom: 20px;
    border-bottom: 1px solid var(--eolimn-border-color, #DEDEDE);
}

.header-right-sidebar__container {
    padding-top: 30px;
}

.header-right-sidebar__container__about {
    padding-bottom: 40px;
}

.header-right-sidebar__container__title {
    font-style: normal;
    font-weight: 600;
    font-size: 25px;
    line-height: 36px;
    color: var(--eolimn-white, #fff);
    text-transform: capitalize;
    margin-bottom: 22px;
}

.header-right-sidebar__container__text {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 175%;
    margin-bottom: 0;
    padding-bottom: 0;
    color: var(--eolimn-text, #74787C);
}

.header-right-sidebar__container__list {
    padding-bottom: 40px;
}

.header-right-sidebar__container__list__item {
    display: flex;
    align-items: center;
    gap: 15px;
}

    .header-right-sidebar__container__list__item + .header-right-sidebar__container__list__item {
        margin-top: 25px;
    }

.header-right-sidebar__container__list__title {
    display: block;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 18px;
    margin-bottom: 0;
    padding-bottom: 0;
    text-transform: capitalize;
    color: var(--eolimn-text, #74787C);
}

.header-right-sidebar__container__list a,
.header-right-sidebar__container__list p {
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 21px;
    margin-bottom: 0;
    padding-bottom: 0;
    color: var(--eolimn-gray, #F5F5F5);
}

    .header-right-sidebar__container__list a:hover {
        color: var(--eolimn-base, #60AC45);
        background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
        transition: all 500ms ease;
    }

        .header-right-sidebar__container__list a:hover:hover {
            background-size: 100% 1px;
        }

.header-right-sidebar__container__icon {
    width: 35px;
    height: 35px;
    padding: 11px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    border-radius: 50%;
    color: var(--eolimn-base, #60AC45);
    background: var(--eolimn-gray, #F5F5F5);
}

.header-right-sidebar__container .newsletter-box input[type=email] {
    width: 100%;
    border: none;
    outline: none;
    height: 55px;
    background-color: var(--eolimn-white, #fff);
    color: var(--eolimn-text, #74787C);
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 175%;
    padding-left: 30px;
    padding-right: 60px;
    transition: all 500ms ease;
}

    .header-right-sidebar__container .newsletter-box input[type=email]:focus {
        color: var(--eolimn-white, #fff);
    }

    .header-right-sidebar__container .newsletter-box input[type=email]::placeholder {
        font-style: normal;
        font-weight: 400;
        font-size: 16px;
        line-height: 175%;
        color: var(--eolimn-text, #74787C);
    }

.header-right-sidebar__container .newsletter-box button {
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 100%;
    text-transform: capitalize;
    background: var(--eolimn-base, #60AC45);
    width: 100%;
    margin-top: 10px;
    border: none;
    height: 45px;
}

    .header-right-sidebar__container .newsletter-box button:hover {
        color: var(--eolimn-base, #60AC45);
        background: var(--eolimn-white, #fff);
    }

.header-right-sidebar.isActive {
    visibility: visible;
    transform: translateX(0%);
}

    .header-right-sidebar.isActive .header-right-sidebar__content {
        visibility: visible;
        opacity: 1;
        transform: translateX(0%);
    }

/*--------------------------------------------------------------
# Home Showcase
--------------------------------------------------------------*/
.demo-one {
    padding-top: 120px;
    padding-bottom: 120px;
}

    .demo-one .row {
        --bs-gutter-y: 30px;
    }

    .demo-one .container {
        max-width: 1200px;
    }

.demo-one__card {
    background-color: var(--eolimn-white, #fff);
    box-shadow: 0px 10px 60px 0px rgba(var(--eolimn-text-dark-rgb, 32, 34, 32), 0.1);
    text-align: center;
    transition: 500ms ease;
    transform: translateY(0px);
}

    .demo-one__card:hover {
        transform: translateY(-10px);
    }

.demo-one__title {
    margin: 0;
    text-transform: capitalize;
    font-size: 18px;
    color: var(--eolimn-text-dark, #202220);
    font-weight: 600;
    font-family: var(--eolimn-font, "DM Sans", sans-serif);
}

    .demo-one__title a {
        color: inherit;
        background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
        transition: all 500ms ease;
    }

        .demo-one__title a:hover {
            background-size: 100% 1px;
        }

.demo-one__image {
    position: relative;
    overflow: hidden;
}

    .demo-one__image img {
        max-width: 100%;
        transition: filter 500ms ease;
        filter: blur(0px);
    }

.demo-one__card:hover .demo-one__image img {
    filter: blur(2px);
}

.demo-one__btns {
    background-color: rgba(var(--eolimn-text-dark-rgb, 32, 34, 32), 0.7);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 10px;
    transform: scale(1, 0);
    transition: transform 500ms ease, opacity 600ms linear;
    transform-origin: bottom center;
    opacity: 0;
}

.demo-one__card:hover .demo-one__btns {
    transform: scale(1, 1);
    opacity: 1;
    transform-origin: top center;
}

.demo-one__btn {
    font-size: 14px;
    padding: 12px 30px;
    min-width: 135px;
    text-align: center;
    justify-content: center;
}

    .demo-one__btn:hover {
        color: var(--eolimn-white, #fff);
    }

@media (min-width: 768px) {
    .demo-one__btn {
        display: inline-flex;
    }
}

.demo-one__title {
    padding-top: 20.5px;
    padding-bottom: 20.5px;
}

.home-showcase {
    margin-left: -60px;
}

    .home-showcase .row {
        --bs-gutter-x: 42px;
        --bs-gutter-y: 20px;
    }

.home-showcase__inner {
    padding: 40px 40px 21px;
    background-color: var(--eolimn-white, #fff);
    box-shadow: 0px 10px 60px 0px rgba(var(--eolimn-text-dark-rgb, 32, 34, 32), 0.07);
}

.home-showcase .demo-one__card {
    box-shadow: none;
}

.home-showcase .demo-one__title {
    padding: 0;
    margin-top: 15px;
    padding-bottom: 15px;
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 18px;
    text-transform: uppercase;
    color: #232728;
}

/*--------------------------------------------------------------
# Why choose
--------------------------------------------------------------*/
.who-we {
    position: relative;
    background: var(--eolimn-gray, #F5F5F5);
}

.who-we--home {
    padding-top: 120px;
    background: transparent;
}

@media (max-width: 991px) {
    .who-we--home {
        padding-top: 0px;
    }
}

.who-we--service {
    overflow: hidden;
}

.who-we__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    mix-blend-mode: multiply;
    opacity: 0.5;
}

.who-we__inner {
    position: relative;
    overflow: hidden;
    max-width: 1700px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: -350px;
    background-color: var(--eolimn-white, #fff);
}

@media (max-width: 991px) {
    .who-we__inner {
        padding-top: 100px;
    }
}

@media (max-width: 767px) {
    .who-we__inner {
        padding-top: 80px;
    }
}

.who-we__thumb {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    overflow: hidden;
}

@media (max-width: 991px) {
    .who-we__thumb {
        position: relative;
        width: 100%;
    }

        .who-we__thumb img {
            object-fit: cover;
            width: 100%;
        }
}

.who-we__right {
    padding: 120px 0px;
    position: relative;
    margin-left: 20px;
    z-index: 1;
}

@media (max-width: 1199px) {
    .who-we__right {
        padding: 100px 0px;
        margin-left: 0px;
    }
}

@media (max-width: 991px) {
    .who-we__right {
        padding: 30px 0px 100px;
    }
}

@media (max-width: 767px) {
    .who-we__right {
        padding-bottom: 80px;
    }
}

.who-we__right .sec-title {
    padding-bottom: 20px;
}

.who-we__tab__link {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
}

    .who-we__tab__link .tab-btn {
        border: 0px solid transparent;
        padding: 3px 10px;
        background: var(--eolimn-white, #fff);
        border-radius: 100px;
        font-style: normal;
        font-weight: 600;
        font-size: 16px;
        line-height: 175%;
    }

    .who-we__tab__link .active-btn {
        color: var(--eolimn-white, #fff);
    }

        .who-we__tab__link .active-btn::before {
            transform: rotate(0deg);
        }

.who-we__item__text {
    color: var(--eolimn-font, "DM Sans", sans-serif);
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 175%;
    color: var(--eolimn-text, #74787C);
    text-transform: capitalize;
    margin-bottom: 21px;
    padding-bottom: 0;
}

.who-we .progress-box__title {
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 188%;
    margin-bottom: 10px;
}

.who-we .progress-box__bar__inner {
    height: 10px;
}

.who-we .progress-box__bar {
    height: 10px;
    background-color: var(--eolimn-border-color, #DEDEDE);
}

.who-we .who-we__progress + .who-we__progress {
    margin-top: 20px;
}

.who-we__shape {
    position: absolute;
    right: 0;
    bottom: 0;
    animation: bottomToTop 4s ease-in-out infinite;
}

@media (max-width: 1199px) {
    .who-we__shape {
        display: none;
    }
}

.why-choose-two {
    position: relative;
    padding: 120px 0px;
}

@media (max-width: 991px) {
    .why-choose-two {
        padding: 100px 0px;
    }
}

@media (max-width: 767px) {
    .why-choose-two {
        padding: 40px 0px;
    }
}

.why-choose-two__bg {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

    .why-choose-two__bg::after {
        content: "";
        position: absolute;
        top: 0;
        mix-blend-mode: multiply;
        left: 0;
        bottom: 0;
        right: 0;
        background: var(--eolimn-gray, #F5F5F5);
        z-index: -1;
    }

.why-choose-two .container {
    position: relative;
}

.why-choose-two__item {
    background: var(--eolimn-white, #fff);
    position: relative;
    padding: 30px;
    z-index: 1;
    overflow: hidden;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

    .why-choose-two__item::after {
        content: "";
        width: 4px;
        height: 14px;
        position: absolute;
        top: 30px;
        left: -0.0001px;
        background: var(--eolimn-base, #60AC45);
        transition: all 0.4s ease;
    }

    .why-choose-two__item::before {
        content: "";
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        background: var(--eolimn-base, #60AC45);
        z-index: -1;
        transform: translateX(-100%);
        transition-delay: 0.3s;
        transition-duration: 0.4s;
        transition-property: transform;
    }

    .why-choose-two__item:hover::after {
        width: 4px;
        top: 0px;
        left: -0.0001px;
        bottom: 0px;
        height: auto;
    }

    .why-choose-two__item:hover::before {
        transform: translateX(0%);
    }

    .why-choose-two__item:hover .why-choose-two__title {
        color: var(--eolimn-white, #fff);
    }

    .why-choose-two__item:hover .why-choose-two__text {
        color: var(--eolimn-gray, #F5F5F5);
    }

.why-choose-two__title {
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    line-height: 100%;
    text-transform: capitalize;
    color: var(--eolimn-text-dark, #202220);
    padding-bottom: 0;
    margin-bottom: 20px;
    text-shadow: 0 0 0.1px currentColor;
    transition: all 0.8s ease-in-out;
}

.why-choose-two__text {
    font-family: var(--eolimn-font, "DM Sans", sans-serif);
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 162%;
    padding-bottom: 0;
    margin-bottom: -6px;
    max-width: 280px;
    width: 100%;
    transition: all 0.8s ease-in-out;
}

.why-choose-two__thumb {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 31.5%;
}

@media (max-width: 991px) {
    .why-choose-two__thumb {
        position: relative;
        width: 100%;
    }
}

.why-choose-two__thumb img {
    object-fit: cover;
}

@media (max-width: 575px) {
    .why-choose-two__thumb img {
        width: 100%;
    }
}

/*--------------------------------------------------------------
# Funfact
--------------------------------------------------------------*/
.funfact-one {
    position: relative;
    background: var(--eolimn-gray, #F5F5F5);
    padding: 38px 0px;
    margin-bottom: -80px;
}

.funfact-one--project {
    margin-bottom: 0;
}

.funfact-one--home {
    padding: 0px 0px;
    background: transparent;
}

    .funfact-one--home .funfact-one__inner {
        position: relative;
        margin-top: -140px;
        background: var(--eolimn-white, #fff);
        box-shadow: 0px 4px 50px 10px rgba(97, 171, 69, 0.15);
    }

.funfact-one__list {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0;
    gap: 70px;
}

@media (max-width: 1199px) {
    .funfact-one__list {
        gap: 60px;
    }
}

@media (max-width: 991px) {
    .funfact-one__list {
        flex-wrap: wrap;
        gap: 0px 70px;
    }
}

@media (max-width: 767px) {
    .funfact-one__list {
        flex-wrap: wrap;
        gap: 0px 30px;
    }
}

@media (max-width: 575px) {
    .funfact-one__list {
        flex-wrap: wrap;
        gap: 0px;
    }
}

.funfact-one__list .funfact-one__list__item {
    padding: 38px 38px 30px;
}

@media (max-width: 991px) {
    .funfact-one__list .funfact-one__list__item {
        flex: 30%;
    }
}

@media (max-width: 575px) {
    .funfact-one__list .funfact-one__list__item {
        flex: 100%;
    }
}

.funfact-one__list .funfact-one__list__item + .funfact-one__list__item .funfact-one__item {
    position: relative;
}

    .funfact-one__list .funfact-one__list__item + .funfact-one__list__item .funfact-one__item::after {
        content: "";
        width: 1px;
        height: 100%;
        position: absolute;
        left: -100px;
        background: var(--eolimn-border-color, #DEDEDE);
    }

@media (max-width: 1199px) {
    .funfact-one__list .funfact-one__list__item + .funfact-one__list__item .funfact-one__item::after {
        left: -75px;
    }
}

@media (max-width: 991px) {
    .funfact-one__list .funfact-one__list__item + .funfact-one__list__item .funfact-one__item::after {
        display: none;
    }
}

.funfact-one__item {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.funfact-one__item__icon {
    font-size: 60px;
    color: var(--eolimn-base, #60AC45);
    line-height: 1;
    margin-bottom: 5px;
}

    .funfact-one__item__icon i {
        color: inherit;
    }

@media (max-width: 767px) {
    .funfact-one__item__icon {
        font-size: 40px;
    }
}

.funfact-one__item__content {
    text-align: center;
}

.funfact-one__item:hover .funfact-one__item__icon {
    animation: bounceIn 1s ease;
}

.funfact-one__count {
    display: flex;
    align-items: center;
    justify-content: center;
    font-style: normal;
    font-weight: 700;
    font-size: 50px;
    line-height: 110%;
    color: var(--eolimn-text-dark, #202220);
    text-align: center;
    margin-bottom: 5px;
    padding-bottom: 0;
}

@media (max-width: 767px) {
    .funfact-one__count {
        font-size: 40px;
    }
}

.funfact-one__count span {
    color: inherit;
    text-align: center;
}

.funfact-one__text {
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 21px;
    margin-bottom: 0;
    padding-bottom: 0;
    color: var(--eolimn-text, #74787C);
    text-transform: uppercase;
}

.funfact-one .col-sm-6 + .col-sm-6 .funfact-one__item {
    border-left: 1px solid var(--eolimn-border-color, #DEDEDE);
}

@media (max-width: 767px) {
    .funfact-one .col-sm-6 + .col-sm-6 .funfact-one__item {
        border-left: 0px solid var(--eolimn-border-color, #DEDEDE);
    }
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
/****Testimonial Card****/
.testimonial-card {
    position: relative;
    z-index: 1;
    margin-top: 44px;
    margin-bottom: 10px;
}

.testimonial-card__inner {
    background: var(--eolimn-gray, #F5F5F5);
    position: relative;
    padding: 25px 30px 30px;
    transition: all 0.4s ease-in-out;
}

@media (max-width: 991px) and (min-width: 767px) {
    .testimonial-card__inner {
        padding: 50px 30px 30px;
    }
}

@media (max-width: 575px) {
    .testimonial-card__inner {
        padding: 50px 30px 30px;
    }
}

.testimonial-card__inner::after {
    width: 100%;
    height: 100%;
    content: "";
    position: absolute;
    bottom: -10px;
    right: -10px;
    background: transparent;
    border: 1px solid var(--eolimn-border-color, #DEDEDE);
    z-index: -1;
}

.testimonial-card__content {
    border-bottom: 1px solid var(--eolimn-border-color, #DEDEDE);
    padding-bottom: 20px;
    margin-bottom: 30px;
}

.testimonial-card__title {
    margin-top: -4px;
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    line-height: 150%;
    margin-bottom: 14px;
    padding-bottom: 0;
    text-transform: capitalize;
}

.testimonial-card__text {
    font-family: var(--eolimn-font, "DM Sans", sans-serif);
    font-style: italic;
    font-weight: 500;
    font-size: 20px;
    line-height: 150%;
    margin-bottom: 0;
    padding-bottom: 0;
    color: var(--eolimn-text, #74787C);
    text-transform: capitalize;
}

.testimonial-card__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media (max-width: 991px) and (min-width: 767px) {
    .testimonial-card__bottom {
        flex-direction: column;
        justify-content: start;
        align-items: start;
        gap: 30px;
    }
}

@media (max-width: 575px) {
    .testimonial-card__bottom {
        flex-direction: column;
        justify-content: start;
        align-items: start;
        gap: 30px;
    }
}

.testimonial-card__author {
    display: flex;
    align-items: center;
    gap: 21px;
}

.testimonial-card__author__thumb {
    max-width: 78px;
    height: 78px;
    border-radius: 50%;
    overflow: hidden;
}

    .testimonial-card__author__thumb img {
        object-fit: cover;
        width: 100%;
    }

.testimonial-card__author__title {
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    line-height: 150%;
    color: var(--eolimn-text-dark, #202220);
    margin-bottom: 4px;
    padding-bottom: 0;
}

.testimonial-card__author__deg {
    display: block;
    font-style: normal;
    font-weight: 500;
    font-size: 15px;
    line-height: 107%;
    color: var(--eolimn-text, #74787C);
}

.testimonial-card__star {
    background: var(--eolimn-text-dark, #202220);
    padding: 7px 14px;
    border-radius: 100px;
    transition: all 0.4s ease-in-out;
}

    .testimonial-card__star span {
        font-size: 14px;
        color: var(--eolimn-white, #fff);
        letter-spacing: 2px;
        line-height: 1;
        transition: all 0.4s ease-in-out;
    }

.testimonial-card__quite {
    position: absolute;
    right: 30px;
    top: -43px;
    width: 85px;
    height: 85px;
    background: var(--eolimn-base, #60AC45);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 50px;
    color: var(--eolimn-white, #fff);
    border-radius: 50%;
    transition: all 0.4s ease-in-out;
}

.testimonial-card:hover .testimonial-card__quite {
    background: var(--eolimn-text-dark, #202220);
    color: var(--eolimn-white, #fff);
}

.testimonial-card:hover .testimonial-card__star {
    background: var(--eolimn-base, #60AC45);
    color: var(--eolimn-white, #fff);
}

.testimonial-card:hover .testimonial-card__inner {
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

    .testimonial-card:hover .testimonial-card__inner::after {
        animation: scaleTwo 4s ease-in-out infinite;
    }

/****Testimonial One****/
.testimonial-one {
    position: relative;
    padding: 120px 0px;
    z-index: 1;
}

@media (max-width: 991px) {
    .testimonial-one {
        padding: 100px 0px;
    }
}

@media (max-width: 767px) {
    .testimonial-one {
        padding: 80px 0px;
    }
}

.testimonial-one__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    z-index: -1;
}

    .testimonial-one__bg::before {
        content: "";
        background-image: url(../images/shapes/testiminials-shape-1-1.png);
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center center;
        z-index: -1;
        opacity: 0.5;
    }

    .testimonial-one__bg::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: -1;
        background: linear-gradient(90deg, rgba(96, 172, 69, 0) 32.72%, #60AC45 57.3%);
    }

/****Testimonial One****/
.testimonials-one {
    position: relative;
    padding: 120px 0px 0;
}

@media (max-width: 991px) {
    .testimonials-one {
        padding: 100px 0px 0;
    }
}

@media (max-width: 767px) {
    .testimonials-one {
        padding: 80px 0px 0;
    }
}

.testimonials-one--about {
    padding: 120px 0px;
}

@media (max-width: 991px) {
    .testimonials-one--about {
        padding: 100px 0px;
    }
}

@media (max-width: 767px) {
    .testimonials-one--about {
        padding: 80px 0px;
    }
}

.testimonials-one__inner {
    position: relative;
    background: var(--eolimn-gray, #F5F5F5);
    padding: 96px 40px 40px 230px;
}

@media (max-width: 991px) {
    .testimonials-one__inner {
        padding: 70px 40px 0px 50px;
    }
}

@media (max-width: 575px) {
    .testimonials-one__inner {
        padding: 0;
    }
}

.testimonials-one__inner__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    z-index: -1;
}

    .testimonials-one__inner__bg::before {
        content: "";
        background-image: url(../images/backgrounds/testimonials-bg-1-1.jpg);
        position: absolute;
        top: 0;
        right: 0;
        height: 100%;
        width: 50%;
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center center;
        z-index: 1;
    }

@media (max-width: 767px) {
    .testimonials-one__inner__bg::before {
        display: none;
    }
}

.testimonials-one__carousel .slick-button {
    position: absolute;
    top: -50%;
    right: -35px;
    border: none;
    outline: none;
    opacity: 1;
    margin: 0;
    padding: 0;
    background: transparent;
    border-radius: 50%;
    transition: all 0.4s ease-in-out;
}

@media (max-width: 991px) {
    .testimonials-one__carousel .slick-button {
        display: none;
    }
}

.testimonials-one__carousel .slick-button i {
    border: none;
    outline: none;
    width: 60px;
    height: 60px;
    background-color: transparent;
    display: flex;
    justify-content: center;
    opacity: 1;
    align-items: center;
    color: var(--eolimn-text, #74787C);
    border-radius: 50%;
    font-size: 16px;
    transition: all 500ms ease;
    border: 1px solid var(--eolimn-border-color, #DEDEDE);
}

    .testimonials-one__carousel .slick-button i:hover {
        background-color: transparent;
        color: var(--eolimn-white, #fff);
        border: 1px solid var(--eolimn-border-color, #DEDEDE);
    }

.testimonials-one__carousel .slick-button:hover {
    background: var(--eolimn-base, #60AC45);
}

.testimonials-one__carousel .slick-button--prev {
    right: 32px;
}

.testimonials-one__item {
    background: transparent;
    padding: 10px 0px 10px 20px;
    position: relative;
}

.testimonials-one__item__inner {
    position: relative;
    background: var(--eolimn-white, #fff);
    padding: 70px 40px 44px;
    margin-left: 20px;
    margin-top: 20px;
}

@media (max-width: 767px) {
    .testimonials-one__item__inner {
        padding: 40px 25px 20px;
    }
}

@media (max-width: 575px) {
    .testimonials-one__item__inner {
        padding: 40px 20px 20px;
    }
}

.testimonials-one__item__inner::after {
    z-index: 1;
    position: absolute;
    top: -16px;
    left: -17px;
    content: "";
    width: 113px;
    height: 112px;
    background: var(--eolimn-base, #60AC45);
    clip-path: polygon(100% 0, 0% 100%, 0 0);
}

@media (max-width: 767px) {
    .testimonials-one__item__inner::after {
        width: 80px;
        height: 80px;
    }
}

.testimonials-one__item__title {
    font-style: italic;
    font-weight: 700;
    font-size: 22px;
    line-height: 136%;
    color: var(--eolimn-text-dark, #202220);
    letter-spacing: -0.02em;
    text-transform: capitalize;
    margin-bottom: 15px;
}

@media (max-width: 767px) {
    .testimonials-one__item__title {
        font-size: 20px;
    }
}

.testimonials-one__item__text {
    font-style: italic;
    font-weight: 500;
    font-size: 22px;
    line-height: 159%;
    text-transform: capitalize;
    margin-bottom: 0;
    padding-bottom: 0;
    color: var(--eolimn-text, #74787C);
}

@media (max-width: 767px) {
    .testimonials-one__item__text {
        font-size: 18px;
    }
}

.testimonials-one__item__author {
    margin-top: 50px;
}

@media (max-width: 767px) {
    .testimonials-one__item__author {
        margin-top: 30px;
    }
}

.testimonials-one__item__name {
    font-style: normal;
    font-weight: 600;
    font-size: 24px;
    line-height: 146%;
    margin-bottom: -5px;
    padding-bottom: 0;
    color: var(--eolimn-text-dark, #202220);
    text-transform: capitalize;
}

.testimonials-one__item__deg {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    margin-bottom: 0;
    padding-bottom: 0;
    text-transform: capitalize;
    color: var(--eolimn-base, #60AC45);
}

.testimonials-one__item__star {
    position: absolute;
    right: 0;
    color: var(--eolimn-white, #fff);
    background: var(--eolimn-base, #60AC45);
    padding: 45px 55px;
    bottom: 0;
}

@media (max-width: 767px) {
    .testimonials-one__item__star {
        padding: 20px 10px;
    }
}

@media (max-width: 500px) {
    .testimonials-one__item__star {
        margin-top: 20px;
        display: inline-block;
        padding: 10px 30px;
        position: relative;
    }

        .testimonials-one__item__star::after {
            display: none;
        }
}

.testimonials-one__item__star::after {
    content: "";
    background: var(--eolimn-base, #60AC45);
    width: 42px;
    height: 100%;
    position: absolute;
    top: 0;
    left: 99%;
    z-index: -1;
}

.testimonials-one__thumb__carousel {
    height: 340px;
    width: 150px !important;
    overflow: hidden;
    position: absolute;
    top: 30%;
    left: 50px;
}

@media (max-width: 991px) {
    .testimonials-one__thumb__carousel {
        margin-top: 50px;
        position: relative;
        height: 150px;
        width: 340px !important;
    }
}

.testimonials-one__thumb__carousel .slick-slide .testimonials-one__thumb__item {
    margin: 10px 10px;
}

.testimonials-one__thumb__carousel .slick-current + .slick-active .testimonials-one__thumb__item {
    transform: scale(1.2);
    border: 1px solid var(--eolimn-base, #60AC45);
}

.testimonials-one__thumb__item {
    width: 87px;
    height: 86px;
    border-radius: 50%;
    cursor: pointer;
}

    .testimonials-one__thumb__item img {
        object-fit: cover;
        width: 100%;
        border-radius: 50%;
        transform: scale(1);
        border: 1px solid transparent;
    }

.testimonials-one__quite {
    position: absolute;
    top: 40px;
    right: 40px;
}

/****Testimonial Two****/
.testimonials-two {
    position: relative;
    padding: 120px 0px;
    background-color: var(--eolimn-gray, #F5F5F5);
    z-index: 1;
}

@media (max-width: 991px) {
    .testimonials-two {
        padding: 100px 0px;
    }
}

@media (max-width: 767px) {
    .testimonials-two {
        padding: 80px 0px;
    }
}

.testimonials-two__bg {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 54%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    z-index: -1;
}

@media (max-width: 991px) {
    .testimonials-two__bg {
        width: 100%;
    }
}

.testimonials-two__bg::before {
    position: absolute;
    mix-blend-mode: multiply;
    content: "";
    background-color: var(--eolimn-base, #60AC45);
    top: 0;
    right: 0;
    height: 100%;
    width: 100%;
    z-index: 1;
}

.testimonials-two .sec-title__tagline,
.testimonials-two .sec-title__title,
.testimonials-two .sec-title__icon {
    color: var(--eolimn-white, #fff);
}

.testimonials-two .sec-title {
    padding-bottom: 25px;
}

.testimonials-two__carousel .owl-dots {
    position: absolute;
    right: 0;
    bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px !important;
    margin-top: 0px;
}

    .testimonials-two__carousel .owl-dots .owl-dot span {
        width: 8px !important;
        height: 8px !important;
        background-color: var(--eolimn-white, #fff) !important;
        border: 0px solid var(--eolimn-white, #fff) !important;
        box-shadow: 0 0 0px rgba(var(--eolimn-black-rgb, 0, 0, 0), 1);
        margin: 0;
        position: relative;
        z-index: -1;
    }

        .testimonials-two__carousel .owl-dots .owl-dot span::after {
            width: 100%;
            height: 100%;
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            background: transparent;
            border-radius: 50%;
            border: 1px solid var(--eolimn-white, #fff);
            transform: scale(1);
            z-index: 1;
        }

    .testimonials-two__carousel .owl-dots .owl-dot:hover span, .testimonials-two__carousel .owl-dots .owl-dot.active span {
        background-color: var(--eolimn-black, #000);
        border: 0px solid var(--eolimn-white, #fff);
        box-shadow: 0 0 1px rgba(var(--eolimn-black-rgb, 0, 0, 0), 1);
    }

        .testimonials-two__carousel .owl-dots .owl-dot:hover span::after, .testimonials-two__carousel .owl-dots .owl-dot.active span::after {
            transform: scale(2.8);
        }

    .testimonials-two__carousel .owl-dots.disabled {
        display: none;
    }

.testimonials-two__thumb {
    position: relative;
    display: flex;
    align-items: center;
    margin-left: 15px;
    gap: 30px;
}

.testimonials-two__thumb__item {
    -webkit-mask: url('data:image/svg+xml;utf8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 507.000000 900.000000">  <g transform="translate(0.000000,900.000000) scale(0.100000,-0.100000)" > <path d="M0 6450 l0 -2550 1439 -2 c792 -2 1442 -6 1446 -9 3 -4 6 -218 5 -476 0 -383 -3 -483 -16 -544 -66 -316 -301 -571 -621 -671 -66 -21 -89 -22 -701 -28 -565 -4 -635 -7 -645 -21 -9 -12 -11 -281 -9 -1083 l2 -1067 728 5 c420 2 759 8 802 14 207 28 441 85 568 138 18 8 39 14 46 14 44 0 394 167 550 263 269 165 586 439 760 657 229 286 394 571 513 885 31 81 41 111 58 170 10 33 22 71 26 85 23 71 76 345 85 443 4 45 11 70 20 74 12 4 14 446 14 3129 l0 3124 -2535 0 -2535 0 0 -2550z"/> </g> </svg>');
    mask: url('data:image/svg+xml;utf8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 507.000000 900.000000">  <g transform="translate(0.000000,900.000000) scale(0.100000,-0.100000)" > <path d="M0 6450 l0 -2550 1439 -2 c792 -2 1442 -6 1446 -9 3 -4 6 -218 5 -476 0 -383 -3 -483 -16 -544 -66 -316 -301 -571 -621 -671 -66 -21 -89 -22 -701 -28 -565 -4 -635 -7 -645 -21 -9 -12 -11 -281 -9 -1083 l2 -1067 728 5 c420 2 759 8 802 14 207 28 441 85 568 138 18 8 39 14 46 14 44 0 394 167 550 263 269 165 586 439 760 657 229 286 394 571 513 885 31 81 41 111 58 170 10 33 22 71 26 85 23 71 76 345 85 443 4 45 11 70 20 74 12 4 14 446 14 3129 l0 3124 -2535 0 -2535 0 0 -2550z"/> </g> </svg>');
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: 5% 0%;
    mask-position: 5% 0%;
    -webkit-mask-size: cover;
    mask-size: cover;
    max-width: 203px;
    width: 100%;
    height: 360px;
}

@media (max-width: 991px) {
    .testimonials-two__thumb {
        margin-left: 0;
    }
}

.testimonials-two__title {
    font-style: italic;
    font-weight: 700;
    font-size: 22px;
    line-height: 136%;
    margin-bottom: 13px;
    padding-bottom: 0;
    letter-spacing: -0.02em;
    text-transform: capitalize;
    color: var(--eolimn-white, #fff);
}

.testimonials-two__text {
    font-style: italic;
    font-weight: 500;
    font-size: 22px;
    line-height: 159%;
    letter-spacing: -0.02em;
    text-transform: capitalize;
    color: var(--eolimn-white, #fff);
}

.testimonials-two__author {
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    padding-top: 18px;
    margin-top: 18px;
}

.testimonials-two__name {
    font-style: normal;
    font-weight: 600;
    font-size: 24px;
    line-height: 146%;
    margin-bottom: -4px;
    padding-bottom: 0;
    color: var(--eolimn-white, #fff);
    text-transform: capitalize;
}

.testimonials-two__dec {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    margin-bottom: 0;
    padding-bottom: 0;
    color: var(--eolimn-white, #fff);
    text-transform: capitalize;
}

.testimonials-two__shape {
    position: absolute;
    bottom: 5%;
    right: 3%;
    left: auto;
    animation: topToBottom 4s ease-in-out infinite;
}

@media (max-width: 767px) {
    .testimonials-two__shape {
        display: none;
    }
}

/*--------------------------------------------------------------
# CTA
--------------------------------------------------------------*/
.cta-one {
    padding-bottom: 120px;
    position: relative;
    background-color: var(--eolimn-white, #fff);
}

    .cta-one .container-fluid {
        max-width: 1380px;
    }

.cta-one__inner {
    position: relative;
    padding: 20px;
}

.cta-one__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.cta-one__title {
    margin: 0;
    text-transform: uppercase;
    max-width: 513px;
    width: 100%;
    font-size: 35px;
    line-height: 1.2em;
    font-weight: bold;
    margin-bottom: 15px;
}

    .cta-one__title span {
        font-family: var(--eolimn-special-font, "Inter", sans-serif);
        font-weight: 400;
    }

@media (min-width: 992px) {
    .cta-one__title {
        font-size: 50px;
        margin-bottom: 30px;
        margin-top: -10px;
    }
}

.cta-one__content {
    position: relative;
    border: 1px solid var(--eolimn-white, #fff);
    padding: 50px 20px;
}

@media (min-width: 768px) {
    .cta-one__content {
        padding: 60px;
    }
}

@media (min-width: 1200px) {
    .cta-one__content {
        padding: 100px;
    }
}

.cta-one__link:hover {
    color: var(--eolimn-white, #fff);
}

.cta-one__link::after {
    background-color: var(--eolimn-black, #000);
}

.cta-one__link::before {
    background-color: var(--eolimn-base, #60AC45);
}

.cta-two {
    position: relative;
    background-color: var(--eolimn-base, #60AC45);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.cta-two__shape {
    position: absolute;
    left: -10px;
    top: 0;
}

    .cta-two__shape img {
        animation: shapeMove 3s linear 0s infinite;
    }

.cta-two__content {
    position: relative;
    padding: 85px 0 90px;
}

.cta-two__sub-title {
    font-family: var(--eolimn-special-font, "Inter", sans-serif);
    color: var(--eolimn-white, #fff);
    font-size: 40px;
    line-height: 1.2em;
    margin: 0 0 2px;
}

.cta-two__title {
    color: var(--eolimn-white, #fff);
    font-size: 50px;
    text-transform: uppercase;
    font-weight: 700;
    margin: 0 0 37px;
}

@media (min-width: 992px) and (max-width: 1199px) {
    .cta-two__title {
        font-size: 44px;
    }
}

@media (max-width: 767px) {
    .cta-two__title {
        font-size: 35px;
    }
}

.cta-two__thumb {
    position: relative;
}

.cta-two__thumb__one {
    position: relative;
    right: 35px;
    margin-top: -28px;
}

@media (max-width: 991px) {
    .cta-two__thumb__one {
        right: 0;
    }
}

.cta-two__thumb__one__shape {
    position: absolute;
    left: -40px;
    top: -40px;
    width: 545px;
    height: 408px;
}

.cta-two__thumb__one__thumb {
    width: 482px;
    height: auto;
    border: 20px solid var(--eolimn-white, #fff);
    position: relative;
    z-index: 2;
    transform: rotate(5deg);
}

@media (max-width: 767px) {
    .cta-two__thumb__one__thumb {
        width: 100%;
    }
}

.cta-two__thumb__one__thumb img {
    width: 100%;
    height: 282px;
    object-fit: cover;
}

@media (max-width: 767px) {
    .cta-two__thumb__one__thumb img {
        height: auto;
    }
}

.cta-two__thumb__two {
    position: absolute;
    right: -48px;
    top: 195px;
    z-index: 3;
}

@media (max-width: 991px) {
    .cta-two__thumb__two {
        top: 45px;
        right: 0;
    }
}

@media (max-width: 767px) {
    .cta-two__thumb__two {
        position: relative;
        top: 0;
        right: 0;
    }
}

.cta-two__thumb__two__flower {
    position: absolute;
    right: -10px;
    top: -121px;
    z-index: 4;
}

@media (max-width: 767px) {
    .cta-two__thumb__two__flower {
        display: none;
    }
}

.cta-two__thumb__two__flower img {
    -webkit-animation-name: float-bob-y-2;
    animation-name: float-bob-y-2;
    -webkit-animation-duration: 4s;
    animation-duration: 4s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
}

.cta-two__thumb__two__shape {
    position: absolute;
    left: -45px;
    top: -60px;
    width: 446px;
    height: 421px;
}

.cta-two__thumb__two__thumb {
    width: 360px;
    height: auto;
    border: 20px solid var(--eolimn-white, #fff);
    position: relative;
    z-index: 2;
    transform: rotate(-17.2deg);
}

@media (max-width: 767px) {
    .cta-two__thumb__two__thumb {
        width: 100%;
    }
}

.cta-two__thumb__two__thumb img {
    width: 100%;
    height: 215px;
    object-fit: cover;
}

@media (max-width: 767px) {
    .cta-two__thumb__two__thumb img {
        height: auto;
    }
}

/*--------------------------------------------------------------
# Gallery
--------------------------------------------------------------*/
.gallery-one {
    padding-top: 120px;
    padding-bottom: 120px;
    background-color: var(--eolimn-white, #fff);
    position: relative;
}

@media (max-width: 991px) {
    .gallery-one {
        padding-top: 100px;
        padding-bottom: 100px;
    }
}

@media (max-width: 767px) {
    .gallery-one {
        padding-top: 80px;
        padding-bottom: 80px;
    }
}

.gallery-one .row {
    --bs-gutter-x: 30px;
    --bs-gutter-y: 30px;
}

@media (min-width: 992px) {
    .gallery-one__carousel .owl-nav {
        display: none;
    }
}

.gallery-one__filter__list {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 10px;
}

    .gallery-one__filter__list li {
        cursor: pointer;
    }

        .gallery-one__filter__list li span {
            display: block;
            font-size: 14px;
            background-color: var(--eolimn-gray, #F5F5F5);
            transition: all 500ms ease;
            text-transform: capitalize;
            font-weight: 600;
            letter-spacing: var(--eolimn-letter-space, 0.1em);
            padding: 12px 20px;
            line-height: 1.2em;
            letter-spacing: 0;
        }

        .gallery-one__filter__list li.active span, .gallery-one__filter__list li:hover span {
            background-color: var(--eolimn-base, #60AC45);
            color: var(--eolimn-white, #fff);
        }

.gallery-one__card {
    position: relative;
    overflow: hidden;
    background-color: var(--eolimn-black, #000);
}

    .gallery-one__card img {
        transform: scale(1);
        max-width: 100%;
        width: 100%;
        transition: transform 500ms ease, opacity 500ms ease;
        opacity: 1;
    }

.gallery-one__card__hover {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(var(--eolimn-text-dark-rgb, 32, 34, 32), 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    transform: scale(1, 0);
    transition: transform 500ms ease;
    transform-origin: bottom center;
}

    .gallery-one__card__hover .img-popup {
        position: relative;
    }

.gallery-one__card:hover img {
    transform: scale(1.05);
    opacity: 0.9;
    mix-blend-mode: screen;
}

.gallery-one__card:hover .gallery-one__card__hover {
    transform-origin: top center;
    transform: scale(1, 1);
}

.gallery-one__card__icon {
    position: relative;
}

.gallery-one__card__icon__item {
    width: 50px;
    height: 50px;
    display: block;
    position: relative;
    background: var(--eolimn-white, #fff);
    border-radius: 50%;
}

    .gallery-one__card__icon__item::after, .gallery-one__card__icon__item::before {
        content: "";
        width: 2px;
        height: 20px;
        background-color: var(--eolimn-base, #60AC45);
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .gallery-one__card__icon__item::after {
        transform: translate(-50%, -50%) rotate(90deg);
    }

.gallery-one__card__icon::after {
    top: 0;
    left: 0;
    content: "";
    width: 50px;
    height: 50px;
    position: absolute;
    background: transparent;
    border: 1px solid var(--eolimn-border-color, #DEDEDE);
    border-radius: 50%;
    animation: scaleOne 2s ease-in-out infinite;
}

.gallery-two {
    position: relative;
    overflow: hidden;
    background-color: var(--eolimn-white, #fff);
    padding: 0 0 20px;
}

    .gallery-two .container-fluid {
        width: 100%;
        padding-left: 0;
        padding-right: 0;
    }

@media (max-width: 767px) {
    .gallery-two .container-fluid {
        padding-left: 15px;
        padding-right: 15px;
    }
}

.gallery-two .row {
    --bs-gutter-x: 20px;
    --bs-gutter-y: 20px;
}

.gallery-two__col-one {
    width: 65%;
}

@media (max-width: 1199px) {
    .gallery-two__col-one {
        width: 100%;
    }
}

.gallery-two__col-two {
    width: 35%;
}

@media (max-width: 1199px) {
    .gallery-two__col-two {
        width: 100%;
    }
}

.gallery-two__card {
    position: relative;
    overflow: hidden;
    background-color: var(--eolimn-black, #000);
}

    .gallery-two__card img {
        transform: scale(1);
        width: 100%;
        transition: transform 500ms ease, opacity 500ms ease;
        opacity: 1;
    }

.gallery-two__card__hover {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(var(--eolimn-black-rgb, 0, 0, 0), 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    transform: scale(1, 0);
    transition: transform 500ms ease;
    transform-origin: bottom center;
}

    .gallery-two__card__hover .img-popup {
        position: relative;
    }

.gallery-two__card:hover img {
    transform: scale(1.05);
    opacity: 0.9;
    mix-blend-mode: screen;
}

.gallery-two__card:hover .gallery-two__card__hover {
    transform-origin: top center;
    transform: scale(1, 1);
}

.gallery-two__card a {
    width: 75px;
    height: 75px;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    background-color: var(--eolimn-white, #fff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .gallery-two__card a:hover .gallery-two__card__icon::after, .gallery-two__card a:hover .gallery-two__card__icon::before {
        background-color: var(--eolimn-base, #60AC45);
    }

.gallery-two__card__icon {
    width: 24px;
    height: 24px;
    display: block;
    position: relative;
}

    .gallery-two__card__icon::after, .gallery-two__card__icon::before {
        content: "";
        width: 2px;
        height: 100%;
        background-color: var(--eolimn-black, #000);
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        transition: all 400ms ease;
    }

    .gallery-two__card__icon::after {
        transform: translate(-50%, -50%) rotate(90deg);
    }

.gallery-two__info {
    position: relative;
    background-color: var(--eolimn-base, #60AC45);
    background-position: left bottom;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 0 50px 0 100px;
    height: 100%;
}

@media (min-width: 1200px) {
    .gallery-two__info {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        flex-direction: column;
    }
}

@media (max-width: 1500px) {
    .gallery-two__info {
        padding-left: 40px;
        padding-right: 30px;
    }
}

@media (max-width: 1199px) {
    .gallery-two__info {
        padding: 80px 50px;
    }
}

@media (max-width: 767px) {
    .gallery-two__info {
        padding: 50px 30px;
    }
}

.gallery-two__info__icon {
    width: 60px;
    height: 60px;
    margin-bottom: 24px;
}

    .gallery-two__info__icon img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.gallery-two__info__title {
    color: var(--eolimn-white, #fff);
    font-size: 44px;
    line-height: 50px;
    text-transform: uppercase;
    font-weight: 700;
    margin: 0;
}

@media (min-width: 1200px) and (max-width: 1300px) {
    .gallery-two__info__title {
        font-size: 35px;
        line-height: 42px;
    }
}

@media (max-width: 767px) {
    .gallery-two__info__title {
        font-size: 35px;
        line-height: 45px;
    }
}

/*--------------------------------------------------------------
# Sidebar
--------------------------------------------------------------*/
/*blog sidebar*/
.sidebar__single {
    background-color: var(--eolimn-gray, #F5F5F5);
    padding: 30px;
}

    .sidebar__single + .sidebar__single {
        margin-top: 30px;
    }

.sidebar__title {
    text-transform: capitalize;
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    line-height: 80%;
    padding-bottom: 0;
    color: var(--eolimn-text-dark, #202220);
    margin-bottom: 28px;
}

.sidebar__form__title {
    margin-top: -6px;
}

.sidebar__search {
    position: relative;
}

    .sidebar__search input[type=search],
    .sidebar__search input[type=text] {
        outline: none;
        width: 100%;
        height: 60px;
        background-color: var(--eolimn-white, #fff);
        color: var(--eolimn-text, #74787C);
        border: none;
        padding-left: 20px;
        padding-right: 20px;
        transition: all 500ms ease;
        font-family: var(--eolimn-font, "DM Sans", sans-serif);
        font-style: normal;
        font-weight: 400;
        font-size: 16px;
        line-height: 100%;
        color: var(--eolimn-text, #74787C);
    }

        .sidebar__search input[type=search]:focus,
        .sidebar__search input[type=text]:focus {
            box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.1);
        }

        .sidebar__search input[type=search]::placeholder,
        .sidebar__search input[type=text]::placeholder {
            font-family: var(--eolimn-font, "DM Sans", sans-serif);
            font-style: normal;
            font-weight: 400;
            font-size: 16px;
            line-height: 100%;
            color: var(--eolimn-text, #74787C);
            text-transform: capitalize;
        }

    .sidebar__search button[type=submit] {
        border: none;
        outline: none;
        background-color: rgba(0, 0, 0, 0);
        position: absolute;
        top: 50%;
        right: 20px;
        line-height: 1;
        transform: translateY(-50%);
        width: auto;
        font-size: 20px;
        color: var(--eolimn-base, #60AC45);
    }

.sidebar__posts {
    margin-bottom: 0;
}

.sidebar__posts__item {
    display: flex;
    align-items: center;
}

    .sidebar__posts__item:hover .sidebar__posts__image::after {
        width: 100%;
        right: auto;
        left: 0;
    }

    .sidebar__posts__item:hover .sidebar__posts__image img {
        transform: scale(1.2) rotate(-15deg);
    }

    .sidebar__posts__item + .sidebar__posts__item {
        margin-top: 30px;
    }

.sidebar__posts__image {
    flex-shrink: 0;
    margin-right: 15px;
    position: relative;
    width: 80px;
    height: 84px;
    overflow: hidden;
}

    .sidebar__posts__image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: all 0.4s ease-in-out;
    }

    .sidebar__posts__image::after {
        content: "";
        width: 0%;
        height: 100%;
        top: 0%;
        left: auto;
        right: 0;
        background-color: rgba(var(--eolimn-text-dark-rgb, 32, 34, 32), 0.5);
        position: absolute;
        transition: all 0.4s ease-in-out;
    }

.sidebar__posts__title {
    margin: 0;
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 156%;
    margin-bottom: -5px;
    padding-bottom: 0;
    color: var(--eolimn-text-dark, #202220);
    text-transform: capitalize;
}

@media (max-width: 1199px) and (min-width: 992px) {
    .sidebar__posts__title {
        font-size: 13px;
    }
}

@media (max-width: 400px) {
    .sidebar__posts__title {
        font-size: 14px;
    }
}

.sidebar__posts__title a {
    color: inherit;
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
    transition: all 500ms ease;
}

    .sidebar__posts__title a:hover {
        background-size: 100% 1px;
    }

    .sidebar__posts__title a:hover {
        color: var(--eolimn-base, #60AC45);
    }

.sidebar__posts__meta {
    margin: 0;
    line-height: 1em;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

    .sidebar__posts__meta a {
        display: inline-flex;
        align-items: center;
        color: var(--eolimn-text, #74787C);
        transition: all 500ms ease;
        font-style: normal;
        font-weight: 500;
        font-size: 12px;
        line-height: 133%;
    }

        .sidebar__posts__meta a:hover {
            color: var(--eolimn-base, #60AC45);
            text-shadow: 0 0 1px currentColor;
        }

        .sidebar__posts__meta a i {
            color: var(--eolimn-base, #60AC45);
            margin-right: 10px;
        }

.sidebar__categories {
    margin-bottom: -14px;
    margin-top: -16px;
}

    .sidebar__categories li a {
        color: var(--eolimn-text, #74787C);
        display: flex;
        justify-content: space-between;
        align-items: center;
        transition: all 500ms ease;
        padding: 7px 0;
        font-style: normal;
        font-weight: 500;
        font-size: 16px;
        line-height: 100%;
        padding-top: 15px;
        padding-bottom: 15px;
    }

        .sidebar__categories li a:hover {
            background-color: var(--eolimn-base, #60AC45);
            color: var(--eolimn-white, #fff);
            text-shadow: 0 0 1px currentColor;
            padding: 15px 20px;
        }

            .sidebar__categories li a:hover span {
                color: var(--eolimn-white, #fff);
            }

        .sidebar__categories li a span {
            color: var(--eolimn-text-dark, #202220);
        }

.sidebar__tags {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

    .sidebar__tags a {
        background-color: var(--eolimn-white, #fff);
        color: var(--eolimn-text-dark, #202220);
        transition: all 500ms ease;
        display: inline-flex;
        padding: 10px 14px;
        font-style: normal;
        font-weight: 500;
        font-size: 14px;
        line-height: 114%;
        text-transform: capitalize;
    }

        .sidebar__tags a:hover {
            color: var(--eolimn-white, #fff);
            background-color: var(--eolimn-base, #60AC45);
        }

.sidebar__comments {
    margin-bottom: 0;
}

.sidebar__comments__item {
    display: flex;
    align-items: center;
}

    .sidebar__comments__item + .sidebar__comments__item {
        margin-top: 30px;
    }

.sidebar__comments__icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--eolimn-base, #60AC45);
    font-size: 16px;
    color: var(--eolimn-white, #fff);
    margin-right: 20px;
    border-radius: 50%;
    transition: all 500ms ease;
}

.sidebar__comments__item:hover .sidebar__comments__icon {
    background-color: var(--eolimn-text-dark, #202220);
    color: var(--eolimn-white, #fff);
}

.sidebar__comments__title {
    margin: 0;
    font-family: var(--eolimn-font, "DM Sans", sans-serif);
    color: var(--eolimn-text, #74787C);
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 156%;
    text-transform: capitalize;
}

    .sidebar__comments__title a {
        color: inherit;
        transition: all 500ms ease;
    }

        .sidebar__comments__title a:hover {
            color: var(--eolimn-base, #60AC45);
        }

.service-sidebar__inner {
    padding: 30px;
    background: var(--eolimn-gray, #F5F5F5);
}

@media (max-width: 1199px) and (min-width: 992px) {
    .service-sidebar__inner {
        padding: 30px 20px;
    }

        .service-sidebar__inner .service-sidebar__contact__number {
            font-size: 20px;
        }
}

@media (max-width: 575px) {
    .service-sidebar__inner {
        padding: 30px 20px;
    }

        .service-sidebar__inner .service-sidebar__contact__number {
            font-size: 20px;
        }
}

.service-sidebar__inner + .service-sidebar__single {
    margin-top: 30px;
}

.service-sidebar__single + .service-sidebar__single {
    margin-top: 40px;
}

.service-sidebar__nav {
    border-top: 0;
    margin-bottom: 0;
    padding-bottom: 10px;
}

    .service-sidebar__nav li a {
        display: block;
        padding: 14px 30px;
        font-style: normal;
        font-weight: 500;
        font-size: 17px;
        line-height: 150%;
        text-transform: capitalize;
        color: var(--eolimn-text-dark, #202220);
        background: var(--eolimn-white, #fff);
        position: relative;
        z-index: 1;
        overflow: hidden;
        transition: all 0.6s ease-in-out;
        letter-spacing: -0.9px;
    }

        .service-sidebar__nav li a::after {
            content: "";
            width: 4px;
            position: absolute;
            top: 24px;
            left: -0.0001px;
            bottom: 24px;
            background: var(--eolimn-base, #60AC45);
            transition: all 0.2s ease;
        }

        .service-sidebar__nav li a::before {
            content: "";
            width: 100%;
            height: 100%;
            position: absolute;
            top: 0;
            left: 0;
            background: var(--eolimn-base, #60AC45);
            z-index: -1;
            transform: translateX(-100%);
            transition-delay: 0.3s;
            transition-duration: 0.4s;
            transition-property: transform;
            transition-timing-function: ease-out;
        }

@media (max-width: 1199px) and (min-width: 992px) {
    .service-sidebar__nav li a {
        padding: 16px 20px;
        font-size: 18px;
    }
}

@media (max-width: 575px) {
    .service-sidebar__nav li a {
        padding: 16px 20px;
        font-size: 18px;
    }
}

.service-sidebar__nav li.current a, .service-sidebar__nav li:hover a {
    color: var(--eolimn-white, #fff);
}

    .service-sidebar__nav li.current a::after, .service-sidebar__nav li:hover a::after {
        width: 4px;
        top: 0px;
        left: -0.0001px;
        bottom: 0px;
    }

    .service-sidebar__nav li.current a::before, .service-sidebar__nav li:hover a::before {
        transform: translateX(0%);
    }

.service-sidebar__nav li + li {
    margin-top: 10px;
}

.service-sidebar__contact {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding-top: 156px;
}

.service-sidebar__contact__content {
    position: relative;
    z-index: 1;
    padding: 0px 20px 30px;
}

    .service-sidebar__contact__content::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-image: url(../images/shapes/sidebar-shape-1-1.png);
        background-position: center center;
        background-repeat: no-repeat;
        background-size: cover;
        background-color: var(--eolimn-base, #60AC45);
        z-index: -1;
        clip-path: polygon(0 35%, 100% 0, 100% 100%, 0% 100%);
    }

    .service-sidebar__contact__content:hover .service-sidebar__contact__icon {
        background: var(--eolimn-text-dark, #202220);
        color: var(--eolimn-base, #60AC45);
    }

.service-sidebar__contact__icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--eolimn-white, #fff);
    color: var(--eolimn-base, #60AC45);
    font-size: 36px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 25px;
    transition: all 0.4s ease;
}

.service-sidebar__contact__time {
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 120%;
    text-transform: uppercase;
    color: var(--eolimn-white, #fff);
    text-align: center;
    margin-bottom: 10px;
}

.service-sidebar__contact__number {
    font-style: normal;
    font-weight: 700;
    font-size: 30px;
    line-height: 120%;
    color: var(--eolimn-white, #fff);
    text-transform: uppercase;
    margin-bottom: 0;
    text-align: center;
    padding-bottom: 0;
    letter-spacing: -1.2px;
}

    .service-sidebar__contact__number a {
        color: inherit;
        background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
        transition: all 500ms ease;
    }

        .service-sidebar__contact__number a:hover {
            background-size: 100% 1px;
        }

.service-sidebar__company {
    display: flex;
    align-items: center;
    gap: 20px;
    background-color: var(--eolimn-gray, #F5F5F5);
    padding-right: 30px;
}

.service-sidebar__company__btn {
    position: relative;
    overflow: hidden;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 59px;
    height: 59px;
    background-color: var(--eolimn-base, #60AC45);
    font-size: 20px;
    color: var(--eolimn-white, #fff);
    transition: all 400ms ease;
}

    .service-sidebar__company__btn:hover {
        background: var(--eolimn-text-dark, #202220);
    }

.service-sidebar__company__title {
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    line-height: 26px;
    margin-bottom: 0;
    padding-bottom: 0;
    color: var(--eolimn-text-dark, #202220);
    text-transform: capitalize;
}

.service-sidebar__company + .service-sidebar__company {
    margin-top: 20px;
}

/*--------------------------------------------------------------
# Blog details
--------------------------------------------------------------*/
.blog-details .blog-card-two {
    padding-bottom: 0;
    border-bottom: none;
}

.blog-details .blog-card-two__content {
    padding: 30px 0px 40px;
    position: relative;
    z-index: 2;
}

.blog-details .blog-card-two__title {
    margin-top: -4px;
    margin-bottom: 0;
    padding-bottom: 0;
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 185%;
    color: var(--eolimn-text-dark, #202220);
    text-transform: capitalize;
    margin-bottom: 10px;
}

.blog-details .blog-card-two__date {
    left: 30px;
    top: 30px;
}

.blog-details .blog-card-two__text {
    font-family: var(--eolimn-font, "DM Sans", sans-serif);
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 188%;
    padding-bottom: 0;
    margin-bottom: 0;
    text-transform: capitalize;
    color: var(--eolimn-text, #74787C);
}

    .blog-details .blog-card-two__text + .blog-card-two__text {
        margin-top: 20px;
    }

.blog-details__feature__thumb {
    margin-top: 30px;
    margin-bottom: 30px;
}

    .blog-details__feature__thumb img {
        object-fit: cover;
        width: 100%;
    }

.blog-details__list {
    margin-top: 30px;
    margin-left: 0;
    margin-bottom: 0;
    padding-left: 1rem;
}

.blog-details__list__item {
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 100%;
    text-transform: capitalize;
    color: var(--eolimn-text, #74787C);
}

    .blog-details__list__item + .blog-details__list__item {
        margin-top: 15px;
    }

.blog-details__meta {
    padding: 20px 0px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    border-top: 1px solid var(--eolimn-border-color, #DEDEDE);
    border-bottom: 1px solid var(--eolimn-border-color, #DEDEDE);
}

.blog-details__tags, .blog-details__cetagoris {
    display: flex;
    align-items: center;
    gap: 30px;
}

.blog-details__tags__title, .blog-details__cetagoris__title {
    font-family: var(--eolimn-font, "DM Sans", sans-serif);
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 89%;
    text-transform: uppercase;
    color: var(--eolimn-text-dark, #202220);
    margin-bottom: 0;
    padding-bottom: 0;
}

.blog-details__tags .sidebar__cetagoris, .blog-details__cetagoris .sidebar__cetagoris {
    display: flex;
    align-items: center;
    gap: 10px;
}

    .blog-details__tags .sidebar__cetagoris a, .blog-details__cetagoris .sidebar__cetagoris a {
        font-style: normal;
        font-weight: 500;
        font-size: 16px;
        line-height: 114%;
        padding: 12px;
        color: var(--eolimn-text, #74787C);
        background: var(--eolimn-gray, #F5F5F5);
        text-transform: capitalize;
    }

        .blog-details__tags .sidebar__cetagoris a:hover, .blog-details__cetagoris .sidebar__cetagoris a:hover {
            color: var(--eolimn-white, #fff);
            background: var(--eolimn-base, #60AC45);
        }

.blog-details__tags .sidebar__tags, .blog-details__cetagoris .sidebar__tags {
    gap: 0;
}

    .blog-details__tags .sidebar__tags a, .blog-details__cetagoris .sidebar__tags a {
        padding: 2px;
        color: var(--eolimn-text, #74787C);
    }

        .blog-details__tags .sidebar__tags a:hover, .blog-details__cetagoris .sidebar__tags a:hover {
            color: var(--eolimn-base, #60AC45);
            background: transparent;
        }

/*--------------------------------------------------------------
# Comments
--------------------------------------------------------------*/
.comments-one {
    margin-top: 40px;
}

@media (min-width: 1200px) {
    .comments-one {
        margin-top: 55px;
    }
}

.comments-one__title {
    margin: 0;
    text-transform: capitalize;
    font-size: 25px;
    margin-top: -4px;
    margin-bottom: -4px;
    font-style: normal;
    font-weight: 600;
    line-height: 100%;
    color: var(--eolimn-text-dark, #202220);
}

@media (min-width: 992px) {
    .comments-one__title {
        font-size: 30px;
    }
}

.comments-one__list {
    margin: 0;
    margin-top: 40px;
}

.comments-one__card {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--eolimn-border-color, #DEDEDE);
}

@media (min-width: 768px) {
    .comments-one__card {
        display: flex;
        align-items: flex-start;
    }
}

.comments-one__card__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.comments-one__card__image {
    margin-right: 20px;
}

    .comments-one__card__image img {
        border-radius: 50%;
    }

.comments-one__card__title {
    margin: 0;
    text-transform: capitalize;
    color: var(--eolimn-text-dark, #202220);
    margin-top: 20px;
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    line-height: 110%;
    margin-bottom: 15px;
}

.comments-one__card__date {
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 100%;
    margin-bottom: 20px;
    padding-bottom: 0;
    color: var(--eolimn-text, #74787C);
    text-shadow: 0 0 0.2px currentColor;
}

.comments-one__card__text {
    margin-bottom: 20px;
    font-weight: 500;
    font-size: 16px;
    line-height: 188%;
    color: var(--eolimn-text, #74787C);
    margin-bottom: -13px;
    padding-bottom: 0;
}

.comments-one__card__reply {
    padding: 10.5px 12px;
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 114%;
}

.comments-one__card__content {
    position: relative;
}

.comments-form {
    margin-top: 40px;
}

@media (min-width: 1200px) {
    .comments-form {
        margin-top: 55px;
    }
}

.comments-form__title {
    margin: 0;
    font-size: 25px;
    font-weight: 700;
    line-height: 123%;
    margin-top: -4px;
    margin-bottom: -4px;
    color: var(--eolimn-text-dark, #202220);
}

@media (min-width: 992px) {
    .comments-form__title {
        font-size: 30px;
    }
}

.comments-form input[type=text],
.comments-form input[type=email] {
    background-color: transparent;
    color: var(--eolimn-text, #74787C);
    font-size: 16px;
    font-weight: 500;
    border-top: none;
    border-left: none;
    border-right: none;
    border-bottom: 1px solid var(--eolimn-border-color, #DEDEDE);
    outline: none;
    padding-left: 0px;
    padding-right: 30px;
}

    .comments-form input[type=text]::placeholder,
    .comments-form input[type=email]::placeholder {
        color: var(--eolimn-text, #74787C);
        font-size: 16px;
        font-weight: 500;
        text-transform: capitalize;
    }

.comments-form__form {
    margin-top: 23px;
}

.comments-form .eolimn-btn {
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 21px;
    text-transform: uppercase;
    padding: 11.5px 23.5px;
}

/*--------------------------------------------------------------
# Shop
--------------------------------------------------------------*/
.product {
    position: relative;
}

.product__sidebar {
    position: relative;
    margin-top: 85px;
}

@media (max-width: 991px) {
    .product__sidebar {
        margin-top: 0;
    }
}

.product__sidebar--title {
    font-style: normal;
    font-weight: 700;
    font-size: 18px;
    line-height: 89%;
    padding-bottom: 0;
    margin-top: -5px;
    text-transform: capitalize;
    margin-bottom: 25px;
}

.product__search-box {
    background: var(--eolimn-gray, #F5F5F5);
    margin-bottom: 30px;
    padding: 30px;
}

.product__search {
    position: relative;
    border-radius: 0;
    position: relative;
}

    .product__search input[type=text] {
        width: 100%;
        height: 58px;
        background-color: var(--eolimn-white, #fff);
        padding-left: 15px;
        padding-right: 50px;
        font-family: var(--eolimn-font, "DM Sans", sans-serif);
        color: var(--eolimn-text, #74787C);
        border: 1px solid var(--eolimn-border-color, #DEDEDE);
        outline: none;
        font-weight: 500;
        font-size: 14px;
        border-radius: 0;
        line-height: 114%;
        outline: none;
        position: relative;
    }

        .product__search input[type=text]::placeholder {
            font-weight: 500;
            font-size: 14px;
            line-height: 114%;
            color: var(--eolimn-text, #74787C);
            text-transform: capitalize;
        }

    .product__search button[type=submit] {
        border: none;
        outline: none;
        background-color: rgba(0, 0, 0, 0);
        position: absolute;
        top: 0%;
        right: 10px;
        transform: translateY(80%);
        width: auto;
        font-size: 20px;
        line-height: 0;
        color: var(--eolimn-base, #60AC45);
    }

.product__price-ranger {
    background-color: var(--eolimn-gray, #F5F5F5);
    padding: 30px;
    margin-bottom: 30px;
}

    .product__price-ranger .price-ranger {
        background: var(--eolimn-white, #fff);
        border: 1px solid var(--eolimn-border-color, #DEDEDE);
        padding: 0px 22px 0px 10px;
    }

    .product__price-ranger #slider-range {
        margin: 22px 0 0 0px;
        background: var(--eolimn-white, #fff);
        border: 1px solid var(--eolimn-base, #60AC45) !important;
        border-radius: 10px !important;
        border: none;
        height: 7px;
        border-radius: 0;
        position: relative;
    }

        .product__price-ranger #slider-range .ui-slider-range {
            height: 100%;
            background: var(--eolimn-base, #60AC45);
        }

        .product__price-ranger #slider-range .ui-slider-handle {
            position: absolute;
            top: -6px;
            background: var(--eolimn-base, #60AC45);
            border: 0;
            height: 18px;
            width: 18px !important;
            border-radius: 50%;
            margin-left: -2px;
            outline: medium none;
            cursor: pointer;
            z-index: 2;
        }

    .product__price-ranger .price-ranger .ui-slider .ui-slider-handle:nth-child(2) {
        display: none;
    }

    .product__price-ranger .price-ranger .ui-slider .ui-slider-handle:nth-child(3)::after {
        content: "";
        width: 8px;
        height: 8px;
        background-color: var(--eolimn-white, #fff);
        border-radius: 50%;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .product__price-ranger .ranger-min-max-block {
        position: relative;
        display: block;
        margin: 3px 0 0 0px;
    }

        .product__price-ranger .ranger-min-max-block input[type=text] {
            position: relative;
            display: inline-block;
            color: var(--eolimn-text, #74787C);
            font-size: 12px;
            font-weight: 500;
            width: 40px;
            line-height: 20px;
            border: none;
            outline: none;
            font-family: var(--eolimn-font, "DM Sans", sans-serif);
            padding: 0;
            text-align: center;
            background-color: transparent;
        }

        .product__price-ranger .ranger-min-max-block span {
            position: relative;
            display: inline-block;
            color: var(--eolimn-text, #74787C);
            font-size: 14px;
            font-weight: 500;
            line-height: 20px;
            left: -2px;
        }

.product__categories {
    background-color: var(--eolimn-gray, #F5F5F5);
    padding: 30px;
}

    .product__categories ul {
        margin: 0;
        padding: 0;
        list-style: none;
        margin-left: -15px;
        margin-right: -15px;
        margin-bottom: -20px;
    }

        .product__categories ul li {
            position: relative;
            margin: 0 0 4px;
        }

            .product__categories ul li a {
                position: relative;
                transition: all 0.3s ease;
                display: flex;
                align-items: center;
                z-index: 1;
                padding: 11px 15px 11px;
                font-weight: 500;
                font-size: 16px;
                line-height: 100%;
                text-transform: capitalize;
                color: var(--eolimn-text, #74787C);
            }

                .product__categories ul li a i {
                    position: relative;
                    display: inline-block;
                    font-size: 12px;
                    color: var(--eolimn-text, #74787C);
                    margin-right: 10px;
                    transition: all 0.3s ease;
                }

                .product__categories ul li a::before {
                    content: "";
                    position: absolute;
                    top: 0;
                    left: 0;
                    bottom: 0;
                    width: 100%;
                    background-color: var(--eolimn-base, #60AC45);
                    z-index: -1;
                    transform: scale(1, 0);
                    perspective: 400px;
                    visibility: hidden;
                    transition: transform 500ms ease-in-out, visibility 500ms ease-in-out;
                    transform-origin: bottom center;
                }

            .product__categories ul li:hover a, .product__categories ul li.active a {
                color: var(--eolimn-white, #fff);
                padding-left: 27px;
            }

                .product__categories ul li:hover a i, .product__categories ul li.active a i {
                    color: var(--eolimn-white, #fff);
                }

                .product__categories ul li:hover a::before, .product__categories ul li.active a::before {
                    transform: scale(1, 1);
                    visibility: visible;
                    transform-origin: top center;
                }

            .product__categories ul li.active a {
                font-weight: 600;
            }

.product__info-top {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

@media (max-width: 991px) {
    .product__info-top {
        margin-top: 50px;
    }
}

@media (max-width: 767px) {
    .product__info-top {
        display: block;
        margin-top: 40px;
    }
}

.product__showing-text {
    margin: 0;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 100%;
    padding-bottom: 0;
    color: var(--eolimn-text, #74787C);
}

@media (max-width: 767px) {
    .product__showing-text {
        margin-bottom: 10px;
    }
}

.product__showing-sort {
    margin: 0;
    font-size: 18px;
}

    .product__showing-sort .bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) {
        position: relative;
        display: block;
        width: 200px !important;
        font-family: var(--eolimn-font, "DM Sans", sans-serif);
    }

@media (max-width: 360px) {
    .product__showing-sort .bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) {
        width: 300px !important;
    }
}

.product__showing-sort .bootstrap-select > .dropdown-toggle::after {
    display: none;
}

.product__showing-sort .bootstrap-select .dropdown-menu {
    border: none;
}

.product__showing-sort .bootstrap-select > .dropdown-toggle {
    position: relative;
    height: 56px;
    outline: none !important;
    border-radius: 0;
    border: 0;
    background-color: var(--eolimn-gray, #F5F5F5) !important;
    margin: 0;
    padding: 0;
    padding-left: 30px;
    padding-right: 30px;
    color: var(--eolimn-text-dark, #202220) !important;
    box-shadow: none !important;
    background-repeat: no-repeat;
    background-size: 14px 12px;
    background-position: right 25.75px center;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 56px;
    text-transform: capitalize;
}

    .product__showing-sort .bootstrap-select > .dropdown-toggle:before {
        position: absolute;
        top: 0;
        bottom: 0;
        right: 30px;
        font-family: "Font Awesome 5 Free";
        content: "\f107";
        font-weight: 900;
        font-size: 16px;
        color: var(--eolimn-text-dark, #202220) !important;
    }

.product__showing-sort .bootstrap-select .dropdown-menu > li + li > a {
    border-top: 1px solid var(--eolimn-border-color, #DEDEDE);
}

.product__showing-sort .bootstrap-select .dropdown-menu > li > a {
    font-size: 16px;
    font-weight: 600;
    padding: 10px 30px;
    color: var(--eolimn-text-dark, #202220);
    background-color: var(--eolimn-gray, #F5F5F5);
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    text-transform: capitalize;
}

.product__showing-sort .bootstrap-select .dropdown-menu > li:hover > a,
.product__showing-sort .bootstrap-select .dropdown-menu > li.selected > a {
    background: var(--eolimn-base, #60AC45);
    color: var(--eolimn-white, #fff);
    border-color: var(--eolimn-base, #60AC45);
}

.product__item {
    position: relative;
    background-color: var(--eolimn-white, #fff);
    transition: all 500ms ease;
}

    .product__item:hover {
        box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
    }

.product__item__img {
    background-color: var(--eolimn-gray, #F5F5F5);
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    text-align: center;
    padding: 35px 0px;
}

    .product__item__img img {
        text-align: center;
        width: auto !important;
        mix-blend-mode: multiply;
        transition: all 500ms ease;
        transform: scale(1);
    }

.product__item__btn {
    position: absolute;
    right: 20px;
    top: 20px;
    z-index: 2;
}

    .product__item__btn a {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 40px;
        height: 40px;
        background-color: var(--eolimn-white, #fff);
        border-radius: 50%;
        color: var(--eolimn-text-dark, #202220);
        font-size: 14px;
        visibility: hidden;
        opacity: 0;
    }

        .product__item__btn a:hover {
            background-color: var(--eolimn-base, #60AC45);
            color: var(--eolimn-white, #fff);
        }

        .product__item__btn a:nth-child(1) {
            -webkit-transition: transform 350ms cubic-bezier(0.445, 0.05, 0.55, 0.95), opacity ease 300ms, visibility ease 300ms, background ease 300ms, color ease 300ms, border ease 300ms;
            -moz-transition: transform 350ms cubic-bezier(0.445, 0.05, 0.55, 0.95), opacity ease 300ms, visibility ease 300ms, background ease 300ms, color ease 300ms, border ease 300ms;
            -ms-transition: transform 350ms cubic-bezier(0.445, 0.05, 0.55, 0.95), opacity ease 300ms, visibility ease 300ms, background ease 300ms, color ease 300ms, border ease 300ms;
            -o-transition: transform 350ms cubic-bezier(0.445, 0.05, 0.55, 0.95), opacity ease 300ms, visibility ease 300ms, background ease 300ms, color ease 300ms, border ease 300ms;
            transition: transform 350ms cubic-bezier(0.445, 0.05, 0.55, 0.95), opacity ease 300ms, visibility ease 300ms, background ease 300ms, color ease 300ms, border ease 300ms;
            transform: translate3d(30px, 0, 0);
            -moz-transform: translate3d(30px, 0, 0);
            -webkit-transform: translate3d(30px, 0, 0);
            -ms-transform: translate3d(30px, 0, 0);
            -o-transform: translate3d(30px, 0, 0);
        }

        .product__item__btn a:nth-child(2) {
            -webkit-transition: transform 550ms cubic-bezier(0.445, 0.05, 0.55, 0.95), opacity ease 300ms, visibility ease 300ms, background ease 300ms, color ease 300ms, border ease 300ms;
            -moz-transition: transform 550ms cubic-bezier(0.445, 0.05, 0.55, 0.95), opacity ease 300ms, visibility ease 300ms, background ease 300ms, color ease 300ms, border ease 300ms;
            -ms-transition: transform 550ms cubic-bezier(0.445, 0.05, 0.55, 0.95), opacity ease 300ms, visibility ease 300ms, background ease 300ms, color ease 300ms, border ease 300ms;
            -o-transition: transform 550ms cubic-bezier(0.445, 0.05, 0.55, 0.95), opacity ease 300ms, visibility ease 300ms, background ease 300ms, color ease 300ms, border ease 300ms;
            transition: transform 550ms cubic-bezier(0.445, 0.05, 0.55, 0.95), opacity ease 300ms, visibility ease 300ms, background ease 300ms, color ease 300ms, border ease 300ms;
            transform: translate3d(30px, 0, 0);
            -moz-transform: translate3d(30px, 0, 0);
            -webkit-transform: translate3d(30px, 0, 0);
            -ms-transform: translate3d(30px, 0, 0);
            -o-transform: translate3d(30px, 0, 0);
        }

        .product__item__btn a + a {
            margin-top: 10px;
        }

.product__item:hover .product__item__img img {
    transform: scale(1.05);
}

.product__item:hover .product__item__btn a {
    opacity: 1;
    visibility: visible;
    transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -webkit-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
}

.product__item__content {
    position: relative;
    text-align: center;
    padding: 30px 20px;
    border-top: none !important;
    border: 1px solid var(--eolimn-border-color, #DEDEDE);
}

.product__item__ratings {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    color: var(--eolimn-base, #60AC45);
    letter-spacing: 2.5px;
    margin-bottom: 17px;
}

.product__item__title {
    margin: 0;
    margin-bottom: 13px;
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 26px;
    color: var(--eolimn-text-dark, #202220);
    text-transform: capitalize;
}

    .product__item__title a {
        color: inherit;
        background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
        transition: all 500ms ease;
    }

        .product__item__title a:hover {
            background-size: 100% 1px;
        }

        .product__item__title a:hover {
            color: var(--eolimn-base, #60AC45);
        }

.product__item__price {
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--eolimn-text, #74787C);
    font-style: normal;
    font-weight: 500;
    margin-bottom: 15px;
    font-size: 18px;
    line-height: 23px;
}

.product__item__link {
    display: inline-flex;
    text-transform: uppercase;
    align-items: center;
    font-style: normal;
    font-weight: 700;
    margin-bottom: 0;
    font-size: 12px;
    line-height: 133%;
}

.product__item__link__icon {
    position: relative;
    display: inline-flex;
    margin-left: 20px;
    font-size: 16px;
}

    .product__item__link__icon i {
        font-size: 15px;
    }

    .product__item__link__icon::before {
        content: "";
        width: 1px;
        height: 100%;
        position: absolute;
        top: 50%;
        left: -7px;
        transform: translateY(-50%);
        background-color: rgba(var(--eolimn-white-rgb, 255, 255, 255), 0.2);
        transition: all 400ms ease;
    }

.product__item__link:hover .product__item__link__icon::before {
    background-color: rgba(var(--eolimn-base-rgb, 96, 172, 69), 0.2);
}

.product__item__link:hover {
    border: 1px solid var(--eolimn-base, #60AC45);
    background: transparent;
}

.product-one {
    padding: 120px 0;
    background-color: var(--eolimn-white, #fff);
}

@media (max-width: 767px) {
    .product-one {
        padding: 80px 0;
    }
}

.product-one--page {
    padding-top: 100px;
}

@media (max-width: 767px) {
    .product-one--page {
        padding-top: 60px;
    }
}

.product-one--home {
    position: relative;
    padding: 0 0 90px;
}

@media (max-width: 767px) {
    .product-one--home {
        padding-bottom: 50px;
    }
}

.product-one--home .sec-title {
    text-align: center;
}

.product-one--home .product__item {
    margin-bottom: 30px;
}

@media (min-width: 992px) {
    .product-one__carousel .owl-nav {
        display: none;
    }
}

.product-one .post-pagination {
    margin-top: 30px;
}

/*--------------------------------------------------------------
# Shop details
--------------------------------------------------------------*/
.product-details {
    position: relative;
    padding: 120px 0;
    background-color: var(--eolimn-white, #fff);
}

@media (max-width: 767px) {
    .product-details {
        padding: 80px 0;
    }
}

.product-details__img {
    padding: 67px;
    background-color: var(--eolimn-gray, #F5F5F5);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .product-details__img img {
        max-width: 100%;
        height: auto;
    }

.product-details__top {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    font-family: var(--eolimn-heading-font, "DM Sans", sans-serif);
    margin-bottom: 22px;
}

.product-details__title {
    font-size: 34px;
    text-transform: capitalize;
    margin: 0;
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    line-height: 31px;
    color: var(--eolimn-text-dark, #202220);
    letter-spacing: -0.001px;
}

.product-details__price {
    color: var(--eolimn-base, #60AC45);
    margin: 0 0 0 30px;
    font-family: var(--eolimn-font, "DM Sans", sans-serif);
    font-weight: 700;
    font-size: 24px;
    line-height: 31px;
}

.product-details__review {
    position: relative;
    display: flex;
    align-items: center;
    letter-spacing: 3px;
    font-size: 16px;
    color: var(--eolimn-base, #60AC45);
}

    .product-details__review a {
        display: inline-block;
        color: var(--eolimn-text, #74787C);
        font-size: 16px;
        letter-spacing: 0;
        margin-left: 12px;
        font-weight: 500;
        transition: all 500ms ease;
        line-height: 21px;
    }

        .product-details__review a:hover {
            color: var(--eolimn-base, #60AC45);
        }

.product-details__divider {
    width: 100%;
    height: 1px;
    background-color: rgba(var(--eolimn-border-color-rgb, 222, 222, 222), 0.4);
    margin: 25px 0 21px;
}

.product-details__excerpt {
    margin: 0;
}

.product-details__excerpt-text1 {
    margin: 0 0 38px;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 188%;
    color: var(--eolimn-text, #74787C);
}

.product-details__quantity {
    position: relative;
    display: flex;
    align-items: center;
    margin: 0px 0 40px;
}

.product-details__quantity-title {
    margin: 0;
    text-transform: capitalize;
    margin-right: 20px;
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 175%;
}

.product-details__quantity .quantity-box {
    position: relative;
    width: 98px;
    height: 50px;
}

    .product-details__quantity .quantity-box input {
        width: 98px;
        height: 50px;
        border: 1px solid var(--eolimn-border-color, #DEDEDE);
        -webkit-appearance: textfield;
        -moz-appearance: textfield;
        appearance: textfield;
        font-family: var(--eolimn-font, "DM Sans", sans-serif);
        color: var(--eolimn-base, #60AC45);
        padding-left: 30px;
        outline: none;
        font-size: 18px;
        font-weight: 500;
        background-color: transparent;
    }

    .product-details__quantity .quantity-box button {
        width: 24px;
        height: 24px;
        color: var(--eolimn-text, #74787C);
        font-size: 8px;
        position: absolute;
        top: 1px;
        right: 1px;
        background-color: transparent;
        border: none;
        border-left: 1px solid var(--eolimn-border-color, #DEDEDE);
        display: flex;
        align-items: center;
        justify-content: center;
        outline: none;
        transition: all 500ms ease;
    }

        .product-details__quantity .quantity-box button.sub {
            bottom: 1px;
            top: auto;
            border-top: 1px solid var(--eolimn-border-color, #DEDEDE);
        }

        .product-details__quantity .quantity-box button:hover {
            color: var(--eolimn-base, #60AC45);
        }

.product-details__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

    .product-details__buttons a {
        text-transform: uppercase;
        display: inline-flex;
        font-style: normal;
        font-weight: 700;
        font-size: 15px;
        line-height: 20px;
        margin-bottom: 0;
        padding: 16.5px 22px;
    }

        .product-details__buttons a:hover {
            border: 1px solid var(--eolimn-base, #60AC45);
        }

        .product-details__buttons a:last-child {
            border: 1px solid var(--eolimn-text-dark, #202220);
            padding: 16.5px 30px;
            background: var(--eolimn-text-dark, #202220);
            color: var(--eolimn-white, #fff);
        }

            .product-details__buttons a:last-child:hover {
                color: var(--eolimn-white, #fff);
                border: 1px solid var(--eolimn-base, #60AC45);
                background: var(--eolimn-base, #60AC45);
            }

.product-details__buttons__icon {
    position: relative;
    display: inline-flex;
    margin-left: 29px;
    font-size: 18px;
}

    .product-details__buttons__icon i {
        font-size: 18px;
    }

    .product-details__buttons__icon::before {
        content: "";
        width: 1px;
        height: 100%;
        position: absolute;
        top: 50%;
        left: -14px;
        transform: translateY(-50%);
        background-color: rgba(var(--eolimn-white-rgb, 255, 255, 255), 0.2);
        transition: all 400ms ease;
    }

.product-details__socials {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 40px;
}

.product-details__socials__title {
    text-transform: capitalize;
    margin: 0;
    margin-right: 10px;
    flex: 0 0 100%;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 100%;
    color: var(--eolimn-text, #74787C);
}

@media (min-width: 768px) {
    .product-details__socials__title {
        flex: 0 0 auto;
    }
}

.product-details__socials a {
    width: 36px;
    height: 36px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: transparent;
    font-size: 16px;
    color: var(--eolimn-text, #74787C);
    transition: all 500ms ease;
    border: 1px solid var(--eolimn-border-color, #DEDEDE);
}

    .product-details__socials a:hover {
        background-color: var(--eolimn-base, #60AC45);
        color: var(--eolimn-white, #fff);
    }

.product-details__description {
    position: relative;
    margin: 55px 0 58px;
    border-bottom: 1px solid var(--eolimn-border-color, #DEDEDE);
}

@media (max-width: 991px) {
    .product-details__description {
        margin: 45px 0 30px;
    }
}

.product-details__description__title {
    font-size: 24px;
    text-transform: capitalize;
    margin-bottom: 18px;
    font-weight: bold;
    line-height: 31px;
}

.product-details__description__text {
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 188%;
}

    .product-details__description__text + .product-details__description__text {
        margin-top: 23px;
        padding-bottom: 20px;
    }

.product-details__description__lists {
    margin: 0 0 30px;
    padding: 0;
}

    .product-details__description__lists li {
        display: block;
        position: relative;
        padding: 0 0 0 36px;
        font-size: 16px;
        line-height: 30px;
        font-weight: 600;
        color: var(--eolimn-black, #000);
    }

        .product-details__description__lists li span {
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            margin: auto;
            display: inline-block;
            font-size: 20px;
            line-height: 30px;
            color: var(--eolimn-base, #60AC45);
        }

.product-details__review-title {
    margin-bottom: 44px;
    font-weight: bold;
    font-style: normal;
    font-size: 24px;
    line-height: 154%;
}

.product-details__comment-title {
    margin: 0;
    text-transform: capitalize;
    font-size: 25px;
    margin-top: -4px;
    margin-bottom: 35px;
    font-style: normal;
    font-weight: 600;
    line-height: 100%;
    color: var(--eolimn-text-dark, #202220);
}

@media (min-width: 992px) {
    .product-details__comment-title {
        margin-bottom: 56px;
    }
}

.product-details__comment__list {
    margin: 0;
    margin-top: 35px;
}

.product-details__comment__card {
    margin-bottom: 30px;
    padding-bottom: 27px;
    border-bottom: 1px solid var(--eolimn-border-color, #DEDEDE);
}

@media (min-width: 768px) {
    .product-details__comment__card {
        display: flex;
        align-items: flex-start;
    }
}

.product-details__comment__card__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.product-details__comment__card__image {
    margin-right: 20px;
}

    .product-details__comment__card__image img {
        border-radius: 50%;
    }

.product-details__comment__card__title {
    margin: 0;
    text-transform: capitalize;
    color: var(--eolimn-text-dark, #202220);
    margin-top: 20px;
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    line-height: 110%;
    margin-bottom: 15px;
}

.product-details__comment__card__date {
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 100%;
    margin-bottom: 20px;
    padding-bottom: 0;
    color: var(--eolimn-text, #74787C);
    text-shadow: 0 0 0.2px currentColor;
}

.product-details__comment__card__text {
    margin-bottom: 20px;
    font-weight: 500;
    font-size: 16px;
    line-height: 188%;
    color: var(--eolimn-text, #74787C);
    margin-bottom: -7px;
    padding-bottom: 0;
}

.product-details__comment__card__star {
    color: var(--eolimn-base, #60AC45);
    font-size: 16px;
    letter-spacing: 2px;
}

.product-details__comment__card__content {
    position: relative;
}

.product-details__form {
    position: relative;
    margin: 51px 0 0;
}

@media (max-width: 767px) {
    .product-details__form {
        margin: 30px 0 0;
    }
}

.product-details__form .row {
    --bs-gutter-x: 20px;
}

.product-details__form-title {
    margin-bottom: 14px;
    font-weight: bold;
    font-style: normal;
    font-size: 24px;
    line-height: 154%;
    text-transform: none;
}

.product-details__form-text {
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 100%;
    margin-bottom: 27px;
    padding-bottom: 0;
    text-transform: capitalize;
}

.product-details__form-ratings {
    display: flex;
    align-items: center;
    letter-spacing: 6px;
    font-size: 16px;
    color: var(--eolimn-base, #60AC45);
    margin: 0 0 15px;
}

.product-details__form-ratings__label {
    display: inline-block;
    letter-spacing: 0;
    color: var(--eolimn-text-dark, #202220);
    margin: 0 17px 0 0;
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 100%;
    text-transform: capitalize;
}

.product-details__form-ratings span {
    color: var(--eolimn-text, #74787C);
}

.product-details__form__form {
    margin-top: 30px;
}

    .product-details__form__form input[type=text],
    .product-details__form__form input[type=email] {
        background-color: transparent;
        color: var(--eolimn-text, #74787C);
        font-size: 16px;
        font-weight: 500;
        border-top: none;
        border-left: none;
        border-right: none;
        border-bottom: 1px solid var(--eolimn-border-color, #DEDEDE);
        outline: none;
        padding-left: 0px;
        padding-right: 30px;
    }

        .product-details__form__form input[type=text]::placeholder,
        .product-details__form__form input[type=email]::placeholder {
            color: var(--eolimn-text, #74787C);
            font-size: 16px;
            font-weight: 500;
            text-transform: capitalize;
        }

.product-details__form .eolimn-btn {
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 21px;
    text-transform: uppercase;
    padding: 11.5px 23.5px;
}

/*--------------------------------------------------------------
# Cart
--------------------------------------------------------------*/
.cart-page {
    position: relative;
    padding: 120px 0;
}

@media (max-width: 767px) {
    .cart-page {
        padding: 80px 0;
    }
}

.cart-page .table-responsive {
    position: relative;
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.cart-page__table {
    position: relative;
    width: 100%;
    border: none;
    margin: 0 0 60px;
}

@media (max-width: 1199px) {
    .cart-page__table {
        min-width: 1170px;
    }
}

.cart-page__table thead tr th {
    color: var(--eolimn-black, #000);
    font-size: 20px;
    line-height: 20px;
    font-weight: 600;
    padding: 0 0 24px;
    font-family: var(--eolimn-heading-font, "DM Sans", sans-serif);
    text-transform: capitalize;
    border: none;
    background-color: transparent;
    border-bottom: 1px solid var(--eolimn-border-color, #DEDEDE) !important;
    box-shadow: none;
}

    .cart-page__table thead tr th:last-child {
        text-align: right;
    }

.cart-page__table tbody tr td {
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 21px;
    color: var(--eolimn-text, #74787C);
    vertical-align: middle;
    border: none;
    box-shadow: none;
    background-color: transparent;
    border-top: 1px solid var(--eolimn-border-color, #DEDEDE);
    border-bottom: 1px solid var(--eolimn-border-color, #DEDEDE);
    padding: 30px 0;
    letter-spacing: 0;
}

    .cart-page__table tbody tr td:last-child {
        text-align: right;
    }

.cart-page__table__meta {
    display: flex;
    align-items: center;
}

.cart-page__table__meta-img {
    width: 70px;
    height: 70px;
    background-color: var(--eolimn-gray, #F5F5F5);
    border: 1px solid transparent;
    margin-right: 34px;
}

    .cart-page__table__meta-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        mix-blend-mode: multiply;
    }

.cart-page__table__meta-title {
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 23px;
    text-transform: capitalize;
    color: var(--eolimn-text-dark, #202220);
}

    .cart-page__table__meta-title a {
        color: inherit;
    }

        .cart-page__table__meta-title a:hover {
            color: var(--eolimn-base, #60AC45);
        }

.cart-page__table__remove {
    display: block;
    color: var(--eolimn-text, #74787C);
    font-size: 13px;
    padding-right: 20px;
}

    .cart-page__table__remove:hover {
        color: var(--eolimn-base, #60AC45);
    }

.cart-page__table .product-details__quantity {
    margin-bottom: 0;
}

    .cart-page__table .product-details__quantity .quantity-box input {
        font-size: 16px;
        font-weight: bold;
    }

.cart-page__coupone__box {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media (max-width: 767px) {
    .cart-page__coupone__box {
        margin-top: 20px;
        justify-content: start;
        flex-direction: column;
        gap: 30px;
        align-items: start;
    }
}

.cart-page__coupone__box__btn {
    text-transform: uppercase;
    padding: 17px 28px;
}

.cart-page__coupone {
    margin-bottom: 50px;
}

.cart-page__coupone__title {
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 21px;
    text-transform: capitalize;
    color: var(--eolimn-text-dark, #202220);
    text-shadow: 0 0 0.2px currentColor;
}

.cart-page__coupone__form {
    position: relative;
    display: flex;
}

@media (max-width: 767px) {
    .cart-page__coupone__form {
        display: block;
        width: 100%;
    }
}

.cart-page__coupone__form input[type=text] {
    height: 58px;
    width: 268px;
    border: none;
    background-color: var(--eolimn-gray, #F5F5F5);
    padding-left: 30px;
    padding-right: 30px;
    outline: none;
    font-size: 14px;
    color: var(--eolimn-text, #74787C);
    font-family: var(--eolimn-font, "DM Sans", sans-serif);
    display: block;
    font-weight: 500;
    margin-right: 10px;
}

    .cart-page__coupone__form input[type=text]::placeholder {
        text-transform: capitalize;
    }

@media (max-width: 1199px) {
    .cart-page__coupone__form input[type=text] {
        width: 250px;
    }
}

@media (max-width: 767px) {
    .cart-page__coupone__form input[type=text] {
        width: 100%;
        margin: 0 0 10px;
    }
}

.cart-page__coupone__form button {
    text-transform: uppercase;
}

.cart-page__coupone__list {
    max-width: 315px;
    margin-left: auto;
    margin-right: 0;
    width: 100%;
}

.cart-page__cart-total__title {
    font-style: normal;
    font-weight: 700;
    font-size: 30px;
    line-height: 39px;
    border-bottom: 1px solid var(--eolimn-border-color, #DEDEDE);
    padding-bottom: 20px;
    margin-bottom: 25px;
}

.cart-page__cart-total {
    margin-bottom: 10px;
}

.cart-page__cart-total__item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 150%;
    text-transform: capitalize;
    font-family: var(--eolimn-font, "DM Sans", sans-serif);
}

    .cart-page__cart-total__item:first-child {
        margin-bottom: 15px;
    }

    .cart-page__cart-total__item:last-child {
        margin-top: 15px;
        padding-top: 15px;
        border-top: 1px solid var(--eolimn-border-color, #DEDEDE);
    }

        .cart-page__cart-total__item:last-child span {
            color: var(--eolimn-text-dark, #202220);
        }

    .cart-page__cart-total__item span {
        font-style: normal;
        font-weight: 600;
        font-size: 20px;
        line-height: 160%;
        color: var(--eolimn-text-dark, #202220);
    }

    .cart-page__cart-total__item p {
        font-style: normal;
        font-weight: 500;
        font-size: 16px;
        line-height: 162%;
        margin-bottom: 0;
        padding-bottom: 0;
    }

.cart-page__buttons {
    display: flex;
    justify-content: end;
}

    .cart-page__buttons a {
        text-transform: uppercase;
        padding: 17px 28px;
    }

/*--------------------------------------------------------------
# Checkout
--------------------------------------------------------------*/
.checkout-page {
    position: relative;
    padding: 120px 0;
    background-color: var(--eolimn-white, #fff);
}

@media (max-width: 767px) {
    .checkout-page {
        padding: 80px 0;
    }
}

.checkout-page .bs-gutter-x-20 {
    --bs-gutter-x: 20px;
}

.checkout-page__billing-address {
    position: relative;
}

.checkout-page__billing-address__title {
    text-transform: capitalize;
    margin: 0 0 34px;
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    line-height: 31px;
    color: var(--eolimn-text-dark, #202220);
}

@media (max-width: 767px) {
    .checkout-page__billing-address__title {
        font-size: 20px;
    }
}

.checkout-page__shipping-address {
    position: relative;
}

@media (max-width: 991px) {
    .checkout-page__shipping-address {
        margin: 50px 0 0;
    }
}

.checkout-page__shipping-address .checkout-page__form {
    margin-top: 50px;
}

.checkout-page__shipping-address__title {
    text-transform: capitalize;
    margin: 0 0 18px;
    font-style: normal;
    font-weight: 500;
    font-size: 24px;
    line-height: 31px;
}

@media (max-width: 767px) {
    .checkout-page__shipping-address__title {
        font-size: 20px;
    }
}

.checkout-page__input-box {
    position: relative;
    line-height: 1;
    margin: 0 0 20px;
}

    .checkout-page__input-box label {
        font-family: var(--eolimn-font, "DM Sans", sans-serif);
        font-style: normal;
        font-weight: 500;
        font-size: 16px;
        line-height: 21px;
        text-transform: capitalize;
        color: var(--eolimn-text-dark, #202220);
        text-shadow: 0 0 0.2px currentColor;
        margin-bottom: 13px;
    }

    .checkout-page__input-box input[type=text],
    .checkout-page__input-box input[type=email],
    .checkout-page__input-box input[type=tel] {
        height: 58px;
        width: 100%;
        border: none;
        background-color: var(--eolimn-gray, #F5F5F5);
        padding-left: 30px;
        padding-right: 30px;
        outline: none;
        font-size: 14px;
        color: var(--eolimn-text, #74787C);
        font-family: var(--eolimn-font, "DM Sans", sans-serif);
        display: block;
        font-weight: 500;
    }

    .checkout-page__input-box .bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) {
        position: relative;
        display: block;
        width: 100% !important;
        font-family: var(--eolimn-font, "DM Sans", sans-serif);
    }

    .checkout-page__input-box .bootstrap-select > .dropdown-toggle::after {
        display: none;
    }

    .checkout-page__input-box .bootstrap-select > .dropdown-toggle {
        position: relative;
        height: 58px;
        outline: none !important;
        border-radius: 0;
        border: 0;
        background-color: var(--eolimn-gray, #F5F5F5) !important;
        margin: 0;
        padding: 0;
        padding-left: 30px;
        padding-right: 30px;
        color: var(--eolimn-text, #74787C) !important;
        font-size: 14px;
        line-height: 58px;
        font-weight: 500;
        box-shadow: none !important;
        background-repeat: no-repeat;
        background-size: 14px 12px;
        background-position: right 25.75px center;
    }

        .checkout-page__input-box .bootstrap-select > .dropdown-toggle:before {
            position: absolute;
            top: 0;
            bottom: 0;
            right: 30px;
            font-family: "Font Awesome 5 Free";
            content: "\f107";
            font-weight: 900;
            font-size: 14px;
            color: var(--eolimn-text, #74787C);
        }

    .checkout-page__input-box .bootstrap-select .dropdown-menu > li + li > a {
        border-top: 1px solid var(--eolimn-border-color, #DEDEDE);
    }

    .checkout-page__input-box .bootstrap-select .dropdown-menu {
        border: none;
    }

        .checkout-page__input-box .bootstrap-select .dropdown-menu > li > a {
            font-size: 14px;
            font-weight: 500;
            padding: 15px 30px;
            color: var(--eolimn-text, #74787C);
            background-color: var(--eolimn-gray, #F5F5F5);
            -webkit-transition: all 0.4s ease;
            transition: all 0.4s ease;
        }

        .checkout-page__input-box .bootstrap-select .dropdown-menu > li:hover > a,
        .checkout-page__input-box .bootstrap-select .dropdown-menu > li.selected > a {
            background: var(--eolimn-base, #60AC45);
            color: var(--eolimn-white, #fff);
            border-color: var(--eolimn-base, #60AC45);
        }

    .checkout-page__input-box textarea {
        color: var(--eolimn-text, #74787C);
        height: 177px;
        width: 100%;
        background-color: var(--eolimn-gray, #F5F5F5);
        font-family: var(--eolimn-font, "DM Sans", sans-serif);
        padding: 20px 30px 30px;
        border: none;
        outline: none;
        margin-bottom: 0px;
        font-style: normal;
        font-weight: 500;
        font-size: 16px;
        line-height: 162%;
        text-transform: capitalize;
    }

.checkout-page__your-order {
    position: relative;
    margin: 32px 0 0;
}

.checkout-page__your-order__title {
    text-transform: capitalize;
    margin-bottom: 27px;
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    line-height: 31px;
    color: var(--eolimn-text-dark, #202220);
}

.checkout-page__order-table {
    position: relative;
    width: 100%;
    border: none;
    margin: 0 0 0;
}

    .checkout-page__order-table thead tr th {
        font-size: 20px;
        color: var(--eolimn-text-dark, #202220);
        text-transform: capitalize;
        font-style: normal;
        font-weight: 500;
        font-size: 20px;
        line-height: 26px;
        font-family: var(--eolimn-heading-font, "DM Sans", sans-serif);
        margin: 0;
        padding: 28px 0;
        text-shadow: 0 0 0.1px currentColor;
        border: none;
        border-top: 1px solid var(--eolimn-border-color, #DEDEDE);
        border-bottom: 1px solid var(--eolimn-border-color, #DEDEDE);
    }

        .checkout-page__order-table thead tr th:last-child {
            text-align: right;
        }

    .checkout-page__order-table tbody tr td {
        color: var(--eolimn-text, #74787C);
        margin: 0;
        padding: 0 0 30px;
        border: none;
        font-family: var(--eolimn-font, "DM Sans", sans-serif);
        font-style: normal;
        font-weight: 500;
        font-size: 16px;
        line-height: 21px;
        text-transform: capitalize;
    }

        .checkout-page__order-table tbody tr td:last-child {
            text-align: right;
        }

    .checkout-page__order-table tbody tr:last-child {
        border-top: 1px solid var(--eolimn-border-color, #DEDEDE);
    }

        .checkout-page__order-table tbody tr:last-child td {
            padding-top: 20px;
            color: var(--eolimn-text-dark, #202220);
            text-shadow: 0 0 0.1px currentColor;
        }

    .checkout-page__order-table tbody tr:first-child td {
        padding-top: 25px;
    }

    .checkout-page__order-table tbody tr:last-child td {
        padding-bottom: 26px;
    }

.checkout-page__payment {
    background-color: var(--eolimn-gray, #F5F5F5);
    padding: 30px;
    min-height: 295px;
}

.checkout-page__payment__item {
    position: relative;
}

.checkout-page__payment__title {
    display: flex;
    text-transform: capitalize;
    margin: 0;
    align-items: center;
    margin-bottom: 20px;
    cursor: pointer;
    color: var(--eolimn-text-dark, #202220);
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 21px;
}

    .checkout-page__payment__title::before {
        content: "\f111";
        width: 20px;
        height: 20px;
        background-color: transparent;
        border-radius: 50%;
        margin-right: 10px;
        border: 1px solid var(--eolimn-text, #74787C);
        border-radius: 50%;
        font-family: "Font Awesome 5 Free";
        font-weight: 900;
        font-size: 8px;
        display: flex;
        justify-content: center;
        color: var(--eolimn-text, #74787C);
        align-items: center;
        margin-right: 14px;
        position: relative;
        top: 1px;
        transition: all 500ms ease;
    }

.checkout-page__payment__item--active .checkout-page__payment__title::before {
    background-color: transparent;
    border-color: var(--eolimn-base, #60AC45);
    content: "\f111";
    color: var(--eolimn-base, #60AC45);
}

.checkout-page__payment__content {
    margin-left: 35px;
    margin-bottom: 28px;
    font-size: 15px;
    line-height: 30px;
}

.checkout-page__payment .eolimn-btn {
    margin-top: 40px;
    text-transform: uppercase;
    padding: 17px 28px;
}

/*--------------------------------------------------------------
# Login
--------------------------------------------------------------*/
.login-page {
    padding: 120px 0px;
    position: relative;
}

.login-page__thumb {
    position: relative;
    z-index: 1;
    margin-left: 30px;
    margin-right: 30px;
}

    .login-page__thumb img {
        width: 100%;
        object-fit: cover;
        z-index: 1;
        position: relative;
    }

    .login-page__thumb::after {
        content: "";
        width: 100%;
        height: 100%;
        position: absolute;
        bottom: -30px;
        background: transparent;
        border: 1px solid var(--eolimn-base, #60AC45);
        left: -30px;
        z-index: -1;
        animation: topTobottom 4s ease-in-out infinite;
    }

.login-page__login-box {
    position: relative;
    background: var(--eolimn-gray, #F5F5F5);
    padding: 55px 105px;
}

.login-page__content {
    max-width: 557px;
    margin-left: auto;
    margin-right: auto;
}

.login-page__logo {
    display: flex;
    width: 100%;
    margin-bottom: 32px;
}

.login-page__title {
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    line-height: 140%;
    margin-bottom: 10px;
    padding-bottom: 0;
}

.login-page__input-box {
    position: relative;
}

.login-page__input-box--bottom {
    padding-top: 20px;
    margin-bottom: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.login-page__input-box__inner {
    display: flex;
    align-items: center;
    gap: 8px;
}

    .login-page__input-box__inner .remember-policy {
        font-family: var(--eolimn-font, "DM Sans", sans-serif);
        font-style: normal;
        font-weight: 400;
        font-size: 12px;
        line-height: 167%;
        letter-spacing: 0.3px;
        color: var(--eolimn-text-dark, #202220);
    }

.login-page__input-box__toggle {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 40px;
    height: 20px;
    display: inline-block;
    position: relative;
    border-radius: 50px;
    overflow: hidden;
    outline: none;
    border: none;
    cursor: pointer;
    background-color: var(--eolimn-border-color, #DEDEDE);
    transition: background-color ease 0.3s;
}

    .login-page__input-box__toggle::before {
        content: "";
        display: block;
        position: absolute;
        z-index: 2;
        width: 16px;
        height: 16px;
        background: #fff;
        left: 2px;
        top: 2px;
        border-radius: 50%;
        white-space: nowrap;
        box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
        transition: all cubic-bezier(0.3, 1.5, 0.7, 1) 0.3s;
    }

    .login-page__input-box__toggle:checked {
        background-color: var(--eolimn-base, #60AC45);
    }

        .login-page__input-box__toggle:checked::before {
            left: 22px;
        }

.login-page__input-box label {
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 86%;
    letter-spacing: 0.3px;
    color: var(--eolimn-text-dark, #202220);
    text-shadow: 0 0 0.1px currentColor;
}

.login-page__input-box input[type=text],
.login-page__input-box input[type=password] {
    margin-top: -3px;
    height: 48px;
    width: 100%;
    background-color: var(--eolimn-white, #fff);
    padding-left: 15px;
    padding-right: 30px;
    outline: none;
    font-size: 14px;
    color: var(--eolimn-text, #74787C);
    font-family: var(--eolimn-font, "DM Sans", sans-serif);
    display: block;
    font-weight: 500;
    border-radius: 6px;
    border: 1px solid var(--eolimn-border-color, #DEDEDE);
}

    .login-page__input-box input[type=text]::placeholder,
    .login-page__input-box input[type=password]::placeholder {
        color: var(--eolimn-text, #74787C);
        font-style: normal;
        font-weight: 400;
        font-size: 15px;
        line-height: 133%;
        text-transform: none;
    }

.login-page__input-box span {
    cursor: pointer;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(50%);
    z-index: 1;
    font-size: 16px;
    color: var(--eolimn-text, #74787C);
    transition: all 400ms ease;
}

    .login-page__input-box span:hover {
        color: var(--eolimn-base, #60AC45);
    }

.login-page__input-box__btn button {
    width: 100%;
    display: block;
}

.login-page__input-box__btn + .login-page__input-box__btn {
    padding-top: 30px;
    margin-top: 30px;
    border-top: 1px solid var(--eolimn-border-color, #DEDEDE);
}

.login-page__input-box__btn .eolimn-btn {
    border: none;
    background: var(--eolimn-base, #60AC45);
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 125%;
    text-transform: capitalize;
    color: var(--eolimn-white, #fff);
    border-radius: 4px;
    padding: 11px 30px;
}

    .login-page__input-box__btn .eolimn-btn::before {
        display: none;
    }

    .login-page__input-box__btn .eolimn-btn:hover {
        background: var(--eolimn-text-dark, #202220);
    }

.login-page__input-box__btn:last-child .eolimn-btn {
    background: var(--eolimn-text-dark, #202220);
    font-size: 12px;
    font-weight: 500;
}

    .login-page__input-box__btn:last-child .eolimn-btn:hover {
        background: var(--eolimn-base, #60AC45);
    }

.login-page .login-page__input-box + .login-page__input-box {
    margin-top: 5px;
}

.login-page__form__forgot {
    font-weight: 400;
    font-size: 12px;
    line-height: 167%;
    text-align: right;
    color: var(--eolimn-text, #74787C);
    text-transform: capitalize;
    margin-bottom: 0;
    padding-bottom: 0;
}

    .login-page__form__forgot:hover {
        color: var(--eolimn-base, #60AC45);
    }

.login-page__form__text {
    margin-top: 24px;
    font-style: normal;
    font-weight: 400;
    font-size: 12px;
    line-height: 167%;
    letter-spacing: 0.3px;
    color: #1A1A1A;
    text-transform: capitalize;
    text-align: center;
    margin-bottom: 0;
}

    .login-page__form__text a {
        color: var(--eolimn-base, #60AC45);
        margin-left: 5px;
        background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
        transition: all 500ms ease;
    }

        .login-page__form__text a:hover {
            background-size: 100% 1px;
        }

.gutter-y-60 {
    --bs-gutter-y: 60px;
}

.gutter-x-60 {
    --bs-gutter-x: 60px;
}

/*--------------------------------------------------------------
# error 404
--------------------------------------------------------------*/
.error-404 {
    position: relative;
    padding: 120px 0px;
}

@media (max-width: 991px) {
    .error-404 {
        padding: 100px 0px;
    }
}

@media (max-width: 767px) {
    .error-404 {
        padding: 80px 0px;
    }
}

.error-404 .container {
    max-width: 1067px;
    margin-left: auto;
    margin-right: auto;
}

.error-404__inner {
    background: var(--eolimn-gray, #F5F5F5);
    padding: 60px;
    margin-right: 30px;
    position: relative;
    z-index: 1;
}

@media (max-width: 991px) {
    .error-404__inner {
        margin-right: 0;
    }
}

@media (max-width: 767px) {
    .error-404__thumb {
        position: relative;
        max-width: 443px;
        width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
}

.error-404__thumb__item {
    text-align: end;
    animation: topToBottom 4s ease-in-out infinite;
}

.error-404__thumb__item--two {
    text-align: left;
    animation: bottomToTop 4s ease-in-out infinite;
}

@media (max-width: 575px) {
    .error-404__thumb__item img {
        width: 100%;
        object-fit: cover;
    }
}

.error-404__thumb__item + .error-404__thumb__item {
    margin-top: 30px;
}

.error-404__thumb::after {
    width: 324px;
    height: 324px;
    border-radius: 50%;
    background: var(--eolimn-white, #fff);
    content: "";
    position: absolute;
    top: 22%;
    left: 20%;
    z-index: -1;
    animation: scaleTwo 4s ease-in-out infinite;
}

@media (max-width: 991px) and (min-width: 768px) {
    .error-404__thumb::after {
        width: 224px;
        height: 224px;
        transform: translate(50%, 50%);
    }
}

@media (max-width: 575px) {
    .error-404__thumb::after {
        width: 224px;
        height: 224px;
        transform: translate(50%, 50%);
    }
}

.error-404__content {
    text-align: center;
    margin-left: -30px;
}

    .error-404__content .error {
        font-family: var(--eolimn-font, "DM Sans", sans-serif);
        font-style: normal;
        font-weight: 700;
        font-size: 90px;
        line-height: 117px;
        color: var(--eolimn-text-dark, #202220);
        margin-bottom: -8px;
    }

.error-404__content__title {
    font-style: normal;
    font-weight: 700;
    font-size: 30px;
    line-height: 39px;
    margin-bottom: 0;
    padding-bottom: 0;
    color: var(--eolimn-text-dark, #202220);
    text-transform: capitalize;
    margin-bottom: 12px;
}

.error-404__content__text {
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 175%;
    color: var(--eolimn-text, #74787C);
    margin-bottom: 0;
    padding-bottom: 43px;
    max-width: 470px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    text-transform: capitalize;
}

.error-404__content__btn {
    text-transform: uppercase;
    padding: 10px 24px;
}

/*--------------------------------------------------------------
# Faq
--------------------------------------------------------------*/
.faq-page-search {
    padding: 120px 0px;
    background-color: var(--eolimn-white, #fff);
    position: relative;
}

@media (max-width: 991px) {
    .faq-page-search {
        padding: 100px 0px;
    }
}

@media (max-width: 767px) {
    .faq-page-search {
        padding: 80px 0px;
    }
}

.faq-page-search__inner {
    max-width: 770px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}

.faq-page-search__top__title {
    text-align: center;
    font-style: normal;
    font-weight: 700;
    font-size: 55px;
    line-height: 109%;
    margin-bottom: 0;
    padding-bottom: 0;
    color: var(--eolimn-text-dark, #202220);
}

.faq-page-search__form {
    display: flex;
    align-items: center;
    position: relative;
    justify-content: center;
    margin-top: 25px;
    border: 1px solid var(--eolimn-border-color, #DEDEDE);
}

    .faq-page-search__form input[type=text] {
        border: none;
        outline: none;
        display: block;
        background-color: var(--eolimn-white, #fff);
        color: var(--eolimn-text, #74787C);
        font-size: 16px;
        width: 100%;
        padding-left: 30px;
        height: 55px;
    }

        .faq-page-search__form input[type=text]::placeholder {
            font-style: normal;
            font-weight: 400;
            font-size: 14px;
            line-height: 18px;
            color: var(--eolimn-text, #74787C);
        }

.faq-page-search__form__btn {
    border: none;
    outline: none;
    background-color: transparent;
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    font-size: 18px;
    transition: all 0.4s ease-in-out;
    color: var(--eolimn-base, #60AC45);
}

@media (min-width: 768px) {
    .faq-page-search__form__btn {
        font-size: 20px;
    }
}

.faq-page-search__form__btn:hover {
    color: var(--eolimn-text-dark, #202220);
}

.faq-page {
    padding: 120px 0px;
    background-color: var(--eolimn-gray, #F5F5F5);
}

@media (max-width: 991px) {
    .faq-page {
        padding: 100px 0px;
    }
}

@media (max-width: 767px) {
    .faq-page {
        padding: 80px 0px;
    }
}

.faq-page__thumb {
    margin-right: 30px;
}

    .faq-page__thumb img {
        object-fit: cover;
        width: 100%;
    }

@media (max-width: 1199px) {
    .faq-page__thumb {
        margin-right: 0;
    }
}

.faq-page__accordion .accrodion {
    background: var(--eolimn-white, #fff);
}

    .faq-page__accordion .accrodion + .accrodion {
        margin-top: 20px;
    }

.faq-page__accordion .accrodion-title {
    padding: 25px 20px 25px 13px;
    padding-left: 78px;
    cursor: pointer;
}

@media (min-width: 768px) {
    .faq-page__accordion .accrodion-title {
        padding-left: 78px;
    }
}

.faq-page__accordion .accrodion-title .accrodion-title__text {
    text-transform: capitalize;
    color: var(--eolimn-text-dark, #202220);
    margin: 0;
    transition: all 500ms ease;
    position: relative;
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 21px;
    position: relative;
}

    .faq-page__accordion .accrodion-title .accrodion-title__text::after {
        content: "";
        width: 0;
        height: 1px;
        background-color: var(--eolimn-border-color, #DEDEDE);
        position: absolute;
        top: calc(100% + 11.5px);
        left: -21px;
        transition: all 600ms linear;
    }

.faq-page__accordion .accrodion-title__icon {
    width: 45px;
    height: 45px;
    position: absolute;
    top: 50%;
    background: #f4af03;
    left: -60px;
    transform: translateY(-50%);
    z-index: 1;
}

    .faq-page__accordion .accrodion-title__icon::after, .faq-page__accordion .accrodion-title__icon::before {
        width: 2px;
        height: 16px;
        position: absolute;
        background-color: var(--eolimn-white, #fff);
        top: 50%;
        left: 50%;
        content: "";
        transform: translate(-50%, -50%);
        transition: all 500ms ease;
    }

    .faq-page__accordion .accrodion-title__icon::after {
        width: 16px;
        height: 2px;
    }

.faq-page__accordion .active .accrodion-title h4 {
    color: var(--eolimn-base, #60AC45);
}

    .faq-page__accordion .active .accrodion-title h4::after {
        width: 109%;
    }

.faq-page__accordion .active .accrodion-title__icon {
    background: var(--eolimn-base, #60AC45);
}

    .faq-page__accordion .active .accrodion-title__icon::after, .faq-page__accordion .active .accrodion-title__icon::before {
        background-color: var(--eolimn-white, #fff);
        opacity: 0;
    }

    .faq-page__accordion .active .accrodion-title__icon::after {
        opacity: 1;
    }

.faq-page__accordion .accrodion-content .inner {
    padding: 0px 30px 24px 18px;
    margin-top: -3px;
}

@media (min-width: 768px) {
    .faq-page__accordion .accrodion-content .inner {
        padding-left: 18px;
        padding-right: 40px;
    }
}

.faq-page__accordion .accrodion-content p {
    margin: 0;
    font-size: 15px;
    line-height: 30px;
}

.faq-page__accordion-two {
    counter-reset: mainSliderTwoCount;
}

    .faq-page__accordion-two .accrodion {
        background: var(--eolimn-white, #fff);
    }

        .faq-page__accordion-two .accrodion + .accrodion {
            margin-top: 10px;
        }

    .faq-page__accordion-two .accrodion-title {
        padding: 16.5px 25px 16.5px 25px;
        cursor: pointer;
    }

        .faq-page__accordion-two .accrodion-title .accrodion-title__text {
            text-transform: capitalize;
            color: var(--eolimn-text-dark, #202220);
            margin: 0;
            transition: all 500ms ease;
            position: relative;
            font-style: normal;
            font-weight: 600;
            font-size: 16px;
            line-height: 175%;
            position: relative;
            counter-increment: mainSliderTwoCount;
        }

            .faq-page__accordion-two .accrodion-title .accrodion-title__text::after {
                content: "";
                width: 0;
                height: 1px;
                background-color: var(--eolimn-border-color, #DEDEDE);
                position: absolute;
                top: calc(100% + 11.5px);
                left: 0;
                transition: all 600ms linear;
            }

            .faq-page__accordion-two .accrodion-title .accrodion-title__text::before {
                margin-right: 20px;
                content: counters(mainSliderTwoCount, ".", decimal-leading-zero) ". ";
                color: var(--eolimn-base, #60AC45);
            }

    .faq-page__accordion-two .accrodion-title__icon {
        position: absolute;
        right: 0px;
        transition: all 0.5s ease-in-out;
        z-index: 1;
    }

        .faq-page__accordion-two .accrodion-title__icon::before {
            font-size: 14px;
            position: relative;
            background-color: var(--eolimn-white, #fff);
            content: "\e90e";
            font-family: "icomoon" !important;
        }

    .faq-page__accordion-two .active .accrodion-title h4::after {
        width: 100%;
    }

    .faq-page__accordion-two .active .accrodion-title__icon {
        color: var(--eolimn-base, #60AC45);
        top: 0;
        transform: rotate(90deg);
    }

    .faq-page__accordion-two .accrodion-content .inner {
        padding: 8px 30px 20px 25px;
    }

    .faq-page__accordion-two .accrodion-content p {
        margin: 0;
        max-width: 470px;
        width: 100%;
        font-weight: 400;
        font-size: 16px;
        line-height: 175%;
        color: var(--eolimn-text, #74787C);
        text-transform: capitalize;
        margin-bottom: -3px;
    }

.faqs-one {
    position: relative;
    padding: 120px 0px;
}

@media (max-width: 991px) {
    .faqs-one {
        padding: 100px 0px;
    }
}

@media (max-width: 767px) {
    .faqs-one {
        padding: 80px 0px;
    }
}

.faqs-one__bg {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    z-index: -1;
}

    .faqs-one__bg::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        transform: rotate(-180deg);
        background: linear-gradient(90deg, #F5F5F5 0%, rgba(222, 222, 222, 0) 100%);
        z-index: -1;
    }

.faqs-one__thumb {
    position: absolute;
    left: 0;
    top: 120px;
    width: 47.8%;
    -webkit-mask: url('data:image/svg+xml;utf8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300.000000 197.000000">  <g transform="translate(0.000000,197.000000) scale(0.050000,-0.050000)"> <path d="M0 1970 l0 -1971 2175 6 c2439 6 2247 -5 2630 154 1575 656 1575 2966 0 3622 -383 159 -191 148 -2630 154 l-2175 6 0 -1971z"/> </g> </svg>');
    mask: url('data:image/svg+xml;utf8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300.000000 197.000000">  <g transform="translate(0.000000,197.000000) scale(0.050000,-0.050000)"> <path d="M0 1970 l0 -1971 2175 6 c2439 6 2247 -5 2630 154 1575 656 1575 2966 0 3622 -383 159 -191 148 -2630 154 l-2175 6 0 -1971z"/> </g> </svg>');
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: top center;
    mask-position: top center;
    -webkit-mask-size: auto;
    mask-size: auto;
}

    .faqs-one__thumb img {
        object-fit: cover;
        width: 100%;
    }

@media (max-width: 991px) {
    .faqs-one__thumb {
        top: 0;
        position: relative;
        width: 100%;
        height: auto;
    }
}

.faqs-one .sec-title {
    padding-bottom: 24px;
}

.faqs-one__content__top__text {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 175%;
    color: var(--eolimn-text, #74787C);
    text-transform: capitalize;
    margin-bottom: 20px;
}

.faqs-one__element {
    position: absolute;
    bottom: 10%;
    right: 0px;
    z-index: -1;
    animation: bottomToTop 3s ease-in-out infinite;
}

.faqs-two {
    position: relative;
    padding: 120px 0px;
}

@media (max-width: 991px) {
    .faqs-two {
        padding: 100px 0px;
    }
}

@media (max-width: 767px) {
    .faqs-two {
        padding: 80px 0px;
    }
}

.faqs-two--home {
    padding-top: 200px;
}

@media (max-width: 991px) {
    .faqs-two--home {
        padding-top: 180px;
    }
}

@media (max-width: 767px) {
    .faqs-two--home {
        padding-top: 160px;
    }
}

.faqs-two__bg {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    z-index: -1;
}

    .faqs-two__bg::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        transform: rotate(-180deg);
        background: linear-gradient(90deg, #F5F5F5 0%, rgba(222, 222, 222, 0) 100%);
        z-index: -1;
    }

.faqs-two__thumb {
    position: relative;
}

.faqs-two__thumb--two {
    top: 0;
    left: 0;
    position: relative;
    display: flex;
    gap: 20px;
    width: 100%;
    mask: none;
}

@media (max-width: 1199px) {
    .faqs-two__thumb--two img {
        object-fit: cover;
        width: 100%;
    }
}

.faqs-two__thumb__item__video {
    display: flex;
    align-items: center;
    position: absolute;
    width: 70%;
    gap: 20px;
    left: 45%;
    bottom: 40%;
    transform: rotate(-90deg);
}

@media (max-width: 991px) and (min-width: 767px) {
    .faqs-two__thumb__item__video {
        left: 32%;
        bottom: 45%;
    }
}

.faqs-two__thumb__item__icon {
    background: var(--eolimn-white, #fff);
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 40px;
    width: 100%;
    border-radius: 50%;
    height: 40px;
    font-size: 10px;
    line-height: 1;
    position: relative;
    z-index: 1;
}

    .faqs-two__thumb__item__icon a {
        background: var(--eolimn-white, #fff);
        display: flex;
        align-items: center;
        justify-content: center;
        max-width: 40px;
        width: 100%;
        border-radius: 50%;
        height: 40px;
        font-size: 10px;
        line-height: 1;
        transition: all 0.4s ease-in-out;
    }

        .faqs-two__thumb__item__icon a:hover {
            background: var(--eolimn-base, #60AC45);
            color: var(--eolimn-white, #fff);
        }

    .faqs-two__thumb__item__icon::after {
        position: absolute;
        content: "";
        background: transparent;
        border: 1px solid var(--eolimn-white, #fff);
        border-radius: 50%;
        left: 0px;
        top: 0px;
        right: 0px;
        bottom: 0px;
        animation: scaleOne 2s ease-in-out infinite;
        z-index: -1;
    }

.faqs-two__thumb__item__text {
    font-style: normal;
    font-weight: 400;
    font-size: 35px;
    line-height: 157%;
    margin-bottom: 0;
    padding-bottom: 0;
    text-transform: capitalize;
    color: var(--eolimn-white, #fff);
    width: 100%;
}

@media (max-width: 575px) {
    .faqs-two__thumb__item__text {
        font-size: 22px;
    }
}

.faqs-two .sec-title {
    padding-bottom: 20px;
}

.faqs-two__top__text {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 175%;
    color: var(--eolimn-text, #74787C);
    margin-bottom: 20px;
    padding-bottom: 0;
    text-transform: capitalize;
}

.faqs-two__element {
    position: absolute;
    bottom: 10%;
    right: 0px;
    z-index: -1;
    animation: bottomToTop 3s ease-in-out infinite;
}

/*--------------------------------------------------------------
# Package
--------------------------------------------------------------*/
.pricing-one {
    padding: 120px 0px;
    background-color: var(--eolimn-white, #fff);
}

@media (max-width: 991px) {
    .pricing-one {
        padding: 100px 0px;
    }
}

@media (max-width: 767px) {
    .pricing-one {
        padding: 80px 0px;
    }
}

@media (max-width: 575px) {
    .pricing-one {
        padding: 68px 0px 70px;
    }
}

.pricing-one__top {
    margin: 0 auto 61px;
    width: 100%;
    max-width: 926px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px 122px;
}

@media (max-width: 991px) {
    .pricing-one__top {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 40px;
    }
}

.pricing-one--carousel .pricing-one__col-card {
    width: 100%;
    padding: 30px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.pricing-one--carousel .pricing-one__col-card--popular {
    margin-top: 10px;
    padding: 0px;
}

@media (max-width: 991px) {
    .pricing-one__content {
        text-align: center;
    }
}

.pricing-one__title {
    margin-bottom: 15px;
    color: var(--eolimn-text-dark, #202220);
    font-style: normal;
    font-weight: 600;
    font-size: 40px;
    line-height: 1.3333;
    letter-spacing: -0.02px;
}

.pricing-one__text {
    margin: 0;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.555;
    color: var(--eolimn-text, #74787C);
}

.pricing-one__main-tab-box {
    position: relative;
    display: block;
}

    .pricing-one__main-tab-box .tab-buttons {
        margin: 0;
        padding: 0;
        list-style: none;
        margin-top: 31px;
        position: relative;
        display: flex;
        align-items: center;
        gap: 5px;
        z-index: 1;
    }

@media (max-width: 991px) {
    .pricing-one__main-tab-box .tab-buttons {
        margin-top: 0;
        margin-left: auto;
        margin-right: auto;
        justify-content: center;
    }
}

.pricing-one__main-tab-box .tab-buttons .tab-btn {
    position: relative;
    display: inline-block;
    cursor: pointer;
    padding: 13px 24px;
    color: var(--eolimn-text-dark, #202220);
    text-transform: uppercase;
    border-radius: 22px;
    background-color: var(--eolimn-white, #fff);
    z-index: 1;
    transition: all 500ms ease;
    font-style: normal;
    font-weight: 700;
    font-size: 14px;
    line-height: 18px;
    text-align: center;
    letter-spacing: 0.833333px;
}

    .pricing-one__main-tab-box .tab-buttons .tab-btn:hover,
    .pricing-one__main-tab-box .tab-buttons .tab-btn.active-btn {
        color: var(--eolimn-white, #fff);
        background-color: var(--eolimn-base, #60AC45);
        box-shadow: 0px 5px 7px 0px rgba(var(--eolimn-base-rgb, 96, 172, 69), 0.23);
        text-shadow: 0 0 1px currentColor;
    }

.pricing-one__main-tab-box .tabs-content {
    margin-top: 20px;
    position: relative;
    display: block;
}

    .pricing-one__main-tab-box .tabs-content .tab {
        position: relative;
        display: none;
        transition: all 600ms ease;
        z-index: 10;
    }

        .pricing-one__main-tab-box .tabs-content .tab.active-tab {
            display: block;
        }

.pricing-one__inner {
    padding-right: 40px;
    background-color: var(--eolimn-gray, #F5F5F5);
}

@media (max-width: 1199px) {
    .pricing-one__inner {
        padding-left: 40px;
    }
}

@media (max-width: 991px) {
    .pricing-one__inner {
        padding: 40px;
    }
}

@media (max-width: 425px) {
    .pricing-one__inner {
        padding: 30px;
    }
}

@media (max-width: 390px) {
    .pricing-one__inner {
        padding: 20px;
    }
}

.pricing-one__row {
    --bs-gutter-x: 40px;
}

@media (max-width: 991px) {
    .pricing-one__row {
        --bs-gutter-y: 40px;
    }
}

.pricing-one__col-image {
    flex: 0 0 auto;
    width: 21.71%;
    margin-bottom: 20px;
}

@media (max-width: 1199px) {
    .pricing-one__col-image {
        display: none;
    }
}

.pricing-one__col-card {
    flex: 0 0 auto;
    width: 23.249%;
    margin-bottom: 20px;
}

@media (max-width: 1199px) {
    .pricing-one__col-card {
        width: 30%;
    }
}

@media (max-width: 991px) {
    .pricing-one__col-card {
        margin-bottom: 0;
        width: 46.92%;
    }
}

@media (max-width: 767px) {
    .pricing-one__col-card {
        width: 100%;
    }
}

.pricing-one__col-card--popular {
    flex: 0 0 auto;
    width: 28.377%;
}

@media (max-width: 1199px) {
    .pricing-one__col-card--popular {
        width: 35.5%;
    }
}

@media (max-width: 991px) {
    .pricing-one__col-card--popular {
        width: 50%;
    }
}

@media (max-width: 767px) {
    .pricing-one__col-card--popular {
        width: 100%;
    }
}

.pricing-one__col-card--popular .pricing-one__card__list {
    border-top: 0px solid transparent;
}

.pricing-one__col-divider {
    width: 0.1%;
}

@media (max-width: 767px) {
    .pricing-one__col-divider {
        display: none;
    }
}

.pricing-one__col-divider__inner {
    position: relative;
    height: 100%;
}

    .pricing-one__col-divider__inner::after {
        content: "";
        position: absolute;
        top: calc(50% + 9px);
        left: 50%;
        transform: translate(-50%, -50%);
        width: 1px;
        height: calc(100% - 104px);
        background-color: var(--eolimn-border-color, #DEDEDE);
    }

.pricing-one__image {
    margin-top: 56px;
}

    .pricing-one__image img {
        width: 100%;
        display: block;
    }

.pricing-one__card {
    margin-top: 44px;
}

@media (max-width: 991px) {
    .pricing-one__card {
        margin-top: 0;
    }
}

.pricing-one__card--popular {
    margin-top: -26px;
    padding: 20px 30px;
    background-color: var(--eolimn-text-dark, #202220);
    box-shadow: 0px 42px 34px 0px rgba(var(--eolimn-base-rgb, 96, 172, 69), 0.23);
}

@media (max-width: 412px) {
    .pricing-one__card--popular {
        padding: 20px;
    }
}

@media (max-width: 991px) {
    .pricing-one__card--popular {
        margin-top: 0;
    }
}

.pricing-one__card__price {
    font-style: normal;
    font-weight: 700;
    font-size: 36px;
    line-height: 128%;
    color: var(--eolimn-text-dark, #202220);
    margin-bottom: 12px;
}

    .pricing-one__card__price span {
        font-style: normal;
        font-weight: 500;
        font-size: 17px;
        line-height: 22px;
        color: var(--eolimn-text, #74787C);
    }

.pricing-one__card__title {
    font-style: normal;
    font-weight: 500;
    font-size: 28px;
    line-height: 36px;
    margin-bottom: 13px;
    padding-bottom: 0;
    color: var(--eolimn-text-dark, #202220);
}

.pricing-one__card__text {
    font-style: normal;
    font-weight: 500;
    font-size: 15px;
    line-height: 173%;
    color: var(--eolimn-text, #74787C);
    margin-bottom: -10px;
    padding-bottom: 0;
}

.pricing-one__card__list {
    border-top: 1px solid var(--eolimn-border-color, #DEDEDE);
    padding-top: 20px;
    margin-top: 20px;
    margin-bottom: 30px;
}

    .pricing-one__card__list li {
        font-style: normal;
        font-weight: 500;
        font-size: 15px;
        line-height: 20px;
        color: var(--eolimn-text, #74787C);
        text-transform: capitalize;
        display: flex;
        align-items: center;
        gap: 8px;
    }

        .pricing-one__card__list li:hover .pricing-one__card__list__icon {
            color: var(--eolimn-white, #fff);
            background: rgba(var(--eolimn-base-rgb, 96, 172, 69), 1);
        }

        .pricing-one__card__list li + li {
            margin-top: 20px;
        }

.pricing-one__card__list__icon {
    width: 20px;
    border-radius: 50px;
    background: rgba(var(--eolimn-base-rgb, 96, 172, 69), 0.5);
    height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 10px;
    color: var(--eolimn-base, #60AC45);
    transition: all 0.4s ease-in-out;
}

.pricing-one__card__btn {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 11px 30px;
}

.pricing-one__card:hover .pricing-one__card__category {
    background: var(--eolimn-base, #60AC45);
    color: var(--eolimn-white, #fff);
}

.pricing-one .pricing-one__card--popular .pricing-one__card__price,
.pricing-one .pricing-one__card--popular .pricing-one__card__price span,
.pricing-one .pricing-one__card--popular .pricing-one__card__title,
.pricing-one .pricing-one__card--popular .pricing-one__card__text,
.pricing-one .pricing-one__card--popular .pricing-one__card__list li {
    color: var(--eolimn-white, #fff);
}

.pricing-one .pricing-one__card--popular .pricing-one__card__price {
    margin-bottom: 18px;
}

.pricing-one .pricing-one__card--popular .pricing-one__card__title {
    color: var(--eolimn-white, #fff);
    font-weight: 600;
}

.pricing-one .pricing-one__card--popular .pricing-one__card__list {
    padding: 0;
    margin: 21px 0 23px;
}

    .pricing-one .pricing-one__card--popular .pricing-one__card__list::after {
        display: none;
    }

    .pricing-one .pricing-one__card--popular .pricing-one__card__list li + li {
        margin-top: 10.5px;
    }

.pricing-one .pricing-one__card--popular .pricing-one__card__list__icon {
    color: var(--eolimn-white, #fff);
    background-color: rgba(var(--eolimn-gray-rgb, 245, 245, 245), 0.25);
}

.pricing-one .pricing-one__card__category {
    margin: 0 0 21px auto;
    display: table;
    padding: 4px 10px;
    text-transform: uppercase;
    border-radius: 13.5px;
    color: var(--eolimn-base, #60AC45);
    background-color: var(--eolimn-white, #fff);
    transition: all 500ms ease;
    font-style: normal;
    font-weight: 600;
    font-size: 12px;
    line-height: 16px;
    text-align: center;
    letter-spacing: 0.833333px;
}

/*--------------------------------------------------------------
# Animations
--------------------------------------------------------------*/
@keyframes bubbleMover {
    0% {
        -webkit-transform: translateY(0px) translateX(0) rotate(0);
        transform: translateY(0px) translateX(0) rotate(0);
    }

    30% {
        -webkit-transform: translateY(30px) translateX(50px) rotate(15deg);
        transform: translateY(30px) translateX(50px) rotate(15deg);
        -webkit-transform-origin: center center;
        transform-origin: center center;
    }

    50% {
        -webkit-transform: translateY(50px) translateX(100px) rotate(45deg);
        transform: translateY(50px) translateX(100px) rotate(45deg);
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
    }

    80% {
        -webkit-transform: translateY(30px) translateX(50px) rotate(15deg);
        transform: translateY(30px) translateX(50px) rotate(15deg);
        -webkit-transform-origin: left top;
        transform-origin: left top;
    }

    100% {
        -webkit-transform: translateY(0px) translateX(0) rotate(0);
        transform: translateY(0px) translateX(0) rotate(0);
        -webkit-transform-origin: center center;
        transform-origin: center center;
    }
}

@keyframes bounceIn {
    0%, 20%, 40%, 60%, 80%, 100% {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }

    0% {
        opacity: 0;
        -webkit-transform: scale3d(0.3, 0.3, 0.3);
        transform: scale3d(0.3, 0.3, 0.3);
    }

    20% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1);
        transform: scale3d(1.1, 1.1, 1.1);
    }

    40% {
        -webkit-transform: scale3d(0.9, 0.9, 0.9);
        transform: scale3d(0.9, 0.9, 0.9);
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(1.03, 1.03, 1.03);
        transform: scale3d(1.03, 1.03, 1.03);
    }

    80% {
        -webkit-transform: scale3d(0.97, 0.97, 0.97);
        transform: scale3d(0.97, 0.97, 0.97);
    }

    100% {
        opacity: 1;
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

@keyframes textRotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes iconTranslateX {
    49% {
        transform: translateX(100%);
    }

    50% {
        opacity: 0;
        transform: translateX(-100%);
    }

    51% {
        opacity: 1;
        transform: translateX(100%);
    }
}

@keyframes scaleOne {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(2);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes scaleTwo {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(0.8);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes bgSlide {
    0% {
        background-position: 0 0;
    }

    20% {
        background-position: -100px 0;
    }

    40% {
        background-position: -200px 0;
    }

    60% {
        background-position: -150px 0;
    }

    80% {
        background-position: -100px 0;
    }

    100% {
        background-position: 0px 0;
    }
}

@keyframes topToBottom {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(15px);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes leftToRight {
    0% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(15px);
    }

    100% {
        transform: translateX(0);
    }
}

@keyframes rightToLeft {
    0% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(-15px);
    }

    100% {
        transform: translateX(0);
    }
}

@keyframes bottomToTop {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes opacityElement {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes videoBorderOne {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.6);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes textScrolling {
    0% {
        transform: translate3d(-100%, 0, 0);
    }

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

@keyframes videoScale {
    0% {
        -webkit-transform: scale(0.2, 0.2);
        transform: scale(0.2, 0.2);
        opacity: 0;
    }

    50% {
        opacity: 0.9;
    }

    100% {
        -webkit-transform: scale(0.9, 0.9);
        transform: scale(0.9, 0.9);
        opacity: 0;
    }
}
/*--------------------------------------------------------------
# Mobile Nav
--------------------------------------------------------------*/
.mobile-nav__wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 999;
    transform: translateX(-100%);
    transform-origin: left center;
    transition: transform 500ms ease 500ms, visibility 500ms ease 500ms;
    visibility: hidden;
    position: fixed;
}

    .mobile-nav__wrapper .container {
        padding-left: 0;
        padding-right: 0;
    }

    .mobile-nav__wrapper .home-showcase .row [class*=col-] {
        flex: 0 0 100%;
    }

    .mobile-nav__wrapper .home-showcase {
        margin-bottom: -1px;
        margin-top: 0;
        border-bottom: 1px solid RGBA(var(--eolimn-white-rgb, 255, 255, 255), 0.1);
    }

    .mobile-nav__wrapper .home-showcase__inner {
        padding: 15px 0px;
        background-color: transparent;
        box-shadow: none;
    }

    .mobile-nav__wrapper .home-showcase__title {
        color: var(--eolimn-white, #fff);
    }

    .mobile-nav__wrapper.expanded {
        opacity: 1;
        transform: translateX(0%);
        visibility: visible;
        transition: transform 500ms ease 0ms, visibility 500ms ease 0ms;
    }

        .mobile-nav__wrapper.expanded .mobile-nav__content {
            opacity: 1;
            visibility: visible;
            transform: translateX(0);
            transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms, transform 500ms ease 500ms;
        }

.mobile-nav__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--eolimn-black, #000);
    opacity: 0.3;
    cursor: url(../images/close.png), auto;
}

.mobile-nav__content {
    width: 300px;
    background-color: var(--eolimn-text-dark, #202220);
    z-index: 10;
    position: relative;
    height: 100%;
    overflow-y: auto;
    padding-top: 30px;
    padding-bottom: 30px;
    padding-left: 15px;
    padding-right: 15px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-100%);
    transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, transform 500ms ease 0ms;
}

    .mobile-nav__content .main-menu__nav {
        display: block;
        padding: 0;
    }

    .mobile-nav__content .logo-box {
        margin-bottom: 40px;
        display: flex;
    }

.mobile-nav__close {
    position: absolute;
    top: 20px;
    right: 15px;
    font-size: 18px;
    color: var(--eolimn-white, #fff);
    cursor: pointer;
}

    .mobile-nav__close:hover {
        color: var(--eolimn-base, #60AC45);
    }

.mobile-nav__content .main-menu__list,
.mobile-nav__content .main-menu__list ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

    .mobile-nav__content .main-menu__list ul {
        display: none;
        border-top: 1px solid RGBA(var(--eolimn-white-rgb, 255, 255, 255), 0.1);
    }

        .mobile-nav__content .main-menu__list ul li > a {
            padding-left: 1em;
        }

    .mobile-nav__content .main-menu__list li:not(:last-child) {
        border-bottom: 1px solid RGBA(var(--eolimn-white-rgb, 255, 255, 255), 0.1);
    }

    .mobile-nav__content .main-menu__list li > a {
        display: flex;
        justify-content: space-between;
        line-height: 30px;
        color: var(--eolimn-white, #fff);
        font-size: 12px;
        font-family: var(--eolimn-font, "DM Sans", sans-serif);
        text-transform: uppercase;
        font-weight: 500;
        height: 46px;
        letter-spacing: var(--eolimn-letter-space, 0.1em);
        align-items: center;
        transition: 500ms;
    }

    .mobile-nav__content .main-menu__list li a.expanded {
        color: var(--eolimn-base, #60AC45);
    }

    .mobile-nav__content .main-menu__list li a button {
        width: 30px;
        height: 30px;
        background-color: var(--eolimn-base, #60AC45);
        border: none;
        outline: none;
        color: var(--eolimn-white, #fff);
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        transform: rotate(-90deg);
        transition: transform 500ms ease;
    }

        .mobile-nav__content .main-menu__list li a button.expanded {
            transform: rotate(0deg);
            background-color: var(--eolimn-white, #fff);
            color: var(--eolimn-black, #000);
        }

.mobile-nav__social {
    display: flex;
    align-items: center;
}

    .mobile-nav__social a {
        font-size: 16px;
        color: var(--eolimn-white, #fff);
        transition: 500ms;
    }

        .mobile-nav__social a + a {
            margin-left: 20px;
        }

        .mobile-nav__social a:hover {
            color: var(--eolimn-base, #60AC45);
        }

.mobile-nav__contact {
    margin-bottom: 0;
    margin-top: 20px;
    margin-bottom: 20px;
}

    .mobile-nav__contact li {
        color: var(--eolimn-white, #fff);
        font-size: 14px;
        font-weight: 500;
        position: relative;
        display: flex;
        align-items: center;
    }

        .mobile-nav__contact li + li {
            margin-top: 15px;
        }

        .mobile-nav__contact li a {
            color: inherit;
            transition: 500ms;
        }

            .mobile-nav__contact li a:hover {
                color: var(--eolimn-base, #60AC45);
            }

        .mobile-nav__contact li > i {
            width: 30px;
            height: 30px;
            border-radius: 50%;
            background-color: var(--eolimn-base, #60AC45);
            display: flex;
            justify-content: center;
            align-items: center;
            text-align: center;
            font-size: 12px;
            margin-right: 10px;
            color: var(--eolimn-white, #fff);
        }

.mobile-nav__container .main-menu__logo,
.mobile-nav__container .main-menu__right {
    display: none;
}

/*--------------------------------------------------------------
# Search Popup
--------------------------------------------------------------*/
.search-popup {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -2;
    -webkit-transition: all 1s ease;
    -khtml-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -ms-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
}

.search-popup__overlay {
    position: fixed;
    width: 224vw;
    height: 224vw;
    top: calc(90px - 112vw);
    right: calc(50% - 112vw);
    z-index: 3;
    display: block;
    -webkit-border-radius: 50%;
    -khtml-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
    -webkit-transform: scale(0);
    -khtml-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transition: transform 0.8s ease-in-out;
    -khtml-transition: transform 0.8s ease-in-out;
    -moz-transition: transform 0.8s ease-in-out;
    -ms-transition: transform 0.8s ease-in-out;
    -o-transition: transform 0.8s ease-in-out;
    transition: transform 0.8s ease-in-out;
    transition-delay: 0s;
    transition-delay: 0.3s;
    -webkit-transition-delay: 0.3s;
    background-color: #000;
    opacity: 0.9;
    cursor: url(../images/close.png), auto;
}

@media (max-width: 767px) {
    .search-popup__overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        transform: none;
        width: 100%;
        height: 100%;
        border-radius: 0;
        transform: translateY(-110%);
    }
}

.search-popup__content {
    position: fixed;
    width: 0;
    max-width: 560px;
    padding: 30px 15px;
    left: 50%;
    top: 50%;
    opacity: 0;
    z-index: 3;
    -webkit-transform: translate(-50%, -50%);
    -khtml-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transition: opacity 0.5s 0s, width 0.8s 0.8s cubic-bezier(0.225, 0.01, 0.475, 1.01), transform 0.2s 0s;
    -khtml-transition: opacity 0.5s 0s, width 0.8s 0.8s cubic-bezier(0.225, 0.01, 0.475, 1.01), transform 0.2s 0s;
    -moz-transition: opacity 0.5s 0s, width 0.8s 0.8s cubic-bezier(0.225, 0.01, 0.475, 1.01), transform 0.2s 0s;
    -ms-transition: opacity 0.5s 0s, width 0.8s 0.8s cubic-bezier(0.225, 0.01, 0.475, 1.01), transform 0.2s 0s;
    -o-transition: opacity 0.5s 0s, width 0.8s 0.8s cubic-bezier(0.225, 0.01, 0.475, 1.01), transform 0.2s 0s;
    transition: opacity 0.5s 0s, width 0.8s 0.8s cubic-bezier(0.225, 0.01, 0.475, 1.01), transform 0.2s 0s;
    transition-delay: 0s, 0.8s, 0s;
    transition-delay: 0s, 0.4s, 0s;
    transition-delay: 0.2s;
    -webkit-transition-delay: 0.2s;
}

.search-popup__form {
    position: relative;
}

    .search-popup__form input[type=search],
    .search-popup__form input[type=text] {
        width: 100%;
        background-color: var(--eolimn-white, #fff);
        font-size: 16px;
        color: var(--eolimn-text, #74787C);
        border: none;
        outline: none;
        height: 66px;
        padding-left: 30px;
    }

    .search-popup__form .eolimn-btn {
        padding: 0;
        width: 66px;
        height: 66px;
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
        position: absolute;
        top: 0;
        right: -1px;
        border-radius: 0;
        border: none;
        background: var(--eolimn-text-dark, #202220);
    }

        .search-popup__form .eolimn-btn i {
            font-size: 20px;
            margin: 0;
        }

        .search-popup__form .eolimn-btn::before {
            left: -1px;
        }

.search-popup.active {
    z-index: 9999;
}

    .search-popup.active .search-popup__overlay {
        top: auto;
        bottom: calc(90px - 112vw);
        -webkit-transform: scale(1);
        -khtml-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
        transition-delay: 0s;
        -webkit-transition-delay: 0s;
        opacity: 0.9;
        -webkit-transition: transform 1.6s cubic-bezier(0.4, 0, 0, 1);
        -khtml-transition: transform 1.6s cubic-bezier(0.4, 0, 0, 1);
        -moz-transition: transform 1.6s cubic-bezier(0.4, 0, 0, 1);
        -ms-transition: transform 1.6s cubic-bezier(0.4, 0, 0, 1);
        -o-transition: transform 1.6s cubic-bezier(0.4, 0, 0, 1);
        transition: transform 1.6s cubic-bezier(0.4, 0, 0, 1);
    }

@media (max-width: 767px) {
    .search-popup.active .search-popup__overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        transform: none;
        width: 100%;
        height: 100%;
        border-radius: 0;
        transform: translateY(0%);
    }
}

.search-popup.active .search-popup__content {
    width: 100%;
    opacity: 1;
    transition-delay: 0.7s;
    -webkit-transition-delay: 0.7s;
}

/*--------------------------------------------------------------
# Page Header
--------------------------------------------------------------*/
.page-header {
    background-color: var(--eolimn-text-dark, #202220);
    position: relative;
    padding: 100px 0px;
}

@media (max-width: 991px) {
    .page-header {
        padding: 100px 0px;
    }
}

.page-header__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-repeat: no-repeat;
    background-size: cover;
}

    .page-header__bg::before {
        content: "";
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        background: rgb(32 34 32 / 83%);
    }

.page-header .container {
    position: relative;
    z-index: 1;
    text-align: center;
}

.page-header__title {
    margin-top: -7px;
    color: var(--eolimn-white, #fff);
    text-transform: capitalize;
    font-style: normal;
    font-weight: 700;
    font-size: 40px;
    line-height: 1.3090909091;
    margin-bottom: 12px;
}

@media (min-width: 768px) {
    .page-header__title {
        font-size: 48px;
    }
}

.eolimn-breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
}

.eolimn-breadcrumb__list {
    display: inline-block;
    margin: 0;
    background: #feb103;
    padding: 0px 15px;
    border-radius: 3px;
}

    .eolimn-breadcrumb__list li {
        display: inline-flex;
        justify-content: center;
        align-items: center;
        align-items: center;
        font-style: normal;
        font-weight: 600;
        font-size: 16px;
        line-height: 21px;
        color: var(--eolimn-white, #fff);
        text-transform: capitalize;
    }

        .eolimn-breadcrumb__list li:not(:last-of-type)::after {
            content: ":";
            position: relative;
            top: -1px;
            margin-left: 5px;
            margin-right: 5px;
        }

        .eolimn-breadcrumb__list li span,
        .eolimn-breadcrumb__list li a {
            font-weight: 600;
            font-size: 16px;
            line-height: 21px;
            color: var(--eolimn-white, #fff);
        }

            .eolimn-breadcrumb__list li a:hover {
                color: var(--eolimn-text-dark, #202220);
            }

.text-slider {
    position: relative;
    z-index: 1;
    background: transparent;
    margin-bottom: -120px;
}

.text-slider__item {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 35px;
    animation: textScrolling 25s linear infinite;
    animation-direction: reverse;
    will-change: transform;
    position: relative;
    white-space: nowrap;
}

.text-slider__item {
    text-transform: capitalize;
    display: flex;
    align-items: center;
    font-style: normal;
    font-weight: 700;
    font-size: 90px;
    line-height: 117px;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.15);
    color: transparent;
}

    .text-slider__item span {
        animation: textRotate 4s ease-in-out infinite;
    }

/*--------------------------------------------------------------
# Google Map
--------------------------------------------------------------*/
.google-map {
    position: relative;
}

    .google-map iframe {
        position: relative;
        display: block;
        border: none;
        height: 570px;
        width: 100%;
        mix-blend-mode: luminosity;
    }

@media (max-width: 991px) {
    .google-map iframe {
        height: 500px;
    }
}

@media (max-width: 767px) {
    .google-map iframe {
        height: 400px;
    }
}

.google-map__contact {
    overflow: hidden;
    background-color: #9cc1aa;
}

/*--------------------------------------------------------------
# Client Carousel
--------------------------------------------------------------*/
.client-carousel {
    padding: 80px 0;
}

@media (min-width: 992px) {
    .client-carousel {
        padding: 102px 0;
    }
}

.client-carousel__one__item {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 500ms ease;
    position: relative;
    background-color: transparent;
    border-radius: 50px;
    max-width: 110px;
    height: 80px;
}

    .client-carousel__one__item img {
        transition: all 500ms ease;
        max-width: 100%;
        width: auto !important;
        cursor: pointer;
    }

    .client-carousel__one__item:hover .client-carousel__one__hover-image {
        position: absolute;
        z-index: 1;
        top: 0;
        left: 0;
        right: 0;
        margin: auto;
        display: block;
        visibility: visible;
        opacity: 1;
    }

    .client-carousel__one__item:hover .client-carousel__one__image {
        visibility: hidden;
        opacity: 0;
        transform: translateY(100%);
    }

.client-carousel__one__hover-image {
    transition: all 500ms ease;
    display: block;
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    visibility: hidden;
    opacity: 0;
}

.client-carousel__one__image {
    transition: 500ms;
    max-width: 122px;
    width: auto;
    transition: all 500ms ease;
}

/*--------------------------------------------------------------
# Hero Slider
--------------------------------------------------------------*/
.main-slider-one {
    position: relative;
}

.main-slider-one__carousel {
    position: relative;
    width: 100%;
}

    .main-slider-one__carousel .owl-dots {
        margin: auto 0;
        position: absolute;
        right: 33px;
        text-align: left;
        top: 50%;
        transform: translateY(-50%);
        width: auto;
    }

@media (max-width: 1400px) {
    .main-slider-one__carousel .owl-dots {
        width: auto;
        right: 20px;
    }
}

@media (max-width: 1199px) {
    .main-slider-one__carousel .owl-dots {
        width: 40px;
    }
}

@media (max-width: 767px) {
    .main-slider-one__carousel .owl-dots {
        position: absolute;
        display: flex;
        align-items: center;
        justify-content: center;
        width: auto;
        margin-top: -100px;
        left: 0;
        top: auto;
        bottom: 40px;
    }
}

.main-slider-one__carousel .owl-dots .owl-dot {
    display: block;
    margin: 2px 0;
}

@media (max-width: 767px) {
    .main-slider-one__carousel .owl-dots .owl-dot {
        margin: 0 2px;
    }
}

.main-slider-one__carousel .owl-dots .owl-dot span {
    width: 32px;
    height: 32px;
    display: block;
    border-radius: 50%;
    background-color: transparent;
    border: 2px solid transparent;
    margin: 0;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
    position: relative;
}

    .main-slider-one__carousel .owl-dots .owl-dot span::after {
        content: "";
        position: absolute;
        top: 50%;
        transform: translate(-50%, -50%);
        left: 50%;
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background-color: var(--eolimn-base, #60AC45);
    }

.main-slider-one__carousel .owl-dots .owl-dot:hover span,
.main-slider-one__carousel .owl-dots .owl-dot.active span {
    background-color: transparent;
    border: 2px solid var(--eolimn-base, #60AC45);
}

.main-slider-one__item {
    background-color: var(--eolimn-gray, #F5F5F5);
    position: relative;
    z-index: 3;
    padding-top: 182px;
    padding-bottom: 183px;
    height: 801px;
}

@media (max-width: 1199px) {
    .main-slider-one__item {
        padding-top: 120px;
        height: auto;
        padding-bottom: 120px;
    }
}

.main-slider-one__item .container {
    max-width: 1350px;
}

.main-slider-one__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    transition: transform 10000ms ease, -webkit-transform 10000ms ease;
    overflow: hidden;
}

    .main-slider-one__bg::before {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        content: "";
        background: linear-gradient(99.56deg, #1F2120 20.83%, rgba(31, 33, 32, 0.697457) 43.15%, rgba(31, 33, 32, 0) 70.83%);
    }

.main-slider-one__content {
    position: relative;
    z-index: 3;
    overflow: hidden;
}

.main-slider-one__sub-title {
    margin: 0 0 10px;
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 100%;
    text-align: left;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--eolimn-base, #60AC45);
    transition: transform 1000ms ease, opacity 1000ms ease;
    transform: translateY(-200px);
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
}

.main-slider-one__sub-title__line {
    background: var(--eolimn-base, #60AC45);
    display: inline-block;
    margin: 0;
}

.main-slider-one__sub-title__line--1 {
    width: 21px;
    height: 11px;
    transform: translateX(200%);
    transition: all 0.5s ease;
    transition: transform 1100ms ease;
}

.main-slider-one__sub-title__line--2 {
    width: 10px;
    height: 11px;
    transform: translateX(500%);
    transition: transform 1100ms ease;
}

.main-slider-one__sub-title__line--3 {
    height: 11px;
    width: 6px;
    transform: translateX(1000%);
    transition: transform 1100ms ease;
}

.main-slider-one__sub-title__line--4 {
    height: 11px;
    width: 4px;
    transform: translateX(1500%);
    transition: transform 1100ms ease;
}

.main-slider-one__title {
    color: var(--eolimn-white, #fff);
    overflow: hidden;
    margin: 0 0 30px;
    font-style: normal;
    font-weight: 800;
    font-size: 90px;
    line-height: 111%;
    letter-spacing: -0.03em;
    text-transform: capitalize;
    opacity: 0;
    transition: transform 1200ms ease, opacity 1200ms ease;
    transform: translateX(300px);
}

    .main-slider-one__title img {
        border-radius: 100px;
        opacity: 0;
        transform: translateY(120%);
        transition: transform 1500ms ease, opacity 1500ms ease;
        display: inline !important;
        width: auto !important;
    }

@media (max-width: 1199px) and (min-width: 992px) {
    .main-slider-one__title {
        font-size: 70px;
    }
}

@media (max-width: 820px) {
    .main-slider-one__title {
        font-size: 60px;
    }
}

@media (max-width: 575px) {
    .main-slider-one__title {
        font-size: 54px;
    }
}

.main-slider-one__btn {
    position: relative;
    display: flex;
    justify-content: start;
    gap: 20px;
    align-items: center;
    z-index: 5;
    overflow: hidden;
    opacity: 0;
    transform: perspective(400px) rotateY(0deg) translateY(80px);
    transform-origin: bottom;
    transition: all 1500ms ease;
}

@media (max-width: 575px) {
    .main-slider-one__btn {
        flex-wrap: wrap;
    }
}

.main-slider-one__text {
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 175%;
    padding-bottom: 0;
    text-transform: capitalize;
    color: var(--eolimn-white, #fff);
    max-width: 721px;
    width: 100%;
    margin-bottom: 40px;
    opacity: 0;
    transition: transform 1300ms ease, opacity 1300ms ease;
    transform: translateX(350px);
}

.main-slider-one__video {
    width: 122px;
    height: 122px;
    margin-left: auto;
    right: 0;
    border-radius: 50%;
    position: relative;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: transform 1200ms ease, opacity 1200ms ease;
    transform: translateY(-300px);
}

@media (max-width: 991px) {
    .main-slider-one__video {
        margin-top: 50px;
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 1500px) {
    .main-slider-one__video {
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 767px) {
    .main-slider-one__video {
        width: 80px;
        height: 80px;
    }
}

.main-slider-one__video::after {
    content: "";
    width: 100%;
    height: 100%;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 0;
    background-color: rgba(var(--eolimn-base-rgb, 96, 172, 69), 0.7);
}

.main-slider-one__video__popup {
    position: relative;
    z-index: 2;
    font-family: var(--eolimn-font, "DM Sans", sans-serif);
    font-style: normal;
    font-weight: 800;
    font-size: 16px;
    line-height: 100%;
    color: var(--eolimn-white, #fff);
    text-transform: uppercase;
    border-radius: 50%;
    padding: 40px;
}

@keyframes borderScaleOne {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.8);
    }

    100% {
        transform: scale(1);
    }
}

.main-slider-one__video::before {
    content: "";
    width: 100%;
    height: 100%;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 0;
    background: transparent;
    border: 1px solid rgba(var(--eolimn-white-rgb, 255, 255, 255), 0.25);
    animation: borderScaleOne 3s ease-in-out infinite;
}

.main-slider-one__line {
    position: absolute;
    z-index: 1;
    font-style: normal;
    font-weight: 800;
    font-size: 200px;
    line-height: 60%;
    color: var(--eolimn-base, #60AC45);
    text-transform: capitalize;
    opacity: 0.07;
    position: absolute;
    writing-mode: vertical-rl;
    top: 80px;
    left: 40px;
    margin-left: 0;
    margin-right: 0;
    transition: transform 1300ms ease, opacity 1300ms ease;
    transform: translateY(120%) rotate(-180deg);
}

@media (max-width: 1199px) {
    .main-slider-one__line {
        font-size: 150px;
    }
}

@media (max-width: 991px) {
    .main-slider-one__line {
        display: none;
    }
}

.main-slider-one__shape {
    position: absolute;
    top: 0;
    left: 0;
    transition: transform 1200ms ease, opacity 1200ms ease;
    transform: translateX(-100%);
    opacity: 0;
}

@media (max-width: 767px) {
    .main-slider-one__shape {
        display: none;
    }
}

.main-slider-one .active .main-slider-one__sub-title {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 1100ms;
}

.main-slider-one .active .main-slider-one__sub-title__line--1 {
    opacity: 1;
    transform: translateX(0%);
    transition-delay: 1600ms;
}

.main-slider-one .active .main-slider-one__sub-title__line--2 {
    opacity: 1;
    transform: translateX(0%);
    transition-delay: 1700ms;
}

.main-slider-one .active .main-slider-one__sub-title__line--3 {
    opacity: 1;
    transform: translateX(0%);
    transition-delay: 1800ms;
}

.main-slider-one .active .main-slider-one__sub-title__line--4 {
    opacity: 1;
    transform: translateX(0%);
    transition-delay: 1900ms;
}

.main-slider-one .active .main-slider-one__title {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 1300ms;
}

    .main-slider-one .active .main-slider-one__title img {
        opacity: 1;
        transform: translateY(0%);
        transition-delay: 1700ms;
    }

.main-slider-one .active .main-slider-one__text {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 1400ms;
}

.main-slider-one .active .main-slider-one__btn {
    opacity: 1;
    transform: perspective(400px) rotateY(0deg) translateY(0px);
    transition-delay: 1700ms;
}

.main-slider-one .active .main-slider-one__video {
    opacity: 1;
    transition-delay: 1700ms;
    transform: translateY(0px);
}

.main-slider-one .active .main-slider-one__line {
    transform: translateY(0%) rotate(-180deg);
    transition-delay: 1200ms;
}

.main-slider-one .active .main-slider-one__shape {
    transform: translateX(0%);
    transition-delay: 1200ms;
    opacity: 1;
}

.main-slider-one .active .main-slider-one__bg {
    transform: scale(1.15);
}

.main-slider-two {
    position: relative;
}

.main-slider-two__carousel {
    position: relative;
    width: 100%;
}

    .main-slider-two__carousel .owl-nav {
        position: absolute;
        bottom: 32px;
        right: 40%;
        z-index: 2;
    }

@media (max-width: 1550px) {
    .main-slider-two__carousel .owl-nav {
        right: 17%;
    }
}

@media (max-width: 991px) {
    .main-slider-two__carousel .owl-nav {
        right: auto;
        left: 2%;
    }
}

@media (max-width: 575px) {
    .main-slider-two__carousel .owl-nav {
        display: none;
    }
}

.main-slider-two__carousel .owl-nav button span {
    border: none;
    outline: none;
    width: 44px !important;
    height: 34px !important;
    background-color: transparent !important;
    border: 1px solid var(--eolimn-white, #fff) !important;
}

    .main-slider-two__carousel .owl-nav button span:hover {
        background-color: var(--eolimn-white, #fff) !important;
        color: var(--eolimn-base, #60AC45) !important;
    }

.main-slider-two__carousel .owl-nav button:hover {
    background: transparent;
}

.main-slider-two__carousel .eolimn-owl__carousel__counter {
    position: absolute;
    bottom: 40px;
    right: 15%;
    display: flex;
    align-items: center;
    gap: 19px;
}

@media (max-width: 1550px) {
    .main-slider-two__carousel .eolimn-owl__carousel__counter {
        right: 10%;
    }
}

@media (max-width: 767px) {
    .main-slider-two__carousel .eolimn-owl__carousel__counter {
        display: none;
    }
}

.main-slider-two__carousel .eolimn-owl__carousel__counter .eolimn-owl__carousel__counter__total {
    font-family: var(--eolimn-font, "DM Sans", sans-serif);
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 100%;
    color: var(--eolimn-white, #fff);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.main-slider-two__carousel .eolimn-owl__carousel__counter .eolimn-owl__carousel__counter__current {
    font-family: var(--eolimn-font, "DM Sans", sans-serif);
    font-style: normal;
    font-weight: 800;
    font-size: 24px;
    line-height: 67%;
    position: relative;
    color: var(--eolimn-white, #fff);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

    .main-slider-two__carousel .eolimn-owl__carousel__counter .eolimn-owl__carousel__counter__current::before {
        content: "";
        position: absolute;
        top: calc(50% + 1px);
        left: -10px;
        transform: translateY(-50%) rotate(20deg);
        width: 1px;
        height: 16px;
        background-color: var(--eolimn-white, #fff);
    }

.main-slider-two__carousel .eolimn-owl__carousel__counter::after {
    content: "";
    background-image: url(../images/shapes/shape.png);
    position: absolute;
    width: 48px;
    height: 11px;
    right: -55px;
    top: 2px;
}

.main-slider-two .container {
    max-width: 1670px;
}

.main-slider-two__item {
    background-color: var(--eolimn-text-dark, #202220);
    position: relative;
    z-index: 3;
    padding-top: 140px;
    padding-bottom: 79px;
    padding: 180px 100px;
}

@media (max-width: 1300px) {
    .main-slider-two__item {
        /* padding-top: 265px; */
        padding-bottom: 120px;
    }
}

@media (max-width: 1199px) {
    .main-slider-two__item {
        padding-top: 200px;
        padding-bottom: 120px;
    }
}

@media (max-width: 991px) {
    .main-slider-two__item {
        padding-top: 90px;
        padding-bottom: 90px;
        padding-left: 0px;
        padding-right: 0px;
    }
}

.main-slider-two__bg {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    overflow: hidden;
    z-index: -1;
    /* transform: scale(1); */
    /* transition: transform 10000ms ease, -webkit-transform 10000ms ease; */
}

    .main-slider-two__bg::before {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        content: "";
        background-color: rgb(31 33 32 / 60%);
        z-index: 1;
    }

.main-slider-two__content {
    position: relative;
    z-index: 3;
    overflow: hidden;
}

.main-slider-two__sub-title {
    color: var(--eolimn-white, #fff);
    text-transform: uppercase;
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0.1em;
    margin: 0 0 31px;
    display: inline-block;
    transition: transform 1000ms ease, opacity 1000ms ease;
    transform: translateY(-200px);
}

.main-slider-two__sub-title__border {
    margin-top: 10px;
    width: 100%;
    height: 4px;
    background: var(--eolimn-white, #fff);
    position: relative;
    display: flex;
}

    .main-slider-two__sub-title__border::after {
        content: "";
        width: 50%;
        height: 100%;
        position: absolute;
        top: 0;
        right: 0;
        background: #feb21f;
        animation: lineLeftToRight 3s ease-in-out infinite;
    }

@keyframes lineLeftToRight {
    0% {
        transform: translateX(-100%);
    }

    50% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-100%);
    }
}

.main-slider-two__title {
    color: var(--eolimn-white, #fff);
    overflow: hidden;
    margin: 0 0 29px;
    font-style: normal;
    font-weight: 800;
    font-size: 90px;
    line-height: 111%;
    letter-spacing: -0.03em;
    text-transform: capitalize;
    position: relative;
    opacity: 0;
    transition: transform 1200ms ease, opacity 1200ms ease;
    transform: translateX(200px);
}

    .main-slider-two__title::after {
        content: "";
        width: 101%;
        height: 101%;
        position: absolute;
        top: 0px;
        left: 100%;
        background: currentColor;
        transition: 1s cubic-bezier(0.858, 0.01, 0.068, 0.99);
        z-index: 3;
        transform: translateX(-100%);
        transition-delay: 1s;
    }

@media (max-width: 1550px) {
    .main-slider-two__title {
        font-size: 50px;
    }
}

@media (max-width: 1199px) and (min-width: 992px) {
    .main-slider-two__title {
        font-size: 50px;
    }
}

@media (max-width: 767px) {
    .main-slider-two__title {
        font-size: 40px;
    }
}

@media (max-width: 575px) {
    .main-slider-two__title {
        font-size: 25px;
    }
}

.main-slider-two__icon {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 50px;
    overflow: hidden;
}

.main-slider-two__icon__item {
    max-width: 80px;
    width: 100%;
    height: 80px;
    border: 1px solid rgba(var(--eolimn-white-rgb, 255, 255, 255), 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--eolimn-white, #fff);
    transition: all 0.4s ease-in-out;
    font-size: 50px;
    opacity: 0;
    transition: transform 1200ms ease, opacity 1200ms ease;
    transform: translateY(200px);
}

    .main-slider-two__icon__item:hover {
        color: var(--eolimn-base, #60AC45);
    }

.main-slider-two__icon__item--one {
    transition-delay: 700ms;
}

.main-slider-two__icon__item--two {
    transition-delay: 900ms;
}

.main-slider-two__icon__item--three {
    transition-delay: 1100ms;
}

.main-slider-two__btn {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    z-index: 5;
    overflow: hidden;
    opacity: 0;
    transform: perspective(400px) rotateY(0deg) translateY(80px);
    transform-origin: bottom;
    transition: all 1500ms ease;
}

.main-slider-two__thumb {
    text-align: center;
}

.main-slider-two__thumb__item {
    position: relative;
    z-index: 2;
}

.main-slider-two__thumb__item__box {
    overflow: hidden;
    width: 398px;
    height: 398px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 50%;
    background: transparent;
    position: relative;
    opacity: 0;
    transition: transform 1000ms ease, opacity 1000ms ease;
    transform: scale(0.5);
}

@media (max-width: 991px) {
    .main-slider-two__thumb__item__box {
        margin-top: 50px;
    }
}

@media (max-width: 575px) {
    .main-slider-two__thumb__item__box {
        display: none;
    }
}

.main-slider-two__thumb__item__box::after {
    content: "";
    position: absolute;
    top: 0;
    border-radius: 50%;
    left: 0;
    background: var(--eolimn-white, #fff);
    width: 100%;
    height: 100%;
    border: 44px solid var(--eolimn-text-dark, #202220);
    z-index: -1;
}

.main-slider-two__thumb__item__box__item {
    position: absolute;
    bottom: 0;
    left: 12%;
    transition: transform 1000ms ease, opacity 1000ms ease;
    transform: translateY(100%);
}

.main-slider-two__thumb__item__shape {
    position: absolute;
    bottom: -28.5%;
    right: 11.5%;
    opacity: 0;
    transition: opacity 1000ms ease;
}

@media (max-width: 1550px) {
    .main-slider-two__thumb__item__shape {
        right: 8%;
    }
}

@media (max-width: 1300px) {
    .main-slider-two__thumb__item__shape {
        right: 6%;
    }
}

@media (max-width: 1199px) {
    .main-slider-two__thumb__item__shape {
        display: none;
    }
}

.main-slider-two__thumb__item--three {
    position: absolute;
    bottom: 0;
    z-index: 0;
    -webkit-mask: url('data:image/svg+xml;utf8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300.000000 308.000000">  <g transform="translate(0.000000,308.000000) scale(0.050000,-0.050000)"> <path d="M2720 6138 c-1255 -127 -2298 -1012 -2612 -2218 -100 -383 -108 -558 -108 -2305 l0 -1615 3000 0 3000 0 0 1598 c0 1886 -11 2054 -163 2507 -441 1316 -1751 2170 -3117 2033z"/> </g> </svg>');
    mask: url('data:image/svg+xml;utf8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300.000000 308.000000">  <g transform="translate(0.000000,308.000000) scale(0.050000,-0.050000)"> <path d="M2720 6138 c-1255 -127 -2298 -1012 -2612 -2218 -100 -383 -108 -558 -108 -2305 l0 -1615 3000 0 3000 0 0 1598 c0 1886 -11 2054 -163 2507 -441 1316 -1751 2170 -3117 2033z"/> </g> </svg>');
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: top center;
    mask-position: top center;
    -webkit-mask-size: auto;
    mask-size: auto;
    transition: transform 1000ms ease, opacity 1000ms ease;
    transform: translateY(100%);
    background: var(--eolimn-base, #60AC45);
}

@media (max-width: 1199px) {
    .main-slider-two__thumb__item--three {
        display: none;
    }
}

.main-slider-two .active .main-slider-two__sub-title {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 1100ms;
}

.main-slider-two .active .main-slider-two__title {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 1300ms;
}

    .main-slider-two .active .main-slider-two__title::after {
        transform: translateY(1%);
        transition-delay: 1600ms;
    }

.main-slider-two .active .main-slider-two__btn {
    opacity: 1;
    transform: perspective(400px) rotateY(0deg) translateY(0px);
    transition-delay: 1800ms;
}

.main-slider-two .active .main-slider-two__icon__item {
    opacity: 1;
    transform: translateY(0);
}

.main-slider-two .active .main-slider-two__thumb__item--three {
    transform: translateY(0);
    transition-delay: 800ms;
}

.main-slider-two .active .main-slider-two__thumb__item__box {
    transform: scale(1.1);
    transition-delay: 1200ms;
    opacity: 1;
}

.main-slider-two .active .main-slider-two__thumb__item__box__item {
    transition-delay: 1500ms;
    transform: translateY(0%);
}

.main-slider-two .active .main-slider-two__thumb__item__shape {
    transition-delay: 1200ms;
    opacity: 1;
}

.main-slider-two .active .main-slider-two__bg {
    /* transform: scale(1.15); */
}

.main-slider-three {
    position: relative;
    z-index: 1;
    background: var(--eolimn-gray, #F5F5F5);
}

.main-slider-three__carousele {
    top: 0;
    position: absolute;
    z-index: -2;
}

.main-slider-three__bg {
    position: relative;
    top: 0;
    left: 0;
    bottom: 55px;
    height: 935px;
    width: 100%;
    right: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    z-index: -1;
    clip-path: polygon(0 0, 100% 0, 100% 60%, 50% 100%, 0% 60%);
    transform: scale(1);
    transition: transform 10000ms ease, -webkit-transform 10000ms ease;
    overflow: hidden;
}

@media (max-width: 1399px) {
    .main-slider-three__bg {
        height: 835px;
    }
}

@media (max-width: 1199px) {
    .main-slider-three__bg {
        height: 690px;
    }
}

@media (max-width: 991px) {
    .main-slider-three__bg {
        height: 630px;
    }
}

@media (max-width: 767px) {
    .main-slider-three__bg {
        clip-path: polygon(0 0, 100% 0, 100% 75%, 50% 100%, 0% 75%);
    }
}

@media (max-width: 575px) {
    .main-slider-three__bg {
        clip-path: polygon(0 0, 100% 0, 100% 85%, 50% 100%, 0% 85%);
    }
}

.main-slider-three__bg::after {
    width: 100%;
    height: 100%;
    content: "";
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
    position: absolute;
    top: 0;
    left: 0;
}

.main-slider-three::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    mix-blend-mode: multiply;
    opacity: 0.5;
    background-image: url(../images/shapes/home-three-3-1.png);
}

.main-slider-three__content {
    padding-top: 405px;
    position: relative;
    z-index: 2;
    height: 860px;
}

@media (max-width: 1399px) {
    .main-slider-three__content {
        padding-top: 305px;
        height: 760px;
    }
}

@media (max-width: 1199px) {
    .main-slider-three__content {
        padding-top: 205px;
        height: 660px;
    }
}

@media (max-width: 991px) {
    .main-slider-three__content {
        padding-top: 205px;
        height: auto;
    }
}

.main-slider-three__sub-title {
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--eolimn-white, #fff);
    text-align: center;
    padding-bottom: 0;
    margin-bottom: 21px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

@media (max-width: 767px) {
    .main-slider-three__sub-title {
        font-size: 13px;
        gap: 5px;
    }
}

.main-slider-three__sub-title__line-group {
    animation: transformTranslateLeft 4s ease infinite;
}

.main-slider-three__sub-title__line-group--two {
    animation: transformTranslateRight 4s ease infinite;
}

.main-slider-three__sub-title__line {
    background: var(--eolimn-white, #fff);
    display: inline-block;
    margin: 0;
}

.main-slider-three__sub-title__line--4 {
    width: 21px;
    height: 11px;
    transition: all 0.5s ease;
    transition: transform 1100ms ease;
}

.main-slider-three__sub-title__line--3 {
    width: 10px;
    height: 11px;
    transition: transform 1100ms ease;
}

.main-slider-three__sub-title__line--2 {
    height: 11px;
    width: 6px;
    transition: transform 1100ms ease;
}

.main-slider-three__sub-title__line--1 {
    height: 11px;
    width: 4px;
    transition: transform 1100ms ease;
}

.main-slider-three__sub-title__line--5 {
    width: 21px;
    height: 11px;
    transition: all 0.5s ease;
    transition: transform 1100ms ease;
}

.main-slider-three__sub-title__line--6 {
    width: 10px;
    height: 11px;
    transition: transform 1100ms ease;
}

.main-slider-three__sub-title__line--7 {
    height: 11px;
    width: 6px;
    transition: transform 1100ms ease;
}

.main-slider-three__sub-title__line--8 {
    height: 11px;
    width: 4px;
    transition: transform 1100ms ease;
}

@keyframes transformTranslateLeft {
    0% {
        transform: translateX(0%);
        opacity: 1;
    }

    50% {
        transform: translateX(-70%);
    }

    100% {
        transform: translateX(0%);
        opacity: 0;
    }
}

@keyframes transformTranslateRight {
    0% {
        transform: translateX(0%);
        opacity: 1;
    }

    50% {
        transform: translateX(70%);
    }

    100% {
        transform: translateX(0%);
        opacity: 0;
    }
}

.main-slider-three__title {
    font-style: normal;
    font-weight: 800;
    font-size: 90px;
    line-height: 111%;
    padding-bottom: 0;
    color: var(--eolimn-white, #fff);
    letter-spacing: -0.03em;
    text-transform: capitalize;
    position: relative;
    z-index: 2;
    text-align: center;
    margin-bottom: 32px;
}

@media (max-width: 991px) {
    .main-slider-three__title {
        font-size: 70px;
    }
}

@media (max-width: 767px) {
    .main-slider-three__title {
        font-size: 60px;
    }
}

@media (max-width: 575px) {
    .main-slider-three__title {
        font-size: 50px;
    }
}

.main-slider-three__btn {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 100px;
}

@media (max-width: 1199px) {
    .main-slider-three__btn {
        margin-bottom: 50px;
    }
}

@media (max-width: 575px) {
    .main-slider-three__btn {
        flex-wrap: wrap;
    }
}

.main-slider-three__btn .eolimn-btn {
    padding: 15px 21px;
}

    .main-slider-three__btn .eolimn-btn:hover {
        color: var(--eolimn-white, #fff);
        border: 1px solid var(--eolimn-white, #fff);
    }

    .main-slider-three__btn .eolimn-btn:last-child {
        color: var(--eolimn-white, #fff);
        border: 1px solid var(--eolimn-white, #fff);
    }

        .main-slider-three__btn .eolimn-btn:last-child:hover {
            color: var(--eolimn-white, #fff);
            border: 1px solid var(--eolimn-base, #60AC45);
        }

.main-slider-three__video {
    position: relative;
    margin-bottom: -48px;
    z-index: 2;
}

@media (max-width: 1199px) {
    .main-slider-three__video {
        margin-bottom: 20px;
    }
}

@media (max-width: 991px) {
    .main-slider-three__video {
        margin-bottom: 100px;
    }
}

@media (max-width: 991px) {
    .main-slider-three__video {
        margin-bottom: 0px;
        padding-bottom: 100px;
    }
}

.main-slider-three__video__popup {
    background: var(--eolimn-white, #fff);
    width: 76.57px;
    height: 76.57px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--eolimn-base, #60AC45);
    font-size: 20px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    transition: all 0.4s ease-in-out;
}

    .main-slider-three__video__popup .main-slider-three__video__hover {
        position: absolute;
        width: 110px;
        height: 110px;
        background: var(--eolimn-border-color, #DEDEDE);
        opacity: 0;
        border-radius: 100%;
        top: -21%;
        left: -21%;
        animation: videoScale 3s ease-in-out infinite;
        z-index: -2;
    }

    .main-slider-three__video__popup .main-slider-three__video__hover--2 {
        animation-delay: 0.5s;
        background: transparent;
        border: 1px solid var(--eolimn-border-color, #DEDEDE);
    }

    .main-slider-three__video__popup .main-slider-three__video__hover--3 {
        animation-delay: 0.7s;
        background: transparent;
        border: 1px solid var(--eolimn-border-color, #DEDEDE);
    }

    .main-slider-three__video__popup:hover {
        background: var(--eolimn-base, #60AC45);
        color: var(--eolimn-white, #fff);
    }

.main-slider-three__icon-list {
    position: relative;
    z-index: 1;
    margin-left: 150px;
    margin-right: 205px;
    padding-bottom: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media (max-width: 1399px) {
    .main-slider-three__icon-list {
        margin-left: 100px;
        margin-right: 100px;
    }
}

@media (max-width: 991px) {
    .main-slider-three__icon-list {
        flex-wrap: wrap;
        gap: 30px;
    }
}

@media (max-width: 900px) {
    .main-slider-three__icon-list {
        display: none;
    }
}

.main-slider-three__icon-list__inner {
    display: flex;
    align-items: center;
    gap: 60px;
}

.main-slider-three__icon-list__item:hover .main-slider-three__icon-list__icon {
    animation: bounceIn 1s linear;
}

.main-slider-three__icon-list__icon {
    font-size: 60px;
    color: var(--eolimn-base, #60AC45);
    margin-bottom: 6px;
    line-height: 1;
    transition: all 0.5s ease-in-out;
}

.main-slider-three__icon-list__text {
    font-style: normal;
    font-weight: 700;
    font-size: 18px;
    line-height: 23px;
    margin-bottom: 0;
    padding-bottom: 0;
    letter-spacing: -0.03em;
    text-transform: capitalize;
    color: var(--eolimn-text-dark, #202220);
}

.main-slider-three__shape {
    position: absolute;
    top: 0;
    left: -15%;
    bottom: 100px;
    right: 0;
    z-index: -2;
    clip-path: polygon(0 0, 100% 0, 100% 54%, 50% 100%, 0 54%);
    background: var(--eolimn-base, #60AC45);
}

@media (max-width: 1199px) {
    .main-slider-three__shape {
        bottom: 140px;
        left: -18%;
    }
}

@media (max-width: 991px) {
    .main-slider-three__shape {
        bottom: 240px;
    }
}

@media (max-width: 900px) {
    .main-slider-three__shape {
        bottom: 80px;
    }
}

@media (max-width: 767px) {
    .main-slider-three__shape {
        clip-path: polygon(0 0, 100% 0, 100% 75%, 50% 100%, 0% 75%);
    }
}

@media (max-width: 575px) {
    .main-slider-three__shape {
        clip-path: polygon(0 0, 100% 0, 100% 85%, 50% 100%, 0% 85%);
    }
}

.main-slider-three__shape--two {
    position: absolute;
    top: 0;
    right: -15%;
    bottom: 100px;
    z-index: -2;
    clip-path: polygon(0 0, 100% 0, 100% 54%, 50% 100%, 0 54%);
    background: var(--eolimn-base, #60AC45);
    left: 0;
}

@media (max-width: 1199px) {
    .main-slider-three__shape--two {
        bottom: 140px;
        right: -18%;
    }
}

@media (max-width: 991px) {
    .main-slider-three__shape--two {
        bottom: 240px;
    }
}

@media (max-width: 900px) {
    .main-slider-three__shape--two {
        bottom: 80px;
    }
}

@media (max-width: 767px) {
    .main-slider-three__shape--two {
        clip-path: polygon(0 0, 100% 0, 100% 75%, 50% 100%, 0% 75%);
    }
}

@media (max-width: 575px) {
    .main-slider-three__shape--two {
        clip-path: polygon(0 0, 100% 0, 100% 85%, 50% 100%, 0% 85%);
    }
}

.main-slider-three__element {
    position: absolute;
    bottom: 0;
    left: 0%;
    animation: leftToRight 4s ease-in-out infinite;
}

@media (max-width: 1399px) {
    .main-slider-three__element {
        left: -2%;
    }
}

@media (max-width: 1199px) {
    .main-slider-three__element img {
        object-fit: cover;
        width: 70%;
    }
}

@media (max-width: 900px) {
    .main-slider-three__element {
        display: none;
    }
}

.main-slider-three__element--two {
    animation: rightToLeft 4s ease-in-out infinite;
    bottom: 0;
    left: auto;
    right: 0%;
}

@media (max-width: 1399px) {
    .main-slider-three__element--two {
        right: -2%;
    }
}

@media (max-width: 1199px) {
    .main-slider-three__element--two img {
        object-fit: cover;
        width: 70%;
    }
}

@media (max-width: 900px) {
    .main-slider-three__element--two {
        display: none;
    }
}

/*--------------------------------------------------------------
# Feature Section
--------------------------------------------------------------*/
.feature-one {
    position: relative;
    z-index: 2;
    background-color: var(--eolimn-gray, #F5F5F5);
    padding: 30px 0 65px;
}

.feature-one__bg {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 497px;
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0.5;
    mix-blend-mode: luminosity;
}

.feature-one__item {
    position: relative;
    margin-bottom: 30px;
}

    .feature-one__item::after {
        position: absolute;
        right: -28px;
        top: 0;
        width: 1px;
        height: 95%;
        content: "";
        background-color: var(--eolimn-border-color, #DEDEDE);
    }

@media (max-width: 767px) {
    .feature-one__item::after {
        display: none;
    }
}

@media (max-width: 991px) {
    .feature-one__item--no-border-md::after {
        display: none;
    }
}

.feature-one__item--no-border::after {
    display: none;
}

.feature-one__item:hover .feature-one__item__img::after {
    -webkit-animation: zoom-hover 0.95s;
    animation: zoom-hover 0.95s;
}

.feature-one__item:hover .feature-one__item__icon span {
    transform: scale(0.9);
}

.feature-one__item:hover .feature-one__item__hover-img {
    visibility: visible;
    opacity: 1;
    transform: scale(1);
}

.feature-one__item__hover-img {
    position: absolute;
    left: -125px;
    top: -25px;
    right: 0;
    margin: auto;
    width: 164px;
    height: 157px;
    visibility: hidden;
    opacity: 0;
    transform: scale(1.1);
    transition: 500ms ease;
}

    .feature-one__item__hover-img img {
        width: 100%;
    }

@keyframes float-bob-y-2 {
    0% {
        -webkit-transform: translateY(0px) translateX(0px) rotate(0deg);
        transform: translateY(0px) translateX(0px) rotate(0deg);
    }

    50% {
        -webkit-transform: translateY(10px) translateX(10px) rotate(5deg);
        transform: translateY(10px) translateX(10px) rotate(5deg);
    }

    100% {
        -webkit-transform: translateY(0px) translateX(0px) rotate(0deg);
        transform: translateY(0px) translateX(0px) rotate(0deg);
    }
}

.feature-one__item__img {
    width: 171px;
    height: 171px;
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0 auto 30px;
}

    .feature-one__item__img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 50%;
    }

    .feature-one__item__img::after {
        content: "";
        position: absolute;
        top: 50%;
        left: 50%;
        display: block;
        width: 0;
        height: 0;
        background: rgba(var(--eolimn-white-rgb, 255, 255, 255), 0.2);
        border-radius: 50%;
        transition: all 500ms linear;
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        opacity: 0;
        z-index: 2;
    }

@keyframes zoom-hover {
    0% {
        opacity: 1;
    }

    40% {
        opacity: 1;
    }

    100% {
        width: 120%;
        height: 120%;
        opacity: 0;
    }
}

.feature-one__item__icon {
    width: 66px;
    height: 66px;
    background-color: var(--eolimn-base, #60AC45);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--eolimn-white, #fff);
    position: absolute;
    right: 0;
    bottom: 0;
}

    .feature-one__item__icon span {
        transform: scale(1);
        transition: 500ms ease;
    }

.feature-one__item__sub-title {
    font-size: 34px;
    color: var(--eolimn-base, #60AC45);
    font-weight: 400;
    line-height: 1;
    font-family: var(--eolimn-special-font, "Inter", sans-serif);
    margin: 0 0 -2px;
}

.feature-one__item__title {
    font-size: 30px;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0 0 -5px;
}

.feature-one__item svg {
    width: 31px;
    height: 4px;
    fill: var(--eolimn-base, #60AC45);
}

.feature-one__item__text {
    font-size: 15px;
    line-height: 26px;
    font-weight: 500;
    max-width: 280px;
    margin: 9px auto 0;
}

/****Solar Bar****/
.solar-bar {
    position: relative;
    z-index: 2;
    padding-bottom: 1px;
    background: var(--eolimn-white, #fff);
}

.solar-bar__inner {
    position: relative;
    z-index: 1;
    margin-bottom: -135px;
}

.solar-bar__inner__bg {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: -1000px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    z-index: -1;
}

    .solar-bar__inner__bg::after {
        top: 0;
        bottom: 0;
        left: 0;
        right: -1000px;
        position: absolute;
        background-color: var(--eolimn-base, #60AC45);
        mix-blend-mode: multiply;
        content: "";
    }

@media (max-width: 991px) {
    .solar-bar__inner__bg {
        left: -999px;
    }

        .solar-bar__inner__bg::after {
            left: -999px;
        }
}

.solar-bar__list {
    display: flex;
    margin: 0;
    justify-content: space-between;
    gap: 70px;
    padding: 60px 0px 60px 60px;
}

@media (max-width: 991px) {
    .solar-bar__list {
        flex-wrap: wrap;
        gap: 35px 0;
    }
}

@media (max-width: 1199px) and (min-width: 991px) {
    .solar-bar__list {
        gap: 60px;
        padding: 40px 0px 40px 40px;
    }
}

@media (max-width: 767px) {
    .solar-bar__list {
        padding-left: 0;
    }
}

.solar-bar__list__item {
    position: relative;
}

    .solar-bar__list__item:not(:first-of-type)::before {
        content: "";
        width: 1px;
        height: 100%;
        background-color: rgba(var(--eolimn-border-color-rgb, 222, 222, 222), 0.3);
        position: absolute;
        top: 0;
        left: -40px;
    }

@media (max-width: 991px) {
    .solar-bar__list__item:not(:first-of-type)::before {
        display: none;
    }
}

.solar-bar__list__item:hover .solar-bar__list__icon {
    transform: scale(0.9);
}

.solar-bar__list__icon {
    color: var(--eolimn-white, #fff);
    font-size: 60px;
    line-height: 1px;
    margin-bottom: 10px;
    transform: scale(1);
    transition: all 0.4s ease-in-out;
}

.solar-bar__list__title {
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    line-height: 31px;
    color: var(--eolimn-white, #fff);
    margin-bottom: 10px;
    padding-bottom: 0;
    text-transform: capitalize;
    letter-spacing: -0.4px;
}

@media (max-width: 1199px) and (min-width: 991px) {
    .solar-bar__list__title {
        font-size: 20px;
        line-height: 1.3;
    }
}

.solar-bar__list__title a {
    color: inherit;
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
    transition: all 500ms ease;
}

    .solar-bar__list__title a:hover {
        background-size: 100% 1px;
    }

.solar-bar__list__text {
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 175%;
    margin-bottom: -5px;
    padding-bottom: 0;
    color: var(--eolimn-white, #fff);
    text-transform: capitalize;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
/****About One****/
.about-one {
    padding: 180px 0px;
    position: relative;
    background: var(--eolimn-white, #fff);
}

@media (max-width: 1199px) {
    .about-one {
        padding: 150px 0px;
    }
}

@media (max-width: 991px) {
    .about-one {
        padding: 100px 0px;
    }
}

@media (max-width: 767px) {
    .about-one {
        padding: 80px 0px;
    }
}

.about-one .container {
    position: relative;
}

    .about-one .container::after {
        position: absolute;
        content: "";
        top: -30px;
        left: -60px;
        bottom: -60px;
        right: -60px;
        border: 1px solid var(--eolimn-border-color, #DEDEDE);
    }

@media (max-width: 1199px) {
    .about-one .container::after {
        top: -30px;
        left: -30px;
        bottom: -30px;
        right: -30px;
    }
}

@media (max-width: 991px) {
    .about-one .container::after {
        display: none;
    }
}

.about-one .container::before {
    position: absolute;
    content: "";
    top: -30px;
    width: 53.6%;
    bottom: -60px;
    left: -60px;
    background-image: url(../images/shapes/about-line-1-1.png);
    background-repeat: no-repeat;
    background-position: center center;
    border-right: 1px solid var(--eolimn-border-color, #DEDEDE);
}

@media (max-width: 1199px) {
    .about-one .container::before {
        top: -30px;
        bottom: -30px;
    }
}

@media (max-width: 991px) {
    .about-one .container::before {
        display: none;
    }
}

.about-one__content .sec-title {
    padding-bottom: 20px;
}

.about-one__top__text {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 175%;
    color: var(--eolimn-text, #74787C);
    text-transform: capitalize;
    margin-bottom: 0;
    padding-bottom: 0;
}

.about-one__top__text--text {
    font-weight: 600;
    font-size: 16px;
    line-height: 175%;
    color: var(--eolimn-base, #60AC45);
}

.about-one__top__text + .about-one__top__text {
    margin-top: 12px;
}

.about-one__list {
    margin-top: 27px;
    margin-bottom: 40px;
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

.about-one__list__item {
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 175%;
    margin-bottom: 0;
    padding-bottom: 0;
    color: var(--eolimn-text-dark, #202220);
    text-transform: capitalize;
    max-width: 200px;
    width: 100%;
    display: flex;
    align-items: center;
}

    .about-one__list__item i {
        margin-right: 10px;
        font-size: 18px;
        color: var(--eolimn-base, #60AC45);
        transition: all 0.4s ease-in-out;
    }

    .about-one__list__item:hover i {
        color: var(--eolimn-border-color, #DEDEDE);
    }

.about-one__left {
    position: relative;
    z-index: 1;
    margin-right: 30px;
}

@media (max-width: 991px) {
    .about-one__left {
        margin-right: 0px;
    }
}

.about-one__thumb img {
    object-fit: cover;
    width: 100%;
}

.about-one__funfact {
    background: var(--eolimn-white, #fff);
    padding: 10px;
    position: absolute;
    top: 20px;
    right: 20px;
}

.about-one__funfact__text {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    margin-bottom: 60px;
    padding-bottom: 0;
    text-transform: capitalize;
    color: var(--eolimn-black, #000);
}

.about-one__funfact::after {
    position: absolute;
    left: 10px;
    bottom: 10px;
    content: "";
    height: 35px;
    width: 35px;
    background: var(--eolimn-base, #60AC45);
    clip-path: polygon(0 0, 0 0, 100% 100%, 0% 100%);
    transition: all 0.4s ease-in-out;
}

.about-one__funfact:hover::after {
    height: 35px;
    width: 88%;
    right: 10px;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}

.about-one__count {
    display: flex;
    align-items: center;
    justify-content: start;
    font-style: normal;
    font-weight: 800;
    font-size: 55px;
    line-height: 100%;
    color: var(--eolimn-base, #60AC45);
    margin-bottom: 0px;
}

    .about-one__count sub {
        margin-bottom: 5px;
    }

.about-one__shape {
    position: absolute;
    bottom: 0%;
    left: 30px;
    z-index: 0;
    animation: opacityElement 4s ease-in-out infinite;
}

@media (max-width: 1024px) {
    .about-one__shape {
        display: none;
    }
}

/****About Two****/
.about-two {
    position: relative;
    padding: 100px 0px;
}

@media (max-width: 991px) {
    .about-two {
        padding: 30px 0px;
    }
}

@media (max-width: 767px) {
    .about-two {
        padding: 30px 0px;
    }
}

.about-two__thumb {
    position: relative;
    z-index: 1;
    margin-right: 30px;
}

@media (max-width: 1199px) and (min-width: 991px) {
    .about-two__thumb {
        margin-right: 0;
    }
}

.about-two__thumb__item {
    position: relative;
    margin-left: 47px;
}

@media (max-width: 1199px) {
    .about-two__thumb__item img {
        object-fit: cover;
        width: 100%;
    }
}

@media (max-width: 991px) {
    .about-two__thumb__item {
        margin-left: 0;
    }
}

@media (max-width: 575px) {
    .about-two__thumb__item {
        margin-left: 30px;
    }
}

.about-two__thumb__item--two {
    position: absolute;
    bottom: 41px;
    right: 0;
    border: 12px solid var(--eolimn-white, #fff);
    box-shadow: 0px 4px 25px rgba(0, 0, 0, 0.08);
}

@media (max-width: 991px) {
    .about-two__thumb__item--two {
        right: -30px;
    }
}

@media (max-width: 400px) {
    .about-two__thumb__item--two {
        position: relative;
        bottom: 0;
        right: 0px;
    }
}

.about-two__thumb::after {
    content: "";
    position: absolute;
    width: 223px;
    height: 355px;
    background: transparent;
    border: 3px solid var(--eolimn-base, #60AC45);
    right: 30px;
    top: 50px;
    z-index: -1;
    animation: bottomToTop 3s ease-in-out infinite;
}

.about-two__box {
    background: var(--eolimn-base, #60AC45);
    position: relative;
    padding: 30px 16px;
    text-align: center;
    display: inline-block;
    position: absolute;
    top: 50px;
    left: 0;
}

@media (max-width: 991px) {
    .about-two__box {
        left: -47px;
    }
}

@media (max-width: 575px) {
    .about-two__box {
        left: -10px;
    }
}

.about-two__box__icon {
    font-size: 50px;
    color: var(--eolimn-white, #fff);
    line-height: 1;
    margin-bottom: 18px;
}

.about-two__box__title {
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    line-height: 117%;
    margin-bottom: 1px;
    padding-bottom: 0;
    color: var(--eolimn-white, #fff);
}

.about-two__box__text {
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 188%;
    color: var(--eolimn-white, #fff);
    margin-bottom: 0;
    padding-bottom: 0;
    text-transform: capitalize;
    margin-bottom: -5px;
}

.about-two__box::after {
    content: "";
    position: absolute;
    bottom: -30px;
    left: 0;
    width: 47px;
    height: 30px;
    background: var(--eolimn-text-dark, #202220);
    clip-path: polygon(0 0, 100% 0, 100% 100%);
}

.about-two__content .sec-title {
    padding-bottom: 20px;
}

.about-two__content__top__text {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 175%;
    color: var(--eolimn-text, #74787C);
    text-transform: capitalize;
    padding-bottom: 10px;
}

.about-two__content__feature {
    margin-top: 20px;
}

.about-two__content__feature__item {
    padding-top: 25px;
    border-top: 1px solid var(--eolimn-border-color, #DEDEDE);
    display: flex;
    align-self: center;
    gap: 20px;
}

    .about-two__content__feature__item:hover .about-two__content__feature__icon {
        color: var(--eolimn-text-dark, #202220);
    }

        .about-two__content__feature__item:hover .about-two__content__feature__icon i {
            animation: bounceIn 1s linear;
        }

    .about-two__content__feature__item + .about-two__content__feature__item {
        margin-top: 30px;
    }

.about-two__content__feature__icon {
    color: var(--eolimn-base, #60AC45);
    font-size: 80px;
    line-height: 0;
    transition: all 0.4s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-two__content__feature__title {
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    line-height: 130%;
    margin-bottom: 10px;
    padding-bottom: 0;
    color: var(--eolimn-text-dark, #202220);
    text-transform: capitalize;
    text-shadow: 0 0 0.1px currentColor;
}

.about-two__content__feature__text {
    font-weight: 400;
    font-size: 16px;
    line-height: 162%;
    margin-bottom: -4px;
    padding-bottom: 0;
    color: var(--eolimn-text, #74787C);
    text-transform: capitalize;
}

.about-two__experience {
    position: absolute;
    bottom: 50px;
    left: 40%;
}

.about-two__video {
    width: 57px;
    height: 57px;
    background: var(--eolimn-base, #60AC45);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--eolimn-white, #fff);
    position: relative;
}

    .about-two__video::after, .about-two__video::before {
        content: "";
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        background: transparent;
        border: 1px solid var(--eolimn-base, #60AC45);
        border-radius: 50%;
        transform: scale(1.2);
    }

    .about-two__video::before {
        animation: videoBorderOne 2s ease-in-out infinite;
    }

    .about-two__video::after {
        transform: scale(1.4);
        animation: videoBorderOne 2s ease-in-out infinite;
        animation-delay: 1s;
    }

    .about-two__video:hover {
        background: var(--eolimn-text-dark, #202220);
    }

/****About Three****/
.about-three {
    position: relative;
    padding: 120px 0px;
}

@media (max-width: 991px) {
    .about-three {
        padding: 100px 0px;
    }
}

@media (max-width: 767px) {
    .about-three {
        padding: 80px 0px;
    }
}

.about-three__thumb {
    position: relative;
}

    .about-three__thumb img {
        object-fit: cover;
        width: 100%;
    }

.about-three__thumb__shape {
    position: absolute;
    top: 0;
    left: 0;
    animation: bottomToTop 3s ease-in-out infinite;
}

@media (max-width: 767px) {
    .about-three__thumb__shape {
        display: none;
    }
}

.about-three__funfact {
    max-width: 150px;
    width: 100%;
    background: var(--eolimn-base, #60AC45);
    position: absolute;
    bottom: 30px;
    right: 30px;
}

.about-three__funfact__text {
    padding: 10px 29px;
    background: var(--eolimn-text-dark, #202220);
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 125%;
    margin-bottom: 0;
    color: var(--eolimn-white, #fff);
    text-transform: uppercase;
}

.about-three__count {
    font-style: normal;
    font-weight: 800;
    font-size: 55px;
    line-height: 72px;
    text-transform: uppercase;
    text-align: center;
    color: var(--eolimn-white, #fff);
}

.about-three__content {
    margin-left: 30px;
}

@media (max-width: 1199px) {
    .about-three__content {
        margin-left: 0;
    }
}

.about-three__content .sec-title {
    padding-bottom: 20px;
}

.about-three__top__text {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 175%;
    text-transform: capitalize;
    margin-bottom: 0;
    color: var(--eolimn-text, #74787C);
}

.about-three__feature {
    margin-top: 40px;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    gap: 27px;
}

@media (max-width: 1199px) {
    .about-three__feature {
        margin-top: 30px;
        margin-bottom: 30px;
    }
}

.about-three__feature__thumb {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    z-index: 1;
    position: relative;
}

    .about-three__feature__thumb .video-popup {
        display: block;
        font-size: 20px;
        color: var(--eolimn-white, #fff);
        padding: 44px 57px;
        text-transform: capitalize;
        transition: all 0.4s ease-in-out;
    }

        .about-three__feature__thumb .video-popup:hover {
            color: var(--eolimn-base, #60AC45);
        }

    .about-three__feature__thumb::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        background: rgba(var(--eolimn-text-dark-rgb, 32, 34, 32), 0.7);
        z-index: -1;
    }

.about-three__feature__content {
    max-width: 200px;
    width: 100%;
}

.about-three__feature__subtitle {
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 162%;
    color: var(--eolimn-base, #60AC45);
    text-transform: uppercase;
    margin-bottom: 2px;
}

.about-three__feature__title {
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 162%;
    margin-bottom: 0;
    text-transform: capitalize;
    color: var(--eolimn-text-dark, #202220);
    max-width: 180px;
}

.about-three__progress {
    margin-bottom: 50px;
}

.about-three .progress-box__title {
    color: var(--eolimn-text-dark, #202220);
    letter-spacing: -0.02em;
    margin-bottom: 8px;
}

.about-three .progress-box__bar {
    height: 10px;
}

.about-three__btn {
    display: flex;
    align-items: center;
    gap: 34px;
}

@media (max-width: 1199px) and (min-width: 992px) {
    .about-three__btn {
        flex-direction: column;
        justify-content: start;
        align-items: start;
    }
}

@media (max-width: 575px) {
    .about-three__btn {
        flex-direction: column;
        justify-content: start;
        align-items: start;
    }
}

.about-three__author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-three__author__image {
    display: flex;
}

.about-three__author__image__item {
    width: 50%;
    height: 50%;
    border-radius: 50%;
    border: 3px solid var(--eolimn-white, #fff);
}

    .about-three__author__image__item:not(:first-of-type) {
        margin-left: -30px;
    }

.about-three__author__name {
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 188%;
    margin-bottom: 0;
    padding-bottom: 0;
    text-transform: capitalize;
    color: var(--eolimn-text-dark, #202220);
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
/****Service Card****/
.service-card {
    position: relative;
    z-index: 1;
}

.service-card__image {
    position: relative;
    overflow: hidden;
}

    .service-card__image img {
        object-fit: cover;
        width: 100%;
        transition: all 0.4s ease-in-out;
    }

    .service-card__image::after {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 25px;
        content: "";
        background: url(../images/shapes/service-2-2.png);
        animation: bgSlide 30s linear infinite;
    }

.service-card__content {
    background: var(--eolimn-gray, #F5F5F5);
    border-bottom: 2px solid var(--eolimn-base, #60AC45);
    padding: 0px 0px 30px;
}

.service-card__btn {
    width: 55px;
    height: 51px;
    background: var(--eolimn-white, #fff);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: var(--eolimn-base, #60AC45);
    position: relative;
    overflow: hidden;
    z-index: 1;
    margin-left: auto;
    margin-right: auto;
    margin-top: -25px;
    margin-bottom: 30px;
}

    .service-card__btn::before {
        width: 15px;
        height: 15px;
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        background: var(--eolimn-base, #60AC45);
        clip-path: polygon(0 0, 0% 100%, 100% 100%);
        transition: all 0.4s ease-in-out;
    }

    .service-card__btn::after {
        width: 0;
        height: 0;
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        background: var(--eolimn-base, #60AC45);
        transition: all 0.4s ease-in-out;
        z-index: -1;
    }

    .service-card__btn:hover {
        color: var(--eolimn-white, #fff);
    }

        .service-card__btn:hover::before {
            width: 0px;
            height: 0px;
        }

        .service-card__btn:hover::after {
            width: 100%;
            height: 100%;
        }

.service-card__title {
    margin-top: -8px;
    text-align: center;
    text-align: center;
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 150%;
    margin-bottom: -8px;
    padding-bottom: 0px;
    color: var(--eolimn-text-dark, #202220);
    text-transform: capitalize;
    letter-spacing: -0.02em;
}

    .service-card__title a {
        color: inherit;
        background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
        transition: all 500ms ease;
    }

        .service-card__title a:hover {
            background-size: 100% 1px;
        }

        .service-card__title a:hover {
            color: var(--eolimn-base, #60AC45);
        }

.service-card:hover .service-card__image img {
    transform: scale(1.1);
}

/****Service Page****/
.service-page {
    padding: 120px 0px;
}

@media (max-width: 991px) {
    .service-page {
        padding: 100px 0px;
    }
}

@media (max-width: 767px) {
    .service-page {
        padding: 80px 0px;
    }
}

/****Service One****/
.service-one {
    position: relative;
    padding-top: 70px;
    z-index: 1;
    background: var(--eolimn-text-dark, #202220);
}

@media (max-width: 991px) {
    .service-one {
        /* padding-top: 245px; */
    }
}

@media (max-width: 767px) {
    .service-one {
        /* padding-top: 225px; */
    }
}

.service-one__bg {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    mix-blend-mode: overlay;
    opacity: 0.3;
    z-index: -1;
}

.service-one .sec-title .sec-title__title {
    color: var(--eolimn-white, #fff);
}

.service-one__inner {
    margin-right: auto;
    max-width: 1600px;
    padding-bottom: 110px;
    margin-left: -40px;
}

@media (max-width: 1600px) {
    .service-one__inner {
        margin-left: 0px;
    }
}

@media (max-width: 991px) {
    .service-one__inner {
        padding-bottom: 100px;
    }
}

@media (max-width: 767px) {
    .service-one__inner {
        padding-bottom: 80px;
    }
}

.service-one__carousel {
    position: relative;
}

    .service-one__carousel .owl-nav {
        position: absolute;
        top: -150px;
        right: 0;
    }

@media (max-width: 767px) {
    .service-one__carousel .owl-nav {
        margin-top: 30px !important;
        position: relative;
        top: auto;
        right: auto;
    }
}

.service-one__carousel .owl-nav button span {
    width: 38px !important;
    height: 38px !important;
}

.service-one__item {
    padding-bottom: 30px;
    position: relative;
    background: var(--eolimn-gray, #F5F5F5);
    z-index: 1;
    margin-bottom: 28px;
}

    .service-one__item::after {
        position: absolute;
        top: 0;
        left: 0;
        content: "";
        width: 100%;
        height: 100%;
        background-image: url(../images/shapes/service-card-2-1.png);
        background-repeat: no-repeat;
        background-position: top left;
        background-size: cover;
        mix-blend-mode: multiply;
        z-index: -1;
    }

    .service-one__item:hover .service-one__thumb img {
        transform: scale(1.1);
    }

    .service-one__item:hover .service-one__thumb::after {
        position: absolute;
        bottom: 0px;
        left: 0px;
        content: "";
        width: 100%;
        height: 100%;
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
        background: rgba(var(--eolimn-base-rgb, 96, 172, 69), 0.7);
    }

    .service-one__item:hover .service-one__btn__link {
        transform: translateX(0%);
    }

    .service-one__item:hover .service-one__btn__link--hover {
        opacity: 0;
        visibility: hidden;
        z-index: -1;
    }

.service-one__thumb {
    position: relative;
    margin-bottom: 12px;
    overflow: hidden;
}

    .service-one__thumb img {
        object-fit: cover;
        width: 100%;
        transform: scale(1);
        transition: all 0.6s ease-in-out;
    }

    .service-one__thumb::after {
        position: absolute;
        bottom: 20px;
        left: 20px;
        content: "";
        width: 36px;
        height: 37px;
        clip-path: polygon(0 0, 0 0, 100% 100%, 0% 100%);
        background: var(--eolimn-text-dark, #202220);
        transition: all 0.6s ease-in-out;
    }

.service-one__content {
    margin-bottom: 20px;
    padding: 0px 30px 10px;
}

.service-one__content__title {
    font-style: normal;
    font-weight: 800;
    font-size: 22px;
    line-height: 229%;
    margin-bottom: 2px;
    padding-bottom: 0;
    color: var(--eolimn-text-dark, #202220);
    letter-spacing: -0.2px;
}

    .service-one__content__title a {
        color: inherit;
        background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
        transition: all 500ms ease;
    }

        .service-one__content__title a:hover {
            background-size: 100% 1px;
        }

        .service-one__content__title a:hover {
            color: var(--eolimn-base, #60AC45);
        }

.service-one__content__text {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 175%;
    margin-bottom: 0;
    padding-bottom: 0;
    color: var(--eolimn-text, #74787C);
    text-transform: capitalize;
}

.service-one__btn {
    overflow: hidden;
    position: relative;
    margin-bottom: -50px;
}

.service-one__btn__link {
    =: 35px;
    transform: translateX(-100%);
    padding: 12px 20px;
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 21px;
    color: var(--eolimn-white, #fff);
    background: var(--eolimn-base, #60AC45);
    display: inline-flex;
    align-items: center;
    text-transform: capitalize;
    gap: 5px;
    transition: all 0.4s ease-in-out;
}

.service-one__btn__link--hover {
    top: 0;
    left: 35px;
    position: absolute;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateX(0%);
    background: var(--eolimn-white, #fff);
    color: var(--eolimn-base, #60AC45);
    line-height: 1;
    padding: 0;
}

.service-one__shape {
    position: absolute;
    right: 2%;
    bottom: 0;
    animation: leftToRight 3s ease-in-out infinite;
    z-index: -1;
}

.cta__form__inner .container {
    max-width: 1200px;
}

.cta__form {
    background: var(--eolimn-base, #60AC45);
    padding: 40px 40px 35px;
    position: relative;
    display: grid;
    gap: 50px;
    grid-template-columns: 50% auto;
    position: relative;
    z-index: 1;
}

@media (max-width: 991px) {
    .cta__form {
        grid-template-columns: auto;
    }
}

.cta__form::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    clip-path: polygon(20% 0%, 100% 0, 100% 100%, 0% 100%);
    height: 100%;
    width: 58%;
    background-position: center center;
    background-size: cover;
    background-image: url(../images/shapes/form-one-shape-2-1.png);
    z-index: -1;
    background-color: var(--eolimn-gray, #F5F5F5);
}

@media (max-width: 991px) {
    .cta__form::after {
        background-color: var(--eolimn-gray, #F5F5F5);
        height: 50%;
        top: auto;
        bottom: 0;
        width: 100%;
        clip-path: polygon(0% 0%, 100% 0, 100% 100%, 0% 100%);
    }
}

@media (max-width: 767px) {
    .cta__form::after {
        height: 53%;
    }
}

.cta__form::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-position: center center;
    background-size: cover;
    background-image: url(../images/shapes/form-one-shape-2-2.png);
    z-index: -2;
    mix-blend-mode: multiply;
}

.cta__form__title__inner {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

@media (max-width: 1199px) and (min-width: 992px) {
    .cta__form__title__inner {
        margin-bottom: 15px;
    }
}

@media (max-width: 767px) {
    .cta__form__title__inner {
        margin-bottom: 15px;
    }
}

.cta__form__title__tagline {
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--eolimn-white, #fff);
    margin-bottom: 0;
    padding-bottom: 0;
}

.cta__form__title__icon {
    color: var(--eolimn-white, #fff);
    margin-right: 10px;
    line-height: 0;
}

.cta__form .sec-title__title {
    font-style: normal;
    font-weight: 800;
    font-size: 30px;
    line-height: 200%;
    padding-bottom: 0;
    color: var(--eolimn-white, #fff);
    letter-spacing: -0.03em;
    text-transform: capitalize;
    margin-bottom: 5px;
}

@media (max-width: 1199px) and (min-width: 992px) {
    .cta__form .sec-title__title {
        font-size: 25px;
        line-height: 130%;
        margin-bottom: 25px;
    }
}

@media (max-width: 767px) {
    .cta__form .sec-title__title {
        font-size: 25px;
        line-height: 130%;
        margin-bottom: 25px;
    }
}

.cta__form__btn {
    font-style: normal;
    font-weight: 600;
    font-size: 55px;
    line-height: 100%;
    margin-bottom: -15px;
    padding-bottom: 0;
    -webkit-text-stroke: 1px var(--eolimn-white, #fff);
    color: transparent;
    transition: all 0.4s ease;
}

    .cta__form__btn span {
        display: block;
        margin-bottom: -15px;
    }

    .cta__form__btn:hover {
        color: var(--eolimn-white, #fff);
    }

@media (max-width: 1199px) and (min-width: 992px) {
    .cta__form__btn {
        font-size: 40px;
    }
}

@media (max-width: 767px) {
    .cta__form__btn {
        font-size: 40px;
    }
}

@media (max-width: 575px) {
    .cta__form__btn {
        font-size: 35px;
    }
}

.cta__form .form-one__group {
    gap: 20px 10px;
}

    .cta__form .form-one__group input[type=text],
    .cta__form .form-one__group input[type=email] {
        height: 55px;
        background-color: var(--eolimn-white, #fff);
        color: var(--eolimn-text, #74787C);
        font-size: 16px;
        font-weight: 500;
        outline: none;
        padding-left: 20px;
        padding-right: 30px;
        border-radius: 100px;
    }

        .cta__form .form-one__group input[type=text]::placeholder,
        .cta__form .form-one__group input[type=email]::placeholder {
            color: var(--eolimn-text, #74787C);
            font-size: 16px;
            font-weight: 500;
            text-transform: capitalize;
        }

    .cta__form .form-one__group button[type=submit] {
        height: 55px;
        background-color: var(--eolimn-base, #60AC45);
        color: var(--eolimn-text, #74787C);
        font-size: 16px;
        font-weight: 600;
        line-height: 1.2;
        outline: none;
        border-radius: 100px;
        width: 100%;
        color: var(--eolimn-white, #fff);
        text-transform: capitalize;
        border: none;
    }

        .cta__form .form-one__group button[type=submit]::before {
            background: transparent;
        }

        .cta__form .form-one__group button[type=submit]:hover {
            background: var(--eolimn-text-dark, #202220);
        }

.cta .contact-one__form {
    position: relative;
}

/****Service Two****/
.service-two {
    position: relative;
    background: var(--eolimn-text-dark, #202220);
    padding-bottom: 120px;
}

@media (max-width: 991px) {
    .service-two {
        padding-bottom: 100px;
    }
}

@media (max-width: 767px) {
    .service-two {
        padding-bottom: 80px;
    }
}

.service-two .sec-title .sec-title__title {
    color: var(--eolimn-white, #fff);
}

@media (max-width: 991px) {
    .service-two .sec-title {
        padding-bottom: 20px;
    }
}

.service-two__top__thumb {
    margin-left: 150px;
}

@media (max-width: 991px) {
    .service-two__top__thumb {
        margin-left: 0;
    }
}

.service-two__top__thumb img {
    border-radius: 1000px;
    object-fit: cover;
    width: 100%;
}

.service-two__list {
    margin: 0;
}

@media (max-width: 991px) {
    .service-two__list {
        margin-top: 40px;
    }
}

.service-two__list__item {
    padding: 30px 0px 25px;
    display: grid;
    grid-template-columns: 50% auto;
    border-top: 1px solid rgba(var(--eolimn-border-color-rgb, 222, 222, 222), 0.2);
}

@media (max-width: 991px) {
    .service-two__list__item {
        grid-template-columns: 100%;
        gap: 20px;
    }
}

.service-two__list__item:last-child {
    border-bottom: 1px solid rgba(var(--eolimn-border-color-rgb, 222, 222, 222), 0.2);
}

.service-two__list__item:hover .service-two__list__number {
    background: var(--eolimn-base, #60AC45);
    color: var(--eolimn-white, #fff);
}

.service-two__list__item:hover .service-two__list__title {
    color: var(--eolimn-white, #fff);
    -webkit-text-stroke: 1px var(--eolimn-white, #fff);
}

.service-two__list__number {
    display: inline;
    border: 1px solid var(--eolimn-base, #60AC45);
    border-radius: 100px;
    padding: 6px 10px;
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--eolimn-base, #60AC45);
    transition: all 0.4s ease-in-out;
}

.service-two__list__title {
    margin-top: 17px;
    letter-spacing: -0.03em;
    text-transform: capitalize;
    margin-bottom: 0;
    padding-bottom: 0;
    font-style: normal;
    font-weight: 800;
    font-size: 55px;
    line-height: 109%;
    margin-bottom: -7px;
    color: transparent;
    -webkit-text-stroke: 1px var(--eolimn-text, #74787C);
    transition: all 0.4s ease-in-out;
}

.service-two__list__right {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media (max-width: 575px) {
    .service-two__list__right {
        gap: 20px;
        flex-direction: column;
        justify-content: start;
        align-items: start;
    }
}

.service-two__list__btn {
    max-width: 84px;
    width: 100%;
    height: 84px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 24px;
    color: var(--eolimn-white, #fff);
    border: 1px solid rgba(var(--eolimn-border-color-rgb, 222, 222, 222), 0.2);
    transition: all 0.4s ease-in-out;
}

    .service-two__list__btn:hover {
        background: var(--eolimn-base, #60AC45);
    }

.service-two__list__text {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 162%;
    margin-bottom: 0;
    padding-bottom: 0;
    color: var(--eolimn-text, #74787C);
    text-transform: capitalize;
    max-width: 380px;
    width: 100%;
}

.service-two__element {
    position: absolute;
    left: 0;
    bottom: 30%;
    animation: bottomToTop 3s ease-in-out infinite;
}

@media (max-width: 1199px) {
    .service-two__element {
        display: none;
    }
}

.service-two__element__line {
    position: absolute;
    left: 0;
    bottom: 30%;
    animation: bottomToTop 3s ease-in-out infinite;
    animation-delay: 1s;
}

@media (max-width: 991px) {
    .service-two__element__line {
        display: none;
    }
}

.service-two__line {
    position: absolute;
    right: 0;
    bottom: 30%;
    animation: bottomToTop 3s ease-in-out infinite;
    animation-delay: 0.5s;
    display: inline-block;
}

@media (max-width: 991px) {
    .service-two__line {
        display: none;
    }
}

.explorer {
    position: relative;
    z-index: 1;
    background: var(--eolimn-base, #60AC45);
    margin-bottom: 120px;
}

@media (max-width: 991px) {
    .explorer {
        margin-bottom: 100px;
        background: transparent;
    }
}

@media (max-width: 767px) {
    .explorer {
        margin-bottom: 80px;
    }
}

.explorer__bg {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    z-index: -1;
    background-color: var(--eolimn-base, #60AC45);
    mix-blend-mode: overlay;
}

@media (max-width: 991px) {
    .explorer__bg {
        left: -999px;
        right: -999px;
    }
}

.explorer::after {
    content: "";
    top: 0;
    bottom: -10px;
    left: 10px;
    right: 10px;
    position: absolute;
    background-color: rgba(var(--eolimn-base-rgb, 96, 172, 69), 0.25);
    z-index: -1;
}

@media (max-width: 991px) {
    .explorer::after {
        left: -999px;
        right: -999px;
    }
}

.explorer::before {
    content: "";
    top: 0;
    bottom: -20px;
    left: 20px;
    right: 20px;
    position: absolute;
    background-color: rgba(var(--eolimn-base-rgb, 96, 172, 69), 0.25);
    z-index: -1;
}

@media (max-width: 991px) {
    .explorer::before {
        left: -999px;
        right: -999px;
    }
}

.explorer__list {
    counter-reset: courseNumber;
    padding: 40px 40px 32px;
    display: flex;
    margin: 0;
    justify-content: space-between;
    gap: 30px;
}

@media (max-width: 1199px) {
    .explorer__list {
        flex-wrap: wrap;
        gap: 40px 20px;
        justify-content: start;
    }
}

.explorer__item {
    position: relative;
}

@media (max-width: 1199px) {
    .explorer__item {
        flex: 30%;
    }
}

@media (max-width: 767px) {
    .explorer__item {
        flex: 47%;
    }
}

@media (max-width: 575px) {
    .explorer__item {
        flex: 100%;
    }
}

.explorer__item:not(:first-of-type)::before {
    content: "";
    width: 1px;
    height: 100%;
    background-color: rgba(var(--eolimn-border-color-rgb, 222, 222, 222), 0.3);
    position: absolute;
    top: 0;
    left: -74px;
}

@media (max-width: 1199px) {
    .explorer__item:not(:first-of-type)::before {
        display: none;
    }
}

.explorer__item__number {
    position: relative;
    counter-increment: courseNumber;
    margin-bottom: 8px;
    margin-top: 15px;
}

    .explorer__item__number::before {
        content: "";
        font-family: var(--eolimn-font, "DM Sans", sans-serif);
        font-style: normal;
        font-weight: 700;
        -webkit-text-stroke: 1px var(--eolimn-white, #fff);
        color: transparent;
        font-size: 55px;
        line-height: 29%;
        letter-spacing: -0.2px;
        content: counters(courseNumber, ".", decimal-leading-zero);
        transition: all 0.4s ease-in-out;
    }

.explorer__item__title {
    font-style: normal;
    font-weight: 700;
    font-size: 20px;
    line-height: 80%;
    text-transform: capitalize;
    color: var(--eolimn-white, #fff);
    transition: all 0.4s ease-in-out;
}

.explorer__item:hover .explorer__item__number::before {
    color: var(--eolimn-text-dark, #202220);
    -webkit-text-stroke: 1px var(--eolimn-text-dark, #202220);
}

.explorer__item:hover .explorer__item__title {
    color: var(--eolimn-text-dark, #202220);
}

/****Service Three****/
.service-three {
    position: relative;
    padding-top: 120px;
    background-color: var(--eolimn-text-dark, #202220);
}

@media (max-width: 991px) {
    .service-three {
        padding-top: 100px;
    }
}

@media (max-width: 767px) {
    .service-three {
        padding-top: 80px;
    }
}

.service-three__bg {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    mix-blend-mode: overlay;
    filter: grayscale(100%);
}

.service-three__top {
    margin-bottom: 43px;
}

@media (max-width: 991px) {
    .service-three__top {
        margin-bottom: 33px;
    }
}

.service-three__top__title {
    display: flex;
    align-self: start;
    justify-content: center;
    gap: 5px;
    margin-bottom: 7px;
}

.service-three__top__title__tagline {
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 100%;
    margin-bottom: 0;
    padding-bottom: 0;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--eolimn-base, #60AC45);
}

.service-three__top__title i {
    color: var(--eolimn-base, #60AC45);
}

.service-three__middle {
    position: relative;
    padding-bottom: 100px;
}

@media (max-width: 991px) {
    .service-three__middle {
        padding-bottom: 80px;
    }
}

@media (max-width: 767px) {
    .service-three__middle {
        padding-bottom: 60px;
    }
}

.service-three__middle .container {
    max-width: 1500px;
}

.service-three__list {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

@media (max-width: 1199px) {
    .service-three__list {
        flex-wrap: wrap;
        justify-content: start;
    }
}

@media (max-width: 991px) {
    .service-three__list {
        gap: 20px;
    }
}

@media (max-width: 1199px) {
    .service-three__list .service-three__list__item {
        flex: 30%;
        width: 100%;
        max-width: 31.333%;
    }
}

@media (max-width: 767px) {
    .service-three__list .service-three__list__item {
        flex: 48%;
        width: 100%;
        max-width: 48.333%;
    }
}

@media (max-width: 575px) {
    .service-three__list .service-three__list__item {
        flex: 100%;
        width: 100%;
        max-width: 100%;
    }
}

.service-three__text-slider__inner {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
    animation: textScrolling 25s linear infinite;
    animation-direction: reverse;
    will-change: transform;
    position: relative;
    white-space: nowrap;
}

    .service-three__text-slider__inner:hover {
        animation-play-state: paused;
    }

.service-three__text-slider__item {
    color: var(--eolimn-white, #fff);
    display: flex;
    align-items: center;
    font-style: normal;
    font-weight: 800;
    font-size: 90px;
    line-height: 111%;
    text-transform: uppercase;
}

@media (max-width: 1199px) and (min-width: 992px) {
    .service-three__text-slider__item {
        font-size: 70px;
    }
}

@media (max-width: 767px) {
    .service-three__text-slider__item {
        font-size: 70px;
    }
}

.service-three__text-slider__item img {
    margin-right: 10px;
}

.service-three__text-slider__item:nth-child(odd) {
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.8);
}

/*--------------------------------------------------------------
# Service details
--------------------------------------------------------------*/
.service-details {
    padding: 120px 0;
    background-color: var(--eolimn-white, #fff);
}

@media (max-width: 100px) {
    .service-details {
        padding: 100px 0;
    }
}

@media (max-width: 767px) {
    .service-details {
        padding: 80px 0;
    }
}

.service-details__thumbnail {
    margin-bottom: 20px;
}

    .service-details__thumbnail img {
        object-fit: cover;
        width: 100%;
    }

.service-details__title {
    font-style: normal;
    font-weight: 700;
    font-size: 30px;
    line-height: 120%;
    margin-bottom: 15px;
    padding-bottom: 0;
    color: var(--eolimn-text-dark, #202220);
    letter-spacing: -0.9px;
    text-transform: capitalize;
}

.service-details__text {
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 188%;
    margin-bottom: 0;
    padding-bottom: 0;
    text-transform: capitalize;
    color: var(--eolimn-text, #74787C);
}

    .service-details__text + .service-details__title {
        margin-top: 33px;
    }

.service-details__left {
    padding: 40px 0px 40px 40px;
}

.service-details__feature {
    background: var(--eolimn-gray, #F5F5F5);
    position: relative;
    margin-top: 30px;
    margin-bottom: 30px;
}

    .service-details__feature + .service-details__text {
        margin-bottom: -9px;
    }

.service-details__list {
    margin-bottom: 0;
}

.service-details__list__item {
    display: flex;
    align-items: center;
    gap: 10px;
}

    .service-details__list__item:hover .service-details__list__icon {
        background: var(--eolimn-base, #60AC45);
        color: var(--eolimn-white, #fff);
    }

    .service-details__list__item + .service-details__list__item {
        margin-top: 20px;
    }

.service-details__list__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--eolimn-white, #fff);
    font-size: 16px;
    color: var(--eolimn-base, #60AC45);
    transition: all 0.4s ease-in-out;
}

.service-details__list__text {
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 21px;
    margin-bottom: 0;
    padding-bottom: 0;
    color: var(--eolimn-text-dark, #202220);
    text-transform: capitalize;
}

.service-details__thumb img {
    object-fit: cover;
    width: 100%;
    clip-path: polygon(30% 0%, 100% 0, 100% 100%, 0% 100%);
}

@media (max-width: 991px) {
    .service-details__thumb img {
        clip-path: polygon(0% 0%, 100% 0, 100% 100%, 0% 100%);
    }
}

.service-details .accrodion {
    border: 1px solid var(--eolimn-border-color, #DEDEDE);
}

.service-details .faq-page__accordion .active .accrodion-title h4::after {
    width: 106%;
}

.service-details .faq-page__accordion {
    margin-top: 20px;
}

/*--------------------------------------------------------------
# Instagram
--------------------------------------------------------------*/
.insagram-one {
    position: relative;
    padding-top: 1px;
    z-index: 1;
    background: var(--eolimn-white, #fff);
}

    .insagram-one .container {
        max-width: 1500px;
        margin-left: auto;
        margin-right: auto;
    }

.insagram-one__inner {
    position: relative;
    margin-top: -150px;
    z-index: 2;
}

.insagram-one__list {
    display: flex;
    margin: 0;
    justify-content: space-between;
    gap: 30px;
}

@media (max-width: 1199px) {
    .insagram-one__list {
        flex-wrap: wrap;
        gap: 20px;
        justify-content: start;
    }
}

.insagram-one__item {
    position: relative;
    z-index: 1;
    overflow: hidden;
}

@media (max-width: 1199px) {
    .insagram-one__item {
        flex: 0 0 23.5%;
    }
}

@media (max-width: 991px) {
    .insagram-one__item {
        flex: 0 0 31.7%;
    }
}

@media (max-width: 850px) {
    .insagram-one__item {
        flex: 0 0 48%;
    }
}

@media (max-width: 575px) {
    .insagram-one__item {
        flex: 0 0 100%;
    }
}

.insagram-one__item img {
    object-fit: cover;
    width: 100%;
    position: relative;
}

.insagram-one__item::after {
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    position: absolute;
    background-color: rgba(var(--eolimn-text-dark-rgb, 32, 34, 32), 0.9);
    content: "";
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    transform: translateY(-100%);
}

.insagram-one__item__icon {
    position: absolute;
    top: 50%;
    left: 50%;
    font-size: 30px;
    color: var(--eolimn-white, #fff);
    z-index: 1;
    opacity: 0;
    transition-delay: 0.4s;
    transition: 0.4s ease;
    transform: translate(-40%, -40%);
}

    .insagram-one__item__icon:hover {
        color: var(--eolimn-base, #60AC45);
    }

    .insagram-one__item__icon a {
        color: inherit;
    }

.insagram-one__item:hover::after {
    transform: translateY(0%);
    opacity: 1;
    visibility: visible;
}

.insagram-one__item:hover .insagram-one__item__icon {
    opacity: 1;
}

/*--------------------------------------------------------------
# Boxed Home
--------------------------------------------------------------*/
body.boxed-wrapper {
    position: relative;
}

    body.boxed-wrapper .page-wrapper {
        max-width: 1530px;
        margin-left: auto;
        margin-right: auto;
        background-color: var(--eolimn-white, #fff);
        box-shadow: 0px 0px 100px 0px rgba(var(--eolimn-base-rgb, 96, 172, 69), 0.08);
    }

    body.boxed-wrapper .main-header__inner {
        padding-left: 0;
        padding-right: 0;
    }

    body.boxed-wrapper .main-header__nav {
        margin-left: 30px;
    }

    body.boxed-wrapper .main-header__element {
        padding-left: 30px;
    }

@media (max-width: 1199px) {
    body.boxed-wrapper .main-header__element {
        padding-left: 0;
    }
}

body.boxed-wrapper .main-header__right__info + .main-header__right__btn {
    display: none;
}

body.boxed-wrapper .topbar-one {
    padding-left: 0;
    padding-right: 0;
}

/*--------------------------------------------------------------
# Work Process
--------------------------------------------------------------*/
.work-process-one {
    position: relative;
    padding: 80px 0px;
    counter-reset: courseNumber;
    background: var(--eolimn-white, #fff);
}

@media (max-width: 100px) {
    .work-process-one {
        padding: 100px 0;
    }
}

@media (max-width: 767px) {
    .work-process-one {
        padding: 40px 0;
    }
}

.work-process-one__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    mix-blend-mode: multiply;
    opacity: 0.09;
}

.work-process-one__item {
    background: var(--eolimn-white, #fff);
    padding: 30px;
    position: relative;
    box-shadow: 0px 4px 40px 8px rgba(var(--eolimn-base-rgb, 96, 172, 69), 0.1);
    position: relative;
    counter-increment: courseNumber;
    transition: all 0.4s ease-in-out;
}

.work-process-one__item__number::before {
    position: relative;
    content: counters(courseNumber, ".", decimal-leading-zero);
    font-family: var(--eolimn-font, "DM Sans", sans-serif);
    font-style: normal;
    font-weight: 800;
    font-size: 30px;
    line-height: normal;
    -webkit-text-stroke: 1px var(--eolimn-text, #74787C);
    color: transparent;
    transition: all 0.4s ease-in-out;
}

.work-process-one__item__top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.work-process-one__item:hover {
    box-shadow: 0px 4px 40px 8px rgba(var(--eolimn-base-rgb, 96, 172, 69), 0.3);
}

    .work-process-one__item:hover .work-process-one__icon {
        background: var(--eolimn-base, #60AC45);
        color: var(--eolimn-white, #fff);
    }

    .work-process-one__item:hover .work-process-one__item__number::before {
        color: var(--eolimn-text, #74787C);
    }

.work-process-one__icon {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--eolimn-base, #60AC45);
    color: var(--eolimn-base, #60AC45);
    font-size: 40px;
    transition: all 0.4s ease-in-out;
}

.work-process-one__title {
    font-weight: 700;
    font-size: 24px;
    line-height: 31px;
    color: var(--eolimn-text-dark, #202220);
    margin-bottom: 7px;
    padding-bottom: 0;
    text-transform: capitalize;
    letter-spacing: -0.02px;
}

.work-process-one__text {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 175%;
    margin-bottom: -4px;
    padding-bottom: 0;
    color: var(--eolimn-text, #74787C);
    text-transform: capitalize;
}

/*--------------------------------------------------------------
# Project
--------------------------------------------------------------*/
/****project One****/
.project-card {
    position: relative;
    z-index: 1;
    display: block;
    overflow: hidden;
}

.project-card__image {
    position: relative;
}

    .project-card__image img {
        width: 100%;
        object-fit: cover;
        transform: scale(1);
        transition: all 0.4s ease-in-out;
    }

.project-card__hover {
    background: linear-gradient(180deg, rgba(96, 172, 69, 0) 43.8%, #60AC45 87.25%);
    gap: 30px;
    padding: 30px 30px 28px;
    width: 100%;
    height: 100%;
    left: 0;
    bottom: 0;
    z-index: 1;
    position: absolute;
    transform: scaleY(200%);
    opacity: 0;
    transition: all 0.4s ease-in-out;
}

.project-card__content {
    position: absolute;
    bottom: 25px;
    z-index: 1;
}

.project-card__content__icon {
    top: 30px;
    right: 30px;
    position: absolute;
    z-index: 1;
}

.project-card__content__icon__item {
    width: 50px;
    height: 50px;
    display: block;
    position: relative;
    background: var(--eolimn-white, #fff);
    border-radius: 50%;
    transition: all 0.4s ease-in-out;
}

    .project-card__content__icon__item::after, .project-card__content__icon__item::before {
        content: "";
        width: 2px;
        height: 20px;
        background-color: var(--eolimn-base, #60AC45);
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .project-card__content__icon__item::after {
        transform: translate(-50%, -50%) rotate(90deg);
    }

    .project-card__content__icon__item:hover {
        background: var(--eolimn-base, #60AC45);
    }

        .project-card__content__icon__item:hover::after, .project-card__content__icon__item:hover::before {
            background: var(--eolimn-white, #fff);
        }

.project-card__content__icon::after {
    top: 0;
    left: 0;
    content: "";
    width: 50px;
    height: 50px;
    position: absolute;
    background: transparent;
    border: 1px solid var(--eolimn-white, #fff);
    border-radius: 50%;
    animation: scaleOne 2s ease-in-out infinite;
    z-index: -1;
}

.project-card__dec {
    font-style: normal;
    font-weight: 700;
    font-size: 14px;
    line-height: 114%;
    margin-bottom: 0;
    padding-bottom: 0;
    color: var(--eolimn-base, #60AC45);
    display: inline-block;
    padding: 7px 12px;
    background: var(--eolimn-white, #fff);
    text-transform: capitalize;
    border-radius: 100px;
    margin-bottom: 14px;
}

.project-card__title {
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    line-height: 117%;
    margin-bottom: 0;
    padding-bottom: 0;
    color: var(--eolimn-white, #fff);
}

    .project-card__title a {
        color: inherit;
        background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
        transition: all 500ms ease;
    }

        .project-card__title a:hover {
            background-size: 100% 1px;
        }

.project-card:hover .project-card__hover {
    transform: scaleY(100%);
    opacity: 1;
}

.project-card:hover .project-card__image img {
    transform: scale(1.1);
}

/****project One****/
.project-one {
    padding: 120px 0px;
}

@media (max-width: 991px) {
    .project-one {
        padding: 100px 0px;
    }
}

@media (max-width: 767px) {
    .project-one {
        padding: 80px 0px;
    }
}

.project-one--page {
    background: var(--eolimn-gray, #F5F5F5);
    position: relative;
}

.project-one--home {
    position: relative;
    padding-bottom: 270px;
    background: var(--eolimn-text-dark, #202220);
}

@media (max-width: 991px) {
    .project-one--home {
        padding-bottom: 250px;
    }
}

@media (max-width: 767px) {
    .project-one--home {
        padding-bottom: 230px;
    }
}

.project-one--home .sec-title .sec-title__title {
    color: var(--eolimn-white, #fff);
}

.project-one--home .slick-slide {
    margin: 0px 15px;
}

@media (max-width: 767px) {
    .project-one--home .slick-slide {
        margin: 0px 10px;
    }
}

.project-one__bg {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    mix-blend-mode: multiply;
}

.project-one__carousel {
    position: relative;
}

    .project-one__carousel .owl-stage-outer {
        overflow: visible;
    }

    .project-one__carousel .owl-nav {
        position: absolute;
        top: -45%;
        right: 0%;
    }

@media (max-width: 991px) {
    .project-one__carousel .owl-nav {
        position: relative;
        top: auto;
    }
}

.project-one__carousel .owl-nav button span {
    border: none;
    outline: none;
    width: 38px !important;
    height: 38px !important;
    display: flex;
    justify-content: center;
    opacity: 1;
    align-items: center;
    color: var(--eolimn-white, #fff);
    font-size: 12px !important;
    transition: all 500ms ease;
    background-color: var(--eolimn-base, #60AC45);
    border: 1px solid var(--eolimn-base, #60AC45);
}

    .project-one__carousel .owl-nav button span:hover {
        border: 1px solid rgba(var(--eolimn-border-color-rgb, 222, 222, 222), 0.2);
        background-color: transparent;
        color: var(--eolimn-white, #fff);
    }

.project-page {
    padding: 120px 0px;
}

@media (max-width: 991px) {
    .project-page {
        padding: 100px 0px;
    }
}

@media (max-width: 767px) {
    .project-page {
        padding: 80px 0px;
    }
}

/****project Two****/
.project-two {
    position: relative;
    padding: 120px 0px 0;
}

@media (max-width: 991px) {
    .project-two {
        padding: 100px 0px 0;
    }
}

@media (max-width: 767px) {
    .project-two {
        padding: 40px 0px 0;
    }
}

.project-two__bg {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    background-color: var(--eolimn-text-dark, #202220);
    z-index: -1;
}

.project-two__box {
    border: 1px solid rgba(var(--eolimn-border-color-rgb, 222, 222, 222), 0.2);
    padding: 28px 30px 30px;
}

    .project-two__box .sec-title {
        padding-bottom: 20px;
    }

    .project-two__box .sec-title__title {
        color: var(--eolimn-white, #fff);
    }

.project-two__box__text {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 162%;
    color: var(--eolimn-text, #74787C);
    margin-bottom: 20px;
}

.project-two .project-two__thumb img {
    object-fit: cover;
    width: 100%;
}

.project-two__inner {
    margin-left: -30px;
    margin-right: -30px;
}

@media (max-width: 1199px) {
    .project-two__inner {
        margin-left: 0px;
        margin-right: 0px;
    }
}

.project-two__carousel {
    margin-top: 30px;
}

/****project Three****/
.project-three {
    position: relative;
    padding: 490px 0px 260px;
}

@media (max-width: 991px) {
    .project-three {
        padding: 450px 0px 200px;
    }
}

@media (max-width: 767px) {
    .project-three {
        padding: 430px 0px 180px;
    }
}

.project-three__bg {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    z-index: -1;
}

.project-three .sec-title .sec-title__title,
.project-three .sec-title .sec-title__tagline,
.project-three .sec-title .sec-title__icon {
    color: var(--eolimn-white, #fff);
}

.project-three__inner {
    max-width: 1800px;
    margin-left: auto;
    margin-right: -250px;
}

    .project-three__inner .project-card__hover {
        background: linear-gradient(180deg, rgba(0, 0, 0, 0) 38%, rgba(0, 0, 0, 0.8) 87.25%);
    }

@media (max-width: 991px) {
    .project-three__inner {
        margin-right: 0;
    }
}

.project-three__carousel {
    position: relative;
}

    .project-three__carousel .owl-nav {
        position: absolute;
        top: -150px;
        right: 33%;
    }

@media (max-width: 991px) {
    .project-three__carousel .owl-nav {
        right: 3%;
    }
}

@media (max-width: 767px) {
    .project-three__carousel .owl-nav {
        top: 0;
        right: auto;
        position: relative;
    }
}

.project-three__carousel .owl-nav button span {
    width: 38px !important;
    height: 38px !important;
    background: var(--eolimn-white, #fff) !important;
    color: var(--eolimn-base, #60AC45) !important;
}

    .project-three__carousel .owl-nav button span:hover {
        background: transparent !important;
        color: var(--eolimn-white, #fff) !important;
    }

/****project Details****/
.project-details {
    padding: 120px 0px;
}

@media (max-width: 991px) {
    .project-details {
        padding: 100px 0px;
    }
}

@media (max-width: 767px) {
    .project-details {
        padding: 80px 0px;
    }
}

.project-details__content {
    margin-bottom: 22px;
}

.project-details__image {
    margin-bottom: 20px;
}

    .project-details__image img {
        object-fit: cover;
        width: 100%;
    }

.project-details__title {
    font-style: normal;
    font-weight: 600;
    font-size: 30px;
    line-height: 39px;
    margin-bottom: 0;
    padding-bottom: 0;
    color: var(--eolimn-text-dark, #202220);
    margin-bottom: 13px;
    text-transform: capitalize;
}

.project-details__text {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 175%;
    color: var(--eolimn-text, #74787C);
    margin-bottom: 0;
    padding-bottom: 0;
}

    .project-details__text + .project-details__text {
        margin-top: 15px;
    }

.project-details__list {
    margin-top: 20px;
    margin-bottom: 33px;
    margin-left: 0;
}

.project-details__list__item {
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 175%;
    margin-bottom: 0;
    padding-bottom: 0;
    color: var(--eolimn-text-dark, #202220);
    text-transform: capitalize;
}

    .project-details__list__item i {
        margin-right: 10px;
        color: var(--eolimn-base, #60AC45);
    }

    .project-details__list__item + .project-details__list__item {
        margin-top: 7px;
    }

.project-details__feature {
    margin-bottom: 20px;
}

.project-details__feature__image {
    position: relative;
}

    .project-details__feature__image img {
        width: 100%;
        object-fit: cover;
    }

.project-details__video {
    position: absolute;
    top: 40%;
    left: 40%;
    z-index: 1;
    width: 62px;
    height: 62px;
    background: var(--eolimn-white, #fff);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--eolimn-base, #60AC45);
}

    .project-details__video:hover {
        color: var(--eolimn-white, #fff);
        background: var(--eolimn-text-dark, #202220);
    }

/****project Sidebar****/
.project-sidebar__item + .project-sidebar__item {
    margin-top: 40px;
}

.project-sidebar__title {
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    line-height: 100%;
    margin-bottom: 0;
    padding-bottom: 0;
    color: var(--eolimn-white, #fff);
    padding: 22px 30px 23px;
    background-color: var(--eolimn-base, #60AC45);
    text-transform: capitalize;
}

.project-sidebar__info {
    background: var(--eolimn-gray, #F5F5F5);
}

.project-sidebar__info__list {
    padding: 25px 30px;
    margin: 0;
}

    .project-sidebar__info__list li:not(:last-child) {
        margin-bottom: 25px;
        padding-bottom: 24px;
        border-bottom: 1px solid var(--eolimn-border-color, #DEDEDE);
    }

.project-sidebar__info__title {
    display: block;
    color: var(--eolimn-text-dark, #202220);
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 21px;
    text-transform: capitalize;
    margin-bottom: 10px;
}

.project-sidebar__info__text {
    display: block;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 21px;
    color: var(--eolimn-text, #74787C);
    text-transform: capitalize;
}

.project-sidebar__card {
    position: relative;
    padding: 21px 23px 30px 30px;
    background-repeat: no-repeat;
    background-position: top;
    background-size: cover;
}

.project-sidebar__card__inner {
    position: relative;
    z-index: 1;
}

.project-sidebar__card__content {
    margin-bottom: 87px;
}

.project-sidebar__card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(var(--eolimn-text-dark-rgb, 32, 34, 32), 0.9);
}

.project-sidebar__card__price {
    font-size: 50px;
    color: var(--eolimn-base, #60AC45);
    line-height: 1;
    text-transform: capitalize;
    margin-bottom: 21px;
}

.project-sidebar__card__title {
    font-size: 20px;
    color: var(--eolimn-white, #fff);
    font-weight: 700;
    line-height: 80%;
    text-transform: capitalize;
    margin-bottom: 17px;
}

.project-sidebar__card__text {
    color: var(--eolimn-white, #fff);
    line-height: 1;
    text-transform: capitalize;
    margin-bottom: 0;
}

.project-sidebar__card__btn {
    display: inline-flex;
    font-style: normal;
    font-weight: 700;
    font-size: 15px;
    line-height: 20px;
    margin-bottom: 0;
    text-transform: uppercase;
    align-items: center;
}

    .project-sidebar__card__btn:hover {
        background: transparent;
    }

.project-sidebar__card .eolimn-btn__icon {
    position: relative;
    display: inline-flex;
    margin-left: 24px;
    font-size: 16px;
}

    .project-sidebar__card .eolimn-btn__icon i {
        font-size: 12px;
    }

    .project-sidebar__card .eolimn-btn__icon::before {
        content: "";
        width: 1px;
        height: 100%;
        position: absolute;
        top: 50%;
        left: -12px;
        transform: translateY(-50%);
        background-color: rgba(var(--eolimn-white-rgb, 255, 255, 255), 0.2);
        transition: all 400ms ease;
    }

.main-header__logo img {
    width: 120px;
}

.sticky {
    position: fixed;
    top: 0px;
    right: 0;
    left: 0;
    background-color: #fff;
    -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, .07);
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, .07);
    -webkit-animation: stickyAni .4s ease-in-out;
    animation: stickyAni .4s ease-in-out;
    z-index: 9;
}

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

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

.service-one__thumb img {
    display: block;
    width: 100%;
    height: 221px;
    object-fit: cover;
}

.quick_contact a {
    position: fixed;
    width: 50px;
    height: 50px;
    right: 15px;
    line-height: 50px;
    color: #fff;
    border-radius: 50px;
    text-align: center;
    font-size: 26px;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
    z-index: 100;
    transition: transform 0.5s ease;
}

.qwhtsapp {
    bottom: 186px;
    background-color: #25d366;
}

.qcall {
    bottom: 255px;
    background-color: #2196f3;
}

.quick_contact_icon {
    /* margin-top: 0px; */
}

.quick_contact a:hover {
    transform: scale(1.1);
}

.pl100 {
    padding-left: 100px;
}

.main-footer__top__content a {
    color: #e5e5e5;
}

.main-footer__copyright a {
    color: #feb21f;
}

.Twitter {
    background: #FFF !important;
    color: #000 !important;
}

.Facebook {
    background: #187DFF !important;
    color: #fff !important;
}

.Instagram {
    background: linear-gradient(135deg, #b618c1 0%, #f3593d 100%) !important;
    color: #fff !important;
}

.Youtube {
    background: #F70102 !important;
    color: #fff !important;
}

.mob-career {
    padding: 30px 30px;
    background: #F5F5F5;
}

.mobfile {
    line-height: 43px;
}


.service-sidebar__nav li a.active {
    background: var(--eolimn-base, #60AC45);
    color: #fff !important
}

.main-footer__top__content p {
    color: #e5e5e5;
}

.modal-body {
    background: #f5f5f5;
    border-radius: var(--bs-modal-inner-border-radius);
    padding: 25px;
}

    .modal-body .form-one__group {
        grid-gap: 12px;
    }

.mob_slider1 {
    height: 1000px;
}

.webimg_none {
    display: none;
}

.form-one__control select {
    height: 50px;
    background-color: var(--eolimn-white, #fff);
    color: var(--eolimn-text, #74787C);
    color: var(--eolimn-text, #74787C);
    font-size: 16px;
    font-weight: 500;
    outline: none;
    padding-left: 20px;
    padding-right: 30px;
    border-radius: 4px;
    width: 100%;
    border: navajowhite;
}

.btn-close {
    position: absolute;
    right: 20px;
}

@media(max-width:1300px) {
    .service-one__content__title {
        font-size: 20px;
    }

    .service-one__content {
        padding: 0px 20px 10px;
    }
}

@media(max-width:1199px) {
    .main-header__right__btn {
        display: none;
    }

    .service-one__content {
        padding: 0px 10px 10px;
    }

    .work-process-one {
        padding: 70px 0px;
    }

    .why-choose-two__item {
        padding: 17px;
        height: 195px;
    }

    .service-one__content__title {
        font-size: 18px;
    }

    .sec-title__title {
        font-size: 27px;
    }

    .project-two__box {
        padding: 15px 13px 15px;
    }
}

@media(max-width:991px) {
    .service-one__content__title {
        font-size: 22px;
    }

    .mobnone {
        display: none;
    }

    .why-choose-two__thumb img {
        width: 100%;
    }

    .contact-list__item {
        padding: 25px 10px;
    }
}

@media(max-width:767px) {
    .pl100 {
        padding-left: 10px;
    }

    .project-two__box {
        padding: 20px 15px 15px;
    }

    .main-footer__middle {
        padding: 30px 0px;
    }

    .why-choose-two__item {
        height: auto;
    }

    .why-choose-two__thumb img {
        object-fit: cover;
        width: 100%;
    }

    .main-slider-two__item {
        padding-top: 90px;
        padding-bottom: 76px;
        padding-left: 0px;
        padding-right: 0px;
    }

    .webimg_none {
        display: block !important;
    }

    .mobimg_none {
        display: none;
    }
}

@media(max-width:575px) {
    .main-slider-two__sub-title {
        font-size: 15px;
    }

    .eolimn-btn {
        padding: 11px 5px;
    }

    .eolimn-owl__carousel--basic-nav.owl-carousel .owl-nav {
        margin-top: 20px;
    }

    .main-footer__copyright {
        line-height: 146%;
    }
}

@media (max-width:555px) {

    .mobbnone {
        display: none !important;
    }

    .webbnone {
        display: block !important;
    }
}

@media (max-width:375px) {
    .contact-list__icon {
        max-width: 70px;
        width: 100%;
        height: 70px;
        padding: 16px;
    }

    .contact-list a {
        word-break: break-all;
    }
}

.webbnone {
    display: none;
}
