/* ==================
CSS Indexing
=====================
1. Reset-CSS
2. Button-CSS
3. Helper-Class-CSS
4. Section-Title-CSS
5. Icon-List-CSS
6. Preloader-CSS
7. Mainmenu-CSS
8. Header-CSS
9. Features-CSS
10. Counter-CSS
11. Overview-CSS
12. Video-CSS
13. Call-to-Action-CSS
14. Testimonial-CSS
15. Product-CSS
16. FAQ-CSS
17. Footer-CSS
===================*/

:root {
    --primary-color: #24536f;
    --green-color: #048149;
    --body-color: #696969;
    --heading-color: #131313;
    --navbar-height: 100px;
}

.ls-icons-list ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    font-size: 50px;
}

.ls-icons-list ul li {
    padding: 15px;
}

/*=== 1. Reset-CSS ===*/
body {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-size: 17px;
    color: var(--body-color);
}

P:last-child {
    margin-bottom: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
    color: var(--green-color);
    margin-bottom: 16px;
}

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

a {
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}

img {
    max-width: 100%;
}

.row > div {
    position: relative;
    z-index: 1;
}

.container {
    max-width: 1312px;
}

/*=== 2. Button-CSS ===*/
.primary-button {
    /* background: linear-gradient(90deg, #F2C9AA 0%, #F8E7AD 33.29%, #C4E7AF 69.48%, #9BDDF5 100%); */
    background-color: #24536f;
    color: #ffffff;
    display: inline-block;
    border-radius: 100px;
    box-shadow: 0px 0px 0px rgba(255, 112, 49, 0);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.primary-button:hover {
    color: #131313;
}

.primary-button .part {
    display: flex;
    align-items: center;
    padding: 15px 32px;
    transition: 0.5s;
    transform: translateY(0%);
    width: 100%;
    justify-content: center;
}

.primary-button .back {
    position: absolute;
    top: 100%;
    left: 0%;
    background-color: #ffffff;
    color: #131313;
}

.primary-button:hover .part {
    transform: translateY(-100%);
}

.primary-button .icon {
    font-size: 80%;
    margin-left: 10px;
}

/*=== 3. Helper-Class-CSS ===*/
.page-wrapper {
    position: relative;
    z-index: 1;
    overflow: hidden;
    min-height: 100%;
}

.section-padding {
    padding-top: 100px;
    padding-bottom: 100px;
}

.section-padding-top {
    padding-top: 132px;
}

.section-padding-bottom {
    padding-bottom: 132px;
}
.half-section {
    padding-top: 80px;
    padding-bottom: 80px;
}
.mb-n40 {
    margin-bottom: -40px;
}

.zindex-2 {
    z-index: 2 !important;
}

/*=== 4. Section-Title-CSS ===*/
.section-title {
    margin-bottom: 56px;
}

.section-title .title {
    font-size: 48px;
    margin-bottom: 24px;
}

.section-title .primary-button {
    margin-top: 48px;
}

/*=== 6. Preloader-CSS ===*/
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #ffffff;
    pointer-events: none;
    z-index: 999;
}

.preloader img{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.preloader .load {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: #fff;
    opacity: 0.1;
}

.preloader .count {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    font-size: 18vw;
    color: var(--primary-color);
    font-weight: 700;
    text-align: center;
    display: inline-block;
}

/*=== 8. Mainmenu-CSS ===*/
.mainmenu-area {
    width: 100%;
    z-index: 99;
    right: 0;
    left: 0;
    top: 0;
    position: absolute;
    padding: 0 20px;
}

.mainmenu-area .container {
    min-height: var(--navbar-height);
    display: flex;
    align-items: center;
}

.mainmenu-area.sticky {
    position: fixed;
    background-color: #ffffff;
}

.mainmenu-area .nav-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
}

.mainmenu-area .nav-row .nav-logo {
    -webkit-box-flex: 2;
    -ms-flex-positive: 2;
    flex-grow: 2;
    max-width: 290px;
}

.mainmenu-area .nav-row .nav-logo .logo {
    display: inline-block;
}

.transparent-light .mainmenu-area:not(.sticky) .nav-row .nav-logo .dark-logo {
    display: none;
}

body:not(.transparent-light) .mainmenu-area .nav-row .nav-logo .light-logo,
.transparent-light .mainmenu-area.sticky .nav-row .nav-logo .light-logo {
    display: none;
}

.transparent-dark .mainmenu-area .nav-row .nav-logo .light-logo {
    display: none;
}

.mainmenu-area .nav-actions {
    order: 1;
    display: flex;
    align-items: center;
}

.mainmenu-area .nav-actions .primary-button {
    margin-left: 24px;
    border-radius: 100px;
    background: none !important;
    box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.07);
}

.mainmenu-area .nav-actions .primary-button:hover {
    box-shadow: 0px 4px 4px rgba(255, 107, 49, 0.2);
}

.mainmenu-area .nav-actions .primary-button .front {
    background-color: #ffffff;
    color: var(--heading-color);
}

.transparent-light
    .mainmenu-area:not(.sticky)
    .nav-actions
    .primary-button
    .front {
    background: rgba(255, 255, 255, 0.3);
    box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.07);
}

