/* General Styles */
body {
    color: #3f3f3f;
    font-family: "museo-sans-rounded", "Helvetica Neue", "Helvetica", "Roboto", "Arial", sans-serif !important;
    font-weight: 300 !important;
    line-height: 1.5 !important;
    -webkit-font-smoothing: antialiased !important;
}

/*this style sets the width to unset, making it so the content is going the full width of the page - this helps with the color offsets and makes them go the full width */
#contentArea {
    max-width: unset;
    padding: 0; 
  }

/* this sets the collection page and footer to be the correct width and size */
  #contentArea.container-fluid .row-fluid,
  footer {
    margin-left: auto;
    margin-right: auto;
    max-width: 1200px;
    width: 94%; 
}

/*nav */
.navbar-inner {
    padding: 10px 0;
}
.navbar-inner .container-fluid {
    max-width: 1700px;
}

.brand {
    padding: 0 !important;
}

.brand img {
    max-width: 100%;
    vertical-align: middle;
    border: 0;
    height: 60px;
    margin-left: 15px;
    width: auto;
}

.navbar .nav li a:hover{
    text-decoration: underline;
}

#mainNav .nav .active {
    font-weight: bold;
    text-decoration: underline;
}

/* Making the nav respond on smaller screens  */
@media screen and (max-width: 1520px) {

    #mainNav .container-fluid {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .navbar .navbar-inner {
        background: none; 
    }
      
    .navbar .brand {
        margin: 0 auto 8px !important;
        padding: 0 !important; 
    }
      
    .navbar .nav {
        bottom: auto !important;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        float: none;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        left: auto !important;
        margin: auto !important;
        position: relative !important;
        right: auto !important; 
    }
    .navbar .nav > li {
        float: none; 
    }
    .navbar .nav > li > a {
        font-size: 1.2em;
        line-height: 22px; 
    }
}

/* Hides contact in the nav */
.contactUs {
    display: none !important;
}

/* Button in the top of the navigation*/
.green-button {
    cursor: pointer;
    background-color: rgb(106, 122, 52) !important;
    margin-right: 10px;
    margin-left: 10px;
    color: white !important;
    padding: .5em 1.5em !important;
}

 .green-button:hover {
    background-color: #62722c !important;
    text-decoration: none !important;
}

@media screen and (max-width: 768px) { 
    #mainNav .green-button {
        background-color: transparent !important;
        color: #293d52 !important;
        padding: 9px 15px !important;
    }
}

/* Search Area Styles */
#docsSearch {
    background: url(https://www.fppathfinder.com/wp-content/uploads/2024/02/helpscout-back.png);
    padding: 6.5em 0 9.5em 0 !important;
}
#docsSearch h1 {
color: white !important;
}

section#docsSearch {
    background-color: #f5f8fb;
    margin-bottom: 0; 
}
section#docsSearch #searchBar button {
      background: linear-gradient(135deg, #e55748 0%, #b2382b 100%);
      border: #b2382b; 
}

/* This adds the callout underneath the search bar */
.search-callout p {
    font-size: 17px;
    color: white;
    padding: 20px;
    font-style: italic;
  
  }
  
  /* Only needed if a link is added */
  .search-callout a {
    text-decoration: underline;
    color: white;
    font-weight: bold;
  }

  /* No longer needed for now - keeping in case we need it */
  /*
section#docsSearch:after {
    content: 'Sign up for an upcoming webinar or check out our replays and watch now!';
    font-size: 18px;
    display: flex;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 0 20px;
    font-style: italic;
    width: 500px;
    margin: auto;
}
*/

/* This makes sure the text underneath the search isnt broken on smaller screens 
@media screen and (max-width: 768px) { 
    section#docsSearch:after { 
     width: auto !important;
    }
}
*/

@media screen and(max-width: 768px) and (max-width: 480px) {
    #docsSearch {
        padding: 1.5em 0 1.3rem 0 !important;
    }

}
/* This makes sure the button in the search isnt broken on smaller screens */
@media screen and (min-width: 768px) {
    #searchBar button {
    height: 40px;
    top: 29px;
    right: 5px;
    border-radius: 0 0 0 0;
    padding: 0 40px;
    font-size: 16px;
    }
}

/* Categories Homepage */

section.collection-category {
    padding: 4rem 0;
    text-align: center;
}

.collection-category h2 {
    color: #293d52;
    font-weight: 700;
    margin-bottom: 10px !important
}

/* this sets every other catergory to have a grey background instead of white */
section.collection-category:nth-of-type(even) {
    background-color: #f5f8fb; 
}

