/*================================================
Author:  Sourav Prakash
Description: Dazbog Website Main CSS
================================================*/

/*=============================
<-- TABLE OF CONTENTS -->

01. LOADER
02. HEADER & MAIN MENU
03. HERO
04. TEXT RIBBON
05. ECHOFY BUTTON
06. ECHOFY BUTTON 2
07. SERVICES
08. ABOUT
09. TEAM
10. SKILLS
11. CONTACT
12. FOOTER
13. RESPONSIVE
14. ANIMATION
15. CUSTOM
=============================*/

/*=============================
<-- LOADER SECTION -->
=============================*/

.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: #f3297c;
    -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: #10eb9b;
    -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;
}

/* <-- Animation --> */

@-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 .loader-section {
    position: fixed;
    top: 0;
    width: 50%;
    height: 100%;
    background: #111;
    z-index: 2;
}

.loader-wrapper .loader-section.left-section {
    left: 0;
    transition: 1s 1.4s ease;
}

.loader-wrapper .loader-section.right-section {
    right: 0;
    transition: 1s 1.4s ease;
}

/* <-- Page Loading --> */

.loaded .loader-section.left-section {
    left: -100%;
}

.loaded .loader-section.right-section {
    right: -100%;
}

.loaded .loader-wrapper {
    visibility: hidden;
}

.loaded .loader {
    top: -100%;
    opacity: 0;
}







/*=============================
<-- HEADER & MAIN MENU -->
=============================*/

.header-area {
    background: #ffffff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    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: #01257d;
    padding: 28px 0;
    font-size: 18px;
    font-weight: 500;
    transition: 0.5s;
}

.header-menu ul li a:hover{
   color: #00ffff;
}

.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: #00ffff;
    font-size: 16px;
    cursor: pointer;
}

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

.header-button a {
    display: inline-block;
    background: #227020;
    border: 2px solid #227020;
    padding: 8px 20px;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 5px;
    margin-left: 36px;
    position: relative;
    z-index: 1;
    transition: 0.5s;
}

.header-button a:hover{
    color:#227020 !important;
    border: 2px solid #227020;
}

.header-button a:before{
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background:#fff;
    z-index: -1;
    border-radius: 5px;
    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:#227020 !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: rgb(255, 255, 255, 1.0) !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: 385px;
    display: block;
    text-align: left;
    background: rgba(255, 255, 255, 0.92);
    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: 6px solid #01257d;
    border-radius: 3px 3px 0 0;
}

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

.header-menu ul li .sub-menu li a {
    display: block;
    padding: 8px 19px !important;
    color: #3a3b3b;
    width: 385px;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 600;
    transition: 0.5s;
    position: relative;
    z-index: 1;
}

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

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

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




/*=============================
<-- HERO SECTION -->
=============================*/

.hero-area {
    background: url(/assets/media/hero/empowering-growth.webp);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    height: 895px;
    padding-top: 125px;
    position: relative;
    z-index: 1;
}

/**/
.hero-area::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(1, 37, 125, 0.7), rgb(34, 112, 32, 0.2));
    z-index: 2;
}

.hero-area .row {
    position: relative;
    z-index: 3;
}

.hero-content {
    position: relative;
    z-index: 4; 
}

.hero-content h4,
.hero-content h1,
.hero-content p {
    position: relative;
    z-index: 5; 
}
/**/

.hero-style.hero-area{
    background: url(/assets/media/hero/empowering-growth.webp);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    height: 895px;
    padding-top: 125px;
    position: relative;
}

.hero-style-2.hero-area{
    background: url(/assets/media/hero/empowering-growth.webp);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    height: 895px;
    padding-top: 125px;
    position: relative;
}

.hero-content h4 {
    color: #4baf47;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 19px;
}

.hero-content h1 {
    font-size: 76px;
    color: #00ffff;
    font-weight: 800;
    line-height: 71px;
}

.hero-content p {
    opacity: 0.800;
    font-size: 19px;
    line-height: 28px;
    color: #ffffff;
    font-weight: 400;
    width: 49%;
    margin: 20px 0 0;
}

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

.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: #00ffff;
}

.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 */

.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 rgba(0, 255, 255, 0.9);
}

.hero-slides .owl-dots .owl-dot.active {
    background-color: #00ffff;
    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 #00ffff;
    left: -9px;
    top: -9px;
    border-radius: 50%;
    text-align: center;
}




/*=============================
<-- TEXT RIBBON SECTION -->
=============================*/

.text-ribbon-section {
    position: relative;
    background: #fff;
    z-index: 1;
    padding: 32px 0 32px;
}

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

.text-ribbon-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;
}

