/*---=================================
   <!--DPolux Brand-->
==================================---*/

:root {
    --primary: #43B029;
    --secondary: #582C84;
    --support: #6B6C6E;
    --light: #F2F1FA;
    --dark: #181824;
    --default: #868681;
}

/* Text (color) */

.color-primary {
    color: var(--primary) !important;
}

.color-secondary {
    color: var(--secondary) !important;
}

.color-support {
    color: var(--support) !important;
}

.color-light {
    color: var(--light) !important;
}

.color-dark {
    color: var(--dark) !important;
}

.color-default {
    color: var(--default) !important;
}

/* Background (color) */

.bg-primary {
    background-color: var(--primary) !important;
}

.bg-secondary {
    background-color: var(--secondary) !important;
}

.bg-support {
    background-color: var(--support) !important;
}

.bg-light {
    background-color: var(--light) !important;
}

.bg-dark {
    background-color: var(--dark) !important;
}

.bg-default {
    background-color: var(--default) !important;
}

/* Border (color) */

.border-primary {
    border-color: var(--primary) !important;
}

.border-secondary {
    border-color: var(--secondary) !important;
}

.border-support {
    border-color: var(--support) !important;
}

.border-light {
    border-color: var(--light) !important;
}

.border-dark {
    border-color: var(--dark) !important;
}

.border-default {
    border-color: var(--default) !important;
}

/*---=================================
   <!--Global-->
==================================---*/

p {
    font-size: 18px;
}

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

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

a:visited,
a:hover {
    color: #1c9100;
}

a {
    color: var(--primary);
    text-decoration: none;
}

.bg-shade {
    position: relative;
    z-index: 1;
}

.bg-shade::before {
    content: "";
    background-color: #121220;
    opacity: .75;
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    margin: auto;
    z-index: -1;
}

.leaf {
    position: absolute;
    animation: dance1 6s linear infinite;
    z-index: 10;
}

@keyframes dance1 {
    0% {
        -webkit-transform: translateY(-50px);
        transform: translateY(-50px);
    }

    50% {
        -webkit-transform: translateY(-15px);
        transform: translateY(-15px);
    }

    100% {
        -webkit-transform: translateY(-50px);
        transform: translateY(-50px);
    }
}

/*---=================================
   <!--Top Header Area-->
==================================---*/
.top-header-area {
    padding: 11px 0;
    border-bottom: 1px solid var(--primary)36;
    z-index: 9;
    position: relative;
}

.top-header-info ul li {
    display: inline-block;
    color: #fff;
    margin-right: 29px;
}

.top-header-info ul li i {
    color: var(--primary);
    display: inline-block;
    font-size: 17px;
    padding-right: 5px;
}

.top-header-right {
    text-align: right;
}

.top-header-contact {
    display: inline-block;
    margin-right: 51px;
}

.top-header-contact span {
    display: inline-block;
    color: #fff;
}

.top-header-contact span i {
    display: inline-block;
    color: var(--primary);
    padding-right: 8px;
}

.top-header-social-icon {
    display: inline-block;
}

.top-header-social-icon ul li {
    display: inline-block;
}

.top-header-social-icon ul li i {
    color: #fff;
    font-size: 15px;
    padding-left: 14px;
    transition: 0.5s;
}

.top-header-social-icon ul li i:hover {
    color: var(--primary);
}

/*---=================================
   <!--Header Area-->
==================================---*/

.header-area {
    z-index: 9;
    position: relative;
    margin-bottom: -143px;
}

.header-menu {
    text-align: right;
}

.header-menu ul li {
    display: inline-block;
    margin-right: 57px;
}

.header-menu ul li:last-child {
    margin-right: 50px;
}

.header-menu ul {
    display: inline-block;
}

.header-menu ul li a {
    display: inline-block;
    color: #fff;
    padding: 33px 0;
    font-size: 17px;
    font-weight: 500;
    transition: 0.5s;
}

.header-menu ul li a:hover,
.header-menu ul li a.active {
    color: var(--primary);
}

/* .header-menu ul li a.active {
    pointer-events: none;
} */

.header-menu ul li i {
    display: inline-block;
    font-size: 12px;
    position: relative;
    left: 6px;
    top: 0px;
}

.header-secrch-icon {
    display: inline-block;
}

.header-secrch-icon i {
    display: inline-block;
    color: var(--primary);
    font-size: 16px;
    cursor: pointer;
}

.header-button {
    display: inline-block;
}

.header-button a {
    display: inline-block;
    background: var(--secondary);
    padding: 11px 26px;
    color: #fff;
    font-weight: 500;
    border-radius: 30px;
    position: relative;
    z-index: 1;
    transition: 0.5s;
}

.header-button a:hover {
    color: var(--secondary) !important;
}

.header-button a:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: #fff;
    z-index: -1;
    border-radius: 30px;
    transform: scale(0);
    transition: 0.5s;
}

.header-button a:hover:before {
    transform: scale(1);
}

.header-button i {
    transition: 0.5s;
}

.header-button a:hover i {
    color: var(--secondary) !important;
}

.sticky {
    left: 0;
    margin: auto;
    position: fixed !important;
    top: 0;
    width: 100%;
    -webkit-box-shadow: 0 2px 5px -2px rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 5px -2px rgba(0, 0, 0, 0.1);
    background-color: var(--dark) !important;
    transition: 0.5s;
    z-index: 999 !important;
    -webkit-animation: 300ms running fadeInDown;
    animation: 500ms running fadeInUp;
    animation-name: slideInDown;
}

/*sub-menu*/
.header-menu ul li.menu-item-has-children {
    position: relative;
}

.header-menu ul li .sub-menu {
    position: absolute;
    width: 320px;
    display: block;
    text-align: left;
    background: #fff;
    opacity: 0;
    visibility: hidden;
    transition: 0.5s;
    top: 150%;
    z-index: 2;
    box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.3);
    border-top: 5px solid var(--primary);
    border-radius: 0 0 5px 5px;
}

.header-menu ul li:hover .sub-menu {
    opacity: 1;
    top: 100%;
    visibility: visible;
}

.header-menu ul li .sub-menu li a {
    display: block;
    padding: 15px 20px !important;
    color: #1e1e1e;
    width: 320px;
    font-size: 16px;
    font-weight: 500;
    transition: 0.5s;
    position: relative;
    z-index: 1;
}

.header-menu ul li .sub-menu li a.active {
    background: var(--light);
    /* pointer-events: inherit; */
    color: #1c9100;
}

.header-menu ul li .sub-menu li a:hover {
    color: #fff !important;
}

.header-menu ul li .sub-menu li a:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 0;
    left: 0;
    bottom: 0;
    background: var(--primary);
    z-index: -1;
    transition: 0.5s;
}

.header-menu ul li .sub-menu li a:hover:before {
    height: 100%;
    top: 0;
}

.header-menu ul li .sub-menu.language-selector,
.header-menu ul li .sub-menu.language-selector a {
    width: 70px
}

/*---=================================
   <!--Hero Area-->
==================================---*/
.hero-area {
    background-color: var(--dark);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    height: 950px;
    padding-top: 125px;
    position: relative;
}

/*
style="background-image: url(<?php echo $root; ?>assets/images/dpolux/hero-bg-1.jpg)"
 */

.hero-area.hero-1 {
    background-image: url(../images/dpolux/hero-bg-1-duo.jpg);
}

.hero-area.hero-2 {
    background-image: url(../images/dpolux/hero-bg-2-duo.jpg);
}

.hero-area.hero-3 {
    background-image: url(../images/dpolux/hero-bg-3-duo.jpg);
}

/* .hero-area.hero-4 {
    background-image: url(../images/dpolux/hero-bg-4.jpg);
} */

/* .hero-area.hero-5 {
    background-image: url(../images/dpolux/hero-bg-5.jpg);
} */

.hero-area.bg-shade::before {
    background-color: #000;
    opacity: .65;
}

.hero-content h4 {
    color: #fff;
    font-size: 28px;
    font-weight: 500;
    margin-bottom: 19px;
}

.hero-content h1 {
    font-size: 55px;
    color: #fff;
    font-weight: 400;
    line-height: 65px;
    margin: 0;
    letter-spacing: -1px;
}

.hero-content h1 strong {
    font-weight: 600;
}

.hero-content p {
    font-size: 28px;
    line-height: 35px;
    color: #fff;
    font-weight: 300;
    margin: 10px 0 0;
    letter-spacing: 0;
}

.hero-social-icon {
    position: absolute;
    left: 85px;
    top: 41%;
}

.hero-social-icon ul li i {
    display: inline-block;
    color: #fff;
    font-size: 16px;
    margin-bottom: 28px;
    transition: 0.5s;
}

.hero-social-icon ul li i:hover {
    color: var(--primary);
}

.hero-social-icon ul li.text {
    color: #fff;
    text-transform: uppercase;
    transform: rotate(-90deg);
    position: relative;
    top: 100px;
    left: -36px;
}

.hero-social-icon ul li.text:before {
    position: absolute;
    content: "";
    width: 56px;
    height: 1px;
    left: 111px;
    top: 10px;
    background: #fff;
}


/* Hero Slide CSS */

.hero-slides {
    background: var(--dark);
}

.hero-slides .owl-dots {
    position: absolute;
    bottom: 42%;
    right: 56px;
}

.hero-slides .owl-dots .owl-dot {
    position: relative;
    z-index: 1;
    margin: 18px 5px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 2px solid #49b047cf;
}

.hero-slides .owl-dots .owl-dot.active {
    background-color: var(--primary);
    position: relative;
    width: 11px;
    height: 11px;
}

.hero-slides .owl-dots .owl-dot.active::after {
    position: absolute;
    width: 25px;
    height: 25px;
    z-index: 1;
    content: "";
    border: 2px solid var(--primary);
    left: -9px;
    top: -9px;
    border-radius: 50%;
    text-align: center;
}

/* echofy-button */

.echofy-button {
    margin-top: 40px;
    display: inline-block;
    position: relative;
}

.echofy-button a {
    display: inline-block;
    background: var(--primary);
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    padding: 14px 40px;
    border-radius: 30px;
    border: 2px solid var(--primary);
    position: relative;
    z-index: 1;
}

.echofy-button a:hover {
    color: var(--primary);
}

.echofy-button a:before {
    position: absolute;
    content: "";
    width: 0;
    height: 100%;
    left: 50%;
    top: 0;
    background: #fff;
    border-radius: 30px;
    z-index: -1;
    transition: 0.5s;
}

.echofy-button a:hover:before {
    width: 100%;
    left: 0;
}

.echofy-button img {
    position: relative;
    top: -2px;
    left: 4px;
    display: inline-block !important;
    transition: 0.5s;
}

.echofy-button img.two {
    position: absolute;
    right: 38px;
    top: 17px;
    opacity: 1;
    transition: 0.5s;
    z-index: 1;
    opacity: 0;
    pointer-events: none;
    left: auto;
    bottom: auto;
}

.echofy-button:hover img.two {
    opacity: 1;
}


.echofy-button.two {
    display: inline-block;
    padding-left: 16px;
    border: transparent;
}

.echofy-button.two a {
    display: inline-block;
    background: transparent;
    border: 2px solid #ffffff61;
    padding: 14px 37px;
}

/*
<!-- =====================================-->
<!-- Start echofy-text-section  -->
<!-- =====================================-->*/
.echofy-text-section {
    position: relative;
    background: var(--primary);
    z-index: 1;
    padding: 40px 0 44px;
}

.echofy-text-section .inner-container {
    max-width: 1812px;
    margin: 0 auto;
}

.echofy-text-section .marquee {
    position: relative;
    --duration: 30s;
    --gap: 0px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    overflow: hidden;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    gap: 0px;
}

.echofy-text-section .marquee-block {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    gap: 0;
    min-width: 87%;
    -webkit-animation: scroll 30s linear infinite;
    animation: scroll 30s linear infinite;
}

.echofy-text-section .marquee-block .content-box {
    position: relative;
    margin-right: 0px;
}

.echofy-text-section .marquee-block .content-box:last-child {
    margin-right: 0px;
}

.echofy-text-section .marquee-block .content-box:last-child::before {
    display: none;
}

.echofy-text-section .marquee-block .content-box .title {
    margin: 0;
}

