/*==================================================
ROFFAPRINT WEBSITE
Version : 1.0
==================================================*/


/*==================================================
ROOT
==================================================*/

:root{

    --primary:#163A9B;
    --secondary:#295BFF;
    --yellow:#FFC928;
    --green:#25D366;

    --dark:#1F2937;
    --gray:#6B7280;
    --light:#F8FAFC;
    --white:#FFFFFF;

    --radius-sm:12px;
    --radius:18px;
    --radius-lg:24px;
    --radius-xl:30px;
    --radius-pill:50px;

    --shadow-sm:0 5px 15px rgba(0,0,0,.05);
    --shadow:0 15px 40px rgba(0,0,0,.08);
    --shadow-lg:0 25px 60px rgba(0,0,0,.12);

    --transition:.3s ease;

}


/*==================================================
RESET
==================================================*/

*{

    margin:0;
    padding:0;
    box-sizing:border-box;

}

html{

    scroll-behavior:smooth;

}

body{

    font-family:'Plus Jakarta Sans',sans-serif;
    font-size:16px;
    line-height:1.7;
    color:var(--dark);
    background:#fff;
    overflow-x:hidden;

}

img{

    max-width:100%;
    display:block;

}

a{

    text-decoration:none;
    transition:var(--transition);

}

ul{

    list-style:none;
    margin:0;
    padding:0;

}

button{

    border:none;
    outline:none;
    cursor:pointer;
    transition:var(--transition);

}

input,
textarea,
select{

    outline:none;
    transition:var(--transition);

}

section{

    padding:100px 0;

}


/*==================================================
CONTAINER
==================================================*/

.container{

    width:1320px;
    max-width:95%;
    margin:auto;

}


/*==================================================
UTILITY
==================================================*/

.text-center{

    text-align:center;

}

.text-white{

    color:#fff;

}

.bg-light{

    background:var(--light);

}

.bg-primary{

    background:var(--primary);

}

.shadow{

    box-shadow:var(--shadow);

}

.rounded{

    border-radius:var(--radius-lg);

}

/*==================================================
TYPOGRAPHY
==================================================*/

h1,
h2,
h3,
h4,
h5,
h6{

    margin:0;
    color:var(--primary);
    font-weight:700;
    line-height:1.2;

}

h1{

    font-size:60px;
    font-weight:800;

}

h2{

    font-size:42px;
    font-weight:800;

}

h3{

    font-size:32px;

}

h4{

    font-size:24px;

}

p{

    color:var(--gray);
    margin:0;

}


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

.section-header{

    max-width:760px;
    margin:0 auto 70px;
    text-align:center;
    margin-bottom:60px;

}

.section-badge{

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

    padding:10px 20px;

    background:#EEF4FF;
    color:var(--secondary);

    border-radius:var(--radius-pill);

    font-size:13px;
    font-weight:700;
    letter-spacing:1px;
    text-transform:uppercase;

    margin-bottom:20px;

}

.section-header h2{

    margin-bottom:20px;

}

.section-header p{

    font-size:17px;
    line-height:1.8;

}


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

.btn-primary{

    padding:12px 20px;
    border-radius:12px;
    font-size:15px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    background:var(--primary);
    color:#fff;

}

.btn-primary:hover{

    background:var(--secondary);
    color:#fff;
    transform:translateY(-4px);
    box-shadow:var(--shadow);

}

.btn-outline{

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

    padding:16px 34px;

    border:2px solid var(--primary);

    color:var(--primary);

    border-radius:var(--radius-pill);

    font-weight:700;

}

.btn-outline:hover{

    background:var(--primary);
    color:#fff;

}

.btn-whatsapp{

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

    padding:16px 34px;

    background:var(--green);
    color:#fff;

    border-radius:var(--radius-pill);

    font-weight:700;

}

.btn-whatsapp:hover{

    color:#fff;
    transform:translateY(-4px);
    box-shadow:0 15px 30px rgba(37,211,102,.25);

}



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

.card{

    background:#fff;

    border-radius:var(--radius-lg);

    box-shadow:var(--shadow);

    transition:var(--transition);

}

.card:hover{

    transform:translateY(-8px);

}