.text-ribbon-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: 100%;
    -webkit-animation: scroll 35s linear infinite;
    animation: scroll 35s linear infinite;
}

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

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

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

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

.text-ribbon-section .marquee-block .content-box h6.title {
    display: inline-block;
    font-size: 22px;
    color: #01257d;
    font-weight: 500;
    padding: 0 48px;
}

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

  @-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)));
    }
  }




/*=============================
<-- ECHOFY BUTTON -->
=============================*/

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

.echofy-button a {
    display: inline-block;
    background: #227020;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    padding: 14px 40px;
    border-radius: 6px;
    border: 2px solid #227020;
    position: relative;
    z-index: 1;
}

.echofy-button a:hover{
    color: #227020;
}

.echofy-button a:before{
    position: absolute;
    content: "";
    width:0;
    height: 100%;
    left: 50%;
    top: 0;
    background:#fff;
    border-radius: 5px;
    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: relative;
    left: -58px;
    top: -2px;
    opacity: 1;
    transition: 0.5s;
    z-index: 1;
    opacity: 0
}

.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: #00ffff;
    border: 2px solid #00ffff;
    color: #01257d;
    padding: 14px 37px;
}



/*=============================
<-- ECHOFY BUTTON 2 -->
=============================*/

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

.echofy-button-2 a {
    display: inline-block;
    background: #0ff;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 14px 40px;
    border-radius: 6px;
    border: 2px solid #0ff;
    position: relative;
    z-index: 1;
}

.echofy-button-2 a:hover{
    color: #6a6b6b;
}

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

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

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

.echofy-button-2 img.two {
    position: relative;
    left: -58px;
    top: -2px;
    opacity: 1;
    transition: 0.5s;
    z-index: 1;
    opacity: 0
}

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

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

.echofy-button-2.two a {
    display: inline-block;
    background: #00ffff;
    border: 2px solid #00ffff;
    color: #01257d;
    padding: 14px 37px;
}




/*=============================
<-- SERVICES SECTION -->
=============================*/

.services-area.home-two {
    background: #F6F6EE;
    padding: 80px 0 120px;
}

.home-two .row.services-up {
    margin-top: -394px;
}

.single-services-box {
    position: relative;
    padding: 10px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.home-two .services-thumb{
    overflow: hidden;
}

.home-two .services-thumb img {
    width: 100%;
    padding: 0;
    margin-top: 0;
    transition: 0.5s;
}

.home-two .single-services-box:hover .services-thumb img{
    transform: scale(1.1);
}

.home-two .services-content {
    background: #fff;
    padding: 64px 38px 23px;
    position: relative;
}

.home-two  .services-icon {
    position: absolute;
    top: -16%;
    left: 27px;
}

.home-two .services-content a {
    display: inline-block;
    color: #3a3b3b;
    font-size: 22px;
    font-weight: 600;
    position: relative;
    transition: 0.5s;
}

.home-two .services-content p {
    display: inline-block;
    color: #3a3b3b;
    font-size: 16px;
    font-weight: 400;
}

.home-two .services-content a:hover{
    color: #227020;
}

.home-two .services-content a:before {
    position: absolute;
    content: "";
    width: 30px;
    height: 2px;
    bottom: -20px;
    left: 0;
    background: #227020;
}

.home-two .services-content p {
    margin: 36px 0 16px;
    border-bottom: 1px solid rgba(0,24,25,0.10);
    padding-bottom: 24px;
}

.home-two .services-button a {
    display: inline-block;
    font-size: 16px !important;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.home-two .services-button a:before{
    background: transparent;
}

.home-two .services-button i {
    display: inline-block;
    font-size: 24px;
    border-radius: 50%;
    color: #3a3b3b;
    width: 44px;
    height: 44px;
    text-align: center;
    line-height: 44px;
    transform: rotate(-45deg);
    position: relative;
    border: 1px solid rgba(0,24,25,0.10);
    transition: 0.5s;
}

.home-two .services-button a:hover i{
    background:#227020;
    color:#fff;
}

/* Customize Home-1 CSS */
.home-two .single-services-box:hover .services-content {
    background: #fff;
}

.home-two .services-content:before{
    border: transparent;
}

.home-two .services-content:after{
    background: transparent;
}

.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:#49AE44;
    position: relative;
}

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




/*=============================
<-- ABOUT -->
=============================*/

.about-area {
    background: #fff;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    padding: 80px 0 60px;
    margin-top: 40px;
    margin-bottom: 50px;
}

.about-thumb {
    position: relative;
}

img.about-thumb-shape {
    position: absolute;
    bottom: 18px;
    left: -6px;
    animation: dance1 4s linear infinite;
}

@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);
    }
}


