:root{
    --primary:3,192,74;
    --primary-title:7,19,59;
    --seconary:174,243,89;
    --accent:255,119,0;
    --spacing-unit: 4px;
}

body{
    overflow-x: hidden;
    background-color: rgba(231, 245, 214, 0.1);
    font-family: "Roboto", sans-serif;
}

a{
    text-decoration: none!important;
}

h1,h2,h3,h4,h5,h6{
    color: rgb(var(--primary-title));
}

.cta-btn{
    background: rgb(var(--accent));
    font-size: 16px;
    border-radius: .35rem;
    padding:  .35rem 1rem;
    color: #fff;
    font-weight: 600;
}

.cta-btn:hover{
    color: #fff;
    background: rgba(var(--accent),.8);
}

.primary-bg{
    background: rgba(var(--seconary),.2);
}

section{
    margin: 80px 0;
} 

.sticky-top{
    position: fixed!important;
    top: 0;
    width: 100%;
}

@media screen and (max-width:480px){
    section{
        margin: 40px 0;
    }
}

.cta-section{
    background-color: rgba(var(--seconary),.5);
}

/* Main Body CSS Start Here */

.hero-banner{
    position: relative;
    background: linear-gradient(to bottom, rgba(var(--seconary),0.2),rgb(var(--seconary),0.1));
    z-index: 1;
}

@media screen and (min-width:1280px){
    .hero-banner::before{
        content: '';
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        background: url('../img/banner-bg.webp') no-repeat;
        filter: invert();
        background-position: right;
        opacity: 15%;
        z-index:-1;
    }
}

.form-container{
    padding: 30px 40px;
    background-color: rgb(var(--seconary));
    border: 1px solid var(--primary);
    box-shadow: 3px 3px 0 0 rgb(var(--seconary));
    border-radius: 40px;
}

.text-input-field input{
    width: 100%;
}

.iti{
    width: 100%;
}

.cta-form-button{
    border: 1px solid rgb(var(--accent));
    background-color: rgb(var(--accent));
    color: #fff;
    border-radius: 20px;
    padding: 5px 30px;
    font-size: 18px;
    line-height: 32px;
    font-weight: 500;
    transition: all 0.2s ease-in;
}

.cta-form-button:hover{
    background-color: rgb(var(--seconary));
    color: rgb(var(--accent));
    box-shadow: 0px 0px 10px -5px rgba(47,47,47,.7);
}


.banner-reviews-tab{
    box-shadow: 0px 0px 20px -10px rgba(47,47,47,.2);
}

.banner-reviews-tab img{
    /* width: 40px; */
    height: 40px;
}

.banner-reviews-tab i{
    color: gold;
}
.logos{
    overflow: hidden;
    /* padding: 10px 0; */
    white-space: nowrap;
}

.logos:hover .logos-slide{
    animation-play-state: paused;
}

.logos-slide{
    display: inline-block;
    animation: 30s slide infinite linear;
}

.logos-slide img{
    margin: 0 20px;
}

@keyframes slide {
    from{
        transform: translateX(0);
    }
    to{
        transform: translateX(-100%);
    }
}

.features-list li{  
    margin-bottom: 20px;
    letter-spacing: 1px;
    font-weight: 500;
    display: flex;
    align-items: center;
}

.feature-icn{
    background-color: #fff;
    padding: 5px;
    width: 40px;
    height: 40px;
    margin-right: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    box-shadow: 0px 0px 10px rgba(47,47,47,.1);
}

.feature-icn i{
    color: rgba(var(--primary),.8);
    margin: auto;
    font-size: 20px;
}

.plagarism-free{
    display: flex;
    align-items: center;
}

.plagarism-free span{
    width: 80px!important;
    height: 80px!important;
    padding: 10px;
    margin-right: 20px;
    display: block;
    border-radius: 15px;
    background-color: #fff;
    box-shadow: 0px 0px 10px rgba(47,47,47,.1);
}

.plagarism-free span img{
    width: 100%;
    margin-top: 5px;
}

@media screen and (max-width:768px) {
    .plagarism-free{
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
    }
    .plagarism-free span{
        margin-bottom: 20px;
    }
}

.review-carousel{
    position: relative;
}

.review-carousel::before{
    content: '';
    position: absolute;
    width: 90%;
    height: 90%;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    filter: blur(40px);
    background: rgba(var(--seconary),.2);
}

.review-card{
    background-color: #fff;
    border: 1px solid rgba(var(--primary),.2);
    border-radius: 20px;
    margin-top: 30px;
    margin-bottom: 30px;
}

.review-card p{ 
    color: #3f3f3f;
}

.review-card-header{
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.review-card-header img{
    width: 120px!important;
}

.review-card-header .stars{
    font-size: 16px;
}

.review-card-header .trustpilot i{
    color: green;
}   
.review-card-header .reviews i{
    color: gold;
}   

.review-card-header .sitejabber i{
    color: goldenrod;
}   

.free_box{
    border: 1px solid rgba(var(--primary),.1);
    box-shadow: 0px 0px 40px -20px rgba(var(--seconary),.8);
    border-radius: 20px;
    background-color: #fff;
}

.free_box li{
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    align-items: center;
    flex-grow: 0;
} 

.free_box li p{
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 16px;
    margin-bottom: 0;
}


.free-text{
    background: rgba(var(--seconary),.2);
    border-radius: 20px;
    letter-spacing: 1px;
    font-weight: 500;
    color: rgb(var(--primary));
    padding: 5px 10px;
}

.steps-icons{
    width: 50px;
    height: 50px;
    background-color: #fff;
    display: inline-block;
    margin-right: 20px;
    border: 1px solid rgba(var(--primary),.2);
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    color: rgb(var(--primary));
    box-shadow: 0px 0px 20px -10px rgba(var(--primary),.3);
}

.seo-content{
    overflow: hidden;
    height: 200px;
    position: relative;
}

.seo-content.show-content{
    height: auto;
}

.seo-content::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(to bottom, transparent 25%, rgb(252,253,250) 75%);
}

.seo-content.show-content::before {
    background: unset;
}

.circle-bullet-list{
    list-style: none;
    padding-left: 0;
}

.circle-bullet-list li{
    position: relative;
}

.circle-bullet-list li::before{
    content: '\f111';
    font-family: 'Font Awesome 6 Pro';
    font-size: 12px;
    padding-right: 10px;
    color: rgb(var(--primary));
}

.essay-type{
    font-size: 16px;
}

.help-box{
    border: 1px solid rgba(var(--primary),.2);
    border-radius: 20px;
    text-align: center;
    max-width: 320px;

    margin: auto;
    background-color: rgba(var(--seconary),.2);
    box-shadow: 0px 0px 30px -15px rgb(var(--seconary),0.4);
}

.help-box span i{
    font-size: 28px;
    color: rgb(var(--primary));
}

.accordion-item{
    background-color: transparent;
    margin-bottom: 10px;
    border-left: unset!important;
    border-right: unset!important;
}

.accordion-item:first-of-type{
    border-top: unset;
}

.accordion-button{
    background-color: transparent!important;
    font-weight: 700;
}

.accordion-button:focus{
    box-shadow: unset!important;
}

.accordion-body{
    color: #4f4f4f;
}

/* Main Body CSS End Here */


footer{
    background: rgb(var(--primary));
    color: #fff;
}

footer hr{
    border-width: 3px;
    border-color: #fff!important;
}

#contact-us i{
    color: rgb(var(--accent));
    margin-right: 10px;
}