html {
    scroll-behavior: smooth;
  }
:root {
    --body-font: "Manrope", serif;
    --title-font: "Manrope", serif;

    --light-color: #F4F7FB;
    --light-color-rgb: 244, 247, 251;
    --dark-color: #131117; 
    --dark-color-rgb: 19, 17, 23; 
    --one-color: #1A3D6C; 
    --one-color-rgb: 26, 61, 108; 
    --two-color: #6D7077; 
    --two-color-rgb: 109, 112, 119; 
    --three-color: #7b8893; 
    --three-color-rgb: 123, 136, 147; 
    --rounded-1: 12px;
    --green: #28a745;
}
a:hover {
    background-color: var(--hover-bg) !important;
}
.one-color-text {
    color: var(--one-color)!important;
}
.light-color-text, .light-color-text p {
    color: var(--light-color)!important;
}
.dark-color-text {
    color: var(--dark-color)!important;
}
.one-color-bg {
    background-color: var(--one-color)!important;
}
.light-color-bg {
    background-color: var(--light-color)!important;
}
.svg-light path {
    fill: #fff;
}
.font-light {
    font-weight: 200;
}
.animated {
    -webkit-animation-duration: .8s;
    animation-duration: .8s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}
.fadeInRight {
    -webkit-animation-name: fadeInRight;
    animation-name: fadeInRight;
}
@keyframes fadeInRight {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(10%, 0, 0);
        transform: translate3d(10%, 0, 0);
    }
    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}
.animate-infinitScroll {
    animation: infinitScroll 20s linear infinite;
}
@keyframes infinitScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}
.overlay-gradient {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(45deg, rgba(var(--one-color-rgb), .8) 0%, rgba(var(--two-color-rgb), 0) 100%);
}

body .owl-stage .owl-item {
    margin-bottom: 15px;
}
.border-color-one {
    border-color: rgba(var(--one-color-rgb), 0.4);
}
.pb-100 {
    padding-bottom: 100px;
} 
.pt-100 {
    padding-top: 100px;
}
a { 
    text-decoration: none!important;
}
/* Navbar */
.header.fixed {    
    /* -webkit-box-shadow: 0px 5px 30px 0px rgba(46, 76, 185, 0.2);
    box-shadow: 0px 5px 30px 0px rgba(46, 76, 185, 0.2); */
    -webkit-animation: sticky 0.5s;
    animation: sticky 0.5s;
}
@keyframes sticky {
    0% {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
    }
    100% {
        -webkit-transform: translateY(0%);
        transform: translateY(0%);
    }
}
.swiper-button-prev, .swiper-button-next {
    color: var(--one-color)!important;
}
.swiper-pagination-bullet-active {
    background: var(--one-color)!important;
}
/* Home Main slider */
.animeslide-slide {
    color: var(--one-color);
}
.animeslide-slide {
    position: relative;
    padding: 15px 0;
    min-height: 500px;
    background-size: cover;
}
.animeslide-slide .container {
    position: relative;
}
.animeslide-slide.swiper-slide-active [data-animate] {
    opacity: 1;
    transform: none;
}
.animeslide-slide.swiper-slide-active .animeslide-heading {
    transition-delay: 0.6s;
}
.animeslide-slide.swiper-slide-active .animeslide-desc {
    transition-delay: 1s;
}
.animeslide-heading {
    margin-bottom: 25px;
    transition-delay: 3s;
    font-size: 35px;
} 
.animeslide-desc { 
    line-height: 28px;
    font-size: 16px;
}
.animeslide-desc p {
    color: var(--dark-color);
}
[data-animate] {
    opacity: 0;
    transition: all 0.8s ease-out;
}
[data-animate="bottom"] {
    transform: translate3d(0, 15px, 0);
}
.swiper-fade .swiper-slide { 
    height: 100vh;
    display: flex!important;
}
/* Home About Area */
.home_about_section {
    overflow: hidden;  
    background-image: linear-gradient(38deg, #ed2772 0%, #ef582d 50%, #840f6b 75%);
}
/* Why Choose Area */
.how-i-work-item::before {
    content: "";
    width: 95%;
    height: 86%;
    position: absolute;
    left: 0;
    z-index: -1;
    border: 40px solid #EBEBEC;
    border-top-left-radius: 30px;
    top: 0;
}
.how-i-work-item::after {
    content: "";
    background: white;
    width: 121%;
    height: 16%;
    position: absolute;
    left: -70px;
    z-index: -1;
    top: 72px;
    transform: rotate(153deg) translateY(-21px);
    bottom: 0;
}
.home_why_choose_section .owl-theme .owl-dots {
    text-align: left!important;
}
.home_why_choose_section .owl-theme .owl-dots .owl-dot.active span, .testimonials .owl-theme .owl-dots .owl-dot.active span {
    background: var(--one-color);
    width: 40px;
} 
/* Testimonials */ 
.testimonial-item {
    padding: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    margin-bottom: 24px;
    border-radius: 50px;
    background: var(--one-color);
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-shadow: 0 15px 30px 0 rgba(255, 69, 0, 0.15);
    box-shadow: 0 15px 30px 0 rgba(255, 69, 0, 0.15);
    box-shadow: none !important;
} 
.testimonial-item {
    padding-left: 50px;
}
.img_bg_0 {
    background-image: url(/public/assets/upload/uploads/half-moon-shap.png);
}
.testimonial-item .img {
    padding: 10px;
    height: 150px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100px;
    flex: 0 0 150px;
    margin-right: 15px;
    border-radius: 50%;
    display: inline-block;
    border: 2px solid #ff4500;
}
.testimonial-item .img {
    background-size: cover;
    background-position: top;
    border: 0px solid !important;
    margin-top: -90px;
}
.testimonial-item .img img {
    padding: 5px !important;
}
#testimonialCarousel.owl-carousel .owl-item img, #blogCarousel.owl-carousel .owl-item img {
    width: auto;
    display: inline-block;
}
.rating {
    color: #ffffff !important;
    margin-top: 30px;
}
.testimonial-item .body {
    padding: 0 60px;
}
.testimonial-item .body h5 {
    margin-bottom: 0px;
    color: #ffffff;
}
.testimonial-item .body span {
    display: block;
    font-weight: 500;
    margin-bottom: 10px;
    color: #ffffff !important;
}
.testimonial-item .body p {
    margin-bottom: 15px;
    color: #fff !important;
    line-height: 1.1em !important;
    text-align: justify;
}
.testimonials .owl-dots {
    position: absolute;
    top: 30px;
    right: 0;
}