/*==================================================
TOP BAR
==================================================*/

.top-bar{

    background:var(--primary);
    color:#fff;
    font-size:14px;

}

.top-bar .container{

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

    padding:10px 0;

}

.top-left,
.top-right{

    display:flex;
    align-items:center;
    gap:20px;

}

.top-bar a{

    color:#fff;

}

.top-bar i{

    margin-right:6px;

}


/*==================================================
HEADER
==================================================*/

.main-header{

    position:sticky;
    top:0;
    left:0;
    z-index:999;

    background:#fff;

    box-shadow:var(--shadow-sm);

}

.main-header .container{

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

    height:90px;

}


/*==================================================
LOGO
==================================================*/

.logo{

    display:flex;
    align-items:center;

}

.logo img{

    height:58px;
    width:auto;

}


/*==================================================
MENU
==================================================*/

.main-menu ul{

    display:flex;
    align-items:center;
    gap:40px;

}

.main-menu ul li{

    position:relative;

}

.main-menu ul li a{

    display:block;

    color:var(--dark);

    font-size:15px;
    font-weight:700;

    padding:10px 0;

}

.main-menu ul li a:hover,
.main-menu ul li a.active{

    color:var(--secondary);

}

.main-menu ul li a::after{

    content:"";

    position:absolute;

    left:0;
    bottom:0;

    width:0;
    height:3px;

    background:var(--secondary);

    border-radius:50px;

    transition:var(--transition);

}

.main-menu ul li a:hover::after,
.main-menu ul li a.active::after{

    width:100%;

}


/*==================================================
HEADER ACTION
==================================================*/

.header-action{

    display:flex;
    align-items:center;
    gap:15px;

}

.search-btn{

    width:46px;
    height:46px;

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

    background:var(--light);

    border-radius:50%;

    color:var(--primary);

    font-size:18px;

}

.search-btn:hover{

    background:var(--secondary);
    color:#fff;

}

.header-action .btn-whatsapp{

    padding:14px 24px;

}


/*==================================================
MOBILE MENU BUTTON
==================================================*/

.menu-toggle{

    display:none;

    width:48px;
    height:48px;

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

    border-radius:12px;

    background:var(--light);

    color:var(--primary);

    font-size:24px;

    cursor:pointer;

}

.menu-toggle:hover{

    background:var(--secondary);
    color:#fff;

}

/*==================================================
HERO
==================================================*/

.hero{

    padding:120px 0 100px;

    background:linear-gradient(
        180deg,
        #F8FBFF 0%,
        #FFFFFF 100%
    );

    overflow:hidden;

}

.hero-grid{

    display:grid;
    grid-template-columns:1fr 1fr;
    align-items:center;
    gap:70px;

}

.hero-content{

    max-width:620px;

}


/*==================================================
HERO BADGE
==================================================*/

.hero-badge{

    display:inline-flex;
    align-items:center;
    gap:8px;

    padding:10px 20px;

    background:#EAF1FF;

    color:var(--secondary);

    border-radius:var(--radius-pill);

    font-size:14px;
    font-weight:700;

    margin-bottom:25px;

}


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

.hero h1{

    margin-bottom:20px;

    line-height:1.1;

}

.hero h2{

    font-size:28px;
    font-weight:700;

    color:var(--dark);

    margin-bottom:25px;

}

.hero p{

    font-size:17px;

    line-height:1.9;

    margin-bottom:35px;

}


/*==================================================
HERO LIST
==================================================*/

.hero-list{

    display:grid;

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

    gap:18px;

    margin-bottom:40px;

}

.hero-list li{

    display:flex;

    align-items:center;

    gap:12px;

    font-weight:600;

    color:var(--dark);

}

.hero-list i{

    color:var(--green);

    font-size:20px;

}


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

.hero-button{

    display:flex;

    align-items:center;

    gap:20px;

    flex-wrap:wrap;

}


/*==================================================
HERO IMAGE
==================================================*/

.hero-image{

    display:flex;

    justify-content:center;

    align-items:center;

}

.hero-image img{

    width:100%;

    max-width:620px;

}


/*==================================================
HERO IMAGE ANIMATION
==================================================*/

