/* Namari Landing Page Dynamic Style Index

1. Website Default Styling
2. Primary and Secondary Colors
3. Typography
4. Buttons

/*------------------------------------------------------------------------------------------*/
/* 1. Website Default Styling */
/*------------------------------------------------------------------------------------------*/


body {
    background: #fff;
}


/* Default Link Color */

a,
.la-ball-triangle-path {
    color: #6379E0;
}

a:hover,
#header.nav-solid nav a:hover {
    color: #B0BCEF;
}

/* Default Icon Color */

.icon i {
    color: #6379E0;
}

/* Border Color */

#banner .section-heading:before,
footer:before {
    background: #6379E0;
}

/*------------------------------------------------------------------------------------------*/
/* 2. Primary and Secondary Colors */
/*------------------------------------------------------------------------------------------*/


/* Primary Background and Text Colors */

.primary-color {
    background-color: #6379E0;
    color: #fff;
}

/* Primary Icon Colors */

.primary-color .icon i,
.primary-color i {
    color: #fff;
}

/* Secondary Background and Text Colors */

.secondary-color {
    background-color: #f5f5f5;
}

/*------------------------------------------------------------------------------------------*/
/* 3. Typography */
/*------------------------------------------------------------------------------------------*/


body {
    font-family: 'Open Sans', sans-serif, Arial, Helvetica;
    font-size: 15px;
    font-weight: normal;
    color: #111;
}

/* Section Headings */

.section-heading h2:after {
    background: #6379E0;
    content: "";
    display: block;
    width: 30px;
    height: 5px;
    margin-top: 30px;
}

.text-center .section-heading h2:after {
    margin: 10px auto 0px auto;
}


/* Paper Typography */

#paper-title h1 {
    font-family: 'Open Sans', sans-serif, Arial, Helvetica;
    font-size: 36px;
    line-height: 60px;
    font-weight: 800;
    color: #111;
}

#paper-title h2 {
    font-family: 'Open Sans', sans-serif, Arial, Helvetica;
    font-size: 24px;
    font-weight: 600;
    color: #111;
    padding: 5px;
}


/* Section Title and Subtitle */

.section-title {
    font-family: 'Open Sans', sans-serif, Arial, Helvetica;
    font-size: 34px;
    font-weight: 700;
    color: #111;
}

/* Standard Headings h1-h6 */

h1 {
    font-family: 'Open Sans', sans-serif, Arial, Helvetica;
    font-size: 40px;
    font-weight: 300;
    color: #111;
}

h2 {
    font-family: 'Open Sans', sans-serif, Arial, Helvetica;
    font-size: 34px;
    font-weight: 300;
    color: #111;
}

h3 {
    font-family: 'Open Sans', sans-serif, Arial, Helvetica;
    font-size: 30px;
    font-weight: 700;
    color: #111;
}

h4 {
    font-family: 'Open Sans', sans-serif, Arial, Helvetica;
    font-size: 24px;
    font-weight: 400;
    color: #111;
}

h5 {
    font-family: 'Open Sans', sans-serif, Arial, Helvetica;
    font-size: 20px;
    font-weight: 600;
    color: #111;
}

h6 {
    font-family: 'Open Sans', sans-serif, Arial, Helvetica;
    font-size: 16px;
    font-weight: 700;
    color: #111;
}


/*------------------------------------------------------------------------------------------*/
/* 4. Buttons */
/*------------------------------------------------------------------------------------------*/

/* ----------Default Buttons---------- */


/* Button Text */

.button,
input[type="submit"] {
    font-family: 'Open Sans', sans-serif, Arial, Helvetica;
    font-size: 16px;
    font-weight: bold;
    background-color: #141414;
    color: white;
}


/* Button Color */

.button,
input[type="submit"] {
    border-color: #141414;
}


/* Button Hover Color */

.button:hover,
input[type="submit"]:hover {
    border-color: #6379E0;
    color: #6379E0;
}