:root{
    --primary-bg:240,248,255;
    --primary:42,82,190;
    --accent:12,175,255;   
    --secondary:248,103,67;
    --primary-dark:0,34,68;
}
body{
    overflow-x: hidden;
    background-color: #fff;
}   

section{
    margin: 80px 0;
} 

.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;
    opacity:75%;
}

@keyframes slide {
    from{
        transform: translateX(0);
    }
    to{
        transform: translateX(-100%);
    }
}


.sticky-top{
    position: fixed!important;
    top: 0;
    width: 100%;
}

@media screen and (max-width:480px){
    section{
        margin: 40px 0;
    }
}

.primary-text{
    color: rgb(var(--primary-dark));
}

.accent-text{
    color: rgb(var(--accent));
}

.order-btn{
    background-color: rgb(var(--secondary));
    color: #fff!important;
    font-weight: 700;
    border: 1px solid rgb(var(--green));
}

.cta-btn{
    background-color: rgb(var(--secondary));
    padding: 10px 20px;
    color: #fff;
    font-weight: 700;
    border-radius: 20px;
    text-decoration: none;
}

.cta-btn:hover{
    background-color: rgba(var(--secondary),.8);
}

h1,h2,h3,h4,h5,h6{
    color: rgb(var(--primary-dark));
}

.container-box{
    box-shadow: 0px 0px 20px -10px rgba(var(--primary),.3);
    margin-bottom: 20px;
    border: 1px solid rgba(var(--primary),.1);
    border-radius: 10px;
}

.primary-gradient{
    background: linear-gradient(to bottom right, rgb(var(--accent)),rgb(var(--primary)));
    border: 1px solid rgb(var(--primary));
    border-radius: 30px;
}

/*====================== Main Body CSS Start Here ============================ */