.echofy-text-section .marquee-block .content-box h6.title {
    display: inline-block;
    font-size: 30px;
    color: #fff;
    font-weight: 600;
    padding: 0 48px;
}

.echofy-text-section .marquee-block .content-box h6.title img {
    position: relative;
    left: -49px;
}

@-webkit-keyframes scroll {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    100% {
        -webkit-transform: translateX(calc(-100% - var(--gap)));
        transform: translateX(calc(-100% - var(--gap)));
    }
}

@keyframes scroll {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    100% {
        -webkit-transform: translateX(calc(-100% - var(--gap)));
        transform: translateX(calc(-100% - var(--gap)));
    }
}


/*---=================================
   <!--About Area-->
==================================---*/

.about-right {
    position: relative;
}

.single-about-box {
    margin-bottom: 30px;
}

.single-about-box:nth-child(3) {
    border-bottom: 1px solid #61616133;
    padding-bottom: 31px;
    margin-bottom: 3px;
}

.about-box-icon {
    float: left;
    margin-right: 24px;
    margin-top: 8px;
}

.about-box-content h4 {
    font-size: 24px;
    font-weight: 600;
}

.about-box-content p {
    overflow: hidden;
    margin: 14px 0 0;
    width: 80%;
    font-size: 18px;
}

/*section-title*/

.section-title.left {
    margin-bottom: 49px;
}

.section-title.left img {
    margin-right: 12px;
}

.section-title.left h4 {
    color: var(--primary);
    font-weight: 500;
    font-size: 20px;
    margin-bottom: 26px;
}

.section-title.left h1 {
    font-size: 46px;
    font-weight: 700;
    line-height: 44px;
}

/*section-title-center*/

.section-title.center {
    margin-bottom: 49px;
}

.section-title.center img {
    margin-right: 12px;
}

.section-title.center h4 {
    color: var(--primary);
    font-weight: 500;
    font-size: 20px;
    margin-bottom: 26px;
}

.section-title.center h1 {
    font-size: 46px;
    font-weight: 700;
    line-height: 44px;
}


p.section-desc {
    width: 90%;
    margin: 26px 0 0;
}


/*---=================================
   <!--Service Area (Business)-->
==================================---*/
/* .service-area {
    padding: 113px 0 125px;
    background-image: url(../images/dpolux/service-bg.jpg);
    background-repeat: no-repeat;
    background-color: var(--light);
}

.single-service-box {
    position: relative;
    overflow: hidden;
    padding: 0 12px;
}

.service-content {
    background: #f7f6ee;
    padding: 35px 38px 159px;
    border-radius: 5px;
    position: relative;
    z-index: 1;
    transition: 0.5s;
}

.single-service-box:hover .service-content {
    background: transparent;
}

.service-content:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 0;
    left: 0;
    top: 0;
    border: 2px solid var(--primary);
    z-index: -1;
    border-radius: 5px;
    transition: 0.5s;
    opacity: 0;
}

.single-service-box:hover .service-content:before {
    height: 100%;
    opacity: 1
}

.service-content:after {
    position: absolute;
    content: "";
    width: 0;
    height: 7px;
    left: 50%;
    top: 0;
    background: var(--primary);
    z-index: -1;
    border-radius: 5px 5px 0 0;
    transition: 0.5s;
    opacity: 0;
}

.single-service-box:hover .service-content:after {
    width: 100%;
    opacity: 1;
    left: 0;
}

.service-content h4 {
    font-size: 26px;
    font-weight: 600;
    margin: 23px 0 25px;
    position: relative;
}

.service-content h4:before {
    position: absolute;
    content: "";
    width: 34px;
    height: 2px;
    left: 0;
    bottom: -13px;
    background: var(--primary);
}

.service-content p {
    font-size: 17px;
    margin: 0;
}

.service-thumb img {
    width: 100%;
    padding: 0 43px;
    margin-top: -132px;
    position: relative;
    z-index: 1;
}

.service-box-shape {
    position: absolute;
    right: 10px;
    top: 12px;
}

.service-area .owl-nav {
    position: relative;
}

.service-area .owl-prev {
    position: absolute;
    right: 84px;
    top: -633px;
}

.service-area .owl-prev i {
    background: #E6E7E9;
    display: inline-block;
    color: #222;
    width: 55px;
    height: 55px;
    text-align: center;
    line-height: 55px;
    border-radius: 3px;
    font-size: 18px;
    transition: 0.5s;
}

.service-area .owl-prev i:hover {
    background: var(--primary);
    color: #fff;
}

.service-area .owl-next {
    position: absolute;
    right: 17px;
    top: -633px;
}

.service-area .owl-next i {
    background: #E6E7E9;
    display: inline-block;
    color: #222;
    width: 55px;
    height: 55px;
    text-align: center;
    line-height: 55px;
    border-radius: 3px;
    font-size: 18px;
    transition: 0.5s;
}

.owl-next i:hover {
    background: var(--primary);
    color: #fff;
} */

/*---=================================
   <!--Services Area-->
==================================---*/

.service-area {
    padding: 150px 0;
}

.service-area .container {
    position: relative;
}

.service-area .section-title {
    margin-bottom: 100px;
}

.single-service-box {
    display: block;
    margin-bottom: 20px;
    margin-left: 15px;
    margin-right: 15px;
    background: #fff;
    max-width: 410px;
    border-radius: 5px;
    box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.service-thumb {
    overflow: hidden;
}

.service-thumb .service-photo {
    width: 100%;
    transition: 0.5s;
}

.single-service-box a:hover .service-photo {
    transform: scale(1.2);
}

.service-title {
    border-bottom: 1px solid var(--light);
    margin-bottom: 15px;
    padding-bottom: 15px;
}

.service-content {
    border: 0;
    padding: 45px 30px 30px;
    position: relative;
}

.service-content a {
    display: block;
}

.service-content p {
    margin: 14px 0 0px;
}

.service-icon {
    position: absolute;
    top: -40px;
    right: 30px;
    background: var(--primary);
    border-radius: 0 50px 50px 50px;
}

.service-title h6 {
    font-size: 24px;
    font-weight: 600;
    color: var(--dark);
    line-height: 32px;
    transition: 0.5s;
    position: relative;
    padding-bottom: 15px;
}

.service-title:before {
    content: "";
    height: 3px;
    border-radius: 3px;
    background-color: var(--light);
    display: block;
    width: 0;
    position: absolute;
    transition: 0.5s;
    bottom: 0;
    left: 0;
}

.single-service-box a:hover .service-title:before {
    background-color: var(--primary);
    width: 100%;
    height: 8px;
}

.service-title p {
    font-size: 18px;
}

.service-button {
    color: var(--dark);
    display: inline-block;
    font-size: 20px;
    line-height: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    position: relative;
    transition: 0.5s;
}

.service-button:before {
    position: absolute;
    content: "";
    width: 30px;
    height: 2px;
    bottom: -20px;
    left: 0;
    background: transparent;
}

.service-button i {
    display: inline-block;
    font-size: 36px;
    border-radius: 50px 50px 50px 0;
    color: #111111;
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    position: relative;
    border: 1px solid rgba(0, 24, 25, 0.10);
    transition: 0.5s;
}

.service-button i:before {
    transform: rotate(-45deg);
}

.single-service-box a:hover .service-button {
    color: #49AE44;
}

.single-service-box a:hover .service-button i {
    background: #49AE44;
    color: #fff;
}

.service-area .owl-nav {
    position: relative;
}

.service-area .owl-prev {
    position: absolute;
    right: 84px;
    top: -700px;
}

.service-area .owl-prev i {
    background: var(--secondary);
    display: inline-block;
    color: #fff;
    width: 55px;
    height: 55px;
    text-align: center;
    line-height: 55px;
    border-radius: 30px;
    font-size: 18px;
    transition: 0.5s;
}

.service-area .owl-prev i:hover {
    background: var(--primary);
    color: #fff;
}

.service-area .owl-next {
    position: absolute;
    right: 17px;
    top: -700px;
}

.service-area .owl-next i {
    background: var(--secondary);
    display: inline-block;
    color: #fff;
    width: 55px;
    height: 55px;
    text-align: center;
    line-height: 55px;
    border-radius: 30px;
    font-size: 18px;
    transition: 0.5s;
}

.service-area .owl-next i:hover {
    background: var(--primary);
    color: #fff;
}


/*---=================================
   <!--Skill Area-->
==================================---*/

.skill-area {
    background: #F6F6EE;
    padding: 114px 0 110px;
}

.skill-area .section-title.left {
    margin-bottom: 35px;
}

.skills-item {
    display: inline-block;
    margin-bottom: 34px;
}

.skills-item-content {
    display: flex;
    align-items: center;
    gap: 18px;
    background: #fff;
    padding: 18px 59px 18px 26px;
    border-radius: 5px;
    margin-right: 15px;
    position: relative;
    z-index: 1;
}

.skills-item-content:before {
    position: absolute;
    content: "";
    width: 0;
    height: 100%;
    left: 0;
    top: 0;
    background: #47AD49;
    z-index: -1;
    transition: 0.5s;
}

.skills-item-content:hover:before {
    width: 100%;
}

.skills-item-content::last-child {
    margin-right: 0;
}

.skills-item-icon i {
    background: #47AD49;
    color: #fff;
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 28px;
    border-radius: 50%;
    display: inline-block;
    text-align: center;
    transition: 0.5s;
}

.skills-item-content:hover .skills-item-icon i {
    background: #fff;
    color: #47AD49;
}

.skills-item-title h4 {
    font-size: 20px;
    font-weight: 500;
    margin: 0;
    transition: 0.5s;
}

.skills-item-content:hover .skills-item-title h4 {
    color: #fff;
}


.skills {
    text-align: right;
}

.skills-content p {
    font-size: 18px;
    color: #001819;
    font-weight: 600;
    margin: 0;
    margin-bottom: 13px;
}

.skill-bg {
    background: #222;
    width: 95%;
    height: 8px;
    border-radius: 4px;
}

span.number {
    position: relative;
    top: -38px;
    left: 17px;
    color: #001818;
    display: inline-block;
    font-weight: 600;
}

.html {
    width: 80%;
    background-color: #4CAF50;
    display: inline-block;
    animation: html5 2s ease-out;
    height: 8px;
    top: -8px;
    position: relative;
    left: 0px;
    border-radius: 3px;
}

.css {
    width: 70%;
    background-color: #4CAF50;
    display: inline-block;
    animation: html5 2s ease-out;
    height: 8px;
    top: -8px;
    position: relative;
    left: 0px;
    border-radius: 3px;

}

@keyframes html5 {
    0% {
        width: 0px;
    }

    100% {
        width: 80%;
    }
}

@keyframes css3 {
    0% {
        width: 0px;
    }

    100% {
        width: 70%;
    }
}

.skills-thumb {
    position: relative;
    left: 43px;
    z-index: 1;
}

.skills-shape {
    position: absolute;
    top: 28px;
    left: 22px;
    animation: dance4 4s linear infinite;
}

@keyframes dance4 {
    0% {
        -webkit-transform: translateY(-50px);
        transform: translateY(-50px);
    }

    50% {
        -webkit-transform: translateY(-15px);
        transform: translateY(-15px);
    }

    100% {
        -webkit-transform: translateY(-50px);
        transform: translateY(-50px);
    }
}


.skills-shape-2 {
    position: absolute;
    right: 0;
    bottom: 20px;
    z-index: -1;
    animation: dance4 4s linear infinite;
}

/*---=================================
   <!--Counter Area-->
==================================---*/
.counter-area {
    position: relative;
    background: #fff;
    /* z-index: 1; */
    padding: 75px 0;
}

.single-counter-box {
    text-align: left;
    display: flex;
}

.counter-icon {
    display: inline-block;
    padding-right: 15px;
    margin-right: 15px;
    border-right: 1px dashed var(--dark);
    align-self: center;
    text-align: center;
}

.counter-content {
    display: inline-block;
}

.counter-content h4 {
    color: var(--dark);
    font-size: 21px;
    display: inline-block;
    margin-top: 20px;
}

.counter-content span {
    color: var(--primary);
    font-size: 16px;
    display: inline-block;
    font-weight: 700;
}

.counter-content p {
    color: var(--dark);
    font-size: 16px;
    font-weight: 500;
    margin: 3px 0 0;
}


/*---=================================
   <!--Counter Area-->
==================================---*/
#poress-row {
    background: #F6F6EE;
    margin-top: -93px;
    position: relative;
    z-index: 1;
}