/* makes the catergories center */
.category-list {
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 24px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-left: auto !important;
    margin-right: auto !important;
    max-width: 75rem;
    width: 94%; 
}


/* Styles the category cards */
.category-list a.category {
    background-color: white;
    border-radius: 8px;
    -webkit-box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.15);
    box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.15);
    margin: 0;
    margin-bottom: 0;
    max-width: 250px; 
}
/* hover effect for the category cards */
    .category-list a.category:hover {
        background-color: #F8F8F8;
        -webkit-box-shadow: none;
        box-shadow: none; 
}

/* makes the upcoming category cards bigger */
#collection-category-362 .category-list a.category {
    max-width: 350px; 
}

.collection-category .category-list {
    margin-bottom: 0 !important;
    padding-top: 10px;
}

/*Category descriptions */ 

.cat-description {
    margin-bottom: 20px;
    margin-top:10px;
    font-size: 18px;
    color: #363636;
}

/* Article Count */
.article-count {
    text-decoration: underline;
    font-weight: bold;
}
/*Collection Icons */

.collection-category #collection-623 a::before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 22px;
    content: '\f249';
    color: white;
    background-color: #6a7a34;
    padding: 10px 12px;
    border-radius: 30px;
    margin-right: 10px;
}

/* Upcoming */
.collection-category #collection-362 a::before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 22px;
    content: '\f35b';
    color: white;
    background-color: #6a7a34;
    padding: 10px;
    border-radius: 30px;
    margin-right: 10px;
}

/*Partner Webinars */
.collection-category #collection-347 a::before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 22px;
    content: '\f0c0';
    color: white;
    background-color: #6a7a34;
    padding: 10px 7.5px;
    border-radius: 30px;
    margin-right: 10px;
}

/*Go Beyond */
.collection-category #collection-329 a::before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 24px;
    content: '\f02d';
    color: white;
    background-color: #6a7a34;
    padding: 10px 12px;
    border-radius: 30px;
    margin-right: 10px;
}


/*New Membership */
.collection-category #collection-344 a::before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 18px;
    content: '\f109';
    color: white;
    background-color: #6a7a34;
    padding: 13px 11px;
    border-radius: 30px;
    margin-right: 10px;
}

/*Office Hour Replays */
.collection-category #collection-590 a::before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 18px;
    content: '\f1ad';
    color: white;
    background-color: #6a7a34;
    padding: 13px 14px;
    border-radius: 30px;
    margin-right: 10px;
}

/* Podcasts */
.collection-category #collection-406 a::before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 18px;
    content: '\f3c9';
    color: white;
    background-color: #6a7a34;
    padding: 10px 13px;
    border-radius: 30px;
    margin-right: 10px;
}