.hero-image{

    animation:heroFloat 5s ease-in-out infinite;

}

@keyframes heroFloat{

    0%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-12px);

    }

    100%{

        transform:translateY(0);

    }

}

/*==================================================
PRODUCT SEARCH
==================================================*/

.product-search{

    padding:0 0 40px;

}

.search-wrapper{

    position:relative;

    max-width:500px;

}

.search-wrapper i{

    position:absolute;

    left:20px;

    top:50%;

    transform:translateY(-50%);

    color:#999;

    font-size:18px;

}

.search-wrapper input{

    width:100%;

    height:56px;

    border:2px solid #E5E7EB;

    border-radius:50px;

    padding:0 20px 0 55px;

    font-size:16px;

    transition:.3s;

}

.search-wrapper input:focus{

    border-color:var(--primary);

    outline:none;

}

/*==========================================
PRODUCT DETAIL HERO
==========================================*/

.detail-hero{

    display:grid;

    grid-template-columns:1.2fr 1fr;

    gap:70px;

    align-items:center;

}

.detail-left p{

    margin:25px 0;

    font-size:17px;

}


/*==========================================
FEATURE
==========================================*/

.detail-feature{

    display:grid;

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

    gap:18px;

    margin-bottom:35px;

}

.detail-feature span{

    display:flex;

    align-items:center;

    gap:10px;

    font-weight:600;

}

.detail-feature i{

    color:var(--green);

}

/*==================================
PAGE HERO
===================================*/

.page-hero{

    padding:60px 0 30px;

    background:linear-gradient(
        180deg,
        #F8FBFF,
        #FFFFFF
    );

}

.page-hero-content{

    max-width:760px;

}

.breadcrumb-nav{

    display:flex;

    gap:10px;

    margin-bottom:20px;

    font-size:15px;

}

.breadcrumb-nav a{

    color:var(--gray);

}

.breadcrumb-nav span{

    color:var(--primary);

}


/*==========================================
PRICE
==========================================*/

.starting-price{

    display:flex;

    flex-direction:column;

    gap:2px;

}

.starting-price span{

    font-size:12px;

    color:#999;

}

.starting-price strong{

    font-size:26px;

    line-height:1;

}

.price-area{

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:25px;

    flex-wrap:wrap;

}

.price-area small{

    display:block;

    color:#888;

    margin-bottom:8px;

}

.price-area h2{

    font-size:46px;

    color:var(--primary);

}

/*==================================================
PRODUCTS PAGE
==================================================*/

.products-page{

    padding:20px 0 80px;

}

.products-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));

    gap:30px;

}

.product-card{

    background:#fff;

    border-radius:24px;

    overflow:hidden;

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

    transition:.3s;

    display:flex;

    flex-direction:column;

    border-radius:18px;

}

.product-card:hover{

    transform:translateY(-8px);

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

}

.product-image{

    height:180px;

    width:100%;

    aspect-ratio:16/9;

    overflow:hidden;

    background:#F5F7FB;

}

.product-image img{

    width:100%;

    height:100%;

    object-fit:cover;

}

.product-content p{

    color:#666;

    line-height:1.7;

    margin-bottom:25px;

    display:-webkit-box;

    -webkit-line-clamp:2;

    -webkit-box-orient:vertical;

    overflow:hidden;

}

.product-content h3{

    font-size:22px;
    margin-bottom:12px;

    color:var(--primary);

}

.product-content p{

    color:#666;

    line-height:1.8;

    margin-bottom:25px;

    flex:1;

}

.product-bottom{

    padding:12px 20px;

    border-radius:12px;

    font-size:15px;

    margin-top:20px;

    display:flex;

    justify-content:space-between;

    align-items:center;

}

.starting-price{

    font-size:13px;

    color:#777;

}

.starting-price strong{

    display:block;

    font-size:24px;

    color:var(--primary);

    margin-top:4px;

}

/*==========================================
PRODUCT PREVIEW
==========================================*/

.product-preview{

    background:#fff;

    border-radius:30px;

    padding:50px;

    box-shadow:var(--shadow-lg);

}

.product-preview img{

    width:100%;

}

/*==================================================
WHY CHOOSE US
==================================================*/

