/*==================================================
    GLOBAL UTILITIES
==================================================*/

body{

    background:var(--black);

    color:var(--white);

    font-family:var(--font-body);

    overflow-x:hidden;

}

section{

    padding:var(--section-space) 0;

}

.section-tag{

    display:inline-block;

    color:var(--primary);

    font-size:14px;

    font-weight:700;

    letter-spacing:3px;

    text-transform:uppercase;

    margin-bottom:18px;

}

.section-title{

    font-family:var(--font-heading);

    font-size:var(--section-title);

    line-height:1.2;

    margin-bottom:25px;

}

.section-text{

    font-size:18px;

    color:var(--grey-light);

    line-height:1.9;

    max-width:720px;

}

.text-gold{

    color:var(--primary);

}

img{

    max-width:100%;

    display:block;

}

.rounded-xl{

    border-radius:var(--radius);

}

.shadow-xl{

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

}