/* ==========================================================
   RESET
========================================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{

    scroll-behavior:smooth;

}

body{

    font-family:var(--font-primary);
    background:var(--background-color);
    color:var(--text-color);
    overflow-x:hidden;

}

a{

    text-decoration:none;
    color:inherit;

}

ul{

    list-style:none;
}

img{

    max-width:100%;
    display:block;

}

button{

    border:none;
    outline:none;
    cursor:pointer;
}

input,
textarea{

    outline:none;

}

section{

    padding:100px 0;

}

.container-custom{

    width:100%;
    max-width:1320px;
    margin:auto;
    padding:0 15px;

}

/* ==============================
Typography
============================== */

h1{

    font-size:64px;
    font-weight:700;
    line-height:1.1;

}

h2{

    font-size:52px;
    font-weight:700;

}

h3{

    font-size:42px;
    font-weight:600;

}

h4{

    font-size:32px;

}

p{

    color:var(--text-light);
    font-size:18px;
    line-height:1.8;

}

/* ==============================
Primary Button
============================== */

.primary-btn{

    display:inline-flex;
    align-items:center;
    justify-content:center;

    padding:14px 34px;

    background:#000;

    color:#fff;

    border-radius:50px;

    transition:.35s;

}

.primary-btn:hover{

    transform:translateY(-4px);

    box-shadow:0 15px 30px rgba(0,0,0,.15);

}

/* ==============================
Section Title
============================== */

.section-title{

    text-align:center;

    margin-bottom:60px;

}

.section-title h2{

    margin-bottom:20px;

}

.section-title p{

    max-width:650px;

    margin:auto;

}