@charset "utf-8";

/*==========================================
 Page Common
==========================================*/

/*----------------------------------
 Page lead text
----------------------------------*/
.page-lead{
    max-width: 800px;
    margin: 0 auto 4rem;
    color: #555;
    font-size: 1.1rem;
    line-height: 2;
    text-align: center;
}

/*----------------------------------
 Section
----------------------------------*/

.page-section{
    margin-bottom:120px;
    scroll-margin-top:100px;
}

.page-section:last-child{
    margin-bottom:0;
}


/*----------------------------------
 Section Title
----------------------------------*/

.section-title{
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:18px;
    margin-bottom:60px;
    text-align:center;
    font-size:2rem;
}

.section-title img,
.section-title i{
    display:block;
}

.section-title img{
    width:56px;
    height:auto;
}

.section-title i{
    font-size:3rem;
    color:var(--brand-color);
}

.section-title span{
    display:block;
    font-size:2rem;
    font-weight:700;
    line-height:1.3;
}


/*----------------------------------
 Card
----------------------------------*/

.page-card{
    background:#fff;
    border:1px solid #dfe8f3;
    border-radius:20px;
    box-shadow:0 4px 14px rgba(0,0,0,.05);
}


/*----------------------------------
 Button
----------------------------------*/

.page-btn{
    position:relative;
    display:inline-flex;
    align-items:center;
    justify-content:center;

    min-width:340px;
    height:64px;
    padding:0 40px;

    border-radius:999px;

    background:var(--brand-color);

    color:#fff;
    text-decoration:none;

    font-size:1.1rem;
    font-weight:700;

    transition:.3s;
}

.page-btn:hover{
    opacity:.85;
    transform:translateY(-2px);
}

.page-btn i{
    position:absolute;
    right:24px;
}

.page-cta{
    margin-top:50px;
    text-align:center;
}
/*----------------------------------
 Outline Button
----------------------------------*/

.page-btn-outline{
    background:#fff;
    border:3px solid var(--brand-color);
    color:var(--brand-color);
    height:60px;
}

.page-btn-outline i{
    color:var(--brand-color);
}

.page-btn-outline:hover{
    background:var(--brand-color);
    color:#fff;
}

.page-btn-outline:hover i{
    color:#fff;
}

/*----------------------------------
 Fade Up
----------------------------------*/

.fadeUp{
    opacity:0;
    transform:translateY(40px);
    transition:
        opacity .8s ease,
        transform .8s ease;
}

.fadeUp.show{
    opacity:1;
    transform:translateY(0);
}


/*----------------------------------
 Responsive
----------------------------------*/

@media screen and (max-width:768px){

    .page-lead{
        margin-bottom: 3rem;
        font-size: 1rem;
        line-height: 1.9;
        text-align: left;
    }
    
    .page-section{
        margin-bottom:80px;
    }

    .section-title{
        gap:14px;
        margin-bottom:40px;
    }

    .section-title img{
        width:42px;
    }

    .section-title i{
        font-size:2.4rem;
    }

    .section-title span{
        font-size:2rem;
    }

    .page-btn{
        width:100%;
        min-width:inherit;
    }

}