.why-us{

    background:#fff;

}

.why-grid{

    display:grid;

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

    gap:30px;

}


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

.why-card{

    background:#fff;

    padding:40px 30px;

    border-radius:var(--radius-lg);

    text-align:center;

    box-shadow:var(--shadow);

    transition:var(--transition);

}

.why-card:hover{

    transform:translateY(-10px);

    box-shadow:var(--shadow-lg);

}


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

.why-icon{

    width:80px;
    height:80px;

    margin:0 auto 25px;

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

    border-radius:22px;

    background:#EEF4FF;

    color:var(--secondary);

    font-size:34px;

}

.why-card:hover .why-icon{

    background:var(--primary);

    color:#fff;

}


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

.why-card h4{

    margin-bottom:15px;

    color:var(--primary);

    font-size:22px;

    font-weight:700;

}

.why-card p{

    font-size:15px;

    line-height:1.8;

    color:var(--gray);

}


/*==================================================
WHY EXTRA
==================================================*/

.why-card:hover h4{

    color:var(--secondary);

}

.why-card:hover p{

    color:#555;

}

/*==================================================
PRODUCT CATEGORIES
==================================================*/

.categories{

    background:var(--light);

}

.category-grid{

    display:grid;

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

    gap:30px;

}


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

.category-card{

    display:flex;

    flex-direction:column;

    align-items:center;

    text-align:center;

    background:#fff;

    padding:40px 30px;

    border-radius:var(--radius-lg);

    box-shadow:var(--shadow);

    transition:var(--transition);

    color:var(--dark);

    height:100%;

}

.category-card:hover{

    transform:translateY(-10px);

    box-shadow:var(--shadow-lg);

    color:var(--dark);

}

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

.catalog{

    background:#fff;

}

.catalog-grid{

    display:flex;

    flex-direction:column;

    gap:25px;

}

.catalog-card{

    display:flex;

    gap:35px;

    align-items:center;

    padding:30px;

    background:#fff;

    border-radius:24px;

    box-shadow:var(--shadow);

    transition:.3s;

}

.catalog-card:hover{

    transform:translateY(-8px);

    box-shadow:var(--shadow-lg);

}

.catalog-image{

    width:220px;

    height:180px;

    flex-shrink:0;

    overflow:hidden;

    border-radius:20px;

    background:#F5F7FB;

}

.catalog-image img{

    width:100%;

    height:100%;

    object-fit:cover;

}

.catalog-content{

    flex:1;

}

.catalog-content h3{

    margin-bottom:12px;

}

.catalog-content p{

    margin-bottom:20px;

}

.catalog-feature{

    display:flex;

    flex-wrap:wrap;

    gap:12px;

    margin-bottom:25px;

}

.catalog-feature span{

    padding:8px 16px;

    background:#EEF4FF;

    border-radius:50px;

    font-size:14px;

    font-weight:600;

}

.catalog-bottom{

    display:flex;

    justify-content:space-between;

    align-items:center;

    border-top:1px solid #E5E7EB;

    padding-top:20px;

}

.catalog-price small{

    display:block;

    color:#999;

}

.catalog-price strong{

    font-size:30px;

    color:var(--primary);

}

.catalog-feature{

    display:flex;

    flex-wrap:wrap;

    gap:15px;

    margin-bottom:30px;

}

.catalog-feature span{

    padding:8px 16px;

    background:#F5F8FF;

    border-radius:50px;

    font-size:14px;

    font-weight:600;

}

.catalog-button{

    display:inline-flex;

    align-items:center;

    gap:8px;

    color:var(--primary);

    font-weight:700;

}

.catalog-button:hover{

    color:var(--secondary);

}

.catalog-image{

    width:180px;

    height:180px;

    flex-shrink:0;

    border-radius:20px;

    overflow:hidden;

    background:#F8FAFC;

}

.catalog-image img{

    width:100%;

    height:100%;

    object-fit:cover;

}


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

.category-icon{

    width:90px;
    height:90px;

    display:flex;

    align-items:center;

    justify-content:center;

    margin-bottom:25px;

    border-radius:22px;

    background:#EEF4FF;

    color:var(--secondary);

    font-size:42px;

    transition:var(--transition);

}