.about-right {
    position: relative;
    padding-left: 30px;
}

.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 {
    position: relative;
    float: left;
    margin-right: 24px;
    margin-top: 0px;
    top: -8px;
}

.about-box-content h4 {
    font-size: 20px;
    font-weight: 600;
    margin-top: 10px;
}

.about-box-content p {
    overflow: hidden;
    margin: 15px 0 0;
    width: 80%;
}

.about-shape-1 {
    position: absolute;
    top: -42px;
    right: -153px;
    animation: dance2 4s linear infinite;
}

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

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

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

.about-shape-2 {
    position: absolute;
    bottom: 0;
    left: 272px;
    animation: dance3 4s linear infinite;
}

@keyframes dance3 {
    0% {
        -webkit-transform: translateX(-50px);
        transform: translateX(-50px);
    }

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

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


/* SECTION TITLE */
.section-title.left {
    position: relative;
    margin-bottom: 49px;
}

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

.section-title.left h4 {
    text-transform: uppercase;
    color: #227020;
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 26px;
}

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

/* CENTER SECTION TITLE */

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

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

.section-title.center h4 {
    text-transform: uppercase;
    color: #227020;
    font-weight: 700;
    font-size: 18px;
    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;
}



/*=============================
<-- TEAM -->
=============================*/

.service-area {
    padding: 100px 0 125px;
    background: url(/assets/media/team/team-section-background-light.webp);
    background-repeat: no-repeat;
    background-size: cover;
}

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

.service-content {
    background: rgba(255, 255, 255, 0.75);
    padding: 35px 35px 25px;
    border-radius: 8px;
    position: relative;
    z-index: 1;
    transition: 0.5s;
    text-align: center;
}

.single-service-box:hover .service-content{
    background: rgba(255, 255, 255, 0.45);
}

.service-content:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 0;
    left: 0;
    top: 0;
    border: 2px solid #227020;
    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: #227020;
    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: 22px;
    font-weight: 600;
    margin: 25px 0 10px;
    position: relative;
}

.service-content h5 {
    font-size: 16px;
    font-weight: 500;
    color: #227020;
    margin: 8px 0 15px;
    position: relative;
}

/*
.service-content h4:before {
    position: absolute;
    content: "";
    width: 34px;
    height: 2px;
    left: 0;
    bottom: -13px;
    background: #49AF45;
}
*/

.service-content p {
    color: #3a3b3b;
    font-size: 14px;
    margin: 0;
    line-height: 22px;
}

.service-thumb img {
    width: 100%;
    padding: 0 43px;
    margin-top: 10px;
    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: -705px;
}

.service-area .owl-prev i {
    background: #fff;
    display: inline-block;
    color: #3a3b3b;
    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:#227020;
    color:#fff;
}

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

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

.owl-next i:hover{
    background:#227020;
    color:#fff;
}

/*=============================
<-- ACCOLADES -->
=============================*/

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

.single-accolades-thumb{
    border: 2px solid rgba(106, 107, 107, 0.1);
    border-radius: 5px;
    overflow: hidden;
}

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

.single-accolades-box:hover .single-accolades-thumb img {
    transform: scale(1.1);
}

/*=============================
<-- ACCOLADES -->
=============================*/



/*=============================
<-- PROJECTS -->
=============================*/

.project-highlights {
    padding: 110px 0 110px;
}

.project-highlights .echofy-button {
    margin-top: 65px;
    display: inline-block;
    float: right;
}

.single-project-highlights-box{
    margin-bottom:20px ;
}

.single-project-highlights-thumb{
    overflow: hidden;
}

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

.single-project-highlights-box:hover .single-project-highlights-thumb img {
    transform: scale(1.1);
}

.project-highlights-content {
    border: 1px solid rgba(0,24,25,0.1);
    padding: 25px 32px 25px;
}

.project-highlights-content a {
    font-size: 16px;
    font-weight: 500;
    display: inline-block;
    color: #3a3b3b;
    line-height: 24px;
    transition: 0.5s;
}

.project-highlights-content a:hover{
    color: #227020;
}

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

.project-highlights-author {
    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;
}

.project-highlights-author-title span {
    display: inline-block;
    background: #227020;
    width: 35px;
    height: 35px;
    font-size: 16px;
    border-radius: 50%;
    text-align: center;
    line-height: 35px;
    color: #fff;
    margin-right: 9px;
}

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

.project-highlights-button i {
    font-size: 26px;
    display: inline-block;
    transition: 0.5s;
}

.project-highlights-button i:hover{
    color: #49AF45;
}





