:root{
    --primary: #f80759;
    --secondary:#bc4e9c;
    --secondary-light:#FFE8E8;
    --background:#0c1427;
    --accent:#ff8589;
}
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

body{
    overflow-x: hidden;
    background-color: #fff;
    font-family: "Poppins", sans-serif;
}   

section{
    margin: 80px 0;
} 

@media screen and (max-width:480px){
    section{
        margin: 40px 0;
    }
}

.nav-link{
    color: #222;
}

header.dark-text .nav-link{
    color: #2f2f2f;
}

header.dark-text {
    background: #fff!important;
}
.fw-500{
    font-weight: 500;
}

.green-line{
    background-image: url('../img/green-shape.svg');
}

.red-line{
    background-image: url('../img/red-shape.svg');
}

.shape-bg {
    --tw-text-opacity: 1;
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: 100%;
    color: rgb(255 126 132/var(--tw-text-opacity));
    display: inline-block;
    padding-bottom: .5rem;
}

.features-container{
    position:relative;
}

.primary-text{
    color: var(--secondary);
}

.section-title{
    line-height: 50px;
}

.primary-btn{
    background: linear-gradient( 120deg ,var(--secondary),var(--primary));
    padding: 8px 0;
    font-size:18px;
    border: 2px solid var(--secondary);
    color: #fff;
    font-weight: 700;
    border-radius: 10px;
    transition: box-shadow .2s ease-in;
}

.primary-btn:hover{
    /* box-shadow: 0px 0px 5px rgba(255,135,124,.2); */
    background: var(--secondary);
    border: 1px solid var(--primary);
}

.order-form::before{
    content: '';
    position: absolute;
    z-index: 0;
    filter: invert();
    width: 100%;
    height: 100%;
    background: url('../img/map.webp');
}

.order-form .form-container{
    position: relative;
    z-index: 1;
}

.order-counter{
    position: relative;
    z-index: 1;
}

.order-btn{
    background: linear-gradient(to right, var(--primary),var(--secondary));
    border-radius: 40px;
    border: 1px solid #f2f2f2;
    color: #fff!important;
    margin: 0px 10px;
}

.order-btn:hover{
    box-shadow: 0px 0px 5px -3px rgba(47,47,47,.5);
}

/* Body CSS Start */

.hero-banner{
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    padding: 126px 0px 120px 0px;
    position: relative;
    overflow: hidden;
}

.hero-banner:before {
    content: '';
    background-image: url(../img/slider-right-dec.jpg);
    background-repeat: no-repeat;
    position: absolute;
    right: 0;
    top: 60px;
    width: 1159px;
    height: 797px;
    z-index: -1;
}

.hero-banner:after {
    content: '';
    background-image: url(../img/slider-left-dec.jpg);
    background-repeat: no-repeat;
    position: absolute;
    left: 0;
    top: 60px;
    width: 262px;
    height: 625px;
    z-index: -1;
}

#benefits{
    position: relative;
    z-index: 0;
}

#benefits:before {
    content: '';
    background-image: url(../img/services-right-dec.jpg);
    background-repeat: no-repeat;
    position: absolute;
    right: 0;
    top: 0;
    width: 161px;
    height: 413px;
    z-index: -999;
}

#benefits:after {
    content: '';
    background-image: url(../img/services-left-dec.jpg);
    background-repeat: no-repeat;
    position: absolute;
    left: 0;
    top: 0px;
    width: 186px;
    height: 1217px;
    z-index: -9999;
}

.benefits-img{
    width: 75%;
}

@media screen and (max-width:768px) {
    .benefits-img{
        width: 100%;
    }       
}

.banner-text{
    font-weight: 300!important;
}

.seolist li{
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin-bottom: 10px;
}

.seolist li::before {
    content: "\e3d6";
    color: var(--secondary);
    font-family: 'Font Awesome 6 Pro';
    font-weight: 900;
    margin-right: .5rem;
}

.hero-banner .seolist li::before{
    color: var(--secondary-light);
}

.form-container{
    background-color: #fff;
    box-shadow: 0px 0px 20px var(--accent);
    border-radius: 20px;
    border: 1px solid var(--primary);
}

form{
    text-align: center;
}

input{
    border: unset;
    font-size: 18px;
    padding: 5px 0 0 10px;
    line-height: 40px;
}

input::placeholder{
    font-weight: 200;
    color: rgba(47,47,47,.5);
}

textarea{
    border: unset;
    font-size: 18px;
    padding: 5px 0 0 10px;
    line-height: 40px;
    color: rgba(47,47,47,.7);
}
iti{
    width: 100%;
}
input:focus{
    outline: unset;
}

textarea{
    cursor: pointer;
}

textarea:focus{
    outline: unset;
}


.text-input-field{
    display: flex;
    background: var(--primary);
    border-radius: 10px;
    margin-bottom: 15px;
}