.category-card:hover .category-icon{

    background:var(--primary);

    color:#fff;

}


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

.category-card h4{

    font-size:22px;

    font-weight:700;

    margin-bottom:15px;

    color:var(--primary);

}

.category-card:hover h4{

    color:var(--primary);

}


/*==================================================
CATEGORY DESCRIPTION
==================================================*/

.category-card p{

    font-size:15px;

    color:var(--gray);

    line-height:1.8;

    margin-bottom:25px;

    min-height:80px;

}


/*==================================================
STARTING PRICE
==================================================*/

.starting-price{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:10px 18px;

    margin-bottom:25px;

    background:#F3F7FF;

    color:var(--secondary);

    border-radius:var(--radius-pill);

    font-size:14px;

    font-weight:700;

}


/*==================================================
CATEGORY LINK
==================================================*/

.category-card span{

    margin-top:auto;

    font-size:15px;

    font-weight:700;

    color:var(--primary);

}

.category-card:hover span{

    color:var(--secondary);

}

/*==================================================
HOW TO ORDER
==================================================*/

.how-order{

    background:#fff;

}

.order-grid{

    display:grid;

    grid-template-columns:1fr 60px 1fr 60px 1fr 60px 1fr 60px 1fr;

    align-items:start;

}


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

.order-card{

    text-align:center;

    padding:20px;

}

.order-card:hover .order-number{

    background:var(--secondary);

}

.order-card:hover .order-icon{

    transform:scale(1.1);

}


/*==================================================
ORDER NUMBER
==================================================*/

.order-number{

    width:60px;
    height:60px;

    margin:0 auto 25px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:var(--primary);

    color:#fff;

    font-size:18px;

    font-weight:700;

    transition:var(--transition);

}


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

.order-icon{

    font-size:48px;

    color:var(--secondary);

    margin-bottom:25px;

    transition:var(--transition);

}


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

.order-card h4{

    font-size:22px;

    margin-bottom:15px;

    color:var(--primary);

}

.order-card p{

    font-size:15px;

    color:var(--gray);

    line-height:1.8;

}


/*==================================================
ORDER ARROW
==================================================*/

.order-arrow{

    display:flex;

    align-items:center;

    justify-content:center;

    height:100%;

    font-size:36px;

    color:var(--secondary);

    font-weight:700;

}


/*==================================================
ORDER MOBILE HELPER
==================================================*/

.order-grid .order-arrow:last-child{

    display:flex;

}

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

.faq-section{

    background:var(--light);

}

.faq-section .section-header{

    margin-bottom:60px;

}


/*==================================================
ACCORDION
==================================================*/

.accordion{

    max-width:900px;

    margin:0 auto;

}

.accordion-item{

    border:none !important;

    border-radius:var(--radius-lg) !important;

    overflow:hidden;

    margin-bottom:20px;

    box-shadow:var(--shadow);

}

.accordion-item:last-child{

    margin-bottom:0;

}


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

.accordion-button{

    padding:22px 28px;

    font-size:17px;

    font-weight:700;

    color:var(--primary);

    background:#fff;

    box-shadow:none !important;

}

.accordion-button:not(.collapsed){

    background:var(--primary);

    color:#fff;

}

.accordion-button:focus{

    border:none;

    box-shadow:none;

}


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

.accordion-button::after{

    transition:var(--transition);

}


/*==================================================
ACCORDION BODY
==================================================*/

.accordion-body{

    padding:24px 28px;

    color:var(--gray);

    line-height:1.9;

    background:#fff;

}

/*==================================================
CALL TO ACTION
==================================================*/

.cta-section{

    background:linear-gradient(
        135deg,
        var(--primary),
        var(--secondary)
    );

    padding:100px 0;

}

.cta-box{

    max-width:900px;

    margin:auto;

    text-align:center;

    background:#fff;

    border-radius:var(--radius-xl);

    padding:70px 50px;

    box-shadow:var(--shadow-lg);

}

.cta-box h2{

    margin:20px 0;

}

.cta-box p{

    max-width:650px;

    margin:0 auto 35px;

    line-height:1.8;

}

.cta-button{

    display:flex;

    justify-content:center;

}