#poress-row .section-title.left {
    margin-bottom: 0;
}

.porcess-thumb {
    position: relative;
    left: -12px;
}

.process-left {
    position: relative;
    padding: 0 0 13px;
}

.process-shape {
    position: absolute;
    left: 257px;
    bottom: -3px;
    animation: dance3 4s linear infinite;
}


/*---=================================
   <!--Project Area-->
==================================---*/
.project-area {
    background-image: url(../images/dpolux/project-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 556px 0 0;
    margin-top: -444px;
    padding-left: 281px;
}

.single-project-box {
    margin-right: 21px;
}

.project-thumb img {
    width: 100%;
}

.project-content {
    background: #fff;
    padding: 30px 34px 28px;
    width: 88%;
    border-left: 5px solid var(--primary);
    position: relative;
    margin-top: -38px;
    transition: 0.5s;
    border-radius: 3px;
    height: 117px;
}

.single-project-box:hover .project-content {
    background: #001819;
    height: 159px;
    margin-top: -83px;
}

.project-content h4 {
    color: #868681;
    font-size: 16px;
    font-weight: 500;
    margin: 0 0 12px;
    transition: 0.5s;
}

.single-project-box:hover .project-content h4 {
    color: var(--primary);
}

.project-content a {
    display: inline-block;
    color: #001819;
    font-size: 26px;
    font-weight: 600;
    transition: 0.5s;
}

.project-content a:hover {
    color: var(--primary) !important;
}

.single-project-box:hover .project-content a {
    color: #fff;
}

a.project-button {
    font-size: 17px !important;
    display: inherit;
    color: #fff;
    font-weight: 500;
    margin-top: 19px;
    display: none;
    transition: 0.5s;
}

a.project-button:hover {
    color: var(--primary) !important;
}

.single-project-box:hover a.project-button {
    display: block;
}

a.project-button i {
    display: inline-block;
    color: #fff;
    font-size: 22px;
    position: relative;
    top: 3px;
    transition: 0.5s;
}

a.project-button:hover i {
    color: var(--primary) !important;
}

.project-shape {
    position: absolute;
    right: 14px;
    bottom: 22px;
    display: none;
    transition: 0.5s;
}

.single-project-box:hover .project-shape {
    display: block;
}

.project-area .owl-nav {
    position: relative;
}

.project-area .owl-prev {
    position: absolute;
    right: 351px;
    top: -633px;
}

.project-area .owl-prev i {
    background: #E6E7E9;
    display: inline-block;
    color: #222;
    width: 55px;
    height: 55px;
    text-align: center;
    line-height: 55px;
    border-radius: 3px;
    font-size: 18px;
    transition: 0.5s;
}

.project-area .owl-prev i:hover {
    background: var(--primary);
    color: #fff;
}

.project-area .owl-next {
    position: absolute;
    right: 281px;
    top: -633px;
}

.project-area .owl-next i {
    background: #E6E7E9;
    display: inline-block;
    color: #222;
    width: 55px;
    height: 55px;
    text-align: center;
    line-height: 55px;
    border-radius: 3px;
    font-size: 18px;
    transition: 0.5s;
}

.project-area .owl-next i:hover {
    background: var(--primary);
    color: #fff;
}


/*---=================================
   <!--Value Area-->
==================================---*/
.value-area {
    background: #F6F6EE;
    padding: 195px 0 95px;
    margin-top: -80px;
    background-image: url(../images/dpolux/value-home.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-color: var(--dark);
}

.value-area .section-title.center {
    margin-bottom: 75px;
}

.value-area .section-title h1 {
    color: #fff !important;
    font-size: 42px;
}

.value-area .section-title h4 {
    color: #fff !important;
}

.single-process-box-two {
    text-align: center;
    padding: 0 46px 0;
    position: relative;
    margin-bottom: 25px;
    margin-top: 25px;
}

.process-icon-thumb-two {
    position: relative;
    z-index: 1;
}

.process-icon-thumb-two:before {
    position: absolute;
    content: "";
    width: 170px;
    height: 170px;
    left: 0;
    right: 0;
    top: -14px;
    border: 2px dashed var(--primary);
    border-radius: 50%;
    margin: auto;
    animation: rotateme 20s linear infinite;
    z-index: -1;
}

.process-icon-thumb-two:after {
    background: var(--primary);
    content: "";
    display: block;
    width: 145px;
    height: 145px;
    border-radius: 100px;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    margin: auto;
    z-index: -1;
}

@keyframes rotateme {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.process-two-content {
    z-index: 1;
    position: relative;
}

.process-two-content h4 {
    font-size: 24px;
    font-weight: 700;
    margin: 45px 0 15px;
    color: #fff;
}

.process-two-content p {
    color: #fff;
}



/*---=================================
   <!--Testimonial Area-->
==================================---*/

.testimonial-area {
    background: #fff;
    padding: 111px 0 0;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.testimonial-area .section-title.center {
    margin-bottom: 0;
}

.single-testimonial-box {
    filter: drop-shadow(0px 10px 30px rgba(179, 179, 179, 0.2));
    background-color: #fff;
    border-radius: 5px;
    padding: 34px 43px 32px;
    position: relative;
    margin: 66px 10px;
}

.testi-qutoe {
    float: right;
    position: relative;
    top: 12px;
    left: 0;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 20px;
}

.testi-author-rating ul li {
    display: inline-block;
    color: #FFAA16;
    font-size: 15px;
    margin-right: 3px;
}

.testi-author-content h4 {
    font-size: 22px;
    font-weight: 600;
    margin: 10px 0 9px;
}

.testi-author-content p {
    font-size: 16px;
    margin: 0;
}

p.testi-desc {
    font-size: 18px;
    line-height: 30px;
    margin: 22px 0 17px;
}

.what-for-comment p {
    color: var(--primary);
    font-size: 18px;
    margin: 0;
    font-weight: 500;
}



.testi-shape {
    position: absolute;
    top: -66px;
    left: 24%;
    animation: rotateme2 50s linear infinite;
    z-index: -1;
}

@keyframes rotateme2 {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.testi-shape-tow {
    position: absolute;
    top: 139px;
    left: 11%;
    animation: dance4 4s linear infinite;
}

.testi-shape-three {
    position: absolute;
    top: 51px;
    left: 20%;
    animation: dance 2s alternate infinite;
}

.testi-shape-four {
    position: absolute;
    top: 139px;
    right: 11%;
    animation: dance4 4s linear infinite;
}

.testi-shape-five {
    position: absolute;
    top: 51px;
    right: 20%;
    animation: dance 2s alternate infinite;
}

@keyframes dance {
    0% {
        -webkit-transform: scale(0.5);
    }

    100% {
        -webkit-transform: scale(1.2);
    }
}

/*---=================================
   <!--Brand Area-->
==================================---*/
.brand-area {
    position: relative;
    padding: 62px 0 0;
}

#brand-bg {
    background-image: url(../images/dpolux/brand-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 80px 0 66px;
    text-align: center;
    z-index: 1;
    position: relative;
}

.brand-content h4 {
    font-size: 24px;
    color: #fff;
    font-weight: 600;
    margin: 0;
    position: relative;
    display: inline-block;
    margin-bottom: 47px;
}

.brand-content h4:before {
    position: absolute;
    content: "";
    width: 35px;
    height: 1px;
    right: -42px;
    top: 17px;
    background: #fff;
}

.brand-content h4:after {
    position: absolute;
    content: "";
    width: 35px;
    height: 1px;
    left: -42px;
    top: 17px;
    background: #fff;
}

.single-brand-box {
    text-align: center;
    display: inline-block;
}

.single-shape {
    position: absolute;
    right: 184px;
    top: -1px;
    animation: dance3 4s linear infinite;
}

/*---=================================
   <!--Team Area-->
==================================---*/
.team-area {
    padding: 192px 0 125px;
    background-image: url(../images/dpolux/team-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    margin-top: -82px;
}

.team-area .section-title.center {
    margin-bottom: 0;
}

.single-team-box {
    text-align: center;
    margin-top: -71px;
}

.single-team-thumb {
    position: relative;
    top: 124px;
    z-index: 1;
}

.team-content {
    background: #fff;
    padding: 152px 0 38px;
    position: relative;
}

.team-content:before {
    position: absolute;
    content: "";
    width: 0;
    height: 5px;
    left: 50%;
    bottom: 0;
    background: var(--primary);
    transition: 0.5s;
}

.single-team-box:hover .team-content:before {
    width: 100%;
    left: 0;
}

.team-content h4 {
    font-size: 26px;
    font-weight: 600;
    margin: 0 0 11px;
}

.team-content p {
    margin: 0;
    color: var(--primary);
    font-size: 16px;
    font-weight: 500;
}

.team-social-icon {
    margin-top: 28px;
}

.team-social-icon ul li {
    display: inline-block;
    margin: 0 2px;
}

.team-social-icon ul li i {
    border: 1px solid #d5dfda;
    display: inline-block;
    width: 34px;
    height: 34px;
    line-height: 34px;
    border-radius: 50%;
    color: #7d8d85;
    position: relative;
    z-index: 1;
    transition: 0.5s;
}

.team-social-icon ul li i:after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: var(--primary);
    border-radius: 50%;
    z-index: -1;
    transform: scale(0);
    transition: 0.5s;
}

.team-social-icon ul li i:hover:after {
    transform: scale(1);
}

.team-social-icon ul li i:hover {
    color: #fff;
}

/*---=================================
   <!-- Footer Bar Area-->
==================================---*/

.footer-bar-area {
    background-image: url(../images/dpolux/footer-bar-bg.png);
    background-repeat: no-repeat;
    background-position: top left;
    background-color: var(--primary);
    padding-top: 65px;
    padding-bottom: 65px;
}

.footer-bar-area h4,
.footer-bar-area a {
    color: #fff;
}

.footer-bar-area h4 {
    font-size: 42px;
    font-weight: 500;
    margin: 0;
    letter-spacing: -1px;
}

.footer-bar-content {
    padding-right: 30px;
}

.footer-bar-button {
    margin: 0;
}

.footer-bar-button.echofy-button a {
    background: var(--dark);
}

.footer-bar-button.echofy-button:hover a {
    color: var(--dark);
}


/*---=================================
   <!--Blog Area-->
==================================---*/
.blog-area {
    padding: 113px 0 103px;
}

.blog-area .echofy-button {
    margin-top: 60px;
    /* display: inline-block; */
    display: block;
    float: right;
}

.single-blog-box {
    margin-bottom: 20px;
    margin-right: 15px;
    margin-top: 25px;
    position: relative;
}

.single-blog-thumb {
    overflow: hidden;
    border-radius: 5px;
}

.single-blog-thumb img {
    width: 100%;
    transition: 0.5s;
}

.single-blog-box a:hover .single-blog-thumb img {
    transform: scale(1.2);
}

.blog-content {
    border: 1px solid rgba(0, 24, 25, 0.1);
    padding: 27px 32px 28px;
    border-radius: 5px;
    box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.3);
    border: 0;
    margin: 0;
    /* margin: 0 20px; */
    background: #fff;
    /* margin-top: -40px; */
    position: relative;
    z-index: 1;
    transition: 0.5s;
}

.blog-content:before {
    content: "";
    height: 3px;
    border-radius: 3px;
    background-color: var(--primary);
    display: block;
    width: 0;
    position: absolute;
    transition: 0.5s;
    bottom: 0;
    left: 0;
}

.single-blog-box a:hover .blog-content:before {
    width: 100%;
    height: 8px;
}

.blog-content h6 {
    font-size: 24px;
    font-weight: 600;
    display: inline-block;
    color: #001819;
    line-height: 32px;
    transition: 0.5s;
}

.blog-content p {
    margin: 14px 0 0px;
}

.blog-arthor {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid rgba(0, 24, 25, 0.1);
    border-top: transparent;
    padding: 13px 28px 14px;
    border-radius: 0 0 5px 5px;
}

.blog-author-title span {
    display: inline-block;
    background: var(--primary);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    text-align: center;
    line-height: 35px;
    color: #fff;
    margin-right: 9px;
}

.blog-author-title h6 {
    font-size: 16px;
    margin: 0;
    font-weight: 600;
}

.blog-content .meta-blog {
    /* margin-bottom: 25px; */
    margin-bottom: 15px;
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
    transition: 0.5s;
    color: var(--default);
}

.single-blog-box a:hover .meta-blog {
    color: var(--primary);
}

.blog-content .meta-blog i {
    color: var(--primary);
    margin-right: 5px;
}

.blog-button span {
    display: inline-block;
    font-size: 20px;
    font-weight: 600;
    margin-top: 25px;
    color: var(--dark);
    background: var(--light);
    padding: 9px 32px;
    border-radius: 30px;
    padding-right: 60px;
    position: relative;
    z-index: 1;
    transition: 0.5s;
}

.single-blog-box a:hover .blog-button span {
    color: white;
    background: var(--primary);
}

.blog-button i {
    font-size: 30px;
    position: absolute;
}


.blog-button i::before {
    transform: rotate(-45deg);
    margin-left: 5px;
}

/* paginacion */

.pagination {
    text-align: center;
    justify-content: center;
    margin-top: 50px;
}

.page-item {
    margin: 0 12px;
}

.active>.page-link,
.page-link.active {
    background-color: var(--primary);
    border-color: var(--primary);
    color: white;
}

.page-link {
    /* color: var(--primary); */
    border-radius: 50px !important;
    height: 55px;
    width: 55px;
    padding-left: 0;
    padding-right: 0;
    font-weight: 600;
    background-color: #d8d6e2;
    color: white;
    transition: 0.25s;
    border: none;
}

.page-link:hover {
    background-color: var(--primary);
    color: white;
}

/*---=================================
   <!--Footer Area-->
==================================---*/
.footer-area {
    background-color: var(--dark);
    padding: 0;
}

.footer-social-address {
    padding: 49px 66px 55px;
    border-radius: 5px;
}

.footer-social-address-content h4 {
    font-size: 40px;
    color: #fff;
    margin: 0;
}

.footer-social-icon {
    /* text-align: right; */
    text-align: left;
    padding-top: 15px;
}

.footer-social-icon ul li {
    display: inline-block;
}

.footer-social-icon ul li.text {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    margin-right: 9px;
}

.footer-social-icon ul li i {
    display: inline-block;
    font-size: 20px;
    color: #fff;
    width: auto;
    height: 40px;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    margin: 0 3px;
    position: relative;
    z-index: 1;
    transition: 0.5s;
    margin-right: 25px;
}

.footer-social-icon ul li i:hover {
    color: var(--primary);
}

.footer-social-icon ul li i:after {
    display: none;
}

.footer-social-icon ul li i:hover:after {
    transform: scale(1);
}

.footer-area .row.add-footer-class {
    padding: 111px 0 0;
}

p.footer-desc {
    margin: 24px 0 0;
    color: #fff;
    padding-right: 50px;
    /* opacity: 0.6; */
}

.footer-contect-info {
    margin-top: 23px;
}

.footer-contact-info-title h4 {
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    margin: 0;
    padding-left: 30px;
    position: relative;
}

.footer-contact-info-title h4:before {
    position: absolute;
    content: "";
    width: 22px;
    height: 2px;
    left: 0;
    top: 11px;
    background: var(--primary);
}

.footer-contect-info ul li {
    color: #fff;
    margin-top: 18px;
}

.footer-contect-info ul li i {
    color: var(--primary);
    display: inline-block;
    margin-right: 12px;
}

.footer-widget-title h4 {
    font-size: 20px;
    color: #fff;
    font-weight: 600;
    margin-bottom: 23px;
}

.footer-widget-menu ul li {
    color: #fff;
    line-height: 40px;
}

.footer-widget-menu ul li a {
    display: inline-block;
    color: #fff;
    /* opacity: 0.6; */
    line-height: 40px;
    font-size: 16px;
    transition: 0.5s;
}

.footer-widget-menu ul li a:hover {
    color: var(--primary);
    opacity: 1;
}

.footer-widget-menu ul li i {
    font-size: 16px;
    color: #fff;
    display: inline-block;
    /* opacity: 0.6; */
    margin-right: 8px;
    transition: 0.5s;
}

.footer-widget-menu ul li a:hover i,
.footer-widget-menu ul li a.active {
    color: var(--primary);
    opacity: 1;
}

.footer-widget-menu ul li a.active {
    pointer-events: none;
}

.footer-widget-menu ul li i.bi {
    color: var(--primary);
    margin-right: 20px;
}

.single-newsletter-box input {
    background: transparent;
    width: 100%;
    height: 60px;
    border: 1px solid #ffffff47;
    border-radius: 5px;
    padding: 0 14px;
    outline: 0;
    color: #fff;
}

.single-newsletter-box input::placeholder {
    color: #fff;
}

.single-newsletter-box button {
    background-color: var(--primary);
    width: 100%;
    padding: 16px 0;
    border: transparent;
    margin-top: 16px;
    font-size: 16px;
    text-transform: uppercase;
    color: #fff;
    font-weight: 500;
    border-radius: 5px;
}

.footer-bottom-area {
    padding: 96px 0 33px;
}

.footer-bottom-area .row.footer-bottom {
    border-top: 1px solid #ffffff3d;
    padding-top: 18px;
}

.footer-bottom-content h4 {
    font-size: 16px;
    color: #fff;
    font-weight: 400;
}

.footer-bottom-content a,
.footer-bottom-content span {
    display: inline-block;
    color: var(--primary);
}


/* **************** CUT-PASTE ECHOFY CSS ******************* */

/*---=====================================================
   <!-- Breadcrumb Area -->
=========================================================---*/

.breadcrumb-area {
    background-image: url(../images/dpolux/service-bg.jpg);
    background-color: var(--dark);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    padding: 272px 0 143px;
    margin-bottom: 0;
}

.breadcrumb-title h4 {
    font-size: 55px;
    font-weight: 800;
    color: #ffff;
    padding-bottom: 13px;
}

.breadcrumb-title h6 {
    font-size: 20px;
    font-weight: 400;
    letter-spacing: -0.5px;
    color: white;
}

.breadcrumb-title h6 span {
    color: var(--primary);
}

.breadcrumb-list {
    display: none;
}

.breadcrumb-list li {
    display: inline-block;
    margin: 0 19px;
    color: #fff;
}

.breadcrumb-list li.khela-hbe {
    opacity: 0.7;
    position: relative;
}

.breadcrumb-list li.khela-hbe:before {
    position: absolute;
    content: "";
    width: 17px;
    height: 2px;
    left: -30px;
    top: 13px;
    background: #fff;
}

.breadcrumb-list li a {
    display: inline-block;
    font-size: 16px;
    color: #fff;
    font-weight: 500;
    position: relative;
}

.breadcrumb-list li a:before {
    position: absolute;
    content: "";
    width: 17px;
    height: 2px;
    right: -30px;
    top: 13px;
    background: #fff;
}

.breadcrumb-list li img {
    position: relative;
    top: -2px;
    padding-right: 6px;
}

/*all-inner-pages-add-inner-class-css*/

.team-area.inner {
    margin-top: 0;
    padding: 108px 0 125px;
    background: #F6F6EE;
}

/*service-area Inner Pages*/
.service-area.inner {
    padding: 111px 0 102px;
}

.service-area.inner .section-title.center {
    margin-bottom: 62px;
}

.service-area.inner .single-service-box {
    padding: 0;
    padding-bottom: 23px;
}

/*Project-area Inner Pages*/
.project-area.inner {
    margin-top: 0;
    background: #F6F6EE;
    padding: 112px 0 97px;
}

.project-area.inner .section-title.center {
    margin-bottom: 63px;
}

.project-area.inner .single-project-box {
    margin-right: 0;
    margin-bottom: 24px;
}

/*donation Area Inner pages*/

.donation-area.inner {
    padding: 112px 0 103px;
    background: #F6F6EE;
}

.donation-area.inner .section-title.center {
    margin-bottom: 62px;
}

.donation-area.inner .single-donation-box {
    margin: 0 0 24px;
}

/*Testimonial Area Inner */

.testimonial-area.inner {
    padding: 111px 0 99px;
    background: #F6F6EE;
}

.testimonial-area.inner .section-title.center {
    margin-bottom: 62px;
}

.testimonial-area.inner .single-testimonial-box {
    margin: 0;
    margin-bottom: 24px;
}

/*faqs Area Inner css*/
.faqs-area.inner {
    padding: 110px 0 124px;
}

/*---=====================================================
   <!-- Service Details Area (Business) -->
=========================================================---*/

.service-detail-area {
    padding: 100px 0 100px;
}

.service-detail-thumb img {
    width: 100%;
}

.service-detail-content {
    padding-top: 18px;
}

h4.service-detail-title {
    font-size: 36px;
    margin-bottom: 10px;
}

p.service-detail-desc {
    font-size: 17px;
    margin-top: 24px;
}

.service-detail-icon-box {
    display: flex;
    background: #F6F6EE;
    padding: 32px 27px 18px;
    gap: 28px;
    margin-top: 27px;
}

.service-detail-box-content h4 {
    font-size: 22px;
    font-weight: 600;
    margin: 0 0 11px;
}

.service-detail-box-content li {
    font-size: 18px;
    list-style: disc;
    margin-left: 25px;
    padding-left: 5px;
    /* margin-bottom: 15px; */
}

.service-detail-text {
    background: var(--primary);
    display: flex;
    align-items: center;
    padding: 32px 39px;
    gap: 65px;
    border-radius: 5px;
    margin-top: 55px;
    margin-bottom: 41px;
}

.service-detail-text-icon {
    position: relative;
}

.service-detail-text-icon:before {
    position: absolute;
    content: "";
    width: 2px;
    height: 49px;
    right: -29px;
    top: 1px;
    background: #f6f6ee61;
}

.service-detail-text-content p {
    font-size: 22px;
    line-height: 30px;
    color: #ffffff;
    font-weight: 400;
    font-style: italic;
    width: 90%;
    margin: 0;
}

.service-detail-area .single-benifits-box {
    margin-top: 22px;
}

.service-detail-area .benifits-thumb img {
    width: 100%;
}

.service-detail-area .benifits-content {
    border-radius: 5px;
    filter: drop-shadow(0px 5px 30px rgba(117, 117, 117, 0.1));
    background-color: #ffffff;
    padding: 30px 31px 23px;
    width: 92%;
    margin: auto;
    margin-top: -28px;
}

.service-detail-area .benifits-content h4 {
    font-size: 22px;
    margin: 0;
    margin-bottom: 14px;
    font-weight: 500;
}

.service-detail-area .benifits-content ul li {
    line-height: 32px;
}

.service-detail-area .benifits-content ul li i {
    display: inline-block;
    color: #49AF45;
    font-size: 18px;
    position: relative;
    top: 2px;
    margin-right: 8px;
}

/*with button*/

.service-detail-button-box h4,
.service-detail-button-box .service-detail-icon-thumb {
    margin: 0;
    padding-top: 5px;
}

.service-detail-button-box .service-detail-box-content {
    width: -webkit-fill-available;
}
.service-detail-button-box .echofy-button {
    margin: 0;
    margin-top: -20px;
    float: right;
}

/*widget-sidber css*/

.widget-sidber {
    border-radius: 5px;
    background-color: #f7f6ee;
    padding: 32px 41px 29px;
    margin-bottom: 27px;
}

.widget-sidber-content h4 {
    font-size: 24px;
    font-weight: 600;
    margin: 0 0 46px;
    position: relative;
}

.widget-sidber-content h4:before {
    position: absolute;
    content: "";
    width: 29px;
    height: 2px;
    left: 0;
    bottom: -8px;
    background: #49AF45;
}

.widget-category ul li img {
    margin-right: 12px;
    transition: 0.5s;
}

.widget-category ul li a:hover img {
    filter: brightness(0) invert(1);
}

.widget-category ul li a {
    background: #ffff;
    padding: 14px 26px;
    width: 100%;
    display: inline-block;
    margin-bottom: 14px;
    color: #001819;
    font-weight: 500;
    border-radius: 5px;
    position: relative;
    z-index: 1;
    transition: 0.5s;
}

.widget-category ul li a:hover,
.widget-category ul li a.active {
    color: #fff;
}

.widget-category ul li a:before,
.widget-category ul li a.active:before {
    position: absolute;
    content: "";
    width: 0;
    height: 100%;
    left: 50%;
    top: 0;
    background: #49AF45;
    z-index: -1;
    border-radius: 5px;
    transition: 0.5s;
}

.widget-category ul li a:hover:before,
.widget-category ul li a.active:before {
    width: 100%;
    left: 0;
}

.widget-category ul li i {
    color: black;
    /* display: inline-block; */
    display: block;
    float: right;
    font-size: 17px;
    opacity: 0;
    transition: 0.5s;
}

.widget-category ul li a:hover i {
    opacity: 1;
    color: #fff;
}

.widget-sidber-download-button a {
    display: inline-block;
    background: #00181A;
    width: 100%;
    color: #fff;
    padding: 15px 23px;
    border-radius: 5px;
    margin-bottom: 18px;
}

.widget-sidber-download-button a.active {
    background: #49AF45;
}

.widget-sidber-download-button i {
    color: var(--primary);
    display: inline-block;
    font-size: 22px;
    margin-right: 9px;
    position: relative;
    top: 3px;
}

.widget-sidber-download-button a.active i {
    color: #fff;
}


.widget-sidber-download-button span i {
    float: right;
    display: block;
    /* display: inline-block; */
    font-size: 16px;
}

.widget-sidber-download-button a.active span i {
    color: #fff;
}


/*---=====================================================
   <!-- Project Details Area -->
=========================================================---*/

.project-details-area {
    padding: 100px 0 100px;
}

.project-details-content {
    margin-top: 35px;
}

.project-details-thumb img {
    width: 100%;
}

.project-details-content h4 {
    font-size: 36px;
    margin-bottom: 17px;
}

p.project-details-desc {
    font-size: 17px;
    margin-bottom: 27px;
}

.project-details-content h3 {
    font-size: 28px;
    margin-bottom: 20px;
    margin-top: 54px;
}

.project-details-item-images img {
    width: 100%;
}

.project-details-list-item h4 {
    font-size: 28px;
}

.project-details-list-item ul li i {
    display: inline-block;
    color: #49AF45;
    font-size: 19px;
    margin-right: 11px;
    position: relative;
    top: 2px;
}

.project-details-list-item ul li {
    font-size: 17px;
    line-height: 39px;
}

a.project-details-text {
    display: inline-block;
    font-size: 28px;
    line-height: 38px;
    color: #49af45;
    font-weight: 600;
    margin-top: 50px;
    margin-bottom: 19px;
}

.project-details-right {
    background: #F6F6EE;
    padding: 29px 41px 30px;
    border-radius: 5px;
    margin-top: 50px;
}

.project-details-info {
    border-bottom: 1px solid #86868152;
    padding-bottom: 10px;
    padding-top: 9px;
}

.project-details-info:last-child {
    border-bottom: transparent;
}

.project-details-info p {
    margin-bottom: 0;
}

.project-details-info h6 {
    font-size: 18px;
    font-weight: 600;
    margin-top: 6px;
}


/*---=====================================================
   <!-- Blog Details Area -->
=========================================================---*/

.blog-details-area {
    padding: 100px 0 100px;
}

.blog-details-thumb {
    overflow: hidden;
}

.blog-details-thumb img {
    width: 100%;
    transition: 0.5s;
}

.blog-details-thumb img:hover {
    transform: scale(1.2) skew(-10deg);
}

.blog-details-content {
    padding: 27px 36px 20px;
    border: 1px solid #2222;
}

.blog-details-area .meta-blog span {
    display: inline-block;
    margin-right: 28px;
    font-weight: 500;
}

.blog-details-area span.mate-text {
    padding-left: 36px;
    position: relative;
}

.blog-details-area span.mate-text:before {
    position: absolute;
    content: "";
    width: 20px;
    height: 2px;
    left: 5px;
    top: 11px;
    background: #49AF45;
}

.blog-details-area .meta-blog i {
    display: inline-block;
    color: #49AF45;
    padding-right: 9px;
}

.blog-details-area .meta-blog img {
    margin-right: 8px;
    position: relative;
    top: -1px;
}

h4.blog-details-title {
    font-size: 32px;
    margin: 12px 0 19px;
}

p.blog-details-desc {
    font-size: 17px;
    margin-bottom: 25px;
}

.blog-details-author-talk {
    display: flex;
    gap: 26px;
    background: #F7F6EE;
    padding: 41px 51px 40px;
    margin-top: 48px;
}

.blog-details-quote img {
    position: relative;
    top: 8px;
}

.blog-details-author-title p {
    font-size: 20px;
    font-style: italic;
    line-height: 30px;
    color: #001819;
}

.blog-details-quote img {
    position: relative;
    top: 8px;
    color: #001819;
}

.blog-details-author-title span {
    margin-left: 58px;
    display: inline-block;
    color: #001819;
    position: relative;
}

.blog-details-author-title span:before {
    position: absolute;
    content: "";
    width: 50px;
    height: 2px;
    left: -58px;
    top: 12px;
    background: #49AF45;
}

h3.blog-details-title {
    font-size: 28px;
    margin: 54px 0 16px;
}

p.blog-details-desc.two {
    width: 95%;
}

.blog-details-list-item {
    margin-bottom: 40px;
}

.blog-details-list-item ul li {
    margin-bottom: 10px;
    font-size: 17px;
}

.blog-details-list-item ul li i {
    display: inline-block;
    color: #49AF45;
    font-size: 18px;
    margin-right: 16px;
}

h3.blog-details-title.two {
    font-size: 28px;
    margin: 38px 0 16px;
}

p.blog-details-desc.three {
    width: 100%;
}

.blog-details-socila-box {
    border: 1px solid #2222;
    border-top: transparent;
    padding: 19px 35px 18px;
    border-radius: 0 0 5px 5px;
}

.blog-details-category span a {
    display: inline-block;
    background: #F6F6EE;
    padding: 6px 16px;
    font-weight: 500;
    color: #001819;
    border-radius: 3px;
    margin-right: 7px;
    transition: 0.5s;
}

.blog-details-category span a:hover {
    background: #49AF45;
    color: #fff;
}

.blog-details-category span a.active-class {
    background: #49AF45;
    color: #fff;
}

.blog-details-social-icon {
    text-align: right;
}

.blog-details-social-icon ul li {
    display: inline-block;
}

.blog-details-social-icon ul li i {
    display: inline-block;
    background: #1974E9;
    color: #fff;
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 30px;
    border-radius: 50%;
    font-size: 13px;
    margin-left: 5px;
}

.blog-details-social-icon ul li:nth-child(2) i {
    background: #00AAE8;
}

.blog-details-social-icon ul li:nth-child(3) i {
    background: #016EAF;
}

.blog-details-social-icon ul li:nth-child(4) i {
    background: #B7071C;
}

.blog-details-post {
    margin-top: 40px;
}

.blog-post-box {
    display: flex;
    background: #f8f6f3;
    align-items: center;
    padding: 84px 21px 31px 43px;
    gap: 23px;
    margin: 0 13px;
}

.blog-post-box.style-two {
    text-align: right;
    padding: 85px 49px 31px 21px;
}

.blog-post-content a {
    display: inline-block;
    font-size: 20px;
    line-height: 26px;
    color: #001819;
    font-weight: 600;
    transition: 0.5s;
}

.blog-post-content a:hover {
    color: var(--primary);
}

.blog-post-content p {
    font-size: 14px;
    margin: 0;
    color: var(--primary);
}

.blog-details-post .owl-nav {
    position: relative;
}

.blog-details-post .owl-prev {
    position: absolute;
    top: -159px;
    left: 54px;
    font-size: 18px !important;
    color: #001819;
    font-weight: 500;
}

.blog-details-post .owl-prev i {
    color: #49AF45;
    display: inline-block;
    font-size: 13px;
    margin-right: 5px;
    position: relative;
    top: -1px;
}

.blog-details-post .owl-next {
    position: absolute;
    top: -159px;
    right: 54px;
    font-size: 18px;
    color: #001819;
    font-weight: 500;
}

.blog-details-post .owl-next i {
    color: #49AF45;
    display: inline-block;
    font-size: 13px;
    margin-left: 5px;
}

.blog-details-post .owl-next i:hover {
    background: transparent;
}

/* Comment CSS */

.single-comment-area {
    background: #F6F6EE;
    padding: 49px 41px 56px;
    margin-top: 61px;
    border-radius: 5px;
}

.blog-details-comment-title h4 {
    font-size: 28px;
    margin: 0 0 28px;
}

.blog-details-comment {
    margin-bottom: 19px;
    position: relative;
    border: 1px solid #22222214;
    padding: 29px 29px 25px;
}

.blog-details-comment.style-two {
    margin-left: 105px;
}

.blog-details-comment-thumb {
    float: left;
    margin-right: 30px;
}

.blog-details-comment-content {
    overflow: hidden;
}

.blog-details-comment-content h2 {
    font-size: 20px;
    margin-top: 0;
    display: inline-block;
    font-weight: 700;
    margin-right: 30px;
}

.blog-details-comment-content p {
    font-size: 15px;
    margin: 13px 0 0;
}

.blog-details-comment-reply {
    position: absolute;
    right: 22px;
    top: 21px;
}

.blog-details-comment-reply a {
    background: #49AF45;
    padding: 3px 20px;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    border-radius: 2px;
    display: inline-block;
}

.blog-details-comment.reply {
    margin-left: 70px;
    padding-top: 35px;
    border-top: 2px solid rgba(255, 255, 255, 0.2);
}

.blog-details-contact-title h4 {
    font-size: 23px;
    font-weight: 600;
    padding-bottom: 31px;
}

.blog-details-area .contact-input-box input {
    background: #fff;
    border: transparent;
    width: 100%;
    height: 60px;
    padding: 22px;
    outline: 0;
    margin-bottom: 11px;
}

.blog-details-area .contact-input-box textarea {
    background: #fff;
    border: transparent;
    width: 100%;
    height: 170px;
    padding: 12px 22px 0;
    outline: 0;
    margin-top: 11px;
    margin-bottom: 20px;
}

.input-check-box span {
    font-size: 15px;
    margin-left: 7px;
}

.blog-details-submi-button button {
    background: #49AF45;
    color: #fff;
    text-transform: uppercase;
    border: transparent;
    padding: 12px 26px;
    font-size: 15px;
    margin-top: 34px;
    position: relative;
    z-index: 1;
    transition: 0.5s;
    border: 2px solid #49AF45;
    border-radius: 5px;
    font-weight: 500;
}

.blog-details-submi-button button:hover {
    color: #49AF45;
}

.blog-details-submi-button button:before {
    position: absolute;
    content: "";
    width: 0;
    height: 100%;
    left: 50%;
    top: 0;
    background: #fff;
    transition: 0.5s;
    z-index: -1;
    border-radius: 5px;
}

.blog-details-submi-button button:hover:before {
    width: 100%;
    left: 0;
}

.section-title.left h1 .blog-num {
    font-size: 18px !important
}

.filter-button a {
    background: transparent;
    color: var(--secondary);
    border: 0;
    font-size: 18px;
}

/*sidber Css*/

.widget_search form {
    position: relative;
}

.widget_search input {
    border-radius: 4px;
    padding-left: 20px !important;
    height: 60px;
    width: 100% !important;
    position: relative;
    color: #012549;
    outline: 0 !important;
    border: transparent !important;
}


button.icons {
    border: 0;
    font-size: 16px;
    position: absolute;
    right: 14px;
    top: 20px;
    color: #1e1e1e;
    background: transparent;
    opacity: 0.7;
}

.sidber-widget-recent-post {
    margin-bottom: 20px;
}

.sidber-widget-recent-post img {
    height: 90px;
}

.sidber-widget-recent-post a {
    display: flex;
    align-items: flex-start;
    gap: 19px;
    margin-bottom: 0;
}

.sidber-widget-recent-post h6 {
    transition: 0.5s;
    color: #001819 !important;
    font-weight: 500;
    font-size: 17px;
    line-height: 20px;
    width: 100%;
    /* width: 95%; */
    display: inline-block;
    transition: 0.5s;
    margin-top: 0;
}

.sidber-widget-recent-post:hover h6 {
    color: #49AF45 !important;
}

.recent-widget-content {
    width: 100%;
}

.recent-widget-content p {
    font-size: 14px;
    margin: 0;
    /* color: #49AF45; */
}

.recent-widget-content p i {
    color: #49AF45;
}

.widget-catefories-tags a {
    display: inline-block;
    color: #101010;
    font-weight: 500;
    background: #fff;
    padding: 6px 19px;
    margin: 6px 3px;
    position: relative;
    z-index: 1;
    font-size: 15px;
}

.widget-catefories-tags a:hover {
    color: #fff;
}

.widget-catefories-tags a:before {
    position: absolute;
    content: "";
    width: 0;
    height: 100%;
    left: 50%;
    top: 0;
    background: #49AF45;
    transition: 0.5s;
    z-index: -1;
}

.widget-catefories-tags a:hover:before {
    width: 100%;
    left: 0;
}


.service-title-area {
    background-image: url(../images/home2/service-title-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    padding: 112px 0 286px;
    position: relative;
}

.service-title-area .section-title.center h1 {
    color: #fff;
}

.service-shape-one {
    position: absolute;
    top: 26%;
    left: 10%;
    animation: dance2 4s linear infinite;
}

.service-shape-two {
    position: absolute;
    top: 26%;
    right: 10%;
    animation: dance2 4s linear infinite;
}

.service-list-2 .owl-dots {
    text-align: center;
    position: relative;
    top: 45px;
    left: 0;
}

.service-list-2 .owl-dot {
    background: #C5CAC3;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
    margin: 0 6px;
}

.service-list-2 .owl-dot.active {
    background: var(--primary);
    position: relative;
}

.service-list-2 .owl-dot.active:before {
    position: absolute;
    content: "";
    width: 20px;
    height: 20px;
    left: -5px;
    top: -5px;
    border: 1px solid var(--primary);
    border-radius: 50%;
}


.project-list-2 .owl-dots {
    text-align: center;
    position: relative;
    top: 45px;
    left: 0;
}

.project-list-2 .owl-dot {
    background: #C5CAC3;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
    margin: 0 6px;
}

.project-list-2 .owl-dot.active {
    background: var(--primary);
    position: relative;
}

.project-list-2 .owl-dot.active:before {
    position: absolute;
    content: "";
    width: 20px;
    height: 20px;
    left: -5px;
    top: -5px;
    border: 1px solid var(--primary);
    border-radius: 50%;
}


/*---=================================
   <!--Faqs Area-->
==================================---*/
.faqs-area {
    background-image: url(../images/home2/faqs-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 124px 0 196px;
    overflow: hidden;
}

.faqs-left {
    position: relative;
}

.faqs-area .section-title.left {
    margin-bottom: 36px;
}

.faqs-area .echofy-button {
    margin-top: 0;
    display: inline-block;
}

.faqs-container {
    overflow: hidden;
}

.faq-singular {
    position: relative;
    background: #ffff;
    margin-bottom: 20px;
}

.faq-singular:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 65px;
    left: 0;
    top: 0;
    background: var(--light);
    z-index: 1;
    border-radius: 5px;
    transition: 0.5s;
}

.faq-singular.active:before {
    background: var(--primary);
    border-radius: 5px 5px 0 0;
}

.faq-singular .faq-question {
    position: relative;
    cursor: pointer;
    margin: 0;
    padding: 19px 25px 19px 27px;
    font-weight: 500;
    font-size: 20px;
    border: 1px solid #ccc;
    border-color: #ccc;
    border-radius: 5px;
    z-index: 2;
    transition: 0.5s;
}

.faq-singular.active .faq-question {
    color: #fff;
    border-color: var(--primary);
    border-radius: 5px 5px 0 0;
}

.faq-singular .faq-question:before {
    position: absolute;
    content: ">";
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 30px;
    font-weight: 400;
    transition: 0.5s;
}

.faq-singular.active .faq-question:before {
    transform: translateY(-50%) rotate(87deg);
    color: #fff;
}

.faq-question:after {
    position: absolute;
    content: "";
    width: 2px;
    height: 24px;
    left: 71px;
    top: 20px;
    background: #ccc;
    transition: 0.5s;
}

.faq-singular.active .faq-question:after {
    background: #fff;
}

.faq-question img {
    padding-right: 27px;
    transition: 0.5s;
}

.faq-singular.active .faq-question img {
    filter: brightness(0) invert(1);
}

.faq-answer {
    display: none;
    padding: 21px 30px 25px;
    border: 1px solid #ccc;
    border-radius: 0 0 5px 5px
}

.faq-answer p {
    width: 100%;
    margin: 0 0 14px;
}

.faq-answer ul {
    margin: 25px 0;
}

.faq-answer li {
    font-size: 18px;
    list-style: none;
    background-image: url(../images/dpolux/section-shape.png);
    background-repeat: no-repeat;
    margin-left: 15px;
    padding-left: 40px;
    margin-bottom: 15px;
    width: 95%;
}


.faqs-shape {
    position: absolute;
    left: 240px;
    bottom: -43px;
    animation: dance3 4s linear infinite;
}

.faqs-shape-2 {
    position: absolute;
    top: -103px;
    right: 13px;
    animation: dance3 4s linear infinite;
}


/*---=================================
   <!--Donation Area --
==================================---*/

.donation-title-area {
    background-image: url(../images/home2/service-title-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    padding: 109px 0 294px;
    position: relative;
}

.donation-title-area .section-title.center h1 {
    color: #ffff;
}

.donation-shape-one {
    position: absolute;
    top: 26%;
    left: 10%;
    animation: dance2 4s linear infinite;
}

.donation-shape-two {
    position: absolute;
    top: 26%;
    right: 10%;
    animation: dance2 4s linear infinite;
}

.donation-area {
    background-color: #f1faf0;
    padding: 4px 0 125px;
}

.donation-area .row.donate {
    margin-top: -282px;
}

.single-donation-box {
    margin: 0 12px;
}

.donation-thumb {
    position: relative;
}

.donation-thumb img {
    width: 100%;
    transition: 0.5s;
}

.single-donation-box:hover .donation-thumb img {
    opacity: 0.5;
}

.donate-button {
    position: absolute;
    bottom: 0px;
    left: 32%;
    opacity: 0;
    transition: 0.5s;
}

.single-donation-box:hover .donate-button {
    bottom: 114px;
    opacity: 1;
}

.donate-button a {
    display: inline-block;
    background: var(--primary);
    color: #fff;
    font-size: 16px;
    padding: 11px 23px;
    border-radius: 5px;
}

.donation-content {
    background: #fff;
    padding: 26px 35px 23px;
}

.donation-content a {
    display: inline-block;
    color: #001819;
    font-size: 24px;
    font-weight: 600;
    line-height: 30px;
    transition: 0.5s;
}

.donation-content a:hover {
    color: var(--primary);
}

.donation-content p {
    margin: 19px 0 39px;
}

.donation-area .skill-bg {
    background: #DCEFDB;
    width: 100%;
}

.donation-area span.number {
    top: -31px;
    color: #001819;
}

.donation-area .skills.html.style-one {
    width: 75%;
}

.donation-area .skills.html.style-two {
    width: 60%;
}

.slider-content {
    display: flex;
    justify-content: space-between;
}

.slider-content span {
    display: inline-block;
    color: #868681;
}

span.price {
    font-size: 16px;
    color: #001819 !important;
    display: inline-block;
    font-weight: 500;
}


.donation-details-area {
    padding: 100px 0 100px;
}

.donation-details-area .single-donation-box {
    margin: 0;
}

.donation-details-area .donation-content {
    background: #F6F6EE;
    padding: 67px 39px 23px;
}

.donation-details-area .skill-bg {
    width: 99%;
}

h4.dontaion-detais-title {
    font-size: 30px;
    margin: 40px 0 24px;
}

p.dontaion-detais-desc {
    font-size: 17px;
}


/*tab content*/
.donation-details-area .tabcontent {
    background: var(--primary);
    padding: 13px 30px 20px;
    text-align: right;
    border-radius: 4px;
    margin: 45px 0 20px;
    position: relative;
}

.donation-details-area .tabcontent:before {
    position: absolute;
    content: "Your Donation :";
    left: 30px;
    top: 26px;
    font-size: 18px;
    font-weight: 500;
    color: #fff;
}

.donation-details-area .tabcontent h3 {
    font-weight: 700;
    font-size: 30px;
    color: #fff;
}


/*button count number*/

.donation-details-area button.tablink {
    border: 0;
    background: #F6F6EE;
    color: #1b3434;
    height: 50px;
    width: 88px;
    margin-right: 6px;
    border-radius: 4px;
    font-weight: 500;
    transition: .5s;
    margin-bottom: 5px;
}

.donation-details-area button.tablink:hover {
    background: #49AE45;
    color: #fff;
}


/*forms title*/
.donation-details-area .up.forms-title h1 {
    font-size: 20px;
    font-weight: 600;
    padding: 38px 0 20px;
}

.donation-details-area .form-title h6 {
    font-size: 17px;
    padding: 0px 0 12px;
    font-weight: 500;
    color: #1b3434;
}

.donation-details-area .up.form-box input {
    height: 58px;
    background-color: #fff;
    border: 1px solid rgba(27, 52, 52, 0.1);
    transition: .5s;
    padding: 0px 20px;
    display: block;
    width: 100%;
    color: #0D0E14;
    margin-bottom: 18px;
    border-radius: 4px;
    outline: 0;
}


.donation-details-area .check-content h5 {
    font-size: 20px;
    font-weight: 500;
    padding: 16px 0px 18px;
}

.donation-details-area .dpx label {
    color: #1b3434;
    cursor: pointer;
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
    margin-right: 30px;
}

.donation-details-area .option-input {
    -webkit-appearance: none;
    appearance: none;
    position: relative;
    top: 5.33333px;
    right: 0;
    bottom: 0;
    left: 0;
    height: 20px;
    width: 20px;
    transition: all 0.15s ease-out 0s;
    background: #e2e5e8;
    border: 0;
    color: #fff;
    cursor: pointer;
    display: inline-block;
    margin-right: 0.4rem;
    outline: none;
    position: relative;
    z-index: 1000;
}

.donation-details-area .option-input:hover {
    background: #9faab7;
}

.donation-details-area .option-input:checked {
    background: #49AF45;
}

.donation-details-area .option-input:checked::before {
    width: 10px;
    height: 10px;
    display: flex;
    content: '\f00c';
    font-size: 10px;
    font-weight: bold;
    position: absolute;
    align-items: center;
    font-family: 'Font Awesome 5 Free';
    left: 5px;
    top: 5px;
}

.donation-details-area .option-input.radio {
    border-radius: 50%;
}

.donation-details-area .option-input.radio::after {
    border-radius: 50%;
}

.donation-details-area button.submit-donation {
    background: var(--primary);
    border: transparent;
    color: #fff;
    padding: 15px 40px;
    border-radius: 4px;
    margin-top: 43px;
    border: 2px solid var(--primary);
    transition: 0.5s;
}

.donation-details-area button.submit-donation:hover {
    background: transparent;
    color: var(--primary);
}

/*sidber contact*/

.widget-sidber-contact-box {
    background-image: url(../images/dpolux/sidber-contact.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    border-radius: 5px;
    padding: 48px 43px 48px;
}

p.widget-sidber-contact-text {
    font-size: 18px;
    color: #ffffff;
    font-weight: 500;
    margin: 0;
    padding: 25px 0 13px;
}

h3.widget-sidber-contact-number {
    font-size: 24px;
    color: #ffffff;
    font-weight: 600;
    margin: 0 0 14px;
}

span.widget-sidber-contact-gmail {
    font-size: 16px;
    color: #ffffff;
    font-weight: 400;
    margin: 0;
}

span.widget-sidber-contact-gmail i {
    display: inline-block;
    font-size: 17px;
    color: var(--primary);
    position: relative;
    top: 2px;
    margin-right: 10px;
}

.widget-sidber-contact-btn a {
    display: inline-block;
    font-size: 16px;
    color: #ffffff;
    font-weight: 400;
    font-family: "Inter";
    text-decoration: none;
    background: var(--primary);
    padding: 16px 98px 15px;
    border-radius: 5px;
    margin-top: 55px;
    transition: 0.5s;
    border: 2px solid var(--primary);
}

.widget-sidber-contact-btn a:hover {
    background: transparent;
    color: var(--primary);
}

.widget-sidber-contact-btn a i {
    display: inline-block;
    font-size: 18px;
    position: relative;
    top: 2px;
    margin-left: 3px;
}

/*blog Grid Css*/

.blog-grid-area {
    padding: 123px 0 103px;
}

/*blog List Area Css*/

.blog-list-area {
    padding: 123px 0 103px;
}

.single-blog-list-box {
    margin-bottom: 25px;
}

.blog-thumb {
    overflow: hidden;
}

.blog-thumb img {
    width: 100%;
    transition: 0.5s;
}

.single-blog-list-box:hover .blog-thumb img {
    transform: scale(1.2) skew(-10deg);
}

.blog-list-content {
    padding: 27px 36px 20px;
    border: 1px solid #2222;
}

.blog-list-area .meta-blog span {
    display: inline-block;
    margin-right: 28px;
    font-weight: 500;
}

.blog-list-area span.mate-text {
    padding-left: 36px;
    position: relative;
}

.blog-list-area span.mate-text:before {
    position: absolute;
    content: "";
    width: 20px;
    height: 2px;
    left: 5px;
    top: 11px;
    background: #49AF45;
}

.blog-list-area .meta-blog i {
    display: inline-block;
    color: #49AF45;
    padding-right: 9px;
}

.blog-list-area .meta-blog img {
    margin-right: 8px;
    position: relative;
    top: -1px;
}

a.blog-list-title {
    display: inline-block;
    color: #001819;
    font-size: 32px;
    margin: 14px 0 20px;
    font-weight: 700;
}

a.blog-list-title:hover {
    color: #49AF45;
}

p.blog-list-desc {
    font-size: 17px;
    margin-bottom: 7px;
}

.blog-list-button {
    border: 1px solid #2222;
    border-top: transparent;
    padding: 22px 35px;
    border-radius: 0 0 5px 5px;
}

.blog-list-button a {
    display: inline-block;
    font-size: 16px;
    color: #001819;
    font-weight: 500;
    transition: 0.5s;
}

.blog-list-button a:hover {
    color: var(--primary);
}

.blog-list-button i {
    display: inline-block;
    position: relative;
    top: 2px;
    left: 4px;
    font-size: 17px;
}

/*
<!-- =================================== -->
<!-- Home Page -->
<!-- =================================== -->*/

#home-page .about-area {
    background-color: var(--light);
    padding: 124px 0 125px;
}

#home-page .about-area .about-thumb {
    position: relative;
    left: -45px;
}

#home-page .about-area .leaf {
    bottom: -200px;
    left: -6px;
}

#home-page .service-area {
    padding: 125px 0 200px;
    background-image: url(../images/dpolux/service-bg-home.jpg);
    background-position: 0 -80px;
    background-repeat: no-repeat;
    background-color: var(--light);
    background-size: 100% 702px;
}

#home-page .service-area .section-title h1,
#home-page .service-area .section-title h4 {
    color: #fff;
}

#home-page .service-area .leaf {
    bottom: -250px;
    right: -150px;
}

/*
<!-- =================================== -->
<!-- About Page -->
<!-- =================================== -->*/

#about-page {
    padding-bottom: 0;
}

