/*==========================================
            FEATURES SECTION
==========================================*/

.features-section{

    padding:90px 0;
    background:#f8f8f8;

}

.features-container{

    max-width:1200px;
    width:100%;
    margin:auto;
    padding:0 15px;

}

/*==========================================
            HEADING
==========================================*/

.features-heading{

    text-align:center;
    margin-bottom:55px;

}

.features-subtitle{

    display:block;

    color:#b83330;

    font-size:15px;

    font-weight:700;

    letter-spacing:2px;

    text-transform:uppercase;

    margin-bottom:15px;

}

.features-heading h2{

    font-size:52px;

    line-height:1.15;

    color:#171717;

    font-weight:800;

}


/*==========================================
            GRID
==========================================*/

.features-grid{

    display:grid;

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

    gap:30px;

}


/*==========================================
            CARD
==========================================*/

.feature-card{

    position:relative;

    overflow:hidden;

    height:340px;

    background:#fff;

    border-radius:18px;

    box-shadow:

    0 12px 35px rgba(0,0,0,.08);

    transition:.45s;

}


/*==========================================
        OVERLAY
==========================================*/

.card-overlay{

    position:absolute;

    left:0;

    top:-100%;

    width:100%;

    height:100%;

    background:

    linear-gradient(

        to bottom,

        #b83330,

        #b83330

    );

    transition:.55s ease;

}


/*==========================================
        CONTENT
==========================================*/

.card-content{

    position:relative;

    z-index:5;

    height:100%;

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    text-align:center;

    padding:40px;

}


/*==========================================
            ICON
==========================================*/

.card-icon{

    width:90px;

    height:90px;

    border-radius:50%;

    background:#f8e4e3;

    display:flex;

    justify-content:center;

    align-items:center;

    margin-bottom:28px;

    transition:.45s;

}

.card-icon i{

    font-size:38px;

    color:#b83330;

    transition:.45s;

}


/*==========================================
            TITLE
==========================================*/

.feature-card h3{

    font-size:24px;

    font-weight:700;

    color:#171717;

    margin-bottom:18px;

    transition:.45s;

}


/*==========================================
            TEXT
==========================================*/

.feature-card p{

    color:#7d7d7d;

    font-size:17px;

    line-height:1.8;

    transition:.45s;

}


/*==========================================
            HOVER
==========================================*/

.feature-card:hover{

    transform:translateY(-12px);

    box-shadow:

    0 25px 55px rgba(184,51,48,.35);

}

.feature-card:hover .card-overlay{

    top:0;

}

.feature-card:hover h3,

.feature-card:hover p{

    color:#fff;

}

.feature-card:hover .card-icon{

    background:rgba(255,255,255,.18);

    backdrop-filter:blur(10px);

    transform:scale(1.08);

}

.feature-card:hover .card-icon i{

    color:#fff;

}


/*==========================================
        RESPONSIVE
==========================================*/

@media(max-width:992px){

.features-heading h2{

    font-size:42px;

}

.features-grid{

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

}

}


@media(max-width:768px){

.features-section{

    padding:70px 0;

}

.features-heading{

    margin-bottom:40px;

}

.features-heading h2{

    font-size:34px;

}

.features-grid{

    grid-template-columns:1fr;

}

.feature-card{

    height:310px;

}

}


@media(max-width:576px){

.features-heading h2{

    font-size:28px;

}

.features-subtitle{

    font-size:14px;

}

.card-icon{

    width:80px;

    height:80px;

}

.card-icon i{

    font-size:32px;

}

.feature-card h3{

    font-size:22px;

}

.feature-card p{

    font-size:15px;

}

}















































/*=========================================
            TRANZIX FAQ
=========================================*/

.trx-faq-section{

    padding:100px 0;

    background:#f8f9fb;

}

.trx-faq-wrapper{

    max-width:1200px;

    margin:auto;

    display:grid;

    grid-template-columns:430px 1fr;

    gap:45px;

    align-items:start;

}

/*=========================================
            LEFT
=========================================*/