/* Mobile style to get icon to appear on top of H2 */
@media (max-width: 540px) {
    
    .collection-category h2 a {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .collection-category h2 a::before {
        padding: 10px 17px !important;
        margin: 0 10px 5px 10px;
    }
}

/* Support Blocks */
.support-blocks {
    display: flex;
    max-width: 1200px;
    justify-content: space-between;
    margin: auto;
   color: white;
}

@media (max-width: 769px) {
 .support-blocks {
         flex-direction: column;
    }
}
.support-blocks h3 {
   color: white !important;
    margin-top: 0;
    margin-bottom: 30px;
    font-size: 28px;
}


.support-blocks a {
   color: white !important;
}

.support-blocks li {
    padding: 30px;
    flex: 1;
    text-align: left;
    font-size: 16px;
    margin: 25px 15px 40px;
    border-radius: 5px;
    text-decoration: none;
}

.support-blocks .button-link{
   display: flex;
    align-items: center;
    justify-content: space-between;
}


.support-blocks li.green-block {
    background-color: #647335;
}

.support-blocks li.blue-block{
background-color: #15222C;
}

.support-blocks li.light-block {
    background-color: #1E495F;
}

/* helps with spacing on mobile */
@media (max-width: 769px) {
    .support-blocks li.contacts {
        margin-bottom: 15px
    }
    .support-blocks li.memberportal{ 
        margin-top: 0px;
    }
}

/* support article block */

.support-blocks li.support-articles  {
    margin-bottom: 0px !important;
}

.support-blocks li.support-articles h3  {
    margin-bottom: 5px !important;
}

.support-blocks li.support-articles p {
    margin-bottom: 30px !important;
    margin-top: 5px;
    text-align: left !important;
    color: white;
    font-size: 18px;
    line-height: 25px;
}

/* Styles for Top block either for support or for webinars - same layout */
.other-helpscout-contain {
    display: flex;
    align-items: center; 
    width: 100%;
}

.other-helpscout-contain img {
    width: 150px;
}

.other-helpscout-content {
    display: flex; 
    flex-direction: column; 
    align-items: stretch; 
    width: 100%; 
    padding-left: 50px;
}
@media screen and (max-width: 768px) { 
    .other-helpscout-contain { 
        flex-direction: column !important;
        align-items: start;
    }

    .other-helpscout-contain img {
        margin-bottom: 15px;
    }

    .other-helpscout-content { 
        padding-left: 0px !important;
    }
    
}


/*New Collection toparea Styles */
/*main container */
.collections-container {
    display: flex;
    justify-content: center;
    border-radius: 8px;
    max-width: 1200px;
    flex-wrap: wrap;
    margin: auto;
    background-color: white;
    margin-top: -100px;
    margin-bottom: 40px;
    -webkit-box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.15);
    box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.15);
  }
  
  .collections-link-container {
    display: flex;
    align-items: center;
  }
  
  /* Hover Styles on the collection blocks */
  .collection-link:hover {
    text-decoration: none;
    background-color: #f5f5f5;
  }
  
  .collection-block {
    border: 1px solid rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 10px;
    width: 150px;
    height: 150px;
  }
  
  .collection-1 {
    border: none;
  }
  
  .collection-6 {
    border: none;
  }
  
  .collection-block h3 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 14px;
    line-height: 24px;
    color:#293D52 !important;
    padding: 0 10px 0 10px;
  }
  
  .collection-block h3::before {
    font-size: 28px;
    line-height: 10px;
  }
  
  /* these are the icons for each collection box on the homepage*/

  /* Upcoming */
  .collection-1 h3::before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: '\f35b';
    color: white;
    background-color: #6a7a34;
    padding: 25px 15px;
    border-radius: 60px;
    margin-bottom: 10px;
  }

  /* Best Practice Webinar Replays */
  .collection-7 h3::before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: '\f249';
    color: white;
    background-color: #6a7a34;
    padding: 25px 19px;
    border-radius: 60px;
    margin-bottom: 10px;
  }
  
    /* Partners Webinar Replays */
  .collection-2 h3::before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: '\f0c0';
    color: white;
    background-color: #6a7a34;
    padding: 25px 12px;
    border-radius: 60px;
    margin-bottom: 10px;
  }
  
/* Office Hour Replays */
  .collection-3 h3::before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: '\f1ad';
    color: white;
    background-color: #6a7a34;
    padding: 25px 18px;
    border-radius: 60px;
    margin-bottom: 10px;
  }
  
  /* Onboarding Webinar Replays */
  .collection-4 h3::before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: '\f109';
    color: white;
    background-color: #6a7a34;
    padding: 25px 12px;
    border-radius: 60px;
    margin-bottom: 10px;
  }
  
  /*  Go Beyond The Guide Replays */
  .collection-5 h3::before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: '\f02d';
    color: white;
    background-color: #6a7a34;
    padding: 25px 18px;
    border-radius: 60px;
    margin-bottom: 10px;
  }

  /* Podcasts */
  .collection-6 h3::before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: '\f3c9';
    color: white;
    background-color: #6a7a34;
    padding: 25px 19px;
    border-radius: 60px;
    margin-bottom: 10px;
  }
  
  /* Smaller Desktop styles for the collection boxes */
  @media screen and (max-width: 1367px) { 

    .collections-container {
        max-width: 1065px;
    }

    .collection-block {
        width: 130px;
        height: 150px;
    }

    .collection-1 {
      border: 1px solid rgba(0,0,0,0.1) !important;
    }
    
    .collection-6 {
      border: 1px solid rgba(0,0,0,0.1) !important;
    }
    
  
  }
  
  /* Tablet styles for the collection boxes */
  @media screen and (max-width: 1066px) { 
  
    .collections-container {
      width:100%;
      box-shadow: none;
      background: transparent;
    }
  
    .collection-block {
      width: 250px;
      height: 200px;
      background-color: white;
    }
  
  }
  
  /* Mobile styles for the collection boxes */
  @media screen and (max-width: 583px) { 
  
  
    .collection-block {
      margin: 0;
      width: 155px;
      height: 155px;
    }
  
  }

/* Footer */

footer p {
    text-align: center;
}

/* b tag style fix so it adds bold and not bolder */
b {
    font-weight: bold !important;
}