#about-page .breadcrumb-area {
    background-image: url(../images/dpolux/about-bg.jpg);
}

#about-page .about-area {
    background-color: white;
}

#about-page .about-area-1 {
    padding-top: 100px;
    padding-bottom: 50px;
}

#about-page .about-area-2 {
    padding-top: 50px;
    padding-bottom: 100px;
}

#about-page .about-thumb {
    position: relative;
    left: 0;
}

#about-page .about-box-content p,
#about-page .faq-answer {
    font-size: 18px;
}

#about-page .about-picture {
    width: 100%;
}

#about-page .about-area-1 .leaf {
    bottom: -250px;
    right: -100px;
    z-index: 0;
}

#about-page .about-area-2 .leaf {
    bottom: -190px;
    left: 0;
}

#about-page .about-area-2 .about-thumb {
    padding-right: 25px;
}

#about-page .faq-question {
    padding-left: 80px;
}

#about-page .faq-question:after {
    left: 65px;
}

#about-page .faq-question img {
    width: 55px;
    position: absolute;
    top: 15px;
    left: 20px;
}

#about-page .value-area {
    margin-top: 0;
    padding: 200px 0;
    background-image: url(../images/dpolux/about-bg-value.jpg);
}

#about-page .process-icon-thumb-two:before {
    border-color: var(--secondary);
}