/*==================================================
FOOTER
==================================================*/

.site-footer{

    margin-top:0;

    background:#111827;

    color:#D1D5DB;

    padding:80px 0 30px;

}


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

.footer-grid{

    display:grid;

    grid-template-columns:2fr 1fr 1fr 1.3fr;

    gap:50px;

    margin-bottom:60px;

}


/*==================================================
FOOTER BRAND
==================================================*/

.footer-logo{

    margin-bottom:20px;

}

.footer-logo img{

    height:60px;

}

.footer-about{

    color:#D1D5DB;

    line-height:1.9;

    margin-bottom:25px;

}


/*==================================================
SOCIAL
==================================================*/

.footer-social{

    display:flex;

    gap:12px;

}

.footer-social a{

    width:42px;
    height:42px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

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

    color:#fff;

}

.footer-social a:hover{

    background:var(--secondary);

}


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

.footer-title{

    color:#fff;

    font-size:20px;

    margin-bottom:25px;

}


/*==================================================
FOOTER MENU
==================================================*/

.footer-links{

    display:flex;

    flex-direction:column;

    gap:14px;

}

.footer-links a{

    color:#D1D5DB;

}

.footer-links a:hover{

    color:#fff;

    padding-left:6px;

}


/*==================================================
CONTACT
==================================================*/

.footer-contact{

    display:flex;

    flex-direction:column;

    gap:16px;

}

.footer-contact div{

    display:flex;

    align-items:flex-start;

    gap:12px;

}

.footer-contact i{

    color:var(--yellow);

    margin-top:3px;

}


/*==================================================
COPYRIGHT
==================================================*/

.footer-bottom{

    border-top:1px solid rgba(255,255,255,.08);

    padding-top:25px;

    text-align:center;

    color:#9CA3AF;

    font-size:14px;

}

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

.fade-up{

    animation:fadeUp .8s ease forwards;

}

.fade-in{

    animation:fadeIn .8s ease forwards;

}

@keyframes fadeUp{

    from{

        opacity:0;
        transform:translateY(30px);

    }

    to{

        opacity:1;
        transform:translateY(0);

    }

}

@keyframes fadeIn{

    from{

        opacity:0;

    }

    to{

        opacity:1;

    }

}


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

img{

    transition:var(--transition);

}

.category-card:hover img,
.hero-image:hover img{

    transform:scale(1.03);

}


/*==================================================
SCROLLBAR
==================================================*/

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#f1f1f1;

}

::-webkit-scrollbar-thumb{

    background:var(--primary);

    border-radius:20px;

}

::-webkit-scrollbar-thumb:hover{

    background:var(--secondary);

}


/*==================================================
SELECTION
==================================================*/

::selection{

    background:var(--primary);

    color:#fff;

}


/*==================================================
FOCUS
==================================================*/

input:focus,
select:focus,
textarea:focus{

    border-color:var(--secondary);

    box-shadow:0 0 0 4px rgba(41,91,255,.12);

}


/*==================================================
SPACING HELPER
==================================================*/

.mb-0{margin-bottom:0!important;}
.mb-1{margin-bottom:10px!important;}
.mb-2{margin-bottom:20px!important;}
.mb-3{margin-bottom:30px!important;}
.mb-4{margin-bottom:40px!important;}
.mb-5{margin-bottom:50px!important;}

.mt-0{margin-top:0!important;}
.mt-1{margin-top:10px!important;}
.mt-2{margin-top:20px!important;}
.mt-3{margin-top:30px!important;}
.mt-4{margin-top:40px!important;}
.mt-5{margin-top:50px!important;}

.pt-0{padding-top:0!important;}
.pb-0{padding-bottom:0!important;}


/*==================================================
DISPLAY HELPER
==================================================*/

.d-flex{

    display:flex;

}

.align-center{

    align-items:center;

}

.justify-center{

    justify-content:center;

}

.justify-between{

    justify-content:space-between;

}

.flex-column{

    flex-direction:column;

}

.w-100{

    width:100%;

}


/*==================================================
IMAGE
==================================================*/

img{

    user-select:none;

    -webkit-user-drag:none;

}


/*==================================================
END OF FILE
==================================================*/