/* 

0. Custom Properties 
1. Website Default Styling
2. Navigation
3. Primary and Secondary Colors
4. Banner
5. Typography
6. Buttons
7. Footer



/*---------------------------------------
  Barlow         
-----------------------------------------*/

@font-face {
    font-family: 'Barlow';
    src: url('../../assets/fonts/Barlow/Barlow-Regular.woff2') format('woff2'),
        url('../../assets/fonts/Barlow/Barlow-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
  }
  
  @font-face {
    font-family: 'Barlow';
    src: url('../../assets/fonts/Barlow/Barlow-Light.woff2') format('woff2'),
        url('../../assets/fonts/Barlow/Barlow-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
  }
  
  @font-face {
    font-family: 'Barlow';
    src: url('../../assets/fonts/Barlow/Barlow-SemiBold.woff2') format('woff2'),
        url('../../assets/fonts/Barlow/Barlow-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
  }
  
  @font-face {
    font-family: 'Barlow';
    src: url('../../assets/fonts/Barlow/Barlow-Bold.woff2') format('woff2'),
        url('../../assets/fonts/Barlow/Barlow-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
  }

/*---------------------------------------
 0. Custom Properties 
-----------------------------------------*/
:root {
    --white-color:                  #ffffff;
    --grey-color:                   #333333;
    --light-grey-color:             #dddddd;
    --dark-grey-color:              #111111;
    --primary-color:                #026336;
    --secondary-color:              #22bb55;
    --section-bg-color:             #f5f5f5;
    --site-footer-bg-color:         #f5f5f5;
    --custom-btn-bg-color:          #597081;
    --custom-btn-bg-hover-color:    #026336;
    --dark-color:                   #333333;
    --black-color:                  #000000;
    --p-color:                      #666666;
    --footer-color:                 #444444;
    --border-color:                 #e9eaeb;
  
    --body-font-family:             'Barlow', sans-serif;
  
    --h1-font-size:                 52px;
    --h2-font-size:                 46px;
    --h3-font-size:                 32px;
    --h4-font-size:                 28px;
    --h5-font-size:                 24px;
    --h6-font-size:                 22px;
    --p-font-size:                  16px;
    --btn-font-size:                18px;
    --copyright-font-size:          14px;
  
    /* --border-radius-large:          100px;
    --border-radius-medium:         20px;
    --border-radius-small:          10px; */
  
    --border-radius-large:          0px;
    --border-radius-medium:         0px;
    --border-radius-small:          0px;
  
    --font-weight-light:            300;
    --font-weight-normal:           400;
    --font-weight-semibold:         600;
    --font-weight-bold:             700;
  }



/*------------------------------------------------------------------------------------------*/
/* 1. Website Default Styling */
/*------------------------------------------------------------------------------------------*/


body {
    background:var(--white-color);
}


/* Default Link Color */

a, .la-ball-triangle-path {
    color: var(--primary-color);
}

a:hover, #header.nav-solid nav a:hover {
    color: var(--primary-color);
}

/* Default Icon Color */

.icon i {
    color: var(--primary-color);
}

.founder {
    color: var(--primary-color);
}

/* Border Color */

#home .section-heading:before, .features.classic footer:before {
    background: var(--primary-color);
}

.pricing-block-content:hover {
    border-color: var(--primary-color);
}


/*------------------------------------------------------------------------------------------*/
/* 2. Navigation */
/*------------------------------------------------------------------------------------------*/


/* Transparent Navigation Color on a Banner */

#header nav a, #header i {
    color:var(--dark-grey-color);
}


/* 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(--grey-color);
}


/* Navigation Active State */

#header.nav-solid .active {
    color: var(--primary-color);
    border-color: var(--primary-color);
}    



/*------------------------------------------------------------------------------------------*/
/* 3. Primary and Secondary Colors */
/*------------------------------------------------------------------------------------------*/


/* Primary Background and Text Colors */

.primary-color, .featured .pricing {
    background-color: var(--primary-color);
}

.primary-color, .primary-color .section-title, .primary-color .section-subtitle, .featured .pricing, .featured .pricing p {
    color:var(--white-color);    
}

.section-heading h2:after {
    background:var(--primary-color);
    content:"";
    display:block;
    width:30px;
    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:var(--white-color);
}


/* Secondary Background and Text Colors */