#about-page .process-icon-thumb-two:after {
    background: var(--secondary);
}

#about-page .single-process-box-two {
    margin-top: 75px
}

/*
<!-- =================================== -->
<!-- Services Page -->
<!-- =================================== -->*/

#service-page {
    padding-bottom: 0;
}

#service-page .breadcrumb-area {
    background-image: url(../images/dpolux/service-bg.jpg);
}

#service-page .service-area {
    padding: 100px 0;
}

#service-page .service-area h1 {
    font-size: 40px;
}

#service-page .single-service-box {
    margin-bottom: 45px;
}

#service-page .leaf {
    bottom: -175px;
    right: 0;
}

/*
<!-- =================================== -->
<!-- Services Detail Page -->
<!-- =================================== -->*/

#service-detail-page {
    padding-bottom: 0;
}

#service-detail-page .service-detail-area {
    background-color: #F8F8F8;
}

#service-detail-page.service-1 .breadcrumb-area {
    background-image: url(../images/dpolux/service-1-bg.jpg);
}

#service-detail-page.service-2 .breadcrumb-area {
    background-image: url(../images/dpolux/service-2-bg.jpg);
}

#service-detail-page.service-3 .breadcrumb-area {
    background-image: url(../images/dpolux/service-3-bg.jpg);
}

