@charset "UTF-8";
/* PAGE-SPECIFIC STYLES FOR THE BLOG AND ARTICLE PAGES */
/*-- -------------------------- -->
<---        Core Styles         -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  .blog-container {
    margin: auto;
    max-width: 70em;
    width: 94%;
  }
  .blog-link {
    z-index: 1;
    position: relative;
    display: inline-block;
    border-radius: 0.25rem;
    margin: auto;
    background-color: var(--headerColor);
    min-width: 9.375rem;
    /* prevents padding from adding to the width */
    box-sizing: border-box;
    padding: 0 1.5rem;
    text-decoration: none;
    font-size: 1rem;
    /* 46px - 56px */
    line-height: clamp(2.875em, 5.5vw, 3.5em);
    font-weight: 700;
    color: #fff;
    transition: color 0.3s;
    text-align: center;
  }
  .blog-link:before {
    z-index: -1;
    z-index: -1;
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    opacity: 0;
    border: 1px solid var(--headerColor);
    border-radius: 0.25rem;
    background: #fff;
    height: 100%;
    width: 100%;
    box-sizing: border-box;
    transition: opacity 0.3s;
  }
  .blog-link:hover {
    color: var(--headerColor);
  }
  .blog-link:hover:before {
    opacity: 1;
  }
  #resources .cs-button-solid {
    position: fixed;
    right: 0;
    top: 10%;
    z-index: 100;
  }
  .clg-postdiv {
    margin-bottom: 2rem;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
  }
  .clg-postdiv picture {
    flex: 200px 0 1;
  }
  .clg-flex-cards {
    display: flex;
    flex-wrap: wrap;
    flex-basis: 280px;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 1rem;
  }
  .clg-flex-cards > div {
    background-color: var(--primaryLight);
    padding: 1rem;
    width: 280px;
    border-radius: 6px;
    text-align: center;
    padding: 1.5rem;
  }
  .clg-flex-cards i {
    font-size: 60px;
    color: var(--headerColor);
  }
  .post-navigation {
    display: flex;
    justify-content: space-between;
  }
  .post-navigation div {
    flex: 0 0 120px;
  }
}
/*-- -------------------------- -->
<---   √ Index Main Content        -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  .blog-container {
    padding: clamp(60px, 7vw, 100px) 0;
    padding-top: 2rem;
  }
  .main-content-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    row-gap: 3.125em;
  }
  .main-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    row-gap: 3.125em;
  }
}
/* Tablet - 1024px */
@media only screen and (min-width: 64rem) {
  .main-content-wrapper {
    flex-direction: row;
    align-items: flex-start;
    column-gap: 1.25em;
  }
  #allposts .cs-content {
    columns: 2;
  }
}
/*-- -------------------------- -->
<---   √ Featured Posts         -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #services-1251 {
    padding: var(--sectionPadding);
    padding-top: 0;
    position: relative;
    z-index: 10;
  }
  #services-1251 .cs-container {
    width: 100%;
    max-width: 80rem;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: clamp(3rem, 6vw, 4rem);
  }
  #services-1251 .cs-content {
    /* set text align to left if content needs to be left aligned */
    text-align: left;
    width: 100%;
    display: flex;
    flex-direction: column;
    /* centers content horizontally, set to flex-start to left align */
    align-items: flex-start;
  }
  #services-1251 .cs-title {
    max-width: 20ch;
  }
  #services-1251 .cs-card-group {
    margin: 0;
    padding: 0;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    /* 16px - 20px */
    gap: clamp(1rem, 2.5vw, 1.25rem);
  }
  #services-1251 .cs-item {
    width: 100%;
    text-align: left;
    list-style: none;
    margin: 0;
    padding: 0;
    background-color: #000;
    border-radius: 0.5rem;
    /* clips background image corners */
    overflow: hidden;
    box-shadow: 0px 12px 80px 0px rgba(26, 26, 26, 0.08);
    /* prevents padding and border from affecting height and width */
    box-sizing: border-box;
    grid-column: span 12;
    grid-row: span 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    position: relative;
    z-index: 1;
  }
  #services-1251 .cs-item:hover .cs-item-background img {
    opacity: 0.4;
    transform: scale(1.3);
  }
  #services-1251 .cs-item:hover .cs-h3 {
    color: var(--primary);
  }
  #services-1251 .cs-item:before {
    content: "";
    width: 100%;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.4);
    /* prevents border from affecting height and width */
    box-sizing: border-box;
    border-radius: 0.5rem;
    /* prevents the mouse from interacting with it so when you hover hover the other elements inside the card it doesn't block your mouse from hovering over them */
    pointer-events: none;
    opacity: 1;
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    z-index: 10;
  }
  #services-1251 .cs-link {
    text-decoration: none;
    /* 125px - 236px */
    /* padding goes on the link, not the cs-item as is normal. We do this because we want the whole card to be hoverable. So we add the padding to the link tag to create the space inside the card. By adding the space inside the cs-link tag we can make the whole card hoverable since the padding is now contributing to the height and widht of the link */
    padding: clamp(7.8125rem, 19vw, 14.75rem) 1.5rem 1.5rem;
  }
  #services-1251 .cs-h3 {
    /* 20px - 25px */
    font-size: clamp(1.25rem, 2.5vw, 1.5625rem);
    line-height: 1.2em;
    font-weight: bold;
    text-align: inherit;
    margin: 0 0 0.75rem 0;
    color: var(--bodyTextColorWhite);
    transition: color 0.3s;
  }
  #services-1251 .cs-item-text {
    /* 14px - 16px */
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    line-height: 1.5em;
    max-width: 28.125rem;
    margin: 0;
    padding: 0;
    color: var(--bodyTextColorWhite);
  }
  #services-1251 .description {
    margin-top: 1rem;
  }
  #services-1251 .cs-item-background {
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
  }
  #services-1251 .cs-item-background:before {
    /* background color overlay */
    content: "";
    position: absolute;
    display: block;
    height: 100%;
    width: 100%;
    background: #1a1a1a;
    opacity: 0.24;
    top: 0;
    left: 0;
    z-index: 1;
  }
  #services-1251 .cs-item-background:after {
    /* background color overlay */
    content: "";
    position: absolute;
    display: block;
    height: 100%;
    width: 100%;
    background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 100%);
    opacity: 0.4;
    bottom: 0;
    left: 0;
    z-index: 2;
  }
  #services-1251 .cs-item-background img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    /* Makes img tag act as a background image */
    object-fit: cover;
    transition: transform 0.6s, opacity 0.3s;
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #services-1251 {
    padding-bottom: 0;
  }
  #services-1251 .cs-content {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
  }
  #services-1251 .cs-title {
    margin: 0;
  }
  #services-1251 .cs-flex-group {
    width: 50%;
  }
  #services-1251 .cs-item {
    grid-column: span 4;
  }
}
/*-- -------------------------- -->
<---      √ Other Posts         -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #services-1304,
  #services-1305,
  #services-1306,
  #services-1307 {
    padding: var(--sectionPadding);
    position: relative;
    z-index: 10;
  }
  #services-1304 .cs-container,
  #services-1305 .cs-container,
  #services-1306 .cs-container,
  #services-1307 .cs-container {
    width: 100%;
    max-width: 80rem;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    /* 48px - 64px */
    gap: clamp(3rem, 6vw, 4rem);
  }
  #services-1304 .cs-content,
  #services-1305 .cs-content,
  #services-1306 .cs-content,
  #services-1307 .cs-content {
    /* set text align to left if content needs to be left aligned */
    text-align: left;
    width: 100%;
    display: flex;
    flex-direction: column;
    /* centers content horizontally, set to flex-start to left align */
    align-items: flex-start;
  }
  #services-1304 .cs-title,
  #services-1305 .cs-title,
  #services-1306 .cs-title,
  #services-1307 .cs-title {
    max-width: 20ch;
  }
  #services-1304 .cs-card-group,
  #services-1305 .cs-card-group,
  #services-1306 .cs-card-group,
  #services-1307 .cs-card-group {
    width: 100%;
    max-width: 80rem;
    margin: 0;
    padding: 0 1rem;
    /* prevents padding and border from affecting height and width */
    background-color: #fff;
    box-shadow: 0px 4px 35px 0px rgba(0, 0, 0, 0.05);
    box-sizing: border-box;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    position: relative;
    z-index: 15;
  }
  #services-1304 .cs-item,
  #services-1305 .cs-item,
  #services-1306 .cs-item,
  #services-1307 .cs-item {
    text-align: left;
    list-style: none;
    width: 100%;
    border-bottom: 1px solid #e8e8e8;
    box-sizing: border-box;
    grid-column: span 12;
    transition: background-color 0.3s, border-color 0.3s;
    display: block;
  }
  #services-1304 .cs-item:last-of-type,
  #services-1305 .cs-item:last-of-type,
  #services-1306 .cs-item:last-of-type,
  #services-1307 .cs-item:last-of-type {
    border-bottom: none;
  }
  #services-1304 .cs-link,
  #services-1305 .cs-link,
  #services-1306 .cs-link,
  #services-1307 .cs-link {
    text-decoration: none;
    /* 24px - 60px top & Bottom */
    /* 24px - 16px top & Bottom */
    padding: clamp(1.5rem, 5.3vw, 3.75rem) clamp(1rem, 2.7vw, 2.5rem);
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
  }
  #services-1304 .clg-image,
  #services-1305 .clg-image,
  #services-1306 .clg-image,
  #services-1307 .clg-image {
    /* 240px - 640px */
    width: clamp(15rem, 100%, 40rem);
    height: auto;
    margin: 0 0 1rem 0;
  }
  #services-1304 .cs-h3,
  #services-1305 .cs-h3,
  #services-1306 .cs-h3,
  #services-1307 .cs-h3 {
    /* 20px - 25px */
    font-size: clamp(1.25rem, 2vw, 1.5625rem);
    font-weight: 700;
    text-align: inherit;
    line-height: 1.2em;
    margin: 0 0 0.75rem 0;
    color: var(--headerColor);
    transition: color 0.3s;
  }
  #services-1304 .cs-item-text,
  #services-1305 .cs-item-text,
  #services-1306 .cs-item-text,
  #services-1307 .cs-item-text {
    /* 14px - 16px */
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    text-align: inherit;
    line-height: 1.5em;
    margin: 0;
    color: var(--bodyTextColor);
    transition: color 0.3s, opacity 0.3s;
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #services-1304 .cs-content,
  #services-1305 .cs-content,
  #services-1306 .cs-content,
  #services-1307 .cs-content {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
  }
  #services-1304 .cs-title,
  #services-1305 .cs-title,
  #services-1306 .cs-title,
  #services-1307 .cs-title {
    margin: 0;
  }
  #services-1304 .cs-flex-group,
  #services-1305 .cs-flex-group,
  #services-1306 .cs-flex-group,
  #services-1307 .cs-flex-group {
    width: 50%;
    /* prevents flexbox from squishing it */
    flex: none;
  }
  #services-1304 .cs-item,
  #services-1305 .cs-item,
  #services-1306 .cs-item,
  #services-1307 .cs-item {
    grid-column: span 6;
  }
  #services-1304 .cs-item:nth-of-type(4), #services-1304 .cs-item:nth-of-type(8),
  #services-1305 .cs-item:nth-of-type(4),
  #services-1305 .cs-item:nth-of-type(8),
  #services-1306 .cs-item:nth-of-type(4),
  #services-1306 .cs-item:nth-of-type(8),
  #services-1307 .cs-item:nth-of-type(4),
  #services-1307 .cs-item:nth-of-type(8) {
    border-right: none;
  }
  #services-1304 .cs-item:nth-of-type(7), #services-1304 .cs-item:nth-of-type(8),
  #services-1305 .cs-item:nth-of-type(7),
  #services-1305 .cs-item:nth-of-type(8),
  #services-1306 .cs-item:nth-of-type(7),
  #services-1306 .cs-item:nth-of-type(8),
  #services-1307 .cs-item:nth-of-type(7),
  #services-1307 .cs-item:nth-of-type(8) {
    border-bottom: none;
  }
}
/* Desktop - 1024px */
@media only screen and (min-width: 64rem) {
  #services-1304 .cs-card-group,
  #services-1305 .cs-card-group,
  #services-1306 .cs-card-group,
  #services-1307 .cs-card-group {
    padding: 0;
  }
  #services-1304 .cs-item,
  #services-1305 .cs-item,
  #services-1306 .cs-item,
  #services-1307 .cs-item {
    grid-column: span 3;
    border-right: 1px solid #e8e8e8;
  }
  #services-1304 .cs-item:hover,
  #services-1305 .cs-item:hover,
  #services-1306 .cs-item:hover,
  #services-1307 .cs-item:hover {
    background-color: #1a1a1a;
    border-color: #1a1a1a;
  }
  #services-1304 .cs-item:hover .cs-h3,
  #services-1304 .cs-item:hover .cs-item-text,
  #services-1305 .cs-item:hover .cs-h3,
  #services-1305 .cs-item:hover .cs-item-text,
  #services-1306 .cs-item:hover .cs-h3,
  #services-1306 .cs-item:hover .cs-item-text,
  #services-1307 .cs-item:hover .cs-h3,
  #services-1307 .cs-item:hover .cs-item-text {
    color: var(--bodyTextColorWhite);
  }
  #services-1304 .cs-item:hover .cs-item-text,
  #services-1305 .cs-item:hover .cs-item-text,
  #services-1306 .cs-item:hover .cs-item-text,
  #services-1307 .cs-item:hover .cs-item-text {
    opacity: 0.8;
  }
  #services-1304 .cs-item:nth-of-type(5), #services-1304 .cs-item:nth-of-type(6), #services-1304 .cs-item:nth-of-type(7), #services-1304 .cs-item:nth-of-type(8),
  #services-1305 .cs-item:nth-of-type(5),
  #services-1305 .cs-item:nth-of-type(6),
  #services-1305 .cs-item:nth-of-type(7),
  #services-1305 .cs-item:nth-of-type(8),
  #services-1306 .cs-item:nth-of-type(5),
  #services-1306 .cs-item:nth-of-type(6),
  #services-1306 .cs-item:nth-of-type(7),
  #services-1306 .cs-item:nth-of-type(8),
  #services-1307 .cs-item:nth-of-type(5),
  #services-1307 .cs-item:nth-of-type(6),
  #services-1307 .cs-item:nth-of-type(7),
  #services-1307 .cs-item:nth-of-type(8) {
    border-bottom: none;
  }
}
/*-- -------------------------- -->
<---   √   Blog Articles     -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  .blog-article {
    display: block;
    max-width: 49.6875em;
    width: 100%;
    margin-top: 60px;
  }
  .blog-article .blog-mainImage {
    position: relative;
    display: block;
    border-radius: 0.5em;
    margin-bottom: 3.125em;
    height: clamp(200px, 30vw, 400px);
    width: 100%;
    overflow: hidden;
  }
  .blog-article .blog-mainImage img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
  }
  .blog-article .blog-author-img {
    position: relative;
    display: block;
    border-radius: 50%;
    height: 2em;
    width: 2em;
    overflow: hidden;
  }
  .blog-article .blog-author-img img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
  }
  .blog-article .blog-authorGroup {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 0.75rem;
  }
  .blog-article .blog-author,
  .blog-article .blog-date {
    font-size: 0.875rem;
    line-height: 1.5em;
    color: var(--bodyTextColor);
  }
  .blog-article .blog-dot {
    display: block;
    border-radius: 50%;
    background-color: #fe4f70;
    height: 3px;
    width: 3px;
  }
  .blog-article .blog-h1 {
    margin: 1rem 0;
    font-size: clamp(20px, 5vw, 39px);
    line-height: 1.4em;
    font-weight: 700;
    color: var(--headerColor);
  }
  .blog-article #blog-content {
    border-top: 1px solid #ebebeb;
    margin-top: 1em;
    padding-top: 1.5625em;
  }
  .blog-article #blog-content h1 {
    margin-bottom: 1rem;
    font-size: 2.25rem;
    line-height: 1.75em;
    font-weight: 700;
    color: var(--headerColor);
  }
  .blog-article #blog-content h2 {
    margin-bottom: 1rem;
    font-size: 1.75rem;
    line-height: 1.5em;
    font-weight: 700;
    color: var(--headerColor);
  }
  .blog-article #blog-content h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
    line-height: 1.5em;
    font-weight: 700;
    color: var(--headerColor);
  }
  .blog-article #blog-content h4,
  .blog-article #blog-content h5,
  .blog-article #blog-content h6 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
    line-height: 1.5em;
    font-weight: 700;
    color: var(--headerColor);
  }
  .blog-article #blog-content p {
    margin: 0;
    margin-bottom: 1rem;
    font-size: 1rem;
    line-height: 1.6em;
    color: var(--bodyTextColor);
  }
  .blog-article #blog-content a {
    text-decoration: underline;
    font-size: inherit;
    color: var(--secondary);
  }
  .blog-article #blog-content ul,
  .blog-article #blog-content ol {
    margin: 1rem 0;
    padding-left: 2.5rem;
  }
  .blog-article #blog-content ul li,
  .blog-article #blog-content ol li {
    margin-bottom: 1rem;
    list-style: circle;
    font-size: 1rem;
    line-height: 1.6em;
    color: var(--bodyTextColor);
  }
  .blog-article #blog-content img {
    display: block;
    border-radius: 0.5rem;
    margin: 1rem 0;
    height: auto;
    width: 100%;
  }
  .blog-article .cs-active {
    font-weight: 700;
  }
  .links-nextprev {
    display: flex;
    justify-content: space-between;
    row-gap: 3rem;
    list-style: none;
    margin-top: 2rem;
  }
}
@media only screen and (min-width: 1024px) {
  .blog-article {
    margin-top: 80px;
  }
}

/*# sourceMappingURL=blog.css.map */
