/*
==================================================
Rumos Answer

Filename : base.css
File Path: /wp-content/themes/rumos-answer/assets/css/base.css

Build  : 004-007
Author : Rumos
==================================================
*/

/* ==========================================
   Reset
========================================== */

*,
*::before,
*::after{
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    margin:0;

    background:#ffffff;

    color:#111827;

    font-family:
        Inter,
        "Segoe UI",
        Roboto,
        Helvetica,
        Arial,
        sans-serif;

    font-size:16px;

    line-height:1.6;

    -webkit-font-smoothing:antialiased;
    -moz-osx-font-smoothing:grayscale;

}

/* ==========================================
   Typography
========================================== */

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

    margin:0;

    font-weight:700;

    line-height:1.2;

}

p{

    margin:0 0 1rem;

}

a{

    color:inherit;

    text-decoration:none;

    transition:.25s ease;

}

img{

    display:block;

    max-width:100%;

    height:auto;

}

/* ==========================================
   Layout
========================================== */

.ra-container{

    width:100%;

    max-width:1200px;

    margin:0 auto;

    padding:0 24px;

}

main{

    width:100%;

}

/* ==========================================
   Utility
========================================== */

.text-center{

    text-align:center;

}

.hidden{

    display:none;

}