.banner-title{
    font-weight: bold;
    background: linear-gradient(to right, rgb(var(--primary)), rgb(var(--accent)));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.form-container{
    padding: 30px 40px;
    background-color: rgba(var(--primary-bg),1);
    border: 1px solid rgb(var(--primary));
    box-shadow: 0px 0px 0px 10px rgba(var(--accent),1);
    border-radius: 40px;
}

.text-input-field input{
    width: 100%;
}

.iti{
    width: 100%;
}

.process-step{
    position: relative;
}

@media screen and (min-width:1280px) {
    .process-step::after{
        content: '\f061';
        font-family: 'Font Awesome 6 Pro';
        position: absolute;
        font-size: 34px;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
    }
}

.steps-img{
    display: inline-flex;
    padding: 20px;
    border-radius: 50%;
    border: 1px solid rgba(var(--primary),.2);
    background-color: rgba(var(--primary),.1);
}

/* Reviews */


.services-list{
    padding-left: 1rem;
}
.services-list li{
    font-size: 16px;
}

.services-list li::marker {
    color: rgb(var(--secondary)); 
}

.free-list li{
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
}

.free-list li::before{
    content: '\f2f7';
    font-family: 'Font Awesome 6 Pro';
    position: absolute;
    left: -10px;
    font-size: 20px;
    color: rgb(var(--primary));
}

.free-list li p{
    font-size: 18px;
}

.free-list li span{
    color: rgb(var(--secondary));
    font-size: 18px;
}

.free-list li span del{
    color: #3f3f3f;
    font-size: 16px;
}

.scroll-container{
    width: calc(100% - 30px);
    overflow: hidden;
    border-top: 2px solid rgb(var(--primary));
    border-bottom: 2px solid rgb(var(--primary));
}

.scroll-wrapper{
    width: calc(100% + 30px);
    height: 450px;
    overflow-x: hidden;
    overflow-y: scroll;
    position: relative;
    display: flex;
}

.scroll-btn{
    margin-right: 20px;
    position:sticky;
    top: 0;
    right: 20px;
    width: 60px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 30px 0 30px 30px;
}

.scroll-btn .scroll-up, .scroll-down{
    font-size: 22px;
    border: 2px solid rgb(var(--primary));
    border-radius: 50%;
    display: flex;
    width: 50px;
    height: 50px;
    justify-content: center;
    align-items: center;
    color: rgb(var(--primary));
}

.scroll-btn .scroll-up:hover, .scroll-down:hover{
    cursor: pointer;
}

@media screen and (max-width:768px){
    .scroll-btn{
        display:none;
    }
    .scroll-wrapper{
        padding-right:20px;
    }
}

.accordion-item{
    margin-bottom: 15px;
    border-radius: 10px!important;
}

.accordion-item:not(:first-of-type){
    border-top: var(--bs-accordion-border-width) solid var(--bs-accordion-border-color);
}

.accordion-button:not(.collapsed){
    background-color: #fff;
}

.accordion-button:not(.collapsed) .accordion-item{
    box-shadow: 0px 0px 20px -10px rgba(47,47,47,.4);
}

.accordion-button.collapsed{
    background-color: rgb(var(--primary-bg));
}

.accordion-button{
    border-radius: 10px!important;
    font-weight: 600;
}

.accordion-button:focus{
    box-shadow: unset;
}

/* Main Body CSS End Here */

footer{
    background: rgb(var(--primary-bg));
}

footer .contact-list i{
    color: rgb(var(--primary));
}

.footer-bottom{
    background: rgb(var(--primary));
    color: white;
    font-weight: 600;
}

.back-to-home-page {
    padding: 20px 30px;
    background-color: #e0ba22;
    border-radius: 6px;
    color: #fff;
    font-size: 18px;
    -webkit-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
}

.back-to-home-page:hover {
    background-color: #d4ac0c;
}

.whatsapp-cta-btn {
    padding: 20px 30px;
    background-color: #25d366;
    border-radius: 6px;
    color: #fff;
    position: relative;
    font-size: 18px;
    -webkit-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
}
.whatsapp-cta-btn:hover {
    background-color: #18e864;
}
.whatsapp-cta-btn:active {
    -webkit-transform: scale(0.96);
        -ms-transform: scale(0.96);
            transform: scale(0.96);
  }
  
  .whatsapp-cta-btn:before,
  .whatsapp-cta-btn:after {
    position: absolute;
    content: "";
    width: 150%;
    left: 50%;
    height: 100%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
    z-index: -1000;
    background-repeat: no-repeat;
  }
  
  .whatsapp-cta-btn:hover:before {
    top: -70%;
    background-image: -o-radial-gradient(circle, #a89215 20%, transparent 20%),
      -o-radial-gradient(circle, transparent 20%, #13a5be 20%, transparent 30%),
      -o-radial-gradient(circle, #a3b82d 20%, transparent 20%),
      -o-radial-gradient(circle, #590cbe 20%, transparent 20%),
      -o-radial-gradient(circle, transparent 10%, #bd1717 15%, transparent 20%),
      -o-radial-gradient(circle, #2a7ce8 20%, transparent 20%),
      -o-radial-gradient(circle, #30e82a 20%, transparent 20%),
      -o-radial-gradient(circle, #e92c75 20%, transparent 20%),
      -o-radial-gradient(circle, #914fe7 20%, transparent 20%);
    background-image: radial-gradient(circle, #a89215 20%, transparent 20%),
      radial-gradient(circle, transparent 20%, #13a5be 20%, transparent 30%),
      radial-gradient(circle, #a3b82d 20%, transparent 20%),
      radial-gradient(circle, #590cbe 20%, transparent 20%),
      radial-gradient(circle, transparent 10%, #bd1717 15%, transparent 20%),
      radial-gradient(circle, #2a7ce8 20%, transparent 20%),
      radial-gradient(circle, #30e82a 20%, transparent 20%),
      radial-gradient(circle, #e92c75 20%, transparent 20%),
      radial-gradient(circle, #914fe7 20%, transparent 20%);
    background-size: 10% 10%, 20% 20%, 15% 15%, 20% 20%, 18% 18%, 10% 10%, 15% 15%,
      10% 10%, 18% 18%;
    background-position: 50% 120%;
    -webkit-animation: greentopBubbles 0.6s ease;
            animation: greentopBubbles 0.6s ease;
  }
  
  @-webkit-keyframes greentopBubbles {
    0% {
      background-position: 5% 90%, 10% 90%, 10% 90%, 15% 90%, 25% 90%, 25% 90%,
        40% 90%, 55% 90%, 70% 90%;
    }
  
    50% {
      background-position: 0% 80%, 0% 20%, 10% 40%, 20% 0%, 30% 30%, 22% 50%,
        50% 50%, 65% 20%, 90% 30%;
    }
  
    100% {
      background-position: 0% 70%, 0% 10%, 10% 30%, 20% -10%, 30% 20%, 22% 40%,
        50% 40%, 65% 10%, 90% 20%;
      background-size: 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%;
    }
  }
  
  @keyframes greentopBubbles {
    0% {
      background-position: 5% 90%, 10% 90%, 10% 90%, 15% 90%, 25% 90%, 25% 90%,
        40% 90%, 55% 90%, 70% 90%;
    }
  
    50% {
      background-position: 0% 80%, 0% 20%, 10% 40%, 20% 0%, 30% 30%, 22% 50%,
        50% 50%, 65% 20%, 90% 30%;
    }
  
    100% {
      background-position: 0% 70%, 0% 10%, 10% 30%, 20% -10%, 30% 20%, 22% 40%,
        50% 40%, 65% 10%, 90% 20%;
      background-size: 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%;
    }
  }
  
  .whatsapp-cta-btn:hover::after {
    bottom: -70%;
    background-image: -o-radial-gradient(circle, #ff93db 20%, transparent 20%),
      -o-radial-gradient(circle, #2ae8df 20%, transparent 20%),
      -o-radial-gradient(circle, transparent 10%, #71ffbd 15%, transparent 20%),
      -o-radial-gradient(circle, #2a9ce8 20%, transparent 20%),
      -o-radial-gradient(circle, #7814fc 20%, transparent 20%),
      -o-radial-gradient(circle, #73e4f8 20%, transparent 20%),
      -o-radial-gradient(circle, #f8d3a9 20%, transparent 20%);
    background-image: radial-gradient(circle, #ff93db 20%, transparent 20%),
      radial-gradient(circle, #2ae8df 20%, transparent 20%),
      radial-gradient(circle, transparent 10%, #71ffbd 15%, transparent 20%),
      radial-gradient(circle, #2a9ce8 20%, transparent 20%),
      radial-gradient(circle, #7814fc 20%, transparent 20%),
      radial-gradient(circle, #73e4f8 20%, transparent 20%),
      radial-gradient(circle, #f8d3a9 20%, transparent 20%);
    background-size: 15% 15%, 20% 20%, 18% 18%, 20% 20%, 15% 15%, 20% 20%, 18% 18%;
    background-position: 50% 0%;
    -webkit-animation: greenbottomBubbles 0.6s ease;
            animation: greenbottomBubbles 0.6s ease;
  }
  
  @-webkit-keyframes greenbottomBubbles {
    0% {
      background-position: 10% -10%, 30% 10%, 55% -10%, 70% -10%, 85% -10%,
        70% -10%, 70% 0%;
    }
  
    50% {
      background-position: 0% 80%, 20% 80%, 45% 60%, 60% 100%, 75% 70%, 95% 60%,
        105% 0%;
    }
  
    100% {
      background-position: 0% 90%, 20% 90%, 45% 70%, 60% 110%, 75% 80%, 95% 70%,
        110% 10%;
      background-size: 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%;
    }
  }
  
  @keyframes greenbottomBubbles {
    0% {
      background-position: 10% -10%, 30% 10%, 55% -10%, 70% -10%, 85% -10%,
        70% -10%, 70% 0%;
    }
  
    50% {
      background-position: 0% 80%, 20% 80%, 45% 60%, 60% 100%, 75% 70%, 95% 60%,
        105% 0%;
    }
  
    100% {
      background-position: 0% 90%, 20% 90%, 45% 70%, 60% 110%, 75% 80%, 95% 70%,
        110% 10%;
      background-size: 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%;
    }
  }