#service-detail-page.service-4 .breadcrumb-area {
    background-image: url(../images/dpolux/service-4-bg.jpg);
}

#service-detail-page.service-5 .breadcrumb-area {
    background-image: url(../images/dpolux/service-5-bg.jpg);
}

#service-detail-page.service-6 .breadcrumb-area {
    background-image: url(../images/dpolux/service-6-bg.jpg);
}

#service-detail-page .section-title {
    position: relative;
    display: flex;
}

#service-detail-page h1 {
    font-size: 30px;
    padding-left: 110px;
    line-height: 35px;
    padding-top: 10px;
    height: 90px;
    line-height: 80px;
    align-content: space-evenly;
}

/* #service-detail-page.service-1 h1 {
    width: 420px;
    line-height: 35px;
} */

#service-detail-page .service-icon {
    position: absolute;
    top: 0;
    left: 0;
    width: 90px;
    height: 90px;
    align-self: anchor-center;
}

.service-detail-thumb img {
    border-radius: 10px;
}

.service-detail-content {
    padding: 45px 0 25px;
}

.service-detail-content p {
    font-size: 24px;
    color: var(--dark);
    line-height: 34px;
}

.service-detail-content p:last-child {
    margin: 0;
}

.service-detail-icon-box {
    border-radius: 10px;
    background-color: white
}

