/* Namari Landing Page Dynamic Style Index

1. Website Default Styling
2. Navigation
3. Primary and Secondary Colors
4. Banner
5. Typography
6. Buttons
7. Footer

/* FONT EMBEDDING 
@font-face {
    font-family: 'Rubik';
    src: url('Rubik-Regular.woff2') format('woff2'),
        url('Rubik-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}*/
/* rubik-regular - latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Rubik';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/rubik-v28-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  }
  /* rubik-500 - latin */
  @font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Rubik';
    font-style: normal;
    font-weight: 500;
    src: url('../fonts/rubik-v28-latin-500.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  }
  /* rubik-600 - latin */
  @font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Rubik';
    font-style: normal;
    font-weight: 600;
    src: url('../fonts/rubik-v28-latin-600.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  }
  /* rubik-700 - latin */
  @font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Rubik';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/rubik-v28-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  }
  /* rubik-800 - latin */
  @font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Rubik';
    font-style: normal;
    font-weight: 800;
    src: url('../fonts/rubik-v28-latin-800.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  }

/* COLOR VARIABLES */
:root {
    --main-green:#097e35;
    --light-gray:#E3E3E3; /* Accents under headlines */
    --dark-gray:#4F5665;
    --black:#0B132A;
    --bg-gradient: linear-gradient(180deg, rgba(248,248,248,1) 0%, rgba(248,248,248,0) 100%);
    --green-gradient:linear-gradient(180deg, rgba(147, 191, 134, 0.2303) -4.16%, rgba(147, 191, 134, 0) 95.84%);
    --bg-gray:#F8F8F8; /* Footer */
}

/*------------------------------------------------------------------------------------------*/
/* 1. Website Default Styling */
/*------------------------------------------------------------------------------------------*/


body {
    background:#fff;
}


/* Default Link Color */

a, .la-ball-triangle-path {
    color:var(--main-green);
}

a:hover, #header.nav-solid nav a:hover {
    color:var(--main-green);
}

/* Default Icon Color */

.icon i {
    color:var(--main-green);
}

/* Border Color */

#banner .section-heading:before, .testimonial.classic footer:before {
    background: var(--light-gray);
}

.pricing-block-content:hover {
    border-color: var(--main-green);
    border-width: 3px;
}


/*------------------------------------------------------------------------------------------*/
/* 2. Navigation */
/*------------------------------------------------------------------------------------------*/


/* Transparent Navigation Color on a Banner */

#header nav a, #header i {
    color: var(--black);
}


/* Navigation Colors when the Navigation is sticky and solid */ 

#header.nav-solid, #header.nav-solid a, #header.nav-solid i, #nav-mobile ul li a {
    color: var(--dark-gray);
}


/* Navigation Active State */

#header.nav-solid .active {
    color: var(--main-green);
    border-color: var(--main-green);
}    



/*------------------------------------------------------------------------------------------*/
/* 3. Primary and Secondary Colors */
/*------------------------------------------------------------------------------------------*/


/* Primary Background and Text Colors */

.primary-color, .featured .pricing {
    background-color:#fff;
}

.primary-color, .primary-color .section-title, .primary-color .section-subtitle, .featured .pricing, .featured .pricing p {
    color:#fff;    
}

.section-heading h2:after {
    background: var(--light-gray);
    content:"";
    display:block;
    width: 425px;
    height:5px;
    margin-top:30px;
}

.text-center .section-heading h2:after {
    margin:30px auto 25px auto;
}

/* Primary Icon Colors */

.primary-color .icon i, .primary-color i {
    color:#fff;
}


/* Secondary Background and Text Colors */

.secondary-color {
    background-color: #fff;
}


/*------------------------------------------------------------------------------------------*/
/* 4. Banner */
/*------------------------------------------------------------------------------------------*/


/* Banner Background and Text Colors */

#banner {
    background-color: var(--bg-gradient);
}


/*------------------------------------------------------------------------------------------*/
/* 5. Typography */
/*------------------------------------------------------------------------------------------*/


body {
    font-family: 'Rubik', sans-serif, Arial, Helvetica;
    font-size:15px;
    font-weight:normal;
    color: var(--dark-gray);
}

/* Banner Typography */

#banner h1 {
    font-family: 'Rubik', sans-serif, Arial, Helvetica;
    font-size:62px;
    line-height:60px;
    font-weight:800;
    color: var(--black);
}

#banner h2 {
    font-family: 'Rubik', sans-serif, Arial, Helvetica;
    font-size:18px;
    font-weight:300;
    color: var(--black);
}


/* Section Title and Subtitle */

.section-title {
    font-family: 'Rubik', sans-serif, Arial, Helvetica;
    font-size: 34px; 
    font-weight:700;
    color: var(--black);
}

.section-subtitle {
    font-family: 'Rubik', sans-serif, Arial, Helvetica;
    font-size: 16px;
    font-weight:500;
    color: var(--dark-gray);
}

/* Standard Headings h1-h6 */

h1 {
    font-family: 'Rubik', sans-serif, Arial, Helvetica;
    font-size: 40px; 
    font-weight:300;
    color: var(--black);
}

h2 {
    font-family: 'Rubik', sans-serif, Arial, Helvetica;
    font-size: 34px; 
    font-weight:300;
    color: var(--black);
}

h3 {
    font-family: 'Rubik', sans-serif, Arial, Helvetica;
    font-size: 30px; 
    font-weight:700;
    color: var(--black);
}

h4 {
    font-family: 'Rubik', sans-serif, Arial, Helvetica;
    font-size: 18px; 
    font-weight:400;
    color: var(--black);
}

h5 {
    font-family: 'Rubik', sans-serif, Arial, Helvetica;
    font-size: 16px; 
    font-weight:400;
    color: var(--black);
}

h6 {
    font-family: 'Rubik', sans-serif, Arial, Helvetica;
    font-size: 14px; 
    font-weight:400;
    color: var(--black);
}


/*------------------------------------------------------------------------------------------*/
/* 6. Buttons */
/*------------------------------------------------------------------------------------------*/

/* ----------Default Buttons---------- */


/* Button Text */

.button, input[type="submit"]  {
    font-family: 'Rubik', sans-serif, Arial, Helvetica;
    font-size:14px;
    font-weight:bold;
    color:#fff;
    background-color: var(--main-green);
    border: none;
    border-radius: 5px;
}

/* Button Hover Color */

.button:hover,  input[type="submit"]:hover, .button:focus,  input[type="submit"]:focus {
    background-color: var(--main-green);
    filter: drop-shadow(-1px 11px 10px #93BF86);
}


/* ----------Banner Buttons---------- */


/* Button Text */

#content #call-to-action {
    font-family: 'Rubik', sans-serif, Arial, Helvetica;
    font-size:25px;
    padding: 1rem 2rem;
}

/*------------------------------------------------------------------------------------------*/
/* 7. Footer */
/*------------------------------------------------------------------------------------------*/

#landing-footer, #landing-footer p, #landing-footer a {
    font-family: 'Rubik', sans-serif, Arial, Helvetica;
    font-size:12px;
    font-weight:normal;
    background-color: var(--bg-gray);
}

/* Footer Icon Color */

#landing-footer i {
    color:#999;
}