/*=============================
<-- SKILLS -->
=============================*/

.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: #3a3b3b;
    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 -->
=============================*/

.counter-area {
    background: url(../images/home1/counter-bg.webp);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 80px 0 150px;
}

.single-counter-box {
    text-align: center;
    margin-bottom: 20px;
}

.counter-content h4 {
    font-size: 46px;
    color: #fff;
    display: inline-block;
    margin-top: 20px;
}

.counter-content span{
    font-size: 46px;
    color: #fff;
    display: inline-block;
    font-weight: 700;
}

.counter-content p {
    font-size: 20px;
    font-weight: 500;
    color: #fff;
    margin: 3px 0 0;
}


/*=============================
<-- PROCESS ROW -->
=============================*/

#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;
}


/*=============================
<-- PROJECTS -->
=============================*/

.project-area {
    background: url(../images/home1/project-bg.webp);
    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 #49af45;
    position: relative;
    margin-top: -38px;
    transition: 0.5s;
    border-radius: 3px;
    height: 117px;
}

.single-project-box:hover .project-content {
    background: #3a3b3b;
    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: #49af45;
}

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

.project-content a:hover{
    color:#49af45 !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:#49af45 !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:#49af45 !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:#49AF45;
    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:#49AF45;
    color:#fff;
}


/*=============================
<-- PROCESS AREA TWO -->
=============================*/

.process-area-two {
    background: #F6F6EE;
    padding: 110px 0 100px;
    
}

.process-area-two .section-title.center {
    margin-bottom: 61px;
}

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

.single-process-box-two:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    right: 84px;
    top: 98px;
    background: url(../images/home1/process-two-shape-1.webp);
    background-repeat: no-repeat;
}

.single-process-box-two.style-one:before{
    text-align: justify;
    background: transparent;
}

.single-process-box-two.style-three:before{
    background: url(../images/home1/process-two-shape-2.webp);
    background-repeat: no-repeat;
}

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

.process-icon-thumb-two:before {
    position: absolute;
    content: "";
    width: 200px;
    height: 200px;
    left: 0;
    right: 0;
    top: 17px;
    border: 2px dashed #49AF45;
    border-radius: 50%;
    margin: auto;
    animation: rotateme 20s linear infinite;
    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: 22px;
    font-weight: 700;
    margin: 45px 0 15px;
}

.process-two-content p {
    font-size: 16px;
    text-align: justify;
    margin: 0;
}



/*=============================
<-- INDUSTRY ACCOLADES -->
=============================*/

.industry-accolades {
    background: #F6F6EE;
    padding: 110px 0 100px;
    
}

.industry-accolades .section-title.center {
    margin-bottom: 61px;
}

.industry-accolades-content {
    z-index: 1;
    position: relative;
}

.industry-accolades-content h4 {
    font-size: 22px;
    font-weight: 700;
    margin: 45px 0 15px;
}

.industry-accolades-content p {
    font-size: 16px;
    text-align: justify;
    margin: 0;
}



/*=============================
<-- CLIENTS -->
=============================*/

.clients {
    background: #F6F6EE;
    padding: 110px 0 100px;
    
}



/*=============================
<-- BRAND AREA -->
=============================*/

.brand-area.home-two {
    padding: 100px 0 87px;
}

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

.brand-area.home-two .owl-carousel .owl-item img {
    display: inline-block;
    text-align: center;
}



/*=============================
<-- TESTIMONIALS -->
=============================*/

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

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

.single-testimonial-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 32px 32px 4px;
    
    filter: drop-shadow(0px 10px 30px rgba(179,179,179,0.2));
    background-color: rgb(255, 255, 255, 0.7);
    border-radius: 6px;
    position: relative;

    margin-left: 10px;
    margin-right: 10px;
    margin-top: 35px;
    margin-bottom: 10px;

    border: 2px solid rgba(106, 107, 107, 0.1);
}

.img-thumb {
    display: flex;
    justify-content: center; /* Center the image horizontally */
    align-items: center; /* Center the image vertically */
    width: 100%; /* Ensure the img-thumb takes full width */
    max-width: 250px; /* Adjust max-width as needed */
    margin: 0 auto; /* Center the img-thumb container */
}

.img-thumb img {
    max-width: 100%; /* Ensure the image scales within the container */
    height: auto; /* Maintain the aspect ratio */
}

.client-name {
    margin-top: 18px;
}

.client-name p {
    color: #227020;
    font-size: 18px;
    text-align: center;
    font-weight: 500;
}


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

.testi-author {
    display: flex;
    align-items: center;
    scale: 0.75;
}

.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;
}


.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);
  }
}