#service-detail-page .widget-sidber {
    background-color: transparent;
    margin: 0;
}

#service-detail-page .widget-category ul li a {
    margin-bottom: 10px;
    font-size: 16px;
}

#service-detail-page .widget-category ul li a.active {
    color: #fff;
}

#service-detail-page .widget-category ul li a.active:before {
    width: 100%;
    left: 0;
}

#service-detail-page .widget-sidber-contact-box {
    background-image: url(../images/dpolux/service-contact.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    padding: 45px 36px;
}

#service-detail-page .widget-sidber-contact-box,
#service-detail-page .widget-sidber-contact-box::before {
    border-radius: 10px;
}

#service-detail-page .widget-sidber-contact-text {
    font-size: 24px;
    padding-top: 0;
}

#service-detail-page .widget-sidber-contact-number {
    margin-bottom: 5px;
}

#service-detail-page .widget-sidber-contact-number i {
    font-size: 17px;
    color: var(--primary);
    margin-right: 10px;
}

#service-detail-page .widget-sidber-contact-number span {
    font-size: 18px;
}

/*
<!-- =================================== -->
<!-- Blog Page (Biblioteca) -->
<!-- =================================== -->*/

#blog-page {
    padding-bottom: 0;
}

#blog-page .blog-area {
    background-color: #F8F8F8;
}

#blog-page .breadcrumb-area {
    background-image: url(../images/dpolux/blog-bg.jpg);
}

#blog-page .widget-sidber {
    background-color: transparent;
}

#blog-page .widget-sidber img {
    border-radius: 10px
}

#blog-page .widget-category {
    background: white;
    border-radius: 5px;
    box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.3);
}

#blog-page .widget-category ul li a {
    margin-bottom: 5px;
}

#blog-page .widget-category .cat-num {
    color: var(--primary);
    opacity: 1;
}

#blog-page .widget-category a:hover .cat-num,
#blog-page .widget-category a.active .cat-num {
    color: white;
}

#blog-page .mobile_search input,
#blog-page .widget_search input {
    border: 2px solid #F1F1F1 !important;
    font-size: 18px;
}

#blog-page .blog-details-thumb img {
    border-radius: 10px;
    pointer-events: none;
}

#blog-page .blog-details-content {
    border: 0;
    padding: 0;
    padding-top: 50px;
}

#blog-page .blog-details-content .meta-blog {
    margin-bottom: 50px;
}

#blog-page .blog-details-content h4 {
    font-size: 30px;
}

#blog-page .blog-details-content h4,
#blog-page .blog-details-content h6 {
    margin: 50px 0 25px;
}

/*
<!-- =================================== -->
<!-- Contact Area -->
<!-- =================================== -->*/

#contact-page .breadcrumb-area {
    background-image: url(../images/dpolux/contact-bg.jpg);
}

#contact-page label {
    color: var(--dark);
}

.contact-area {
    padding: 123px 0 118px;
}

.contact-area .section-title.left {
    margin-bottom: 42px;
}

.contact-icon {
    color: var(--primary);
    background: white;
    border-radius: 0 50px 50px 50px;
    height: 90px;
    width: 90px;
    display: flex;
    justify-self: center;
    justify-content: center;
    align-items: center;
}

.contact-icon i {
    font-size: 35px;
}

.row.contact-info-bg {
    background-color: var(--primary);
    padding: 50px 30px 45px;
    border-radius: 10px;
}

.contact-info-box {
    text-align: center;
    padding: 0 50px 0;
    position: relative;
}

.contact-info-box:before {
    position: absolute;
    content: "";
    width: 2px;
    height: 120px;
    right: -10px;
    top: 61px;
    background: #ffffff73;
}

.contact-info-box.two:before {
    background: transparent;
}

.contact-info-content h4 {
    font-size: 24px;
    color: #fff;
    margin: 19px 0 10px;
    font-weight: 600;
}

.contact-info-content p {
    color: #fff;
    margin: 0;
}

.row.contact-form-area {
    padding-top: 100px;
}

.google-map iframe {
    width: 93%;
    height: 630px;
    border-radius: 10px;
}

.single-input-box input {
    width: 100%;
    height: 57px;
    outline: 0;
    color: #868681;
    border: 1px solid #2222;
    border-radius: 5px;
    padding: 0 21px;
    margin-bottom: 20px;
}

.single-input-box input::placeholder {
    color: #868681;
}

.single-input-box textarea {
    width: 100%;
    height: 150px;
    outline: 0;
    color: #868681;
    border: 1px solid #2222;
    border-radius: 5px;
    padding: 10px 21px;
    margin-bottom: 20px;
}

.single-input-box textarea::placeholder {
    color: #868681;
}

.input-check input {
    width: 16px;
    height: 16px;
    position: relative;
    top: 3px;
    margin-right: 5px;
}

.input-check span {
    display: inline-block;
    font-size: 17px;
}

.contact-submit-button button {
    background: var(--primary);
    color: #fff;
    border: transparent;
    padding: 13px 25px;
    border-radius: 3px;
    margin-top: 35px;
    outline: 0;
    border: 2px solid var(--primary);
    transition: 0.5s;
}

.contact-submit-button button:hover {
    background: transparent;
    color: var(--primary);
}


/*
<!-- ============================================================== -->
<!--Scrollup Button Section -->
<!-- ============================================================== -->*/