.trx-faq-tag{

    display:inline-flex;

    align-items:center;

    padding:10px 18px;

    border-radius:50px;

    background:#fcf3f2;

    color:#b83330;

    font-size:14px;

    font-weight:700;

    letter-spacing:1px;

    margin-bottom:20px;

}

.trx-faq-left h2{

    font-size:52px;

    line-height:1.15;

    color:#1d1d1d;

    margin-bottom:18px;

}

.trx-faq-left h2 span{

    color:#b83330;

}

.trx-faq-left>p{

    color:#6d6d6d;

    line-height:1.8;

    margin-bottom:35px;

}

/*=========================================
        FEATURES
=========================================*/

.trx-faq-features{

    display:flex;

    flex-direction:column;

    gap:15px;

    margin-bottom:35px;

}

.trx-faq-feature{

    background:#fff;

    border-radius:14px;

    padding:18px 22px;

    display:flex;

    align-items:center;

    gap:18px;

    transition:.35s;

    border:1px solid #ececec;

}

.trx-faq-feature:hover{

    transform:translateY(-4px);

    border-color:#b83330;

    box-shadow:0 15px 35px rgba(0,0,0,.08);

}

.trx-faq-feature i{

    width:55px;

    height:55px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:#fcf3f2;

    color:#b83330;

    font-size:22px;

}

.trx-faq-feature h5{

    font-size:18px;

    color:#222;

    margin-bottom:5px;

}

.trx-faq-feature span{

    color:#777;

    font-size:14px;

}

/*=========================================
        BUTTON
=========================================*/

.trx-faq-btn{

    display:inline-flex;

    align-items:center;

    gap:12px;

    padding:16px 30px;

    border-radius:10px;

    background:#b83330;

    color:#fff;

    text-decoration:none;

    font-weight:600;

    transition:.35s;

}

.trx-faq-btn:hover{

    background:#1d1d1d;

}

.trx-faq-btn i{

    transition:.35s;

}

.trx-faq-btn:hover i{

    transform:translateX(5px);

}

/*=========================================
        RIGHT
=========================================*/

.trx-faq-right{

    display:flex;

    flex-direction:column;

    gap:18px;

}

/*=========================================
        FAQ ITEM
=========================================*/

.trx-faq-item{

    background:#fff;

    border-radius:16px;

    overflow:hidden;

    border:1px solid #ececec;

    transition:.35s;

}

.trx-faq-item:hover{

    border-color:#b83330;

    box-shadow:0 18px 40px rgba(0,0,0,.08);

}

.trx-faq-question{

    display:flex;

    justify-content:space-between;

    align-items:center;

    cursor:pointer;

    padding:24px 28px;

}

.trx-faq-question h4{

    font-size:20px;

    color:#222;

    font-weight:600;

}

.trx-faq-question span{

    width:40px;

    height:40px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:#fcf3f2;

    color:#b83330;

    font-size:24px;

    font-weight:700;

    transition:.35s;

}

/*=========================================
        ANSWER
=========================================*/

.trx-faq-answer{

    max-height:0;

    overflow:hidden;

    transition:max-height .45s ease;

    padding:0 28px;

}

.trx-faq-answer p{

    color:#666;

    line-height:1.9;

    font-size:15px;

    padding-bottom:14px;

}

/*=========================================
        ACTIVE
=========================================*/

.trx-faq-item.active{

    border-color:#b83330;

}

.trx-faq-item.active .trx-faq-answer{

    display:block;

}

.trx-faq-item.active .trx-faq-question span{

    background:#b83330;

    color:#fff;

    transform:rotate(45deg);

}

/*=========================================
        FAQ RESPONSIVE
        (fix: fixed 430px left column had
        no breakpoints, causing horizontal
        overflow on tablet/mobile)
=========================================*/

@media(max-width:992px){

    .trx-faq-wrapper{

        grid-template-columns:1fr;

        gap:40px;

    }

    .trx-faq-left h2{

        font-size:42px;

    }

}

