/* Google Font */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{

    font-family: "Mulish", sans-serif;
    background:#f7f5ff;
    color:#222;
}

/*=======================*/


.mulish {
  font-family: "Mulish", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}



.features-section{

    padding:10px 20px;
}

.container{

    max-width:1200px;
    margin:auto;
}

/*=======================*/

.section-title{

    text-align:center;
    font-size:32px;
    font-weight:500;
    margin-bottom:35px;
    line-height:1.2;
}

.section-title span{

    color:#6d5efc;
}

/*=======================*/

.features-grid{

    display:grid;
    grid-template-columns:repeat(3,1fr);
    border:1px solid #e8e3ff;
}

/*=======================*/

.feature-card{

    padding:38px;
    background:#fbfaff;

    border-right:1px solid #e8e3ff;
    border-bottom:1px solid #e8e3ff;

    transition:.4s;
    position:relative;
    overflow:hidden;
}

/* Remove border */

.feature-card:nth-child(3),
.feature-card:nth-child(6){

    border-right:none;
}

.feature-card:nth-child(4),
.feature-card:nth-child(5),
.feature-card:nth-child(6){

    border-bottom:none;
}

/*=======================*/

.feature-card::before{

    content:'';
    position:absolute;

    width:100%;
    height:4px;

    left:0;
    top:0;

    background:#9c4428;
    transform:scaleX(0);
    transition:.4s;
}

.feature-card:hover::before{

    transform:scaleX(1);
}

.feature-card:hover{

    background:#ffffff;
    transform:translateY(-8px);

    box-shadow:0 20px 45px rgba(108,94,252,.12);
}

/*=======================*/

.icon-box{

    width:54px;
    height:54px;

    border-radius:14px;

    display:flex;
    justify-content:center;
    align-items:center;

    background:#fff;

    border:2px solid #ebe6ff;

    box-shadow:
    0 6px 15px rgba(109,94,252,.08);

    margin-bottom:28px;

    font-size:24px;
    color:#6d5efc;

    transition:.35s;
}

.feature-card:hover .icon-box{

    background:#fff;
    color:#fff;

    transform:rotate(8deg) scale(1.08);
}

/*=======================*/

.feature-card h3{

    font-size:24px;
    margin-bottom:16px;
    font-weight:600;
    color:#222;
}

.feature-card p{

    font-size:17px;
    color:#050505;
    line-height:1.5;
}

/*=======================*/
/* Tablet */

@media(max-width:991px){

.section-title{

    font-size:42px;
}

.features-grid{

    grid-template-columns:repeat(2,1fr);
}

.feature-card{

    border-right:1px solid #e8e3ff;
    border-bottom:1px solid #e8e3ff;
}

.feature-card:nth-child(2),
.feature-card:nth-child(4),
.feature-card:nth-child(6){

    border-right:none;
}

.feature-card:nth-child(5),
.feature-card:nth-child(6){

    border-bottom:none;
}

}

/*=======================*/
/* Mobile */

@media(max-width:768px){

.section-title{

    font-size:34px;
    margin-bottom:45px;
}

.features-grid{

    grid-template-columns:1fr;
}

.feature-card{

    border-right:none;
}

.feature-card:last-child{

    border-bottom:none;
}

.feature-card h3{

    font-size:24px;
}

.feature-card{

    padding:30px;
}

}

/* =============================================== */
/* 
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{

    font-family:'Mulish',sans-serif;
    background:#ffffff;
    padding:70px 20px;
} */

.process-section{

    max-width:1300px;
    margin:auto;

    display:flex;
    justify-content:center;
    align-items:center;
    gap:6px;

    flex-wrap:wrap;
}

/* Card */

.process-box{

    width: 140px;
    min-height: 7px;
    background: #fff;
    border-radius: 16px;
    position: relative;
    padding: 12px 0px 0px 0px;
    text-align: center;
    transition: .4s;
    overflow: hidden;

}


.process-box h5{
    font-size: 18px;
    font-weight: 600;
    padding-top: 5px;

}

/* Gradient Border */

.process-box::before{

    content:"";

    position:absolute;
    inset:0;

    padding:2px;

    border-radius:16px;

    -webkit-mask:
      linear-gradient(#fff 0 0) content-box,
      linear-gradient(#fff 0 0);

    -webkit-mask-composite:xor;
            mask-composite:exclude;
}

/* Colors */

.green::before{

   background: linear-gradient(135deg, #ff6634, #1a1c18);
}

.teal::before{

    background: linear-gradient(135deg, #ff6634, #1a1c18);
}

.blue::before{

   background: linear-gradient(135deg, #ff6634, #1a1c18);
}

.purple::before{

    background: linear-gradient(135deg, #ff6634, #1a1c18);
}

/* Hover */

.process-box:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 40px rgba(0,0,0,.12);
}

/* Icon */

.icon{

    font-size:42px;

    margin-bottom:20px;

    color:#555;
}

.process-box h3{

    font-size:26px;

    margin-bottom:15px;

    font-weight:800;

    color:#222;
}

.process-box p{

    font-size:15px;

    color:#666;

    line-height:1.7;
}

/* Arrow */

.arrow{

    font-size:20px;

    color:#000;

    font-weight:bold;

    animation:moveArrow 1.5s infinite;

    padding-top: 20px;
}

@keyframes moveArrow{

    0%{
        transform:translateX(0px);
    }

    50%{
        transform:translateX(8px);
    }

    100%{
        transform:translateX(0px);
    }

}

/* Tablet */

@media(max-width:992px){

.process-section{

    gap:25px;
}

.process-box{

    width:220px;
}

}

/* Mobile */

@media(max-width:768px){

.process-section{

    flex-direction:column;
}

.arrow{

    transform:rotate(90deg);
    font-size:45px;
}

.process-box{

    width:100%;
    max-width:360px;
}

}

/* Small Mobile */

@media(max-width:480px){

.process-box{

    padding:25px 18px;
}

.process-box h3{

    font-size:22px;
}

.icon{

    font-size:36px;
}

.process-box p{

    font-size:14px;
}

}