/*=============================
<-- BLOG -->
=============================*/

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

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

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

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

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

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

.blog-content {
    border: 1px solid rgba(0,24,25,0.1);
    padding: 25px 32px 25px;
}

.blog-content a {
    font-size: 18px;
    font-weight: 600;
    display: inline-block;
    color: #3a3b3b;
    line-height: 28px;
    transition: 0.5s;
}

.blog-content a:hover{
    color: #227020;
}

.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: #227020;
    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-button i {
    font-size: 26px;
    display: inline-block;
    transition: 0.5s;
}

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



/*=============================
<-- FOOTER -->
=============================*/

.footer-area {
    position: relative;
    background: url(../media/footer/footer-temp-2.webp);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 25px 0 0px;
    z-index: 1;
}


.footer-area::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(1, 37, 125, 0.8), rgba(0, 0, 0, 0.4));
    z-index: 2;
    opacity: 0.8; /* Adjust opacity as needed */
}

.footer-area .footer-content {
    position: relative;
    z-index: 3; /* Ensure content is above the gradient */
}

.footer-social-address {
    background: url(../images/home1/footer-social-bg.webp);
    background-repeat: no-repeat;
    background-size: cover;
    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;
}

.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: 16px;
    border: 2px solid #fff;
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    margin: 0 3px;
    position: relative;
    z-index: 1;
    transition: 0.5s;
}

.footer-social-icon ul li i:hover{
   color:#49AE44;
} 

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

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

.footer-area .row.add-footer-class {
    position: relative;
    padding: 50px 0 0;
    z-index: 3;
}

p.footer-desc {
    margin: 12px 0 0;
    color: #fff;
    opacity: 1.0;
    font-size: 16px;
    font-weight: 500;
    text-align: justify;
    padding-right: 30px;
}

.footer-logo img {
    transform: scale(1.0); /* Scales the logo to 90% of its original size */
    transition: transform 0.3s ease; /* Adds a smooth transition effect */
}

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

.footer-contact-info-title h4 {
    color: #fff;
    font-size: 20px;
    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: #49AE44;
}

.footer-contact-info ul li {
    color: #fff;
    margin-top: 18px;
    font-size: 16px;
}

.footer-contact-info ul li i {
    color: #0ff;
    display: inline-block;
    margin-right: 12px;
}

.footer-widget-title h4 {
    font-size: 19px;
    color: #fff;
    font-weight: 800;
    margin-bottom: 22px;
    text-transform: uppercase;
}

.footer-widget-content p {
    font-size: 16px;
    color: #fff;
    font-weight: 500;
    margin-bottom: 22px;
}

.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: #49AE44;
    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{
    color: #49AE44;
    opacity: 1;
}

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

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

.single-newsletter-box button {
    background-color: #0ff;
    width: 100%;
    padding: 10px 0;
    border: transparent;
    margin-top: 16px;
    font-size: 16px;
    text-transform: uppercase;
    color: #3a3b3b;
    font-weight: 600;
    border-radius: 5px;
}

.footer-bottom-area {
    position: relative;
    padding: 20px 0 20px;
    z-index: 3;
}

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

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

.footer-bottom-content a {
    display: inline-block;
    color: #0ff;
    font-weight: 400;
}




/*=============================
<-- CONTACT AREA -->
=============================*/


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

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

.row.contact-info-bg {
    background: #227020;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    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: 200px;
    right: -10px;
    top: 25px;
    background: #ffffff73;
}

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

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

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

.row.pagla-shahin {
    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: #227020;
    color: #fff;
    border: transparent;
    padding: 13px 25px;
    border-radius: 5px;
    margin-top: 35px;
    outline: 0;
    border: 2px solid #227020;
    transition: 0.5s;
    font-size: 17px;
    font-weight: 600;
}

.contact-submit-button button:hover{
    background: transparent;
    color:#227020;
}




/*=============================
<-- SCROLLUP BUTTON -->
=============================*/

.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;
  }
}


/*=============================
<-- PROGRESS INDICATOR -->
=============================*/

.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: #0ff;
    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: #0ff;
}
.prgoress_indicator:hover ::before {
  opacity: 1;
}
.prgoress_indicator svg path {
  fill: none;
}
.prgoress_indicator svg.progress-circle path {
  stroke:#0ff;
  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: #49AF45;
    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;
    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: #ffffff;
    -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: #49AF45;
    padding: 0;
    cursor: pointer;
    -webkit-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:#ffffff;
    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: #49AF45;
    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: #49AF45;
}



/*=============================
<-- SIDEBAR -->
=============================*/

.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 -->
=============================*/

.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;
}

/* END ========================================== */