.mainmenu-area .nav-actions .primary-button .back {
    background-color: var(--primary-color);
    color: #ffffff;
}

.mainmenu-area .nav-actions .primary-button.cirlce .part {
    padding: 0;
    width: 50px;
    height: 50px;
    font-size: 20px;
}

.ls-bar {
    font-size: 80%;
}

.mainmenu-area .nav-actions .primary-button.menu-toggle {
    display: none;
}

.mainmenu-area .nav-row .menu-items {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-grow: 8;
}

.mainmenu-area .nav-row .menu-items ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mainmenu-area .nav-row .menu-items ul li {
    position: relative;
}

.mainmenu-area .nav-row .menu-items ul li a {
    color: #000;
    display: inline-block;
    text-transform: uppercase;
    font-weight: 500;
}

.mainmenu-area .nav-row .menu-items ul li > a.active,
.mainmenu-area .nav-row .menu-items ul li:hover > a {
    color: var(--green-color);
    text-shadow: 0 0 1px var(--green-color);
}

.mainmenu-area .nav-row .menu-items > ul {
    display: flex;
    justify-content: end;
}

.mainmenu-area .nav-row .menu-items > ul > li {
    padding: 0 20px;
    display: flex;
    align-items: center;
}

.mainmenu-area .nav-row .menu-items > ul > li > a {
    line-height: var(--navbar-height);
    opacity: 1;
}

.mainmenu-area .nav-row .menu-items > ul > li:hover > a,
.mainmenu-area .nav-row .menu-items > ul > li > a.active {
    opacity: 1;
}

.mainmenu-area .nav-row .menu-items > ul > li > a:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 3px;
    background-color: var(--green-color);
    border-radius: 10px 10px 0 0;
    z-index: -1;
    opacity: 0;
    transition: 0.5s;
}

.mainmenu-area .nav-row .menu-items ul li > a.active:after {
    opacity: 1;
}

.mainmenu-area .nav-row .menu-items ul li > .plus {
    width: 12px;
    height: 24px;
    position: relative;
    cursor: pointer;
    margin-top: 3px;
    margin-left: 8px;
}

.mainmenu-area .nav-row .menu-items ul li li > .plus {
    float: right;
}

.mainmenu-area .nav-row .menu-items ul li > .plus:before,
.mainmenu-area .nav-row .menu-items ul li > .plus:after {
    content: "";
    width: 12px;
    height: 2px;
    display: block;
    background-color: var(--heading-color);
    position: absolute;
    left: calc(50% - 6px);
    top: calc(50% - 2px);
    transition: 0.5s;
}

.mainmenu-area .nav-row .menu-items ul li > a.active ~ .plus:before,
.mainmenu-area .nav-row .menu-items ul li > a.active ~ .plus:after,
.mainmenu-area .nav-row .menu-items ul li:hover > .plus:before,
.mainmenu-area .nav-row .menu-items ul li:hover > .plus:after {
    background-color: var(--heading-color);
}

.mainmenu-area .nav-row .menu-items ul li > .plus:before {
    transform: rotate(90deg);
}

.mainmenu-area .nav-row .menu-items ul li.menu-open > .plus:before {
    transform: rotate(0deg);
}

/*=== 9. Sub-Menu-CSS ===*/
.mainmenu-area .nav-row .menu-items li ul {
    position: absolute;
    left: 0;
    top: 100%;
    background-color: #ffffff;
    border-radius: 4px;
    padding: 16px 0;
    transition: 0.5s;
    transform: scaleY(0);
    transform-origin: top left;
    z-index: 2;
    box-shadow: 0 8px 24px 0 rgba(0, 0, 0, 0.1);
    opacity: 0;
}

.mainmenu-area .nav-row .menu-items li ul ul {
    left: 100%;
    top: 0;
}

.mainmenu-area .nav-row .menu-items li.menu-open > ul {
    transform: scaleY(1);
    opacity: 1;
}

.mainmenu-area .nav-row .menu-items > ul ul.over-items {
    display: grid;
    grid-template-columns: auto auto;
}

