/*------------------------------
    >>>Css Indexing
    ------------------
    01.Global Css

*/
ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

/* ==============================
Header Style
================================= */
header#masthead {
  position: absolute;
  left: 0;
  right: 0;
}

.navbar-expand-lg .navbar-collapse {
  align-items: center;
  justify-content: center !important;
}

.navbar-area.navigation-style-01 .custom-container .navbar-collapse .navbar-nav {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-button {
  padding: 18px 24px;
  border: 1px solid #fff;
  color: #fff;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 500;
  transition: 0.3s;
}

a.header-button:hover {
  background: #a4f22a;
  border-color: #a4f22a;
  color: #000;
}

ul#menu-mani-menu {
  position: relative;
}

ul#menu-mani-menu .current-menu-item a {
  color: #00ffab;
}

ul#menu-mani-menu .current-menu-item::before {
  content: "";
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: #00ffab;
  top: 50%;
  top: 48%;
  left: -9px;
}

.header-light ul#menu-mani-menu .current-menu-item a {
  color: #008054;
}

.header-light ul#menu-mani-menu .current-menu-item::before {
  content: "";
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: #008054;
  top: 50%;
  top: 48%;
  left: -9px;
}

/* Hero Marquee Slider */

.swiper-wrapper {
    transition-timing-function: linear !important; 
  }

#service-slider {
    .slides-numbers {
        width: 110px;
        font-size: 24px;
        font-weight: 600;
        line-height: 34px;
    }
    .slider-control {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-top: 40px;
        gap: 40px;
    }

    .swiper-pagination-progressbar {
        background: #E5E5E0;
        position: relative;
        z-index: 0;
    }

    .swiper-pagination-progressbar-fill {
        background-color: #000000;
    }

    .service-slider-nav {
        width: 56px;
        height: 56px;
        background: #fff;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 1px solid #fff;
        transition: .3s;
        &:hover {
            background-color: var(--main-color-one);
            border: none;
        }
    }

    .service-slide-arrow-wrap {
        display: flex;
        align-items: center;
        justify-content: right;
        gap: 10px;
    }

}

#recent-slider {
    .slider-control {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-top: 40px;
        gap: 40px;
    }


    .recent-slider-nav {
        width: 56px;
        height: 56px;
        background: #fff;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 1px solid #fff;
        transition: .3s;
        &:hover {
            background-color: var(--main-color-one);
            border: none;
        }
    }

        .recent-slide-arrow-wrap {
        display: flex;
        align-items: center;
        justify-content: right;
        gap: 10px;
        position: absolute;
        top: -110px;
        right: 0;
    }

}
.service-single-item{
    overflow: hidden;
    transition: all 300ms ease;
    border-radius: 20px;
    &:hover{
        .hero-thumbnail{
            img{

            transform: scale(1.2);
            }
        }
    }
    .hero-thumbnail{
        border-radius: 20px;
        overflow: hidden;
        margin-bottom: 20px;
        img{
            transition: all 300ms ease;
            border-radius: 20px;
        }
    }
    .service-slide-content{
        .title{
            font-size: 28px;
            line-height: 42px;
            font-weight: 500;
            color: #182230;
            letter-spacing: -1px;
        }
    }
}
.recent-single-item{
    &:hover{
        .hero-thumbnail{
            img{

                transform: scale(1.2);
            }
        }
    }
    .hero-thumbnail{
        border-radius: 20px;
        overflow: hidden;
        img{
            border-radius: 12px;
            transition: all 300ms ease;
            width: 100%;
        }
    }
}