.splitting .char {
    animation: slide-in 2s cubic-bezier(.5, 0, .5, 1) both;
    animation-delay: calc(200ms * var(--char-index));
}

@keyframes slide-in {
    from {
        transform: translateY(-1em) rotate(-.5turn) scale(0.5);
        opacity: 0;
    }
}


/*------back-to-top------------*/
.prgoress_indicator {
    position: fixed;
    right: 26px;
    bottom: 35px;
    height: 46px;
    width: 46px;
    cursor: pointer;
    display: block;
    border-radius: 50px;
    box-shadow: inset 0 0 0 2px rgba(22, 93, 245, 0.2);
    z-index: 9999999999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transform: translateY(15px) !important;
    transition: all 200ms linear !important;
}

.prgoress_indicator.active-progress {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) !important;
}

.prgoress_indicator::after {
    position: absolute;
    content: "\f106";
    font-family: "Font Awesome 5 Free";
    text-align: center;
    line-height: 46px;
    font-size: 18px;
    color: var(--primary);
    left: 0;
    top: 0;
    height: 46px;
    width: 46px;
    cursor: pointer;
    display: block;
    font-weight: 900;
    z-index: 1;
    transition: all 200ms linear !important;
}

.prgoress_indicator::before {
    position: absolute;
    content: "\f106";
    font-family: "Font Awesome 5 Free";
    text-align: center;
    line-height: 46px;
    font-size: 18px;
    font-weight: 900;
    opacity: 0;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    left: 0;
    top: 0;
    height: 46px;
    width: 46px;
    cursor: pointer;
    display: block;
    z-index: 2;
    transition: all 200ms linear !important;
}

.prgoress_indicator:hover ::after {
    color: var(--primary);
}

.prgoress_indicator:hover ::before {
    opacity: 1;
}

.prgoress_indicator svg path {
    fill: none;
}

.prgoress_indicator svg.progress-circle path {
    stroke: var(--primary);
    stroke-width: 4;
    box-sizing: border-box;
    transition: all 200ms linear !important;
}



/*** 
====================================================================
    Search Popup
====================================================================
***/


.search-popup {
    position: fixed;
    left: 0;
    top: 0;
    height: 100vh;
    width: 100%;
    z-index: 99999;
    margin-top: -540px;
    transform: translateY(-100%);
    background-color: rgba(0, 0, 0, 0.90);
    -webkit-transition: all 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -moz-transition: all 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -o-transition: all 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    transition: all 1500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
    /* easeInOutQuint */
    -webkit-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -moz-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
    -o-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
    transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
    /* easeInOutQuint */
}

.search-popup {
    width: 100%;
}

.search-active .search-popup {
    transform: translateY(0%);
    margin-top: 0;
}

.search-popup .close-search {
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    margin-top: -200px;
    border-radius: 50%;
    text-align: center;
    background-color: var(--primary);
    width: 70px;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
    border-bottom: 3px solid #fff;
    border-top: 3px solid #fff;
    border-right: 3px solid #062462;
    border-left: 3px solid #062462;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    height: 70px;
    line-height: 70px;
    text-align: center;
}

.search-active .search-popup .close-search {
    visibility: visible;
    opacity: 1;
    top: 50%;
    -webkit-transition-delay: 1500ms;
    -moz-transition-delay: 1500ms;
    -ms-transition-delay: 1500ms;
    -o-transition-delay: 1500ms;
    transition-delay: 1500ms;
}

.search-popup form {
    position: absolute;
    max-width: 700px;
    top: 50%;
    left: 15px;
    right: 15px;
    margin: -35px auto 0;
    transform: scaleX(0);
    transform-origin: center;
    background-color: #111111;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.search-active .search-popup form {
    transform: scaleX(1);
    -webkit-transition-delay: 1200ms;
    -moz-transition-delay: 1200ms;
    -ms-transition-delay: 1200ms;
    -o-transition-delay: 1200ms;
    transition-delay: 1200ms;
}

.search-popup .form-group {
    position: relative;
    margin: 0px;

    overflow: hidden;
}

.search-popup .form-group input[type="text"],
.search-popup .form-group input[type="search"] {
    position: relative;
    display: block;
    font-size: 18px;
    line-height: 50px;
    color: #000000;
    height: 70px;
    width: 100%;
    padding: 10px 30px;
    background-color: #fff;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
    font-weight: 500;
    text-transform: capitalize;
}

.search-popup .form-group input[type="submit"],
.search-popup .form-group button {
    position: absolute;
    right: 30px;
    top: 0px;
    height: 70px;
    line-height: 70px;
    background: transparent;
    text-align: center;
    font-size: 24px;
    color: var(--primary);
    padding: 0;
    cursor: pointer;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    border: none;
}

.search-popup .form-group input[type="submit"]:hover,
.search-popup .form-group button:hover {
    color: #000000;
}

.search-popup input::placeholder,
.search-popup textarea::placeholder {
    color: #000000;
}

.search-popup .close-search.style-two {
    position: absolute;
    right: 25px;
    left: auto;
    color: #fff;
    width: auto;
    height: auto;
    top: 25px;
    margin: 0px;
    border: none;
    background: none !important;
    box-shadow: none !important;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}

.search-box-btn {
    display: inline-block;
    padding-left: 22px;
}

.search-box-btn i {
    display: inline-block;
    color: #fff;
    line-height: 30px;
    text-align: center;
    font-size: 18px;
    cursor: pointer;
    transition: .5s;
}

.upp.search-box-btn i {
    color: #9E9FA1;
}

.search-box-btn.search-box-outer span i {
    font-size: 20px;
    display: inline-block;
    color: #fff;
    padding-left: 17px;
    position: relative;
    z-index: 1;
}

.upp.search-box-btn.search-box-outer span i {
    color: #9E9FA1;
}

.search-box-btn.search-box-outer span i:after {
    position: absolute;
    content: "0";
    right: -10px;
    top: -4px;
    width: 16px;
    height: 16px;
    line-height: 16px;
    text-align: center;
    background: var(--primary);
    color: #fff;
    border-radius: 50%;
    display: inline-block;
    font-size: 12px;
}

.flaticon-multiply:before {
    content: inherit;
}

button.close-search i {
    font-size: 25px;
    color: #fff;
    display: inline-block;
}


span.flaticon-multiply i {
    display: inline-block;
    color: var(--primary);
}



/*===========================
<-- Sidbar -->
=============================*/

.xs-sidebar-group .xs-overlay {
    left: 100%;
    top: 0;
    position: fixed;
    z-index: 101;
    height: 100%;
    opacity: 0;
    width: 100%;
    visibility: hidden;
    -webkit-transition: all 0.4s ease-in 0.8s;
    -o-transition: all 0.4s ease-in 0.8s;
    transition: all 0.4s ease-in 0.8s;
}

.xs-sidebar-group .widget-heading {
    position: absolute;
    top: 23px;
    right: 0;
    padding: 25px;
}

.xs-sidebar-widget {
    position: fixed;
    right: -100%;
    top: 0;
    bottom: 0;
    width: 100%;
    max-width: 360px;
    z-index: 999999;
    overflow: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    background-color: #272727;
    -webkit-transition: all 0.5s cubic-bezier(0.9, 0.03, 0, 0.96) 0.6s;
    -o-transition: all 0.5s cubic-bezier(0.9, 0.03, 0, 0.96) 0.6s;
    transition: all 0.5s cubic-bezier(0.9, 0.03, 0, 0.96) 0.6s;
    visibility: hidden;
    opacity: 0;
}

.xs-sidebar-group.isActive .xs-overlay {
    opacity: 0.7;
    visibility: visible;
    -webkit-transition: all 0.8s ease-out 0s;
    -o-transition: all 0.8s ease-out 0s;
    transition: all 0.8s ease-out 0s;
    left: 0;
}

.xs-sidebar-group.isActive .xs-sidebar-widget {
    opacity: 1;
    visibility: visible;
    right: 0;
    -webkit-transition: all 0.7s cubic-bezier(0.9, 0.03, 0, 0.96) 0.4s;
    -o-transition: all 0.7s cubic-bezier(0.9, 0.03, 0, 0.96) 0.4s;
    transition: all 0.7s cubic-bezier(0.9, 0.03, 0, 0.96) 0.4s;
}

.sidebar-textwidget {
    padding: 40px 32px;
}

.close-side-widget i {
    color: #49AE45;
    font-size: 28px;
    display: block;
}

.sidebar-widget-container {
    position: relative;
    top: 150px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s ease-in 0.3s;
    -o-transition: all 0.3s ease-in 0.3s;
    transition: all 0.3s ease-in 0.3s;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.xs-sidebar-group.isActive .sidebar-widget-container {
    top: 0px;
    opacity: 1;
    visibility: visible;
    -webkit-transition: all 1s ease-out 1.2s;
    -o-transition: all 1s ease-out 1.2s;
    transition: all 1s ease-out 1.2s;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.xs-overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    opacity: 0.5;
    z-index: 0;
}

.xs-bg-black {
    background-color: #49AE45;
}

/*html css*/
.nav-logo {
    margin: 0 0 50px;
}

.content-box h2 {
    color: #fff;
    font-size: 26px;
    font-weight: 600;
}

.content-box p {
    display: inline-block;
    color: #fff;
    padding: 15px 0 0;
}

a.theme-btn.btn-style-two span {
    color: #fff;
    font-size: 20px;
}

a.theme-btn.btn-style-two i {
    color: #49AE45;
}

.contact-info h2 {
    color: #fff;
    font-size: 26px;
    margin-bottom: 15px;
    font-weight: 600;
}

ul.list-style-one li {
    display: block;
    list-style: none;
    color: #fff;
    padding: 16px 0 0;
    overflow: hidden;
}

ul.list-style-one li span {
    font-size: 20px;
    font-weight: 600;
    color: #49AE45;
    margin: 0 10px 0 0px;
}

ul.social-box {
    margin: 30px 0 0;
}

ul.social-box li {
    display: inline-block;
    list-style: none;
    margin: 0 6px 0 0;
}

ul.social-box li a {
    display: inline-block;
    width: 35px;
    height: 35px;
    line-height: 36px;
    text-align: center;
    background: #fff;
    color: #49AE45;
    transition: .5s;
    font-size: 18px;
    border-radius: 3px;
}

ul.social-box li a:hover {
    background: #49AE45;
    color: #fff;
}

/*===========================
<-- Loader -->
=============================*/
.loader-wrapper {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    transition: 0.8s 1s ease;
    z-index: 99999;
}

.loader {
    position: relative;
    display: block;
    z-index: 201;
    top: 50%;
    left: 50%;
    width: 100px;
    height: 100px;
    margin: -50px 0 0 -50px;
    border-radius: 50%;
    transition: all 1s 1s ease;
    border: 3px solid transparent;
    border-top-color: var(--secondary);
    -webkit-animation: spin 1.5s linear infinite;
    -moz-animation: spin 1.5s linear infinite;
    -o-animation: spin 1.5s linear infinite;
    animation: spin 1.5s linear infinite;
}

.loader:before {
    position: absolute;
    content: '';
    top: 6px;
    left: 6px;
    right: 6px;
    bottom: 6px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-left-color: var(--primary);
    -webkit-animation: spin 2s linear infinite;
    -moz-animation: spin 2s linear infinite;
    -o-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}

.loader:after {
    position: absolute;
    content: '';
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-right-color: #fff;
    -webkit-animation: spin 2.5s linear infinite;
    -moz-animation: spin 2.5s linear infinite;
    -o-animation: spin 2.5s linear infinite;
    animation: spin 2.5s linear infinite;
}

/*/ Here comes the Magic /*/

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-moz-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.loader-wrapper .loder-section {
    position: fixed;
    top: 0;
    width: 50%;
    height: 100%;
    background: #111;
    z-index: 2;
}

.loader-wrapper .loder-section.left-section {
    left: 0;
    transition: 1s 1.4s ease;
}

.loader-wrapper .loder-section.right-section {
    right: 0;
    transition: 1s 1.4s ease;
}

/*/ When page loaded /*/
.loaded .loder-section.left-section {
    left: -100%;
}

.loaded .loder-section.right-section {
    right: -100%;
}

.loaded .loader-wrapper {
    visibility: hidden;
}

.loaded .loader {
    top: -100%;
    opacity: 0;
}