.mainmenu-area .nav-row .menu-items > ul ul li {
    padding: 3px 24px;
    min-width: 250px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.mainmenu-area .nav-row .menu-items > ul ul li a {
    color: #131313;
    font-size: 16px;
}

.mainmenu-area .nav-row .menu-items > ul ul li:hover > a {
    color: #131313;
    text-shadow: 0 0 1px #131313;
}

.transparent-light .mainmenu-area:not(.sticky) {
    --heading-color: #24536f;
    border-bottom: 1px solid rgba(36, 83, 111, 0.1);
    background-color: #fff;
}

/*=== 8. Header-Area-CSS ===*/
.header-area {
    background-color: #001e30;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    padding-top: 100px;
    margin-bottom: 250px;
    position: relative;
    z-index: 1;
}

.header-area .header-title {
    font-weight: 600;
    font-size: 80px;
    /* text-transform: uppercase; */
    background: linear-gradient(
        90deg,
        #ffffff 0%,
        #cbcbcb 33.29%,
        #7a9db1 69.48%,
        #ffffff 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    margin-bottom: 20px;
    line-height: 1.4;
}

.header-area .header-desc {
    font-size: 18px;
    margin-bottom: 30px;
}

.header-area .header-image {
    margin: 80px 0 -255px 0;
}

.header-area .overlay-text {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    font-weight: 700;
    font-size: 176px;
    line-height: 120%;
    letter-spacing: 0.05em;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.1) 0%,
        rgba(255, 255, 255, 0) 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.header-area .element {
    position: absolute;
    z-index: -1;
    font-size: 42px;
    color: #ffffff;
    opacity: 0.2;
}

.header-area .element-1 {
    left: 7%;
    top: 31%;
    font-size: 52px;
}

.header-area .element-2 {
    right: 4%;
    bottom: 34%;
}

/* Service-Area-CSS */
.service-box .icon {
    font-size: 44px;
    margin-bottom: 24px;
    color: var(--primary-color);
    line-height: 1em;
}

.service-box .title {
    font-size: 24px;
    margin-bottom: 12px;
    color: #018249;
}

/* About-Area-CSS */
.about-area {
    --heading-color: #ffffff;
    color: rgba(255, 255, 255, 0.7);
    background-color: #131313;
    position: relative;
    z-index: 1;
}

.about_page_sec.about-area {
    --heading-color: #000;
    color: rgba(0, 0, 0, 0.7);
    background-color: #fff;
    position: relative;
    z-index: 1;
}

.about-image-1 img {
    border-radius: 12px;
}

.about-image-1 {
    position: relative;
    z-index: 1;
    display: inline-block;
    margin: 20px 0 0 20px;
}

.testimonial-image:before,
.feature-image-area:before,
.about-image-1:before {
    content: "";
    position: absolute;
    left: -20px;
    top: -20px;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    background: linear-gradient(46.5deg,#274b5f 50%,#018249 50%);
    z-index: -1;
}

.about-image-2 {
    margin: 0 -186px 30px 0;
    border-radius: 16px;
    overflow: hidden;
}

.about-image-3 {
    border-radius: 16px;
    overflow: hidden;
    margin: 0;
}

.about-area .overlay-text {
    position: absolute;
    right: -50px;
    bottom: -50px;
    font-weight: 700;
    font-size: 176px;
    line-height: 1em;
    letter-spacing: 0.05em;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.1) 0%,
        rgba(255, 255, 255, 0) 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.about_page_sec.about-area .overlay-text{
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(255, 255, 255, 0) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.single-image {
    margin: 0;
    border-radius: 10px;
    overflow: hidden;
}

/* Video-Area-CSS */
.video-area {
    padding: 185px 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

.video-play-box {
    text-align: center;
    position: relative;
    z-index: 1;
}

.video-play-box .play-button {
    width: 72px;
    height: 72px;
    line-height: 72px;
    font-size: 24px;
    text-align: center;
    color: var(--primary-color);
    background-color: #ffffff;
    display: inline-block;
    border-radius: 120px;
    padding-left: 5px;
}

.video-play-box .play-button:hover {
    background-color: var(--primary-color);
    color: #ffffff;
}

.wave-effect {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: -1;
    width: 72px;
    height: 72px;
}

.wave-effect span {
    width: 100%;
    height: 100%;
    /* background-color: rgba(255, 255, 255, 0.2); */
    background-color: rgb(255 255 255 / 37%);
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    border-radius: 200px;
    -webkit-animation-name: wave;
    animation-name: wave;
    -webkit-animation-duration: 1.8s;
    animation-duration: 1.8s;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}

.wave-effect span:nth-child(1) {
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
}

.wave-effect span:nth-child(2) {
    -webkit-animation-delay: 0.6s;
    animation-delay: 0.6s;
}

.wave-effect span:nth-child(3) {
    -webkit-animation-delay: 1.2s;
    animation-delay: 1.2s;
}

.wave-effect span:nth-child(4) {
    -webkit-animation-delay: 1.8s;
    animation-delay: 1.8s;
}

@-webkit-keyframes wave {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1;
        border-width: 1px;
    }

    100% {
        -webkit-transform: scale(2.6);
        transform: scale(2.6);
        opacity: 0;
        border-width: 0px;
    }
}

@keyframes wave {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1;
        border-width: 1px;
    }

    100% {
        -webkit-transform: scale(2.6);
        transform: scale(2.6);
        opacity: 0;
        border-width: 0px;
    }
}

/* Feature-Area-CSS */
.feature-area {
    position: relative;
    z-index: 1;
    margin-top: 86px;
}

.feature-box .icon {
    width: 80px;
    height: 80px;
    line-height: 80px;
    text-align: center;
    background-color: var(--primary-color);
    color: #ffffff;
    border-radius: 100px;
    font-size: 32px;
    margin-bottom: 32px;
}

.feature-box .title {
    font-size: 24px;
    margin-bottom: 12px;
}

.testimonial-area .overlay-text,
.feature-area .overlay-text {
    position: absolute;
    left: -12%;
    top: -12%;
    font-weight: 700;
    font-size: 176px;
    line-height: 1em;
    letter-spacing: 0.05em;
    background: linear-gradient(
        180deg,
        #fff0ea 0%,
        rgba(255, 241, 236, 0.2) 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.feature-area > .container {
    position: relative;
}

.feature-image-area {
    position: relative;
    z-index: 1;
    text-align: center;
    margin-top: -86px;
}

.testimonial-image:before,
.feature-image-area:before {
    border-radius: 1000px 1000px 0 0;
    left: 0;
    height: calc(100% - 86px);
    top: auto;
    bottom: 0;
}

.feature-image-area .feature-image-1 {
    margin-bottom: 84px;
}

.feature-image-area .feature-image-2 {
    margin: 0;
}

/* Product-Area-CSS */
.product-area {
    --heading-color: #ffffff;
    background-color: #f0f1f1;
    color: rgba(0, 0, 0, 0.7);
}

.product-box {
    background-color: #f0f1f1;
    padding: 32px;
    border-radius: 4px;
    text-align: center;
}

.product-box .thumb {
    margin-bottom: 24px;
    border-radius: 4px;
    overflow: hidden;
}

.product-box .thumb img {
    transform: scale(1) rotate(0deg);
    transition: 0.5s ease;
    width: 100%;
}

.product-box:hover .thumb img {
    transform: scale(1.2) rotate(5deg);
}

.product-box .title {
    font-size: 24px;
    margin-bottom: 12px;
}

.product-box .title a {
    color: #ffffff;
}

.product-box .title a:hover {
    color: var(--primary-color);
}

.product-box .product-price {
    font-weight: 600;
    font-size: 18px;
    color: #ffffff;
    margin-top: 12px;
}

.product-box .product-price del {
    font-weight: 400;
    font-size: 16px;
    opacity: 0.6;
    margin-left: 10px;
}

.rating-star {
    display: inline-block;
    position: relative;
    color: #fec202;
}

.rating-star .star {
    font-family: "landshop" !important;
}

.rating-star .star:before {
    content: "\e960 \e960 \e960 \e960 \e960";
}

.rating-star .back {
    opacity: 0.4;
}

.rating-star .front {
    position: absolute;
    left: 0;
    top: 0px;
    white-space: nowrap;
    overflow: hidden;
    width: 90%;
    z-index: 2;
}

/* Testimonial-Area-CSS */
.testimonial-area {
    position: relative;
    z-index: 1;
}

.overlay-text {
    text-transform: uppercase;
}

.testimonial-area .overlay-text {
    right: 0;
    left: 0;
    margin: auto;
    top: 10%;
    text-align: center;
    background: linear-gradient(
        180deg,
        #fff0ea 0%,
        rgba(255, 241, 236, 0.2) 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.testimonial-slider {
    margin: -55px;
    z-index: 2;
}

.navigation-control {
    display: flex;
    margin-top: 32px;
    margin-left: -8px;
    margin-right: -8px;
}

.navigation-control .control {
    width: 56px;
    height: 56px;
    border: none;
    background-color: var(--heading-color);
    color: #ffffff;
    margin: 0 8px;
    border-radius: 100px;
    transition: 0.5s ease;
}

.navigation-control .control:hover {
    background-color: var(--primary-color);
}

.testimonial-box {
    padding: 34px;
    background-color: #ffffff;
    border-left: 6px solid var(--primary-color);
    border-radius: 10px;
    box-shadow: 0px 25px 55px rgba(0, 0, 0, 0.05);
    margin: 55px;
}

.testimonial-box .quote {
    color: var(--primary-color);
    font-size: 34px;
    margin-bottom: 24px;
}

.testimonial-box .desc {
    margin-bottom: 20px;
}

.testimonial-box .testimonial-footer {
    display: flex;
    justify-content: space-between;
}

.testimonial-box .name {
    color: var(--primary-color);
    margin: 0;
    font-weight: 600;
    font-size: 20px;
}

.testimonial-box .rating-star {
    color: var(--primary-color);
    font-size: 15px;
}

.testimonial-image {
    position: relative;
    z-index: 1;
    margin-left: -130px;
    text-align: center;
}

.testimonial-image:before {
    opacity: 0.5;
}

/*=== 17. Footer-CSS ===*/
.footer-area {
    background-color: #001e30;
    color: rgba(255, 255, 255, 0.7);
    --body-color: rgba(255, 255, 255, 0.7);
    --heading-color: rgba(255, 255, 255, 1);
}

.footer-area .section-padding {
    padding: 80px 0;
    justify-content: space-between;
}

.footer-widget .footer-logo {
    display: inline-block;
    margin-bottom: 22px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 24px 0;
    text-align: center;
}

.social-menu {
    list-style: none;
    margin: -10px;
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.social-menu li a {
    width: 48px;
    height: 48px;
    line-height: 48px;
    display: inline-block;
    text-align: center;
    background-color: #ffffff;
    color: var(--body-color);
    border-radius: 100px;
    margin: 10px;
    -webkit-box-shadow: 0px 12px 25px rgba(0, 0, 0, 0.05);
    box-shadow: 0px 12px 25px rgba(0, 0, 0, 0.05);
}

.social-menu li:hover a {
    background-color: var(--primary-color);
    color: #ffffff;
}

.footer-area .social-menu li a {
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.footer-area .social-menu li a:hover {
    background-color: var(--primary-color);
}

.footer-widget .desc {
    margin-bottom: 24px;
}

.footer-widget .widget-title {
    margin-bottom: 24px;
}

.block-list {
    list-style: none;
    margin: -8px 0;
    padding: 0;
}

.block-list li {
    /* display: block; */
    display: inline-block;
    width: 49%;
}

.block-list li a {
    color: var(--body-color);
    display: inline-block;
    margin: 8px 0;
}

.block-list li:hover a {
    color: var(--green-color);
}

.input-control {
    background-color: #ffffff;
    border: none;
    border-radius: 4px;
    display: inline-block;
    padding: 15px 24px;
    font-weight: 400;
    outline: none;
    line-height: 1.445em;
    -webkit-box-shadow: 0px 15px 30px rgba(0, 0, 0, 0.05);
    box-shadow: 0px 15px 30px rgba(0, 0, 0, 0.05);
}

.subscribe-form .input-control {
    width: calc(100% - 66px);
    padding-left: 44px;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.subscribe-form {
    position: relative;
    z-index: 1;
}

.subscribe-form .ls-envelope {
    position: absolute;
    left: 16px;
    top: 14px;
    z-index: 2;
}

.subscribe-form button[type="submit"] {
    width: 56px;
    height: 56px;
    font-size: 20px;
    text-align: center;
    line-height: 56px;
    border-radius: 4px;
    border: none;
    background-color: var(--primary-color);
    color: #ffffff;
    float: right;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    box-shadow: 0 0 0 rgba(255, 107, 49, 0.3);
}

.subscribe-form button[type="submit"]:hover {
    background-color: #ffffff;
    color: var(--primary-color);
    box-shadow: 0px 5px 15px rgba(255, 107, 49, 0.1);
}

.subscribe-form .mc-error {
    position: absolute;
    left: 0;
    top: 100%;
    padding-top: 10px;
}

.moving-1 {
    animation: moving1 20s linear 0s infinite;
}

@keyframes moving1 {
    0% {
        transform: translate(0px, 0px) rotate(0deg);
    }

    25% {
        transform: translate(150px, -150px) rotate(90deg);
    }

    50% {
        transform: translate(300px, 0) rotate(0deg);
    }

    75% {
        transform: translate(150px, 150px) rotate(90deg);
    }

    100% {
        transform: translate(0px, 0px) rotate(0deg);
    }
}

.moving-2 {
    animation: moving2 20s linear 0s infinite;
}

@keyframes moving2 {
    0% {
        transform: translate(0px, 0px) rotate(0deg);
    }

    25% {
        transform: translate(-150px, 150px) rotate(90deg);
    }

    50% {
        transform: translate(300px, 0) rotate(0deg);
    }

    75% {
        transform: translate(-150px, -150px) rotate(90deg);
    }

    100% {
        transform: translate(0px, 0px) rotate(0deg);
    }
}

/* Slider Css Start here */

.slider {
    position: relative;
    height: calc(100vh - 100px);
    margin-top: 100px;
    overflow: hidden;
}
.slider__slides {
    z-index: 1;
    position: relative;
    height: 100%;
}
.slider__control {
    z-index: 2;
    position: absolute;
    top: 50%;
    left: 5%;
    width: 60px;
    height: 60px;
    margin-left: -30px;
    margin-top: -30px;
    border-radius: 50%;
    background: #fff;
    transition: background-color 0.3s;
    cursor: pointer;
}
.slider__control--right {
    left: 95%;
}
.slider__control:hover {
    background-color: #008349;
}
.slider__control-line {
    position: absolute;
    left: 23px;
    top: 50%;
    width: 3px;
    height: 14px;
    transform-origin: 50% 0;
    transform: rotate(-45deg);
}
.slider__control-line:nth-child(2) {
    transform: translateY(1px) rotate(-135deg);
}
.slider__control--right .slider__control-line {
    left: 37px;
    transform-origin: 1px 0;
    transform: rotate(45deg);
}
.slider__control--right .slider__control-line:nth-child(2) {
    transform: translateY(1px) rotate(135deg);
}
.slider__control-line:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #24536f;
    transition: background-color 0.3s;
}
.slider__control:hover .slider__control-line:after {
    background-color: #fff;
}
.slider__control.a--rotation .slider__control-line:after {
    -webkit-animation: arrowLineRotation 0.49s;
    animation: arrowLineRotation 0.49s;
}
.slider__control.a--rotation .slider__control-line:nth-child(1):after {
    -webkit-animation: arrowLineRotationRev 0.49s;
    animation: arrowLineRotationRev 0.49s;
}

@-webkit-keyframes arrowLineRotation {
    to {
        transform: rotate(180deg);
    }
}

@keyframes arrowLineRotation {
    to {
        transform: rotate(180deg);
    }
}
@-webkit-keyframes arrowLineRotationRev {
    to {
        transform: rotate(-180deg);
    }
}
@keyframes arrowLineRotationRev {
    to {
        transform: rotate(-180deg);
    }
}
.slide {
    overflow: hidden;
    position: absolute;
    left: 50%;
    top: 50%;
    width: 150vmax;
    height: 150vmax;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    transition: -webkit-clip-path 0s 0.91s;
    transition: clip-path 0s 0.91s;
    transition: clip-path 0s 0.91s, -webkit-clip-path 0s 0.91s;
    -webkit-clip-path: circle(30px at 120vw 50%);
    clip-path: circle(30px at 120vw 50%);
}
.slide.s--prev {
    -webkit-clip-path: circle(30px at 30vw 50%);
    clip-path: circle(30px at 30vw 50%);
}
.slide.s--active {
    z-index: 1;
    transition: -webkit-clip-path 1.3s;
    transition: clip-path 1.3s;
    transition: clip-path 1.3s, -webkit-clip-path 1.3s;
    -webkit-clip-path: circle(120vmax at 120vw 50%);
    clip-path: circle(120vmax at 120vw 50%);
}
.slide.s--active.s--active-prev {
    -webkit-clip-path: circle(120vmax at 30vw 50%);
    clip-path: circle(120vmax at 30vw 50%);
}
.slide:nth-child(1) .slide__inner {
    background-image: url("../img/slider/s2.jpg");
}
.slide:nth-child(2) .slide__inner {
    background-image: url("../img/slider/s1.jpg");
}
.slide:nth-child(3) .slide__inner {
    background-image: url("../img/slider/s3.jpg");
}
/* .slide:nth-child(4) .slide__inner {
    background-image: url("https://s3-us-west-2.amazonaws.com/s.cdpn.io/142996/onepgscr-5.jpg");
}
.slide:nth-child(5) .slide__inner {
    background-image: url("https://s3-us-west-2.amazonaws.com/s.cdpn.io/142996/onepgscr-6.jpg");
} */
.slide__inner {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 100vw;
    height: 100vh;
    margin-left: -50vw;
    margin-top: -50vh;
    background-size: cover;
    background-position: center center;
}
.slide__inner:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    /* background: rgba(0, 0, 0, 0.3); */
}
.slide__content {
    position: absolute;
    left: 12%;
    top: 50%;
    margin-left: -30px;
    margin-top: 5px;
    max-width: 650px;
    color: #fff;
    transform: translateY(-50%);
}
.slide__content h3{
    font-size: 40px;
}
.slide__heading {
    margin-bottom: 20px;
    font-size: 60px;
    color: #fff;
}
.slide__text {
    font-size: 25px;
}
.slide__text a {
    color: inherit;
}
/* Slider Css End Now */




/*=== 4. Section-Title-CSS ===*/
.section-title {
    /* text-align: center; */
    margin-bottom: 40px;
}

.section-title .title {
    font-size: 42px;
    margin-bottom: 24px;
    font-weight: 600;
    color: #018249;
}

.section-title .primary-button {
    margin-top: 20px;
}

.section-title.white-title .title {
    color: #ffffff;
}

.section-title.white-title .desc {
    color: #ffffff;
}
/* -- Call-To-Actions -- */
.action-image {
    position: relative;
}

.action-image .main-image {
    position: absolute;
    left: 0;
    bottom: 0;
    top: 0;
    margin: auto;
    max-width: 90%;
}

.action-image .bg-image {
    max-width: 65%;
}

.actions-two .action-image .main-image {
    left: auto;
    right: 0;
}

.settings-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.settings-list li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 16px;
}

.settings-list li:last-child {
    margin-bottom: 0;
}

.settings-list li:before {
    content: "\e940";
    font-family: 'landshop';
    color: #24536f;
    margin-right: 12px;
}





/*************************************************
    Rajni Style
*************************************************/


.benefits_pointssec {
    padding: 50px 0 100px;
}

/* === Header-Area-CSS === */
.site-header {
    padding-top: 290px;
    padding-bottom: 165px;
    background-position: center;
}

.site-header .page-title {
    font-size: 48px;
}

/* === Contact-Page-CSS === */
.google-map {
    line-height: 0;
    position: relative;
    z-index: 1;
}

.google-map iframe {
    height: 760px;
    width: 100%;
    position: relative;
}

.field-group {
    display: block;
}

.field-group .input-field {
    min-height: 60px;
    padding: 14px 24px;
    font-size: 15px;
    border: none;
    background-color: #F6F6F6;
    border-radius: 4px;
    width: 100%;
}

.field-group textarea.input-field {
    min-height: 200px;
}

.field-group.icon-group {
    position: relative;
}

.field-group.icon-group .input-field {
    /* padding-left: 58px; */
}

.field-group.icon-group .icon {
    position: absolute;
    left: 24px;
    top: 15px;
}

.field-group select.input-field {
    border-right: 20px solid #f6f6f6;
}

.contact-info-box {
    padding: 32px;
    text-align: center;
    background-color: #f7f7f7;
    box-shadow: rgb(99 99 99 / 14%) 0px 2px 8px 0px;
    border-radius: 40px 0px;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.contact-info-box .icon {
    width: 64px;
    height: 64px;
    background-color: #ffffff;
    line-height: 64px;
    border-radius: 100px;
    display: inline-block;
    margin-bottom: 24px;
    -webkit-box-shadow: 0px 15px 35px rgba(0, 0, 0, 0.07);
    box-shadow: 0px 15px 35px rgba(0, 0, 0, 0.07);
}

.contact-info-box:hover {
    background-color: var(--primary-color);
}

.contact-info-box:hover>* {
    color: #ffffff;
}

.contact-info-box:hover .desc p a {
    color: #ffffff;
}

.contact-info-box .desc p a:hover{
    color: var(--green-color);
}

.contact-info-box.hover {
    background-color: var(--primary-color);
}

.contact-info-box.hover>* {
    color: #ffffff;
}

.contact-info-box>* {
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}


.sustainability_sec .content h4 {
    margin-bottom: 10px;
}

.sustainability_sec .eco_mini_img img {
    border-radius: 15px;
}
/*=== 5. Icon-List-CSS ===*/
.icon-list {
    list-style: none;
    margin: -8px;
    padding: 0;
    /* display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; */
    text-align: left;
}

.icon-list li {
    margin: 8px;
    /* display: -webkit-box;
    display: -ms-flexbox;
    display: flex; */
}

.icon-list li:before {
    content: "\e961";
    font-family: landshop;
    margin-right: 10px;
    color: var(--primary-color);
}

.certificate-area {
    background-color: #f9f9f9;
    position: relative;
    z-index: 1;
}

.certificate-area::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: calc(50% - 50px);
    height: 100%;
    z-index: -1;
    background: -webkit-gradient(linear, left top, left bottom, from(#d9d9d9), to(rgba(247, 237, 208, 0)));
    background: -o-linear-gradient(top, #d9d9d9 0%, rgba(247, 237, 208, 0) 100%);
    background: linear-gradient(180deg, #d9d9d9 0%, rgba(247, 237, 208, 0) 100%);
}

.certificate-area .element {
    position: absolute;
    z-index: -1;
}

.certificate-area .element-1 {
    right: 3%;
    bottom: 9%;
    max-width: 7vw;
}

.catalogue-area {
    padding: 80px 0;
}
.catalogue-play-box {
    padding: 160px 0;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    text-align: center;
    border-radius: 4px;
    position: relative;
    z-index: 1;
    border: 10px solid #f5f5f5;
    border-radius: 6px;
}
/*=== 12. About-Area-CSS ===*/
.about-area1 {
    padding-top: 80px;
}
.about-area1 .about-image {
    margin: 0;
}

.about-area1 .about-image img {
    width: 100%;
}

.about-area1 .border-box {
    display: flex;
    align-items: center;
    padding: 72px;
    border: 1px solid #E0DCD9;
}


/*=== 12. Video-Area-CSS ===*/
.video-area {
    background-color: var(--primary-color);
    padding: 90px 0;
}

.video-area .section-title .title {
    color: #ffffff;
}

.video-area .section-title .desc {
    color: #ffffff;
}

.video-area .primary-button .part {
    background-color: #fff;
    color: var(--heading-color);
}

.video-area .primary-button .back {
    background-color: var(--heading-color);
    color: #ffffff;
}

.video-area .element-1 {
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translate(-44%, -50%);
    -ms-transform: translate(-44%, -50%);
    transform: translate(-44%, -50%);
}
.video-play-box {
    padding: 0px 0;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    text-align: center;
    border-radius: 4px;
    position: relative;
    z-index: 1;
    border: 10px solid #ffffff;
    border-radius: 6px;
}

.video-play-box table {
    margin-bottom: 0;
}
.video-play-box table td {
    color: #dddddd;
}
.video-play-box table th{
    color: #fff !important;
}
.video-play-box table tbody tr:nth-of-type(even) {
    background-color: rgb(69 121 153);
}

/* === Header-Area === */
.slagomite-header-area {
    padding: 100px 0 90px;
    background-color: #f5f5f5;
}

.slagomite-header-text .top-title {
    font-size: 18px;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.slagomite-header-text .main-title {
    font-size: 60px;
    font-weight: 600;
    margin-bottom: 24px;
    line-height: 1.2;
}

.slagomite-header-text .desc {
    margin-bottom: 30px;
    font-size: 17px;
    position: relative;
    padding-left: 25px;
    opacity: 0.8;
}

.slagomite-header-text .desc:before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 2px;
    height: 90%;
    background-color: var(--primary-color);
}

.slagomite-header-slider {
    background: url('../img/slagomite/header-bg-circle.png') no-repeat scroll center center / contain;
    padding: 24px;
}

.slagomite-header-slider.swiper-fade .swiper-slide {
    opacity: 0 !important;
}

.slagomite-header-slider.swiper-fade .swiper-slide.swiper-slide-active {
    opacity: 1 !important;
}

.header-image {
    margin: 0;
}

#slagomite-header-slider-pagination {
    max-height: 520px;
    text-align: center;
}

#slagomite-header-slider-pagination .thumb {
    margin: 0;
    display: inline-block;
    line-height: 0;
    border-radius: 5px;
    overflow: hidden;
    border: 2px solid #ffffff;
}

#slagomite-header-slider-pagination .swiper-slide-thumb-active .thumb {
    border-color: var(--primary-color);
}

.performance-area .check-list {
    list-style: none;
    margin: 0px 0;
    padding: 0;
}

.performance-area .check-list li {
    margin: 10px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.performance-area .check-list li:before {
    content: "\e92a";
    font-family: 'landshop';
    margin-right: 12px;
    color: var(--primary-color);
}
.reduction_of_nox table {
    text-align: center;
}











.export_area{
    position: relative;
    max-width: 1600px;
    margin: auto;
}
.export_area span{
    position: absolute;
    font-weight: 600;
    color: #000;
    font-size: 12px;
    text-transform: uppercase;
    line-height: 1;
}
.export_area span:nth-child(1){
    top: 0%;
    left: 0%;
}
.export_area span:nth-child(2){
    top: 41%;
    left: 25%;
}
.export_area span:nth-child(3){
    top: 32.1%;
    left: 60%;
}
.export_area span:nth-child(4){
    top: 55%;
    left: 51.5%;
}
.export_area span:nth-child(5){
    top: 34%;
    left: 60.5%;
}
.export_area span:nth-child(6){
    top: 15%;
    left: 49%;
}
.export_area span:nth-child(7){
    top: 17.5%;
    left: 46.5%;
}
.export_area span:nth-child(8){
    top: 17.5%;
    left: 40.5%;
}
.export_area span:nth-child(9){
    top: 55%;
    left: 51.5%;
}
.export_area span:nth-child(10){
    top: 34%;
    left: 55%;
}
.export_area span:nth-child(11){
    top: 52%;
    left: 58.7%;
}
.export_area span:nth-child(12){
    top: 26%;
    left: 47%;
}
.export_area span:nth-child(13){
    top: 25.3%;
    left: 41%;
}
.export_area span:nth-child(14){
    top: 29.1%;
    left: 54%;
}



/* -- Feature-Area-CSS-- */
.feature-area {
    background-color: #f0f1f1;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.feature-area .element {
    position: absolute;
    z-index: -1;
}

.feature-area .element.element-1 {
    left: 6%;
}

.feature-area .element.element-2 {
    right: 4%;
    bottom: 8%;
}

.feature-box {
    background-color: #24536f;
    padding: 40px;
    border-radius: 6px;
    color: #fff;
}

.feature-box.purple {
    background-color: #018249;
    color: #ffffff;
}

.feature-box.orange {
    background-color: var(--primary-color);
    color: #ffffff;
}

.feature-box .image {
    margin: 0 0 30px 0;
}

.feature-box .title {
    margin-bottom: 16px;
    color: #fff;
}

.feature-box.purple .title,
.feature-box.orange .title {
    color: #ffffff;
}

.slice-slider .swiper-slide {
    border-radius: 6px;
    overflow: hidden;
    border: 4px solid #ffffff;
}

.slice-slider .swiper-slide img {
    width: 100%;
}



/*=== 17. Call-To-Action-CSS ===*/
.call-to-action{
    padding-top: 50px;
}
.call-to-action .action-image {
    background-color: #f0f1f1;
    width: 50vw;
    text-align: center;
    max-width: 945px;
    padding: 175px 50px;
    margin: 0;
}

.call-to-action .action-image img {
    filter: drop-shadow(2px 4px 16px rgba(0, 0, 0, 0.5));
    position: absolute;
    left: 50px;
    bottom: 50px;
    max-width: 500px;
}
.call-to-action .action-image img.mision_img{
    left: auto;
    right: 50px;
    bottom: 15px;
}

.call-to-action .action-image.float-end {
    border-radius: 0 500px 500px 0;
}

.call-to-action .action-image.float-start {
    border-radius: 500px 0 0 500px;
}

.dot-list li:not(:last-child) {
    margin-bottom: 16px;
}

.dot-list li::marker {
    font-size: 24px;
    color: #E74B2C;
}

.dot-list {
    margin: 0;
    padding: 0 0 0 24px;
}


/* Style the list */
ul.breadcrumb {
    padding: 10px 16px;
    list-style: none;
    /* background-color: #ec268f08; */
  }

  /* Display list items side by side */
  ul.breadcrumb li {
    display: inline;
    font-size: 18px;
    color: #b5b5b5;
  }

  /* Add a slash symbol (/) before/behind each list item */
  ul.breadcrumb li+li:before {
    padding: 8px;
    color: #05b968;
    content: "/\00a0";
  }

  /* Add a color to all links inside the list */
  ul.breadcrumb li a {
    color: #05b968;
    text-decoration: none;
  }

  /* Add a color on mouse-over */
  ul.breadcrumb li a:hover {
    color: #05b968;
    text-decoration: underline;
  }


.footer-widget .feature-box-1{
    display: flex;
}
.footer-widget .feature-box-1 .icon{
    margin-right: 15px;
}
.footer-widget .feature-box-1 .icon span{
    font-size: 24px;
}
.footer-widget .feature-box-1 .desc a{
    line-height: 30px;
}


.furnace_sec {
    padding-top: 170px;
}
@media only screen and (max-width: 767px) {
    .furnace_sec {
        padding-top: 120px;
    }
}

.furnace_efficiencies {
    padding-bottom: 80px;
}
.text-justi{
    text-align: justify;
}
.bg-gray{
    background-color: #efefef;
}
.them_color{
    color: var(--primary-color) !important;
}