.text-input-field span{
    background-color: var(--primary);
    padding: 10px 15px;
    color: #fff;
    display: inline-block;
    border-radius: 10px;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}

.text-input-field input{
    background-color: #fff;
    border: 1px solid var(--primary);
    width: 100%;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

.text-input-field textarea{
    background-color: #fff;
    border: 1px solid var(--primary);
    width: 100%;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

.nav-pills .nav-link{
    height: 200px;
    background-color: #fff;
}

@media screen and (max-width:1299px) {
    .nav-pills .nav-link img{
        width: 50px;
    }
    .nav-pills .nav-link{
        height: auto;
        padding: 10px;
    }
}

.nav-pills .nav-link{
    font-weight: 600;
    font-size: 20px!important;
}

.nav-pills .nav-link:focus{
    color: #000;
}
.nav-pills .nav-link:hover{
    color: #000;
}

.nav-pills .nav-link.active{
    background-color: unset!important;
    color: #000;
    box-shadow: 0px 0px 15px rgba(47,47,47,.1);
}

@media screen and (min-width:1200px) {
    .nav-pills .nav-item{
        width: 20%;
        padding: 0px 10px;
    }
    
}

.about-us-img{
    position: relative;
}

.about-us-img .group-img{
    position: absolute;
    width: 75%;
    z-index: 1;
}

.square-blob-img{
    position: relative;
    transform: rotate(-10deg);
}

.about-us-img::before{
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    /* background: url('../img/oragne-blob.png') no-repeat; */
    background-size: contain;
    background-position: 50%;
}

.process-card{
    border-radius: 30px;
    border:1px solid #fff;
    border-right: 4px solid #fff!important;
    padding: 10px 30px 4px 40px;
    position: relative;
    background: #fff9f9;
    box-shadow: -10px 5px 30px -15px rgba(47,47,47,.2);
}

.process-card h3{
    color: var(--primary);
}

.process-card span{
    position: absolute;
    background-color: var(--primary);
    color: #fff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 900;
    font-size: 36px;
    padding: 10px;
    top: -20px;
    left: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 10px -5px rgba(47,47,47,.4);
}

.process-card span::before{
    content: '';
    position: absolute;
    width: 75%;
    height: 20px;
    border-radius: 5px;
    transform: skewX(30deg);
    background-color: #b83a2e;
    z-index:-1;
    top: 2px;
    left: 17px;
}

.process-card:last-of-type span::before{
    top: 1px;
    left: 19px;
}

@media screen and (max-width:480px){
    .process-card span{
        left: 20px;
    }
    .hero-banner{
        padding-top: 30px !important;
    }
}

.benefits-carousel{
    overflow-x: hidden;
}

.benefits-carousel img{
    width: unset!important;
}

.benefits-carousel .owl-item {
    filter: blur(2px);
}
.benefits-carousel .owl-item.active {
    filter: blur(1px);
}
.benefits-carousel .owl-item.active.center {
    filter: unset;
    transform: scale(110%);
}

.benefit-card{
    position: relative;
    background: #fff;
    border-radius: 30px;
    padding: 20px 30px;
    text-align: center;
    margin: 60px auto;
    width: 80%;
    min-height: 450px;
}

.benefit-card::before{
    content: '';
    position: absolute;
    z-index: -1;
    width: 108%;
    height: 100%;
    top: 0;
    left: -4%;
    border-radius: 30px;
    background-color: #f2f2f2;
    box-shadow: 0px 0px 20px -10px rgba(47,47,47,.6);
}

.benefits-carousel .owl-item.active.center .benefit-card::before{
    background-color: var(--primary);
}

.owl-carousel.benefits-carousel .owl-nav button.owl-next{
    position: relative;
    border: 2px solid var(--primary)!important;
    color: var(--primary);
}
.owl-carousel.benefits-carousel .owl-nav button.owl-prev{
    border: 2px solid var(--primary)!important;
    color: var(--primary);
    position: relative;
}

.owl-carousel.benefits-carousel .owl-nav{
    display: flex;
    justify-content: center;
    margin-top: 20px;
}
.owl-carousel.benefits-carousel  .owl-dots{
    margin: 0px 0px;
}

.owl-carousel.benefits-carousel  .owl-dot{
    background: var(--primary)!important;
}

.features-card{
    text-align: center;
    padding: 20px 20px;
    border-radius: 10px;
    color: #fff!important;
    background: var(--secondary);
    transition: transform .3s ease-in;
    height: 100%;
}

.features-card:hover{
    border: 1px solid rgba(48, 190, 173,.2);
    transform: translateY(-10px);
    box-shadow: 0px 10px 20px rgba(255,133,137,.2);
}

.counter-section{
    background: url('../img/map.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.counter-number{
    display: block;
    font-size: 34px;
    font-weight: 800;
    text-align: center;
    color: var(--primary);
    margin-bottom: 5px;
    text-shadow: 1px 1px 2px rgba(47,47,47,.2);
}

.scroll-section{
    background-position: center;
}

.scroll-wrapper{
    min-height: 550px;
    max-height: 550px;
    border: 1px solid var(--primary);
    background-color: #fff;
    position: relative;
    overflow: hidden;
    border-radius: 40px;  
}

.scroll-container{
    height: 550px;
    overflow-y: scroll;
    overflow-x: hidden;
    padding: 0px 50px;  
}
@media screen and (max-width:480px){
    .scroll-container{
        padding: 20px;
    }
}

.reviews-section{
    background: linear-gradient(to  bottom right, #ff877c,#ffb065);
    /* background: url('../img/reviews-bg.png'); */
    background-position: center;
}

.owl-carousel .owl-item .verified-icon{
    width: 15px;
}

.owl-carousel .owl-item img{
    display: inline!important;
}

.owl-carousel .owl-item img.google{
    display: inline!important;
    width: 60px;
}
.owl-carousel .owl-item img.trustpilot{
    display: inline!important;
    width: 70px;
}
.owl-carousel .owl-item img.sitejabber{
    display: inline!important;
    width: 130px;
}

.rv-card{
    border:1px solid rgb(194, 190, 190);
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;;
    height: 300px;
    border-radius: 10px;
    background-color: #fff;
}
.rv-header{
    position: relative;
    background-color: rgba(255,133,137,.1);
}
.rv-footer{
    background-color: rgba(255,133,137,.1);
}
.quote-icon{
    position: absolute;
    top: -30px;
    left: 10px;
}

.owl-carousel .owl-nav button.owl-prev{
    position: absolute;
    top: 50%;
    left: -5%;
    transform: translateY(-50%);
    padding: 10px!important;
    background: transparent!important;
    border: 2px solid var(--primary)!important;
    border-radius: 10px;
    color: var(--primary);
    transition: all .1s ease-in;
}

.owl-carousel .owl-nav button.owl-prev:hover{
    color: #fff;
    font-weight: 500;
    background: var(--primary)!important;
}

.owl-carousel .owl-nav button.owl-next{
    position: absolute;
    top: 50%;
    right: -5%;
    transform: translateY(-50%);
    padding: 10px!important;
    background: transparent!important;
    border: 2px solid var(--primary)!important;
    border-radius: 10px;
    color: var(--primary);
    transition: all .1s ease-in;
}

@media screen and  (max-width:768px){
    .owl-nav{
        display: flex;
        justify-content: center;
        margin-top: 45px;
    }
    .owl-carousel .owl-nav button.owl-next{
        position: relative;
    }
    .owl-carousel .owl-nav button.owl-prev{
        position: relative;
    }
    .owl-dots{
        margin-top: 0!important;
    }
}

.owl-carousel .owl-nav button.owl-next:hover{
    color: #fff;
    font-weight: 500;
    background: var(--primary)!important;
}

.owl-carousel .owl-nav button.owl-next.disabled{
    color: #b9b9b9;   
    border-color: #b9b9b9!important;
    cursor: not-allowed!important;
}

.owl-carousel .owl-nav button.owl-next.disabled:hover{
    cursor: default;
    background: transparent!important;
    color: #b9b9b9!important;
}

.owl-carousel .owl-nav button.owl-prev.disabled{
    color: #b9b9b9;   
    border-color: #b9b9b9!important;
    cursor: not-allowed!important;
}

.owl-dot{
    border-radius: 50%;
    width: 8px;
    height: 8px;
    background-color: #f2f2f2!important;
    margin: 5px;
    transition: all .2s ease-in;
}

.owl-dots{
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.owl-dot.active{
    width: 26px;
    border-radius: 5rem;
}

.owl-carousel .owl-nav button.owl-prev.disabled:hover{
    cursor: default;
    background: transparent!important;
    color: #b9b9b9!important;
}

.accordion-button:focus{
    box-shadow: unset;
    border: unset;
}

.accordion-button{
    border-radius: 50px;
    color: #000!important;
}
.accordion-button:not(.collapsed){
    border: unset;
    background-color: #fff!important;
    box-shadow: unset;
}

.accordion-item{
    border: unset;
    border-radius: 10px;
}

.accordion-collapse {
    background-color: #fff!important;
    border-bottom-left-radius:20px;
    border-bottom-right-radius:20px;
}

.accordion-body{
border-radius: 20px;  
}


/* Body CSS End */
footer{
    background: var(--background);    
    color: #fff;
    padding: 30px 0 0;
    margin-top: 20px;
}

.footer-icon{
    color: var(--primary);
}

footer a{
    color: #fff!important;
}

footer li{
    margin-bottom: 10px;
}

footer i{
    font-size: 18px;
    margin-right: 10px;
}

.footer-copyright{
    background: #091022;
    padding: 10px 0; 
}