.secondary-color {
    background-color: var(--section-bg-color);
}


/*------------------------------------------------------------------------------------------*/
/* 4. Banner */
/*------------------------------------------------------------------------------------------*/


/* Banner Background and Text Colors */

#home {
    background: url("../../images/hero/hero_1.jpg") no-repeat center top;
    background-size:cover;
}


/*------------------------------------------------------------------------------------------*/
/* 5. Typography */
/*------------------------------------------------------------------------------------------*/


body {
    font-family: var(--body-font-family);
    font-size:15px;
    font-weight:normal;
    color:var(--dark-grey-color);
}

/* Logo, if you are using Fonts as Logo and not image

#logo h1 {
    font-family:;
    font-size:; 
    font-weight:;
    color:;
}

#logo h2 {
    font-family:;
    font-size:; 
    font-weight:;
    color:;
}

*/


/* Banner Typography */

#home h1 {
    font-family: var(--body-font-family);
    font-size:62px;
    line-height:60px;
    font-weight:800;
    color:var(--dark-grey-color);
}

#home h2 {
    font-family: var(--body-font-family);
    font-size:18px;
    font-weight:300;
    color:var(--dark-grey-color);
}


/* Section Title and Subtitle */

.section-title {
    font-family: var(--body-font-family);
    font-size: 34px; 
    font-weight:700;
    color:var(--dark-grey-color);
}

.section-subtitle {
    font-family: var(--body-font-family);
    font-size: 16px;
    font-weight:300;
    color: var(--dark-color);
}

/* Features */

.features q {
    font-family: var(--body-font-family);
    font-size: 17px; 
    font-weight:300;
}

.features.classic q, .features.classic footer {
    color:var(--dark-grey-color);
}


/* Standard Headings h1-h6 */

h1 {
    font-family: var(--body-font-family);
    font-size: 40px; 
    font-weight:300;
    color:var(--dark-grey-color);
}

h2 {
    font-family: var(--body-font-family);
    font-size: 34px; 
    font-weight:300;
    color:var(--dark-grey-color);
}

h3 {
    font-family: var(--body-font-family);
    font-size: 30px; 
    font-weight:700;
    color:var(--light-grey-color);
}

h4 {
    font-family: var(--body-font-family);
    font-size: 18px; 
    font-weight:400;
    color:var(--dark-grey-color);
}

h5 {
    font-family: var(--body-font-family);
    font-size: 16px; 
    font-weight:400;
    color:var(--dark-grey-color);
}

h6 {
    font-family: var(--body-font-family);
    font-size: 14px; 
    font-weight:400;
    color:var(--dark-grey-color);
}


/*------------------------------------------------------------------------------------------*/
/* 6. Buttons */
/*------------------------------------------------------------------------------------------*/

/* ----------Default Buttons---------- */


/* Button Text */

.button, input[type="submit"]  {
    font-family: var(--body-font-family);
    font-size:14px;
    font-weight:bold;
    color:var(--dark-grey-color);
}


/* Button Color */

.button, input[type="submit"] {
    border-color:var(--dark-grey-color);
}


/* Button Hover Color */

.button:hover,  input[type="submit"]:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}


/* ----------Banner Buttons---------- */


/* Button Text */

#home .button {
    font-family: var(--body-font-family);
    font-size:16px;
    color:var(--dark-grey-color);
}


/* Button Color */

#home .button {
    border-color:var(--dark-grey-color);
}


/* Button Hover Color */

#home .button:hover {
    color: var(--primary-color);
    border-color: var(--primary-color);
}


/*------------------------------------------------------------------------------------------*/
/* 7. Footer */
/*------------------------------------------------------------------------------------------*/

#landing-footer, #landing-footer p, #landing-footer a {
    font-family: var(--body-font-family);
    font-size: 14px;
    font-weight: 100;
    color: var(--footer-color);
}

/* Footer Icon Color */

#landing-footer i {
    color: var(--footer-color);
}

.footer-link-section {
    background-color: var(--site-footer-bg-color);
}


.footer-menu {
    /* column-count: 2; */
    margin: 0;
    padding: 0;
  }
  
  .footer-menu-item {
    list-style: none;
    display: block;
    margin-bottom: .5rem !important;
  }
  
  .footer-menu-link {
    font-size: var(--p-font-size);
    color: var(--grey-color);
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
    margin-bottom: 5px;
  }