@media(max-width:768px){

    .trx-faq-section{

        padding:70px 0;

    }

    .trx-faq-left h2{

        font-size:34px;

    }

    .trx-faq-question h4{

        font-size:18px;

    }

    .trx-faq-question{

        padding:20px 22px;

        gap:12px;

    }

    .trx-faq-answer{

        padding:0 22px;

    }
}

@media(max-width:576px){

    .trx-faq-wrapper{

        gap:30px;

    }

    .trx-faq-left h2{

        font-size:28px;

    }

    .trx-faq-feature{

        padding:14px 16px;

        gap:14px;

    }

    .trx-faq-feature i{

        width:44px;

        height:44px;

        font-size:18px;

        flex-shrink:0;

    }

    .trx-faq-feature h5{

        font-size:16px;

    }

    .trx-faq-question h4{

        font-size:16px;

    }

    .trx-faq-question span{

        width:32px;

        height:32px;

        font-size:18px;

        flex-shrink:0;

    }

    .trx-faq-btn{

        width:100%;

        justify-content:center;

    }
}



















































/*=========================================
            GO TO TOP
=========================================*/

.go-top-wrapper-mg{

    position:fixed;

    right:28px;

    bottom:28px;

    display:flex;

    flex-direction:column;

    align-items:center;

    gap:12px;

    z-index:9999;

    opacity:0;

    visibility:hidden;

    transform:translateY(25px);

    transition:
    opacity .45s ease,
    visibility .45s ease,
    transform .45s ease;

}

.go-top-wrapper-mg.active-mg{

    opacity:1;

    visibility:visible;

    transform:translateY(0);

}



/*=================================
        PROGRESS
==================================*/

.go-top-progress-mg{

    position:relative;

    width:2px;

    height:72px;

    background:#d9d9d9;

    border-radius:30px;

    overflow:hidden;

}

.go-top-progress-fill-mg{

    position:absolute;

    left:0;

    bottom:0;

    width:100%;

    height:0;

    background:linear-gradient(

        to top,

        #b83330,

        #dd807e

    );

    border-radius:30px;

    transition:height .12s linear;

}



/*=================================
        BUTTON
==================================*/

.go-top-btn-mg{

    border:none;

    background:transparent;

    display:flex;

    flex-direction:column;

    align-items:center;

    justify-content:center;

    gap:10px;

    cursor:pointer;

    padding:0;

}



/*=================================
        TEXT
==================================*/

.go-top-text-mg{

    writing-mode:vertical-rl;

    transform:rotate(360deg);

    font-size:15px;

    font-weight:700;

    color:#b83330;

    letter-spacing:.4px;

    line-height:1;

    transition:

    transform .35s ease,

    letter-spacing .35s ease,

    color .35s ease;

}



/*=================================
        ICON
==================================*/

.go-top-btn-mg i{

    font-size:15px;

    color:#1f1f1f;

    transition:.35s;

}



/*=================================
        HOVER
==================================*/

.go-top-btn-mg:hover .go-top-text-mg{

    transform:

    rotate(360deg)

    scaleY(1.08);

    letter-spacing:1px;

    color:#111;

}

.go-top-btn-mg:hover i{

    color:#b83330;

    transform:translateY(-3px);

}



/*=================================
        PROGRESS GLOW
==================================*/

.go-top-progress-fill-mg{

    box-shadow:

    0 0 8px rgba(184,51,48,.35);

}



/*=================================
        SHOW ANIMATION
==================================*/

.go-top-wrapper-mg.active-mg{

    animation:

    gotopShow .45s ease;

}

@keyframes gotopShow{

    from{

        opacity:0;

        transform:

        translateY(20px);

    }

    to{

        opacity:1;

        transform:

        translateY(0);

    }

}



/*=================================
        MOBILE
==================================*/

@media(max-width:768px){

    .go-top-wrapper-mg{

        right:16px;

        bottom:18px;

        gap:10px;

    }

    .go-top-progress-mg{

        height:58px;

    }

    .go-top-text-mg{

        font-size:13px;

    }

    .go-top-btn-mg i{

        font-size:14px;

    }

}